diff --git a/cpp-client/build.gradle b/cpp-client/build.gradle index 650a042cb6e..273e714486a 100644 --- a/cpp-client/build.gradle +++ b/cpp-client/build.gradle @@ -24,32 +24,6 @@ spotless { evaluationDependsOn Docker.registryProject('cpp-clients-multi-base') evaluationDependsOn Docker.registryProject('manylinux2014_x86_64') -configurations { - cpp {} -} -dependencies { - cpp project(path: ':proto:proto-backplane-grpc', configuration: 'cpp') -} -def protoSourceDir = layout.projectDirectory.dir('deephaven/dhclient/proto') -def compare = tasks.register('compareProtobuf', DiffTask) { - expectedContents.set configurations.cpp - actualContents { - directory protoSourceDir - } - 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) - -tasks.register('updateProtobuf', Sync) { - finalizedBy compare - from configurations.cpp - into protoSourceDir -} - // start a grpc-api server String randomSuffix = UUID.randomUUID().toString(); deephavenDocker { @@ -77,6 +51,9 @@ def buildCppClientImage = Docker.registerDockerTask(project, 'cppClient') { include 'deephaven/examples/**' include 'deephaven/tests/**' } + from("../proto/proto-backplane-grpc/src/main") { + include 'proto/**' + } } dockerfile { @@ -96,6 +73,7 @@ def buildCppClientImage = Docker.registerDockerTask(project, 'cppClient') { copyFile('deephaven/dhclient/', "${prefix}/src/deephaven/dhclient/") copyFile('deephaven/examples/', "${prefix}/src/deephaven/examples/") copyFile('deephaven/tests/', "${prefix}/src/deephaven/tests/") + copyFile('proto/', "${prefix}/proto/proto-backplane-grpc/src/main/proto/") copyFile('cpp-tests-to-junit.sh', "${prefix}/bin/dhcpp") copyFile('build-dependencies.sh', "/tmp") runCommand("PREFIX='${prefix}'; BUILD_TYPE='${build_type}'; " + diff --git a/cpp-client/deephaven/dhclient/CMakeLists.txt b/cpp-client/deephaven/dhclient/CMakeLists.txt index 48d530f206c..866ab9022eb 100644 --- a/cpp-client/deephaven/dhclient/CMakeLists.txt +++ b/cpp-client/deephaven/dhclient/CMakeLists.txt @@ -13,6 +13,50 @@ find_package(Protobuf CONFIG REQUIRED) find_package(gRPC CONFIG REQUIRED) find_package(Threads REQUIRED) +set(PROTO_SRC_DIR + "${CMAKE_CURRENT_SOURCE_DIR}/../../../proto/proto-backplane-grpc/src/main/proto") +set(PROTO_GEN_DIR + "${CMAKE_BINARY_DIR}/${PROJECT_NAME}/proto") +set(PROTO_OUT_DIR "${PROTO_GEN_DIR}/deephaven/proto") + +set(PROTO_FILES + "${PROTO_SRC_DIR}/deephaven/proto/application.proto" + "${PROTO_SRC_DIR}/deephaven/proto/config.proto" + "${PROTO_SRC_DIR}/deephaven/proto/console.proto" + "${PROTO_SRC_DIR}/deephaven/proto/hierarchicaltable.proto" + "${PROTO_SRC_DIR}/deephaven/proto/inputtable.proto" + "${PROTO_SRC_DIR}/deephaven/proto/object.proto" + "${PROTO_SRC_DIR}/deephaven/proto/partitionedtable.proto" + "${PROTO_SRC_DIR}/deephaven/proto/session.proto" + "${PROTO_SRC_DIR}/deephaven/proto/storage.proto" + "${PROTO_SRC_DIR}/deephaven/proto/table.proto" + "${PROTO_SRC_DIR}/deephaven/proto/ticket.proto" +) + +foreach(PROTO_FILE ${PROTO_FILES}) + get_filename_component(BASENAME ${PROTO_FILE} NAME_WLE) + list(APPEND PROTO_GEN_FILES + "${PROTO_OUT_DIR}/${BASENAME}.grpc.pb.cc" + "${PROTO_OUT_DIR}/${BASENAME}.grpc.pb.h" + "${PROTO_OUT_DIR}/${BASENAME}.pb.cc" + "${PROTO_OUT_DIR}/${BASENAME}.pb.h" + ) +endforeach() + +add_custom_command( + OUTPUT ${PROTO_GEN_FILES} + COMMAND "${CMAKE_COMMAND}" + ARGS -E make_directory "${PROTO_OUT_DIR}" + COMMAND protobuf::protoc + ARGS "--plugin=protoc-gen-grpc=\$" + "--cpp_out=${PROTO_GEN_DIR}" + "--grpc_out=${PROTO_GEN_DIR}" + "-I${PROTO_SRC_DIR}" + ${PROTO_FILES} + DEPENDS ${PROTO_FILES} + COMMENT "Generating protos" +) + set(ALL_FILES src/server/server.cc include/private/deephaven/client/server/server.h @@ -65,74 +109,39 @@ set(ALL_FILES include/public/deephaven/client/utility/arrow_util.h include/public/deephaven/client/utility/misc_types.h include/public/deephaven/client/utility/table_maker.h - - proto/deephaven/proto/application.grpc.pb.cc - proto/deephaven/proto/application.grpc.pb.h - proto/deephaven/proto/application.pb.cc - proto/deephaven/proto/application.pb.h - proto/deephaven/proto/config.grpc.pb.cc - proto/deephaven/proto/config.grpc.pb.h - proto/deephaven/proto/config.pb.cc - proto/deephaven/proto/config.pb.h - proto/deephaven/proto/console.grpc.pb.cc - proto/deephaven/proto/console.grpc.pb.h - proto/deephaven/proto/console.pb.cc - proto/deephaven/proto/console.pb.h - proto/deephaven/proto/inputtable.grpc.pb.cc - proto/deephaven/proto/inputtable.grpc.pb.h - proto/deephaven/proto/inputtable.pb.cc - proto/deephaven/proto/inputtable.pb.h - proto/deephaven/proto/object.grpc.pb.cc - proto/deephaven/proto/object.grpc.pb.h - proto/deephaven/proto/object.pb.cc - proto/deephaven/proto/object.pb.h - proto/deephaven/proto/partitionedtable.grpc.pb.cc - proto/deephaven/proto/partitionedtable.grpc.pb.h - proto/deephaven/proto/partitionedtable.pb.cc - proto/deephaven/proto/partitionedtable.pb.h - proto/deephaven/proto/session.grpc.pb.cc - proto/deephaven/proto/session.grpc.pb.h - proto/deephaven/proto/session.pb.cc - proto/deephaven/proto/session.pb.h - proto/deephaven/proto/table.grpc.pb.cc - proto/deephaven/proto/table.grpc.pb.h - proto/deephaven/proto/table.pb.cc - proto/deephaven/proto/table.pb.h - proto/deephaven/proto/ticket.grpc.pb.cc - proto/deephaven/proto/ticket.grpc.pb.h - proto/deephaven/proto/ticket.pb.cc - proto/deephaven/proto/ticket.pb.h ) +list(APPEND ALL_FILES ${PROTO_GEN_FILES}) + add_library(dhclient SHARED ${ALL_FILES}) # This is so deephaven::client works both when using the installed CMake config # and when using this project as a CMake subdirectory of your own project. -add_library(deephaven::client ALIAS dhclient) +add_library(deephaven::client ALIAS ${PROJECT_NAME}) -set_property(TARGET dhclient PROPERTY POSITION_INDEPENDENT_CODE ON) +set_property(TARGET ${PROJECT_NAME} PROPERTY POSITION_INDEPENDENT_CODE ON) if (LINUX) - target_compile_options(dhclient PRIVATE -Wall -Werror -Wno-deprecated-declarations) + target_compile_options(${PROJECT_NAME} PRIVATE -Wall -Werror -Wno-deprecated-declarations) endif() if (WIN32) - set_property(TARGET dhclient PROPERTY WINDOWS_EXPORT_ALL_SYMBOLS ON) + set_property(TARGET ${PROJECT_NAME} PROPERTY WINDOWS_EXPORT_ALL_SYMBOLS ON) # /Wall is a bit too chatty so we stick with /W3 # /bigobj needed because ticking/immer_table_state.cc compiles to something too large apparently - target_compile_options(dhclient PRIVATE /W3 /bigobj) + target_compile_options(${PROJECT_NAME} PRIVATE /W3 /bigobj) endif() -target_include_directories(dhclient PRIVATE include/private) -target_include_directories(dhclient PUBLIC $) +target_include_directories(${PROJECT_NAME} PRIVATE include/private) +target_include_directories(${PROJECT_NAME} PUBLIC $) # Protos and flatbuf are doing their own thing. -target_include_directories(dhclient PRIVATE "./proto") -target_include_directories(dhclient PRIVATE "./flatbuf") +target_include_directories(${PROJECT_NAME} PRIVATE "${PROTO_GEN_DIR}") +target_include_directories(${PROJECT_NAME} PRIVATE "./flatbuf") -target_link_libraries(dhclient PUBLIC deephaven::dhcore) +target_link_libraries(${PROJECT_NAME} PUBLIC deephaven::dhcore) -target_link_libraries(dhclient PUBLIC ArrowFlight::arrow_flight_shared) -target_link_libraries(dhclient PUBLIC Arrow::arrow_shared) -target_link_libraries(dhclient PRIVATE protobuf::libprotobuf) -target_link_libraries(dhclient PRIVATE gRPC::grpc++) -target_link_libraries(dhclient PRIVATE Threads::Threads) +target_link_libraries(${PROJECT_NAME} PUBLIC ArrowFlight::arrow_flight_shared) +target_link_libraries(${PROJECT_NAME} PUBLIC Arrow::arrow_shared) +target_link_libraries(${PROJECT_NAME} PRIVATE protobuf::libprotobuf) +target_link_libraries(${PROJECT_NAME} PRIVATE gRPC::grpc++) +target_link_libraries(${PROJECT_NAME} PRIVATE Threads::Threads) diff --git a/cpp-client/deephaven/dhclient/proto/deephaven/proto/application.grpc.pb.cc b/cpp-client/deephaven/dhclient/proto/deephaven/proto/application.grpc.pb.cc deleted file mode 100644 index 1e2cd205f10..00000000000 --- a/cpp-client/deephaven/dhclient/proto/deephaven/proto/application.grpc.pb.cc +++ /dev/null @@ -1,87 +0,0 @@ -// Generated by the gRPC C++ plugin. -// If you make any local change, they will be lost. -// source: deephaven/proto/application.proto - -#include "deephaven/proto/application.pb.h" -#include "deephaven/proto/application.grpc.pb.h" - -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -namespace io { -namespace deephaven { -namespace proto { -namespace backplane { -namespace grpc { - -static const char* ApplicationService_method_names[] = { - "/io.deephaven.proto.backplane.grpc.ApplicationService/ListFields", -}; - -std::unique_ptr< ApplicationService::Stub> ApplicationService::NewStub(const std::shared_ptr< ::grpc::ChannelInterface>& channel, const ::grpc::StubOptions& options) { - (void)options; - std::unique_ptr< ApplicationService::Stub> stub(new ApplicationService::Stub(channel, options)); - return stub; -} - -ApplicationService::Stub::Stub(const std::shared_ptr< ::grpc::ChannelInterface>& channel, const ::grpc::StubOptions& options) - : channel_(channel), rpcmethod_ListFields_(ApplicationService_method_names[0], options.suffix_for_stats(),::grpc::internal::RpcMethod::SERVER_STREAMING, channel) - {} - -::grpc::ClientReader< ::io::deephaven::proto::backplane::grpc::FieldsChangeUpdate>* ApplicationService::Stub::ListFieldsRaw(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::ListFieldsRequest& request) { - return ::grpc::internal::ClientReaderFactory< ::io::deephaven::proto::backplane::grpc::FieldsChangeUpdate>::Create(channel_.get(), rpcmethod_ListFields_, context, request); -} - -void ApplicationService::Stub::async::ListFields(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::ListFieldsRequest* request, ::grpc::ClientReadReactor< ::io::deephaven::proto::backplane::grpc::FieldsChangeUpdate>* reactor) { - ::grpc::internal::ClientCallbackReaderFactory< ::io::deephaven::proto::backplane::grpc::FieldsChangeUpdate>::Create(stub_->channel_.get(), stub_->rpcmethod_ListFields_, context, request, reactor); -} - -::grpc::ClientAsyncReader< ::io::deephaven::proto::backplane::grpc::FieldsChangeUpdate>* ApplicationService::Stub::AsyncListFieldsRaw(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::ListFieldsRequest& request, ::grpc::CompletionQueue* cq, void* tag) { - return ::grpc::internal::ClientAsyncReaderFactory< ::io::deephaven::proto::backplane::grpc::FieldsChangeUpdate>::Create(channel_.get(), cq, rpcmethod_ListFields_, context, request, true, tag); -} - -::grpc::ClientAsyncReader< ::io::deephaven::proto::backplane::grpc::FieldsChangeUpdate>* ApplicationService::Stub::PrepareAsyncListFieldsRaw(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::ListFieldsRequest& request, ::grpc::CompletionQueue* cq) { - return ::grpc::internal::ClientAsyncReaderFactory< ::io::deephaven::proto::backplane::grpc::FieldsChangeUpdate>::Create(channel_.get(), cq, rpcmethod_ListFields_, context, request, false, nullptr); -} - -ApplicationService::Service::Service() { - AddMethod(new ::grpc::internal::RpcServiceMethod( - ApplicationService_method_names[0], - ::grpc::internal::RpcMethod::SERVER_STREAMING, - new ::grpc::internal::ServerStreamingHandler< ApplicationService::Service, ::io::deephaven::proto::backplane::grpc::ListFieldsRequest, ::io::deephaven::proto::backplane::grpc::FieldsChangeUpdate>( - [](ApplicationService::Service* service, - ::grpc::ServerContext* ctx, - const ::io::deephaven::proto::backplane::grpc::ListFieldsRequest* req, - ::grpc::ServerWriter<::io::deephaven::proto::backplane::grpc::FieldsChangeUpdate>* writer) { - return service->ListFields(ctx, req, writer); - }, this))); -} - -ApplicationService::Service::~Service() { -} - -::grpc::Status ApplicationService::Service::ListFields(::grpc::ServerContext* context, const ::io::deephaven::proto::backplane::grpc::ListFieldsRequest* request, ::grpc::ServerWriter< ::io::deephaven::proto::backplane::grpc::FieldsChangeUpdate>* writer) { - (void) context; - (void) request; - (void) writer; - return ::grpc::Status(::grpc::StatusCode::UNIMPLEMENTED, ""); -} - - -} // namespace io -} // namespace deephaven -} // namespace proto -} // namespace backplane -} // namespace grpc - diff --git a/cpp-client/deephaven/dhclient/proto/deephaven/proto/application.grpc.pb.h b/cpp-client/deephaven/dhclient/proto/deephaven/proto/application.grpc.pb.h deleted file mode 100644 index 757643af23a..00000000000 --- a/cpp-client/deephaven/dhclient/proto/deephaven/proto/application.grpc.pb.h +++ /dev/null @@ -1,273 +0,0 @@ -// Generated by the gRPC C++ plugin. -// If you make any local change, they will be lost. -// source: deephaven/proto/application.proto -// Original file comments: -// -// Copyright (c) 2016-2022 Deephaven Data Labs and Patent Pending -#ifndef GRPC_deephaven_2fproto_2fapplication_2eproto__INCLUDED -#define GRPC_deephaven_2fproto_2fapplication_2eproto__INCLUDED - -#include "deephaven/proto/application.pb.h" - -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include - -namespace io { -namespace deephaven { -namespace proto { -namespace backplane { -namespace grpc { - -// -// Allows clients to list fields that are accessible to them. -class ApplicationService final { - public: - static constexpr char const* service_full_name() { - return "io.deephaven.proto.backplane.grpc.ApplicationService"; - } - class StubInterface { - public: - virtual ~StubInterface() {} - // - // Request the list of the fields exposed via the worker. - // - // - The first received message contains all fields that are currently available - // on the worker. None of these fields will be RemovedFields. - // - Subsequent messages modify the existing state. Fields are identified by - // their ticket and may be replaced or removed. - std::unique_ptr< ::grpc::ClientReaderInterface< ::io::deephaven::proto::backplane::grpc::FieldsChangeUpdate>> ListFields(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::ListFieldsRequest& request) { - return std::unique_ptr< ::grpc::ClientReaderInterface< ::io::deephaven::proto::backplane::grpc::FieldsChangeUpdate>>(ListFieldsRaw(context, request)); - } - std::unique_ptr< ::grpc::ClientAsyncReaderInterface< ::io::deephaven::proto::backplane::grpc::FieldsChangeUpdate>> AsyncListFields(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::ListFieldsRequest& request, ::grpc::CompletionQueue* cq, void* tag) { - return std::unique_ptr< ::grpc::ClientAsyncReaderInterface< ::io::deephaven::proto::backplane::grpc::FieldsChangeUpdate>>(AsyncListFieldsRaw(context, request, cq, tag)); - } - std::unique_ptr< ::grpc::ClientAsyncReaderInterface< ::io::deephaven::proto::backplane::grpc::FieldsChangeUpdate>> PrepareAsyncListFields(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::ListFieldsRequest& request, ::grpc::CompletionQueue* cq) { - return std::unique_ptr< ::grpc::ClientAsyncReaderInterface< ::io::deephaven::proto::backplane::grpc::FieldsChangeUpdate>>(PrepareAsyncListFieldsRaw(context, request, cq)); - } - class async_interface { - public: - virtual ~async_interface() {} - // - // Request the list of the fields exposed via the worker. - // - // - The first received message contains all fields that are currently available - // on the worker. None of these fields will be RemovedFields. - // - Subsequent messages modify the existing state. Fields are identified by - // their ticket and may be replaced or removed. - virtual void ListFields(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::ListFieldsRequest* request, ::grpc::ClientReadReactor< ::io::deephaven::proto::backplane::grpc::FieldsChangeUpdate>* reactor) = 0; - }; - typedef class async_interface experimental_async_interface; - virtual class async_interface* async() { return nullptr; } - class async_interface* experimental_async() { return async(); } - private: - virtual ::grpc::ClientReaderInterface< ::io::deephaven::proto::backplane::grpc::FieldsChangeUpdate>* ListFieldsRaw(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::ListFieldsRequest& request) = 0; - virtual ::grpc::ClientAsyncReaderInterface< ::io::deephaven::proto::backplane::grpc::FieldsChangeUpdate>* AsyncListFieldsRaw(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::ListFieldsRequest& request, ::grpc::CompletionQueue* cq, void* tag) = 0; - virtual ::grpc::ClientAsyncReaderInterface< ::io::deephaven::proto::backplane::grpc::FieldsChangeUpdate>* PrepareAsyncListFieldsRaw(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::ListFieldsRequest& request, ::grpc::CompletionQueue* cq) = 0; - }; - class Stub final : public StubInterface { - public: - Stub(const std::shared_ptr< ::grpc::ChannelInterface>& channel, const ::grpc::StubOptions& options = ::grpc::StubOptions()); - std::unique_ptr< ::grpc::ClientReader< ::io::deephaven::proto::backplane::grpc::FieldsChangeUpdate>> ListFields(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::ListFieldsRequest& request) { - return std::unique_ptr< ::grpc::ClientReader< ::io::deephaven::proto::backplane::grpc::FieldsChangeUpdate>>(ListFieldsRaw(context, request)); - } - std::unique_ptr< ::grpc::ClientAsyncReader< ::io::deephaven::proto::backplane::grpc::FieldsChangeUpdate>> AsyncListFields(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::ListFieldsRequest& request, ::grpc::CompletionQueue* cq, void* tag) { - return std::unique_ptr< ::grpc::ClientAsyncReader< ::io::deephaven::proto::backplane::grpc::FieldsChangeUpdate>>(AsyncListFieldsRaw(context, request, cq, tag)); - } - std::unique_ptr< ::grpc::ClientAsyncReader< ::io::deephaven::proto::backplane::grpc::FieldsChangeUpdate>> PrepareAsyncListFields(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::ListFieldsRequest& request, ::grpc::CompletionQueue* cq) { - return std::unique_ptr< ::grpc::ClientAsyncReader< ::io::deephaven::proto::backplane::grpc::FieldsChangeUpdate>>(PrepareAsyncListFieldsRaw(context, request, cq)); - } - class async final : - public StubInterface::async_interface { - public: - void ListFields(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::ListFieldsRequest* request, ::grpc::ClientReadReactor< ::io::deephaven::proto::backplane::grpc::FieldsChangeUpdate>* reactor) override; - private: - friend class Stub; - explicit async(Stub* stub): stub_(stub) { } - Stub* stub() { return stub_; } - Stub* stub_; - }; - class async* async() override { return &async_stub_; } - - private: - std::shared_ptr< ::grpc::ChannelInterface> channel_; - class async async_stub_{this}; - ::grpc::ClientReader< ::io::deephaven::proto::backplane::grpc::FieldsChangeUpdate>* ListFieldsRaw(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::ListFieldsRequest& request) override; - ::grpc::ClientAsyncReader< ::io::deephaven::proto::backplane::grpc::FieldsChangeUpdate>* AsyncListFieldsRaw(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::ListFieldsRequest& request, ::grpc::CompletionQueue* cq, void* tag) override; - ::grpc::ClientAsyncReader< ::io::deephaven::proto::backplane::grpc::FieldsChangeUpdate>* PrepareAsyncListFieldsRaw(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::ListFieldsRequest& request, ::grpc::CompletionQueue* cq) override; - const ::grpc::internal::RpcMethod rpcmethod_ListFields_; - }; - static std::unique_ptr NewStub(const std::shared_ptr< ::grpc::ChannelInterface>& channel, const ::grpc::StubOptions& options = ::grpc::StubOptions()); - - class Service : public ::grpc::Service { - public: - Service(); - virtual ~Service(); - // - // Request the list of the fields exposed via the worker. - // - // - The first received message contains all fields that are currently available - // on the worker. None of these fields will be RemovedFields. - // - Subsequent messages modify the existing state. Fields are identified by - // their ticket and may be replaced or removed. - virtual ::grpc::Status ListFields(::grpc::ServerContext* context, const ::io::deephaven::proto::backplane::grpc::ListFieldsRequest* request, ::grpc::ServerWriter< ::io::deephaven::proto::backplane::grpc::FieldsChangeUpdate>* writer); - }; - template - class WithAsyncMethod_ListFields : public BaseClass { - private: - void BaseClassMustBeDerivedFromService(const Service* /*service*/) {} - public: - WithAsyncMethod_ListFields() { - ::grpc::Service::MarkMethodAsync(0); - } - ~WithAsyncMethod_ListFields() override { - BaseClassMustBeDerivedFromService(this); - } - // disable synchronous version of this method - ::grpc::Status ListFields(::grpc::ServerContext* /*context*/, const ::io::deephaven::proto::backplane::grpc::ListFieldsRequest* /*request*/, ::grpc::ServerWriter< ::io::deephaven::proto::backplane::grpc::FieldsChangeUpdate>* /*writer*/) override { - abort(); - return ::grpc::Status(::grpc::StatusCode::UNIMPLEMENTED, ""); - } - void RequestListFields(::grpc::ServerContext* context, ::io::deephaven::proto::backplane::grpc::ListFieldsRequest* request, ::grpc::ServerAsyncWriter< ::io::deephaven::proto::backplane::grpc::FieldsChangeUpdate>* writer, ::grpc::CompletionQueue* new_call_cq, ::grpc::ServerCompletionQueue* notification_cq, void *tag) { - ::grpc::Service::RequestAsyncServerStreaming(0, context, request, writer, new_call_cq, notification_cq, tag); - } - }; - typedef WithAsyncMethod_ListFields AsyncService; - template - class WithCallbackMethod_ListFields : public BaseClass { - private: - void BaseClassMustBeDerivedFromService(const Service* /*service*/) {} - public: - WithCallbackMethod_ListFields() { - ::grpc::Service::MarkMethodCallback(0, - new ::grpc::internal::CallbackServerStreamingHandler< ::io::deephaven::proto::backplane::grpc::ListFieldsRequest, ::io::deephaven::proto::backplane::grpc::FieldsChangeUpdate>( - [this]( - ::grpc::CallbackServerContext* context, const ::io::deephaven::proto::backplane::grpc::ListFieldsRequest* request) { return this->ListFields(context, request); })); - } - ~WithCallbackMethod_ListFields() override { - BaseClassMustBeDerivedFromService(this); - } - // disable synchronous version of this method - ::grpc::Status ListFields(::grpc::ServerContext* /*context*/, const ::io::deephaven::proto::backplane::grpc::ListFieldsRequest* /*request*/, ::grpc::ServerWriter< ::io::deephaven::proto::backplane::grpc::FieldsChangeUpdate>* /*writer*/) override { - abort(); - return ::grpc::Status(::grpc::StatusCode::UNIMPLEMENTED, ""); - } - virtual ::grpc::ServerWriteReactor< ::io::deephaven::proto::backplane::grpc::FieldsChangeUpdate>* ListFields( - ::grpc::CallbackServerContext* /*context*/, const ::io::deephaven::proto::backplane::grpc::ListFieldsRequest* /*request*/) { return nullptr; } - }; - typedef WithCallbackMethod_ListFields CallbackService; - typedef CallbackService ExperimentalCallbackService; - template - class WithGenericMethod_ListFields : public BaseClass { - private: - void BaseClassMustBeDerivedFromService(const Service* /*service*/) {} - public: - WithGenericMethod_ListFields() { - ::grpc::Service::MarkMethodGeneric(0); - } - ~WithGenericMethod_ListFields() override { - BaseClassMustBeDerivedFromService(this); - } - // disable synchronous version of this method - ::grpc::Status ListFields(::grpc::ServerContext* /*context*/, const ::io::deephaven::proto::backplane::grpc::ListFieldsRequest* /*request*/, ::grpc::ServerWriter< ::io::deephaven::proto::backplane::grpc::FieldsChangeUpdate>* /*writer*/) override { - abort(); - return ::grpc::Status(::grpc::StatusCode::UNIMPLEMENTED, ""); - } - }; - template - class WithRawMethod_ListFields : public BaseClass { - private: - void BaseClassMustBeDerivedFromService(const Service* /*service*/) {} - public: - WithRawMethod_ListFields() { - ::grpc::Service::MarkMethodRaw(0); - } - ~WithRawMethod_ListFields() override { - BaseClassMustBeDerivedFromService(this); - } - // disable synchronous version of this method - ::grpc::Status ListFields(::grpc::ServerContext* /*context*/, const ::io::deephaven::proto::backplane::grpc::ListFieldsRequest* /*request*/, ::grpc::ServerWriter< ::io::deephaven::proto::backplane::grpc::FieldsChangeUpdate>* /*writer*/) override { - abort(); - return ::grpc::Status(::grpc::StatusCode::UNIMPLEMENTED, ""); - } - void RequestListFields(::grpc::ServerContext* context, ::grpc::ByteBuffer* request, ::grpc::ServerAsyncWriter< ::grpc::ByteBuffer>* writer, ::grpc::CompletionQueue* new_call_cq, ::grpc::ServerCompletionQueue* notification_cq, void *tag) { - ::grpc::Service::RequestAsyncServerStreaming(0, context, request, writer, new_call_cq, notification_cq, tag); - } - }; - template - class WithRawCallbackMethod_ListFields : public BaseClass { - private: - void BaseClassMustBeDerivedFromService(const Service* /*service*/) {} - public: - WithRawCallbackMethod_ListFields() { - ::grpc::Service::MarkMethodRawCallback(0, - new ::grpc::internal::CallbackServerStreamingHandler< ::grpc::ByteBuffer, ::grpc::ByteBuffer>( - [this]( - ::grpc::CallbackServerContext* context, const::grpc::ByteBuffer* request) { return this->ListFields(context, request); })); - } - ~WithRawCallbackMethod_ListFields() override { - BaseClassMustBeDerivedFromService(this); - } - // disable synchronous version of this method - ::grpc::Status ListFields(::grpc::ServerContext* /*context*/, const ::io::deephaven::proto::backplane::grpc::ListFieldsRequest* /*request*/, ::grpc::ServerWriter< ::io::deephaven::proto::backplane::grpc::FieldsChangeUpdate>* /*writer*/) override { - abort(); - return ::grpc::Status(::grpc::StatusCode::UNIMPLEMENTED, ""); - } - virtual ::grpc::ServerWriteReactor< ::grpc::ByteBuffer>* ListFields( - ::grpc::CallbackServerContext* /*context*/, const ::grpc::ByteBuffer* /*request*/) { return nullptr; } - }; - typedef Service StreamedUnaryService; - template - class WithSplitStreamingMethod_ListFields : public BaseClass { - private: - void BaseClassMustBeDerivedFromService(const Service* /*service*/) {} - public: - WithSplitStreamingMethod_ListFields() { - ::grpc::Service::MarkMethodStreamed(0, - new ::grpc::internal::SplitServerStreamingHandler< - ::io::deephaven::proto::backplane::grpc::ListFieldsRequest, ::io::deephaven::proto::backplane::grpc::FieldsChangeUpdate>( - [this](::grpc::ServerContext* context, - ::grpc::ServerSplitStreamer< - ::io::deephaven::proto::backplane::grpc::ListFieldsRequest, ::io::deephaven::proto::backplane::grpc::FieldsChangeUpdate>* streamer) { - return this->StreamedListFields(context, - streamer); - })); - } - ~WithSplitStreamingMethod_ListFields() override { - BaseClassMustBeDerivedFromService(this); - } - // disable regular version of this method - ::grpc::Status ListFields(::grpc::ServerContext* /*context*/, const ::io::deephaven::proto::backplane::grpc::ListFieldsRequest* /*request*/, ::grpc::ServerWriter< ::io::deephaven::proto::backplane::grpc::FieldsChangeUpdate>* /*writer*/) override { - abort(); - return ::grpc::Status(::grpc::StatusCode::UNIMPLEMENTED, ""); - } - // replace default version of method with split streamed - virtual ::grpc::Status StreamedListFields(::grpc::ServerContext* context, ::grpc::ServerSplitStreamer< ::io::deephaven::proto::backplane::grpc::ListFieldsRequest,::io::deephaven::proto::backplane::grpc::FieldsChangeUpdate>* server_split_streamer) = 0; - }; - typedef WithSplitStreamingMethod_ListFields SplitStreamedService; - typedef WithSplitStreamingMethod_ListFields StreamedService; -}; - -} // namespace grpc -} // namespace backplane -} // namespace proto -} // namespace deephaven -} // namespace io - - -#endif // GRPC_deephaven_2fproto_2fapplication_2eproto__INCLUDED diff --git a/cpp-client/deephaven/dhclient/proto/deephaven/proto/application.pb.cc b/cpp-client/deephaven/dhclient/proto/deephaven/proto/application.pb.cc deleted file mode 100644 index 49caed962b0..00000000000 --- a/cpp-client/deephaven/dhclient/proto/deephaven/proto/application.pb.cc +++ /dev/null @@ -1,989 +0,0 @@ -// 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" -// @@protoc_insertion_point(includes) - -// Must be included last. -#include "google/protobuf/port_def.inc" -PROTOBUF_PRAGMA_INIT_SEG -namespace _pb = ::google::protobuf; -namespace _pbi = ::google::protobuf::internal; -namespace _fl = ::google::protobuf::internal::field_layout; -namespace io { -namespace deephaven { -namespace proto { -namespace backplane { -namespace grpc { - 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() {} - union { - ListFieldsRequest _instance; - }; -}; - -PROTOBUF_ATTRIBUTE_NO_DESTROY PROTOBUF_CONSTINIT - PROTOBUF_ATTRIBUTE_INIT_PRIORITY1 ListFieldsRequestDefaultTypeInternal _ListFieldsRequest_default_instance_; - -inline constexpr FieldInfo::Impl_::Impl_( - ::_pbi::ConstantInitialized) noexcept - : _cached_size_{0}, - field_name_( - &::google::protobuf::internal::fixed_address_empty_string, - ::_pbi::ConstantInitialized()), - field_description_( - &::google::protobuf::internal::fixed_address_empty_string, - ::_pbi::ConstantInitialized()), - application_name_( - &::google::protobuf::internal::fixed_address_empty_string, - ::_pbi::ConstantInitialized()), - application_id_( - &::google::protobuf::internal::fixed_address_empty_string, - ::_pbi::ConstantInitialized()), - typed_ticket_{nullptr} {} - -template -PROTOBUF_CONSTEXPR FieldInfo::FieldInfo(::_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() {} - union { - FieldInfo _instance; - }; -}; - -PROTOBUF_ATTRIBUTE_NO_DESTROY PROTOBUF_CONSTINIT - PROTOBUF_ATTRIBUTE_INIT_PRIORITY1 FieldInfoDefaultTypeInternal _FieldInfo_default_instance_; - -inline constexpr FieldsChangeUpdate::Impl_::Impl_( - ::_pbi::ConstantInitialized) noexcept - : created_{}, - updated_{}, - removed_{}, - _cached_size_{0} {} - -template -PROTOBUF_CONSTEXPR FieldsChangeUpdate::FieldsChangeUpdate(::_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() {} - union { - FieldsChangeUpdate _instance; - }; -}; - -PROTOBUF_ATTRIBUTE_NO_DESTROY PROTOBUF_CONSTINIT - PROTOBUF_ATTRIBUTE_INIT_PRIORITY1 FieldsChangeUpdateDefaultTypeInternal _FieldsChangeUpdate_default_instance_; -} // namespace grpc -} // namespace backplane -} // namespace proto -} // namespace deephaven -} // namespace io -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[] 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[] 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[] 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" - "t\"\321\001\n\022FieldsChangeUpdate\022=\n\007created\030\001 \003(" - "\0132,.io.deephaven.proto.backplane.grpc.Fi" - "eldInfo\022=\n\007updated\030\002 \003(\0132,.io.deephaven." - "proto.backplane.grpc.FieldInfo\022=\n\007remove" - "d\030\003 \003(\0132,.io.deephaven.proto.backplane.g" - "rpc.FieldInfo\"\262\001\n\tFieldInfo\022D\n\014typed_tic" - "ket\030\001 \001(\0132..io.deephaven.proto.backplane" - ".grpc.TypedTicket\022\022\n\nfield_name\030\002 \001(\t\022\031\n" - "\021field_description\030\003 \001(\t\022\030\n\020application_" - "name\030\004 \001(\t\022\026\n\016application_id\030\005 \001(\t2\223\001\n\022A" - "pplicationService\022}\n\nListFields\0224.io.dee" - "phaven.proto.backplane.grpc.ListFieldsRe" - "quest\0325.io.deephaven.proto.backplane.grp" - "c.FieldsChangeUpdate\"\0000\001BGH\001P\001ZAgithub.c" - "om/deephaven/deephaven-core/go/internal/" - "proto/applicationb\006proto3" -}; -static const ::_pbi::DescriptorTable* const descriptor_table_deephaven_2fproto_2fapplication_2eproto_deps[1] = - { - &::descriptor_table_deephaven_2fproto_2fticket_2eproto, -}; -static ::absl::once_flag descriptor_table_deephaven_2fproto_2fapplication_2eproto_once; -PROTOBUF_CONSTINIT const ::_pbi::DescriptorTable descriptor_table_deephaven_2fproto_2fapplication_2eproto = { - false, - false, - 745, - descriptor_table_protodef_deephaven_2fproto_2fapplication_2eproto, - "deephaven/proto/application.proto", - &descriptor_table_deephaven_2fproto_2fapplication_2eproto_once, - descriptor_table_deephaven_2fproto_2fapplication_2eproto_deps, - 1, - 3, - schemas, - file_default_instances, - TableStruct_deephaven_2fproto_2fapplication_2eproto::offsets, - file_level_enum_descriptors_deephaven_2fproto_2fapplication_2eproto, - file_level_service_descriptors_deephaven_2fproto_2fapplication_2eproto, -}; -namespace io { -namespace deephaven { -namespace proto { -namespace backplane { -namespace grpc { -// =================================================================== - -class ListFieldsRequest::_Internal { - public: -}; - -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>( - from._internal_metadata_); - - // @@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 - {{ - }}, -}; - - - - - - - - -::google::protobuf::Metadata ListFieldsRequest::GetMetadata() const { - return ::google::protobuf::internal::ZeroFieldsBase::GetMetadataImpl(GetClassData()->full()); -} -// =================================================================== - -class FieldsChangeUpdate::_Internal { - public: -}; - -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 ::io::deephaven::proto::backplane::grpc::FieldsChangeUpdate& from_msg) - : created_{visibility, arena, from.created_}, - updated_{visibility, arena, from.updated_}, - removed_{visibility, arena, from.removed_}, - _cached_size_{0} {} - -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_, from); - - // @@protoc_insertion_point(copy_constructor:io.deephaven.proto.backplane.grpc.FieldsChangeUpdate) -} -inline PROTOBUF_NDEBUG_INLINE FieldsChangeUpdate::Impl_::Impl_( - ::google::protobuf::internal::InternalVisibility visibility, - ::google::protobuf::Arena* arena) - : created_{visibility, arena}, - updated_{visibility, arena}, - removed_{visibility, arena}, - _cached_size_{0} {} - -inline void FieldsChangeUpdate::SharedCtor(::_pb::Arena* arena) { - new (&_impl_) Impl_(internal_visibility(), arena); -} -FieldsChangeUpdate::~FieldsChangeUpdate() { - // @@protoc_insertion_point(destructor:io.deephaven.proto.backplane.grpc.FieldsChangeUpdate) - _internal_metadata_.Delete<::google::protobuf::UnknownFieldSet>(); - SharedDtor(); -} -inline void FieldsChangeUpdate::SharedDtor() { - ABSL_DCHECK(GetArena() == nullptr); - _impl_.~Impl_(); -} - -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_ = { - { - 0, // no _has_bits_ - 0, // no _extensions_ - 3, 24, // max_field_number, fast_idx_mask - offsetof(decltype(_table_), field_lookup_table), - 4294967288, // skipmap - offsetof(decltype(_table_), field_entries), - 3, // num_field_entries - 3, // num_aux_entries - offsetof(decltype(_table_), 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::FieldsChangeUpdate>(), // to_prefetch - #endif // PROTOBUF_PREFETCH_PARSE_TABLE - }, {{ - {::_pbi::TcParser::MiniParse, {}}, - // repeated .io.deephaven.proto.backplane.grpc.FieldInfo created = 1; - {::_pbi::TcParser::FastMtR1, - {10, 63, 0, PROTOBUF_FIELD_OFFSET(FieldsChangeUpdate, _impl_.created_)}}, - // repeated .io.deephaven.proto.backplane.grpc.FieldInfo updated = 2; - {::_pbi::TcParser::FastMtR1, - {18, 63, 1, PROTOBUF_FIELD_OFFSET(FieldsChangeUpdate, _impl_.updated_)}}, - // repeated .io.deephaven.proto.backplane.grpc.FieldInfo removed = 3; - {::_pbi::TcParser::FastMtR1, - {26, 63, 2, PROTOBUF_FIELD_OFFSET(FieldsChangeUpdate, _impl_.removed_)}}, - }}, {{ - 65535, 65535 - }}, {{ - // repeated .io.deephaven.proto.backplane.grpc.FieldInfo created = 1; - {PROTOBUF_FIELD_OFFSET(FieldsChangeUpdate, _impl_.created_), 0, 0, - (0 | ::_fl::kFcRepeated | ::_fl::kMessage | ::_fl::kTvTable)}, - // repeated .io.deephaven.proto.backplane.grpc.FieldInfo updated = 2; - {PROTOBUF_FIELD_OFFSET(FieldsChangeUpdate, _impl_.updated_), 0, 1, - (0 | ::_fl::kFcRepeated | ::_fl::kMessage | ::_fl::kTvTable)}, - // repeated .io.deephaven.proto.backplane.grpc.FieldInfo removed = 3; - {PROTOBUF_FIELD_OFFSET(FieldsChangeUpdate, _impl_.removed_), 0, 2, - (0 | ::_fl::kFcRepeated | ::_fl::kMessage | ::_fl::kTvTable)}, - }}, {{ - {::_pbi::TcParser::GetTable<::io::deephaven::proto::backplane::grpc::FieldInfo>()}, - {::_pbi::TcParser::GetTable<::io::deephaven::proto::backplane::grpc::FieldInfo>()}, - {::_pbi::TcParser::GetTable<::io::deephaven::proto::backplane::grpc::FieldInfo>()}, - }}, {{ - }}, -}; - -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; - - _impl_.created_.Clear(); - _impl_.updated_.Clear(); - _impl_.removed_.Clear(); - _internal_metadata_.Clear<::google::protobuf::UnknownFieldSet>(); -} - -#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) - ABSL_DCHECK_NE(&from, _this); - ::uint32_t cached_has_bits = 0; - (void) cached_has_bits; - - _this->_internal_mutable_created()->MergeFrom( - from._internal_created()); - _this->_internal_mutable_updated()->MergeFrom( - from._internal_updated()); - _this->_internal_mutable_removed()->MergeFrom( - from._internal_removed()); - _this->_internal_metadata_.MergeFrom<::google::protobuf::UnknownFieldSet>(from._internal_metadata_); -} - -void FieldsChangeUpdate::CopyFrom(const FieldsChangeUpdate& from) { -// @@protoc_insertion_point(class_specific_copy_from_start:io.deephaven.proto.backplane.grpc.FieldsChangeUpdate) - if (&from == this) return; - Clear(); - MergeFrom(from); -} - - -void FieldsChangeUpdate::InternalSwap(FieldsChangeUpdate* PROTOBUF_RESTRICT other) { - using std::swap; - _internal_metadata_.InternalSwap(&other->_internal_metadata_); - _impl_.created_.InternalSwap(&other->_impl_.created_); - _impl_.updated_.InternalSwap(&other->_impl_.updated_); - _impl_.removed_.InternalSwap(&other->_impl_.removed_); -} - -::google::protobuf::Metadata FieldsChangeUpdate::GetMetadata() const { - return ::google::protobuf::Message::GetMetadataImpl(GetClassData()->full()); -} -// =================================================================== - -class FieldInfo::_Internal { - public: - using HasBits = - decltype(std::declval()._impl_._has_bits_); - static constexpr ::int32_t kHasBitsOffset = - 8 * PROTOBUF_FIELD_OFFSET(FieldInfo, _impl_._has_bits_); -}; - -void FieldInfo::clear_typed_ticket() { - ::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 ::io::deephaven::proto::backplane::grpc::FieldInfo& from_msg) - : _has_bits_{from._has_bits_}, - _cached_size_{0}, - field_name_(arena, from.field_name_), - field_description_(arena, from.field_description_), - application_name_(arena, from.application_name_), - application_id_(arena, from.application_id_) {} - -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_, from); - ::uint32_t cached_has_bits = _impl_._has_bits_[0]; - _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) -} -inline PROTOBUF_NDEBUG_INLINE FieldInfo::Impl_::Impl_( - ::google::protobuf::internal::InternalVisibility visibility, - ::google::protobuf::Arena* arena) - : _cached_size_{0}, - field_name_(arena), - field_description_(arena), - application_name_(arena), - application_id_(arena) {} - -inline void FieldInfo::SharedCtor(::_pb::Arena* arena) { - new (&_impl_) Impl_(internal_visibility(), arena); - _impl_.typed_ticket_ = {}; -} -FieldInfo::~FieldInfo() { - // @@protoc_insertion_point(destructor:io.deephaven.proto.backplane.grpc.FieldInfo) - _internal_metadata_.Delete<::google::protobuf::UnknownFieldSet>(); - SharedDtor(); -} -inline void FieldInfo::SharedDtor() { - ABSL_DCHECK(GetArena() == nullptr); - _impl_.field_name_.Destroy(); - _impl_.field_description_.Destroy(); - _impl_.application_name_.Destroy(); - _impl_.application_id_.Destroy(); - delete _impl_.typed_ticket_; - _impl_.~Impl_(); -} - -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_ = { - { - PROTOBUF_FIELD_OFFSET(FieldInfo, _impl_._has_bits_), - 0, // no _extensions_ - 5, 56, // max_field_number, fast_idx_mask - offsetof(decltype(_table_), field_lookup_table), - 4294967264, // skipmap - offsetof(decltype(_table_), field_entries), - 5, // num_field_entries - 1, // num_aux_entries - offsetof(decltype(_table_), 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::FieldInfo>(), // to_prefetch - #endif // PROTOBUF_PREFETCH_PARSE_TABLE - }, {{ - {::_pbi::TcParser::MiniParse, {}}, - // .io.deephaven.proto.backplane.grpc.TypedTicket typed_ticket = 1; - {::_pbi::TcParser::FastMtS1, - {10, 0, 0, PROTOBUF_FIELD_OFFSET(FieldInfo, _impl_.typed_ticket_)}}, - // string field_name = 2; - {::_pbi::TcParser::FastUS1, - {18, 63, 0, PROTOBUF_FIELD_OFFSET(FieldInfo, _impl_.field_name_)}}, - // string field_description = 3; - {::_pbi::TcParser::FastUS1, - {26, 63, 0, PROTOBUF_FIELD_OFFSET(FieldInfo, _impl_.field_description_)}}, - // string application_name = 4; - {::_pbi::TcParser::FastUS1, - {34, 63, 0, PROTOBUF_FIELD_OFFSET(FieldInfo, _impl_.application_name_)}}, - // string application_id = 5; - {::_pbi::TcParser::FastUS1, - {42, 63, 0, PROTOBUF_FIELD_OFFSET(FieldInfo, _impl_.application_id_)}}, - {::_pbi::TcParser::MiniParse, {}}, - {::_pbi::TcParser::MiniParse, {}}, - }}, {{ - 65535, 65535 - }}, {{ - // .io.deephaven.proto.backplane.grpc.TypedTicket typed_ticket = 1; - {PROTOBUF_FIELD_OFFSET(FieldInfo, _impl_.typed_ticket_), _Internal::kHasBitsOffset + 0, 0, - (0 | ::_fl::kFcOptional | ::_fl::kMessage | ::_fl::kTvTable)}, - // string field_name = 2; - {PROTOBUF_FIELD_OFFSET(FieldInfo, _impl_.field_name_), -1, 0, - (0 | ::_fl::kFcSingular | ::_fl::kUtf8String | ::_fl::kRepAString)}, - // string field_description = 3; - {PROTOBUF_FIELD_OFFSET(FieldInfo, _impl_.field_description_), -1, 0, - (0 | ::_fl::kFcSingular | ::_fl::kUtf8String | ::_fl::kRepAString)}, - // string application_name = 4; - {PROTOBUF_FIELD_OFFSET(FieldInfo, _impl_.application_name_), -1, 0, - (0 | ::_fl::kFcSingular | ::_fl::kUtf8String | ::_fl::kRepAString)}, - // string application_id = 5; - {PROTOBUF_FIELD_OFFSET(FieldInfo, _impl_.application_id_), -1, 0, - (0 | ::_fl::kFcSingular | ::_fl::kUtf8String | ::_fl::kRepAString)}, - }}, {{ - {::_pbi::TcParser::GetTable<::io::deephaven::proto::backplane::grpc::TypedTicket>()}, - }}, {{ - "\53\0\12\21\20\16\0\0" - "io.deephaven.proto.backplane.grpc.FieldInfo" - "field_name" - "field_description" - "application_name" - "application_id" - }}, -}; - -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; - - _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>(); -} - -#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; - (void) cached_has_bits; - - if (!from._internal_field_name().empty()) { - _this->_internal_set_field_name(from._internal_field_name()); - } - if (!from._internal_field_description().empty()) { - _this->_internal_set_field_description(from._internal_field_description()); - } - if (!from._internal_application_name().empty()) { - _this->_internal_set_application_name(from._internal_application_name()); - } - if (!from._internal_application_id().empty()) { - _this->_internal_set_application_id(from._internal_application_id()); - } - 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_); -} - -void FieldInfo::CopyFrom(const FieldInfo& from) { -// @@protoc_insertion_point(class_specific_copy_from_start:io.deephaven.proto.backplane.grpc.FieldInfo) - if (&from == this) return; - Clear(); - MergeFrom(from); -} - - -void FieldInfo::InternalSwap(FieldInfo* PROTOBUF_RESTRICT other) { - using std::swap; - auto* arena = GetArena(); - ABSL_DCHECK_EQ(arena, other->GetArena()); - _internal_metadata_.InternalSwap(&other->_internal_metadata_); - swap(_impl_._has_bits_[0], other->_impl_._has_bits_[0]); - ::_pbi::ArenaStringPtr::InternalSwap(&_impl_.field_name_, &other->_impl_.field_name_, arena); - ::_pbi::ArenaStringPtr::InternalSwap(&_impl_.field_description_, &other->_impl_.field_description_, arena); - ::_pbi::ArenaStringPtr::InternalSwap(&_impl_.application_name_, &other->_impl_.application_name_, arena); - ::_pbi::ArenaStringPtr::InternalSwap(&_impl_.application_id_, &other->_impl_.application_id_, arena); - swap(_impl_.typed_ticket_, other->_impl_.typed_ticket_); -} - -::google::protobuf::Metadata FieldInfo::GetMetadata() const { - return ::google::protobuf::Message::GetMetadataImpl(GetClassData()->full()); -} -// @@protoc_insertion_point(namespace_scope) -} // namespace grpc -} // namespace backplane -} // namespace proto -} // namespace deephaven -} // namespace io -namespace google { -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 deleted file mode 100644 index f3650a407a3..00000000000 --- a/cpp-client/deephaven/dhclient/proto/deephaven/proto/application.pb.h +++ /dev/null @@ -1,1208 +0,0 @@ -// 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 - -#ifndef GOOGLE_PROTOBUF_INCLUDED_deephaven_2fproto_2fapplication_2eproto_2epb_2eh -#define GOOGLE_PROTOBUF_INCLUDED_deephaven_2fproto_2fapplication_2eproto_2epb_2eh - -#include -#include -#include -#include - -#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" -#include "google/protobuf/generated_message_bases.h" -#include "google/protobuf/generated_message_tctable_decl.h" -#include "google/protobuf/generated_message_util.h" -#include "google/protobuf/metadata_lite.h" -#include "google/protobuf/generated_message_reflection.h" -#include "google/protobuf/message.h" -#include "google/protobuf/repeated_field.h" // IWYU pragma: export -#include "google/protobuf/extension_set.h" // IWYU pragma: export -#include "google/protobuf/unknown_field_set.h" -#include "deephaven/proto/ticket.pb.h" -// @@protoc_insertion_point(includes) - -// Must be included last. -#include "google/protobuf/port_def.inc" - -#define PROTOBUF_INTERNAL_EXPORT_deephaven_2fproto_2fapplication_2eproto - -namespace google { -namespace protobuf { -namespace internal { -class AnyMetadata; -} // namespace internal -} // namespace protobuf -} // namespace google - -// Internal implementation detail -- do not use these members. -struct TableStruct_deephaven_2fproto_2fapplication_2eproto { - static const ::uint32_t offsets[]; -}; -extern const ::google::protobuf::internal::DescriptorTable - descriptor_table_deephaven_2fproto_2fapplication_2eproto; -namespace io { -namespace deephaven { -namespace proto { -namespace backplane { -namespace grpc { -class FieldInfo; -struct FieldInfoDefaultTypeInternal; -extern FieldInfoDefaultTypeInternal _FieldInfo_default_instance_; -class FieldsChangeUpdate; -struct FieldsChangeUpdateDefaultTypeInternal; -extern FieldsChangeUpdateDefaultTypeInternal _FieldsChangeUpdate_default_instance_; -class ListFieldsRequest; -struct ListFieldsRequestDefaultTypeInternal; -extern ListFieldsRequestDefaultTypeInternal _ListFieldsRequest_default_instance_; -} // namespace grpc -} // namespace backplane -} // namespace proto -} // namespace deephaven -} // namespace io -namespace google { -namespace protobuf { -} // namespace protobuf -} // namespace google - -namespace io { -namespace deephaven { -namespace proto { -namespace backplane { -namespace grpc { - -// =================================================================== - - -// ------------------------------------------------------------------- - -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) {} - inline ListFieldsRequest(ListFieldsRequest&& from) noexcept - : ListFieldsRequest(nullptr, std::move(from)) {} - inline ListFieldsRequest& operator=(const ListFieldsRequest& from) { - CopyFrom(from); - return *this; - } - inline ListFieldsRequest& operator=(ListFieldsRequest&& 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 ListFieldsRequest& default_instance() { - return *internal_default_instance(); - } - 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); } - 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 - if (GetArena() == other->GetArena()) { -#endif // !PROTOBUF_FORCE_COPY_IN_SWAP - InternalSwap(other); - } else { - ::google::protobuf::internal::GenericSwap(this, other); - } - } - void UnsafeArenaSwap(ListFieldsRequest* other) { - if (other == this) return; - ABSL_DCHECK(GetArena() == other->GetArena()); - InternalSwap(other); - } - - // implements Message ---------------------------------------------- - - 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) { - ::google::protobuf::internal::ZeroFieldsBase::CopyImpl(*this, from); - } - using ::google::protobuf::internal::ZeroFieldsBase::MergeFrom; - void MergeFrom(const ListFieldsRequest& 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.ListFieldsRequest"; } - - protected: - explicit ListFieldsRequest(::google::protobuf::Arena* arena); - ListFieldsRequest(::google::protobuf::Arena* arena, const ListFieldsRequest& from); - 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; - 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 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) */ { - public: - inline FieldInfo() : FieldInfo(nullptr) {} - ~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; - } - inline FieldInfo& operator=(FieldInfo&& 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 FieldInfo& default_instance() { - return *internal_default_instance(); - } - 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); } - 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 - if (GetArena() == other->GetArena()) { -#endif // !PROTOBUF_FORCE_COPY_IN_SWAP - InternalSwap(other); - } else { - ::google::protobuf::internal::GenericSwap(this, other); - } - } - void UnsafeArenaSwap(FieldInfo* other) { - if (other == this) return; - ABSL_DCHECK(GetArena() == other->GetArena()); - InternalSwap(other); - } - - // implements Message ---------------------------------------------- - - 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); } - - private: - static void MergeImpl( - ::google::protobuf::MessageLite& to_msg, - const ::google::protobuf::MessageLite& from_msg); - - 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; - #endif // PROTOBUF_CUSTOM_VTABLE - int GetCachedSize() const { return _impl_._cached_size_.Get(); } - - private: - void SharedCtor(::google::protobuf::Arena* arena); - void SharedDtor(); - void InternalSwap(FieldInfo* other); - private: - friend class ::google::protobuf::internal::AnyMetadata; - 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); - 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, - kApplicationNameFieldNumber = 4, - kApplicationIdFieldNumber = 5, - kTypedTicketFieldNumber = 1, - }; - // string field_name = 2; - void clear_field_name() ; - const std::string& field_name() const; - template - void set_field_name(Arg_&& arg, Args_... args); - std::string* mutable_field_name(); - PROTOBUF_NODISCARD std::string* release_field_name(); - void set_allocated_field_name(std::string* value); - - private: - const std::string& _internal_field_name() const; - inline PROTOBUF_ALWAYS_INLINE void _internal_set_field_name( - const std::string& value); - std::string* _internal_mutable_field_name(); - - public: - // string field_description = 3; - void clear_field_description() ; - const std::string& field_description() const; - template - void set_field_description(Arg_&& arg, Args_... args); - std::string* mutable_field_description(); - PROTOBUF_NODISCARD std::string* release_field_description(); - void set_allocated_field_description(std::string* value); - - private: - const std::string& _internal_field_description() const; - inline PROTOBUF_ALWAYS_INLINE void _internal_set_field_description( - const std::string& value); - std::string* _internal_mutable_field_description(); - - public: - // string application_name = 4; - void clear_application_name() ; - const std::string& application_name() const; - template - void set_application_name(Arg_&& arg, Args_... args); - std::string* mutable_application_name(); - PROTOBUF_NODISCARD std::string* release_application_name(); - void set_allocated_application_name(std::string* value); - - private: - const std::string& _internal_application_name() const; - inline PROTOBUF_ALWAYS_INLINE void _internal_set_application_name( - const std::string& value); - std::string* _internal_mutable_application_name(); - - public: - // string application_id = 5; - void clear_application_id() ; - const std::string& application_id() const; - template - void set_application_id(Arg_&& arg, Args_... args); - std::string* mutable_application_id(); - PROTOBUF_NODISCARD std::string* release_application_id(); - void set_allocated_application_id(std::string* value); - - private: - const std::string& _internal_application_id() const; - inline PROTOBUF_ALWAYS_INLINE void _internal_set_application_id( - const std::string& value); - std::string* _internal_mutable_application_id(); - - public: - // .io.deephaven.proto.backplane.grpc.TypedTicket typed_ticket = 1; - bool has_typed_ticket() const; - void clear_typed_ticket() ; - const ::io::deephaven::proto::backplane::grpc::TypedTicket& typed_ticket() const; - PROTOBUF_NODISCARD ::io::deephaven::proto::backplane::grpc::TypedTicket* release_typed_ticket(); - ::io::deephaven::proto::backplane::grpc::TypedTicket* mutable_typed_ticket(); - void set_allocated_typed_ticket(::io::deephaven::proto::backplane::grpc::TypedTicket* value); - void unsafe_arena_set_allocated_typed_ticket(::io::deephaven::proto::backplane::grpc::TypedTicket* value); - ::io::deephaven::proto::backplane::grpc::TypedTicket* unsafe_arena_release_typed_ticket(); - - private: - const ::io::deephaven::proto::backplane::grpc::TypedTicket& _internal_typed_ticket() const; - ::io::deephaven::proto::backplane::grpc::TypedTicket* _internal_mutable_typed_ticket(); - - public: - // @@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 - 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 FieldInfo& from_msg); - ::google::protobuf::internal::HasBits<1> _has_bits_; - mutable ::google::protobuf::internal::CachedSize _cached_size_; - ::google::protobuf::internal::ArenaStringPtr field_name_; - ::google::protobuf::internal::ArenaStringPtr field_description_; - ::google::protobuf::internal::ArenaStringPtr application_name_; - ::google::protobuf::internal::ArenaStringPtr application_id_; - ::io::deephaven::proto::backplane::grpc::TypedTicket* typed_ticket_; - PROTOBUF_TSAN_DECLARE_MEMBER - }; - 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) */ { - public: - inline FieldsChangeUpdate() : FieldsChangeUpdate(nullptr) {} - ~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; - } - inline FieldsChangeUpdate& operator=(FieldsChangeUpdate&& 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 FieldsChangeUpdate& default_instance() { - return *internal_default_instance(); - } - 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); } - 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 - if (GetArena() == other->GetArena()) { -#endif // !PROTOBUF_FORCE_COPY_IN_SWAP - InternalSwap(other); - } else { - ::google::protobuf::internal::GenericSwap(this, other); - } - } - void UnsafeArenaSwap(FieldsChangeUpdate* other) { - if (other == this) return; - ABSL_DCHECK(GetArena() == other->GetArena()); - InternalSwap(other); - } - - // implements Message ---------------------------------------------- - - 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); } - - private: - static void MergeImpl( - ::google::protobuf::MessageLite& to_msg, - const ::google::protobuf::MessageLite& from_msg); - - 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; - #endif // PROTOBUF_CUSTOM_VTABLE - int GetCachedSize() const { return _impl_._cached_size_.Get(); } - - private: - void SharedCtor(::google::protobuf::Arena* arena); - void SharedDtor(); - void InternalSwap(FieldsChangeUpdate* other); - private: - friend class ::google::protobuf::internal::AnyMetadata; - 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); - 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, - kRemovedFieldNumber = 3, - }; - // repeated .io.deephaven.proto.backplane.grpc.FieldInfo created = 1; - int created_size() const; - private: - int _internal_created_size() const; - - 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(); - - 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; - // repeated .io.deephaven.proto.backplane.grpc.FieldInfo updated = 2; - int updated_size() const; - private: - int _internal_updated_size() const; - - 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(); - - 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; - // repeated .io.deephaven.proto.backplane.grpc.FieldInfo removed = 3; - int removed_size() const; - private: - int _internal_removed_size() const; - - 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(); - - 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; - // @@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 - 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 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_; - mutable ::google::protobuf::internal::CachedSize _cached_size_; - PROTOBUF_TSAN_DECLARE_MEMBER - }; - union { Impl_ _impl_; }; - friend struct ::TableStruct_deephaven_2fproto_2fapplication_2eproto; -}; - -// =================================================================== - - - - -// =================================================================== - - -#ifdef __GNUC__ -#pragma GCC diagnostic push -#pragma GCC diagnostic ignored "-Wstrict-aliasing" -#endif // __GNUC__ -// ------------------------------------------------------------------- - -// ListFieldsRequest - -// ------------------------------------------------------------------- - -// FieldsChangeUpdate - -// repeated .io.deephaven.proto.backplane.grpc.FieldInfo created = 1; -inline int FieldsChangeUpdate::_internal_created_size() const { - return _internal_created().size(); -} -inline int FieldsChangeUpdate::created_size() const { - return _internal_created_size(); -} -inline void FieldsChangeUpdate::clear_created() { - ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.created_.Clear(); -} -inline ::io::deephaven::proto::backplane::grpc::FieldInfo* FieldsChangeUpdate::mutable_created(int index) - ABSL_ATTRIBUTE_LIFETIME_BOUND { - // @@protoc_insertion_point(field_mutable:io.deephaven.proto.backplane.grpc.FieldsChangeUpdate.created) - return _internal_mutable_created()->Mutable(index); -} -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) - ::google::protobuf::internal::TSanWrite(&_impl_); - return _internal_mutable_created(); -} -inline const ::io::deephaven::proto::backplane::grpc::FieldInfo& FieldsChangeUpdate::created(int index) const - ABSL_ATTRIBUTE_LIFETIME_BOUND { - // @@protoc_insertion_point(field_get:io.deephaven.proto.backplane.grpc.FieldsChangeUpdate.created) - return _internal_created().Get(index); -} -inline ::io::deephaven::proto::backplane::grpc::FieldInfo* FieldsChangeUpdate::add_created() ABSL_ATTRIBUTE_LIFETIME_BOUND { - ::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; -} -inline const ::google::protobuf::RepeatedPtrField<::io::deephaven::proto::backplane::grpc::FieldInfo>& FieldsChangeUpdate::created() const - ABSL_ATTRIBUTE_LIFETIME_BOUND { - // @@protoc_insertion_point(field_list:io.deephaven.proto.backplane.grpc.FieldsChangeUpdate.created) - return _internal_created(); -} -inline const ::google::protobuf::RepeatedPtrField<::io::deephaven::proto::backplane::grpc::FieldInfo>& -FieldsChangeUpdate::_internal_created() const { - ::google::protobuf::internal::TSanRead(&_impl_); - return _impl_.created_; -} -inline ::google::protobuf::RepeatedPtrField<::io::deephaven::proto::backplane::grpc::FieldInfo>* -FieldsChangeUpdate::_internal_mutable_created() { - ::google::protobuf::internal::TSanRead(&_impl_); - return &_impl_.created_; -} - -// repeated .io.deephaven.proto.backplane.grpc.FieldInfo updated = 2; -inline int FieldsChangeUpdate::_internal_updated_size() const { - return _internal_updated().size(); -} -inline int FieldsChangeUpdate::updated_size() const { - return _internal_updated_size(); -} -inline void FieldsChangeUpdate::clear_updated() { - ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.updated_.Clear(); -} -inline ::io::deephaven::proto::backplane::grpc::FieldInfo* FieldsChangeUpdate::mutable_updated(int index) - ABSL_ATTRIBUTE_LIFETIME_BOUND { - // @@protoc_insertion_point(field_mutable:io.deephaven.proto.backplane.grpc.FieldsChangeUpdate.updated) - return _internal_mutable_updated()->Mutable(index); -} -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) - ::google::protobuf::internal::TSanWrite(&_impl_); - return _internal_mutable_updated(); -} -inline const ::io::deephaven::proto::backplane::grpc::FieldInfo& FieldsChangeUpdate::updated(int index) const - ABSL_ATTRIBUTE_LIFETIME_BOUND { - // @@protoc_insertion_point(field_get:io.deephaven.proto.backplane.grpc.FieldsChangeUpdate.updated) - return _internal_updated().Get(index); -} -inline ::io::deephaven::proto::backplane::grpc::FieldInfo* FieldsChangeUpdate::add_updated() ABSL_ATTRIBUTE_LIFETIME_BOUND { - ::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; -} -inline const ::google::protobuf::RepeatedPtrField<::io::deephaven::proto::backplane::grpc::FieldInfo>& FieldsChangeUpdate::updated() const - ABSL_ATTRIBUTE_LIFETIME_BOUND { - // @@protoc_insertion_point(field_list:io.deephaven.proto.backplane.grpc.FieldsChangeUpdate.updated) - return _internal_updated(); -} -inline const ::google::protobuf::RepeatedPtrField<::io::deephaven::proto::backplane::grpc::FieldInfo>& -FieldsChangeUpdate::_internal_updated() const { - ::google::protobuf::internal::TSanRead(&_impl_); - return _impl_.updated_; -} -inline ::google::protobuf::RepeatedPtrField<::io::deephaven::proto::backplane::grpc::FieldInfo>* -FieldsChangeUpdate::_internal_mutable_updated() { - ::google::protobuf::internal::TSanRead(&_impl_); - return &_impl_.updated_; -} - -// repeated .io.deephaven.proto.backplane.grpc.FieldInfo removed = 3; -inline int FieldsChangeUpdate::_internal_removed_size() const { - return _internal_removed().size(); -} -inline int FieldsChangeUpdate::removed_size() const { - return _internal_removed_size(); -} -inline void FieldsChangeUpdate::clear_removed() { - ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.removed_.Clear(); -} -inline ::io::deephaven::proto::backplane::grpc::FieldInfo* FieldsChangeUpdate::mutable_removed(int index) - ABSL_ATTRIBUTE_LIFETIME_BOUND { - // @@protoc_insertion_point(field_mutable:io.deephaven.proto.backplane.grpc.FieldsChangeUpdate.removed) - return _internal_mutable_removed()->Mutable(index); -} -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) - ::google::protobuf::internal::TSanWrite(&_impl_); - return _internal_mutable_removed(); -} -inline const ::io::deephaven::proto::backplane::grpc::FieldInfo& FieldsChangeUpdate::removed(int index) const - ABSL_ATTRIBUTE_LIFETIME_BOUND { - // @@protoc_insertion_point(field_get:io.deephaven.proto.backplane.grpc.FieldsChangeUpdate.removed) - return _internal_removed().Get(index); -} -inline ::io::deephaven::proto::backplane::grpc::FieldInfo* FieldsChangeUpdate::add_removed() ABSL_ATTRIBUTE_LIFETIME_BOUND { - ::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; -} -inline const ::google::protobuf::RepeatedPtrField<::io::deephaven::proto::backplane::grpc::FieldInfo>& FieldsChangeUpdate::removed() const - ABSL_ATTRIBUTE_LIFETIME_BOUND { - // @@protoc_insertion_point(field_list:io.deephaven.proto.backplane.grpc.FieldsChangeUpdate.removed) - return _internal_removed(); -} -inline const ::google::protobuf::RepeatedPtrField<::io::deephaven::proto::backplane::grpc::FieldInfo>& -FieldsChangeUpdate::_internal_removed() const { - ::google::protobuf::internal::TSanRead(&_impl_); - return _impl_.removed_; -} -inline ::google::protobuf::RepeatedPtrField<::io::deephaven::proto::backplane::grpc::FieldInfo>* -FieldsChangeUpdate::_internal_mutable_removed() { - ::google::protobuf::internal::TSanRead(&_impl_); - return &_impl_.removed_; -} - -// ------------------------------------------------------------------- - -// FieldInfo - -// .io.deephaven.proto.backplane.grpc.TypedTicket typed_ticket = 1; -inline bool FieldInfo::has_typed_ticket() const { - bool value = (_impl_._has_bits_[0] & 0x00000001u) != 0; - PROTOBUF_ASSUME(!value || _impl_.typed_ticket_ != nullptr); - return value; -} -inline const ::io::deephaven::proto::backplane::grpc::TypedTicket& FieldInfo::_internal_typed_ticket() const { - ::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_); -} -inline const ::io::deephaven::proto::backplane::grpc::TypedTicket& FieldInfo::typed_ticket() const ABSL_ATTRIBUTE_LIFETIME_BOUND { - // @@protoc_insertion_point(field_get:io.deephaven.proto.backplane.grpc.FieldInfo.typed_ticket) - return _internal_typed_ticket(); -} -inline void FieldInfo::unsafe_arena_set_allocated_typed_ticket(::io::deephaven::proto::backplane::grpc::TypedTicket* value) { - ::google::protobuf::internal::TSanWrite(&_impl_); - if (GetArena() == nullptr) { - delete reinterpret_cast<::google::protobuf::MessageLite*>(_impl_.typed_ticket_); - } - _impl_.typed_ticket_ = reinterpret_cast<::io::deephaven::proto::backplane::grpc::TypedTicket*>(value); - if (value != nullptr) { - _impl_._has_bits_[0] |= 0x00000001u; - } else { - _impl_._has_bits_[0] &= ~0x00000001u; - } - // @@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() { - ::google::protobuf::internal::TSanWrite(&_impl_); - - _impl_._has_bits_[0] &= ~0x00000001u; - ::io::deephaven::proto::backplane::grpc::TypedTicket* released = _impl_.typed_ticket_; - _impl_.typed_ticket_ = nullptr; -#ifdef PROTOBUF_FORCE_COPY_IN_RELEASE - auto* old = reinterpret_cast<::google::protobuf::MessageLite*>(released); - released = ::google::protobuf::internal::DuplicateIfNonNull(released); - if (GetArena() == nullptr) { - delete old; - } -#else // PROTOBUF_FORCE_COPY_IN_RELEASE - if (GetArena() != nullptr) { - released = ::google::protobuf::internal::DuplicateIfNonNull(released); - } -#endif // !PROTOBUF_FORCE_COPY_IN_RELEASE - return released; -} -inline ::io::deephaven::proto::backplane::grpc::TypedTicket* FieldInfo::unsafe_arena_release_typed_ticket() { - ::google::protobuf::internal::TSanWrite(&_impl_); - // @@protoc_insertion_point(field_release:io.deephaven.proto.backplane.grpc.FieldInfo.typed_ticket) - - _impl_._has_bits_[0] &= ~0x00000001u; - ::io::deephaven::proto::backplane::grpc::TypedTicket* temp = _impl_.typed_ticket_; - _impl_.typed_ticket_ = nullptr; - return temp; -} -inline ::io::deephaven::proto::backplane::grpc::TypedTicket* FieldInfo::_internal_mutable_typed_ticket() { - ::google::protobuf::internal::TSanWrite(&_impl_); - if (_impl_.typed_ticket_ == nullptr) { - 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(); - ::google::protobuf::internal::TSanWrite(&_impl_); - if (message_arena == nullptr) { - delete reinterpret_cast<::google::protobuf::MessageLite*>(_impl_.typed_ticket_); - } - - if (value != nullptr) { - ::google::protobuf::Arena* submessage_arena = reinterpret_cast<::google::protobuf::MessageLite*>(value)->GetArena(); - if (message_arena != submessage_arena) { - value = ::google::protobuf::internal::GetOwnedMessage(message_arena, value, submessage_arena); - } - _impl_._has_bits_[0] |= 0x00000001u; - } else { - _impl_._has_bits_[0] &= ~0x00000001u; - } - - _impl_.typed_ticket_ = reinterpret_cast<::io::deephaven::proto::backplane::grpc::TypedTicket*>(value); - // @@protoc_insertion_point(field_set_allocated:io.deephaven.proto.backplane.grpc.FieldInfo.typed_ticket) -} - -// string field_name = 2; -inline void FieldInfo::clear_field_name() { - ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.field_name_.ClearToEmpty(); -} -inline const std::string& FieldInfo::field_name() const - ABSL_ATTRIBUTE_LIFETIME_BOUND { - // @@protoc_insertion_point(field_get:io.deephaven.proto.backplane.grpc.FieldInfo.field_name) - return _internal_field_name(); -} -template -inline PROTOBUF_ALWAYS_INLINE void FieldInfo::set_field_name(Arg_&& arg, - Args_... args) { - ::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) -} -inline std::string* FieldInfo::mutable_field_name() ABSL_ATTRIBUTE_LIFETIME_BOUND { - std::string* _s = _internal_mutable_field_name(); - // @@protoc_insertion_point(field_mutable:io.deephaven.proto.backplane.grpc.FieldInfo.field_name) - return _s; -} -inline const std::string& FieldInfo::_internal_field_name() const { - ::google::protobuf::internal::TSanRead(&_impl_); - return _impl_.field_name_.Get(); -} -inline void FieldInfo::_internal_set_field_name(const std::string& value) { - ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.field_name_.Set(value, GetArena()); -} -inline std::string* FieldInfo::_internal_mutable_field_name() { - ::google::protobuf::internal::TSanWrite(&_impl_); - return _impl_.field_name_.Mutable( GetArena()); -} -inline std::string* FieldInfo::release_field_name() { - ::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) { - ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.field_name_.SetAllocated(value, GetArena()); - #ifdef PROTOBUF_FORCE_COPY_DEFAULT_STRING - if (_impl_.field_name_.IsDefault()) { - _impl_.field_name_.Set("", GetArena()); - } - #endif // PROTOBUF_FORCE_COPY_DEFAULT_STRING - // @@protoc_insertion_point(field_set_allocated:io.deephaven.proto.backplane.grpc.FieldInfo.field_name) -} - -// string field_description = 3; -inline void FieldInfo::clear_field_description() { - ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.field_description_.ClearToEmpty(); -} -inline const std::string& FieldInfo::field_description() const - ABSL_ATTRIBUTE_LIFETIME_BOUND { - // @@protoc_insertion_point(field_get:io.deephaven.proto.backplane.grpc.FieldInfo.field_description) - return _internal_field_description(); -} -template -inline PROTOBUF_ALWAYS_INLINE void FieldInfo::set_field_description(Arg_&& arg, - Args_... args) { - ::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) -} -inline std::string* FieldInfo::mutable_field_description() ABSL_ATTRIBUTE_LIFETIME_BOUND { - std::string* _s = _internal_mutable_field_description(); - // @@protoc_insertion_point(field_mutable:io.deephaven.proto.backplane.grpc.FieldInfo.field_description) - return _s; -} -inline const std::string& FieldInfo::_internal_field_description() const { - ::google::protobuf::internal::TSanRead(&_impl_); - return _impl_.field_description_.Get(); -} -inline void FieldInfo::_internal_set_field_description(const std::string& value) { - ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.field_description_.Set(value, GetArena()); -} -inline std::string* FieldInfo::_internal_mutable_field_description() { - ::google::protobuf::internal::TSanWrite(&_impl_); - return _impl_.field_description_.Mutable( GetArena()); -} -inline std::string* FieldInfo::release_field_description() { - ::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) { - ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.field_description_.SetAllocated(value, GetArena()); - #ifdef PROTOBUF_FORCE_COPY_DEFAULT_STRING - if (_impl_.field_description_.IsDefault()) { - _impl_.field_description_.Set("", GetArena()); - } - #endif // PROTOBUF_FORCE_COPY_DEFAULT_STRING - // @@protoc_insertion_point(field_set_allocated:io.deephaven.proto.backplane.grpc.FieldInfo.field_description) -} - -// string application_name = 4; -inline void FieldInfo::clear_application_name() { - ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.application_name_.ClearToEmpty(); -} -inline const std::string& FieldInfo::application_name() const - ABSL_ATTRIBUTE_LIFETIME_BOUND { - // @@protoc_insertion_point(field_get:io.deephaven.proto.backplane.grpc.FieldInfo.application_name) - return _internal_application_name(); -} -template -inline PROTOBUF_ALWAYS_INLINE void FieldInfo::set_application_name(Arg_&& arg, - Args_... args) { - ::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) -} -inline std::string* FieldInfo::mutable_application_name() ABSL_ATTRIBUTE_LIFETIME_BOUND { - std::string* _s = _internal_mutable_application_name(); - // @@protoc_insertion_point(field_mutable:io.deephaven.proto.backplane.grpc.FieldInfo.application_name) - return _s; -} -inline const std::string& FieldInfo::_internal_application_name() const { - ::google::protobuf::internal::TSanRead(&_impl_); - return _impl_.application_name_.Get(); -} -inline void FieldInfo::_internal_set_application_name(const std::string& value) { - ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.application_name_.Set(value, GetArena()); -} -inline std::string* FieldInfo::_internal_mutable_application_name() { - ::google::protobuf::internal::TSanWrite(&_impl_); - return _impl_.application_name_.Mutable( GetArena()); -} -inline std::string* FieldInfo::release_application_name() { - ::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) { - ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.application_name_.SetAllocated(value, GetArena()); - #ifdef PROTOBUF_FORCE_COPY_DEFAULT_STRING - if (_impl_.application_name_.IsDefault()) { - _impl_.application_name_.Set("", GetArena()); - } - #endif // PROTOBUF_FORCE_COPY_DEFAULT_STRING - // @@protoc_insertion_point(field_set_allocated:io.deephaven.proto.backplane.grpc.FieldInfo.application_name) -} - -// string application_id = 5; -inline void FieldInfo::clear_application_id() { - ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.application_id_.ClearToEmpty(); -} -inline const std::string& FieldInfo::application_id() const - ABSL_ATTRIBUTE_LIFETIME_BOUND { - // @@protoc_insertion_point(field_get:io.deephaven.proto.backplane.grpc.FieldInfo.application_id) - return _internal_application_id(); -} -template -inline PROTOBUF_ALWAYS_INLINE void FieldInfo::set_application_id(Arg_&& arg, - Args_... args) { - ::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) -} -inline std::string* FieldInfo::mutable_application_id() ABSL_ATTRIBUTE_LIFETIME_BOUND { - std::string* _s = _internal_mutable_application_id(); - // @@protoc_insertion_point(field_mutable:io.deephaven.proto.backplane.grpc.FieldInfo.application_id) - return _s; -} -inline const std::string& FieldInfo::_internal_application_id() const { - ::google::protobuf::internal::TSanRead(&_impl_); - return _impl_.application_id_.Get(); -} -inline void FieldInfo::_internal_set_application_id(const std::string& value) { - ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.application_id_.Set(value, GetArena()); -} -inline std::string* FieldInfo::_internal_mutable_application_id() { - ::google::protobuf::internal::TSanWrite(&_impl_); - return _impl_.application_id_.Mutable( GetArena()); -} -inline std::string* FieldInfo::release_application_id() { - ::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) { - ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.application_id_.SetAllocated(value, GetArena()); - #ifdef PROTOBUF_FORCE_COPY_DEFAULT_STRING - if (_impl_.application_id_.IsDefault()) { - _impl_.application_id_.Set("", GetArena()); - } - #endif // PROTOBUF_FORCE_COPY_DEFAULT_STRING - // @@protoc_insertion_point(field_set_allocated:io.deephaven.proto.backplane.grpc.FieldInfo.application_id) -} - -#ifdef __GNUC__ -#pragma GCC diagnostic pop -#endif // __GNUC__ - -// @@protoc_insertion_point(namespace_scope) -} // namespace grpc -} // namespace backplane -} // namespace proto -} // namespace deephaven -} // namespace io - - -// @@protoc_insertion_point(global_scope) - -#include "google/protobuf/port_undef.inc" - -#endif // GOOGLE_PROTOBUF_INCLUDED_deephaven_2fproto_2fapplication_2eproto_2epb_2eh diff --git a/cpp-client/deephaven/dhclient/proto/deephaven/proto/config.grpc.pb.cc b/cpp-client/deephaven/dhclient/proto/deephaven/proto/config.grpc.pb.cc deleted file mode 100644 index 80463846dd0..00000000000 --- a/cpp-client/deephaven/dhclient/proto/deephaven/proto/config.grpc.pb.cc +++ /dev/null @@ -1,136 +0,0 @@ -// Generated by the gRPC C++ plugin. -// If you make any local change, they will be lost. -// source: deephaven/proto/config.proto - -#include "deephaven/proto/config.pb.h" -#include "deephaven/proto/config.grpc.pb.h" - -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -namespace io { -namespace deephaven { -namespace proto { -namespace backplane { -namespace grpc { - -static const char* ConfigService_method_names[] = { - "/io.deephaven.proto.backplane.grpc.ConfigService/GetAuthenticationConstants", - "/io.deephaven.proto.backplane.grpc.ConfigService/GetConfigurationConstants", -}; - -std::unique_ptr< ConfigService::Stub> ConfigService::NewStub(const std::shared_ptr< ::grpc::ChannelInterface>& channel, const ::grpc::StubOptions& options) { - (void)options; - std::unique_ptr< ConfigService::Stub> stub(new ConfigService::Stub(channel, options)); - return stub; -} - -ConfigService::Stub::Stub(const std::shared_ptr< ::grpc::ChannelInterface>& channel, const ::grpc::StubOptions& options) - : channel_(channel), rpcmethod_GetAuthenticationConstants_(ConfigService_method_names[0], options.suffix_for_stats(),::grpc::internal::RpcMethod::NORMAL_RPC, channel) - , rpcmethod_GetConfigurationConstants_(ConfigService_method_names[1], options.suffix_for_stats(),::grpc::internal::RpcMethod::NORMAL_RPC, channel) - {} - -::grpc::Status ConfigService::Stub::GetAuthenticationConstants(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::AuthenticationConstantsRequest& request, ::io::deephaven::proto::backplane::grpc::AuthenticationConstantsResponse* response) { - return ::grpc::internal::BlockingUnaryCall< ::io::deephaven::proto::backplane::grpc::AuthenticationConstantsRequest, ::io::deephaven::proto::backplane::grpc::AuthenticationConstantsResponse, ::grpc::protobuf::MessageLite, ::grpc::protobuf::MessageLite>(channel_.get(), rpcmethod_GetAuthenticationConstants_, context, request, response); -} - -void ConfigService::Stub::async::GetAuthenticationConstants(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::AuthenticationConstantsRequest* request, ::io::deephaven::proto::backplane::grpc::AuthenticationConstantsResponse* response, std::function f) { - ::grpc::internal::CallbackUnaryCall< ::io::deephaven::proto::backplane::grpc::AuthenticationConstantsRequest, ::io::deephaven::proto::backplane::grpc::AuthenticationConstantsResponse, ::grpc::protobuf::MessageLite, ::grpc::protobuf::MessageLite>(stub_->channel_.get(), stub_->rpcmethod_GetAuthenticationConstants_, context, request, response, std::move(f)); -} - -void ConfigService::Stub::async::GetAuthenticationConstants(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::AuthenticationConstantsRequest* request, ::io::deephaven::proto::backplane::grpc::AuthenticationConstantsResponse* response, ::grpc::ClientUnaryReactor* reactor) { - ::grpc::internal::ClientCallbackUnaryFactory::Create< ::grpc::protobuf::MessageLite, ::grpc::protobuf::MessageLite>(stub_->channel_.get(), stub_->rpcmethod_GetAuthenticationConstants_, context, request, response, reactor); -} - -::grpc::ClientAsyncResponseReader< ::io::deephaven::proto::backplane::grpc::AuthenticationConstantsResponse>* ConfigService::Stub::PrepareAsyncGetAuthenticationConstantsRaw(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::AuthenticationConstantsRequest& request, ::grpc::CompletionQueue* cq) { - return ::grpc::internal::ClientAsyncResponseReaderHelper::Create< ::io::deephaven::proto::backplane::grpc::AuthenticationConstantsResponse, ::io::deephaven::proto::backplane::grpc::AuthenticationConstantsRequest, ::grpc::protobuf::MessageLite, ::grpc::protobuf::MessageLite>(channel_.get(), cq, rpcmethod_GetAuthenticationConstants_, context, request); -} - -::grpc::ClientAsyncResponseReader< ::io::deephaven::proto::backplane::grpc::AuthenticationConstantsResponse>* ConfigService::Stub::AsyncGetAuthenticationConstantsRaw(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::AuthenticationConstantsRequest& request, ::grpc::CompletionQueue* cq) { - auto* result = - this->PrepareAsyncGetAuthenticationConstantsRaw(context, request, cq); - result->StartCall(); - return result; -} - -::grpc::Status ConfigService::Stub::GetConfigurationConstants(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::ConfigurationConstantsRequest& request, ::io::deephaven::proto::backplane::grpc::ConfigurationConstantsResponse* response) { - return ::grpc::internal::BlockingUnaryCall< ::io::deephaven::proto::backplane::grpc::ConfigurationConstantsRequest, ::io::deephaven::proto::backplane::grpc::ConfigurationConstantsResponse, ::grpc::protobuf::MessageLite, ::grpc::protobuf::MessageLite>(channel_.get(), rpcmethod_GetConfigurationConstants_, context, request, response); -} - -void ConfigService::Stub::async::GetConfigurationConstants(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::ConfigurationConstantsRequest* request, ::io::deephaven::proto::backplane::grpc::ConfigurationConstantsResponse* response, std::function f) { - ::grpc::internal::CallbackUnaryCall< ::io::deephaven::proto::backplane::grpc::ConfigurationConstantsRequest, ::io::deephaven::proto::backplane::grpc::ConfigurationConstantsResponse, ::grpc::protobuf::MessageLite, ::grpc::protobuf::MessageLite>(stub_->channel_.get(), stub_->rpcmethod_GetConfigurationConstants_, context, request, response, std::move(f)); -} - -void ConfigService::Stub::async::GetConfigurationConstants(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::ConfigurationConstantsRequest* request, ::io::deephaven::proto::backplane::grpc::ConfigurationConstantsResponse* response, ::grpc::ClientUnaryReactor* reactor) { - ::grpc::internal::ClientCallbackUnaryFactory::Create< ::grpc::protobuf::MessageLite, ::grpc::protobuf::MessageLite>(stub_->channel_.get(), stub_->rpcmethod_GetConfigurationConstants_, context, request, response, reactor); -} - -::grpc::ClientAsyncResponseReader< ::io::deephaven::proto::backplane::grpc::ConfigurationConstantsResponse>* ConfigService::Stub::PrepareAsyncGetConfigurationConstantsRaw(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::ConfigurationConstantsRequest& request, ::grpc::CompletionQueue* cq) { - return ::grpc::internal::ClientAsyncResponseReaderHelper::Create< ::io::deephaven::proto::backplane::grpc::ConfigurationConstantsResponse, ::io::deephaven::proto::backplane::grpc::ConfigurationConstantsRequest, ::grpc::protobuf::MessageLite, ::grpc::protobuf::MessageLite>(channel_.get(), cq, rpcmethod_GetConfigurationConstants_, context, request); -} - -::grpc::ClientAsyncResponseReader< ::io::deephaven::proto::backplane::grpc::ConfigurationConstantsResponse>* ConfigService::Stub::AsyncGetConfigurationConstantsRaw(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::ConfigurationConstantsRequest& request, ::grpc::CompletionQueue* cq) { - auto* result = - this->PrepareAsyncGetConfigurationConstantsRaw(context, request, cq); - result->StartCall(); - return result; -} - -ConfigService::Service::Service() { - AddMethod(new ::grpc::internal::RpcServiceMethod( - ConfigService_method_names[0], - ::grpc::internal::RpcMethod::NORMAL_RPC, - new ::grpc::internal::RpcMethodHandler< ConfigService::Service, ::io::deephaven::proto::backplane::grpc::AuthenticationConstantsRequest, ::io::deephaven::proto::backplane::grpc::AuthenticationConstantsResponse, ::grpc::protobuf::MessageLite, ::grpc::protobuf::MessageLite>( - [](ConfigService::Service* service, - ::grpc::ServerContext* ctx, - const ::io::deephaven::proto::backplane::grpc::AuthenticationConstantsRequest* req, - ::io::deephaven::proto::backplane::grpc::AuthenticationConstantsResponse* resp) { - return service->GetAuthenticationConstants(ctx, req, resp); - }, this))); - AddMethod(new ::grpc::internal::RpcServiceMethod( - ConfigService_method_names[1], - ::grpc::internal::RpcMethod::NORMAL_RPC, - new ::grpc::internal::RpcMethodHandler< ConfigService::Service, ::io::deephaven::proto::backplane::grpc::ConfigurationConstantsRequest, ::io::deephaven::proto::backplane::grpc::ConfigurationConstantsResponse, ::grpc::protobuf::MessageLite, ::grpc::protobuf::MessageLite>( - [](ConfigService::Service* service, - ::grpc::ServerContext* ctx, - const ::io::deephaven::proto::backplane::grpc::ConfigurationConstantsRequest* req, - ::io::deephaven::proto::backplane::grpc::ConfigurationConstantsResponse* resp) { - return service->GetConfigurationConstants(ctx, req, resp); - }, this))); -} - -ConfigService::Service::~Service() { -} - -::grpc::Status ConfigService::Service::GetAuthenticationConstants(::grpc::ServerContext* context, const ::io::deephaven::proto::backplane::grpc::AuthenticationConstantsRequest* request, ::io::deephaven::proto::backplane::grpc::AuthenticationConstantsResponse* response) { - (void) context; - (void) request; - (void) response; - return ::grpc::Status(::grpc::StatusCode::UNIMPLEMENTED, ""); -} - -::grpc::Status ConfigService::Service::GetConfigurationConstants(::grpc::ServerContext* context, const ::io::deephaven::proto::backplane::grpc::ConfigurationConstantsRequest* request, ::io::deephaven::proto::backplane::grpc::ConfigurationConstantsResponse* response) { - (void) context; - (void) request; - (void) response; - return ::grpc::Status(::grpc::StatusCode::UNIMPLEMENTED, ""); -} - - -} // namespace io -} // namespace deephaven -} // namespace proto -} // namespace backplane -} // namespace grpc - diff --git a/cpp-client/deephaven/dhclient/proto/deephaven/proto/config.grpc.pb.h b/cpp-client/deephaven/dhclient/proto/deephaven/proto/config.grpc.pb.h deleted file mode 100644 index 9214e8c8333..00000000000 --- a/cpp-client/deephaven/dhclient/proto/deephaven/proto/config.grpc.pb.h +++ /dev/null @@ -1,412 +0,0 @@ -// Generated by the gRPC C++ plugin. -// If you make any local change, they will be lost. -// source: deephaven/proto/config.proto -// Original file comments: -// -// Copyright (c) 2016-2022 Deephaven Data Labs and Patent Pending -#ifndef GRPC_deephaven_2fproto_2fconfig_2eproto__INCLUDED -#define GRPC_deephaven_2fproto_2fconfig_2eproto__INCLUDED - -#include "deephaven/proto/config.pb.h" - -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include - -namespace io { -namespace deephaven { -namespace proto { -namespace backplane { -namespace grpc { - -// * -// Provides simple configuration data to users. Unauthenticated users may call GetAuthenticationConstants -// to discover hints on how they should proceed with providing their identity, while already-authenticated -// clients may call GetConfigurationConstants for details on using the platform. -class ConfigService final { - public: - static constexpr char const* service_full_name() { - return "io.deephaven.proto.backplane.grpc.ConfigService"; - } - class StubInterface { - public: - virtual ~StubInterface() {} - virtual ::grpc::Status GetAuthenticationConstants(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::AuthenticationConstantsRequest& request, ::io::deephaven::proto::backplane::grpc::AuthenticationConstantsResponse* response) = 0; - std::unique_ptr< ::grpc::ClientAsyncResponseReaderInterface< ::io::deephaven::proto::backplane::grpc::AuthenticationConstantsResponse>> AsyncGetAuthenticationConstants(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::AuthenticationConstantsRequest& request, ::grpc::CompletionQueue* cq) { - return std::unique_ptr< ::grpc::ClientAsyncResponseReaderInterface< ::io::deephaven::proto::backplane::grpc::AuthenticationConstantsResponse>>(AsyncGetAuthenticationConstantsRaw(context, request, cq)); - } - std::unique_ptr< ::grpc::ClientAsyncResponseReaderInterface< ::io::deephaven::proto::backplane::grpc::AuthenticationConstantsResponse>> PrepareAsyncGetAuthenticationConstants(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::AuthenticationConstantsRequest& request, ::grpc::CompletionQueue* cq) { - return std::unique_ptr< ::grpc::ClientAsyncResponseReaderInterface< ::io::deephaven::proto::backplane::grpc::AuthenticationConstantsResponse>>(PrepareAsyncGetAuthenticationConstantsRaw(context, request, cq)); - } - virtual ::grpc::Status GetConfigurationConstants(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::ConfigurationConstantsRequest& request, ::io::deephaven::proto::backplane::grpc::ConfigurationConstantsResponse* response) = 0; - std::unique_ptr< ::grpc::ClientAsyncResponseReaderInterface< ::io::deephaven::proto::backplane::grpc::ConfigurationConstantsResponse>> AsyncGetConfigurationConstants(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::ConfigurationConstantsRequest& request, ::grpc::CompletionQueue* cq) { - return std::unique_ptr< ::grpc::ClientAsyncResponseReaderInterface< ::io::deephaven::proto::backplane::grpc::ConfigurationConstantsResponse>>(AsyncGetConfigurationConstantsRaw(context, request, cq)); - } - std::unique_ptr< ::grpc::ClientAsyncResponseReaderInterface< ::io::deephaven::proto::backplane::grpc::ConfigurationConstantsResponse>> PrepareAsyncGetConfigurationConstants(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::ConfigurationConstantsRequest& request, ::grpc::CompletionQueue* cq) { - return std::unique_ptr< ::grpc::ClientAsyncResponseReaderInterface< ::io::deephaven::proto::backplane::grpc::ConfigurationConstantsResponse>>(PrepareAsyncGetConfigurationConstantsRaw(context, request, cq)); - } - class async_interface { - public: - virtual ~async_interface() {} - virtual void GetAuthenticationConstants(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::AuthenticationConstantsRequest* request, ::io::deephaven::proto::backplane::grpc::AuthenticationConstantsResponse* response, std::function) = 0; - virtual void GetAuthenticationConstants(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::AuthenticationConstantsRequest* request, ::io::deephaven::proto::backplane::grpc::AuthenticationConstantsResponse* response, ::grpc::ClientUnaryReactor* reactor) = 0; - virtual void GetConfigurationConstants(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::ConfigurationConstantsRequest* request, ::io::deephaven::proto::backplane::grpc::ConfigurationConstantsResponse* response, std::function) = 0; - virtual void GetConfigurationConstants(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::ConfigurationConstantsRequest* request, ::io::deephaven::proto::backplane::grpc::ConfigurationConstantsResponse* response, ::grpc::ClientUnaryReactor* reactor) = 0; - }; - typedef class async_interface experimental_async_interface; - virtual class async_interface* async() { return nullptr; } - class async_interface* experimental_async() { return async(); } - private: - virtual ::grpc::ClientAsyncResponseReaderInterface< ::io::deephaven::proto::backplane::grpc::AuthenticationConstantsResponse>* AsyncGetAuthenticationConstantsRaw(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::AuthenticationConstantsRequest& request, ::grpc::CompletionQueue* cq) = 0; - virtual ::grpc::ClientAsyncResponseReaderInterface< ::io::deephaven::proto::backplane::grpc::AuthenticationConstantsResponse>* PrepareAsyncGetAuthenticationConstantsRaw(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::AuthenticationConstantsRequest& request, ::grpc::CompletionQueue* cq) = 0; - virtual ::grpc::ClientAsyncResponseReaderInterface< ::io::deephaven::proto::backplane::grpc::ConfigurationConstantsResponse>* AsyncGetConfigurationConstantsRaw(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::ConfigurationConstantsRequest& request, ::grpc::CompletionQueue* cq) = 0; - virtual ::grpc::ClientAsyncResponseReaderInterface< ::io::deephaven::proto::backplane::grpc::ConfigurationConstantsResponse>* PrepareAsyncGetConfigurationConstantsRaw(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::ConfigurationConstantsRequest& request, ::grpc::CompletionQueue* cq) = 0; - }; - class Stub final : public StubInterface { - public: - Stub(const std::shared_ptr< ::grpc::ChannelInterface>& channel, const ::grpc::StubOptions& options = ::grpc::StubOptions()); - ::grpc::Status GetAuthenticationConstants(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::AuthenticationConstantsRequest& request, ::io::deephaven::proto::backplane::grpc::AuthenticationConstantsResponse* response) override; - std::unique_ptr< ::grpc::ClientAsyncResponseReader< ::io::deephaven::proto::backplane::grpc::AuthenticationConstantsResponse>> AsyncGetAuthenticationConstants(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::AuthenticationConstantsRequest& request, ::grpc::CompletionQueue* cq) { - return std::unique_ptr< ::grpc::ClientAsyncResponseReader< ::io::deephaven::proto::backplane::grpc::AuthenticationConstantsResponse>>(AsyncGetAuthenticationConstantsRaw(context, request, cq)); - } - std::unique_ptr< ::grpc::ClientAsyncResponseReader< ::io::deephaven::proto::backplane::grpc::AuthenticationConstantsResponse>> PrepareAsyncGetAuthenticationConstants(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::AuthenticationConstantsRequest& request, ::grpc::CompletionQueue* cq) { - return std::unique_ptr< ::grpc::ClientAsyncResponseReader< ::io::deephaven::proto::backplane::grpc::AuthenticationConstantsResponse>>(PrepareAsyncGetAuthenticationConstantsRaw(context, request, cq)); - } - ::grpc::Status GetConfigurationConstants(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::ConfigurationConstantsRequest& request, ::io::deephaven::proto::backplane::grpc::ConfigurationConstantsResponse* response) override; - std::unique_ptr< ::grpc::ClientAsyncResponseReader< ::io::deephaven::proto::backplane::grpc::ConfigurationConstantsResponse>> AsyncGetConfigurationConstants(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::ConfigurationConstantsRequest& request, ::grpc::CompletionQueue* cq) { - return std::unique_ptr< ::grpc::ClientAsyncResponseReader< ::io::deephaven::proto::backplane::grpc::ConfigurationConstantsResponse>>(AsyncGetConfigurationConstantsRaw(context, request, cq)); - } - std::unique_ptr< ::grpc::ClientAsyncResponseReader< ::io::deephaven::proto::backplane::grpc::ConfigurationConstantsResponse>> PrepareAsyncGetConfigurationConstants(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::ConfigurationConstantsRequest& request, ::grpc::CompletionQueue* cq) { - return std::unique_ptr< ::grpc::ClientAsyncResponseReader< ::io::deephaven::proto::backplane::grpc::ConfigurationConstantsResponse>>(PrepareAsyncGetConfigurationConstantsRaw(context, request, cq)); - } - class async final : - public StubInterface::async_interface { - public: - void GetAuthenticationConstants(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::AuthenticationConstantsRequest* request, ::io::deephaven::proto::backplane::grpc::AuthenticationConstantsResponse* response, std::function) override; - void GetAuthenticationConstants(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::AuthenticationConstantsRequest* request, ::io::deephaven::proto::backplane::grpc::AuthenticationConstantsResponse* response, ::grpc::ClientUnaryReactor* reactor) override; - void GetConfigurationConstants(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::ConfigurationConstantsRequest* request, ::io::deephaven::proto::backplane::grpc::ConfigurationConstantsResponse* response, std::function) override; - void GetConfigurationConstants(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::ConfigurationConstantsRequest* request, ::io::deephaven::proto::backplane::grpc::ConfigurationConstantsResponse* response, ::grpc::ClientUnaryReactor* reactor) override; - private: - friend class Stub; - explicit async(Stub* stub): stub_(stub) { } - Stub* stub() { return stub_; } - Stub* stub_; - }; - class async* async() override { return &async_stub_; } - - private: - std::shared_ptr< ::grpc::ChannelInterface> channel_; - class async async_stub_{this}; - ::grpc::ClientAsyncResponseReader< ::io::deephaven::proto::backplane::grpc::AuthenticationConstantsResponse>* AsyncGetAuthenticationConstantsRaw(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::AuthenticationConstantsRequest& request, ::grpc::CompletionQueue* cq) override; - ::grpc::ClientAsyncResponseReader< ::io::deephaven::proto::backplane::grpc::AuthenticationConstantsResponse>* PrepareAsyncGetAuthenticationConstantsRaw(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::AuthenticationConstantsRequest& request, ::grpc::CompletionQueue* cq) override; - ::grpc::ClientAsyncResponseReader< ::io::deephaven::proto::backplane::grpc::ConfigurationConstantsResponse>* AsyncGetConfigurationConstantsRaw(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::ConfigurationConstantsRequest& request, ::grpc::CompletionQueue* cq) override; - ::grpc::ClientAsyncResponseReader< ::io::deephaven::proto::backplane::grpc::ConfigurationConstantsResponse>* PrepareAsyncGetConfigurationConstantsRaw(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::ConfigurationConstantsRequest& request, ::grpc::CompletionQueue* cq) override; - const ::grpc::internal::RpcMethod rpcmethod_GetAuthenticationConstants_; - const ::grpc::internal::RpcMethod rpcmethod_GetConfigurationConstants_; - }; - static std::unique_ptr NewStub(const std::shared_ptr< ::grpc::ChannelInterface>& channel, const ::grpc::StubOptions& options = ::grpc::StubOptions()); - - class Service : public ::grpc::Service { - public: - Service(); - virtual ~Service(); - virtual ::grpc::Status GetAuthenticationConstants(::grpc::ServerContext* context, const ::io::deephaven::proto::backplane::grpc::AuthenticationConstantsRequest* request, ::io::deephaven::proto::backplane::grpc::AuthenticationConstantsResponse* response); - virtual ::grpc::Status GetConfigurationConstants(::grpc::ServerContext* context, const ::io::deephaven::proto::backplane::grpc::ConfigurationConstantsRequest* request, ::io::deephaven::proto::backplane::grpc::ConfigurationConstantsResponse* response); - }; - template - class WithAsyncMethod_GetAuthenticationConstants : public BaseClass { - private: - void BaseClassMustBeDerivedFromService(const Service* /*service*/) {} - public: - WithAsyncMethod_GetAuthenticationConstants() { - ::grpc::Service::MarkMethodAsync(0); - } - ~WithAsyncMethod_GetAuthenticationConstants() override { - BaseClassMustBeDerivedFromService(this); - } - // disable synchronous version of this method - ::grpc::Status GetAuthenticationConstants(::grpc::ServerContext* /*context*/, const ::io::deephaven::proto::backplane::grpc::AuthenticationConstantsRequest* /*request*/, ::io::deephaven::proto::backplane::grpc::AuthenticationConstantsResponse* /*response*/) override { - abort(); - return ::grpc::Status(::grpc::StatusCode::UNIMPLEMENTED, ""); - } - void RequestGetAuthenticationConstants(::grpc::ServerContext* context, ::io::deephaven::proto::backplane::grpc::AuthenticationConstantsRequest* request, ::grpc::ServerAsyncResponseWriter< ::io::deephaven::proto::backplane::grpc::AuthenticationConstantsResponse>* response, ::grpc::CompletionQueue* new_call_cq, ::grpc::ServerCompletionQueue* notification_cq, void *tag) { - ::grpc::Service::RequestAsyncUnary(0, context, request, response, new_call_cq, notification_cq, tag); - } - }; - template - class WithAsyncMethod_GetConfigurationConstants : public BaseClass { - private: - void BaseClassMustBeDerivedFromService(const Service* /*service*/) {} - public: - WithAsyncMethod_GetConfigurationConstants() { - ::grpc::Service::MarkMethodAsync(1); - } - ~WithAsyncMethod_GetConfigurationConstants() override { - BaseClassMustBeDerivedFromService(this); - } - // disable synchronous version of this method - ::grpc::Status GetConfigurationConstants(::grpc::ServerContext* /*context*/, const ::io::deephaven::proto::backplane::grpc::ConfigurationConstantsRequest* /*request*/, ::io::deephaven::proto::backplane::grpc::ConfigurationConstantsResponse* /*response*/) override { - abort(); - return ::grpc::Status(::grpc::StatusCode::UNIMPLEMENTED, ""); - } - void RequestGetConfigurationConstants(::grpc::ServerContext* context, ::io::deephaven::proto::backplane::grpc::ConfigurationConstantsRequest* request, ::grpc::ServerAsyncResponseWriter< ::io::deephaven::proto::backplane::grpc::ConfigurationConstantsResponse>* response, ::grpc::CompletionQueue* new_call_cq, ::grpc::ServerCompletionQueue* notification_cq, void *tag) { - ::grpc::Service::RequestAsyncUnary(1, context, request, response, new_call_cq, notification_cq, tag); - } - }; - typedef WithAsyncMethod_GetAuthenticationConstants > AsyncService; - template - class WithCallbackMethod_GetAuthenticationConstants : public BaseClass { - private: - void BaseClassMustBeDerivedFromService(const Service* /*service*/) {} - public: - WithCallbackMethod_GetAuthenticationConstants() { - ::grpc::Service::MarkMethodCallback(0, - new ::grpc::internal::CallbackUnaryHandler< ::io::deephaven::proto::backplane::grpc::AuthenticationConstantsRequest, ::io::deephaven::proto::backplane::grpc::AuthenticationConstantsResponse>( - [this]( - ::grpc::CallbackServerContext* context, const ::io::deephaven::proto::backplane::grpc::AuthenticationConstantsRequest* request, ::io::deephaven::proto::backplane::grpc::AuthenticationConstantsResponse* response) { return this->GetAuthenticationConstants(context, request, response); }));} - void SetMessageAllocatorFor_GetAuthenticationConstants( - ::grpc::MessageAllocator< ::io::deephaven::proto::backplane::grpc::AuthenticationConstantsRequest, ::io::deephaven::proto::backplane::grpc::AuthenticationConstantsResponse>* allocator) { - ::grpc::internal::MethodHandler* const handler = ::grpc::Service::GetHandler(0); - static_cast<::grpc::internal::CallbackUnaryHandler< ::io::deephaven::proto::backplane::grpc::AuthenticationConstantsRequest, ::io::deephaven::proto::backplane::grpc::AuthenticationConstantsResponse>*>(handler) - ->SetMessageAllocator(allocator); - } - ~WithCallbackMethod_GetAuthenticationConstants() override { - BaseClassMustBeDerivedFromService(this); - } - // disable synchronous version of this method - ::grpc::Status GetAuthenticationConstants(::grpc::ServerContext* /*context*/, const ::io::deephaven::proto::backplane::grpc::AuthenticationConstantsRequest* /*request*/, ::io::deephaven::proto::backplane::grpc::AuthenticationConstantsResponse* /*response*/) override { - abort(); - return ::grpc::Status(::grpc::StatusCode::UNIMPLEMENTED, ""); - } - virtual ::grpc::ServerUnaryReactor* GetAuthenticationConstants( - ::grpc::CallbackServerContext* /*context*/, const ::io::deephaven::proto::backplane::grpc::AuthenticationConstantsRequest* /*request*/, ::io::deephaven::proto::backplane::grpc::AuthenticationConstantsResponse* /*response*/) { return nullptr; } - }; - template - class WithCallbackMethod_GetConfigurationConstants : public BaseClass { - private: - void BaseClassMustBeDerivedFromService(const Service* /*service*/) {} - public: - WithCallbackMethod_GetConfigurationConstants() { - ::grpc::Service::MarkMethodCallback(1, - new ::grpc::internal::CallbackUnaryHandler< ::io::deephaven::proto::backplane::grpc::ConfigurationConstantsRequest, ::io::deephaven::proto::backplane::grpc::ConfigurationConstantsResponse>( - [this]( - ::grpc::CallbackServerContext* context, const ::io::deephaven::proto::backplane::grpc::ConfigurationConstantsRequest* request, ::io::deephaven::proto::backplane::grpc::ConfigurationConstantsResponse* response) { return this->GetConfigurationConstants(context, request, response); }));} - void SetMessageAllocatorFor_GetConfigurationConstants( - ::grpc::MessageAllocator< ::io::deephaven::proto::backplane::grpc::ConfigurationConstantsRequest, ::io::deephaven::proto::backplane::grpc::ConfigurationConstantsResponse>* allocator) { - ::grpc::internal::MethodHandler* const handler = ::grpc::Service::GetHandler(1); - static_cast<::grpc::internal::CallbackUnaryHandler< ::io::deephaven::proto::backplane::grpc::ConfigurationConstantsRequest, ::io::deephaven::proto::backplane::grpc::ConfigurationConstantsResponse>*>(handler) - ->SetMessageAllocator(allocator); - } - ~WithCallbackMethod_GetConfigurationConstants() override { - BaseClassMustBeDerivedFromService(this); - } - // disable synchronous version of this method - ::grpc::Status GetConfigurationConstants(::grpc::ServerContext* /*context*/, const ::io::deephaven::proto::backplane::grpc::ConfigurationConstantsRequest* /*request*/, ::io::deephaven::proto::backplane::grpc::ConfigurationConstantsResponse* /*response*/) override { - abort(); - return ::grpc::Status(::grpc::StatusCode::UNIMPLEMENTED, ""); - } - virtual ::grpc::ServerUnaryReactor* GetConfigurationConstants( - ::grpc::CallbackServerContext* /*context*/, const ::io::deephaven::proto::backplane::grpc::ConfigurationConstantsRequest* /*request*/, ::io::deephaven::proto::backplane::grpc::ConfigurationConstantsResponse* /*response*/) { return nullptr; } - }; - typedef WithCallbackMethod_GetAuthenticationConstants > CallbackService; - typedef CallbackService ExperimentalCallbackService; - template - class WithGenericMethod_GetAuthenticationConstants : public BaseClass { - private: - void BaseClassMustBeDerivedFromService(const Service* /*service*/) {} - public: - WithGenericMethod_GetAuthenticationConstants() { - ::grpc::Service::MarkMethodGeneric(0); - } - ~WithGenericMethod_GetAuthenticationConstants() override { - BaseClassMustBeDerivedFromService(this); - } - // disable synchronous version of this method - ::grpc::Status GetAuthenticationConstants(::grpc::ServerContext* /*context*/, const ::io::deephaven::proto::backplane::grpc::AuthenticationConstantsRequest* /*request*/, ::io::deephaven::proto::backplane::grpc::AuthenticationConstantsResponse* /*response*/) override { - abort(); - return ::grpc::Status(::grpc::StatusCode::UNIMPLEMENTED, ""); - } - }; - template - class WithGenericMethod_GetConfigurationConstants : public BaseClass { - private: - void BaseClassMustBeDerivedFromService(const Service* /*service*/) {} - public: - WithGenericMethod_GetConfigurationConstants() { - ::grpc::Service::MarkMethodGeneric(1); - } - ~WithGenericMethod_GetConfigurationConstants() override { - BaseClassMustBeDerivedFromService(this); - } - // disable synchronous version of this method - ::grpc::Status GetConfigurationConstants(::grpc::ServerContext* /*context*/, const ::io::deephaven::proto::backplane::grpc::ConfigurationConstantsRequest* /*request*/, ::io::deephaven::proto::backplane::grpc::ConfigurationConstantsResponse* /*response*/) override { - abort(); - return ::grpc::Status(::grpc::StatusCode::UNIMPLEMENTED, ""); - } - }; - template - class WithRawMethod_GetAuthenticationConstants : public BaseClass { - private: - void BaseClassMustBeDerivedFromService(const Service* /*service*/) {} - public: - WithRawMethod_GetAuthenticationConstants() { - ::grpc::Service::MarkMethodRaw(0); - } - ~WithRawMethod_GetAuthenticationConstants() override { - BaseClassMustBeDerivedFromService(this); - } - // disable synchronous version of this method - ::grpc::Status GetAuthenticationConstants(::grpc::ServerContext* /*context*/, const ::io::deephaven::proto::backplane::grpc::AuthenticationConstantsRequest* /*request*/, ::io::deephaven::proto::backplane::grpc::AuthenticationConstantsResponse* /*response*/) override { - abort(); - return ::grpc::Status(::grpc::StatusCode::UNIMPLEMENTED, ""); - } - void RequestGetAuthenticationConstants(::grpc::ServerContext* context, ::grpc::ByteBuffer* request, ::grpc::ServerAsyncResponseWriter< ::grpc::ByteBuffer>* response, ::grpc::CompletionQueue* new_call_cq, ::grpc::ServerCompletionQueue* notification_cq, void *tag) { - ::grpc::Service::RequestAsyncUnary(0, context, request, response, new_call_cq, notification_cq, tag); - } - }; - template - class WithRawMethod_GetConfigurationConstants : public BaseClass { - private: - void BaseClassMustBeDerivedFromService(const Service* /*service*/) {} - public: - WithRawMethod_GetConfigurationConstants() { - ::grpc::Service::MarkMethodRaw(1); - } - ~WithRawMethod_GetConfigurationConstants() override { - BaseClassMustBeDerivedFromService(this); - } - // disable synchronous version of this method - ::grpc::Status GetConfigurationConstants(::grpc::ServerContext* /*context*/, const ::io::deephaven::proto::backplane::grpc::ConfigurationConstantsRequest* /*request*/, ::io::deephaven::proto::backplane::grpc::ConfigurationConstantsResponse* /*response*/) override { - abort(); - return ::grpc::Status(::grpc::StatusCode::UNIMPLEMENTED, ""); - } - void RequestGetConfigurationConstants(::grpc::ServerContext* context, ::grpc::ByteBuffer* request, ::grpc::ServerAsyncResponseWriter< ::grpc::ByteBuffer>* response, ::grpc::CompletionQueue* new_call_cq, ::grpc::ServerCompletionQueue* notification_cq, void *tag) { - ::grpc::Service::RequestAsyncUnary(1, context, request, response, new_call_cq, notification_cq, tag); - } - }; - template - class WithRawCallbackMethod_GetAuthenticationConstants : public BaseClass { - private: - void BaseClassMustBeDerivedFromService(const Service* /*service*/) {} - public: - WithRawCallbackMethod_GetAuthenticationConstants() { - ::grpc::Service::MarkMethodRawCallback(0, - new ::grpc::internal::CallbackUnaryHandler< ::grpc::ByteBuffer, ::grpc::ByteBuffer>( - [this]( - ::grpc::CallbackServerContext* context, const ::grpc::ByteBuffer* request, ::grpc::ByteBuffer* response) { return this->GetAuthenticationConstants(context, request, response); })); - } - ~WithRawCallbackMethod_GetAuthenticationConstants() override { - BaseClassMustBeDerivedFromService(this); - } - // disable synchronous version of this method - ::grpc::Status GetAuthenticationConstants(::grpc::ServerContext* /*context*/, const ::io::deephaven::proto::backplane::grpc::AuthenticationConstantsRequest* /*request*/, ::io::deephaven::proto::backplane::grpc::AuthenticationConstantsResponse* /*response*/) override { - abort(); - return ::grpc::Status(::grpc::StatusCode::UNIMPLEMENTED, ""); - } - virtual ::grpc::ServerUnaryReactor* GetAuthenticationConstants( - ::grpc::CallbackServerContext* /*context*/, const ::grpc::ByteBuffer* /*request*/, ::grpc::ByteBuffer* /*response*/) { return nullptr; } - }; - template - class WithRawCallbackMethod_GetConfigurationConstants : public BaseClass { - private: - void BaseClassMustBeDerivedFromService(const Service* /*service*/) {} - public: - WithRawCallbackMethod_GetConfigurationConstants() { - ::grpc::Service::MarkMethodRawCallback(1, - new ::grpc::internal::CallbackUnaryHandler< ::grpc::ByteBuffer, ::grpc::ByteBuffer>( - [this]( - ::grpc::CallbackServerContext* context, const ::grpc::ByteBuffer* request, ::grpc::ByteBuffer* response) { return this->GetConfigurationConstants(context, request, response); })); - } - ~WithRawCallbackMethod_GetConfigurationConstants() override { - BaseClassMustBeDerivedFromService(this); - } - // disable synchronous version of this method - ::grpc::Status GetConfigurationConstants(::grpc::ServerContext* /*context*/, const ::io::deephaven::proto::backplane::grpc::ConfigurationConstantsRequest* /*request*/, ::io::deephaven::proto::backplane::grpc::ConfigurationConstantsResponse* /*response*/) override { - abort(); - return ::grpc::Status(::grpc::StatusCode::UNIMPLEMENTED, ""); - } - virtual ::grpc::ServerUnaryReactor* GetConfigurationConstants( - ::grpc::CallbackServerContext* /*context*/, const ::grpc::ByteBuffer* /*request*/, ::grpc::ByteBuffer* /*response*/) { return nullptr; } - }; - template - class WithStreamedUnaryMethod_GetAuthenticationConstants : public BaseClass { - private: - void BaseClassMustBeDerivedFromService(const Service* /*service*/) {} - public: - WithStreamedUnaryMethod_GetAuthenticationConstants() { - ::grpc::Service::MarkMethodStreamed(0, - new ::grpc::internal::StreamedUnaryHandler< - ::io::deephaven::proto::backplane::grpc::AuthenticationConstantsRequest, ::io::deephaven::proto::backplane::grpc::AuthenticationConstantsResponse>( - [this](::grpc::ServerContext* context, - ::grpc::ServerUnaryStreamer< - ::io::deephaven::proto::backplane::grpc::AuthenticationConstantsRequest, ::io::deephaven::proto::backplane::grpc::AuthenticationConstantsResponse>* streamer) { - return this->StreamedGetAuthenticationConstants(context, - streamer); - })); - } - ~WithStreamedUnaryMethod_GetAuthenticationConstants() override { - BaseClassMustBeDerivedFromService(this); - } - // disable regular version of this method - ::grpc::Status GetAuthenticationConstants(::grpc::ServerContext* /*context*/, const ::io::deephaven::proto::backplane::grpc::AuthenticationConstantsRequest* /*request*/, ::io::deephaven::proto::backplane::grpc::AuthenticationConstantsResponse* /*response*/) override { - abort(); - return ::grpc::Status(::grpc::StatusCode::UNIMPLEMENTED, ""); - } - // replace default version of method with streamed unary - virtual ::grpc::Status StreamedGetAuthenticationConstants(::grpc::ServerContext* context, ::grpc::ServerUnaryStreamer< ::io::deephaven::proto::backplane::grpc::AuthenticationConstantsRequest,::io::deephaven::proto::backplane::grpc::AuthenticationConstantsResponse>* server_unary_streamer) = 0; - }; - template - class WithStreamedUnaryMethod_GetConfigurationConstants : public BaseClass { - private: - void BaseClassMustBeDerivedFromService(const Service* /*service*/) {} - public: - WithStreamedUnaryMethod_GetConfigurationConstants() { - ::grpc::Service::MarkMethodStreamed(1, - new ::grpc::internal::StreamedUnaryHandler< - ::io::deephaven::proto::backplane::grpc::ConfigurationConstantsRequest, ::io::deephaven::proto::backplane::grpc::ConfigurationConstantsResponse>( - [this](::grpc::ServerContext* context, - ::grpc::ServerUnaryStreamer< - ::io::deephaven::proto::backplane::grpc::ConfigurationConstantsRequest, ::io::deephaven::proto::backplane::grpc::ConfigurationConstantsResponse>* streamer) { - return this->StreamedGetConfigurationConstants(context, - streamer); - })); - } - ~WithStreamedUnaryMethod_GetConfigurationConstants() override { - BaseClassMustBeDerivedFromService(this); - } - // disable regular version of this method - ::grpc::Status GetConfigurationConstants(::grpc::ServerContext* /*context*/, const ::io::deephaven::proto::backplane::grpc::ConfigurationConstantsRequest* /*request*/, ::io::deephaven::proto::backplane::grpc::ConfigurationConstantsResponse* /*response*/) override { - abort(); - return ::grpc::Status(::grpc::StatusCode::UNIMPLEMENTED, ""); - } - // replace default version of method with streamed unary - virtual ::grpc::Status StreamedGetConfigurationConstants(::grpc::ServerContext* context, ::grpc::ServerUnaryStreamer< ::io::deephaven::proto::backplane::grpc::ConfigurationConstantsRequest,::io::deephaven::proto::backplane::grpc::ConfigurationConstantsResponse>* server_unary_streamer) = 0; - }; - typedef WithStreamedUnaryMethod_GetAuthenticationConstants > StreamedUnaryService; - typedef Service SplitStreamedService; - typedef WithStreamedUnaryMethod_GetAuthenticationConstants > StreamedService; -}; - -} // namespace grpc -} // namespace backplane -} // namespace proto -} // namespace deephaven -} // namespace io - - -#endif // GRPC_deephaven_2fproto_2fconfig_2eproto__INCLUDED diff --git a/cpp-client/deephaven/dhclient/proto/deephaven/proto/config.pb.cc b/cpp-client/deephaven/dhclient/proto/deephaven/proto/config.pb.cc deleted file mode 100644 index 904fec22960..00000000000 --- a/cpp-client/deephaven/dhclient/proto/deephaven/proto/config.pb.cc +++ /dev/null @@ -1,1465 +0,0 @@ -// 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" -// @@protoc_insertion_point(includes) - -// Must be included last. -#include "google/protobuf/port_def.inc" -PROTOBUF_PRAGMA_INIT_SEG -namespace _pb = ::google::protobuf; -namespace _pbi = ::google::protobuf::internal; -namespace _fl = ::google::protobuf::internal::field_layout; -namespace io { -namespace deephaven { -namespace proto { -namespace backplane { -namespace grpc { - 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() {} - union { - ConfigurationConstantsRequest _instance; - }; -}; - -PROTOBUF_ATTRIBUTE_NO_DESTROY PROTOBUF_CONSTINIT - PROTOBUF_ATTRIBUTE_INIT_PRIORITY1 ConfigurationConstantsRequestDefaultTypeInternal _ConfigurationConstantsRequest_default_instance_; - -inline constexpr ConfigValue::Impl_::Impl_( - ::_pbi::ConstantInitialized) noexcept - : kind_{}, - _cached_size_{0}, - _oneof_case_{} {} - -template -PROTOBUF_CONSTEXPR ConfigValue::ConfigValue(::_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() {} - union { - ConfigValue _instance; - }; -}; - -PROTOBUF_ATTRIBUTE_NO_DESTROY PROTOBUF_CONSTINIT - PROTOBUF_ATTRIBUTE_INIT_PRIORITY1 ConfigValueDefaultTypeInternal _ConfigValue_default_instance_; - 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() {} - union { - AuthenticationConstantsRequest _instance; - }; -}; - -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) -#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() {} - union { - ConfigurationConstantsResponse_ConfigValuesEntry_DoNotUse _instance; - }; -}; - -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) -#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() {} - union { - AuthenticationConstantsResponse_ConfigValuesEntry_DoNotUse _instance; - }; -}; - -PROTOBUF_ATTRIBUTE_NO_DESTROY PROTOBUF_CONSTINIT - PROTOBUF_ATTRIBUTE_INIT_PRIORITY1 AuthenticationConstantsResponse_ConfigValuesEntry_DoNotUseDefaultTypeInternal _AuthenticationConstantsResponse_ConfigValuesEntry_DoNotUse_default_instance_; - -inline constexpr ConfigurationConstantsResponse::Impl_::Impl_( - ::_pbi::ConstantInitialized) noexcept - : config_values_{}, - _cached_size_{0} {} - -template -PROTOBUF_CONSTEXPR ConfigurationConstantsResponse::ConfigurationConstantsResponse(::_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() {} - union { - ConfigurationConstantsResponse _instance; - }; -}; - -PROTOBUF_ATTRIBUTE_NO_DESTROY PROTOBUF_CONSTINIT - PROTOBUF_ATTRIBUTE_INIT_PRIORITY1 ConfigurationConstantsResponseDefaultTypeInternal _ConfigurationConstantsResponse_default_instance_; - -inline constexpr AuthenticationConstantsResponse::Impl_::Impl_( - ::_pbi::ConstantInitialized) noexcept - : config_values_{}, - _cached_size_{0} {} - -template -PROTOBUF_CONSTEXPR AuthenticationConstantsResponse::AuthenticationConstantsResponse(::_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() {} - union { - AuthenticationConstantsResponse _instance; - }; -}; - -PROTOBUF_ATTRIBUTE_NO_DESTROY PROTOBUF_CONSTINIT - PROTOBUF_ATTRIBUTE_INIT_PRIORITY1 AuthenticationConstantsResponseDefaultTypeInternal _AuthenticationConstantsResponse_default_instance_; -} // namespace grpc -} // namespace backplane -} // namespace proto -} // namespace deephaven -} // namespace io -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[] 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[] 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)}, - {28, -1, -1, sizeof(::io::deephaven::proto::backplane::grpc::AuthenticationConstantsResponse)}, - {37, 47, -1, sizeof(::io::deephaven::proto::backplane::grpc::ConfigurationConstantsResponse_ConfigValuesEntry_DoNotUse)}, - {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, - &::io::deephaven::proto::backplane::grpc::_AuthenticationConstantsResponse_ConfigValuesEntry_DoNotUse_default_instance_._instance, - &::io::deephaven::proto::backplane::grpc::_AuthenticationConstantsResponse_default_instance_._instance, - &::io::deephaven::proto::backplane::grpc::_ConfigurationConstantsResponse_ConfigValuesEntry_DoNotUse_default_instance_._instance, - &::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[] ABSL_ATTRIBUTE_SECTION_VARIABLE( - protodesc_cold) = { - "\n\034deephaven/proto/config.proto\022!io.deeph" - "aven.proto.backplane.grpc\" \n\036Authenticat" - "ionConstantsRequest\"\037\n\035ConfigurationCons" - "tantsRequest\"\363\001\n\037AuthenticationConstants" - "Response\022k\n\rconfig_values\030\001 \003(\0132T.io.dee" - "phaven.proto.backplane.grpc.Authenticati" - "onConstantsResponse.ConfigValuesEntry\032c\n" - "\021ConfigValuesEntry\022\013\n\003key\030\001 \001(\t\022=\n\005value" - "\030\002 \001(\0132..io.deephaven.proto.backplane.gr" - "pc.ConfigValue:\0028\001\"\361\001\n\036ConfigurationCons" - "tantsResponse\022j\n\rconfig_values\030\001 \003(\0132S.i" - "o.deephaven.proto.backplane.grpc.Configu" - "rationConstantsResponse.ConfigValuesEntr" - "y\032c\n\021ConfigValuesEntry\022\013\n\003key\030\001 \001(\t\022=\n\005v" - "alue\030\002 \001(\0132..io.deephaven.proto.backplan" - "e.grpc.ConfigValue:\0028\001\"-\n\013ConfigValue\022\026\n" - "\014string_value\030\003 \001(\tH\000B\006\n\004kind2\334\002\n\rConfig" - "Service\022\245\001\n\032GetAuthenticationConstants\022A" - ".io.deephaven.proto.backplane.grpc.Authe" - "nticationConstantsRequest\032B.io.deephaven" - ".proto.backplane.grpc.AuthenticationCons" - "tantsResponse\"\000\022\242\001\n\031GetConfigurationCons" - "tants\022@.io.deephaven.proto.backplane.grp" - "c.ConfigurationConstantsRequest\032A.io.dee" - "phaven.proto.backplane.grpc.Configuratio" - "nConstantsResponse\"\000BBH\001P\001Z( - from._internal_metadata_); - - // @@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 - {{ - }}, -}; - - - - - - - - -::google::protobuf::Metadata AuthenticationConstantsRequest::GetMetadata() const { - return ::google::protobuf::internal::ZeroFieldsBase::GetMetadataImpl(GetClassData()->full()); -} -// =================================================================== - -class ConfigurationConstantsRequest::_Internal { - public: -}; - -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>( - from._internal_metadata_); - - // @@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 - {{ - }}, -}; - - - - - - - - -::google::protobuf::Metadata ConfigurationConstantsRequest::GetMetadata() const { - return ::google::protobuf::internal::ZeroFieldsBase::GetMetadataImpl(GetClassData()->full()); -} -// =================================================================== - -#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 { - public: -}; - -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 ::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_, from); - - // @@protoc_insertion_point(copy_constructor:io.deephaven.proto.backplane.grpc.AuthenticationConstantsResponse) -} -inline PROTOBUF_NDEBUG_INLINE AuthenticationConstantsResponse::Impl_::Impl_( - ::google::protobuf::internal::InternalVisibility visibility, - ::google::protobuf::Arena* arena) - : config_values_{visibility, arena}, - _cached_size_{0} {} - -inline void AuthenticationConstantsResponse::SharedCtor(::_pb::Arena* arena) { - new (&_impl_) Impl_(internal_visibility(), arena); -} -AuthenticationConstantsResponse::~AuthenticationConstantsResponse() { - // @@protoc_insertion_point(destructor:io.deephaven.proto.backplane.grpc.AuthenticationConstantsResponse) - _internal_metadata_.Delete<::google::protobuf::UnknownFieldSet>(); - SharedDtor(); -} -inline void AuthenticationConstantsResponse::SharedDtor() { - ABSL_DCHECK(GetArena() == nullptr); - _impl_.~Impl_(); -} - -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_ = { - { - 0, // no _has_bits_ - 0, // no _extensions_ - 1, 0, // max_field_number, fast_idx_mask - offsetof(decltype(_table_), field_lookup_table), - 4294967294, // skipmap - offsetof(decltype(_table_), field_entries), - 1, // num_field_entries - 2, // num_aux_entries - offsetof(decltype(_table_), 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::AuthenticationConstantsResponse>(), // to_prefetch - #endif // PROTOBUF_PREFETCH_PARSE_TABLE - }, {{ - {::_pbi::TcParser::MiniParse, {}}, - }}, {{ - 65535, 65535 - }}, {{ - // map config_values = 1; - {PROTOBUF_FIELD_OFFSET(AuthenticationConstantsResponse, _impl_.config_values_), 0, 0, - (0 | ::_fl::kFcRepeated | ::_fl::kMap)}, - }}, {{ - {::_pbi::TcParser::GetMapAuxInfo< - decltype(AuthenticationConstantsResponse()._impl_.config_values_)>( - 1, 0, 0, 9, - 11)}, - {::_pbi::TcParser::CreateInArenaStorageCb<::io::deephaven::proto::backplane::grpc::ConfigValue>}, - }}, {{ - "\101\15\0\0\0\0\0\0" - "io.deephaven.proto.backplane.grpc.AuthenticationConstantsResponse" - "config_values" - }}, -}; - -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; - - _impl_.config_values_.Clear(); - _internal_metadata_.Clear<::google::protobuf::UnknownFieldSet>(); -} - -#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) - ABSL_DCHECK_NE(&from, _this); - ::uint32_t cached_has_bits = 0; - (void) cached_has_bits; - - _this->_impl_.config_values_.MergeFrom(from._impl_.config_values_); - _this->_internal_metadata_.MergeFrom<::google::protobuf::UnknownFieldSet>(from._internal_metadata_); -} - -void AuthenticationConstantsResponse::CopyFrom(const AuthenticationConstantsResponse& from) { -// @@protoc_insertion_point(class_specific_copy_from_start:io.deephaven.proto.backplane.grpc.AuthenticationConstantsResponse) - if (&from == this) return; - Clear(); - MergeFrom(from); -} - - -void AuthenticationConstantsResponse::InternalSwap(AuthenticationConstantsResponse* PROTOBUF_RESTRICT other) { - using std::swap; - _internal_metadata_.InternalSwap(&other->_internal_metadata_); - _impl_.config_values_.InternalSwap(&other->_impl_.config_values_); -} - -::google::protobuf::Metadata AuthenticationConstantsResponse::GetMetadata() const { - return ::google::protobuf::Message::GetMetadataImpl(GetClassData()->full()); -} -// =================================================================== - -#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 { - public: -}; - -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 ::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_, from); - - // @@protoc_insertion_point(copy_constructor:io.deephaven.proto.backplane.grpc.ConfigurationConstantsResponse) -} -inline PROTOBUF_NDEBUG_INLINE ConfigurationConstantsResponse::Impl_::Impl_( - ::google::protobuf::internal::InternalVisibility visibility, - ::google::protobuf::Arena* arena) - : config_values_{visibility, arena}, - _cached_size_{0} {} - -inline void ConfigurationConstantsResponse::SharedCtor(::_pb::Arena* arena) { - new (&_impl_) Impl_(internal_visibility(), arena); -} -ConfigurationConstantsResponse::~ConfigurationConstantsResponse() { - // @@protoc_insertion_point(destructor:io.deephaven.proto.backplane.grpc.ConfigurationConstantsResponse) - _internal_metadata_.Delete<::google::protobuf::UnknownFieldSet>(); - SharedDtor(); -} -inline void ConfigurationConstantsResponse::SharedDtor() { - ABSL_DCHECK(GetArena() == nullptr); - _impl_.~Impl_(); -} - -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_ = { - { - 0, // no _has_bits_ - 0, // no _extensions_ - 1, 0, // max_field_number, fast_idx_mask - offsetof(decltype(_table_), field_lookup_table), - 4294967294, // skipmap - offsetof(decltype(_table_), field_entries), - 1, // num_field_entries - 2, // num_aux_entries - offsetof(decltype(_table_), 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::ConfigurationConstantsResponse>(), // to_prefetch - #endif // PROTOBUF_PREFETCH_PARSE_TABLE - }, {{ - {::_pbi::TcParser::MiniParse, {}}, - }}, {{ - 65535, 65535 - }}, {{ - // map config_values = 1; - {PROTOBUF_FIELD_OFFSET(ConfigurationConstantsResponse, _impl_.config_values_), 0, 0, - (0 | ::_fl::kFcRepeated | ::_fl::kMap)}, - }}, {{ - {::_pbi::TcParser::GetMapAuxInfo< - decltype(ConfigurationConstantsResponse()._impl_.config_values_)>( - 1, 0, 0, 9, - 11)}, - {::_pbi::TcParser::CreateInArenaStorageCb<::io::deephaven::proto::backplane::grpc::ConfigValue>}, - }}, {{ - "\100\15\0\0\0\0\0\0" - "io.deephaven.proto.backplane.grpc.ConfigurationConstantsResponse" - "config_values" - }}, -}; - -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; - - _impl_.config_values_.Clear(); - _internal_metadata_.Clear<::google::protobuf::UnknownFieldSet>(); -} - -#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) - ABSL_DCHECK_NE(&from, _this); - ::uint32_t cached_has_bits = 0; - (void) cached_has_bits; - - _this->_impl_.config_values_.MergeFrom(from._impl_.config_values_); - _this->_internal_metadata_.MergeFrom<::google::protobuf::UnknownFieldSet>(from._internal_metadata_); -} - -void ConfigurationConstantsResponse::CopyFrom(const ConfigurationConstantsResponse& from) { -// @@protoc_insertion_point(class_specific_copy_from_start:io.deephaven.proto.backplane.grpc.ConfigurationConstantsResponse) - if (&from == this) return; - Clear(); - MergeFrom(from); -} - - -void ConfigurationConstantsResponse::InternalSwap(ConfigurationConstantsResponse* PROTOBUF_RESTRICT other) { - using std::swap; - _internal_metadata_.InternalSwap(&other->_internal_metadata_); - _impl_.config_values_.InternalSwap(&other->_impl_.config_values_); -} - -::google::protobuf::Metadata ConfigurationConstantsResponse::GetMetadata() const { - 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_); -}; - -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 ::io::deephaven::proto::backplane::grpc::ConfigValue& from_msg) - : kind_{}, - _cached_size_{0}, - _oneof_case_{from._oneof_case_[0]} {} - -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_, from); - switch (kind_case()) { - case KIND_NOT_SET: - break; - case kStringValue: - new (&_impl_.kind_.string_value_) decltype(_impl_.kind_.string_value_){arena, from._impl_.kind_.string_value_}; - break; - } - - // @@protoc_insertion_point(copy_constructor:io.deephaven.proto.backplane.grpc.ConfigValue) -} -inline PROTOBUF_NDEBUG_INLINE ConfigValue::Impl_::Impl_( - ::google::protobuf::internal::InternalVisibility visibility, - ::google::protobuf::Arena* arena) - : kind_{}, - _cached_size_{0}, - _oneof_case_{} {} - -inline void ConfigValue::SharedCtor(::_pb::Arena* arena) { - new (&_impl_) Impl_(internal_visibility(), arena); -} -ConfigValue::~ConfigValue() { - // @@protoc_insertion_point(destructor:io.deephaven.proto.backplane.grpc.ConfigValue) - _internal_metadata_.Delete<::google::protobuf::UnknownFieldSet>(); - SharedDtor(); -} -inline void ConfigValue::SharedDtor() { - ABSL_DCHECK(GetArena() == nullptr); - if (has_kind()) { - clear_kind(); - } - _impl_.~Impl_(); -} - -void ConfigValue::clear_kind() { -// @@protoc_insertion_point(one_of_clear_start:io.deephaven.proto.backplane.grpc.ConfigValue) - ::google::protobuf::internal::TSanWrite(&_impl_); - switch (kind_case()) { - case kStringValue: { - _impl_.kind_.string_value_.Destroy(); - break; - } - case KIND_NOT_SET: { - break; - } - } - _impl_._oneof_case_[0] = KIND_NOT_SET; -} - - -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_ = { - { - 0, // no _has_bits_ - 0, // no _extensions_ - 3, 0, // max_field_number, fast_idx_mask - offsetof(decltype(_table_), field_lookup_table), - 4294967291, // skipmap - offsetof(decltype(_table_), field_entries), - 1, // 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::ConfigValue>(), // to_prefetch - #endif // PROTOBUF_PREFETCH_PARSE_TABLE - }, {{ - {::_pbi::TcParser::MiniParse, {}}, - }}, {{ - 65535, 65535 - }}, {{ - // string string_value = 3; - {PROTOBUF_FIELD_OFFSET(ConfigValue, _impl_.kind_.string_value_), _Internal::kOneofCaseOffset + 0, 0, - (0 | ::_fl::kFcOneof | ::_fl::kUtf8String | ::_fl::kRepAString)}, - }}, - // no aux_entries - {{ - "\55\14\0\0\0\0\0\0" - "io.deephaven.proto.backplane.grpc.ConfigValue" - "string_value" - }}, -}; - -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; - - clear_kind(); - _internal_metadata_.Clear<::google::protobuf::UnknownFieldSet>(); -} - -#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; - - 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; - } - - 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_); -} - -void ConfigValue::CopyFrom(const ConfigValue& from) { -// @@protoc_insertion_point(class_specific_copy_from_start:io.deephaven.proto.backplane.grpc.ConfigValue) - if (&from == this) return; - Clear(); - MergeFrom(from); -} - - -void ConfigValue::InternalSwap(ConfigValue* PROTOBUF_RESTRICT other) { - using std::swap; - _internal_metadata_.InternalSwap(&other->_internal_metadata_); - swap(_impl_.kind_, other->_impl_.kind_); - swap(_impl_._oneof_case_[0], other->_impl_._oneof_case_[0]); -} - -::google::protobuf::Metadata ConfigValue::GetMetadata() const { - return ::google::protobuf::Message::GetMetadataImpl(GetClassData()->full()); -} -// @@protoc_insertion_point(namespace_scope) -} // namespace grpc -} // namespace backplane -} // namespace proto -} // namespace deephaven -} // namespace io -namespace google { -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 deleted file mode 100644 index 4ef69288dce..00000000000 --- a/cpp-client/deephaven/dhclient/proto/deephaven/proto/config.pb.h +++ /dev/null @@ -1,1259 +0,0 @@ -// 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 - -#ifndef GOOGLE_PROTOBUF_INCLUDED_deephaven_2fproto_2fconfig_2eproto_2epb_2eh -#define GOOGLE_PROTOBUF_INCLUDED_deephaven_2fproto_2fconfig_2eproto_2epb_2eh - -#include -#include -#include -#include - -#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" -#include "google/protobuf/generated_message_bases.h" -#include "google/protobuf/generated_message_tctable_decl.h" -#include "google/protobuf/generated_message_util.h" -#include "google/protobuf/metadata_lite.h" -#include "google/protobuf/generated_message_reflection.h" -#include "google/protobuf/message.h" -#include "google/protobuf/repeated_field.h" // IWYU pragma: export -#include "google/protobuf/extension_set.h" // IWYU pragma: export -#include "google/protobuf/map.h" // IWYU pragma: export -#include "google/protobuf/map_entry.h" -#include "google/protobuf/map_field_inl.h" -#include "google/protobuf/unknown_field_set.h" -// @@protoc_insertion_point(includes) - -// Must be included last. -#include "google/protobuf/port_def.inc" - -#define PROTOBUF_INTERNAL_EXPORT_deephaven_2fproto_2fconfig_2eproto - -namespace google { -namespace protobuf { -namespace internal { -class AnyMetadata; -} // namespace internal -} // namespace protobuf -} // namespace google - -// Internal implementation detail -- do not use these members. -struct TableStruct_deephaven_2fproto_2fconfig_2eproto { - static const ::uint32_t offsets[]; -}; -extern const ::google::protobuf::internal::DescriptorTable - descriptor_table_deephaven_2fproto_2fconfig_2eproto; -namespace io { -namespace deephaven { -namespace proto { -namespace backplane { -namespace grpc { -class AuthenticationConstantsRequest; -struct AuthenticationConstantsRequestDefaultTypeInternal; -extern AuthenticationConstantsRequestDefaultTypeInternal _AuthenticationConstantsRequest_default_instance_; -class AuthenticationConstantsResponse; -struct AuthenticationConstantsResponseDefaultTypeInternal; -extern AuthenticationConstantsResponseDefaultTypeInternal _AuthenticationConstantsResponse_default_instance_; -class AuthenticationConstantsResponse_ConfigValuesEntry_DoNotUse; -struct AuthenticationConstantsResponse_ConfigValuesEntry_DoNotUseDefaultTypeInternal; -extern AuthenticationConstantsResponse_ConfigValuesEntry_DoNotUseDefaultTypeInternal _AuthenticationConstantsResponse_ConfigValuesEntry_DoNotUse_default_instance_; -class ConfigValue; -struct ConfigValueDefaultTypeInternal; -extern ConfigValueDefaultTypeInternal _ConfigValue_default_instance_; -class ConfigurationConstantsRequest; -struct ConfigurationConstantsRequestDefaultTypeInternal; -extern ConfigurationConstantsRequestDefaultTypeInternal _ConfigurationConstantsRequest_default_instance_; -class ConfigurationConstantsResponse; -struct ConfigurationConstantsResponseDefaultTypeInternal; -extern ConfigurationConstantsResponseDefaultTypeInternal _ConfigurationConstantsResponse_default_instance_; -class ConfigurationConstantsResponse_ConfigValuesEntry_DoNotUse; -struct ConfigurationConstantsResponse_ConfigValuesEntry_DoNotUseDefaultTypeInternal; -extern ConfigurationConstantsResponse_ConfigValuesEntry_DoNotUseDefaultTypeInternal _ConfigurationConstantsResponse_ConfigValuesEntry_DoNotUse_default_instance_; -} // namespace grpc -} // namespace backplane -} // namespace proto -} // namespace deephaven -} // namespace io -namespace google { -namespace protobuf { -} // namespace protobuf -} // namespace google - -namespace io { -namespace deephaven { -namespace proto { -namespace backplane { -namespace grpc { - -// =================================================================== - - -// ------------------------------------------------------------------- - -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) {} - inline ConfigurationConstantsRequest(ConfigurationConstantsRequest&& from) noexcept - : ConfigurationConstantsRequest(nullptr, std::move(from)) {} - inline ConfigurationConstantsRequest& operator=(const ConfigurationConstantsRequest& from) { - CopyFrom(from); - return *this; - } - inline ConfigurationConstantsRequest& operator=(ConfigurationConstantsRequest&& 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 ConfigurationConstantsRequest& default_instance() { - return *internal_default_instance(); - } - 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); } - 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 - if (GetArena() == other->GetArena()) { -#endif // !PROTOBUF_FORCE_COPY_IN_SWAP - InternalSwap(other); - } else { - ::google::protobuf::internal::GenericSwap(this, other); - } - } - void UnsafeArenaSwap(ConfigurationConstantsRequest* other) { - if (other == this) return; - ABSL_DCHECK(GetArena() == other->GetArena()); - InternalSwap(other); - } - - // implements Message ---------------------------------------------- - - 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) { - ::google::protobuf::internal::ZeroFieldsBase::CopyImpl(*this, from); - } - using ::google::protobuf::internal::ZeroFieldsBase::MergeFrom; - void MergeFrom(const ConfigurationConstantsRequest& 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.ConfigurationConstantsRequest"; } - - protected: - explicit ConfigurationConstantsRequest(::google::protobuf::Arena* arena); - ConfigurationConstantsRequest(::google::protobuf::Arena* arena, const ConfigurationConstantsRequest& from); - 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; - 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 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) */ { - public: - inline ConfigValue() : ConfigValue(nullptr) {} - ~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; - } - inline ConfigValue& operator=(ConfigValue&& 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 ConfigValue& default_instance() { - return *internal_default_instance(); - } - enum KindCase { - 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); } - 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 - if (GetArena() == other->GetArena()) { -#endif // !PROTOBUF_FORCE_COPY_IN_SWAP - InternalSwap(other); - } else { - ::google::protobuf::internal::GenericSwap(this, other); - } - } - void UnsafeArenaSwap(ConfigValue* other) { - if (other == this) return; - ABSL_DCHECK(GetArena() == other->GetArena()); - InternalSwap(other); - } - - // implements Message ---------------------------------------------- - - 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); } - - private: - static void MergeImpl( - ::google::protobuf::MessageLite& to_msg, - const ::google::protobuf::MessageLite& from_msg); - - 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; - #endif // PROTOBUF_CUSTOM_VTABLE - int GetCachedSize() const { return _impl_._cached_size_.Get(); } - - private: - void SharedCtor(::google::protobuf::Arena* arena); - void SharedDtor(); - void InternalSwap(ConfigValue* other); - private: - friend class ::google::protobuf::internal::AnyMetadata; - 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); - 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, - }; - // string string_value = 3; - bool has_string_value() const; - void clear_string_value() ; - const std::string& string_value() const; - template - void set_string_value(Arg_&& arg, Args_... args); - std::string* mutable_string_value(); - PROTOBUF_NODISCARD std::string* release_string_value(); - void set_allocated_string_value(std::string* value); - - private: - const std::string& _internal_string_value() const; - inline PROTOBUF_ALWAYS_INLINE void _internal_set_string_value( - const std::string& value); - std::string* _internal_mutable_string_value(); - - public: - void clear_kind(); - KindCase kind_case() const; - // @@protoc_insertion_point(class_scope:io.deephaven.proto.backplane.grpc.ConfigValue) - 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 - 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 ConfigValue& from_msg); - union KindUnion { - constexpr KindUnion() : _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) */ { - public: - inline AuthenticationConstantsRequest() : AuthenticationConstantsRequest(nullptr) {} - 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; - } - inline AuthenticationConstantsRequest& operator=(AuthenticationConstantsRequest&& 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 AuthenticationConstantsRequest& default_instance() { - return *internal_default_instance(); - } - 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); } - 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 - if (GetArena() == other->GetArena()) { -#endif // !PROTOBUF_FORCE_COPY_IN_SWAP - InternalSwap(other); - } else { - ::google::protobuf::internal::GenericSwap(this, other); - } - } - void UnsafeArenaSwap(AuthenticationConstantsRequest* other) { - if (other == this) return; - ABSL_DCHECK(GetArena() == other->GetArena()); - InternalSwap(other); - } - - // implements Message ---------------------------------------------- - - 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) { - ::google::protobuf::internal::ZeroFieldsBase::CopyImpl(*this, from); - } - using ::google::protobuf::internal::ZeroFieldsBase::MergeFrom; - void MergeFrom(const AuthenticationConstantsRequest& 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.AuthenticationConstantsRequest"; } - - protected: - explicit AuthenticationConstantsRequest(::google::protobuf::Arena* arena); - AuthenticationConstantsRequest(::google::protobuf::Arena* arena, const AuthenticationConstantsRequest& from); - 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; - 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 AuthenticationConstantsRequest& from_msg); - PROTOBUF_TSAN_DECLARE_MEMBER - }; - friend struct ::TableStruct_deephaven_2fproto_2fconfig_2eproto; -}; -// ------------------------------------------------------------------- - -class ConfigurationConstantsResponse_ConfigValuesEntry_DoNotUse final - : public ::google::protobuf::internal::MapEntry< - ConfigurationConstantsResponse_ConfigValuesEntry_DoNotUse, std::string, ::io::deephaven::proto::backplane::grpc::ConfigValue, - ::google::protobuf::internal::WireFormatLite::TYPE_STRING, - ::google::protobuf::internal::WireFormatLite::TYPE_MESSAGE> { - public: - using SuperType = ::google::protobuf::internal::MapEntry< - ConfigurationConstantsResponse_ConfigValuesEntry_DoNotUse, std::string, ::io::deephaven::proto::backplane::grpc::ConfigValue, - ::google::protobuf::internal::WireFormatLite::TYPE_STRING, - ::google::protobuf::internal::WireFormatLite::TYPE_MESSAGE>; - ConfigurationConstantsResponse_ConfigValuesEntry_DoNotUse(); - template - explicit PROTOBUF_CONSTEXPR ConfigurationConstantsResponse_ConfigValuesEntry_DoNotUse( - ::google::protobuf::internal::ConstantInitialized); - explicit ConfigurationConstantsResponse_ConfigValuesEntry_DoNotUse(::google::protobuf::Arena* arena); - static const ConfigurationConstantsResponse_ConfigValuesEntry_DoNotUse* internal_default_instance() { - return reinterpret_cast( - &_ConfigurationConstantsResponse_ConfigValuesEntry_DoNotUse_default_instance_); - } - - - 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; -}; -// ------------------------------------------------------------------- - -class AuthenticationConstantsResponse_ConfigValuesEntry_DoNotUse final - : public ::google::protobuf::internal::MapEntry< - AuthenticationConstantsResponse_ConfigValuesEntry_DoNotUse, std::string, ::io::deephaven::proto::backplane::grpc::ConfigValue, - ::google::protobuf::internal::WireFormatLite::TYPE_STRING, - ::google::protobuf::internal::WireFormatLite::TYPE_MESSAGE> { - public: - using SuperType = ::google::protobuf::internal::MapEntry< - AuthenticationConstantsResponse_ConfigValuesEntry_DoNotUse, std::string, ::io::deephaven::proto::backplane::grpc::ConfigValue, - ::google::protobuf::internal::WireFormatLite::TYPE_STRING, - ::google::protobuf::internal::WireFormatLite::TYPE_MESSAGE>; - AuthenticationConstantsResponse_ConfigValuesEntry_DoNotUse(); - template - explicit PROTOBUF_CONSTEXPR AuthenticationConstantsResponse_ConfigValuesEntry_DoNotUse( - ::google::protobuf::internal::ConstantInitialized); - explicit AuthenticationConstantsResponse_ConfigValuesEntry_DoNotUse(::google::protobuf::Arena* arena); - static const AuthenticationConstantsResponse_ConfigValuesEntry_DoNotUse* internal_default_instance() { - return reinterpret_cast( - &_AuthenticationConstantsResponse_ConfigValuesEntry_DoNotUse_default_instance_); - } - - - 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) */ { - public: - inline ConfigurationConstantsResponse() : ConfigurationConstantsResponse(nullptr) {} - ~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; - } - inline ConfigurationConstantsResponse& operator=(ConfigurationConstantsResponse&& 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 ConfigurationConstantsResponse& default_instance() { - return *internal_default_instance(); - } - 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); } - 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 - if (GetArena() == other->GetArena()) { -#endif // !PROTOBUF_FORCE_COPY_IN_SWAP - InternalSwap(other); - } else { - ::google::protobuf::internal::GenericSwap(this, other); - } - } - void UnsafeArenaSwap(ConfigurationConstantsResponse* other) { - if (other == this) return; - ABSL_DCHECK(GetArena() == other->GetArena()); - InternalSwap(other); - } - - // implements Message ---------------------------------------------- - - 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); } - - private: - static void MergeImpl( - ::google::protobuf::MessageLite& to_msg, - const ::google::protobuf::MessageLite& from_msg); - - 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; - #endif // PROTOBUF_CUSTOM_VTABLE - int GetCachedSize() const { return _impl_._cached_size_.Get(); } - - private: - void SharedCtor(::google::protobuf::Arena* arena); - void SharedDtor(); - void InternalSwap(ConfigurationConstantsResponse* other); - private: - friend class ::google::protobuf::internal::AnyMetadata; - 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); - 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, - }; - // map config_values = 1; - int config_values_size() const; - private: - int _internal_config_values_size() const; - - public: - void clear_config_values() ; - const ::google::protobuf::Map& config_values() const; - ::google::protobuf::Map* mutable_config_values(); - - private: - const ::google::protobuf::Map& _internal_config_values() const; - ::google::protobuf::Map* _internal_mutable_config_values(); - - public: - // @@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 - 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 ConfigurationConstantsResponse& from_msg); - ::google::protobuf::internal::MapField - config_values_; - mutable ::google::protobuf::internal::CachedSize _cached_size_; - PROTOBUF_TSAN_DECLARE_MEMBER - }; - 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) */ { - public: - inline AuthenticationConstantsResponse() : AuthenticationConstantsResponse(nullptr) {} - ~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; - } - inline AuthenticationConstantsResponse& operator=(AuthenticationConstantsResponse&& 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 AuthenticationConstantsResponse& default_instance() { - return *internal_default_instance(); - } - 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); } - 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 - if (GetArena() == other->GetArena()) { -#endif // !PROTOBUF_FORCE_COPY_IN_SWAP - InternalSwap(other); - } else { - ::google::protobuf::internal::GenericSwap(this, other); - } - } - void UnsafeArenaSwap(AuthenticationConstantsResponse* other) { - if (other == this) return; - ABSL_DCHECK(GetArena() == other->GetArena()); - InternalSwap(other); - } - - // implements Message ---------------------------------------------- - - 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); } - - private: - static void MergeImpl( - ::google::protobuf::MessageLite& to_msg, - const ::google::protobuf::MessageLite& from_msg); - - 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; - #endif // PROTOBUF_CUSTOM_VTABLE - int GetCachedSize() const { return _impl_._cached_size_.Get(); } - - private: - void SharedCtor(::google::protobuf::Arena* arena); - void SharedDtor(); - void InternalSwap(AuthenticationConstantsResponse* other); - private: - friend class ::google::protobuf::internal::AnyMetadata; - 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); - 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, - }; - // map config_values = 1; - int config_values_size() const; - private: - int _internal_config_values_size() const; - - public: - void clear_config_values() ; - const ::google::protobuf::Map& config_values() const; - ::google::protobuf::Map* mutable_config_values(); - - private: - const ::google::protobuf::Map& _internal_config_values() const; - ::google::protobuf::Map* _internal_mutable_config_values(); - - public: - // @@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 - 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 AuthenticationConstantsResponse& from_msg); - ::google::protobuf::internal::MapField - config_values_; - mutable ::google::protobuf::internal::CachedSize _cached_size_; - PROTOBUF_TSAN_DECLARE_MEMBER - }; - union { Impl_ _impl_; }; - friend struct ::TableStruct_deephaven_2fproto_2fconfig_2eproto; -}; - -// =================================================================== - - - - -// =================================================================== - - -#ifdef __GNUC__ -#pragma GCC diagnostic push -#pragma GCC diagnostic ignored "-Wstrict-aliasing" -#endif // __GNUC__ -// ------------------------------------------------------------------- - -// AuthenticationConstantsRequest - -// ------------------------------------------------------------------- - -// ConfigurationConstantsRequest - -// ------------------------------------------------------------------- - -// ------------------------------------------------------------------- - -// AuthenticationConstantsResponse - -// map config_values = 1; -inline int AuthenticationConstantsResponse::_internal_config_values_size() const { - return _internal_config_values().size(); -} -inline int AuthenticationConstantsResponse::config_values_size() const { - return _internal_config_values_size(); -} -inline void AuthenticationConstantsResponse::clear_config_values() { - ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.config_values_.Clear(); -} -inline const ::google::protobuf::Map& AuthenticationConstantsResponse::_internal_config_values() const { - ::google::protobuf::internal::TSanRead(&_impl_); - return _impl_.config_values_.GetMap(); -} -inline const ::google::protobuf::Map& AuthenticationConstantsResponse::config_values() const ABSL_ATTRIBUTE_LIFETIME_BOUND { - // @@protoc_insertion_point(field_map:io.deephaven.proto.backplane.grpc.AuthenticationConstantsResponse.config_values) - return _internal_config_values(); -} -inline ::google::protobuf::Map* AuthenticationConstantsResponse::_internal_mutable_config_values() { - ::google::protobuf::internal::TSanWrite(&_impl_); - return _impl_.config_values_.MutableMap(); -} -inline ::google::protobuf::Map* AuthenticationConstantsResponse::mutable_config_values() ABSL_ATTRIBUTE_LIFETIME_BOUND { - // @@protoc_insertion_point(field_mutable_map:io.deephaven.proto.backplane.grpc.AuthenticationConstantsResponse.config_values) - return _internal_mutable_config_values(); -} - -// ------------------------------------------------------------------- - -// ------------------------------------------------------------------- - -// ConfigurationConstantsResponse - -// map config_values = 1; -inline int ConfigurationConstantsResponse::_internal_config_values_size() const { - return _internal_config_values().size(); -} -inline int ConfigurationConstantsResponse::config_values_size() const { - return _internal_config_values_size(); -} -inline void ConfigurationConstantsResponse::clear_config_values() { - ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.config_values_.Clear(); -} -inline const ::google::protobuf::Map& ConfigurationConstantsResponse::_internal_config_values() const { - ::google::protobuf::internal::TSanRead(&_impl_); - return _impl_.config_values_.GetMap(); -} -inline const ::google::protobuf::Map& ConfigurationConstantsResponse::config_values() const ABSL_ATTRIBUTE_LIFETIME_BOUND { - // @@protoc_insertion_point(field_map:io.deephaven.proto.backplane.grpc.ConfigurationConstantsResponse.config_values) - return _internal_config_values(); -} -inline ::google::protobuf::Map* ConfigurationConstantsResponse::_internal_mutable_config_values() { - ::google::protobuf::internal::TSanWrite(&_impl_); - return _impl_.config_values_.MutableMap(); -} -inline ::google::protobuf::Map* ConfigurationConstantsResponse::mutable_config_values() ABSL_ATTRIBUTE_LIFETIME_BOUND { - // @@protoc_insertion_point(field_mutable_map:io.deephaven.proto.backplane.grpc.ConfigurationConstantsResponse.config_values) - return _internal_mutable_config_values(); -} - -// ------------------------------------------------------------------- - -// ConfigValue - -// string string_value = 3; -inline bool ConfigValue::has_string_value() const { - return kind_case() == kStringValue; -} -inline void ConfigValue::set_has_string_value() { - _impl_._oneof_case_[0] = kStringValue; -} -inline void ConfigValue::clear_string_value() { - ::google::protobuf::internal::TSanWrite(&_impl_); - if (kind_case() == kStringValue) { - _impl_.kind_.string_value_.Destroy(); - clear_has_kind(); - } -} -inline const std::string& ConfigValue::string_value() const - ABSL_ATTRIBUTE_LIFETIME_BOUND { - // @@protoc_insertion_point(field_get:io.deephaven.proto.backplane.grpc.ConfigValue.string_value) - return _internal_string_value(); -} -template -inline PROTOBUF_ALWAYS_INLINE void ConfigValue::set_string_value(Arg_&& arg, - Args_... args) { - ::google::protobuf::internal::TSanWrite(&_impl_); - if (kind_case() != kStringValue) { - clear_kind(); - - set_has_string_value(); - _impl_.kind_.string_value_.InitDefault(); - } - _impl_.kind_.string_value_.Set(static_cast(arg), args..., GetArena()); - // @@protoc_insertion_point(field_set:io.deephaven.proto.backplane.grpc.ConfigValue.string_value) -} -inline std::string* ConfigValue::mutable_string_value() ABSL_ATTRIBUTE_LIFETIME_BOUND { - std::string* _s = _internal_mutable_string_value(); - // @@protoc_insertion_point(field_mutable:io.deephaven.proto.backplane.grpc.ConfigValue.string_value) - return _s; -} -inline const std::string& ConfigValue::_internal_string_value() const { - ::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) { - ::google::protobuf::internal::TSanWrite(&_impl_); - if (kind_case() != kStringValue) { - clear_kind(); - - set_has_string_value(); - _impl_.kind_.string_value_.InitDefault(); - } - _impl_.kind_.string_value_.Set(value, GetArena()); -} -inline std::string* ConfigValue::_internal_mutable_string_value() { - ::google::protobuf::internal::TSanWrite(&_impl_); - if (kind_case() != kStringValue) { - clear_kind(); - - set_has_string_value(); - _impl_.kind_.string_value_.InitDefault(); - } - return _impl_.kind_.string_value_.Mutable( GetArena()); -} -inline std::string* ConfigValue::release_string_value() { - ::google::protobuf::internal::TSanWrite(&_impl_); - // @@protoc_insertion_point(field_release:io.deephaven.proto.backplane.grpc.ConfigValue.string_value) - if (kind_case() != kStringValue) { - return nullptr; - } - clear_has_kind(); - return _impl_.kind_.string_value_.Release(); -} -inline void ConfigValue::set_allocated_string_value(std::string* value) { - ::google::protobuf::internal::TSanWrite(&_impl_); - if (has_kind()) { - clear_kind(); - } - if (value != nullptr) { - set_has_string_value(); - _impl_.kind_.string_value_.InitAllocated(value, GetArena()); - } - // @@protoc_insertion_point(field_set_allocated:io.deephaven.proto.backplane.grpc.ConfigValue.string_value) -} - -inline bool ConfigValue::has_kind() const { - return kind_case() != KIND_NOT_SET; -} -inline void ConfigValue::clear_has_kind() { - _impl_._oneof_case_[0] = KIND_NOT_SET; -} -inline ConfigValue::KindCase ConfigValue::kind_case() const { - return ConfigValue::KindCase(_impl_._oneof_case_[0]); -} -#ifdef __GNUC__ -#pragma GCC diagnostic pop -#endif // __GNUC__ - -// @@protoc_insertion_point(namespace_scope) -} // namespace grpc -} // namespace backplane -} // namespace proto -} // namespace deephaven -} // namespace io - - -// @@protoc_insertion_point(global_scope) - -#include "google/protobuf/port_undef.inc" - -#endif // GOOGLE_PROTOBUF_INCLUDED_deephaven_2fproto_2fconfig_2eproto_2epb_2eh diff --git a/cpp-client/deephaven/dhclient/proto/deephaven/proto/console.grpc.pb.cc b/cpp-client/deephaven/dhclient/proto/deephaven/proto/console.grpc.pb.cc deleted file mode 100644 index 92345945498..00000000000 --- a/cpp-client/deephaven/dhclient/proto/deephaven/proto/console.grpc.pb.cc +++ /dev/null @@ -1,494 +0,0 @@ -// Generated by the gRPC C++ plugin. -// If you make any local change, they will be lost. -// source: deephaven/proto/console.proto - -#include "deephaven/proto/console.pb.h" -#include "deephaven/proto/console.grpc.pb.h" - -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -namespace io { -namespace deephaven { -namespace proto { -namespace backplane { -namespace script { -namespace grpc { - -static const char* ConsoleService_method_names[] = { - "/io.deephaven.proto.backplane.script.grpc.ConsoleService/GetConsoleTypes", - "/io.deephaven.proto.backplane.script.grpc.ConsoleService/StartConsole", - "/io.deephaven.proto.backplane.script.grpc.ConsoleService/GetHeapInfo", - "/io.deephaven.proto.backplane.script.grpc.ConsoleService/SubscribeToLogs", - "/io.deephaven.proto.backplane.script.grpc.ConsoleService/ExecuteCommand", - "/io.deephaven.proto.backplane.script.grpc.ConsoleService/CancelCommand", - "/io.deephaven.proto.backplane.script.grpc.ConsoleService/BindTableToVariable", - "/io.deephaven.proto.backplane.script.grpc.ConsoleService/AutoCompleteStream", - "/io.deephaven.proto.backplane.script.grpc.ConsoleService/CancelAutoComplete", - "/io.deephaven.proto.backplane.script.grpc.ConsoleService/OpenAutoCompleteStream", - "/io.deephaven.proto.backplane.script.grpc.ConsoleService/NextAutoCompleteStream", -}; - -std::unique_ptr< ConsoleService::Stub> ConsoleService::NewStub(const std::shared_ptr< ::grpc::ChannelInterface>& channel, const ::grpc::StubOptions& options) { - (void)options; - std::unique_ptr< ConsoleService::Stub> stub(new ConsoleService::Stub(channel, options)); - return stub; -} - -ConsoleService::Stub::Stub(const std::shared_ptr< ::grpc::ChannelInterface>& channel, const ::grpc::StubOptions& options) - : channel_(channel), rpcmethod_GetConsoleTypes_(ConsoleService_method_names[0], options.suffix_for_stats(),::grpc::internal::RpcMethod::NORMAL_RPC, channel) - , rpcmethod_StartConsole_(ConsoleService_method_names[1], options.suffix_for_stats(),::grpc::internal::RpcMethod::NORMAL_RPC, channel) - , rpcmethod_GetHeapInfo_(ConsoleService_method_names[2], options.suffix_for_stats(),::grpc::internal::RpcMethod::NORMAL_RPC, channel) - , rpcmethod_SubscribeToLogs_(ConsoleService_method_names[3], options.suffix_for_stats(),::grpc::internal::RpcMethod::SERVER_STREAMING, channel) - , rpcmethod_ExecuteCommand_(ConsoleService_method_names[4], options.suffix_for_stats(),::grpc::internal::RpcMethod::NORMAL_RPC, channel) - , rpcmethod_CancelCommand_(ConsoleService_method_names[5], options.suffix_for_stats(),::grpc::internal::RpcMethod::NORMAL_RPC, channel) - , rpcmethod_BindTableToVariable_(ConsoleService_method_names[6], options.suffix_for_stats(),::grpc::internal::RpcMethod::NORMAL_RPC, channel) - , rpcmethod_AutoCompleteStream_(ConsoleService_method_names[7], options.suffix_for_stats(),::grpc::internal::RpcMethod::BIDI_STREAMING, channel) - , rpcmethod_CancelAutoComplete_(ConsoleService_method_names[8], options.suffix_for_stats(),::grpc::internal::RpcMethod::NORMAL_RPC, channel) - , rpcmethod_OpenAutoCompleteStream_(ConsoleService_method_names[9], options.suffix_for_stats(),::grpc::internal::RpcMethod::SERVER_STREAMING, channel) - , rpcmethod_NextAutoCompleteStream_(ConsoleService_method_names[10], options.suffix_for_stats(),::grpc::internal::RpcMethod::NORMAL_RPC, channel) - {} - -::grpc::Status ConsoleService::Stub::GetConsoleTypes(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::script::grpc::GetConsoleTypesRequest& request, ::io::deephaven::proto::backplane::script::grpc::GetConsoleTypesResponse* response) { - return ::grpc::internal::BlockingUnaryCall< ::io::deephaven::proto::backplane::script::grpc::GetConsoleTypesRequest, ::io::deephaven::proto::backplane::script::grpc::GetConsoleTypesResponse, ::grpc::protobuf::MessageLite, ::grpc::protobuf::MessageLite>(channel_.get(), rpcmethod_GetConsoleTypes_, context, request, response); -} - -void ConsoleService::Stub::async::GetConsoleTypes(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::script::grpc::GetConsoleTypesRequest* request, ::io::deephaven::proto::backplane::script::grpc::GetConsoleTypesResponse* response, std::function f) { - ::grpc::internal::CallbackUnaryCall< ::io::deephaven::proto::backplane::script::grpc::GetConsoleTypesRequest, ::io::deephaven::proto::backplane::script::grpc::GetConsoleTypesResponse, ::grpc::protobuf::MessageLite, ::grpc::protobuf::MessageLite>(stub_->channel_.get(), stub_->rpcmethod_GetConsoleTypes_, context, request, response, std::move(f)); -} - -void ConsoleService::Stub::async::GetConsoleTypes(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::script::grpc::GetConsoleTypesRequest* request, ::io::deephaven::proto::backplane::script::grpc::GetConsoleTypesResponse* response, ::grpc::ClientUnaryReactor* reactor) { - ::grpc::internal::ClientCallbackUnaryFactory::Create< ::grpc::protobuf::MessageLite, ::grpc::protobuf::MessageLite>(stub_->channel_.get(), stub_->rpcmethod_GetConsoleTypes_, context, request, response, reactor); -} - -::grpc::ClientAsyncResponseReader< ::io::deephaven::proto::backplane::script::grpc::GetConsoleTypesResponse>* ConsoleService::Stub::PrepareAsyncGetConsoleTypesRaw(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::script::grpc::GetConsoleTypesRequest& request, ::grpc::CompletionQueue* cq) { - return ::grpc::internal::ClientAsyncResponseReaderHelper::Create< ::io::deephaven::proto::backplane::script::grpc::GetConsoleTypesResponse, ::io::deephaven::proto::backplane::script::grpc::GetConsoleTypesRequest, ::grpc::protobuf::MessageLite, ::grpc::protobuf::MessageLite>(channel_.get(), cq, rpcmethod_GetConsoleTypes_, context, request); -} - -::grpc::ClientAsyncResponseReader< ::io::deephaven::proto::backplane::script::grpc::GetConsoleTypesResponse>* ConsoleService::Stub::AsyncGetConsoleTypesRaw(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::script::grpc::GetConsoleTypesRequest& request, ::grpc::CompletionQueue* cq) { - auto* result = - this->PrepareAsyncGetConsoleTypesRaw(context, request, cq); - result->StartCall(); - return result; -} - -::grpc::Status ConsoleService::Stub::StartConsole(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::script::grpc::StartConsoleRequest& request, ::io::deephaven::proto::backplane::script::grpc::StartConsoleResponse* response) { - return ::grpc::internal::BlockingUnaryCall< ::io::deephaven::proto::backplane::script::grpc::StartConsoleRequest, ::io::deephaven::proto::backplane::script::grpc::StartConsoleResponse, ::grpc::protobuf::MessageLite, ::grpc::protobuf::MessageLite>(channel_.get(), rpcmethod_StartConsole_, context, request, response); -} - -void ConsoleService::Stub::async::StartConsole(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::script::grpc::StartConsoleRequest* request, ::io::deephaven::proto::backplane::script::grpc::StartConsoleResponse* response, std::function f) { - ::grpc::internal::CallbackUnaryCall< ::io::deephaven::proto::backplane::script::grpc::StartConsoleRequest, ::io::deephaven::proto::backplane::script::grpc::StartConsoleResponse, ::grpc::protobuf::MessageLite, ::grpc::protobuf::MessageLite>(stub_->channel_.get(), stub_->rpcmethod_StartConsole_, context, request, response, std::move(f)); -} - -void ConsoleService::Stub::async::StartConsole(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::script::grpc::StartConsoleRequest* request, ::io::deephaven::proto::backplane::script::grpc::StartConsoleResponse* response, ::grpc::ClientUnaryReactor* reactor) { - ::grpc::internal::ClientCallbackUnaryFactory::Create< ::grpc::protobuf::MessageLite, ::grpc::protobuf::MessageLite>(stub_->channel_.get(), stub_->rpcmethod_StartConsole_, context, request, response, reactor); -} - -::grpc::ClientAsyncResponseReader< ::io::deephaven::proto::backplane::script::grpc::StartConsoleResponse>* ConsoleService::Stub::PrepareAsyncStartConsoleRaw(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::script::grpc::StartConsoleRequest& request, ::grpc::CompletionQueue* cq) { - return ::grpc::internal::ClientAsyncResponseReaderHelper::Create< ::io::deephaven::proto::backplane::script::grpc::StartConsoleResponse, ::io::deephaven::proto::backplane::script::grpc::StartConsoleRequest, ::grpc::protobuf::MessageLite, ::grpc::protobuf::MessageLite>(channel_.get(), cq, rpcmethod_StartConsole_, context, request); -} - -::grpc::ClientAsyncResponseReader< ::io::deephaven::proto::backplane::script::grpc::StartConsoleResponse>* ConsoleService::Stub::AsyncStartConsoleRaw(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::script::grpc::StartConsoleRequest& request, ::grpc::CompletionQueue* cq) { - auto* result = - this->PrepareAsyncStartConsoleRaw(context, request, cq); - result->StartCall(); - return result; -} - -::grpc::Status ConsoleService::Stub::GetHeapInfo(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::script::grpc::GetHeapInfoRequest& request, ::io::deephaven::proto::backplane::script::grpc::GetHeapInfoResponse* response) { - return ::grpc::internal::BlockingUnaryCall< ::io::deephaven::proto::backplane::script::grpc::GetHeapInfoRequest, ::io::deephaven::proto::backplane::script::grpc::GetHeapInfoResponse, ::grpc::protobuf::MessageLite, ::grpc::protobuf::MessageLite>(channel_.get(), rpcmethod_GetHeapInfo_, context, request, response); -} - -void ConsoleService::Stub::async::GetHeapInfo(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::script::grpc::GetHeapInfoRequest* request, ::io::deephaven::proto::backplane::script::grpc::GetHeapInfoResponse* response, std::function f) { - ::grpc::internal::CallbackUnaryCall< ::io::deephaven::proto::backplane::script::grpc::GetHeapInfoRequest, ::io::deephaven::proto::backplane::script::grpc::GetHeapInfoResponse, ::grpc::protobuf::MessageLite, ::grpc::protobuf::MessageLite>(stub_->channel_.get(), stub_->rpcmethod_GetHeapInfo_, context, request, response, std::move(f)); -} - -void ConsoleService::Stub::async::GetHeapInfo(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::script::grpc::GetHeapInfoRequest* request, ::io::deephaven::proto::backplane::script::grpc::GetHeapInfoResponse* response, ::grpc::ClientUnaryReactor* reactor) { - ::grpc::internal::ClientCallbackUnaryFactory::Create< ::grpc::protobuf::MessageLite, ::grpc::protobuf::MessageLite>(stub_->channel_.get(), stub_->rpcmethod_GetHeapInfo_, context, request, response, reactor); -} - -::grpc::ClientAsyncResponseReader< ::io::deephaven::proto::backplane::script::grpc::GetHeapInfoResponse>* ConsoleService::Stub::PrepareAsyncGetHeapInfoRaw(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::script::grpc::GetHeapInfoRequest& request, ::grpc::CompletionQueue* cq) { - return ::grpc::internal::ClientAsyncResponseReaderHelper::Create< ::io::deephaven::proto::backplane::script::grpc::GetHeapInfoResponse, ::io::deephaven::proto::backplane::script::grpc::GetHeapInfoRequest, ::grpc::protobuf::MessageLite, ::grpc::protobuf::MessageLite>(channel_.get(), cq, rpcmethod_GetHeapInfo_, context, request); -} - -::grpc::ClientAsyncResponseReader< ::io::deephaven::proto::backplane::script::grpc::GetHeapInfoResponse>* ConsoleService::Stub::AsyncGetHeapInfoRaw(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::script::grpc::GetHeapInfoRequest& request, ::grpc::CompletionQueue* cq) { - auto* result = - this->PrepareAsyncGetHeapInfoRaw(context, request, cq); - result->StartCall(); - return result; -} - -::grpc::ClientReader< ::io::deephaven::proto::backplane::script::grpc::LogSubscriptionData>* ConsoleService::Stub::SubscribeToLogsRaw(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::script::grpc::LogSubscriptionRequest& request) { - return ::grpc::internal::ClientReaderFactory< ::io::deephaven::proto::backplane::script::grpc::LogSubscriptionData>::Create(channel_.get(), rpcmethod_SubscribeToLogs_, context, request); -} - -void ConsoleService::Stub::async::SubscribeToLogs(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::script::grpc::LogSubscriptionRequest* request, ::grpc::ClientReadReactor< ::io::deephaven::proto::backplane::script::grpc::LogSubscriptionData>* reactor) { - ::grpc::internal::ClientCallbackReaderFactory< ::io::deephaven::proto::backplane::script::grpc::LogSubscriptionData>::Create(stub_->channel_.get(), stub_->rpcmethod_SubscribeToLogs_, context, request, reactor); -} - -::grpc::ClientAsyncReader< ::io::deephaven::proto::backplane::script::grpc::LogSubscriptionData>* ConsoleService::Stub::AsyncSubscribeToLogsRaw(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::script::grpc::LogSubscriptionRequest& request, ::grpc::CompletionQueue* cq, void* tag) { - return ::grpc::internal::ClientAsyncReaderFactory< ::io::deephaven::proto::backplane::script::grpc::LogSubscriptionData>::Create(channel_.get(), cq, rpcmethod_SubscribeToLogs_, context, request, true, tag); -} - -::grpc::ClientAsyncReader< ::io::deephaven::proto::backplane::script::grpc::LogSubscriptionData>* ConsoleService::Stub::PrepareAsyncSubscribeToLogsRaw(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::script::grpc::LogSubscriptionRequest& request, ::grpc::CompletionQueue* cq) { - return ::grpc::internal::ClientAsyncReaderFactory< ::io::deephaven::proto::backplane::script::grpc::LogSubscriptionData>::Create(channel_.get(), cq, rpcmethod_SubscribeToLogs_, context, request, false, nullptr); -} - -::grpc::Status ConsoleService::Stub::ExecuteCommand(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::script::grpc::ExecuteCommandRequest& request, ::io::deephaven::proto::backplane::script::grpc::ExecuteCommandResponse* response) { - return ::grpc::internal::BlockingUnaryCall< ::io::deephaven::proto::backplane::script::grpc::ExecuteCommandRequest, ::io::deephaven::proto::backplane::script::grpc::ExecuteCommandResponse, ::grpc::protobuf::MessageLite, ::grpc::protobuf::MessageLite>(channel_.get(), rpcmethod_ExecuteCommand_, context, request, response); -} - -void ConsoleService::Stub::async::ExecuteCommand(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::script::grpc::ExecuteCommandRequest* request, ::io::deephaven::proto::backplane::script::grpc::ExecuteCommandResponse* response, std::function f) { - ::grpc::internal::CallbackUnaryCall< ::io::deephaven::proto::backplane::script::grpc::ExecuteCommandRequest, ::io::deephaven::proto::backplane::script::grpc::ExecuteCommandResponse, ::grpc::protobuf::MessageLite, ::grpc::protobuf::MessageLite>(stub_->channel_.get(), stub_->rpcmethod_ExecuteCommand_, context, request, response, std::move(f)); -} - -void ConsoleService::Stub::async::ExecuteCommand(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::script::grpc::ExecuteCommandRequest* request, ::io::deephaven::proto::backplane::script::grpc::ExecuteCommandResponse* response, ::grpc::ClientUnaryReactor* reactor) { - ::grpc::internal::ClientCallbackUnaryFactory::Create< ::grpc::protobuf::MessageLite, ::grpc::protobuf::MessageLite>(stub_->channel_.get(), stub_->rpcmethod_ExecuteCommand_, context, request, response, reactor); -} - -::grpc::ClientAsyncResponseReader< ::io::deephaven::proto::backplane::script::grpc::ExecuteCommandResponse>* ConsoleService::Stub::PrepareAsyncExecuteCommandRaw(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::script::grpc::ExecuteCommandRequest& request, ::grpc::CompletionQueue* cq) { - return ::grpc::internal::ClientAsyncResponseReaderHelper::Create< ::io::deephaven::proto::backplane::script::grpc::ExecuteCommandResponse, ::io::deephaven::proto::backplane::script::grpc::ExecuteCommandRequest, ::grpc::protobuf::MessageLite, ::grpc::protobuf::MessageLite>(channel_.get(), cq, rpcmethod_ExecuteCommand_, context, request); -} - -::grpc::ClientAsyncResponseReader< ::io::deephaven::proto::backplane::script::grpc::ExecuteCommandResponse>* ConsoleService::Stub::AsyncExecuteCommandRaw(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::script::grpc::ExecuteCommandRequest& request, ::grpc::CompletionQueue* cq) { - auto* result = - this->PrepareAsyncExecuteCommandRaw(context, request, cq); - result->StartCall(); - return result; -} - -::grpc::Status ConsoleService::Stub::CancelCommand(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::script::grpc::CancelCommandRequest& request, ::io::deephaven::proto::backplane::script::grpc::CancelCommandResponse* response) { - return ::grpc::internal::BlockingUnaryCall< ::io::deephaven::proto::backplane::script::grpc::CancelCommandRequest, ::io::deephaven::proto::backplane::script::grpc::CancelCommandResponse, ::grpc::protobuf::MessageLite, ::grpc::protobuf::MessageLite>(channel_.get(), rpcmethod_CancelCommand_, context, request, response); -} - -void ConsoleService::Stub::async::CancelCommand(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::script::grpc::CancelCommandRequest* request, ::io::deephaven::proto::backplane::script::grpc::CancelCommandResponse* response, std::function f) { - ::grpc::internal::CallbackUnaryCall< ::io::deephaven::proto::backplane::script::grpc::CancelCommandRequest, ::io::deephaven::proto::backplane::script::grpc::CancelCommandResponse, ::grpc::protobuf::MessageLite, ::grpc::protobuf::MessageLite>(stub_->channel_.get(), stub_->rpcmethod_CancelCommand_, context, request, response, std::move(f)); -} - -void ConsoleService::Stub::async::CancelCommand(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::script::grpc::CancelCommandRequest* request, ::io::deephaven::proto::backplane::script::grpc::CancelCommandResponse* response, ::grpc::ClientUnaryReactor* reactor) { - ::grpc::internal::ClientCallbackUnaryFactory::Create< ::grpc::protobuf::MessageLite, ::grpc::protobuf::MessageLite>(stub_->channel_.get(), stub_->rpcmethod_CancelCommand_, context, request, response, reactor); -} - -::grpc::ClientAsyncResponseReader< ::io::deephaven::proto::backplane::script::grpc::CancelCommandResponse>* ConsoleService::Stub::PrepareAsyncCancelCommandRaw(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::script::grpc::CancelCommandRequest& request, ::grpc::CompletionQueue* cq) { - return ::grpc::internal::ClientAsyncResponseReaderHelper::Create< ::io::deephaven::proto::backplane::script::grpc::CancelCommandResponse, ::io::deephaven::proto::backplane::script::grpc::CancelCommandRequest, ::grpc::protobuf::MessageLite, ::grpc::protobuf::MessageLite>(channel_.get(), cq, rpcmethod_CancelCommand_, context, request); -} - -::grpc::ClientAsyncResponseReader< ::io::deephaven::proto::backplane::script::grpc::CancelCommandResponse>* ConsoleService::Stub::AsyncCancelCommandRaw(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::script::grpc::CancelCommandRequest& request, ::grpc::CompletionQueue* cq) { - auto* result = - this->PrepareAsyncCancelCommandRaw(context, request, cq); - result->StartCall(); - return result; -} - -::grpc::Status ConsoleService::Stub::BindTableToVariable(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::script::grpc::BindTableToVariableRequest& request, ::io::deephaven::proto::backplane::script::grpc::BindTableToVariableResponse* response) { - return ::grpc::internal::BlockingUnaryCall< ::io::deephaven::proto::backplane::script::grpc::BindTableToVariableRequest, ::io::deephaven::proto::backplane::script::grpc::BindTableToVariableResponse, ::grpc::protobuf::MessageLite, ::grpc::protobuf::MessageLite>(channel_.get(), rpcmethod_BindTableToVariable_, context, request, response); -} - -void ConsoleService::Stub::async::BindTableToVariable(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::script::grpc::BindTableToVariableRequest* request, ::io::deephaven::proto::backplane::script::grpc::BindTableToVariableResponse* response, std::function f) { - ::grpc::internal::CallbackUnaryCall< ::io::deephaven::proto::backplane::script::grpc::BindTableToVariableRequest, ::io::deephaven::proto::backplane::script::grpc::BindTableToVariableResponse, ::grpc::protobuf::MessageLite, ::grpc::protobuf::MessageLite>(stub_->channel_.get(), stub_->rpcmethod_BindTableToVariable_, context, request, response, std::move(f)); -} - -void ConsoleService::Stub::async::BindTableToVariable(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::script::grpc::BindTableToVariableRequest* request, ::io::deephaven::proto::backplane::script::grpc::BindTableToVariableResponse* response, ::grpc::ClientUnaryReactor* reactor) { - ::grpc::internal::ClientCallbackUnaryFactory::Create< ::grpc::protobuf::MessageLite, ::grpc::protobuf::MessageLite>(stub_->channel_.get(), stub_->rpcmethod_BindTableToVariable_, context, request, response, reactor); -} - -::grpc::ClientAsyncResponseReader< ::io::deephaven::proto::backplane::script::grpc::BindTableToVariableResponse>* ConsoleService::Stub::PrepareAsyncBindTableToVariableRaw(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::script::grpc::BindTableToVariableRequest& request, ::grpc::CompletionQueue* cq) { - return ::grpc::internal::ClientAsyncResponseReaderHelper::Create< ::io::deephaven::proto::backplane::script::grpc::BindTableToVariableResponse, ::io::deephaven::proto::backplane::script::grpc::BindTableToVariableRequest, ::grpc::protobuf::MessageLite, ::grpc::protobuf::MessageLite>(channel_.get(), cq, rpcmethod_BindTableToVariable_, context, request); -} - -::grpc::ClientAsyncResponseReader< ::io::deephaven::proto::backplane::script::grpc::BindTableToVariableResponse>* ConsoleService::Stub::AsyncBindTableToVariableRaw(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::script::grpc::BindTableToVariableRequest& request, ::grpc::CompletionQueue* cq) { - auto* result = - this->PrepareAsyncBindTableToVariableRaw(context, request, cq); - result->StartCall(); - return result; -} - -::grpc::ClientReaderWriter< ::io::deephaven::proto::backplane::script::grpc::AutoCompleteRequest, ::io::deephaven::proto::backplane::script::grpc::AutoCompleteResponse>* ConsoleService::Stub::AutoCompleteStreamRaw(::grpc::ClientContext* context) { - return ::grpc::internal::ClientReaderWriterFactory< ::io::deephaven::proto::backplane::script::grpc::AutoCompleteRequest, ::io::deephaven::proto::backplane::script::grpc::AutoCompleteResponse>::Create(channel_.get(), rpcmethod_AutoCompleteStream_, context); -} - -void ConsoleService::Stub::async::AutoCompleteStream(::grpc::ClientContext* context, ::grpc::ClientBidiReactor< ::io::deephaven::proto::backplane::script::grpc::AutoCompleteRequest,::io::deephaven::proto::backplane::script::grpc::AutoCompleteResponse>* reactor) { - ::grpc::internal::ClientCallbackReaderWriterFactory< ::io::deephaven::proto::backplane::script::grpc::AutoCompleteRequest,::io::deephaven::proto::backplane::script::grpc::AutoCompleteResponse>::Create(stub_->channel_.get(), stub_->rpcmethod_AutoCompleteStream_, context, reactor); -} - -::grpc::ClientAsyncReaderWriter< ::io::deephaven::proto::backplane::script::grpc::AutoCompleteRequest, ::io::deephaven::proto::backplane::script::grpc::AutoCompleteResponse>* ConsoleService::Stub::AsyncAutoCompleteStreamRaw(::grpc::ClientContext* context, ::grpc::CompletionQueue* cq, void* tag) { - return ::grpc::internal::ClientAsyncReaderWriterFactory< ::io::deephaven::proto::backplane::script::grpc::AutoCompleteRequest, ::io::deephaven::proto::backplane::script::grpc::AutoCompleteResponse>::Create(channel_.get(), cq, rpcmethod_AutoCompleteStream_, context, true, tag); -} - -::grpc::ClientAsyncReaderWriter< ::io::deephaven::proto::backplane::script::grpc::AutoCompleteRequest, ::io::deephaven::proto::backplane::script::grpc::AutoCompleteResponse>* ConsoleService::Stub::PrepareAsyncAutoCompleteStreamRaw(::grpc::ClientContext* context, ::grpc::CompletionQueue* cq) { - return ::grpc::internal::ClientAsyncReaderWriterFactory< ::io::deephaven::proto::backplane::script::grpc::AutoCompleteRequest, ::io::deephaven::proto::backplane::script::grpc::AutoCompleteResponse>::Create(channel_.get(), cq, rpcmethod_AutoCompleteStream_, context, false, nullptr); -} - -::grpc::Status ConsoleService::Stub::CancelAutoComplete(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::script::grpc::CancelAutoCompleteRequest& request, ::io::deephaven::proto::backplane::script::grpc::CancelAutoCompleteResponse* response) { - return ::grpc::internal::BlockingUnaryCall< ::io::deephaven::proto::backplane::script::grpc::CancelAutoCompleteRequest, ::io::deephaven::proto::backplane::script::grpc::CancelAutoCompleteResponse, ::grpc::protobuf::MessageLite, ::grpc::protobuf::MessageLite>(channel_.get(), rpcmethod_CancelAutoComplete_, context, request, response); -} - -void ConsoleService::Stub::async::CancelAutoComplete(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::script::grpc::CancelAutoCompleteRequest* request, ::io::deephaven::proto::backplane::script::grpc::CancelAutoCompleteResponse* response, std::function f) { - ::grpc::internal::CallbackUnaryCall< ::io::deephaven::proto::backplane::script::grpc::CancelAutoCompleteRequest, ::io::deephaven::proto::backplane::script::grpc::CancelAutoCompleteResponse, ::grpc::protobuf::MessageLite, ::grpc::protobuf::MessageLite>(stub_->channel_.get(), stub_->rpcmethod_CancelAutoComplete_, context, request, response, std::move(f)); -} - -void ConsoleService::Stub::async::CancelAutoComplete(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::script::grpc::CancelAutoCompleteRequest* request, ::io::deephaven::proto::backplane::script::grpc::CancelAutoCompleteResponse* response, ::grpc::ClientUnaryReactor* reactor) { - ::grpc::internal::ClientCallbackUnaryFactory::Create< ::grpc::protobuf::MessageLite, ::grpc::protobuf::MessageLite>(stub_->channel_.get(), stub_->rpcmethod_CancelAutoComplete_, context, request, response, reactor); -} - -::grpc::ClientAsyncResponseReader< ::io::deephaven::proto::backplane::script::grpc::CancelAutoCompleteResponse>* ConsoleService::Stub::PrepareAsyncCancelAutoCompleteRaw(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::script::grpc::CancelAutoCompleteRequest& request, ::grpc::CompletionQueue* cq) { - return ::grpc::internal::ClientAsyncResponseReaderHelper::Create< ::io::deephaven::proto::backplane::script::grpc::CancelAutoCompleteResponse, ::io::deephaven::proto::backplane::script::grpc::CancelAutoCompleteRequest, ::grpc::protobuf::MessageLite, ::grpc::protobuf::MessageLite>(channel_.get(), cq, rpcmethod_CancelAutoComplete_, context, request); -} - -::grpc::ClientAsyncResponseReader< ::io::deephaven::proto::backplane::script::grpc::CancelAutoCompleteResponse>* ConsoleService::Stub::AsyncCancelAutoCompleteRaw(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::script::grpc::CancelAutoCompleteRequest& request, ::grpc::CompletionQueue* cq) { - auto* result = - this->PrepareAsyncCancelAutoCompleteRaw(context, request, cq); - result->StartCall(); - return result; -} - -::grpc::ClientReader< ::io::deephaven::proto::backplane::script::grpc::AutoCompleteResponse>* ConsoleService::Stub::OpenAutoCompleteStreamRaw(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::script::grpc::AutoCompleteRequest& request) { - return ::grpc::internal::ClientReaderFactory< ::io::deephaven::proto::backplane::script::grpc::AutoCompleteResponse>::Create(channel_.get(), rpcmethod_OpenAutoCompleteStream_, context, request); -} - -void ConsoleService::Stub::async::OpenAutoCompleteStream(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::script::grpc::AutoCompleteRequest* request, ::grpc::ClientReadReactor< ::io::deephaven::proto::backplane::script::grpc::AutoCompleteResponse>* reactor) { - ::grpc::internal::ClientCallbackReaderFactory< ::io::deephaven::proto::backplane::script::grpc::AutoCompleteResponse>::Create(stub_->channel_.get(), stub_->rpcmethod_OpenAutoCompleteStream_, context, request, reactor); -} - -::grpc::ClientAsyncReader< ::io::deephaven::proto::backplane::script::grpc::AutoCompleteResponse>* ConsoleService::Stub::AsyncOpenAutoCompleteStreamRaw(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::script::grpc::AutoCompleteRequest& request, ::grpc::CompletionQueue* cq, void* tag) { - return ::grpc::internal::ClientAsyncReaderFactory< ::io::deephaven::proto::backplane::script::grpc::AutoCompleteResponse>::Create(channel_.get(), cq, rpcmethod_OpenAutoCompleteStream_, context, request, true, tag); -} - -::grpc::ClientAsyncReader< ::io::deephaven::proto::backplane::script::grpc::AutoCompleteResponse>* ConsoleService::Stub::PrepareAsyncOpenAutoCompleteStreamRaw(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::script::grpc::AutoCompleteRequest& request, ::grpc::CompletionQueue* cq) { - return ::grpc::internal::ClientAsyncReaderFactory< ::io::deephaven::proto::backplane::script::grpc::AutoCompleteResponse>::Create(channel_.get(), cq, rpcmethod_OpenAutoCompleteStream_, context, request, false, nullptr); -} - -::grpc::Status ConsoleService::Stub::NextAutoCompleteStream(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::script::grpc::AutoCompleteRequest& request, ::io::deephaven::proto::backplane::script::grpc::BrowserNextResponse* response) { - return ::grpc::internal::BlockingUnaryCall< ::io::deephaven::proto::backplane::script::grpc::AutoCompleteRequest, ::io::deephaven::proto::backplane::script::grpc::BrowserNextResponse, ::grpc::protobuf::MessageLite, ::grpc::protobuf::MessageLite>(channel_.get(), rpcmethod_NextAutoCompleteStream_, context, request, response); -} - -void ConsoleService::Stub::async::NextAutoCompleteStream(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::script::grpc::AutoCompleteRequest* request, ::io::deephaven::proto::backplane::script::grpc::BrowserNextResponse* response, std::function f) { - ::grpc::internal::CallbackUnaryCall< ::io::deephaven::proto::backplane::script::grpc::AutoCompleteRequest, ::io::deephaven::proto::backplane::script::grpc::BrowserNextResponse, ::grpc::protobuf::MessageLite, ::grpc::protobuf::MessageLite>(stub_->channel_.get(), stub_->rpcmethod_NextAutoCompleteStream_, context, request, response, std::move(f)); -} - -void ConsoleService::Stub::async::NextAutoCompleteStream(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::script::grpc::AutoCompleteRequest* request, ::io::deephaven::proto::backplane::script::grpc::BrowserNextResponse* response, ::grpc::ClientUnaryReactor* reactor) { - ::grpc::internal::ClientCallbackUnaryFactory::Create< ::grpc::protobuf::MessageLite, ::grpc::protobuf::MessageLite>(stub_->channel_.get(), stub_->rpcmethod_NextAutoCompleteStream_, context, request, response, reactor); -} - -::grpc::ClientAsyncResponseReader< ::io::deephaven::proto::backplane::script::grpc::BrowserNextResponse>* ConsoleService::Stub::PrepareAsyncNextAutoCompleteStreamRaw(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::script::grpc::AutoCompleteRequest& request, ::grpc::CompletionQueue* cq) { - return ::grpc::internal::ClientAsyncResponseReaderHelper::Create< ::io::deephaven::proto::backplane::script::grpc::BrowserNextResponse, ::io::deephaven::proto::backplane::script::grpc::AutoCompleteRequest, ::grpc::protobuf::MessageLite, ::grpc::protobuf::MessageLite>(channel_.get(), cq, rpcmethod_NextAutoCompleteStream_, context, request); -} - -::grpc::ClientAsyncResponseReader< ::io::deephaven::proto::backplane::script::grpc::BrowserNextResponse>* ConsoleService::Stub::AsyncNextAutoCompleteStreamRaw(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::script::grpc::AutoCompleteRequest& request, ::grpc::CompletionQueue* cq) { - auto* result = - this->PrepareAsyncNextAutoCompleteStreamRaw(context, request, cq); - result->StartCall(); - return result; -} - -ConsoleService::Service::Service() { - AddMethod(new ::grpc::internal::RpcServiceMethod( - ConsoleService_method_names[0], - ::grpc::internal::RpcMethod::NORMAL_RPC, - new ::grpc::internal::RpcMethodHandler< ConsoleService::Service, ::io::deephaven::proto::backplane::script::grpc::GetConsoleTypesRequest, ::io::deephaven::proto::backplane::script::grpc::GetConsoleTypesResponse, ::grpc::protobuf::MessageLite, ::grpc::protobuf::MessageLite>( - [](ConsoleService::Service* service, - ::grpc::ServerContext* ctx, - const ::io::deephaven::proto::backplane::script::grpc::GetConsoleTypesRequest* req, - ::io::deephaven::proto::backplane::script::grpc::GetConsoleTypesResponse* resp) { - return service->GetConsoleTypes(ctx, req, resp); - }, this))); - AddMethod(new ::grpc::internal::RpcServiceMethod( - ConsoleService_method_names[1], - ::grpc::internal::RpcMethod::NORMAL_RPC, - new ::grpc::internal::RpcMethodHandler< ConsoleService::Service, ::io::deephaven::proto::backplane::script::grpc::StartConsoleRequest, ::io::deephaven::proto::backplane::script::grpc::StartConsoleResponse, ::grpc::protobuf::MessageLite, ::grpc::protobuf::MessageLite>( - [](ConsoleService::Service* service, - ::grpc::ServerContext* ctx, - const ::io::deephaven::proto::backplane::script::grpc::StartConsoleRequest* req, - ::io::deephaven::proto::backplane::script::grpc::StartConsoleResponse* resp) { - return service->StartConsole(ctx, req, resp); - }, this))); - AddMethod(new ::grpc::internal::RpcServiceMethod( - ConsoleService_method_names[2], - ::grpc::internal::RpcMethod::NORMAL_RPC, - new ::grpc::internal::RpcMethodHandler< ConsoleService::Service, ::io::deephaven::proto::backplane::script::grpc::GetHeapInfoRequest, ::io::deephaven::proto::backplane::script::grpc::GetHeapInfoResponse, ::grpc::protobuf::MessageLite, ::grpc::protobuf::MessageLite>( - [](ConsoleService::Service* service, - ::grpc::ServerContext* ctx, - const ::io::deephaven::proto::backplane::script::grpc::GetHeapInfoRequest* req, - ::io::deephaven::proto::backplane::script::grpc::GetHeapInfoResponse* resp) { - return service->GetHeapInfo(ctx, req, resp); - }, this))); - AddMethod(new ::grpc::internal::RpcServiceMethod( - ConsoleService_method_names[3], - ::grpc::internal::RpcMethod::SERVER_STREAMING, - new ::grpc::internal::ServerStreamingHandler< ConsoleService::Service, ::io::deephaven::proto::backplane::script::grpc::LogSubscriptionRequest, ::io::deephaven::proto::backplane::script::grpc::LogSubscriptionData>( - [](ConsoleService::Service* service, - ::grpc::ServerContext* ctx, - const ::io::deephaven::proto::backplane::script::grpc::LogSubscriptionRequest* req, - ::grpc::ServerWriter<::io::deephaven::proto::backplane::script::grpc::LogSubscriptionData>* writer) { - return service->SubscribeToLogs(ctx, req, writer); - }, this))); - AddMethod(new ::grpc::internal::RpcServiceMethod( - ConsoleService_method_names[4], - ::grpc::internal::RpcMethod::NORMAL_RPC, - new ::grpc::internal::RpcMethodHandler< ConsoleService::Service, ::io::deephaven::proto::backplane::script::grpc::ExecuteCommandRequest, ::io::deephaven::proto::backplane::script::grpc::ExecuteCommandResponse, ::grpc::protobuf::MessageLite, ::grpc::protobuf::MessageLite>( - [](ConsoleService::Service* service, - ::grpc::ServerContext* ctx, - const ::io::deephaven::proto::backplane::script::grpc::ExecuteCommandRequest* req, - ::io::deephaven::proto::backplane::script::grpc::ExecuteCommandResponse* resp) { - return service->ExecuteCommand(ctx, req, resp); - }, this))); - AddMethod(new ::grpc::internal::RpcServiceMethod( - ConsoleService_method_names[5], - ::grpc::internal::RpcMethod::NORMAL_RPC, - new ::grpc::internal::RpcMethodHandler< ConsoleService::Service, ::io::deephaven::proto::backplane::script::grpc::CancelCommandRequest, ::io::deephaven::proto::backplane::script::grpc::CancelCommandResponse, ::grpc::protobuf::MessageLite, ::grpc::protobuf::MessageLite>( - [](ConsoleService::Service* service, - ::grpc::ServerContext* ctx, - const ::io::deephaven::proto::backplane::script::grpc::CancelCommandRequest* req, - ::io::deephaven::proto::backplane::script::grpc::CancelCommandResponse* resp) { - return service->CancelCommand(ctx, req, resp); - }, this))); - AddMethod(new ::grpc::internal::RpcServiceMethod( - ConsoleService_method_names[6], - ::grpc::internal::RpcMethod::NORMAL_RPC, - new ::grpc::internal::RpcMethodHandler< ConsoleService::Service, ::io::deephaven::proto::backplane::script::grpc::BindTableToVariableRequest, ::io::deephaven::proto::backplane::script::grpc::BindTableToVariableResponse, ::grpc::protobuf::MessageLite, ::grpc::protobuf::MessageLite>( - [](ConsoleService::Service* service, - ::grpc::ServerContext* ctx, - const ::io::deephaven::proto::backplane::script::grpc::BindTableToVariableRequest* req, - ::io::deephaven::proto::backplane::script::grpc::BindTableToVariableResponse* resp) { - return service->BindTableToVariable(ctx, req, resp); - }, this))); - AddMethod(new ::grpc::internal::RpcServiceMethod( - ConsoleService_method_names[7], - ::grpc::internal::RpcMethod::BIDI_STREAMING, - new ::grpc::internal::BidiStreamingHandler< ConsoleService::Service, ::io::deephaven::proto::backplane::script::grpc::AutoCompleteRequest, ::io::deephaven::proto::backplane::script::grpc::AutoCompleteResponse>( - [](ConsoleService::Service* service, - ::grpc::ServerContext* ctx, - ::grpc::ServerReaderWriter<::io::deephaven::proto::backplane::script::grpc::AutoCompleteResponse, - ::io::deephaven::proto::backplane::script::grpc::AutoCompleteRequest>* stream) { - return service->AutoCompleteStream(ctx, stream); - }, this))); - AddMethod(new ::grpc::internal::RpcServiceMethod( - ConsoleService_method_names[8], - ::grpc::internal::RpcMethod::NORMAL_RPC, - new ::grpc::internal::RpcMethodHandler< ConsoleService::Service, ::io::deephaven::proto::backplane::script::grpc::CancelAutoCompleteRequest, ::io::deephaven::proto::backplane::script::grpc::CancelAutoCompleteResponse, ::grpc::protobuf::MessageLite, ::grpc::protobuf::MessageLite>( - [](ConsoleService::Service* service, - ::grpc::ServerContext* ctx, - const ::io::deephaven::proto::backplane::script::grpc::CancelAutoCompleteRequest* req, - ::io::deephaven::proto::backplane::script::grpc::CancelAutoCompleteResponse* resp) { - return service->CancelAutoComplete(ctx, req, resp); - }, this))); - AddMethod(new ::grpc::internal::RpcServiceMethod( - ConsoleService_method_names[9], - ::grpc::internal::RpcMethod::SERVER_STREAMING, - new ::grpc::internal::ServerStreamingHandler< ConsoleService::Service, ::io::deephaven::proto::backplane::script::grpc::AutoCompleteRequest, ::io::deephaven::proto::backplane::script::grpc::AutoCompleteResponse>( - [](ConsoleService::Service* service, - ::grpc::ServerContext* ctx, - const ::io::deephaven::proto::backplane::script::grpc::AutoCompleteRequest* req, - ::grpc::ServerWriter<::io::deephaven::proto::backplane::script::grpc::AutoCompleteResponse>* writer) { - return service->OpenAutoCompleteStream(ctx, req, writer); - }, this))); - AddMethod(new ::grpc::internal::RpcServiceMethod( - ConsoleService_method_names[10], - ::grpc::internal::RpcMethod::NORMAL_RPC, - new ::grpc::internal::RpcMethodHandler< ConsoleService::Service, ::io::deephaven::proto::backplane::script::grpc::AutoCompleteRequest, ::io::deephaven::proto::backplane::script::grpc::BrowserNextResponse, ::grpc::protobuf::MessageLite, ::grpc::protobuf::MessageLite>( - [](ConsoleService::Service* service, - ::grpc::ServerContext* ctx, - const ::io::deephaven::proto::backplane::script::grpc::AutoCompleteRequest* req, - ::io::deephaven::proto::backplane::script::grpc::BrowserNextResponse* resp) { - return service->NextAutoCompleteStream(ctx, req, resp); - }, this))); -} - -ConsoleService::Service::~Service() { -} - -::grpc::Status ConsoleService::Service::GetConsoleTypes(::grpc::ServerContext* context, const ::io::deephaven::proto::backplane::script::grpc::GetConsoleTypesRequest* request, ::io::deephaven::proto::backplane::script::grpc::GetConsoleTypesResponse* response) { - (void) context; - (void) request; - (void) response; - return ::grpc::Status(::grpc::StatusCode::UNIMPLEMENTED, ""); -} - -::grpc::Status ConsoleService::Service::StartConsole(::grpc::ServerContext* context, const ::io::deephaven::proto::backplane::script::grpc::StartConsoleRequest* request, ::io::deephaven::proto::backplane::script::grpc::StartConsoleResponse* response) { - (void) context; - (void) request; - (void) response; - return ::grpc::Status(::grpc::StatusCode::UNIMPLEMENTED, ""); -} - -::grpc::Status ConsoleService::Service::GetHeapInfo(::grpc::ServerContext* context, const ::io::deephaven::proto::backplane::script::grpc::GetHeapInfoRequest* request, ::io::deephaven::proto::backplane::script::grpc::GetHeapInfoResponse* response) { - (void) context; - (void) request; - (void) response; - return ::grpc::Status(::grpc::StatusCode::UNIMPLEMENTED, ""); -} - -::grpc::Status ConsoleService::Service::SubscribeToLogs(::grpc::ServerContext* context, const ::io::deephaven::proto::backplane::script::grpc::LogSubscriptionRequest* request, ::grpc::ServerWriter< ::io::deephaven::proto::backplane::script::grpc::LogSubscriptionData>* writer) { - (void) context; - (void) request; - (void) writer; - return ::grpc::Status(::grpc::StatusCode::UNIMPLEMENTED, ""); -} - -::grpc::Status ConsoleService::Service::ExecuteCommand(::grpc::ServerContext* context, const ::io::deephaven::proto::backplane::script::grpc::ExecuteCommandRequest* request, ::io::deephaven::proto::backplane::script::grpc::ExecuteCommandResponse* response) { - (void) context; - (void) request; - (void) response; - return ::grpc::Status(::grpc::StatusCode::UNIMPLEMENTED, ""); -} - -::grpc::Status ConsoleService::Service::CancelCommand(::grpc::ServerContext* context, const ::io::deephaven::proto::backplane::script::grpc::CancelCommandRequest* request, ::io::deephaven::proto::backplane::script::grpc::CancelCommandResponse* response) { - (void) context; - (void) request; - (void) response; - return ::grpc::Status(::grpc::StatusCode::UNIMPLEMENTED, ""); -} - -::grpc::Status ConsoleService::Service::BindTableToVariable(::grpc::ServerContext* context, const ::io::deephaven::proto::backplane::script::grpc::BindTableToVariableRequest* request, ::io::deephaven::proto::backplane::script::grpc::BindTableToVariableResponse* response) { - (void) context; - (void) request; - (void) response; - return ::grpc::Status(::grpc::StatusCode::UNIMPLEMENTED, ""); -} - -::grpc::Status ConsoleService::Service::AutoCompleteStream(::grpc::ServerContext* context, ::grpc::ServerReaderWriter< ::io::deephaven::proto::backplane::script::grpc::AutoCompleteResponse, ::io::deephaven::proto::backplane::script::grpc::AutoCompleteRequest>* stream) { - (void) context; - (void) stream; - return ::grpc::Status(::grpc::StatusCode::UNIMPLEMENTED, ""); -} - -::grpc::Status ConsoleService::Service::CancelAutoComplete(::grpc::ServerContext* context, const ::io::deephaven::proto::backplane::script::grpc::CancelAutoCompleteRequest* request, ::io::deephaven::proto::backplane::script::grpc::CancelAutoCompleteResponse* response) { - (void) context; - (void) request; - (void) response; - return ::grpc::Status(::grpc::StatusCode::UNIMPLEMENTED, ""); -} - -::grpc::Status ConsoleService::Service::OpenAutoCompleteStream(::grpc::ServerContext* context, const ::io::deephaven::proto::backplane::script::grpc::AutoCompleteRequest* request, ::grpc::ServerWriter< ::io::deephaven::proto::backplane::script::grpc::AutoCompleteResponse>* writer) { - (void) context; - (void) request; - (void) writer; - return ::grpc::Status(::grpc::StatusCode::UNIMPLEMENTED, ""); -} - -::grpc::Status ConsoleService::Service::NextAutoCompleteStream(::grpc::ServerContext* context, const ::io::deephaven::proto::backplane::script::grpc::AutoCompleteRequest* request, ::io::deephaven::proto::backplane::script::grpc::BrowserNextResponse* response) { - (void) context; - (void) request; - (void) response; - return ::grpc::Status(::grpc::StatusCode::UNIMPLEMENTED, ""); -} - - -} // namespace io -} // namespace deephaven -} // namespace proto -} // namespace backplane -} // namespace script -} // namespace grpc - diff --git a/cpp-client/deephaven/dhclient/proto/deephaven/proto/console.grpc.pb.h b/cpp-client/deephaven/dhclient/proto/deephaven/proto/console.grpc.pb.h deleted file mode 100644 index 57506fedee5..00000000000 --- a/cpp-client/deephaven/dhclient/proto/deephaven/proto/console.grpc.pb.h +++ /dev/null @@ -1,1827 +0,0 @@ -// Generated by the gRPC C++ plugin. -// If you make any local change, they will be lost. -// source: deephaven/proto/console.proto -// Original file comments: -// -// Copyright (c) 2016-2022 Deephaven Data Labs and Patent Pending -#ifndef GRPC_deephaven_2fproto_2fconsole_2eproto__INCLUDED -#define GRPC_deephaven_2fproto_2fconsole_2eproto__INCLUDED - -#include "deephaven/proto/console.pb.h" - -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include - -namespace io { -namespace deephaven { -namespace proto { -namespace backplane { -namespace script { -namespace grpc { - -// -// Console interaction service -class ConsoleService final { - public: - static constexpr char const* service_full_name() { - return "io.deephaven.proto.backplane.script.grpc.ConsoleService"; - } - class StubInterface { - public: - virtual ~StubInterface() {} - virtual ::grpc::Status GetConsoleTypes(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::script::grpc::GetConsoleTypesRequest& request, ::io::deephaven::proto::backplane::script::grpc::GetConsoleTypesResponse* response) = 0; - std::unique_ptr< ::grpc::ClientAsyncResponseReaderInterface< ::io::deephaven::proto::backplane::script::grpc::GetConsoleTypesResponse>> AsyncGetConsoleTypes(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::script::grpc::GetConsoleTypesRequest& request, ::grpc::CompletionQueue* cq) { - return std::unique_ptr< ::grpc::ClientAsyncResponseReaderInterface< ::io::deephaven::proto::backplane::script::grpc::GetConsoleTypesResponse>>(AsyncGetConsoleTypesRaw(context, request, cq)); - } - std::unique_ptr< ::grpc::ClientAsyncResponseReaderInterface< ::io::deephaven::proto::backplane::script::grpc::GetConsoleTypesResponse>> PrepareAsyncGetConsoleTypes(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::script::grpc::GetConsoleTypesRequest& request, ::grpc::CompletionQueue* cq) { - return std::unique_ptr< ::grpc::ClientAsyncResponseReaderInterface< ::io::deephaven::proto::backplane::script::grpc::GetConsoleTypesResponse>>(PrepareAsyncGetConsoleTypesRaw(context, request, cq)); - } - virtual ::grpc::Status StartConsole(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::script::grpc::StartConsoleRequest& request, ::io::deephaven::proto::backplane::script::grpc::StartConsoleResponse* response) = 0; - std::unique_ptr< ::grpc::ClientAsyncResponseReaderInterface< ::io::deephaven::proto::backplane::script::grpc::StartConsoleResponse>> AsyncStartConsole(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::script::grpc::StartConsoleRequest& request, ::grpc::CompletionQueue* cq) { - return std::unique_ptr< ::grpc::ClientAsyncResponseReaderInterface< ::io::deephaven::proto::backplane::script::grpc::StartConsoleResponse>>(AsyncStartConsoleRaw(context, request, cq)); - } - std::unique_ptr< ::grpc::ClientAsyncResponseReaderInterface< ::io::deephaven::proto::backplane::script::grpc::StartConsoleResponse>> PrepareAsyncStartConsole(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::script::grpc::StartConsoleRequest& request, ::grpc::CompletionQueue* cq) { - return std::unique_ptr< ::grpc::ClientAsyncResponseReaderInterface< ::io::deephaven::proto::backplane::script::grpc::StartConsoleResponse>>(PrepareAsyncStartConsoleRaw(context, request, cq)); - } - virtual ::grpc::Status GetHeapInfo(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::script::grpc::GetHeapInfoRequest& request, ::io::deephaven::proto::backplane::script::grpc::GetHeapInfoResponse* response) = 0; - std::unique_ptr< ::grpc::ClientAsyncResponseReaderInterface< ::io::deephaven::proto::backplane::script::grpc::GetHeapInfoResponse>> AsyncGetHeapInfo(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::script::grpc::GetHeapInfoRequest& request, ::grpc::CompletionQueue* cq) { - return std::unique_ptr< ::grpc::ClientAsyncResponseReaderInterface< ::io::deephaven::proto::backplane::script::grpc::GetHeapInfoResponse>>(AsyncGetHeapInfoRaw(context, request, cq)); - } - std::unique_ptr< ::grpc::ClientAsyncResponseReaderInterface< ::io::deephaven::proto::backplane::script::grpc::GetHeapInfoResponse>> PrepareAsyncGetHeapInfo(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::script::grpc::GetHeapInfoRequest& request, ::grpc::CompletionQueue* cq) { - return std::unique_ptr< ::grpc::ClientAsyncResponseReaderInterface< ::io::deephaven::proto::backplane::script::grpc::GetHeapInfoResponse>>(PrepareAsyncGetHeapInfoRaw(context, request, cq)); - } - std::unique_ptr< ::grpc::ClientReaderInterface< ::io::deephaven::proto::backplane::script::grpc::LogSubscriptionData>> SubscribeToLogs(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::script::grpc::LogSubscriptionRequest& request) { - return std::unique_ptr< ::grpc::ClientReaderInterface< ::io::deephaven::proto::backplane::script::grpc::LogSubscriptionData>>(SubscribeToLogsRaw(context, request)); - } - std::unique_ptr< ::grpc::ClientAsyncReaderInterface< ::io::deephaven::proto::backplane::script::grpc::LogSubscriptionData>> AsyncSubscribeToLogs(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::script::grpc::LogSubscriptionRequest& request, ::grpc::CompletionQueue* cq, void* tag) { - return std::unique_ptr< ::grpc::ClientAsyncReaderInterface< ::io::deephaven::proto::backplane::script::grpc::LogSubscriptionData>>(AsyncSubscribeToLogsRaw(context, request, cq, tag)); - } - std::unique_ptr< ::grpc::ClientAsyncReaderInterface< ::io::deephaven::proto::backplane::script::grpc::LogSubscriptionData>> PrepareAsyncSubscribeToLogs(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::script::grpc::LogSubscriptionRequest& request, ::grpc::CompletionQueue* cq) { - return std::unique_ptr< ::grpc::ClientAsyncReaderInterface< ::io::deephaven::proto::backplane::script::grpc::LogSubscriptionData>>(PrepareAsyncSubscribeToLogsRaw(context, request, cq)); - } - virtual ::grpc::Status ExecuteCommand(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::script::grpc::ExecuteCommandRequest& request, ::io::deephaven::proto::backplane::script::grpc::ExecuteCommandResponse* response) = 0; - std::unique_ptr< ::grpc::ClientAsyncResponseReaderInterface< ::io::deephaven::proto::backplane::script::grpc::ExecuteCommandResponse>> AsyncExecuteCommand(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::script::grpc::ExecuteCommandRequest& request, ::grpc::CompletionQueue* cq) { - return std::unique_ptr< ::grpc::ClientAsyncResponseReaderInterface< ::io::deephaven::proto::backplane::script::grpc::ExecuteCommandResponse>>(AsyncExecuteCommandRaw(context, request, cq)); - } - std::unique_ptr< ::grpc::ClientAsyncResponseReaderInterface< ::io::deephaven::proto::backplane::script::grpc::ExecuteCommandResponse>> PrepareAsyncExecuteCommand(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::script::grpc::ExecuteCommandRequest& request, ::grpc::CompletionQueue* cq) { - return std::unique_ptr< ::grpc::ClientAsyncResponseReaderInterface< ::io::deephaven::proto::backplane::script::grpc::ExecuteCommandResponse>>(PrepareAsyncExecuteCommandRaw(context, request, cq)); - } - virtual ::grpc::Status CancelCommand(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::script::grpc::CancelCommandRequest& request, ::io::deephaven::proto::backplane::script::grpc::CancelCommandResponse* response) = 0; - std::unique_ptr< ::grpc::ClientAsyncResponseReaderInterface< ::io::deephaven::proto::backplane::script::grpc::CancelCommandResponse>> AsyncCancelCommand(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::script::grpc::CancelCommandRequest& request, ::grpc::CompletionQueue* cq) { - return std::unique_ptr< ::grpc::ClientAsyncResponseReaderInterface< ::io::deephaven::proto::backplane::script::grpc::CancelCommandResponse>>(AsyncCancelCommandRaw(context, request, cq)); - } - std::unique_ptr< ::grpc::ClientAsyncResponseReaderInterface< ::io::deephaven::proto::backplane::script::grpc::CancelCommandResponse>> PrepareAsyncCancelCommand(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::script::grpc::CancelCommandRequest& request, ::grpc::CompletionQueue* cq) { - return std::unique_ptr< ::grpc::ClientAsyncResponseReaderInterface< ::io::deephaven::proto::backplane::script::grpc::CancelCommandResponse>>(PrepareAsyncCancelCommandRaw(context, request, cq)); - } - virtual ::grpc::Status BindTableToVariable(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::script::grpc::BindTableToVariableRequest& request, ::io::deephaven::proto::backplane::script::grpc::BindTableToVariableResponse* response) = 0; - std::unique_ptr< ::grpc::ClientAsyncResponseReaderInterface< ::io::deephaven::proto::backplane::script::grpc::BindTableToVariableResponse>> AsyncBindTableToVariable(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::script::grpc::BindTableToVariableRequest& request, ::grpc::CompletionQueue* cq) { - return std::unique_ptr< ::grpc::ClientAsyncResponseReaderInterface< ::io::deephaven::proto::backplane::script::grpc::BindTableToVariableResponse>>(AsyncBindTableToVariableRaw(context, request, cq)); - } - std::unique_ptr< ::grpc::ClientAsyncResponseReaderInterface< ::io::deephaven::proto::backplane::script::grpc::BindTableToVariableResponse>> PrepareAsyncBindTableToVariable(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::script::grpc::BindTableToVariableRequest& request, ::grpc::CompletionQueue* cq) { - return std::unique_ptr< ::grpc::ClientAsyncResponseReaderInterface< ::io::deephaven::proto::backplane::script::grpc::BindTableToVariableResponse>>(PrepareAsyncBindTableToVariableRaw(context, request, cq)); - } - // - // Starts a stream for autocomplete on the current session. More than one console, - // more than one document can be edited at a time using this, and they can separately - // be closed as well. A given document should only be edited within one stream at a - // time. - std::unique_ptr< ::grpc::ClientReaderWriterInterface< ::io::deephaven::proto::backplane::script::grpc::AutoCompleteRequest, ::io::deephaven::proto::backplane::script::grpc::AutoCompleteResponse>> AutoCompleteStream(::grpc::ClientContext* context) { - return std::unique_ptr< ::grpc::ClientReaderWriterInterface< ::io::deephaven::proto::backplane::script::grpc::AutoCompleteRequest, ::io::deephaven::proto::backplane::script::grpc::AutoCompleteResponse>>(AutoCompleteStreamRaw(context)); - } - std::unique_ptr< ::grpc::ClientAsyncReaderWriterInterface< ::io::deephaven::proto::backplane::script::grpc::AutoCompleteRequest, ::io::deephaven::proto::backplane::script::grpc::AutoCompleteResponse>> AsyncAutoCompleteStream(::grpc::ClientContext* context, ::grpc::CompletionQueue* cq, void* tag) { - return std::unique_ptr< ::grpc::ClientAsyncReaderWriterInterface< ::io::deephaven::proto::backplane::script::grpc::AutoCompleteRequest, ::io::deephaven::proto::backplane::script::grpc::AutoCompleteResponse>>(AsyncAutoCompleteStreamRaw(context, cq, tag)); - } - std::unique_ptr< ::grpc::ClientAsyncReaderWriterInterface< ::io::deephaven::proto::backplane::script::grpc::AutoCompleteRequest, ::io::deephaven::proto::backplane::script::grpc::AutoCompleteResponse>> PrepareAsyncAutoCompleteStream(::grpc::ClientContext* context, ::grpc::CompletionQueue* cq) { - return std::unique_ptr< ::grpc::ClientAsyncReaderWriterInterface< ::io::deephaven::proto::backplane::script::grpc::AutoCompleteRequest, ::io::deephaven::proto::backplane::script::grpc::AutoCompleteResponse>>(PrepareAsyncAutoCompleteStreamRaw(context, cq)); - } - virtual ::grpc::Status CancelAutoComplete(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::script::grpc::CancelAutoCompleteRequest& request, ::io::deephaven::proto::backplane::script::grpc::CancelAutoCompleteResponse* response) = 0; - std::unique_ptr< ::grpc::ClientAsyncResponseReaderInterface< ::io::deephaven::proto::backplane::script::grpc::CancelAutoCompleteResponse>> AsyncCancelAutoComplete(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::script::grpc::CancelAutoCompleteRequest& request, ::grpc::CompletionQueue* cq) { - return std::unique_ptr< ::grpc::ClientAsyncResponseReaderInterface< ::io::deephaven::proto::backplane::script::grpc::CancelAutoCompleteResponse>>(AsyncCancelAutoCompleteRaw(context, request, cq)); - } - std::unique_ptr< ::grpc::ClientAsyncResponseReaderInterface< ::io::deephaven::proto::backplane::script::grpc::CancelAutoCompleteResponse>> PrepareAsyncCancelAutoComplete(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::script::grpc::CancelAutoCompleteRequest& request, ::grpc::CompletionQueue* cq) { - return std::unique_ptr< ::grpc::ClientAsyncResponseReaderInterface< ::io::deephaven::proto::backplane::script::grpc::CancelAutoCompleteResponse>>(PrepareAsyncCancelAutoCompleteRaw(context, request, cq)); - } - // - // Half of the browser-based (browser's can't do bidirectional streams without websockets) - // implementation for AutoCompleteStream. - std::unique_ptr< ::grpc::ClientReaderInterface< ::io::deephaven::proto::backplane::script::grpc::AutoCompleteResponse>> OpenAutoCompleteStream(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::script::grpc::AutoCompleteRequest& request) { - return std::unique_ptr< ::grpc::ClientReaderInterface< ::io::deephaven::proto::backplane::script::grpc::AutoCompleteResponse>>(OpenAutoCompleteStreamRaw(context, request)); - } - std::unique_ptr< ::grpc::ClientAsyncReaderInterface< ::io::deephaven::proto::backplane::script::grpc::AutoCompleteResponse>> AsyncOpenAutoCompleteStream(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::script::grpc::AutoCompleteRequest& request, ::grpc::CompletionQueue* cq, void* tag) { - return std::unique_ptr< ::grpc::ClientAsyncReaderInterface< ::io::deephaven::proto::backplane::script::grpc::AutoCompleteResponse>>(AsyncOpenAutoCompleteStreamRaw(context, request, cq, tag)); - } - std::unique_ptr< ::grpc::ClientAsyncReaderInterface< ::io::deephaven::proto::backplane::script::grpc::AutoCompleteResponse>> PrepareAsyncOpenAutoCompleteStream(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::script::grpc::AutoCompleteRequest& request, ::grpc::CompletionQueue* cq) { - return std::unique_ptr< ::grpc::ClientAsyncReaderInterface< ::io::deephaven::proto::backplane::script::grpc::AutoCompleteResponse>>(PrepareAsyncOpenAutoCompleteStreamRaw(context, request, cq)); - } - // - // Other half of the browser-based implementation for AutoCompleteStream. - virtual ::grpc::Status NextAutoCompleteStream(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::script::grpc::AutoCompleteRequest& request, ::io::deephaven::proto::backplane::script::grpc::BrowserNextResponse* response) = 0; - std::unique_ptr< ::grpc::ClientAsyncResponseReaderInterface< ::io::deephaven::proto::backplane::script::grpc::BrowserNextResponse>> AsyncNextAutoCompleteStream(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::script::grpc::AutoCompleteRequest& request, ::grpc::CompletionQueue* cq) { - return std::unique_ptr< ::grpc::ClientAsyncResponseReaderInterface< ::io::deephaven::proto::backplane::script::grpc::BrowserNextResponse>>(AsyncNextAutoCompleteStreamRaw(context, request, cq)); - } - std::unique_ptr< ::grpc::ClientAsyncResponseReaderInterface< ::io::deephaven::proto::backplane::script::grpc::BrowserNextResponse>> PrepareAsyncNextAutoCompleteStream(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::script::grpc::AutoCompleteRequest& request, ::grpc::CompletionQueue* cq) { - return std::unique_ptr< ::grpc::ClientAsyncResponseReaderInterface< ::io::deephaven::proto::backplane::script::grpc::BrowserNextResponse>>(PrepareAsyncNextAutoCompleteStreamRaw(context, request, cq)); - } - class async_interface { - public: - virtual ~async_interface() {} - virtual void GetConsoleTypes(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::script::grpc::GetConsoleTypesRequest* request, ::io::deephaven::proto::backplane::script::grpc::GetConsoleTypesResponse* response, std::function) = 0; - virtual void GetConsoleTypes(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::script::grpc::GetConsoleTypesRequest* request, ::io::deephaven::proto::backplane::script::grpc::GetConsoleTypesResponse* response, ::grpc::ClientUnaryReactor* reactor) = 0; - virtual void StartConsole(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::script::grpc::StartConsoleRequest* request, ::io::deephaven::proto::backplane::script::grpc::StartConsoleResponse* response, std::function) = 0; - virtual void StartConsole(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::script::grpc::StartConsoleRequest* request, ::io::deephaven::proto::backplane::script::grpc::StartConsoleResponse* response, ::grpc::ClientUnaryReactor* reactor) = 0; - virtual void GetHeapInfo(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::script::grpc::GetHeapInfoRequest* request, ::io::deephaven::proto::backplane::script::grpc::GetHeapInfoResponse* response, std::function) = 0; - virtual void GetHeapInfo(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::script::grpc::GetHeapInfoRequest* request, ::io::deephaven::proto::backplane::script::grpc::GetHeapInfoResponse* response, ::grpc::ClientUnaryReactor* reactor) = 0; - virtual void SubscribeToLogs(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::script::grpc::LogSubscriptionRequest* request, ::grpc::ClientReadReactor< ::io::deephaven::proto::backplane::script::grpc::LogSubscriptionData>* reactor) = 0; - virtual void ExecuteCommand(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::script::grpc::ExecuteCommandRequest* request, ::io::deephaven::proto::backplane::script::grpc::ExecuteCommandResponse* response, std::function) = 0; - virtual void ExecuteCommand(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::script::grpc::ExecuteCommandRequest* request, ::io::deephaven::proto::backplane::script::grpc::ExecuteCommandResponse* response, ::grpc::ClientUnaryReactor* reactor) = 0; - virtual void CancelCommand(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::script::grpc::CancelCommandRequest* request, ::io::deephaven::proto::backplane::script::grpc::CancelCommandResponse* response, std::function) = 0; - virtual void CancelCommand(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::script::grpc::CancelCommandRequest* request, ::io::deephaven::proto::backplane::script::grpc::CancelCommandResponse* response, ::grpc::ClientUnaryReactor* reactor) = 0; - virtual void BindTableToVariable(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::script::grpc::BindTableToVariableRequest* request, ::io::deephaven::proto::backplane::script::grpc::BindTableToVariableResponse* response, std::function) = 0; - virtual void BindTableToVariable(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::script::grpc::BindTableToVariableRequest* request, ::io::deephaven::proto::backplane::script::grpc::BindTableToVariableResponse* response, ::grpc::ClientUnaryReactor* reactor) = 0; - // - // Starts a stream for autocomplete on the current session. More than one console, - // more than one document can be edited at a time using this, and they can separately - // be closed as well. A given document should only be edited within one stream at a - // time. - virtual void AutoCompleteStream(::grpc::ClientContext* context, ::grpc::ClientBidiReactor< ::io::deephaven::proto::backplane::script::grpc::AutoCompleteRequest,::io::deephaven::proto::backplane::script::grpc::AutoCompleteResponse>* reactor) = 0; - virtual void CancelAutoComplete(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::script::grpc::CancelAutoCompleteRequest* request, ::io::deephaven::proto::backplane::script::grpc::CancelAutoCompleteResponse* response, std::function) = 0; - virtual void CancelAutoComplete(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::script::grpc::CancelAutoCompleteRequest* request, ::io::deephaven::proto::backplane::script::grpc::CancelAutoCompleteResponse* response, ::grpc::ClientUnaryReactor* reactor) = 0; - // - // Half of the browser-based (browser's can't do bidirectional streams without websockets) - // implementation for AutoCompleteStream. - virtual void OpenAutoCompleteStream(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::script::grpc::AutoCompleteRequest* request, ::grpc::ClientReadReactor< ::io::deephaven::proto::backplane::script::grpc::AutoCompleteResponse>* reactor) = 0; - // - // Other half of the browser-based implementation for AutoCompleteStream. - virtual void NextAutoCompleteStream(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::script::grpc::AutoCompleteRequest* request, ::io::deephaven::proto::backplane::script::grpc::BrowserNextResponse* response, std::function) = 0; - virtual void NextAutoCompleteStream(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::script::grpc::AutoCompleteRequest* request, ::io::deephaven::proto::backplane::script::grpc::BrowserNextResponse* response, ::grpc::ClientUnaryReactor* reactor) = 0; - }; - typedef class async_interface experimental_async_interface; - virtual class async_interface* async() { return nullptr; } - class async_interface* experimental_async() { return async(); } - private: - virtual ::grpc::ClientAsyncResponseReaderInterface< ::io::deephaven::proto::backplane::script::grpc::GetConsoleTypesResponse>* AsyncGetConsoleTypesRaw(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::script::grpc::GetConsoleTypesRequest& request, ::grpc::CompletionQueue* cq) = 0; - virtual ::grpc::ClientAsyncResponseReaderInterface< ::io::deephaven::proto::backplane::script::grpc::GetConsoleTypesResponse>* PrepareAsyncGetConsoleTypesRaw(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::script::grpc::GetConsoleTypesRequest& request, ::grpc::CompletionQueue* cq) = 0; - virtual ::grpc::ClientAsyncResponseReaderInterface< ::io::deephaven::proto::backplane::script::grpc::StartConsoleResponse>* AsyncStartConsoleRaw(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::script::grpc::StartConsoleRequest& request, ::grpc::CompletionQueue* cq) = 0; - virtual ::grpc::ClientAsyncResponseReaderInterface< ::io::deephaven::proto::backplane::script::grpc::StartConsoleResponse>* PrepareAsyncStartConsoleRaw(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::script::grpc::StartConsoleRequest& request, ::grpc::CompletionQueue* cq) = 0; - virtual ::grpc::ClientAsyncResponseReaderInterface< ::io::deephaven::proto::backplane::script::grpc::GetHeapInfoResponse>* AsyncGetHeapInfoRaw(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::script::grpc::GetHeapInfoRequest& request, ::grpc::CompletionQueue* cq) = 0; - virtual ::grpc::ClientAsyncResponseReaderInterface< ::io::deephaven::proto::backplane::script::grpc::GetHeapInfoResponse>* PrepareAsyncGetHeapInfoRaw(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::script::grpc::GetHeapInfoRequest& request, ::grpc::CompletionQueue* cq) = 0; - virtual ::grpc::ClientReaderInterface< ::io::deephaven::proto::backplane::script::grpc::LogSubscriptionData>* SubscribeToLogsRaw(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::script::grpc::LogSubscriptionRequest& request) = 0; - virtual ::grpc::ClientAsyncReaderInterface< ::io::deephaven::proto::backplane::script::grpc::LogSubscriptionData>* AsyncSubscribeToLogsRaw(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::script::grpc::LogSubscriptionRequest& request, ::grpc::CompletionQueue* cq, void* tag) = 0; - virtual ::grpc::ClientAsyncReaderInterface< ::io::deephaven::proto::backplane::script::grpc::LogSubscriptionData>* PrepareAsyncSubscribeToLogsRaw(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::script::grpc::LogSubscriptionRequest& request, ::grpc::CompletionQueue* cq) = 0; - virtual ::grpc::ClientAsyncResponseReaderInterface< ::io::deephaven::proto::backplane::script::grpc::ExecuteCommandResponse>* AsyncExecuteCommandRaw(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::script::grpc::ExecuteCommandRequest& request, ::grpc::CompletionQueue* cq) = 0; - virtual ::grpc::ClientAsyncResponseReaderInterface< ::io::deephaven::proto::backplane::script::grpc::ExecuteCommandResponse>* PrepareAsyncExecuteCommandRaw(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::script::grpc::ExecuteCommandRequest& request, ::grpc::CompletionQueue* cq) = 0; - virtual ::grpc::ClientAsyncResponseReaderInterface< ::io::deephaven::proto::backplane::script::grpc::CancelCommandResponse>* AsyncCancelCommandRaw(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::script::grpc::CancelCommandRequest& request, ::grpc::CompletionQueue* cq) = 0; - virtual ::grpc::ClientAsyncResponseReaderInterface< ::io::deephaven::proto::backplane::script::grpc::CancelCommandResponse>* PrepareAsyncCancelCommandRaw(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::script::grpc::CancelCommandRequest& request, ::grpc::CompletionQueue* cq) = 0; - virtual ::grpc::ClientAsyncResponseReaderInterface< ::io::deephaven::proto::backplane::script::grpc::BindTableToVariableResponse>* AsyncBindTableToVariableRaw(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::script::grpc::BindTableToVariableRequest& request, ::grpc::CompletionQueue* cq) = 0; - virtual ::grpc::ClientAsyncResponseReaderInterface< ::io::deephaven::proto::backplane::script::grpc::BindTableToVariableResponse>* PrepareAsyncBindTableToVariableRaw(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::script::grpc::BindTableToVariableRequest& request, ::grpc::CompletionQueue* cq) = 0; - virtual ::grpc::ClientReaderWriterInterface< ::io::deephaven::proto::backplane::script::grpc::AutoCompleteRequest, ::io::deephaven::proto::backplane::script::grpc::AutoCompleteResponse>* AutoCompleteStreamRaw(::grpc::ClientContext* context) = 0; - virtual ::grpc::ClientAsyncReaderWriterInterface< ::io::deephaven::proto::backplane::script::grpc::AutoCompleteRequest, ::io::deephaven::proto::backplane::script::grpc::AutoCompleteResponse>* AsyncAutoCompleteStreamRaw(::grpc::ClientContext* context, ::grpc::CompletionQueue* cq, void* tag) = 0; - virtual ::grpc::ClientAsyncReaderWriterInterface< ::io::deephaven::proto::backplane::script::grpc::AutoCompleteRequest, ::io::deephaven::proto::backplane::script::grpc::AutoCompleteResponse>* PrepareAsyncAutoCompleteStreamRaw(::grpc::ClientContext* context, ::grpc::CompletionQueue* cq) = 0; - virtual ::grpc::ClientAsyncResponseReaderInterface< ::io::deephaven::proto::backplane::script::grpc::CancelAutoCompleteResponse>* AsyncCancelAutoCompleteRaw(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::script::grpc::CancelAutoCompleteRequest& request, ::grpc::CompletionQueue* cq) = 0; - virtual ::grpc::ClientAsyncResponseReaderInterface< ::io::deephaven::proto::backplane::script::grpc::CancelAutoCompleteResponse>* PrepareAsyncCancelAutoCompleteRaw(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::script::grpc::CancelAutoCompleteRequest& request, ::grpc::CompletionQueue* cq) = 0; - virtual ::grpc::ClientReaderInterface< ::io::deephaven::proto::backplane::script::grpc::AutoCompleteResponse>* OpenAutoCompleteStreamRaw(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::script::grpc::AutoCompleteRequest& request) = 0; - virtual ::grpc::ClientAsyncReaderInterface< ::io::deephaven::proto::backplane::script::grpc::AutoCompleteResponse>* AsyncOpenAutoCompleteStreamRaw(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::script::grpc::AutoCompleteRequest& request, ::grpc::CompletionQueue* cq, void* tag) = 0; - virtual ::grpc::ClientAsyncReaderInterface< ::io::deephaven::proto::backplane::script::grpc::AutoCompleteResponse>* PrepareAsyncOpenAutoCompleteStreamRaw(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::script::grpc::AutoCompleteRequest& request, ::grpc::CompletionQueue* cq) = 0; - virtual ::grpc::ClientAsyncResponseReaderInterface< ::io::deephaven::proto::backplane::script::grpc::BrowserNextResponse>* AsyncNextAutoCompleteStreamRaw(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::script::grpc::AutoCompleteRequest& request, ::grpc::CompletionQueue* cq) = 0; - virtual ::grpc::ClientAsyncResponseReaderInterface< ::io::deephaven::proto::backplane::script::grpc::BrowserNextResponse>* PrepareAsyncNextAutoCompleteStreamRaw(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::script::grpc::AutoCompleteRequest& request, ::grpc::CompletionQueue* cq) = 0; - }; - class Stub final : public StubInterface { - public: - Stub(const std::shared_ptr< ::grpc::ChannelInterface>& channel, const ::grpc::StubOptions& options = ::grpc::StubOptions()); - ::grpc::Status GetConsoleTypes(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::script::grpc::GetConsoleTypesRequest& request, ::io::deephaven::proto::backplane::script::grpc::GetConsoleTypesResponse* response) override; - std::unique_ptr< ::grpc::ClientAsyncResponseReader< ::io::deephaven::proto::backplane::script::grpc::GetConsoleTypesResponse>> AsyncGetConsoleTypes(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::script::grpc::GetConsoleTypesRequest& request, ::grpc::CompletionQueue* cq) { - return std::unique_ptr< ::grpc::ClientAsyncResponseReader< ::io::deephaven::proto::backplane::script::grpc::GetConsoleTypesResponse>>(AsyncGetConsoleTypesRaw(context, request, cq)); - } - std::unique_ptr< ::grpc::ClientAsyncResponseReader< ::io::deephaven::proto::backplane::script::grpc::GetConsoleTypesResponse>> PrepareAsyncGetConsoleTypes(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::script::grpc::GetConsoleTypesRequest& request, ::grpc::CompletionQueue* cq) { - return std::unique_ptr< ::grpc::ClientAsyncResponseReader< ::io::deephaven::proto::backplane::script::grpc::GetConsoleTypesResponse>>(PrepareAsyncGetConsoleTypesRaw(context, request, cq)); - } - ::grpc::Status StartConsole(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::script::grpc::StartConsoleRequest& request, ::io::deephaven::proto::backplane::script::grpc::StartConsoleResponse* response) override; - std::unique_ptr< ::grpc::ClientAsyncResponseReader< ::io::deephaven::proto::backplane::script::grpc::StartConsoleResponse>> AsyncStartConsole(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::script::grpc::StartConsoleRequest& request, ::grpc::CompletionQueue* cq) { - return std::unique_ptr< ::grpc::ClientAsyncResponseReader< ::io::deephaven::proto::backplane::script::grpc::StartConsoleResponse>>(AsyncStartConsoleRaw(context, request, cq)); - } - std::unique_ptr< ::grpc::ClientAsyncResponseReader< ::io::deephaven::proto::backplane::script::grpc::StartConsoleResponse>> PrepareAsyncStartConsole(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::script::grpc::StartConsoleRequest& request, ::grpc::CompletionQueue* cq) { - return std::unique_ptr< ::grpc::ClientAsyncResponseReader< ::io::deephaven::proto::backplane::script::grpc::StartConsoleResponse>>(PrepareAsyncStartConsoleRaw(context, request, cq)); - } - ::grpc::Status GetHeapInfo(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::script::grpc::GetHeapInfoRequest& request, ::io::deephaven::proto::backplane::script::grpc::GetHeapInfoResponse* response) override; - std::unique_ptr< ::grpc::ClientAsyncResponseReader< ::io::deephaven::proto::backplane::script::grpc::GetHeapInfoResponse>> AsyncGetHeapInfo(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::script::grpc::GetHeapInfoRequest& request, ::grpc::CompletionQueue* cq) { - return std::unique_ptr< ::grpc::ClientAsyncResponseReader< ::io::deephaven::proto::backplane::script::grpc::GetHeapInfoResponse>>(AsyncGetHeapInfoRaw(context, request, cq)); - } - std::unique_ptr< ::grpc::ClientAsyncResponseReader< ::io::deephaven::proto::backplane::script::grpc::GetHeapInfoResponse>> PrepareAsyncGetHeapInfo(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::script::grpc::GetHeapInfoRequest& request, ::grpc::CompletionQueue* cq) { - return std::unique_ptr< ::grpc::ClientAsyncResponseReader< ::io::deephaven::proto::backplane::script::grpc::GetHeapInfoResponse>>(PrepareAsyncGetHeapInfoRaw(context, request, cq)); - } - std::unique_ptr< ::grpc::ClientReader< ::io::deephaven::proto::backplane::script::grpc::LogSubscriptionData>> SubscribeToLogs(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::script::grpc::LogSubscriptionRequest& request) { - return std::unique_ptr< ::grpc::ClientReader< ::io::deephaven::proto::backplane::script::grpc::LogSubscriptionData>>(SubscribeToLogsRaw(context, request)); - } - std::unique_ptr< ::grpc::ClientAsyncReader< ::io::deephaven::proto::backplane::script::grpc::LogSubscriptionData>> AsyncSubscribeToLogs(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::script::grpc::LogSubscriptionRequest& request, ::grpc::CompletionQueue* cq, void* tag) { - return std::unique_ptr< ::grpc::ClientAsyncReader< ::io::deephaven::proto::backplane::script::grpc::LogSubscriptionData>>(AsyncSubscribeToLogsRaw(context, request, cq, tag)); - } - std::unique_ptr< ::grpc::ClientAsyncReader< ::io::deephaven::proto::backplane::script::grpc::LogSubscriptionData>> PrepareAsyncSubscribeToLogs(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::script::grpc::LogSubscriptionRequest& request, ::grpc::CompletionQueue* cq) { - return std::unique_ptr< ::grpc::ClientAsyncReader< ::io::deephaven::proto::backplane::script::grpc::LogSubscriptionData>>(PrepareAsyncSubscribeToLogsRaw(context, request, cq)); - } - ::grpc::Status ExecuteCommand(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::script::grpc::ExecuteCommandRequest& request, ::io::deephaven::proto::backplane::script::grpc::ExecuteCommandResponse* response) override; - std::unique_ptr< ::grpc::ClientAsyncResponseReader< ::io::deephaven::proto::backplane::script::grpc::ExecuteCommandResponse>> AsyncExecuteCommand(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::script::grpc::ExecuteCommandRequest& request, ::grpc::CompletionQueue* cq) { - return std::unique_ptr< ::grpc::ClientAsyncResponseReader< ::io::deephaven::proto::backplane::script::grpc::ExecuteCommandResponse>>(AsyncExecuteCommandRaw(context, request, cq)); - } - std::unique_ptr< ::grpc::ClientAsyncResponseReader< ::io::deephaven::proto::backplane::script::grpc::ExecuteCommandResponse>> PrepareAsyncExecuteCommand(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::script::grpc::ExecuteCommandRequest& request, ::grpc::CompletionQueue* cq) { - return std::unique_ptr< ::grpc::ClientAsyncResponseReader< ::io::deephaven::proto::backplane::script::grpc::ExecuteCommandResponse>>(PrepareAsyncExecuteCommandRaw(context, request, cq)); - } - ::grpc::Status CancelCommand(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::script::grpc::CancelCommandRequest& request, ::io::deephaven::proto::backplane::script::grpc::CancelCommandResponse* response) override; - std::unique_ptr< ::grpc::ClientAsyncResponseReader< ::io::deephaven::proto::backplane::script::grpc::CancelCommandResponse>> AsyncCancelCommand(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::script::grpc::CancelCommandRequest& request, ::grpc::CompletionQueue* cq) { - return std::unique_ptr< ::grpc::ClientAsyncResponseReader< ::io::deephaven::proto::backplane::script::grpc::CancelCommandResponse>>(AsyncCancelCommandRaw(context, request, cq)); - } - std::unique_ptr< ::grpc::ClientAsyncResponseReader< ::io::deephaven::proto::backplane::script::grpc::CancelCommandResponse>> PrepareAsyncCancelCommand(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::script::grpc::CancelCommandRequest& request, ::grpc::CompletionQueue* cq) { - return std::unique_ptr< ::grpc::ClientAsyncResponseReader< ::io::deephaven::proto::backplane::script::grpc::CancelCommandResponse>>(PrepareAsyncCancelCommandRaw(context, request, cq)); - } - ::grpc::Status BindTableToVariable(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::script::grpc::BindTableToVariableRequest& request, ::io::deephaven::proto::backplane::script::grpc::BindTableToVariableResponse* response) override; - std::unique_ptr< ::grpc::ClientAsyncResponseReader< ::io::deephaven::proto::backplane::script::grpc::BindTableToVariableResponse>> AsyncBindTableToVariable(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::script::grpc::BindTableToVariableRequest& request, ::grpc::CompletionQueue* cq) { - return std::unique_ptr< ::grpc::ClientAsyncResponseReader< ::io::deephaven::proto::backplane::script::grpc::BindTableToVariableResponse>>(AsyncBindTableToVariableRaw(context, request, cq)); - } - std::unique_ptr< ::grpc::ClientAsyncResponseReader< ::io::deephaven::proto::backplane::script::grpc::BindTableToVariableResponse>> PrepareAsyncBindTableToVariable(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::script::grpc::BindTableToVariableRequest& request, ::grpc::CompletionQueue* cq) { - return std::unique_ptr< ::grpc::ClientAsyncResponseReader< ::io::deephaven::proto::backplane::script::grpc::BindTableToVariableResponse>>(PrepareAsyncBindTableToVariableRaw(context, request, cq)); - } - std::unique_ptr< ::grpc::ClientReaderWriter< ::io::deephaven::proto::backplane::script::grpc::AutoCompleteRequest, ::io::deephaven::proto::backplane::script::grpc::AutoCompleteResponse>> AutoCompleteStream(::grpc::ClientContext* context) { - return std::unique_ptr< ::grpc::ClientReaderWriter< ::io::deephaven::proto::backplane::script::grpc::AutoCompleteRequest, ::io::deephaven::proto::backplane::script::grpc::AutoCompleteResponse>>(AutoCompleteStreamRaw(context)); - } - std::unique_ptr< ::grpc::ClientAsyncReaderWriter< ::io::deephaven::proto::backplane::script::grpc::AutoCompleteRequest, ::io::deephaven::proto::backplane::script::grpc::AutoCompleteResponse>> AsyncAutoCompleteStream(::grpc::ClientContext* context, ::grpc::CompletionQueue* cq, void* tag) { - return std::unique_ptr< ::grpc::ClientAsyncReaderWriter< ::io::deephaven::proto::backplane::script::grpc::AutoCompleteRequest, ::io::deephaven::proto::backplane::script::grpc::AutoCompleteResponse>>(AsyncAutoCompleteStreamRaw(context, cq, tag)); - } - std::unique_ptr< ::grpc::ClientAsyncReaderWriter< ::io::deephaven::proto::backplane::script::grpc::AutoCompleteRequest, ::io::deephaven::proto::backplane::script::grpc::AutoCompleteResponse>> PrepareAsyncAutoCompleteStream(::grpc::ClientContext* context, ::grpc::CompletionQueue* cq) { - return std::unique_ptr< ::grpc::ClientAsyncReaderWriter< ::io::deephaven::proto::backplane::script::grpc::AutoCompleteRequest, ::io::deephaven::proto::backplane::script::grpc::AutoCompleteResponse>>(PrepareAsyncAutoCompleteStreamRaw(context, cq)); - } - ::grpc::Status CancelAutoComplete(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::script::grpc::CancelAutoCompleteRequest& request, ::io::deephaven::proto::backplane::script::grpc::CancelAutoCompleteResponse* response) override; - std::unique_ptr< ::grpc::ClientAsyncResponseReader< ::io::deephaven::proto::backplane::script::grpc::CancelAutoCompleteResponse>> AsyncCancelAutoComplete(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::script::grpc::CancelAutoCompleteRequest& request, ::grpc::CompletionQueue* cq) { - return std::unique_ptr< ::grpc::ClientAsyncResponseReader< ::io::deephaven::proto::backplane::script::grpc::CancelAutoCompleteResponse>>(AsyncCancelAutoCompleteRaw(context, request, cq)); - } - std::unique_ptr< ::grpc::ClientAsyncResponseReader< ::io::deephaven::proto::backplane::script::grpc::CancelAutoCompleteResponse>> PrepareAsyncCancelAutoComplete(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::script::grpc::CancelAutoCompleteRequest& request, ::grpc::CompletionQueue* cq) { - return std::unique_ptr< ::grpc::ClientAsyncResponseReader< ::io::deephaven::proto::backplane::script::grpc::CancelAutoCompleteResponse>>(PrepareAsyncCancelAutoCompleteRaw(context, request, cq)); - } - std::unique_ptr< ::grpc::ClientReader< ::io::deephaven::proto::backplane::script::grpc::AutoCompleteResponse>> OpenAutoCompleteStream(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::script::grpc::AutoCompleteRequest& request) { - return std::unique_ptr< ::grpc::ClientReader< ::io::deephaven::proto::backplane::script::grpc::AutoCompleteResponse>>(OpenAutoCompleteStreamRaw(context, request)); - } - std::unique_ptr< ::grpc::ClientAsyncReader< ::io::deephaven::proto::backplane::script::grpc::AutoCompleteResponse>> AsyncOpenAutoCompleteStream(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::script::grpc::AutoCompleteRequest& request, ::grpc::CompletionQueue* cq, void* tag) { - return std::unique_ptr< ::grpc::ClientAsyncReader< ::io::deephaven::proto::backplane::script::grpc::AutoCompleteResponse>>(AsyncOpenAutoCompleteStreamRaw(context, request, cq, tag)); - } - std::unique_ptr< ::grpc::ClientAsyncReader< ::io::deephaven::proto::backplane::script::grpc::AutoCompleteResponse>> PrepareAsyncOpenAutoCompleteStream(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::script::grpc::AutoCompleteRequest& request, ::grpc::CompletionQueue* cq) { - return std::unique_ptr< ::grpc::ClientAsyncReader< ::io::deephaven::proto::backplane::script::grpc::AutoCompleteResponse>>(PrepareAsyncOpenAutoCompleteStreamRaw(context, request, cq)); - } - ::grpc::Status NextAutoCompleteStream(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::script::grpc::AutoCompleteRequest& request, ::io::deephaven::proto::backplane::script::grpc::BrowserNextResponse* response) override; - std::unique_ptr< ::grpc::ClientAsyncResponseReader< ::io::deephaven::proto::backplane::script::grpc::BrowserNextResponse>> AsyncNextAutoCompleteStream(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::script::grpc::AutoCompleteRequest& request, ::grpc::CompletionQueue* cq) { - return std::unique_ptr< ::grpc::ClientAsyncResponseReader< ::io::deephaven::proto::backplane::script::grpc::BrowserNextResponse>>(AsyncNextAutoCompleteStreamRaw(context, request, cq)); - } - std::unique_ptr< ::grpc::ClientAsyncResponseReader< ::io::deephaven::proto::backplane::script::grpc::BrowserNextResponse>> PrepareAsyncNextAutoCompleteStream(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::script::grpc::AutoCompleteRequest& request, ::grpc::CompletionQueue* cq) { - return std::unique_ptr< ::grpc::ClientAsyncResponseReader< ::io::deephaven::proto::backplane::script::grpc::BrowserNextResponse>>(PrepareAsyncNextAutoCompleteStreamRaw(context, request, cq)); - } - class async final : - public StubInterface::async_interface { - public: - void GetConsoleTypes(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::script::grpc::GetConsoleTypesRequest* request, ::io::deephaven::proto::backplane::script::grpc::GetConsoleTypesResponse* response, std::function) override; - void GetConsoleTypes(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::script::grpc::GetConsoleTypesRequest* request, ::io::deephaven::proto::backplane::script::grpc::GetConsoleTypesResponse* response, ::grpc::ClientUnaryReactor* reactor) override; - void StartConsole(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::script::grpc::StartConsoleRequest* request, ::io::deephaven::proto::backplane::script::grpc::StartConsoleResponse* response, std::function) override; - void StartConsole(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::script::grpc::StartConsoleRequest* request, ::io::deephaven::proto::backplane::script::grpc::StartConsoleResponse* response, ::grpc::ClientUnaryReactor* reactor) override; - void GetHeapInfo(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::script::grpc::GetHeapInfoRequest* request, ::io::deephaven::proto::backplane::script::grpc::GetHeapInfoResponse* response, std::function) override; - void GetHeapInfo(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::script::grpc::GetHeapInfoRequest* request, ::io::deephaven::proto::backplane::script::grpc::GetHeapInfoResponse* response, ::grpc::ClientUnaryReactor* reactor) override; - void SubscribeToLogs(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::script::grpc::LogSubscriptionRequest* request, ::grpc::ClientReadReactor< ::io::deephaven::proto::backplane::script::grpc::LogSubscriptionData>* reactor) override; - void ExecuteCommand(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::script::grpc::ExecuteCommandRequest* request, ::io::deephaven::proto::backplane::script::grpc::ExecuteCommandResponse* response, std::function) override; - void ExecuteCommand(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::script::grpc::ExecuteCommandRequest* request, ::io::deephaven::proto::backplane::script::grpc::ExecuteCommandResponse* response, ::grpc::ClientUnaryReactor* reactor) override; - void CancelCommand(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::script::grpc::CancelCommandRequest* request, ::io::deephaven::proto::backplane::script::grpc::CancelCommandResponse* response, std::function) override; - void CancelCommand(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::script::grpc::CancelCommandRequest* request, ::io::deephaven::proto::backplane::script::grpc::CancelCommandResponse* response, ::grpc::ClientUnaryReactor* reactor) override; - void BindTableToVariable(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::script::grpc::BindTableToVariableRequest* request, ::io::deephaven::proto::backplane::script::grpc::BindTableToVariableResponse* response, std::function) override; - void BindTableToVariable(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::script::grpc::BindTableToVariableRequest* request, ::io::deephaven::proto::backplane::script::grpc::BindTableToVariableResponse* response, ::grpc::ClientUnaryReactor* reactor) override; - void AutoCompleteStream(::grpc::ClientContext* context, ::grpc::ClientBidiReactor< ::io::deephaven::proto::backplane::script::grpc::AutoCompleteRequest,::io::deephaven::proto::backplane::script::grpc::AutoCompleteResponse>* reactor) override; - void CancelAutoComplete(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::script::grpc::CancelAutoCompleteRequest* request, ::io::deephaven::proto::backplane::script::grpc::CancelAutoCompleteResponse* response, std::function) override; - void CancelAutoComplete(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::script::grpc::CancelAutoCompleteRequest* request, ::io::deephaven::proto::backplane::script::grpc::CancelAutoCompleteResponse* response, ::grpc::ClientUnaryReactor* reactor) override; - void OpenAutoCompleteStream(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::script::grpc::AutoCompleteRequest* request, ::grpc::ClientReadReactor< ::io::deephaven::proto::backplane::script::grpc::AutoCompleteResponse>* reactor) override; - void NextAutoCompleteStream(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::script::grpc::AutoCompleteRequest* request, ::io::deephaven::proto::backplane::script::grpc::BrowserNextResponse* response, std::function) override; - void NextAutoCompleteStream(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::script::grpc::AutoCompleteRequest* request, ::io::deephaven::proto::backplane::script::grpc::BrowserNextResponse* response, ::grpc::ClientUnaryReactor* reactor) override; - private: - friend class Stub; - explicit async(Stub* stub): stub_(stub) { } - Stub* stub() { return stub_; } - Stub* stub_; - }; - class async* async() override { return &async_stub_; } - - private: - std::shared_ptr< ::grpc::ChannelInterface> channel_; - class async async_stub_{this}; - ::grpc::ClientAsyncResponseReader< ::io::deephaven::proto::backplane::script::grpc::GetConsoleTypesResponse>* AsyncGetConsoleTypesRaw(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::script::grpc::GetConsoleTypesRequest& request, ::grpc::CompletionQueue* cq) override; - ::grpc::ClientAsyncResponseReader< ::io::deephaven::proto::backplane::script::grpc::GetConsoleTypesResponse>* PrepareAsyncGetConsoleTypesRaw(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::script::grpc::GetConsoleTypesRequest& request, ::grpc::CompletionQueue* cq) override; - ::grpc::ClientAsyncResponseReader< ::io::deephaven::proto::backplane::script::grpc::StartConsoleResponse>* AsyncStartConsoleRaw(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::script::grpc::StartConsoleRequest& request, ::grpc::CompletionQueue* cq) override; - ::grpc::ClientAsyncResponseReader< ::io::deephaven::proto::backplane::script::grpc::StartConsoleResponse>* PrepareAsyncStartConsoleRaw(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::script::grpc::StartConsoleRequest& request, ::grpc::CompletionQueue* cq) override; - ::grpc::ClientAsyncResponseReader< ::io::deephaven::proto::backplane::script::grpc::GetHeapInfoResponse>* AsyncGetHeapInfoRaw(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::script::grpc::GetHeapInfoRequest& request, ::grpc::CompletionQueue* cq) override; - ::grpc::ClientAsyncResponseReader< ::io::deephaven::proto::backplane::script::grpc::GetHeapInfoResponse>* PrepareAsyncGetHeapInfoRaw(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::script::grpc::GetHeapInfoRequest& request, ::grpc::CompletionQueue* cq) override; - ::grpc::ClientReader< ::io::deephaven::proto::backplane::script::grpc::LogSubscriptionData>* SubscribeToLogsRaw(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::script::grpc::LogSubscriptionRequest& request) override; - ::grpc::ClientAsyncReader< ::io::deephaven::proto::backplane::script::grpc::LogSubscriptionData>* AsyncSubscribeToLogsRaw(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::script::grpc::LogSubscriptionRequest& request, ::grpc::CompletionQueue* cq, void* tag) override; - ::grpc::ClientAsyncReader< ::io::deephaven::proto::backplane::script::grpc::LogSubscriptionData>* PrepareAsyncSubscribeToLogsRaw(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::script::grpc::LogSubscriptionRequest& request, ::grpc::CompletionQueue* cq) override; - ::grpc::ClientAsyncResponseReader< ::io::deephaven::proto::backplane::script::grpc::ExecuteCommandResponse>* AsyncExecuteCommandRaw(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::script::grpc::ExecuteCommandRequest& request, ::grpc::CompletionQueue* cq) override; - ::grpc::ClientAsyncResponseReader< ::io::deephaven::proto::backplane::script::grpc::ExecuteCommandResponse>* PrepareAsyncExecuteCommandRaw(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::script::grpc::ExecuteCommandRequest& request, ::grpc::CompletionQueue* cq) override; - ::grpc::ClientAsyncResponseReader< ::io::deephaven::proto::backplane::script::grpc::CancelCommandResponse>* AsyncCancelCommandRaw(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::script::grpc::CancelCommandRequest& request, ::grpc::CompletionQueue* cq) override; - ::grpc::ClientAsyncResponseReader< ::io::deephaven::proto::backplane::script::grpc::CancelCommandResponse>* PrepareAsyncCancelCommandRaw(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::script::grpc::CancelCommandRequest& request, ::grpc::CompletionQueue* cq) override; - ::grpc::ClientAsyncResponseReader< ::io::deephaven::proto::backplane::script::grpc::BindTableToVariableResponse>* AsyncBindTableToVariableRaw(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::script::grpc::BindTableToVariableRequest& request, ::grpc::CompletionQueue* cq) override; - ::grpc::ClientAsyncResponseReader< ::io::deephaven::proto::backplane::script::grpc::BindTableToVariableResponse>* PrepareAsyncBindTableToVariableRaw(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::script::grpc::BindTableToVariableRequest& request, ::grpc::CompletionQueue* cq) override; - ::grpc::ClientReaderWriter< ::io::deephaven::proto::backplane::script::grpc::AutoCompleteRequest, ::io::deephaven::proto::backplane::script::grpc::AutoCompleteResponse>* AutoCompleteStreamRaw(::grpc::ClientContext* context) override; - ::grpc::ClientAsyncReaderWriter< ::io::deephaven::proto::backplane::script::grpc::AutoCompleteRequest, ::io::deephaven::proto::backplane::script::grpc::AutoCompleteResponse>* AsyncAutoCompleteStreamRaw(::grpc::ClientContext* context, ::grpc::CompletionQueue* cq, void* tag) override; - ::grpc::ClientAsyncReaderWriter< ::io::deephaven::proto::backplane::script::grpc::AutoCompleteRequest, ::io::deephaven::proto::backplane::script::grpc::AutoCompleteResponse>* PrepareAsyncAutoCompleteStreamRaw(::grpc::ClientContext* context, ::grpc::CompletionQueue* cq) override; - ::grpc::ClientAsyncResponseReader< ::io::deephaven::proto::backplane::script::grpc::CancelAutoCompleteResponse>* AsyncCancelAutoCompleteRaw(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::script::grpc::CancelAutoCompleteRequest& request, ::grpc::CompletionQueue* cq) override; - ::grpc::ClientAsyncResponseReader< ::io::deephaven::proto::backplane::script::grpc::CancelAutoCompleteResponse>* PrepareAsyncCancelAutoCompleteRaw(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::script::grpc::CancelAutoCompleteRequest& request, ::grpc::CompletionQueue* cq) override; - ::grpc::ClientReader< ::io::deephaven::proto::backplane::script::grpc::AutoCompleteResponse>* OpenAutoCompleteStreamRaw(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::script::grpc::AutoCompleteRequest& request) override; - ::grpc::ClientAsyncReader< ::io::deephaven::proto::backplane::script::grpc::AutoCompleteResponse>* AsyncOpenAutoCompleteStreamRaw(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::script::grpc::AutoCompleteRequest& request, ::grpc::CompletionQueue* cq, void* tag) override; - ::grpc::ClientAsyncReader< ::io::deephaven::proto::backplane::script::grpc::AutoCompleteResponse>* PrepareAsyncOpenAutoCompleteStreamRaw(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::script::grpc::AutoCompleteRequest& request, ::grpc::CompletionQueue* cq) override; - ::grpc::ClientAsyncResponseReader< ::io::deephaven::proto::backplane::script::grpc::BrowserNextResponse>* AsyncNextAutoCompleteStreamRaw(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::script::grpc::AutoCompleteRequest& request, ::grpc::CompletionQueue* cq) override; - ::grpc::ClientAsyncResponseReader< ::io::deephaven::proto::backplane::script::grpc::BrowserNextResponse>* PrepareAsyncNextAutoCompleteStreamRaw(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::script::grpc::AutoCompleteRequest& request, ::grpc::CompletionQueue* cq) override; - const ::grpc::internal::RpcMethod rpcmethod_GetConsoleTypes_; - const ::grpc::internal::RpcMethod rpcmethod_StartConsole_; - const ::grpc::internal::RpcMethod rpcmethod_GetHeapInfo_; - const ::grpc::internal::RpcMethod rpcmethod_SubscribeToLogs_; - const ::grpc::internal::RpcMethod rpcmethod_ExecuteCommand_; - const ::grpc::internal::RpcMethod rpcmethod_CancelCommand_; - const ::grpc::internal::RpcMethod rpcmethod_BindTableToVariable_; - const ::grpc::internal::RpcMethod rpcmethod_AutoCompleteStream_; - const ::grpc::internal::RpcMethod rpcmethod_CancelAutoComplete_; - const ::grpc::internal::RpcMethod rpcmethod_OpenAutoCompleteStream_; - const ::grpc::internal::RpcMethod rpcmethod_NextAutoCompleteStream_; - }; - static std::unique_ptr NewStub(const std::shared_ptr< ::grpc::ChannelInterface>& channel, const ::grpc::StubOptions& options = ::grpc::StubOptions()); - - class Service : public ::grpc::Service { - public: - Service(); - virtual ~Service(); - virtual ::grpc::Status GetConsoleTypes(::grpc::ServerContext* context, const ::io::deephaven::proto::backplane::script::grpc::GetConsoleTypesRequest* request, ::io::deephaven::proto::backplane::script::grpc::GetConsoleTypesResponse* response); - virtual ::grpc::Status StartConsole(::grpc::ServerContext* context, const ::io::deephaven::proto::backplane::script::grpc::StartConsoleRequest* request, ::io::deephaven::proto::backplane::script::grpc::StartConsoleResponse* response); - virtual ::grpc::Status GetHeapInfo(::grpc::ServerContext* context, const ::io::deephaven::proto::backplane::script::grpc::GetHeapInfoRequest* request, ::io::deephaven::proto::backplane::script::grpc::GetHeapInfoResponse* response); - virtual ::grpc::Status SubscribeToLogs(::grpc::ServerContext* context, const ::io::deephaven::proto::backplane::script::grpc::LogSubscriptionRequest* request, ::grpc::ServerWriter< ::io::deephaven::proto::backplane::script::grpc::LogSubscriptionData>* writer); - virtual ::grpc::Status ExecuteCommand(::grpc::ServerContext* context, const ::io::deephaven::proto::backplane::script::grpc::ExecuteCommandRequest* request, ::io::deephaven::proto::backplane::script::grpc::ExecuteCommandResponse* response); - virtual ::grpc::Status CancelCommand(::grpc::ServerContext* context, const ::io::deephaven::proto::backplane::script::grpc::CancelCommandRequest* request, ::io::deephaven::proto::backplane::script::grpc::CancelCommandResponse* response); - virtual ::grpc::Status BindTableToVariable(::grpc::ServerContext* context, const ::io::deephaven::proto::backplane::script::grpc::BindTableToVariableRequest* request, ::io::deephaven::proto::backplane::script::grpc::BindTableToVariableResponse* response); - // - // Starts a stream for autocomplete on the current session. More than one console, - // more than one document can be edited at a time using this, and they can separately - // be closed as well. A given document should only be edited within one stream at a - // time. - virtual ::grpc::Status AutoCompleteStream(::grpc::ServerContext* context, ::grpc::ServerReaderWriter< ::io::deephaven::proto::backplane::script::grpc::AutoCompleteResponse, ::io::deephaven::proto::backplane::script::grpc::AutoCompleteRequest>* stream); - virtual ::grpc::Status CancelAutoComplete(::grpc::ServerContext* context, const ::io::deephaven::proto::backplane::script::grpc::CancelAutoCompleteRequest* request, ::io::deephaven::proto::backplane::script::grpc::CancelAutoCompleteResponse* response); - // - // Half of the browser-based (browser's can't do bidirectional streams without websockets) - // implementation for AutoCompleteStream. - virtual ::grpc::Status OpenAutoCompleteStream(::grpc::ServerContext* context, const ::io::deephaven::proto::backplane::script::grpc::AutoCompleteRequest* request, ::grpc::ServerWriter< ::io::deephaven::proto::backplane::script::grpc::AutoCompleteResponse>* writer); - // - // Other half of the browser-based implementation for AutoCompleteStream. - virtual ::grpc::Status NextAutoCompleteStream(::grpc::ServerContext* context, const ::io::deephaven::proto::backplane::script::grpc::AutoCompleteRequest* request, ::io::deephaven::proto::backplane::script::grpc::BrowserNextResponse* response); - }; - template - class WithAsyncMethod_GetConsoleTypes : public BaseClass { - private: - void BaseClassMustBeDerivedFromService(const Service* /*service*/) {} - public: - WithAsyncMethod_GetConsoleTypes() { - ::grpc::Service::MarkMethodAsync(0); - } - ~WithAsyncMethod_GetConsoleTypes() override { - BaseClassMustBeDerivedFromService(this); - } - // disable synchronous version of this method - ::grpc::Status GetConsoleTypes(::grpc::ServerContext* /*context*/, const ::io::deephaven::proto::backplane::script::grpc::GetConsoleTypesRequest* /*request*/, ::io::deephaven::proto::backplane::script::grpc::GetConsoleTypesResponse* /*response*/) override { - abort(); - return ::grpc::Status(::grpc::StatusCode::UNIMPLEMENTED, ""); - } - void RequestGetConsoleTypes(::grpc::ServerContext* context, ::io::deephaven::proto::backplane::script::grpc::GetConsoleTypesRequest* request, ::grpc::ServerAsyncResponseWriter< ::io::deephaven::proto::backplane::script::grpc::GetConsoleTypesResponse>* response, ::grpc::CompletionQueue* new_call_cq, ::grpc::ServerCompletionQueue* notification_cq, void *tag) { - ::grpc::Service::RequestAsyncUnary(0, context, request, response, new_call_cq, notification_cq, tag); - } - }; - template - class WithAsyncMethod_StartConsole : public BaseClass { - private: - void BaseClassMustBeDerivedFromService(const Service* /*service*/) {} - public: - WithAsyncMethod_StartConsole() { - ::grpc::Service::MarkMethodAsync(1); - } - ~WithAsyncMethod_StartConsole() override { - BaseClassMustBeDerivedFromService(this); - } - // disable synchronous version of this method - ::grpc::Status StartConsole(::grpc::ServerContext* /*context*/, const ::io::deephaven::proto::backplane::script::grpc::StartConsoleRequest* /*request*/, ::io::deephaven::proto::backplane::script::grpc::StartConsoleResponse* /*response*/) override { - abort(); - return ::grpc::Status(::grpc::StatusCode::UNIMPLEMENTED, ""); - } - void RequestStartConsole(::grpc::ServerContext* context, ::io::deephaven::proto::backplane::script::grpc::StartConsoleRequest* request, ::grpc::ServerAsyncResponseWriter< ::io::deephaven::proto::backplane::script::grpc::StartConsoleResponse>* response, ::grpc::CompletionQueue* new_call_cq, ::grpc::ServerCompletionQueue* notification_cq, void *tag) { - ::grpc::Service::RequestAsyncUnary(1, context, request, response, new_call_cq, notification_cq, tag); - } - }; - template - class WithAsyncMethod_GetHeapInfo : public BaseClass { - private: - void BaseClassMustBeDerivedFromService(const Service* /*service*/) {} - public: - WithAsyncMethod_GetHeapInfo() { - ::grpc::Service::MarkMethodAsync(2); - } - ~WithAsyncMethod_GetHeapInfo() override { - BaseClassMustBeDerivedFromService(this); - } - // disable synchronous version of this method - ::grpc::Status GetHeapInfo(::grpc::ServerContext* /*context*/, const ::io::deephaven::proto::backplane::script::grpc::GetHeapInfoRequest* /*request*/, ::io::deephaven::proto::backplane::script::grpc::GetHeapInfoResponse* /*response*/) override { - abort(); - return ::grpc::Status(::grpc::StatusCode::UNIMPLEMENTED, ""); - } - void RequestGetHeapInfo(::grpc::ServerContext* context, ::io::deephaven::proto::backplane::script::grpc::GetHeapInfoRequest* request, ::grpc::ServerAsyncResponseWriter< ::io::deephaven::proto::backplane::script::grpc::GetHeapInfoResponse>* response, ::grpc::CompletionQueue* new_call_cq, ::grpc::ServerCompletionQueue* notification_cq, void *tag) { - ::grpc::Service::RequestAsyncUnary(2, context, request, response, new_call_cq, notification_cq, tag); - } - }; - template - class WithAsyncMethod_SubscribeToLogs : public BaseClass { - private: - void BaseClassMustBeDerivedFromService(const Service* /*service*/) {} - public: - WithAsyncMethod_SubscribeToLogs() { - ::grpc::Service::MarkMethodAsync(3); - } - ~WithAsyncMethod_SubscribeToLogs() override { - BaseClassMustBeDerivedFromService(this); - } - // disable synchronous version of this method - ::grpc::Status SubscribeToLogs(::grpc::ServerContext* /*context*/, const ::io::deephaven::proto::backplane::script::grpc::LogSubscriptionRequest* /*request*/, ::grpc::ServerWriter< ::io::deephaven::proto::backplane::script::grpc::LogSubscriptionData>* /*writer*/) override { - abort(); - return ::grpc::Status(::grpc::StatusCode::UNIMPLEMENTED, ""); - } - void RequestSubscribeToLogs(::grpc::ServerContext* context, ::io::deephaven::proto::backplane::script::grpc::LogSubscriptionRequest* request, ::grpc::ServerAsyncWriter< ::io::deephaven::proto::backplane::script::grpc::LogSubscriptionData>* writer, ::grpc::CompletionQueue* new_call_cq, ::grpc::ServerCompletionQueue* notification_cq, void *tag) { - ::grpc::Service::RequestAsyncServerStreaming(3, context, request, writer, new_call_cq, notification_cq, tag); - } - }; - template - class WithAsyncMethod_ExecuteCommand : public BaseClass { - private: - void BaseClassMustBeDerivedFromService(const Service* /*service*/) {} - public: - WithAsyncMethod_ExecuteCommand() { - ::grpc::Service::MarkMethodAsync(4); - } - ~WithAsyncMethod_ExecuteCommand() override { - BaseClassMustBeDerivedFromService(this); - } - // disable synchronous version of this method - ::grpc::Status ExecuteCommand(::grpc::ServerContext* /*context*/, const ::io::deephaven::proto::backplane::script::grpc::ExecuteCommandRequest* /*request*/, ::io::deephaven::proto::backplane::script::grpc::ExecuteCommandResponse* /*response*/) override { - abort(); - return ::grpc::Status(::grpc::StatusCode::UNIMPLEMENTED, ""); - } - void RequestExecuteCommand(::grpc::ServerContext* context, ::io::deephaven::proto::backplane::script::grpc::ExecuteCommandRequest* request, ::grpc::ServerAsyncResponseWriter< ::io::deephaven::proto::backplane::script::grpc::ExecuteCommandResponse>* response, ::grpc::CompletionQueue* new_call_cq, ::grpc::ServerCompletionQueue* notification_cq, void *tag) { - ::grpc::Service::RequestAsyncUnary(4, context, request, response, new_call_cq, notification_cq, tag); - } - }; - template - class WithAsyncMethod_CancelCommand : public BaseClass { - private: - void BaseClassMustBeDerivedFromService(const Service* /*service*/) {} - public: - WithAsyncMethod_CancelCommand() { - ::grpc::Service::MarkMethodAsync(5); - } - ~WithAsyncMethod_CancelCommand() override { - BaseClassMustBeDerivedFromService(this); - } - // disable synchronous version of this method - ::grpc::Status CancelCommand(::grpc::ServerContext* /*context*/, const ::io::deephaven::proto::backplane::script::grpc::CancelCommandRequest* /*request*/, ::io::deephaven::proto::backplane::script::grpc::CancelCommandResponse* /*response*/) override { - abort(); - return ::grpc::Status(::grpc::StatusCode::UNIMPLEMENTED, ""); - } - void RequestCancelCommand(::grpc::ServerContext* context, ::io::deephaven::proto::backplane::script::grpc::CancelCommandRequest* request, ::grpc::ServerAsyncResponseWriter< ::io::deephaven::proto::backplane::script::grpc::CancelCommandResponse>* response, ::grpc::CompletionQueue* new_call_cq, ::grpc::ServerCompletionQueue* notification_cq, void *tag) { - ::grpc::Service::RequestAsyncUnary(5, context, request, response, new_call_cq, notification_cq, tag); - } - }; - template - class WithAsyncMethod_BindTableToVariable : public BaseClass { - private: - void BaseClassMustBeDerivedFromService(const Service* /*service*/) {} - public: - WithAsyncMethod_BindTableToVariable() { - ::grpc::Service::MarkMethodAsync(6); - } - ~WithAsyncMethod_BindTableToVariable() override { - BaseClassMustBeDerivedFromService(this); - } - // disable synchronous version of this method - ::grpc::Status BindTableToVariable(::grpc::ServerContext* /*context*/, const ::io::deephaven::proto::backplane::script::grpc::BindTableToVariableRequest* /*request*/, ::io::deephaven::proto::backplane::script::grpc::BindTableToVariableResponse* /*response*/) override { - abort(); - return ::grpc::Status(::grpc::StatusCode::UNIMPLEMENTED, ""); - } - void RequestBindTableToVariable(::grpc::ServerContext* context, ::io::deephaven::proto::backplane::script::grpc::BindTableToVariableRequest* request, ::grpc::ServerAsyncResponseWriter< ::io::deephaven::proto::backplane::script::grpc::BindTableToVariableResponse>* response, ::grpc::CompletionQueue* new_call_cq, ::grpc::ServerCompletionQueue* notification_cq, void *tag) { - ::grpc::Service::RequestAsyncUnary(6, context, request, response, new_call_cq, notification_cq, tag); - } - }; - template - class WithAsyncMethod_AutoCompleteStream : public BaseClass { - private: - void BaseClassMustBeDerivedFromService(const Service* /*service*/) {} - public: - WithAsyncMethod_AutoCompleteStream() { - ::grpc::Service::MarkMethodAsync(7); - } - ~WithAsyncMethod_AutoCompleteStream() override { - BaseClassMustBeDerivedFromService(this); - } - // disable synchronous version of this method - ::grpc::Status AutoCompleteStream(::grpc::ServerContext* /*context*/, ::grpc::ServerReaderWriter< ::io::deephaven::proto::backplane::script::grpc::AutoCompleteResponse, ::io::deephaven::proto::backplane::script::grpc::AutoCompleteRequest>* /*stream*/) override { - abort(); - return ::grpc::Status(::grpc::StatusCode::UNIMPLEMENTED, ""); - } - void RequestAutoCompleteStream(::grpc::ServerContext* context, ::grpc::ServerAsyncReaderWriter< ::io::deephaven::proto::backplane::script::grpc::AutoCompleteResponse, ::io::deephaven::proto::backplane::script::grpc::AutoCompleteRequest>* stream, ::grpc::CompletionQueue* new_call_cq, ::grpc::ServerCompletionQueue* notification_cq, void *tag) { - ::grpc::Service::RequestAsyncBidiStreaming(7, context, stream, new_call_cq, notification_cq, tag); - } - }; - template - class WithAsyncMethod_CancelAutoComplete : public BaseClass { - private: - void BaseClassMustBeDerivedFromService(const Service* /*service*/) {} - public: - WithAsyncMethod_CancelAutoComplete() { - ::grpc::Service::MarkMethodAsync(8); - } - ~WithAsyncMethod_CancelAutoComplete() override { - BaseClassMustBeDerivedFromService(this); - } - // disable synchronous version of this method - ::grpc::Status CancelAutoComplete(::grpc::ServerContext* /*context*/, const ::io::deephaven::proto::backplane::script::grpc::CancelAutoCompleteRequest* /*request*/, ::io::deephaven::proto::backplane::script::grpc::CancelAutoCompleteResponse* /*response*/) override { - abort(); - return ::grpc::Status(::grpc::StatusCode::UNIMPLEMENTED, ""); - } - void RequestCancelAutoComplete(::grpc::ServerContext* context, ::io::deephaven::proto::backplane::script::grpc::CancelAutoCompleteRequest* request, ::grpc::ServerAsyncResponseWriter< ::io::deephaven::proto::backplane::script::grpc::CancelAutoCompleteResponse>* response, ::grpc::CompletionQueue* new_call_cq, ::grpc::ServerCompletionQueue* notification_cq, void *tag) { - ::grpc::Service::RequestAsyncUnary(8, context, request, response, new_call_cq, notification_cq, tag); - } - }; - template - class WithAsyncMethod_OpenAutoCompleteStream : public BaseClass { - private: - void BaseClassMustBeDerivedFromService(const Service* /*service*/) {} - public: - WithAsyncMethod_OpenAutoCompleteStream() { - ::grpc::Service::MarkMethodAsync(9); - } - ~WithAsyncMethod_OpenAutoCompleteStream() override { - BaseClassMustBeDerivedFromService(this); - } - // disable synchronous version of this method - ::grpc::Status OpenAutoCompleteStream(::grpc::ServerContext* /*context*/, const ::io::deephaven::proto::backplane::script::grpc::AutoCompleteRequest* /*request*/, ::grpc::ServerWriter< ::io::deephaven::proto::backplane::script::grpc::AutoCompleteResponse>* /*writer*/) override { - abort(); - return ::grpc::Status(::grpc::StatusCode::UNIMPLEMENTED, ""); - } - void RequestOpenAutoCompleteStream(::grpc::ServerContext* context, ::io::deephaven::proto::backplane::script::grpc::AutoCompleteRequest* request, ::grpc::ServerAsyncWriter< ::io::deephaven::proto::backplane::script::grpc::AutoCompleteResponse>* writer, ::grpc::CompletionQueue* new_call_cq, ::grpc::ServerCompletionQueue* notification_cq, void *tag) { - ::grpc::Service::RequestAsyncServerStreaming(9, context, request, writer, new_call_cq, notification_cq, tag); - } - }; - template - class WithAsyncMethod_NextAutoCompleteStream : public BaseClass { - private: - void BaseClassMustBeDerivedFromService(const Service* /*service*/) {} - public: - WithAsyncMethod_NextAutoCompleteStream() { - ::grpc::Service::MarkMethodAsync(10); - } - ~WithAsyncMethod_NextAutoCompleteStream() override { - BaseClassMustBeDerivedFromService(this); - } - // disable synchronous version of this method - ::grpc::Status NextAutoCompleteStream(::grpc::ServerContext* /*context*/, const ::io::deephaven::proto::backplane::script::grpc::AutoCompleteRequest* /*request*/, ::io::deephaven::proto::backplane::script::grpc::BrowserNextResponse* /*response*/) override { - abort(); - return ::grpc::Status(::grpc::StatusCode::UNIMPLEMENTED, ""); - } - void RequestNextAutoCompleteStream(::grpc::ServerContext* context, ::io::deephaven::proto::backplane::script::grpc::AutoCompleteRequest* request, ::grpc::ServerAsyncResponseWriter< ::io::deephaven::proto::backplane::script::grpc::BrowserNextResponse>* response, ::grpc::CompletionQueue* new_call_cq, ::grpc::ServerCompletionQueue* notification_cq, void *tag) { - ::grpc::Service::RequestAsyncUnary(10, context, request, response, new_call_cq, notification_cq, tag); - } - }; - typedef WithAsyncMethod_GetConsoleTypes > > > > > > > > > > AsyncService; - template - class WithCallbackMethod_GetConsoleTypes : public BaseClass { - private: - void BaseClassMustBeDerivedFromService(const Service* /*service*/) {} - public: - WithCallbackMethod_GetConsoleTypes() { - ::grpc::Service::MarkMethodCallback(0, - new ::grpc::internal::CallbackUnaryHandler< ::io::deephaven::proto::backplane::script::grpc::GetConsoleTypesRequest, ::io::deephaven::proto::backplane::script::grpc::GetConsoleTypesResponse>( - [this]( - ::grpc::CallbackServerContext* context, const ::io::deephaven::proto::backplane::script::grpc::GetConsoleTypesRequest* request, ::io::deephaven::proto::backplane::script::grpc::GetConsoleTypesResponse* response) { return this->GetConsoleTypes(context, request, response); }));} - void SetMessageAllocatorFor_GetConsoleTypes( - ::grpc::MessageAllocator< ::io::deephaven::proto::backplane::script::grpc::GetConsoleTypesRequest, ::io::deephaven::proto::backplane::script::grpc::GetConsoleTypesResponse>* allocator) { - ::grpc::internal::MethodHandler* const handler = ::grpc::Service::GetHandler(0); - static_cast<::grpc::internal::CallbackUnaryHandler< ::io::deephaven::proto::backplane::script::grpc::GetConsoleTypesRequest, ::io::deephaven::proto::backplane::script::grpc::GetConsoleTypesResponse>*>(handler) - ->SetMessageAllocator(allocator); - } - ~WithCallbackMethod_GetConsoleTypes() override { - BaseClassMustBeDerivedFromService(this); - } - // disable synchronous version of this method - ::grpc::Status GetConsoleTypes(::grpc::ServerContext* /*context*/, const ::io::deephaven::proto::backplane::script::grpc::GetConsoleTypesRequest* /*request*/, ::io::deephaven::proto::backplane::script::grpc::GetConsoleTypesResponse* /*response*/) override { - abort(); - return ::grpc::Status(::grpc::StatusCode::UNIMPLEMENTED, ""); - } - virtual ::grpc::ServerUnaryReactor* GetConsoleTypes( - ::grpc::CallbackServerContext* /*context*/, const ::io::deephaven::proto::backplane::script::grpc::GetConsoleTypesRequest* /*request*/, ::io::deephaven::proto::backplane::script::grpc::GetConsoleTypesResponse* /*response*/) { return nullptr; } - }; - template - class WithCallbackMethod_StartConsole : public BaseClass { - private: - void BaseClassMustBeDerivedFromService(const Service* /*service*/) {} - public: - WithCallbackMethod_StartConsole() { - ::grpc::Service::MarkMethodCallback(1, - new ::grpc::internal::CallbackUnaryHandler< ::io::deephaven::proto::backplane::script::grpc::StartConsoleRequest, ::io::deephaven::proto::backplane::script::grpc::StartConsoleResponse>( - [this]( - ::grpc::CallbackServerContext* context, const ::io::deephaven::proto::backplane::script::grpc::StartConsoleRequest* request, ::io::deephaven::proto::backplane::script::grpc::StartConsoleResponse* response) { return this->StartConsole(context, request, response); }));} - void SetMessageAllocatorFor_StartConsole( - ::grpc::MessageAllocator< ::io::deephaven::proto::backplane::script::grpc::StartConsoleRequest, ::io::deephaven::proto::backplane::script::grpc::StartConsoleResponse>* allocator) { - ::grpc::internal::MethodHandler* const handler = ::grpc::Service::GetHandler(1); - static_cast<::grpc::internal::CallbackUnaryHandler< ::io::deephaven::proto::backplane::script::grpc::StartConsoleRequest, ::io::deephaven::proto::backplane::script::grpc::StartConsoleResponse>*>(handler) - ->SetMessageAllocator(allocator); - } - ~WithCallbackMethod_StartConsole() override { - BaseClassMustBeDerivedFromService(this); - } - // disable synchronous version of this method - ::grpc::Status StartConsole(::grpc::ServerContext* /*context*/, const ::io::deephaven::proto::backplane::script::grpc::StartConsoleRequest* /*request*/, ::io::deephaven::proto::backplane::script::grpc::StartConsoleResponse* /*response*/) override { - abort(); - return ::grpc::Status(::grpc::StatusCode::UNIMPLEMENTED, ""); - } - virtual ::grpc::ServerUnaryReactor* StartConsole( - ::grpc::CallbackServerContext* /*context*/, const ::io::deephaven::proto::backplane::script::grpc::StartConsoleRequest* /*request*/, ::io::deephaven::proto::backplane::script::grpc::StartConsoleResponse* /*response*/) { return nullptr; } - }; - template - class WithCallbackMethod_GetHeapInfo : public BaseClass { - private: - void BaseClassMustBeDerivedFromService(const Service* /*service*/) {} - public: - WithCallbackMethod_GetHeapInfo() { - ::grpc::Service::MarkMethodCallback(2, - new ::grpc::internal::CallbackUnaryHandler< ::io::deephaven::proto::backplane::script::grpc::GetHeapInfoRequest, ::io::deephaven::proto::backplane::script::grpc::GetHeapInfoResponse>( - [this]( - ::grpc::CallbackServerContext* context, const ::io::deephaven::proto::backplane::script::grpc::GetHeapInfoRequest* request, ::io::deephaven::proto::backplane::script::grpc::GetHeapInfoResponse* response) { return this->GetHeapInfo(context, request, response); }));} - void SetMessageAllocatorFor_GetHeapInfo( - ::grpc::MessageAllocator< ::io::deephaven::proto::backplane::script::grpc::GetHeapInfoRequest, ::io::deephaven::proto::backplane::script::grpc::GetHeapInfoResponse>* allocator) { - ::grpc::internal::MethodHandler* const handler = ::grpc::Service::GetHandler(2); - static_cast<::grpc::internal::CallbackUnaryHandler< ::io::deephaven::proto::backplane::script::grpc::GetHeapInfoRequest, ::io::deephaven::proto::backplane::script::grpc::GetHeapInfoResponse>*>(handler) - ->SetMessageAllocator(allocator); - } - ~WithCallbackMethod_GetHeapInfo() override { - BaseClassMustBeDerivedFromService(this); - } - // disable synchronous version of this method - ::grpc::Status GetHeapInfo(::grpc::ServerContext* /*context*/, const ::io::deephaven::proto::backplane::script::grpc::GetHeapInfoRequest* /*request*/, ::io::deephaven::proto::backplane::script::grpc::GetHeapInfoResponse* /*response*/) override { - abort(); - return ::grpc::Status(::grpc::StatusCode::UNIMPLEMENTED, ""); - } - virtual ::grpc::ServerUnaryReactor* GetHeapInfo( - ::grpc::CallbackServerContext* /*context*/, const ::io::deephaven::proto::backplane::script::grpc::GetHeapInfoRequest* /*request*/, ::io::deephaven::proto::backplane::script::grpc::GetHeapInfoResponse* /*response*/) { return nullptr; } - }; - template - class WithCallbackMethod_SubscribeToLogs : public BaseClass { - private: - void BaseClassMustBeDerivedFromService(const Service* /*service*/) {} - public: - WithCallbackMethod_SubscribeToLogs() { - ::grpc::Service::MarkMethodCallback(3, - new ::grpc::internal::CallbackServerStreamingHandler< ::io::deephaven::proto::backplane::script::grpc::LogSubscriptionRequest, ::io::deephaven::proto::backplane::script::grpc::LogSubscriptionData>( - [this]( - ::grpc::CallbackServerContext* context, const ::io::deephaven::proto::backplane::script::grpc::LogSubscriptionRequest* request) { return this->SubscribeToLogs(context, request); })); - } - ~WithCallbackMethod_SubscribeToLogs() override { - BaseClassMustBeDerivedFromService(this); - } - // disable synchronous version of this method - ::grpc::Status SubscribeToLogs(::grpc::ServerContext* /*context*/, const ::io::deephaven::proto::backplane::script::grpc::LogSubscriptionRequest* /*request*/, ::grpc::ServerWriter< ::io::deephaven::proto::backplane::script::grpc::LogSubscriptionData>* /*writer*/) override { - abort(); - return ::grpc::Status(::grpc::StatusCode::UNIMPLEMENTED, ""); - } - virtual ::grpc::ServerWriteReactor< ::io::deephaven::proto::backplane::script::grpc::LogSubscriptionData>* SubscribeToLogs( - ::grpc::CallbackServerContext* /*context*/, const ::io::deephaven::proto::backplane::script::grpc::LogSubscriptionRequest* /*request*/) { return nullptr; } - }; - template - class WithCallbackMethod_ExecuteCommand : public BaseClass { - private: - void BaseClassMustBeDerivedFromService(const Service* /*service*/) {} - public: - WithCallbackMethod_ExecuteCommand() { - ::grpc::Service::MarkMethodCallback(4, - new ::grpc::internal::CallbackUnaryHandler< ::io::deephaven::proto::backplane::script::grpc::ExecuteCommandRequest, ::io::deephaven::proto::backplane::script::grpc::ExecuteCommandResponse>( - [this]( - ::grpc::CallbackServerContext* context, const ::io::deephaven::proto::backplane::script::grpc::ExecuteCommandRequest* request, ::io::deephaven::proto::backplane::script::grpc::ExecuteCommandResponse* response) { return this->ExecuteCommand(context, request, response); }));} - void SetMessageAllocatorFor_ExecuteCommand( - ::grpc::MessageAllocator< ::io::deephaven::proto::backplane::script::grpc::ExecuteCommandRequest, ::io::deephaven::proto::backplane::script::grpc::ExecuteCommandResponse>* allocator) { - ::grpc::internal::MethodHandler* const handler = ::grpc::Service::GetHandler(4); - static_cast<::grpc::internal::CallbackUnaryHandler< ::io::deephaven::proto::backplane::script::grpc::ExecuteCommandRequest, ::io::deephaven::proto::backplane::script::grpc::ExecuteCommandResponse>*>(handler) - ->SetMessageAllocator(allocator); - } - ~WithCallbackMethod_ExecuteCommand() override { - BaseClassMustBeDerivedFromService(this); - } - // disable synchronous version of this method - ::grpc::Status ExecuteCommand(::grpc::ServerContext* /*context*/, const ::io::deephaven::proto::backplane::script::grpc::ExecuteCommandRequest* /*request*/, ::io::deephaven::proto::backplane::script::grpc::ExecuteCommandResponse* /*response*/) override { - abort(); - return ::grpc::Status(::grpc::StatusCode::UNIMPLEMENTED, ""); - } - virtual ::grpc::ServerUnaryReactor* ExecuteCommand( - ::grpc::CallbackServerContext* /*context*/, const ::io::deephaven::proto::backplane::script::grpc::ExecuteCommandRequest* /*request*/, ::io::deephaven::proto::backplane::script::grpc::ExecuteCommandResponse* /*response*/) { return nullptr; } - }; - template - class WithCallbackMethod_CancelCommand : public BaseClass { - private: - void BaseClassMustBeDerivedFromService(const Service* /*service*/) {} - public: - WithCallbackMethod_CancelCommand() { - ::grpc::Service::MarkMethodCallback(5, - new ::grpc::internal::CallbackUnaryHandler< ::io::deephaven::proto::backplane::script::grpc::CancelCommandRequest, ::io::deephaven::proto::backplane::script::grpc::CancelCommandResponse>( - [this]( - ::grpc::CallbackServerContext* context, const ::io::deephaven::proto::backplane::script::grpc::CancelCommandRequest* request, ::io::deephaven::proto::backplane::script::grpc::CancelCommandResponse* response) { return this->CancelCommand(context, request, response); }));} - void SetMessageAllocatorFor_CancelCommand( - ::grpc::MessageAllocator< ::io::deephaven::proto::backplane::script::grpc::CancelCommandRequest, ::io::deephaven::proto::backplane::script::grpc::CancelCommandResponse>* allocator) { - ::grpc::internal::MethodHandler* const handler = ::grpc::Service::GetHandler(5); - static_cast<::grpc::internal::CallbackUnaryHandler< ::io::deephaven::proto::backplane::script::grpc::CancelCommandRequest, ::io::deephaven::proto::backplane::script::grpc::CancelCommandResponse>*>(handler) - ->SetMessageAllocator(allocator); - } - ~WithCallbackMethod_CancelCommand() override { - BaseClassMustBeDerivedFromService(this); - } - // disable synchronous version of this method - ::grpc::Status CancelCommand(::grpc::ServerContext* /*context*/, const ::io::deephaven::proto::backplane::script::grpc::CancelCommandRequest* /*request*/, ::io::deephaven::proto::backplane::script::grpc::CancelCommandResponse* /*response*/) override { - abort(); - return ::grpc::Status(::grpc::StatusCode::UNIMPLEMENTED, ""); - } - virtual ::grpc::ServerUnaryReactor* CancelCommand( - ::grpc::CallbackServerContext* /*context*/, const ::io::deephaven::proto::backplane::script::grpc::CancelCommandRequest* /*request*/, ::io::deephaven::proto::backplane::script::grpc::CancelCommandResponse* /*response*/) { return nullptr; } - }; - template - class WithCallbackMethod_BindTableToVariable : public BaseClass { - private: - void BaseClassMustBeDerivedFromService(const Service* /*service*/) {} - public: - WithCallbackMethod_BindTableToVariable() { - ::grpc::Service::MarkMethodCallback(6, - new ::grpc::internal::CallbackUnaryHandler< ::io::deephaven::proto::backplane::script::grpc::BindTableToVariableRequest, ::io::deephaven::proto::backplane::script::grpc::BindTableToVariableResponse>( - [this]( - ::grpc::CallbackServerContext* context, const ::io::deephaven::proto::backplane::script::grpc::BindTableToVariableRequest* request, ::io::deephaven::proto::backplane::script::grpc::BindTableToVariableResponse* response) { return this->BindTableToVariable(context, request, response); }));} - void SetMessageAllocatorFor_BindTableToVariable( - ::grpc::MessageAllocator< ::io::deephaven::proto::backplane::script::grpc::BindTableToVariableRequest, ::io::deephaven::proto::backplane::script::grpc::BindTableToVariableResponse>* allocator) { - ::grpc::internal::MethodHandler* const handler = ::grpc::Service::GetHandler(6); - static_cast<::grpc::internal::CallbackUnaryHandler< ::io::deephaven::proto::backplane::script::grpc::BindTableToVariableRequest, ::io::deephaven::proto::backplane::script::grpc::BindTableToVariableResponse>*>(handler) - ->SetMessageAllocator(allocator); - } - ~WithCallbackMethod_BindTableToVariable() override { - BaseClassMustBeDerivedFromService(this); - } - // disable synchronous version of this method - ::grpc::Status BindTableToVariable(::grpc::ServerContext* /*context*/, const ::io::deephaven::proto::backplane::script::grpc::BindTableToVariableRequest* /*request*/, ::io::deephaven::proto::backplane::script::grpc::BindTableToVariableResponse* /*response*/) override { - abort(); - return ::grpc::Status(::grpc::StatusCode::UNIMPLEMENTED, ""); - } - virtual ::grpc::ServerUnaryReactor* BindTableToVariable( - ::grpc::CallbackServerContext* /*context*/, const ::io::deephaven::proto::backplane::script::grpc::BindTableToVariableRequest* /*request*/, ::io::deephaven::proto::backplane::script::grpc::BindTableToVariableResponse* /*response*/) { return nullptr; } - }; - template - class WithCallbackMethod_AutoCompleteStream : public BaseClass { - private: - void BaseClassMustBeDerivedFromService(const Service* /*service*/) {} - public: - WithCallbackMethod_AutoCompleteStream() { - ::grpc::Service::MarkMethodCallback(7, - new ::grpc::internal::CallbackBidiHandler< ::io::deephaven::proto::backplane::script::grpc::AutoCompleteRequest, ::io::deephaven::proto::backplane::script::grpc::AutoCompleteResponse>( - [this]( - ::grpc::CallbackServerContext* context) { return this->AutoCompleteStream(context); })); - } - ~WithCallbackMethod_AutoCompleteStream() override { - BaseClassMustBeDerivedFromService(this); - } - // disable synchronous version of this method - ::grpc::Status AutoCompleteStream(::grpc::ServerContext* /*context*/, ::grpc::ServerReaderWriter< ::io::deephaven::proto::backplane::script::grpc::AutoCompleteResponse, ::io::deephaven::proto::backplane::script::grpc::AutoCompleteRequest>* /*stream*/) override { - abort(); - return ::grpc::Status(::grpc::StatusCode::UNIMPLEMENTED, ""); - } - virtual ::grpc::ServerBidiReactor< ::io::deephaven::proto::backplane::script::grpc::AutoCompleteRequest, ::io::deephaven::proto::backplane::script::grpc::AutoCompleteResponse>* AutoCompleteStream( - ::grpc::CallbackServerContext* /*context*/) - { return nullptr; } - }; - template - class WithCallbackMethod_CancelAutoComplete : public BaseClass { - private: - void BaseClassMustBeDerivedFromService(const Service* /*service*/) {} - public: - WithCallbackMethod_CancelAutoComplete() { - ::grpc::Service::MarkMethodCallback(8, - new ::grpc::internal::CallbackUnaryHandler< ::io::deephaven::proto::backplane::script::grpc::CancelAutoCompleteRequest, ::io::deephaven::proto::backplane::script::grpc::CancelAutoCompleteResponse>( - [this]( - ::grpc::CallbackServerContext* context, const ::io::deephaven::proto::backplane::script::grpc::CancelAutoCompleteRequest* request, ::io::deephaven::proto::backplane::script::grpc::CancelAutoCompleteResponse* response) { return this->CancelAutoComplete(context, request, response); }));} - void SetMessageAllocatorFor_CancelAutoComplete( - ::grpc::MessageAllocator< ::io::deephaven::proto::backplane::script::grpc::CancelAutoCompleteRequest, ::io::deephaven::proto::backplane::script::grpc::CancelAutoCompleteResponse>* allocator) { - ::grpc::internal::MethodHandler* const handler = ::grpc::Service::GetHandler(8); - static_cast<::grpc::internal::CallbackUnaryHandler< ::io::deephaven::proto::backplane::script::grpc::CancelAutoCompleteRequest, ::io::deephaven::proto::backplane::script::grpc::CancelAutoCompleteResponse>*>(handler) - ->SetMessageAllocator(allocator); - } - ~WithCallbackMethod_CancelAutoComplete() override { - BaseClassMustBeDerivedFromService(this); - } - // disable synchronous version of this method - ::grpc::Status CancelAutoComplete(::grpc::ServerContext* /*context*/, const ::io::deephaven::proto::backplane::script::grpc::CancelAutoCompleteRequest* /*request*/, ::io::deephaven::proto::backplane::script::grpc::CancelAutoCompleteResponse* /*response*/) override { - abort(); - return ::grpc::Status(::grpc::StatusCode::UNIMPLEMENTED, ""); - } - virtual ::grpc::ServerUnaryReactor* CancelAutoComplete( - ::grpc::CallbackServerContext* /*context*/, const ::io::deephaven::proto::backplane::script::grpc::CancelAutoCompleteRequest* /*request*/, ::io::deephaven::proto::backplane::script::grpc::CancelAutoCompleteResponse* /*response*/) { return nullptr; } - }; - template - class WithCallbackMethod_OpenAutoCompleteStream : public BaseClass { - private: - void BaseClassMustBeDerivedFromService(const Service* /*service*/) {} - public: - WithCallbackMethod_OpenAutoCompleteStream() { - ::grpc::Service::MarkMethodCallback(9, - new ::grpc::internal::CallbackServerStreamingHandler< ::io::deephaven::proto::backplane::script::grpc::AutoCompleteRequest, ::io::deephaven::proto::backplane::script::grpc::AutoCompleteResponse>( - [this]( - ::grpc::CallbackServerContext* context, const ::io::deephaven::proto::backplane::script::grpc::AutoCompleteRequest* request) { return this->OpenAutoCompleteStream(context, request); })); - } - ~WithCallbackMethod_OpenAutoCompleteStream() override { - BaseClassMustBeDerivedFromService(this); - } - // disable synchronous version of this method - ::grpc::Status OpenAutoCompleteStream(::grpc::ServerContext* /*context*/, const ::io::deephaven::proto::backplane::script::grpc::AutoCompleteRequest* /*request*/, ::grpc::ServerWriter< ::io::deephaven::proto::backplane::script::grpc::AutoCompleteResponse>* /*writer*/) override { - abort(); - return ::grpc::Status(::grpc::StatusCode::UNIMPLEMENTED, ""); - } - virtual ::grpc::ServerWriteReactor< ::io::deephaven::proto::backplane::script::grpc::AutoCompleteResponse>* OpenAutoCompleteStream( - ::grpc::CallbackServerContext* /*context*/, const ::io::deephaven::proto::backplane::script::grpc::AutoCompleteRequest* /*request*/) { return nullptr; } - }; - template - class WithCallbackMethod_NextAutoCompleteStream : public BaseClass { - private: - void BaseClassMustBeDerivedFromService(const Service* /*service*/) {} - public: - WithCallbackMethod_NextAutoCompleteStream() { - ::grpc::Service::MarkMethodCallback(10, - new ::grpc::internal::CallbackUnaryHandler< ::io::deephaven::proto::backplane::script::grpc::AutoCompleteRequest, ::io::deephaven::proto::backplane::script::grpc::BrowserNextResponse>( - [this]( - ::grpc::CallbackServerContext* context, const ::io::deephaven::proto::backplane::script::grpc::AutoCompleteRequest* request, ::io::deephaven::proto::backplane::script::grpc::BrowserNextResponse* response) { return this->NextAutoCompleteStream(context, request, response); }));} - void SetMessageAllocatorFor_NextAutoCompleteStream( - ::grpc::MessageAllocator< ::io::deephaven::proto::backplane::script::grpc::AutoCompleteRequest, ::io::deephaven::proto::backplane::script::grpc::BrowserNextResponse>* allocator) { - ::grpc::internal::MethodHandler* const handler = ::grpc::Service::GetHandler(10); - static_cast<::grpc::internal::CallbackUnaryHandler< ::io::deephaven::proto::backplane::script::grpc::AutoCompleteRequest, ::io::deephaven::proto::backplane::script::grpc::BrowserNextResponse>*>(handler) - ->SetMessageAllocator(allocator); - } - ~WithCallbackMethod_NextAutoCompleteStream() override { - BaseClassMustBeDerivedFromService(this); - } - // disable synchronous version of this method - ::grpc::Status NextAutoCompleteStream(::grpc::ServerContext* /*context*/, const ::io::deephaven::proto::backplane::script::grpc::AutoCompleteRequest* /*request*/, ::io::deephaven::proto::backplane::script::grpc::BrowserNextResponse* /*response*/) override { - abort(); - return ::grpc::Status(::grpc::StatusCode::UNIMPLEMENTED, ""); - } - virtual ::grpc::ServerUnaryReactor* NextAutoCompleteStream( - ::grpc::CallbackServerContext* /*context*/, const ::io::deephaven::proto::backplane::script::grpc::AutoCompleteRequest* /*request*/, ::io::deephaven::proto::backplane::script::grpc::BrowserNextResponse* /*response*/) { return nullptr; } - }; - typedef WithCallbackMethod_GetConsoleTypes > > > > > > > > > > CallbackService; - typedef CallbackService ExperimentalCallbackService; - template - class WithGenericMethod_GetConsoleTypes : public BaseClass { - private: - void BaseClassMustBeDerivedFromService(const Service* /*service*/) {} - public: - WithGenericMethod_GetConsoleTypes() { - ::grpc::Service::MarkMethodGeneric(0); - } - ~WithGenericMethod_GetConsoleTypes() override { - BaseClassMustBeDerivedFromService(this); - } - // disable synchronous version of this method - ::grpc::Status GetConsoleTypes(::grpc::ServerContext* /*context*/, const ::io::deephaven::proto::backplane::script::grpc::GetConsoleTypesRequest* /*request*/, ::io::deephaven::proto::backplane::script::grpc::GetConsoleTypesResponse* /*response*/) override { - abort(); - return ::grpc::Status(::grpc::StatusCode::UNIMPLEMENTED, ""); - } - }; - template - class WithGenericMethod_StartConsole : public BaseClass { - private: - void BaseClassMustBeDerivedFromService(const Service* /*service*/) {} - public: - WithGenericMethod_StartConsole() { - ::grpc::Service::MarkMethodGeneric(1); - } - ~WithGenericMethod_StartConsole() override { - BaseClassMustBeDerivedFromService(this); - } - // disable synchronous version of this method - ::grpc::Status StartConsole(::grpc::ServerContext* /*context*/, const ::io::deephaven::proto::backplane::script::grpc::StartConsoleRequest* /*request*/, ::io::deephaven::proto::backplane::script::grpc::StartConsoleResponse* /*response*/) override { - abort(); - return ::grpc::Status(::grpc::StatusCode::UNIMPLEMENTED, ""); - } - }; - template - class WithGenericMethod_GetHeapInfo : public BaseClass { - private: - void BaseClassMustBeDerivedFromService(const Service* /*service*/) {} - public: - WithGenericMethod_GetHeapInfo() { - ::grpc::Service::MarkMethodGeneric(2); - } - ~WithGenericMethod_GetHeapInfo() override { - BaseClassMustBeDerivedFromService(this); - } - // disable synchronous version of this method - ::grpc::Status GetHeapInfo(::grpc::ServerContext* /*context*/, const ::io::deephaven::proto::backplane::script::grpc::GetHeapInfoRequest* /*request*/, ::io::deephaven::proto::backplane::script::grpc::GetHeapInfoResponse* /*response*/) override { - abort(); - return ::grpc::Status(::grpc::StatusCode::UNIMPLEMENTED, ""); - } - }; - template - class WithGenericMethod_SubscribeToLogs : public BaseClass { - private: - void BaseClassMustBeDerivedFromService(const Service* /*service*/) {} - public: - WithGenericMethod_SubscribeToLogs() { - ::grpc::Service::MarkMethodGeneric(3); - } - ~WithGenericMethod_SubscribeToLogs() override { - BaseClassMustBeDerivedFromService(this); - } - // disable synchronous version of this method - ::grpc::Status SubscribeToLogs(::grpc::ServerContext* /*context*/, const ::io::deephaven::proto::backplane::script::grpc::LogSubscriptionRequest* /*request*/, ::grpc::ServerWriter< ::io::deephaven::proto::backplane::script::grpc::LogSubscriptionData>* /*writer*/) override { - abort(); - return ::grpc::Status(::grpc::StatusCode::UNIMPLEMENTED, ""); - } - }; - template - class WithGenericMethod_ExecuteCommand : public BaseClass { - private: - void BaseClassMustBeDerivedFromService(const Service* /*service*/) {} - public: - WithGenericMethod_ExecuteCommand() { - ::grpc::Service::MarkMethodGeneric(4); - } - ~WithGenericMethod_ExecuteCommand() override { - BaseClassMustBeDerivedFromService(this); - } - // disable synchronous version of this method - ::grpc::Status ExecuteCommand(::grpc::ServerContext* /*context*/, const ::io::deephaven::proto::backplane::script::grpc::ExecuteCommandRequest* /*request*/, ::io::deephaven::proto::backplane::script::grpc::ExecuteCommandResponse* /*response*/) override { - abort(); - return ::grpc::Status(::grpc::StatusCode::UNIMPLEMENTED, ""); - } - }; - template - class WithGenericMethod_CancelCommand : public BaseClass { - private: - void BaseClassMustBeDerivedFromService(const Service* /*service*/) {} - public: - WithGenericMethod_CancelCommand() { - ::grpc::Service::MarkMethodGeneric(5); - } - ~WithGenericMethod_CancelCommand() override { - BaseClassMustBeDerivedFromService(this); - } - // disable synchronous version of this method - ::grpc::Status CancelCommand(::grpc::ServerContext* /*context*/, const ::io::deephaven::proto::backplane::script::grpc::CancelCommandRequest* /*request*/, ::io::deephaven::proto::backplane::script::grpc::CancelCommandResponse* /*response*/) override { - abort(); - return ::grpc::Status(::grpc::StatusCode::UNIMPLEMENTED, ""); - } - }; - template - class WithGenericMethod_BindTableToVariable : public BaseClass { - private: - void BaseClassMustBeDerivedFromService(const Service* /*service*/) {} - public: - WithGenericMethod_BindTableToVariable() { - ::grpc::Service::MarkMethodGeneric(6); - } - ~WithGenericMethod_BindTableToVariable() override { - BaseClassMustBeDerivedFromService(this); - } - // disable synchronous version of this method - ::grpc::Status BindTableToVariable(::grpc::ServerContext* /*context*/, const ::io::deephaven::proto::backplane::script::grpc::BindTableToVariableRequest* /*request*/, ::io::deephaven::proto::backplane::script::grpc::BindTableToVariableResponse* /*response*/) override { - abort(); - return ::grpc::Status(::grpc::StatusCode::UNIMPLEMENTED, ""); - } - }; - template - class WithGenericMethod_AutoCompleteStream : public BaseClass { - private: - void BaseClassMustBeDerivedFromService(const Service* /*service*/) {} - public: - WithGenericMethod_AutoCompleteStream() { - ::grpc::Service::MarkMethodGeneric(7); - } - ~WithGenericMethod_AutoCompleteStream() override { - BaseClassMustBeDerivedFromService(this); - } - // disable synchronous version of this method - ::grpc::Status AutoCompleteStream(::grpc::ServerContext* /*context*/, ::grpc::ServerReaderWriter< ::io::deephaven::proto::backplane::script::grpc::AutoCompleteResponse, ::io::deephaven::proto::backplane::script::grpc::AutoCompleteRequest>* /*stream*/) override { - abort(); - return ::grpc::Status(::grpc::StatusCode::UNIMPLEMENTED, ""); - } - }; - template - class WithGenericMethod_CancelAutoComplete : public BaseClass { - private: - void BaseClassMustBeDerivedFromService(const Service* /*service*/) {} - public: - WithGenericMethod_CancelAutoComplete() { - ::grpc::Service::MarkMethodGeneric(8); - } - ~WithGenericMethod_CancelAutoComplete() override { - BaseClassMustBeDerivedFromService(this); - } - // disable synchronous version of this method - ::grpc::Status CancelAutoComplete(::grpc::ServerContext* /*context*/, const ::io::deephaven::proto::backplane::script::grpc::CancelAutoCompleteRequest* /*request*/, ::io::deephaven::proto::backplane::script::grpc::CancelAutoCompleteResponse* /*response*/) override { - abort(); - return ::grpc::Status(::grpc::StatusCode::UNIMPLEMENTED, ""); - } - }; - template - class WithGenericMethod_OpenAutoCompleteStream : public BaseClass { - private: - void BaseClassMustBeDerivedFromService(const Service* /*service*/) {} - public: - WithGenericMethod_OpenAutoCompleteStream() { - ::grpc::Service::MarkMethodGeneric(9); - } - ~WithGenericMethod_OpenAutoCompleteStream() override { - BaseClassMustBeDerivedFromService(this); - } - // disable synchronous version of this method - ::grpc::Status OpenAutoCompleteStream(::grpc::ServerContext* /*context*/, const ::io::deephaven::proto::backplane::script::grpc::AutoCompleteRequest* /*request*/, ::grpc::ServerWriter< ::io::deephaven::proto::backplane::script::grpc::AutoCompleteResponse>* /*writer*/) override { - abort(); - return ::grpc::Status(::grpc::StatusCode::UNIMPLEMENTED, ""); - } - }; - template - class WithGenericMethod_NextAutoCompleteStream : public BaseClass { - private: - void BaseClassMustBeDerivedFromService(const Service* /*service*/) {} - public: - WithGenericMethod_NextAutoCompleteStream() { - ::grpc::Service::MarkMethodGeneric(10); - } - ~WithGenericMethod_NextAutoCompleteStream() override { - BaseClassMustBeDerivedFromService(this); - } - // disable synchronous version of this method - ::grpc::Status NextAutoCompleteStream(::grpc::ServerContext* /*context*/, const ::io::deephaven::proto::backplane::script::grpc::AutoCompleteRequest* /*request*/, ::io::deephaven::proto::backplane::script::grpc::BrowserNextResponse* /*response*/) override { - abort(); - return ::grpc::Status(::grpc::StatusCode::UNIMPLEMENTED, ""); - } - }; - template - class WithRawMethod_GetConsoleTypes : public BaseClass { - private: - void BaseClassMustBeDerivedFromService(const Service* /*service*/) {} - public: - WithRawMethod_GetConsoleTypes() { - ::grpc::Service::MarkMethodRaw(0); - } - ~WithRawMethod_GetConsoleTypes() override { - BaseClassMustBeDerivedFromService(this); - } - // disable synchronous version of this method - ::grpc::Status GetConsoleTypes(::grpc::ServerContext* /*context*/, const ::io::deephaven::proto::backplane::script::grpc::GetConsoleTypesRequest* /*request*/, ::io::deephaven::proto::backplane::script::grpc::GetConsoleTypesResponse* /*response*/) override { - abort(); - return ::grpc::Status(::grpc::StatusCode::UNIMPLEMENTED, ""); - } - void RequestGetConsoleTypes(::grpc::ServerContext* context, ::grpc::ByteBuffer* request, ::grpc::ServerAsyncResponseWriter< ::grpc::ByteBuffer>* response, ::grpc::CompletionQueue* new_call_cq, ::grpc::ServerCompletionQueue* notification_cq, void *tag) { - ::grpc::Service::RequestAsyncUnary(0, context, request, response, new_call_cq, notification_cq, tag); - } - }; - template - class WithRawMethod_StartConsole : public BaseClass { - private: - void BaseClassMustBeDerivedFromService(const Service* /*service*/) {} - public: - WithRawMethod_StartConsole() { - ::grpc::Service::MarkMethodRaw(1); - } - ~WithRawMethod_StartConsole() override { - BaseClassMustBeDerivedFromService(this); - } - // disable synchronous version of this method - ::grpc::Status StartConsole(::grpc::ServerContext* /*context*/, const ::io::deephaven::proto::backplane::script::grpc::StartConsoleRequest* /*request*/, ::io::deephaven::proto::backplane::script::grpc::StartConsoleResponse* /*response*/) override { - abort(); - return ::grpc::Status(::grpc::StatusCode::UNIMPLEMENTED, ""); - } - void RequestStartConsole(::grpc::ServerContext* context, ::grpc::ByteBuffer* request, ::grpc::ServerAsyncResponseWriter< ::grpc::ByteBuffer>* response, ::grpc::CompletionQueue* new_call_cq, ::grpc::ServerCompletionQueue* notification_cq, void *tag) { - ::grpc::Service::RequestAsyncUnary(1, context, request, response, new_call_cq, notification_cq, tag); - } - }; - template - class WithRawMethod_GetHeapInfo : public BaseClass { - private: - void BaseClassMustBeDerivedFromService(const Service* /*service*/) {} - public: - WithRawMethod_GetHeapInfo() { - ::grpc::Service::MarkMethodRaw(2); - } - ~WithRawMethod_GetHeapInfo() override { - BaseClassMustBeDerivedFromService(this); - } - // disable synchronous version of this method - ::grpc::Status GetHeapInfo(::grpc::ServerContext* /*context*/, const ::io::deephaven::proto::backplane::script::grpc::GetHeapInfoRequest* /*request*/, ::io::deephaven::proto::backplane::script::grpc::GetHeapInfoResponse* /*response*/) override { - abort(); - return ::grpc::Status(::grpc::StatusCode::UNIMPLEMENTED, ""); - } - void RequestGetHeapInfo(::grpc::ServerContext* context, ::grpc::ByteBuffer* request, ::grpc::ServerAsyncResponseWriter< ::grpc::ByteBuffer>* response, ::grpc::CompletionQueue* new_call_cq, ::grpc::ServerCompletionQueue* notification_cq, void *tag) { - ::grpc::Service::RequestAsyncUnary(2, context, request, response, new_call_cq, notification_cq, tag); - } - }; - template - class WithRawMethod_SubscribeToLogs : public BaseClass { - private: - void BaseClassMustBeDerivedFromService(const Service* /*service*/) {} - public: - WithRawMethod_SubscribeToLogs() { - ::grpc::Service::MarkMethodRaw(3); - } - ~WithRawMethod_SubscribeToLogs() override { - BaseClassMustBeDerivedFromService(this); - } - // disable synchronous version of this method - ::grpc::Status SubscribeToLogs(::grpc::ServerContext* /*context*/, const ::io::deephaven::proto::backplane::script::grpc::LogSubscriptionRequest* /*request*/, ::grpc::ServerWriter< ::io::deephaven::proto::backplane::script::grpc::LogSubscriptionData>* /*writer*/) override { - abort(); - return ::grpc::Status(::grpc::StatusCode::UNIMPLEMENTED, ""); - } - void RequestSubscribeToLogs(::grpc::ServerContext* context, ::grpc::ByteBuffer* request, ::grpc::ServerAsyncWriter< ::grpc::ByteBuffer>* writer, ::grpc::CompletionQueue* new_call_cq, ::grpc::ServerCompletionQueue* notification_cq, void *tag) { - ::grpc::Service::RequestAsyncServerStreaming(3, context, request, writer, new_call_cq, notification_cq, tag); - } - }; - template - class WithRawMethod_ExecuteCommand : public BaseClass { - private: - void BaseClassMustBeDerivedFromService(const Service* /*service*/) {} - public: - WithRawMethod_ExecuteCommand() { - ::grpc::Service::MarkMethodRaw(4); - } - ~WithRawMethod_ExecuteCommand() override { - BaseClassMustBeDerivedFromService(this); - } - // disable synchronous version of this method - ::grpc::Status ExecuteCommand(::grpc::ServerContext* /*context*/, const ::io::deephaven::proto::backplane::script::grpc::ExecuteCommandRequest* /*request*/, ::io::deephaven::proto::backplane::script::grpc::ExecuteCommandResponse* /*response*/) override { - abort(); - return ::grpc::Status(::grpc::StatusCode::UNIMPLEMENTED, ""); - } - void RequestExecuteCommand(::grpc::ServerContext* context, ::grpc::ByteBuffer* request, ::grpc::ServerAsyncResponseWriter< ::grpc::ByteBuffer>* response, ::grpc::CompletionQueue* new_call_cq, ::grpc::ServerCompletionQueue* notification_cq, void *tag) { - ::grpc::Service::RequestAsyncUnary(4, context, request, response, new_call_cq, notification_cq, tag); - } - }; - template - class WithRawMethod_CancelCommand : public BaseClass { - private: - void BaseClassMustBeDerivedFromService(const Service* /*service*/) {} - public: - WithRawMethod_CancelCommand() { - ::grpc::Service::MarkMethodRaw(5); - } - ~WithRawMethod_CancelCommand() override { - BaseClassMustBeDerivedFromService(this); - } - // disable synchronous version of this method - ::grpc::Status CancelCommand(::grpc::ServerContext* /*context*/, const ::io::deephaven::proto::backplane::script::grpc::CancelCommandRequest* /*request*/, ::io::deephaven::proto::backplane::script::grpc::CancelCommandResponse* /*response*/) override { - abort(); - return ::grpc::Status(::grpc::StatusCode::UNIMPLEMENTED, ""); - } - void RequestCancelCommand(::grpc::ServerContext* context, ::grpc::ByteBuffer* request, ::grpc::ServerAsyncResponseWriter< ::grpc::ByteBuffer>* response, ::grpc::CompletionQueue* new_call_cq, ::grpc::ServerCompletionQueue* notification_cq, void *tag) { - ::grpc::Service::RequestAsyncUnary(5, context, request, response, new_call_cq, notification_cq, tag); - } - }; - template - class WithRawMethod_BindTableToVariable : public BaseClass { - private: - void BaseClassMustBeDerivedFromService(const Service* /*service*/) {} - public: - WithRawMethod_BindTableToVariable() { - ::grpc::Service::MarkMethodRaw(6); - } - ~WithRawMethod_BindTableToVariable() override { - BaseClassMustBeDerivedFromService(this); - } - // disable synchronous version of this method - ::grpc::Status BindTableToVariable(::grpc::ServerContext* /*context*/, const ::io::deephaven::proto::backplane::script::grpc::BindTableToVariableRequest* /*request*/, ::io::deephaven::proto::backplane::script::grpc::BindTableToVariableResponse* /*response*/) override { - abort(); - return ::grpc::Status(::grpc::StatusCode::UNIMPLEMENTED, ""); - } - void RequestBindTableToVariable(::grpc::ServerContext* context, ::grpc::ByteBuffer* request, ::grpc::ServerAsyncResponseWriter< ::grpc::ByteBuffer>* response, ::grpc::CompletionQueue* new_call_cq, ::grpc::ServerCompletionQueue* notification_cq, void *tag) { - ::grpc::Service::RequestAsyncUnary(6, context, request, response, new_call_cq, notification_cq, tag); - } - }; - template - class WithRawMethod_AutoCompleteStream : public BaseClass { - private: - void BaseClassMustBeDerivedFromService(const Service* /*service*/) {} - public: - WithRawMethod_AutoCompleteStream() { - ::grpc::Service::MarkMethodRaw(7); - } - ~WithRawMethod_AutoCompleteStream() override { - BaseClassMustBeDerivedFromService(this); - } - // disable synchronous version of this method - ::grpc::Status AutoCompleteStream(::grpc::ServerContext* /*context*/, ::grpc::ServerReaderWriter< ::io::deephaven::proto::backplane::script::grpc::AutoCompleteResponse, ::io::deephaven::proto::backplane::script::grpc::AutoCompleteRequest>* /*stream*/) override { - abort(); - return ::grpc::Status(::grpc::StatusCode::UNIMPLEMENTED, ""); - } - void RequestAutoCompleteStream(::grpc::ServerContext* context, ::grpc::ServerAsyncReaderWriter< ::grpc::ByteBuffer, ::grpc::ByteBuffer>* stream, ::grpc::CompletionQueue* new_call_cq, ::grpc::ServerCompletionQueue* notification_cq, void *tag) { - ::grpc::Service::RequestAsyncBidiStreaming(7, context, stream, new_call_cq, notification_cq, tag); - } - }; - template - class WithRawMethod_CancelAutoComplete : public BaseClass { - private: - void BaseClassMustBeDerivedFromService(const Service* /*service*/) {} - public: - WithRawMethod_CancelAutoComplete() { - ::grpc::Service::MarkMethodRaw(8); - } - ~WithRawMethod_CancelAutoComplete() override { - BaseClassMustBeDerivedFromService(this); - } - // disable synchronous version of this method - ::grpc::Status CancelAutoComplete(::grpc::ServerContext* /*context*/, const ::io::deephaven::proto::backplane::script::grpc::CancelAutoCompleteRequest* /*request*/, ::io::deephaven::proto::backplane::script::grpc::CancelAutoCompleteResponse* /*response*/) override { - abort(); - return ::grpc::Status(::grpc::StatusCode::UNIMPLEMENTED, ""); - } - void RequestCancelAutoComplete(::grpc::ServerContext* context, ::grpc::ByteBuffer* request, ::grpc::ServerAsyncResponseWriter< ::grpc::ByteBuffer>* response, ::grpc::CompletionQueue* new_call_cq, ::grpc::ServerCompletionQueue* notification_cq, void *tag) { - ::grpc::Service::RequestAsyncUnary(8, context, request, response, new_call_cq, notification_cq, tag); - } - }; - template - class WithRawMethod_OpenAutoCompleteStream : public BaseClass { - private: - void BaseClassMustBeDerivedFromService(const Service* /*service*/) {} - public: - WithRawMethod_OpenAutoCompleteStream() { - ::grpc::Service::MarkMethodRaw(9); - } - ~WithRawMethod_OpenAutoCompleteStream() override { - BaseClassMustBeDerivedFromService(this); - } - // disable synchronous version of this method - ::grpc::Status OpenAutoCompleteStream(::grpc::ServerContext* /*context*/, const ::io::deephaven::proto::backplane::script::grpc::AutoCompleteRequest* /*request*/, ::grpc::ServerWriter< ::io::deephaven::proto::backplane::script::grpc::AutoCompleteResponse>* /*writer*/) override { - abort(); - return ::grpc::Status(::grpc::StatusCode::UNIMPLEMENTED, ""); - } - void RequestOpenAutoCompleteStream(::grpc::ServerContext* context, ::grpc::ByteBuffer* request, ::grpc::ServerAsyncWriter< ::grpc::ByteBuffer>* writer, ::grpc::CompletionQueue* new_call_cq, ::grpc::ServerCompletionQueue* notification_cq, void *tag) { - ::grpc::Service::RequestAsyncServerStreaming(9, context, request, writer, new_call_cq, notification_cq, tag); - } - }; - template - class WithRawMethod_NextAutoCompleteStream : public BaseClass { - private: - void BaseClassMustBeDerivedFromService(const Service* /*service*/) {} - public: - WithRawMethod_NextAutoCompleteStream() { - ::grpc::Service::MarkMethodRaw(10); - } - ~WithRawMethod_NextAutoCompleteStream() override { - BaseClassMustBeDerivedFromService(this); - } - // disable synchronous version of this method - ::grpc::Status NextAutoCompleteStream(::grpc::ServerContext* /*context*/, const ::io::deephaven::proto::backplane::script::grpc::AutoCompleteRequest* /*request*/, ::io::deephaven::proto::backplane::script::grpc::BrowserNextResponse* /*response*/) override { - abort(); - return ::grpc::Status(::grpc::StatusCode::UNIMPLEMENTED, ""); - } - void RequestNextAutoCompleteStream(::grpc::ServerContext* context, ::grpc::ByteBuffer* request, ::grpc::ServerAsyncResponseWriter< ::grpc::ByteBuffer>* response, ::grpc::CompletionQueue* new_call_cq, ::grpc::ServerCompletionQueue* notification_cq, void *tag) { - ::grpc::Service::RequestAsyncUnary(10, context, request, response, new_call_cq, notification_cq, tag); - } - }; - template - class WithRawCallbackMethod_GetConsoleTypes : public BaseClass { - private: - void BaseClassMustBeDerivedFromService(const Service* /*service*/) {} - public: - WithRawCallbackMethod_GetConsoleTypes() { - ::grpc::Service::MarkMethodRawCallback(0, - new ::grpc::internal::CallbackUnaryHandler< ::grpc::ByteBuffer, ::grpc::ByteBuffer>( - [this]( - ::grpc::CallbackServerContext* context, const ::grpc::ByteBuffer* request, ::grpc::ByteBuffer* response) { return this->GetConsoleTypes(context, request, response); })); - } - ~WithRawCallbackMethod_GetConsoleTypes() override { - BaseClassMustBeDerivedFromService(this); - } - // disable synchronous version of this method - ::grpc::Status GetConsoleTypes(::grpc::ServerContext* /*context*/, const ::io::deephaven::proto::backplane::script::grpc::GetConsoleTypesRequest* /*request*/, ::io::deephaven::proto::backplane::script::grpc::GetConsoleTypesResponse* /*response*/) override { - abort(); - return ::grpc::Status(::grpc::StatusCode::UNIMPLEMENTED, ""); - } - virtual ::grpc::ServerUnaryReactor* GetConsoleTypes( - ::grpc::CallbackServerContext* /*context*/, const ::grpc::ByteBuffer* /*request*/, ::grpc::ByteBuffer* /*response*/) { return nullptr; } - }; - template - class WithRawCallbackMethod_StartConsole : public BaseClass { - private: - void BaseClassMustBeDerivedFromService(const Service* /*service*/) {} - public: - WithRawCallbackMethod_StartConsole() { - ::grpc::Service::MarkMethodRawCallback(1, - new ::grpc::internal::CallbackUnaryHandler< ::grpc::ByteBuffer, ::grpc::ByteBuffer>( - [this]( - ::grpc::CallbackServerContext* context, const ::grpc::ByteBuffer* request, ::grpc::ByteBuffer* response) { return this->StartConsole(context, request, response); })); - } - ~WithRawCallbackMethod_StartConsole() override { - BaseClassMustBeDerivedFromService(this); - } - // disable synchronous version of this method - ::grpc::Status StartConsole(::grpc::ServerContext* /*context*/, const ::io::deephaven::proto::backplane::script::grpc::StartConsoleRequest* /*request*/, ::io::deephaven::proto::backplane::script::grpc::StartConsoleResponse* /*response*/) override { - abort(); - return ::grpc::Status(::grpc::StatusCode::UNIMPLEMENTED, ""); - } - virtual ::grpc::ServerUnaryReactor* StartConsole( - ::grpc::CallbackServerContext* /*context*/, const ::grpc::ByteBuffer* /*request*/, ::grpc::ByteBuffer* /*response*/) { return nullptr; } - }; - template - class WithRawCallbackMethod_GetHeapInfo : public BaseClass { - private: - void BaseClassMustBeDerivedFromService(const Service* /*service*/) {} - public: - WithRawCallbackMethod_GetHeapInfo() { - ::grpc::Service::MarkMethodRawCallback(2, - new ::grpc::internal::CallbackUnaryHandler< ::grpc::ByteBuffer, ::grpc::ByteBuffer>( - [this]( - ::grpc::CallbackServerContext* context, const ::grpc::ByteBuffer* request, ::grpc::ByteBuffer* response) { return this->GetHeapInfo(context, request, response); })); - } - ~WithRawCallbackMethod_GetHeapInfo() override { - BaseClassMustBeDerivedFromService(this); - } - // disable synchronous version of this method - ::grpc::Status GetHeapInfo(::grpc::ServerContext* /*context*/, const ::io::deephaven::proto::backplane::script::grpc::GetHeapInfoRequest* /*request*/, ::io::deephaven::proto::backplane::script::grpc::GetHeapInfoResponse* /*response*/) override { - abort(); - return ::grpc::Status(::grpc::StatusCode::UNIMPLEMENTED, ""); - } - virtual ::grpc::ServerUnaryReactor* GetHeapInfo( - ::grpc::CallbackServerContext* /*context*/, const ::grpc::ByteBuffer* /*request*/, ::grpc::ByteBuffer* /*response*/) { return nullptr; } - }; - template - class WithRawCallbackMethod_SubscribeToLogs : public BaseClass { - private: - void BaseClassMustBeDerivedFromService(const Service* /*service*/) {} - public: - WithRawCallbackMethod_SubscribeToLogs() { - ::grpc::Service::MarkMethodRawCallback(3, - new ::grpc::internal::CallbackServerStreamingHandler< ::grpc::ByteBuffer, ::grpc::ByteBuffer>( - [this]( - ::grpc::CallbackServerContext* context, const::grpc::ByteBuffer* request) { return this->SubscribeToLogs(context, request); })); - } - ~WithRawCallbackMethod_SubscribeToLogs() override { - BaseClassMustBeDerivedFromService(this); - } - // disable synchronous version of this method - ::grpc::Status SubscribeToLogs(::grpc::ServerContext* /*context*/, const ::io::deephaven::proto::backplane::script::grpc::LogSubscriptionRequest* /*request*/, ::grpc::ServerWriter< ::io::deephaven::proto::backplane::script::grpc::LogSubscriptionData>* /*writer*/) override { - abort(); - return ::grpc::Status(::grpc::StatusCode::UNIMPLEMENTED, ""); - } - virtual ::grpc::ServerWriteReactor< ::grpc::ByteBuffer>* SubscribeToLogs( - ::grpc::CallbackServerContext* /*context*/, const ::grpc::ByteBuffer* /*request*/) { return nullptr; } - }; - template - class WithRawCallbackMethod_ExecuteCommand : public BaseClass { - private: - void BaseClassMustBeDerivedFromService(const Service* /*service*/) {} - public: - WithRawCallbackMethod_ExecuteCommand() { - ::grpc::Service::MarkMethodRawCallback(4, - new ::grpc::internal::CallbackUnaryHandler< ::grpc::ByteBuffer, ::grpc::ByteBuffer>( - [this]( - ::grpc::CallbackServerContext* context, const ::grpc::ByteBuffer* request, ::grpc::ByteBuffer* response) { return this->ExecuteCommand(context, request, response); })); - } - ~WithRawCallbackMethod_ExecuteCommand() override { - BaseClassMustBeDerivedFromService(this); - } - // disable synchronous version of this method - ::grpc::Status ExecuteCommand(::grpc::ServerContext* /*context*/, const ::io::deephaven::proto::backplane::script::grpc::ExecuteCommandRequest* /*request*/, ::io::deephaven::proto::backplane::script::grpc::ExecuteCommandResponse* /*response*/) override { - abort(); - return ::grpc::Status(::grpc::StatusCode::UNIMPLEMENTED, ""); - } - virtual ::grpc::ServerUnaryReactor* ExecuteCommand( - ::grpc::CallbackServerContext* /*context*/, const ::grpc::ByteBuffer* /*request*/, ::grpc::ByteBuffer* /*response*/) { return nullptr; } - }; - template - class WithRawCallbackMethod_CancelCommand : public BaseClass { - private: - void BaseClassMustBeDerivedFromService(const Service* /*service*/) {} - public: - WithRawCallbackMethod_CancelCommand() { - ::grpc::Service::MarkMethodRawCallback(5, - new ::grpc::internal::CallbackUnaryHandler< ::grpc::ByteBuffer, ::grpc::ByteBuffer>( - [this]( - ::grpc::CallbackServerContext* context, const ::grpc::ByteBuffer* request, ::grpc::ByteBuffer* response) { return this->CancelCommand(context, request, response); })); - } - ~WithRawCallbackMethod_CancelCommand() override { - BaseClassMustBeDerivedFromService(this); - } - // disable synchronous version of this method - ::grpc::Status CancelCommand(::grpc::ServerContext* /*context*/, const ::io::deephaven::proto::backplane::script::grpc::CancelCommandRequest* /*request*/, ::io::deephaven::proto::backplane::script::grpc::CancelCommandResponse* /*response*/) override { - abort(); - return ::grpc::Status(::grpc::StatusCode::UNIMPLEMENTED, ""); - } - virtual ::grpc::ServerUnaryReactor* CancelCommand( - ::grpc::CallbackServerContext* /*context*/, const ::grpc::ByteBuffer* /*request*/, ::grpc::ByteBuffer* /*response*/) { return nullptr; } - }; - template - class WithRawCallbackMethod_BindTableToVariable : public BaseClass { - private: - void BaseClassMustBeDerivedFromService(const Service* /*service*/) {} - public: - WithRawCallbackMethod_BindTableToVariable() { - ::grpc::Service::MarkMethodRawCallback(6, - new ::grpc::internal::CallbackUnaryHandler< ::grpc::ByteBuffer, ::grpc::ByteBuffer>( - [this]( - ::grpc::CallbackServerContext* context, const ::grpc::ByteBuffer* request, ::grpc::ByteBuffer* response) { return this->BindTableToVariable(context, request, response); })); - } - ~WithRawCallbackMethod_BindTableToVariable() override { - BaseClassMustBeDerivedFromService(this); - } - // disable synchronous version of this method - ::grpc::Status BindTableToVariable(::grpc::ServerContext* /*context*/, const ::io::deephaven::proto::backplane::script::grpc::BindTableToVariableRequest* /*request*/, ::io::deephaven::proto::backplane::script::grpc::BindTableToVariableResponse* /*response*/) override { - abort(); - return ::grpc::Status(::grpc::StatusCode::UNIMPLEMENTED, ""); - } - virtual ::grpc::ServerUnaryReactor* BindTableToVariable( - ::grpc::CallbackServerContext* /*context*/, const ::grpc::ByteBuffer* /*request*/, ::grpc::ByteBuffer* /*response*/) { return nullptr; } - }; - template - class WithRawCallbackMethod_AutoCompleteStream : public BaseClass { - private: - void BaseClassMustBeDerivedFromService(const Service* /*service*/) {} - public: - WithRawCallbackMethod_AutoCompleteStream() { - ::grpc::Service::MarkMethodRawCallback(7, - new ::grpc::internal::CallbackBidiHandler< ::grpc::ByteBuffer, ::grpc::ByteBuffer>( - [this]( - ::grpc::CallbackServerContext* context) { return this->AutoCompleteStream(context); })); - } - ~WithRawCallbackMethod_AutoCompleteStream() override { - BaseClassMustBeDerivedFromService(this); - } - // disable synchronous version of this method - ::grpc::Status AutoCompleteStream(::grpc::ServerContext* /*context*/, ::grpc::ServerReaderWriter< ::io::deephaven::proto::backplane::script::grpc::AutoCompleteResponse, ::io::deephaven::proto::backplane::script::grpc::AutoCompleteRequest>* /*stream*/) override { - abort(); - return ::grpc::Status(::grpc::StatusCode::UNIMPLEMENTED, ""); - } - virtual ::grpc::ServerBidiReactor< ::grpc::ByteBuffer, ::grpc::ByteBuffer>* AutoCompleteStream( - ::grpc::CallbackServerContext* /*context*/) - { return nullptr; } - }; - template - class WithRawCallbackMethod_CancelAutoComplete : public BaseClass { - private: - void BaseClassMustBeDerivedFromService(const Service* /*service*/) {} - public: - WithRawCallbackMethod_CancelAutoComplete() { - ::grpc::Service::MarkMethodRawCallback(8, - new ::grpc::internal::CallbackUnaryHandler< ::grpc::ByteBuffer, ::grpc::ByteBuffer>( - [this]( - ::grpc::CallbackServerContext* context, const ::grpc::ByteBuffer* request, ::grpc::ByteBuffer* response) { return this->CancelAutoComplete(context, request, response); })); - } - ~WithRawCallbackMethod_CancelAutoComplete() override { - BaseClassMustBeDerivedFromService(this); - } - // disable synchronous version of this method - ::grpc::Status CancelAutoComplete(::grpc::ServerContext* /*context*/, const ::io::deephaven::proto::backplane::script::grpc::CancelAutoCompleteRequest* /*request*/, ::io::deephaven::proto::backplane::script::grpc::CancelAutoCompleteResponse* /*response*/) override { - abort(); - return ::grpc::Status(::grpc::StatusCode::UNIMPLEMENTED, ""); - } - virtual ::grpc::ServerUnaryReactor* CancelAutoComplete( - ::grpc::CallbackServerContext* /*context*/, const ::grpc::ByteBuffer* /*request*/, ::grpc::ByteBuffer* /*response*/) { return nullptr; } - }; - template - class WithRawCallbackMethod_OpenAutoCompleteStream : public BaseClass { - private: - void BaseClassMustBeDerivedFromService(const Service* /*service*/) {} - public: - WithRawCallbackMethod_OpenAutoCompleteStream() { - ::grpc::Service::MarkMethodRawCallback(9, - new ::grpc::internal::CallbackServerStreamingHandler< ::grpc::ByteBuffer, ::grpc::ByteBuffer>( - [this]( - ::grpc::CallbackServerContext* context, const::grpc::ByteBuffer* request) { return this->OpenAutoCompleteStream(context, request); })); - } - ~WithRawCallbackMethod_OpenAutoCompleteStream() override { - BaseClassMustBeDerivedFromService(this); - } - // disable synchronous version of this method - ::grpc::Status OpenAutoCompleteStream(::grpc::ServerContext* /*context*/, const ::io::deephaven::proto::backplane::script::grpc::AutoCompleteRequest* /*request*/, ::grpc::ServerWriter< ::io::deephaven::proto::backplane::script::grpc::AutoCompleteResponse>* /*writer*/) override { - abort(); - return ::grpc::Status(::grpc::StatusCode::UNIMPLEMENTED, ""); - } - virtual ::grpc::ServerWriteReactor< ::grpc::ByteBuffer>* OpenAutoCompleteStream( - ::grpc::CallbackServerContext* /*context*/, const ::grpc::ByteBuffer* /*request*/) { return nullptr; } - }; - template - class WithRawCallbackMethod_NextAutoCompleteStream : public BaseClass { - private: - void BaseClassMustBeDerivedFromService(const Service* /*service*/) {} - public: - WithRawCallbackMethod_NextAutoCompleteStream() { - ::grpc::Service::MarkMethodRawCallback(10, - new ::grpc::internal::CallbackUnaryHandler< ::grpc::ByteBuffer, ::grpc::ByteBuffer>( - [this]( - ::grpc::CallbackServerContext* context, const ::grpc::ByteBuffer* request, ::grpc::ByteBuffer* response) { return this->NextAutoCompleteStream(context, request, response); })); - } - ~WithRawCallbackMethod_NextAutoCompleteStream() override { - BaseClassMustBeDerivedFromService(this); - } - // disable synchronous version of this method - ::grpc::Status NextAutoCompleteStream(::grpc::ServerContext* /*context*/, const ::io::deephaven::proto::backplane::script::grpc::AutoCompleteRequest* /*request*/, ::io::deephaven::proto::backplane::script::grpc::BrowserNextResponse* /*response*/) override { - abort(); - return ::grpc::Status(::grpc::StatusCode::UNIMPLEMENTED, ""); - } - virtual ::grpc::ServerUnaryReactor* NextAutoCompleteStream( - ::grpc::CallbackServerContext* /*context*/, const ::grpc::ByteBuffer* /*request*/, ::grpc::ByteBuffer* /*response*/) { return nullptr; } - }; - template - class WithStreamedUnaryMethod_GetConsoleTypes : public BaseClass { - private: - void BaseClassMustBeDerivedFromService(const Service* /*service*/) {} - public: - WithStreamedUnaryMethod_GetConsoleTypes() { - ::grpc::Service::MarkMethodStreamed(0, - new ::grpc::internal::StreamedUnaryHandler< - ::io::deephaven::proto::backplane::script::grpc::GetConsoleTypesRequest, ::io::deephaven::proto::backplane::script::grpc::GetConsoleTypesResponse>( - [this](::grpc::ServerContext* context, - ::grpc::ServerUnaryStreamer< - ::io::deephaven::proto::backplane::script::grpc::GetConsoleTypesRequest, ::io::deephaven::proto::backplane::script::grpc::GetConsoleTypesResponse>* streamer) { - return this->StreamedGetConsoleTypes(context, - streamer); - })); - } - ~WithStreamedUnaryMethod_GetConsoleTypes() override { - BaseClassMustBeDerivedFromService(this); - } - // disable regular version of this method - ::grpc::Status GetConsoleTypes(::grpc::ServerContext* /*context*/, const ::io::deephaven::proto::backplane::script::grpc::GetConsoleTypesRequest* /*request*/, ::io::deephaven::proto::backplane::script::grpc::GetConsoleTypesResponse* /*response*/) override { - abort(); - return ::grpc::Status(::grpc::StatusCode::UNIMPLEMENTED, ""); - } - // replace default version of method with streamed unary - virtual ::grpc::Status StreamedGetConsoleTypes(::grpc::ServerContext* context, ::grpc::ServerUnaryStreamer< ::io::deephaven::proto::backplane::script::grpc::GetConsoleTypesRequest,::io::deephaven::proto::backplane::script::grpc::GetConsoleTypesResponse>* server_unary_streamer) = 0; - }; - template - class WithStreamedUnaryMethod_StartConsole : public BaseClass { - private: - void BaseClassMustBeDerivedFromService(const Service* /*service*/) {} - public: - WithStreamedUnaryMethod_StartConsole() { - ::grpc::Service::MarkMethodStreamed(1, - new ::grpc::internal::StreamedUnaryHandler< - ::io::deephaven::proto::backplane::script::grpc::StartConsoleRequest, ::io::deephaven::proto::backplane::script::grpc::StartConsoleResponse>( - [this](::grpc::ServerContext* context, - ::grpc::ServerUnaryStreamer< - ::io::deephaven::proto::backplane::script::grpc::StartConsoleRequest, ::io::deephaven::proto::backplane::script::grpc::StartConsoleResponse>* streamer) { - return this->StreamedStartConsole(context, - streamer); - })); - } - ~WithStreamedUnaryMethod_StartConsole() override { - BaseClassMustBeDerivedFromService(this); - } - // disable regular version of this method - ::grpc::Status StartConsole(::grpc::ServerContext* /*context*/, const ::io::deephaven::proto::backplane::script::grpc::StartConsoleRequest* /*request*/, ::io::deephaven::proto::backplane::script::grpc::StartConsoleResponse* /*response*/) override { - abort(); - return ::grpc::Status(::grpc::StatusCode::UNIMPLEMENTED, ""); - } - // replace default version of method with streamed unary - virtual ::grpc::Status StreamedStartConsole(::grpc::ServerContext* context, ::grpc::ServerUnaryStreamer< ::io::deephaven::proto::backplane::script::grpc::StartConsoleRequest,::io::deephaven::proto::backplane::script::grpc::StartConsoleResponse>* server_unary_streamer) = 0; - }; - template - class WithStreamedUnaryMethod_GetHeapInfo : public BaseClass { - private: - void BaseClassMustBeDerivedFromService(const Service* /*service*/) {} - public: - WithStreamedUnaryMethod_GetHeapInfo() { - ::grpc::Service::MarkMethodStreamed(2, - new ::grpc::internal::StreamedUnaryHandler< - ::io::deephaven::proto::backplane::script::grpc::GetHeapInfoRequest, ::io::deephaven::proto::backplane::script::grpc::GetHeapInfoResponse>( - [this](::grpc::ServerContext* context, - ::grpc::ServerUnaryStreamer< - ::io::deephaven::proto::backplane::script::grpc::GetHeapInfoRequest, ::io::deephaven::proto::backplane::script::grpc::GetHeapInfoResponse>* streamer) { - return this->StreamedGetHeapInfo(context, - streamer); - })); - } - ~WithStreamedUnaryMethod_GetHeapInfo() override { - BaseClassMustBeDerivedFromService(this); - } - // disable regular version of this method - ::grpc::Status GetHeapInfo(::grpc::ServerContext* /*context*/, const ::io::deephaven::proto::backplane::script::grpc::GetHeapInfoRequest* /*request*/, ::io::deephaven::proto::backplane::script::grpc::GetHeapInfoResponse* /*response*/) override { - abort(); - return ::grpc::Status(::grpc::StatusCode::UNIMPLEMENTED, ""); - } - // replace default version of method with streamed unary - virtual ::grpc::Status StreamedGetHeapInfo(::grpc::ServerContext* context, ::grpc::ServerUnaryStreamer< ::io::deephaven::proto::backplane::script::grpc::GetHeapInfoRequest,::io::deephaven::proto::backplane::script::grpc::GetHeapInfoResponse>* server_unary_streamer) = 0; - }; - template - class WithStreamedUnaryMethod_ExecuteCommand : public BaseClass { - private: - void BaseClassMustBeDerivedFromService(const Service* /*service*/) {} - public: - WithStreamedUnaryMethod_ExecuteCommand() { - ::grpc::Service::MarkMethodStreamed(4, - new ::grpc::internal::StreamedUnaryHandler< - ::io::deephaven::proto::backplane::script::grpc::ExecuteCommandRequest, ::io::deephaven::proto::backplane::script::grpc::ExecuteCommandResponse>( - [this](::grpc::ServerContext* context, - ::grpc::ServerUnaryStreamer< - ::io::deephaven::proto::backplane::script::grpc::ExecuteCommandRequest, ::io::deephaven::proto::backplane::script::grpc::ExecuteCommandResponse>* streamer) { - return this->StreamedExecuteCommand(context, - streamer); - })); - } - ~WithStreamedUnaryMethod_ExecuteCommand() override { - BaseClassMustBeDerivedFromService(this); - } - // disable regular version of this method - ::grpc::Status ExecuteCommand(::grpc::ServerContext* /*context*/, const ::io::deephaven::proto::backplane::script::grpc::ExecuteCommandRequest* /*request*/, ::io::deephaven::proto::backplane::script::grpc::ExecuteCommandResponse* /*response*/) override { - abort(); - return ::grpc::Status(::grpc::StatusCode::UNIMPLEMENTED, ""); - } - // replace default version of method with streamed unary - virtual ::grpc::Status StreamedExecuteCommand(::grpc::ServerContext* context, ::grpc::ServerUnaryStreamer< ::io::deephaven::proto::backplane::script::grpc::ExecuteCommandRequest,::io::deephaven::proto::backplane::script::grpc::ExecuteCommandResponse>* server_unary_streamer) = 0; - }; - template - class WithStreamedUnaryMethod_CancelCommand : public BaseClass { - private: - void BaseClassMustBeDerivedFromService(const Service* /*service*/) {} - public: - WithStreamedUnaryMethod_CancelCommand() { - ::grpc::Service::MarkMethodStreamed(5, - new ::grpc::internal::StreamedUnaryHandler< - ::io::deephaven::proto::backplane::script::grpc::CancelCommandRequest, ::io::deephaven::proto::backplane::script::grpc::CancelCommandResponse>( - [this](::grpc::ServerContext* context, - ::grpc::ServerUnaryStreamer< - ::io::deephaven::proto::backplane::script::grpc::CancelCommandRequest, ::io::deephaven::proto::backplane::script::grpc::CancelCommandResponse>* streamer) { - return this->StreamedCancelCommand(context, - streamer); - })); - } - ~WithStreamedUnaryMethod_CancelCommand() override { - BaseClassMustBeDerivedFromService(this); - } - // disable regular version of this method - ::grpc::Status CancelCommand(::grpc::ServerContext* /*context*/, const ::io::deephaven::proto::backplane::script::grpc::CancelCommandRequest* /*request*/, ::io::deephaven::proto::backplane::script::grpc::CancelCommandResponse* /*response*/) override { - abort(); - return ::grpc::Status(::grpc::StatusCode::UNIMPLEMENTED, ""); - } - // replace default version of method with streamed unary - virtual ::grpc::Status StreamedCancelCommand(::grpc::ServerContext* context, ::grpc::ServerUnaryStreamer< ::io::deephaven::proto::backplane::script::grpc::CancelCommandRequest,::io::deephaven::proto::backplane::script::grpc::CancelCommandResponse>* server_unary_streamer) = 0; - }; - template - class WithStreamedUnaryMethod_BindTableToVariable : public BaseClass { - private: - void BaseClassMustBeDerivedFromService(const Service* /*service*/) {} - public: - WithStreamedUnaryMethod_BindTableToVariable() { - ::grpc::Service::MarkMethodStreamed(6, - new ::grpc::internal::StreamedUnaryHandler< - ::io::deephaven::proto::backplane::script::grpc::BindTableToVariableRequest, ::io::deephaven::proto::backplane::script::grpc::BindTableToVariableResponse>( - [this](::grpc::ServerContext* context, - ::grpc::ServerUnaryStreamer< - ::io::deephaven::proto::backplane::script::grpc::BindTableToVariableRequest, ::io::deephaven::proto::backplane::script::grpc::BindTableToVariableResponse>* streamer) { - return this->StreamedBindTableToVariable(context, - streamer); - })); - } - ~WithStreamedUnaryMethod_BindTableToVariable() override { - BaseClassMustBeDerivedFromService(this); - } - // disable regular version of this method - ::grpc::Status BindTableToVariable(::grpc::ServerContext* /*context*/, const ::io::deephaven::proto::backplane::script::grpc::BindTableToVariableRequest* /*request*/, ::io::deephaven::proto::backplane::script::grpc::BindTableToVariableResponse* /*response*/) override { - abort(); - return ::grpc::Status(::grpc::StatusCode::UNIMPLEMENTED, ""); - } - // replace default version of method with streamed unary - virtual ::grpc::Status StreamedBindTableToVariable(::grpc::ServerContext* context, ::grpc::ServerUnaryStreamer< ::io::deephaven::proto::backplane::script::grpc::BindTableToVariableRequest,::io::deephaven::proto::backplane::script::grpc::BindTableToVariableResponse>* server_unary_streamer) = 0; - }; - template - class WithStreamedUnaryMethod_CancelAutoComplete : public BaseClass { - private: - void BaseClassMustBeDerivedFromService(const Service* /*service*/) {} - public: - WithStreamedUnaryMethod_CancelAutoComplete() { - ::grpc::Service::MarkMethodStreamed(8, - new ::grpc::internal::StreamedUnaryHandler< - ::io::deephaven::proto::backplane::script::grpc::CancelAutoCompleteRequest, ::io::deephaven::proto::backplane::script::grpc::CancelAutoCompleteResponse>( - [this](::grpc::ServerContext* context, - ::grpc::ServerUnaryStreamer< - ::io::deephaven::proto::backplane::script::grpc::CancelAutoCompleteRequest, ::io::deephaven::proto::backplane::script::grpc::CancelAutoCompleteResponse>* streamer) { - return this->StreamedCancelAutoComplete(context, - streamer); - })); - } - ~WithStreamedUnaryMethod_CancelAutoComplete() override { - BaseClassMustBeDerivedFromService(this); - } - // disable regular version of this method - ::grpc::Status CancelAutoComplete(::grpc::ServerContext* /*context*/, const ::io::deephaven::proto::backplane::script::grpc::CancelAutoCompleteRequest* /*request*/, ::io::deephaven::proto::backplane::script::grpc::CancelAutoCompleteResponse* /*response*/) override { - abort(); - return ::grpc::Status(::grpc::StatusCode::UNIMPLEMENTED, ""); - } - // replace default version of method with streamed unary - virtual ::grpc::Status StreamedCancelAutoComplete(::grpc::ServerContext* context, ::grpc::ServerUnaryStreamer< ::io::deephaven::proto::backplane::script::grpc::CancelAutoCompleteRequest,::io::deephaven::proto::backplane::script::grpc::CancelAutoCompleteResponse>* server_unary_streamer) = 0; - }; - template - class WithStreamedUnaryMethod_NextAutoCompleteStream : public BaseClass { - private: - void BaseClassMustBeDerivedFromService(const Service* /*service*/) {} - public: - WithStreamedUnaryMethod_NextAutoCompleteStream() { - ::grpc::Service::MarkMethodStreamed(10, - new ::grpc::internal::StreamedUnaryHandler< - ::io::deephaven::proto::backplane::script::grpc::AutoCompleteRequest, ::io::deephaven::proto::backplane::script::grpc::BrowserNextResponse>( - [this](::grpc::ServerContext* context, - ::grpc::ServerUnaryStreamer< - ::io::deephaven::proto::backplane::script::grpc::AutoCompleteRequest, ::io::deephaven::proto::backplane::script::grpc::BrowserNextResponse>* streamer) { - return this->StreamedNextAutoCompleteStream(context, - streamer); - })); - } - ~WithStreamedUnaryMethod_NextAutoCompleteStream() override { - BaseClassMustBeDerivedFromService(this); - } - // disable regular version of this method - ::grpc::Status NextAutoCompleteStream(::grpc::ServerContext* /*context*/, const ::io::deephaven::proto::backplane::script::grpc::AutoCompleteRequest* /*request*/, ::io::deephaven::proto::backplane::script::grpc::BrowserNextResponse* /*response*/) override { - abort(); - return ::grpc::Status(::grpc::StatusCode::UNIMPLEMENTED, ""); - } - // replace default version of method with streamed unary - virtual ::grpc::Status StreamedNextAutoCompleteStream(::grpc::ServerContext* context, ::grpc::ServerUnaryStreamer< ::io::deephaven::proto::backplane::script::grpc::AutoCompleteRequest,::io::deephaven::proto::backplane::script::grpc::BrowserNextResponse>* server_unary_streamer) = 0; - }; - typedef WithStreamedUnaryMethod_GetConsoleTypes > > > > > > > StreamedUnaryService; - template - class WithSplitStreamingMethod_SubscribeToLogs : public BaseClass { - private: - void BaseClassMustBeDerivedFromService(const Service* /*service*/) {} - public: - WithSplitStreamingMethod_SubscribeToLogs() { - ::grpc::Service::MarkMethodStreamed(3, - new ::grpc::internal::SplitServerStreamingHandler< - ::io::deephaven::proto::backplane::script::grpc::LogSubscriptionRequest, ::io::deephaven::proto::backplane::script::grpc::LogSubscriptionData>( - [this](::grpc::ServerContext* context, - ::grpc::ServerSplitStreamer< - ::io::deephaven::proto::backplane::script::grpc::LogSubscriptionRequest, ::io::deephaven::proto::backplane::script::grpc::LogSubscriptionData>* streamer) { - return this->StreamedSubscribeToLogs(context, - streamer); - })); - } - ~WithSplitStreamingMethod_SubscribeToLogs() override { - BaseClassMustBeDerivedFromService(this); - } - // disable regular version of this method - ::grpc::Status SubscribeToLogs(::grpc::ServerContext* /*context*/, const ::io::deephaven::proto::backplane::script::grpc::LogSubscriptionRequest* /*request*/, ::grpc::ServerWriter< ::io::deephaven::proto::backplane::script::grpc::LogSubscriptionData>* /*writer*/) override { - abort(); - return ::grpc::Status(::grpc::StatusCode::UNIMPLEMENTED, ""); - } - // replace default version of method with split streamed - virtual ::grpc::Status StreamedSubscribeToLogs(::grpc::ServerContext* context, ::grpc::ServerSplitStreamer< ::io::deephaven::proto::backplane::script::grpc::LogSubscriptionRequest,::io::deephaven::proto::backplane::script::grpc::LogSubscriptionData>* server_split_streamer) = 0; - }; - template - class WithSplitStreamingMethod_OpenAutoCompleteStream : public BaseClass { - private: - void BaseClassMustBeDerivedFromService(const Service* /*service*/) {} - public: - WithSplitStreamingMethod_OpenAutoCompleteStream() { - ::grpc::Service::MarkMethodStreamed(9, - new ::grpc::internal::SplitServerStreamingHandler< - ::io::deephaven::proto::backplane::script::grpc::AutoCompleteRequest, ::io::deephaven::proto::backplane::script::grpc::AutoCompleteResponse>( - [this](::grpc::ServerContext* context, - ::grpc::ServerSplitStreamer< - ::io::deephaven::proto::backplane::script::grpc::AutoCompleteRequest, ::io::deephaven::proto::backplane::script::grpc::AutoCompleteResponse>* streamer) { - return this->StreamedOpenAutoCompleteStream(context, - streamer); - })); - } - ~WithSplitStreamingMethod_OpenAutoCompleteStream() override { - BaseClassMustBeDerivedFromService(this); - } - // disable regular version of this method - ::grpc::Status OpenAutoCompleteStream(::grpc::ServerContext* /*context*/, const ::io::deephaven::proto::backplane::script::grpc::AutoCompleteRequest* /*request*/, ::grpc::ServerWriter< ::io::deephaven::proto::backplane::script::grpc::AutoCompleteResponse>* /*writer*/) override { - abort(); - return ::grpc::Status(::grpc::StatusCode::UNIMPLEMENTED, ""); - } - // replace default version of method with split streamed - virtual ::grpc::Status StreamedOpenAutoCompleteStream(::grpc::ServerContext* context, ::grpc::ServerSplitStreamer< ::io::deephaven::proto::backplane::script::grpc::AutoCompleteRequest,::io::deephaven::proto::backplane::script::grpc::AutoCompleteResponse>* server_split_streamer) = 0; - }; - typedef WithSplitStreamingMethod_SubscribeToLogs > SplitStreamedService; - typedef WithStreamedUnaryMethod_GetConsoleTypes > > > > > > > > > StreamedService; -}; - -} // namespace grpc -} // namespace script -} // namespace backplane -} // namespace proto -} // namespace deephaven -} // namespace io - - -#endif // GRPC_deephaven_2fproto_2fconsole_2eproto__INCLUDED diff --git a/cpp-client/deephaven/dhclient/proto/deephaven/proto/console.pb.cc b/cpp-client/deephaven/dhclient/proto/deephaven/proto/console.pb.cc deleted file mode 100644 index 9fa1ddf18eb..00000000000 --- a/cpp-client/deephaven/dhclient/proto/deephaven/proto/console.pb.cc +++ /dev/null @@ -1,22750 +0,0 @@ -// 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" -// @@protoc_insertion_point(includes) - -// Must be included last. -#include "google/protobuf/port_def.inc" -PROTOBUF_PRAGMA_INIT_SEG -namespace _pb = ::google::protobuf; -namespace _pbi = ::google::protobuf::internal; -namespace _fl = ::google::protobuf::internal::field_layout; -namespace io { -namespace deephaven { -namespace proto { -namespace backplane { -namespace script { -namespace grpc { - -inline constexpr VersionedTextDocumentIdentifier::Impl_::Impl_( - ::_pbi::ConstantInitialized) noexcept - : uri_( - &::google::protobuf::internal::fixed_address_empty_string, - ::_pbi::ConstantInitialized()), - version_{0}, - _cached_size_{0} {} - -template -PROTOBUF_CONSTEXPR VersionedTextDocumentIdentifier::VersionedTextDocumentIdentifier(::_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() {} - union { - VersionedTextDocumentIdentifier _instance; - }; -}; - -PROTOBUF_ATTRIBUTE_NO_DESTROY PROTOBUF_CONSTINIT - PROTOBUF_ATTRIBUTE_INIT_PRIORITY1 VersionedTextDocumentIdentifierDefaultTypeInternal _VersionedTextDocumentIdentifier_default_instance_; - -inline constexpr TextDocumentItem::Impl_::Impl_( - ::_pbi::ConstantInitialized) noexcept - : uri_( - &::google::protobuf::internal::fixed_address_empty_string, - ::_pbi::ConstantInitialized()), - language_id_( - &::google::protobuf::internal::fixed_address_empty_string, - ::_pbi::ConstantInitialized()), - text_( - &::google::protobuf::internal::fixed_address_empty_string, - ::_pbi::ConstantInitialized()), - version_{0}, - _cached_size_{0} {} - -template -PROTOBUF_CONSTEXPR TextDocumentItem::TextDocumentItem(::_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() {} - union { - TextDocumentItem _instance; - }; -}; - -PROTOBUF_ATTRIBUTE_NO_DESTROY PROTOBUF_CONSTINIT - PROTOBUF_ATTRIBUTE_INIT_PRIORITY1 TextDocumentItemDefaultTypeInternal _TextDocumentItem_default_instance_; - -inline constexpr Position::Impl_::Impl_( - ::_pbi::ConstantInitialized) noexcept - : line_{0}, - character_{0}, - _cached_size_{0} {} - -template -PROTOBUF_CONSTEXPR Position::Position(::_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() {} - union { - Position _instance; - }; -}; - -PROTOBUF_ATTRIBUTE_NO_DESTROY PROTOBUF_CONSTINIT - PROTOBUF_ATTRIBUTE_INIT_PRIORITY1 PositionDefaultTypeInternal _Position_default_instance_; - -inline constexpr MarkupContent::Impl_::Impl_( - ::_pbi::ConstantInitialized) noexcept - : kind_( - &::google::protobuf::internal::fixed_address_empty_string, - ::_pbi::ConstantInitialized()), - value_( - &::google::protobuf::internal::fixed_address_empty_string, - ::_pbi::ConstantInitialized()), - _cached_size_{0} {} - -template -PROTOBUF_CONSTEXPR MarkupContent::MarkupContent(::_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() {} - union { - MarkupContent _instance; - }; -}; - -PROTOBUF_ATTRIBUTE_NO_DESTROY PROTOBUF_CONSTINIT - PROTOBUF_ATTRIBUTE_INIT_PRIORITY1 MarkupContentDefaultTypeInternal _MarkupContent_default_instance_; - -inline constexpr LogSubscriptionRequest::Impl_::Impl_( - ::_pbi::ConstantInitialized) noexcept - : levels_{}, - last_seen_log_timestamp_{::int64_t{0}}, - _cached_size_{0} {} - -template -PROTOBUF_CONSTEXPR LogSubscriptionRequest::LogSubscriptionRequest(::_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() {} - union { - LogSubscriptionRequest _instance; - }; -}; - -PROTOBUF_ATTRIBUTE_NO_DESTROY PROTOBUF_CONSTINIT - PROTOBUF_ATTRIBUTE_INIT_PRIORITY1 LogSubscriptionRequestDefaultTypeInternal _LogSubscriptionRequest_default_instance_; - -inline constexpr LogSubscriptionData::Impl_::Impl_( - ::_pbi::ConstantInitialized) noexcept - : log_level_( - &::google::protobuf::internal::fixed_address_empty_string, - ::_pbi::ConstantInitialized()), - message_( - &::google::protobuf::internal::fixed_address_empty_string, - ::_pbi::ConstantInitialized()), - micros_{::int64_t{0}}, - _cached_size_{0} {} - -template -PROTOBUF_CONSTEXPR LogSubscriptionData::LogSubscriptionData(::_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() {} - union { - LogSubscriptionData _instance; - }; -}; - -PROTOBUF_ATTRIBUTE_NO_DESTROY PROTOBUF_CONSTINIT - PROTOBUF_ATTRIBUTE_INIT_PRIORITY1 LogSubscriptionDataDefaultTypeInternal _LogSubscriptionData_default_instance_; - -inline constexpr GetHeapInfoResponse::Impl_::Impl_( - ::_pbi::ConstantInitialized) noexcept - : max_memory_{::int64_t{0}}, - total_memory_{::int64_t{0}}, - free_memory_{::int64_t{0}}, - _cached_size_{0} {} - -template -PROTOBUF_CONSTEXPR GetHeapInfoResponse::GetHeapInfoResponse(::_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() {} - union { - GetHeapInfoResponse _instance; - }; -}; - -PROTOBUF_ATTRIBUTE_NO_DESTROY PROTOBUF_CONSTINIT - PROTOBUF_ATTRIBUTE_INIT_PRIORITY1 GetHeapInfoResponseDefaultTypeInternal _GetHeapInfoResponse_default_instance_; - 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() {} - union { - GetHeapInfoRequest _instance; - }; -}; - -PROTOBUF_ATTRIBUTE_NO_DESTROY PROTOBUF_CONSTINIT - PROTOBUF_ATTRIBUTE_INIT_PRIORITY1 GetHeapInfoRequestDefaultTypeInternal _GetHeapInfoRequest_default_instance_; - -inline constexpr GetConsoleTypesResponse::Impl_::Impl_( - ::_pbi::ConstantInitialized) noexcept - : console_types_{}, - _cached_size_{0} {} - -template -PROTOBUF_CONSTEXPR GetConsoleTypesResponse::GetConsoleTypesResponse(::_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() {} - union { - GetConsoleTypesResponse _instance; - }; -}; - -PROTOBUF_ATTRIBUTE_NO_DESTROY PROTOBUF_CONSTINIT - PROTOBUF_ATTRIBUTE_INIT_PRIORITY1 GetConsoleTypesResponseDefaultTypeInternal _GetConsoleTypesResponse_default_instance_; - 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() {} - union { - GetConsoleTypesRequest _instance; - }; -}; - -PROTOBUF_ATTRIBUTE_NO_DESTROY PROTOBUF_CONSTINIT - PROTOBUF_ATTRIBUTE_INIT_PRIORITY1 GetConsoleTypesRequestDefaultTypeInternal _GetConsoleTypesRequest_default_instance_; - -inline constexpr FigureDescriptor_StringMapWithDefault::Impl_::Impl_( - ::_pbi::ConstantInitialized) noexcept - : _cached_size_{0}, - keys_{}, - values_{}, - default_string_( - &::google::protobuf::internal::fixed_address_empty_string, - ::_pbi::ConstantInitialized()) {} - -template -PROTOBUF_CONSTEXPR FigureDescriptor_StringMapWithDefault::FigureDescriptor_StringMapWithDefault(::_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() {} - union { - FigureDescriptor_StringMapWithDefault _instance; - }; -}; - -PROTOBUF_ATTRIBUTE_NO_DESTROY PROTOBUF_CONSTINIT - PROTOBUF_ATTRIBUTE_INIT_PRIORITY1 FigureDescriptor_StringMapWithDefaultDefaultTypeInternal _FigureDescriptor_StringMapWithDefault_default_instance_; - -inline constexpr FigureDescriptor_OneClickDescriptor::Impl_::Impl_( - ::_pbi::ConstantInitialized) noexcept - : columns_{}, - column_types_{}, - require_all_filters_to_display_{false}, - _cached_size_{0} {} - -template -PROTOBUF_CONSTEXPR FigureDescriptor_OneClickDescriptor::FigureDescriptor_OneClickDescriptor(::_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() {} - union { - FigureDescriptor_OneClickDescriptor _instance; - }; -}; - -PROTOBUF_ATTRIBUTE_NO_DESTROY PROTOBUF_CONSTINIT - PROTOBUF_ATTRIBUTE_INIT_PRIORITY1 FigureDescriptor_OneClickDescriptorDefaultTypeInternal _FigureDescriptor_OneClickDescriptor_default_instance_; - -inline constexpr FigureDescriptor_MultiSeriesSourceDescriptor::Impl_::Impl_( - ::_pbi::ConstantInitialized) noexcept - : axis_id_( - &::google::protobuf::internal::fixed_address_empty_string, - ::_pbi::ConstantInitialized()), - column_name_( - &::google::protobuf::internal::fixed_address_empty_string, - ::_pbi::ConstantInitialized()), - type_{static_cast< ::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_SourceType >(0)}, - partitioned_table_id_{0}, - _cached_size_{0} {} - -template -PROTOBUF_CONSTEXPR FigureDescriptor_MultiSeriesSourceDescriptor::FigureDescriptor_MultiSeriesSourceDescriptor(::_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() {} - union { - FigureDescriptor_MultiSeriesSourceDescriptor _instance; - }; -}; - -PROTOBUF_ATTRIBUTE_NO_DESTROY PROTOBUF_CONSTINIT - PROTOBUF_ATTRIBUTE_INIT_PRIORITY1 FigureDescriptor_MultiSeriesSourceDescriptorDefaultTypeInternal _FigureDescriptor_MultiSeriesSourceDescriptor_default_instance_; - -inline constexpr FigureDescriptor_DoubleMapWithDefault::Impl_::Impl_( - ::_pbi::ConstantInitialized) noexcept - : _cached_size_{0}, - keys_{}, - values_{}, - default_double_{0} {} - -template -PROTOBUF_CONSTEXPR FigureDescriptor_DoubleMapWithDefault::FigureDescriptor_DoubleMapWithDefault(::_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() {} - union { - FigureDescriptor_DoubleMapWithDefault _instance; - }; -}; - -PROTOBUF_ATTRIBUTE_NO_DESTROY PROTOBUF_CONSTINIT - PROTOBUF_ATTRIBUTE_INIT_PRIORITY1 FigureDescriptor_DoubleMapWithDefaultDefaultTypeInternal _FigureDescriptor_DoubleMapWithDefault_default_instance_; - -inline constexpr FigureDescriptor_BusinessCalendarDescriptor_LocalDate::Impl_::Impl_( - ::_pbi::ConstantInitialized) noexcept - : year_{0}, - month_{0}, - day_{0}, - _cached_size_{0} {} - -template -PROTOBUF_CONSTEXPR FigureDescriptor_BusinessCalendarDescriptor_LocalDate::FigureDescriptor_BusinessCalendarDescriptor_LocalDate(::_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() {} - union { - FigureDescriptor_BusinessCalendarDescriptor_LocalDate _instance; - }; -}; - -PROTOBUF_ATTRIBUTE_NO_DESTROY PROTOBUF_CONSTINIT - PROTOBUF_ATTRIBUTE_INIT_PRIORITY1 FigureDescriptor_BusinessCalendarDescriptor_LocalDateDefaultTypeInternal _FigureDescriptor_BusinessCalendarDescriptor_LocalDate_default_instance_; - -inline constexpr FigureDescriptor_BusinessCalendarDescriptor_BusinessPeriod::Impl_::Impl_( - ::_pbi::ConstantInitialized) noexcept - : open_( - &::google::protobuf::internal::fixed_address_empty_string, - ::_pbi::ConstantInitialized()), - close_( - &::google::protobuf::internal::fixed_address_empty_string, - ::_pbi::ConstantInitialized()), - _cached_size_{0} {} - -template -PROTOBUF_CONSTEXPR FigureDescriptor_BusinessCalendarDescriptor_BusinessPeriod::FigureDescriptor_BusinessCalendarDescriptor_BusinessPeriod(::_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() {} - union { - FigureDescriptor_BusinessCalendarDescriptor_BusinessPeriod _instance; - }; -}; - -PROTOBUF_ATTRIBUTE_NO_DESTROY PROTOBUF_CONSTINIT - PROTOBUF_ATTRIBUTE_INIT_PRIORITY1 FigureDescriptor_BusinessCalendarDescriptor_BusinessPeriodDefaultTypeInternal _FigureDescriptor_BusinessCalendarDescriptor_BusinessPeriod_default_instance_; - -inline constexpr FigureDescriptor_BoolMapWithDefault::Impl_::Impl_( - ::_pbi::ConstantInitialized) noexcept - : _cached_size_{0}, - keys_{}, - values_{}, - default_bool_{false} {} - -template -PROTOBUF_CONSTEXPR FigureDescriptor_BoolMapWithDefault::FigureDescriptor_BoolMapWithDefault(::_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() {} - union { - FigureDescriptor_BoolMapWithDefault _instance; - }; -}; - -PROTOBUF_ATTRIBUTE_NO_DESTROY PROTOBUF_CONSTINIT - PROTOBUF_ATTRIBUTE_INIT_PRIORITY1 FigureDescriptor_BoolMapWithDefaultDefaultTypeInternal _FigureDescriptor_BoolMapWithDefault_default_instance_; - -inline constexpr Diagnostic_CodeDescription::Impl_::Impl_( - ::_pbi::ConstantInitialized) noexcept - : href_( - &::google::protobuf::internal::fixed_address_empty_string, - ::_pbi::ConstantInitialized()), - _cached_size_{0} {} - -template -PROTOBUF_CONSTEXPR Diagnostic_CodeDescription::Diagnostic_CodeDescription(::_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() {} - union { - Diagnostic_CodeDescription _instance; - }; -}; - -PROTOBUF_ATTRIBUTE_NO_DESTROY PROTOBUF_CONSTINIT - PROTOBUF_ATTRIBUTE_INIT_PRIORITY1 Diagnostic_CodeDescriptionDefaultTypeInternal _Diagnostic_CodeDescription_default_instance_; - -inline constexpr CompletionContext::Impl_::Impl_( - ::_pbi::ConstantInitialized) noexcept - : trigger_character_( - &::google::protobuf::internal::fixed_address_empty_string, - ::_pbi::ConstantInitialized()), - trigger_kind_{0}, - _cached_size_{0} {} - -template -PROTOBUF_CONSTEXPR CompletionContext::CompletionContext(::_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() {} - union { - CompletionContext _instance; - }; -}; - -PROTOBUF_ATTRIBUTE_NO_DESTROY PROTOBUF_CONSTINIT - PROTOBUF_ATTRIBUTE_INIT_PRIORITY1 CompletionContextDefaultTypeInternal _CompletionContext_default_instance_; - 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() {} - union { - CancelCommandResponse _instance; - }; -}; - -PROTOBUF_ATTRIBUTE_NO_DESTROY PROTOBUF_CONSTINIT - PROTOBUF_ATTRIBUTE_INIT_PRIORITY1 CancelCommandResponseDefaultTypeInternal _CancelCommandResponse_default_instance_; - 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() {} - union { - CancelAutoCompleteResponse _instance; - }; -}; - -PROTOBUF_ATTRIBUTE_NO_DESTROY PROTOBUF_CONSTINIT - PROTOBUF_ATTRIBUTE_INIT_PRIORITY1 CancelAutoCompleteResponseDefaultTypeInternal _CancelAutoCompleteResponse_default_instance_; - 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() {} - union { - BrowserNextResponse _instance; - }; -}; - -PROTOBUF_ATTRIBUTE_NO_DESTROY PROTOBUF_CONSTINIT - PROTOBUF_ATTRIBUTE_INIT_PRIORITY1 BrowserNextResponseDefaultTypeInternal _BrowserNextResponse_default_instance_; - 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() {} - union { - BindTableToVariableResponse _instance; - }; -}; - -PROTOBUF_ATTRIBUTE_NO_DESTROY PROTOBUF_CONSTINIT - PROTOBUF_ATTRIBUTE_INIT_PRIORITY1 BindTableToVariableResponseDefaultTypeInternal _BindTableToVariableResponse_default_instance_; - -inline constexpr StartConsoleResponse::Impl_::Impl_( - ::_pbi::ConstantInitialized) noexcept - : _cached_size_{0}, - result_id_{nullptr} {} - -template -PROTOBUF_CONSTEXPR StartConsoleResponse::StartConsoleResponse(::_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() {} - union { - StartConsoleResponse _instance; - }; -}; - -PROTOBUF_ATTRIBUTE_NO_DESTROY PROTOBUF_CONSTINIT - PROTOBUF_ATTRIBUTE_INIT_PRIORITY1 StartConsoleResponseDefaultTypeInternal _StartConsoleResponse_default_instance_; - -inline constexpr StartConsoleRequest::Impl_::Impl_( - ::_pbi::ConstantInitialized) noexcept - : _cached_size_{0}, - session_type_( - &::google::protobuf::internal::fixed_address_empty_string, - ::_pbi::ConstantInitialized()), - result_id_{nullptr} {} - -template -PROTOBUF_CONSTEXPR StartConsoleRequest::StartConsoleRequest(::_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() {} - union { - StartConsoleRequest _instance; - }; -}; - -PROTOBUF_ATTRIBUTE_NO_DESTROY PROTOBUF_CONSTINIT - PROTOBUF_ATTRIBUTE_INIT_PRIORITY1 StartConsoleRequestDefaultTypeInternal _StartConsoleRequest_default_instance_; - -inline constexpr ParameterInformation::Impl_::Impl_( - ::_pbi::ConstantInitialized) noexcept - : _cached_size_{0}, - label_( - &::google::protobuf::internal::fixed_address_empty_string, - ::_pbi::ConstantInitialized()), - documentation_{nullptr} {} - -template -PROTOBUF_CONSTEXPR ParameterInformation::ParameterInformation(::_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() {} - union { - ParameterInformation _instance; - }; -}; - -PROTOBUF_ATTRIBUTE_NO_DESTROY PROTOBUF_CONSTINIT - PROTOBUF_ATTRIBUTE_INIT_PRIORITY1 ParameterInformationDefaultTypeInternal _ParameterInformation_default_instance_; - -inline constexpr OpenDocumentRequest::Impl_::Impl_( - ::_pbi::ConstantInitialized) noexcept - : _cached_size_{0}, - console_id_{nullptr}, - text_document_{nullptr} {} - -template -PROTOBUF_CONSTEXPR OpenDocumentRequest::OpenDocumentRequest(::_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() {} - union { - OpenDocumentRequest _instance; - }; -}; - -PROTOBUF_ATTRIBUTE_NO_DESTROY PROTOBUF_CONSTINIT - PROTOBUF_ATTRIBUTE_INIT_PRIORITY1 OpenDocumentRequestDefaultTypeInternal _OpenDocumentRequest_default_instance_; - -inline constexpr GetHoverRequest::Impl_::Impl_( - ::_pbi::ConstantInitialized) noexcept - : _cached_size_{0}, - text_document_{nullptr}, - position_{nullptr} {} - -template -PROTOBUF_CONSTEXPR GetHoverRequest::GetHoverRequest(::_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() {} - union { - GetHoverRequest _instance; - }; -}; - -PROTOBUF_ATTRIBUTE_NO_DESTROY PROTOBUF_CONSTINIT - PROTOBUF_ATTRIBUTE_INIT_PRIORITY1 GetHoverRequestDefaultTypeInternal _GetHoverRequest_default_instance_; - -inline constexpr GetDiagnosticRequest::Impl_::Impl_( - ::_pbi::ConstantInitialized) noexcept - : _cached_size_{0}, - identifier_( - &::google::protobuf::internal::fixed_address_empty_string, - ::_pbi::ConstantInitialized()), - previous_result_id_( - &::google::protobuf::internal::fixed_address_empty_string, - ::_pbi::ConstantInitialized()), - text_document_{nullptr} {} - -template -PROTOBUF_CONSTEXPR GetDiagnosticRequest::GetDiagnosticRequest(::_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() {} - union { - GetDiagnosticRequest _instance; - }; -}; - -PROTOBUF_ATTRIBUTE_NO_DESTROY PROTOBUF_CONSTINIT - PROTOBUF_ATTRIBUTE_INIT_PRIORITY1 GetDiagnosticRequestDefaultTypeInternal _GetDiagnosticRequest_default_instance_; - -inline constexpr GetCompletionItemsRequest::Impl_::Impl_( - ::_pbi::ConstantInitialized) noexcept - : _cached_size_{0}, - console_id_{nullptr}, - context_{nullptr}, - text_document_{nullptr}, - position_{nullptr}, - request_id_{0} {} - -template -PROTOBUF_CONSTEXPR GetCompletionItemsRequest::GetCompletionItemsRequest(::_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() {} - union { - GetCompletionItemsRequest _instance; - }; -}; - -PROTOBUF_ATTRIBUTE_NO_DESTROY PROTOBUF_CONSTINIT - PROTOBUF_ATTRIBUTE_INIT_PRIORITY1 GetCompletionItemsRequestDefaultTypeInternal _GetCompletionItemsRequest_default_instance_; - -inline constexpr FigureDescriptor_SourceDescriptor::Impl_::Impl_( - ::_pbi::ConstantInitialized) noexcept - : _cached_size_{0}, - axis_id_( - &::google::protobuf::internal::fixed_address_empty_string, - ::_pbi::ConstantInitialized()), - column_name_( - &::google::protobuf::internal::fixed_address_empty_string, - ::_pbi::ConstantInitialized()), - column_type_( - &::google::protobuf::internal::fixed_address_empty_string, - ::_pbi::ConstantInitialized()), - one_click_{nullptr}, - type_{static_cast< ::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_SourceType >(0)}, - table_id_{0}, - partitioned_table_id_{0} {} - -template -PROTOBUF_CONSTEXPR FigureDescriptor_SourceDescriptor::FigureDescriptor_SourceDescriptor(::_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() {} - union { - FigureDescriptor_SourceDescriptor _instance; - }; -}; - -PROTOBUF_ATTRIBUTE_NO_DESTROY PROTOBUF_CONSTINIT - PROTOBUF_ATTRIBUTE_INIT_PRIORITY1 FigureDescriptor_SourceDescriptorDefaultTypeInternal _FigureDescriptor_SourceDescriptor_default_instance_; - -inline constexpr FigureDescriptor_MultiSeriesDescriptor::Impl_::Impl_( - ::_pbi::ConstantInitialized) noexcept - : _cached_size_{0}, - data_sources_{}, - name_( - &::google::protobuf::internal::fixed_address_empty_string, - ::_pbi::ConstantInitialized()), - line_color_{nullptr}, - point_color_{nullptr}, - lines_visible_{nullptr}, - points_visible_{nullptr}, - gradient_visible_{nullptr}, - point_label_format_{nullptr}, - x_tool_tip_pattern_{nullptr}, - y_tool_tip_pattern_{nullptr}, - point_label_{nullptr}, - point_size_{nullptr}, - point_shape_{nullptr}, - plot_style_{static_cast< ::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_SeriesPlotStyle >(0)} {} - -template -PROTOBUF_CONSTEXPR FigureDescriptor_MultiSeriesDescriptor::FigureDescriptor_MultiSeriesDescriptor(::_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() {} - union { - FigureDescriptor_MultiSeriesDescriptor _instance; - }; -}; - -PROTOBUF_ATTRIBUTE_NO_DESTROY PROTOBUF_CONSTINIT - PROTOBUF_ATTRIBUTE_INIT_PRIORITY1 FigureDescriptor_MultiSeriesDescriptorDefaultTypeInternal _FigureDescriptor_MultiSeriesDescriptor_default_instance_; - -inline constexpr FigureDescriptor_BusinessCalendarDescriptor_Holiday::Impl_::Impl_( - ::_pbi::ConstantInitialized) noexcept - : _cached_size_{0}, - business_periods_{}, - date_{nullptr} {} - -template -PROTOBUF_CONSTEXPR FigureDescriptor_BusinessCalendarDescriptor_Holiday::FigureDescriptor_BusinessCalendarDescriptor_Holiday(::_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() {} - union { - FigureDescriptor_BusinessCalendarDescriptor_Holiday _instance; - }; -}; - -PROTOBUF_ATTRIBUTE_NO_DESTROY PROTOBUF_CONSTINIT - PROTOBUF_ATTRIBUTE_INIT_PRIORITY1 FigureDescriptor_BusinessCalendarDescriptor_HolidayDefaultTypeInternal _FigureDescriptor_BusinessCalendarDescriptor_Holiday_default_instance_; - -inline constexpr ExecuteCommandRequest::Impl_::Impl_( - ::_pbi::ConstantInitialized) noexcept - : _cached_size_{0}, - code_( - &::google::protobuf::internal::fixed_address_empty_string, - ::_pbi::ConstantInitialized()), - console_id_{nullptr} {} - -template -PROTOBUF_CONSTEXPR ExecuteCommandRequest::ExecuteCommandRequest(::_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() {} - union { - ExecuteCommandRequest _instance; - }; -}; - -PROTOBUF_ATTRIBUTE_NO_DESTROY PROTOBUF_CONSTINIT - PROTOBUF_ATTRIBUTE_INIT_PRIORITY1 ExecuteCommandRequestDefaultTypeInternal _ExecuteCommandRequest_default_instance_; - -inline constexpr DocumentRange::Impl_::Impl_( - ::_pbi::ConstantInitialized) noexcept - : _cached_size_{0}, - start_{nullptr}, - end_{nullptr} {} - -template -PROTOBUF_CONSTEXPR DocumentRange::DocumentRange(::_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() {} - union { - DocumentRange _instance; - }; -}; - -PROTOBUF_ATTRIBUTE_NO_DESTROY PROTOBUF_CONSTINIT - PROTOBUF_ATTRIBUTE_INIT_PRIORITY1 DocumentRangeDefaultTypeInternal _DocumentRange_default_instance_; - -inline constexpr CloseDocumentRequest::Impl_::Impl_( - ::_pbi::ConstantInitialized) noexcept - : _cached_size_{0}, - console_id_{nullptr}, - text_document_{nullptr} {} - -template -PROTOBUF_CONSTEXPR CloseDocumentRequest::CloseDocumentRequest(::_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() {} - union { - CloseDocumentRequest _instance; - }; -}; - -PROTOBUF_ATTRIBUTE_NO_DESTROY PROTOBUF_CONSTINIT - PROTOBUF_ATTRIBUTE_INIT_PRIORITY1 CloseDocumentRequestDefaultTypeInternal _CloseDocumentRequest_default_instance_; - -inline constexpr CancelCommandRequest::Impl_::Impl_( - ::_pbi::ConstantInitialized) noexcept - : _cached_size_{0}, - console_id_{nullptr}, - command_id_{nullptr} {} - -template -PROTOBUF_CONSTEXPR CancelCommandRequest::CancelCommandRequest(::_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() {} - union { - CancelCommandRequest _instance; - }; -}; - -PROTOBUF_ATTRIBUTE_NO_DESTROY PROTOBUF_CONSTINIT - PROTOBUF_ATTRIBUTE_INIT_PRIORITY1 CancelCommandRequestDefaultTypeInternal _CancelCommandRequest_default_instance_; - -inline constexpr CancelAutoCompleteRequest::Impl_::Impl_( - ::_pbi::ConstantInitialized) noexcept - : _cached_size_{0}, - console_id_{nullptr}, - request_id_{0} {} - -template -PROTOBUF_CONSTEXPR CancelAutoCompleteRequest::CancelAutoCompleteRequest(::_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() {} - union { - CancelAutoCompleteRequest _instance; - }; -}; - -PROTOBUF_ATTRIBUTE_NO_DESTROY PROTOBUF_CONSTINIT - PROTOBUF_ATTRIBUTE_INIT_PRIORITY1 CancelAutoCompleteRequestDefaultTypeInternal _CancelAutoCompleteRequest_default_instance_; - -inline constexpr BindTableToVariableRequest::Impl_::Impl_( - ::_pbi::ConstantInitialized) noexcept - : _cached_size_{0}, - variable_name_( - &::google::protobuf::internal::fixed_address_empty_string, - ::_pbi::ConstantInitialized()), - console_id_{nullptr}, - table_id_{nullptr} {} - -template -PROTOBUF_CONSTEXPR BindTableToVariableRequest::BindTableToVariableRequest(::_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() {} - union { - BindTableToVariableRequest _instance; - }; -}; - -PROTOBUF_ATTRIBUTE_NO_DESTROY PROTOBUF_CONSTINIT - PROTOBUF_ATTRIBUTE_INIT_PRIORITY1 BindTableToVariableRequestDefaultTypeInternal _BindTableToVariableRequest_default_instance_; - -inline constexpr TextEdit::Impl_::Impl_( - ::_pbi::ConstantInitialized) noexcept - : _cached_size_{0}, - text_( - &::google::protobuf::internal::fixed_address_empty_string, - ::_pbi::ConstantInitialized()), - range_{nullptr} {} - -template -PROTOBUF_CONSTEXPR TextEdit::TextEdit(::_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() {} - union { - TextEdit _instance; - }; -}; - -PROTOBUF_ATTRIBUTE_NO_DESTROY PROTOBUF_CONSTINIT - PROTOBUF_ATTRIBUTE_INIT_PRIORITY1 TextEditDefaultTypeInternal _TextEdit_default_instance_; - -inline constexpr SignatureInformation::Impl_::Impl_( - ::_pbi::ConstantInitialized) noexcept - : _cached_size_{0}, - parameters_{}, - label_( - &::google::protobuf::internal::fixed_address_empty_string, - ::_pbi::ConstantInitialized()), - documentation_{nullptr}, - active_parameter_{0} {} - -template -PROTOBUF_CONSTEXPR SignatureInformation::SignatureInformation(::_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() {} - union { - SignatureInformation _instance; - }; -}; - -PROTOBUF_ATTRIBUTE_NO_DESTROY PROTOBUF_CONSTINIT - PROTOBUF_ATTRIBUTE_INIT_PRIORITY1 SignatureInformationDefaultTypeInternal _SignatureInformation_default_instance_; - -inline constexpr GetHoverResponse::Impl_::Impl_( - ::_pbi::ConstantInitialized) noexcept - : _cached_size_{0}, - contents_{nullptr}, - range_{nullptr} {} - -template -PROTOBUF_CONSTEXPR GetHoverResponse::GetHoverResponse(::_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() {} - union { - GetHoverResponse _instance; - }; -}; - -PROTOBUF_ATTRIBUTE_NO_DESTROY PROTOBUF_CONSTINIT - PROTOBUF_ATTRIBUTE_INIT_PRIORITY1 GetHoverResponseDefaultTypeInternal _GetHoverResponse_default_instance_; - -inline constexpr FigureDescriptor_SeriesDescriptor::Impl_::Impl_( - ::_pbi::ConstantInitialized) noexcept - : _cached_size_{0}, - data_sources_{}, - name_( - &::google::protobuf::internal::fixed_address_empty_string, - ::_pbi::ConstantInitialized()), - line_color_( - &::google::protobuf::internal::fixed_address_empty_string, - ::_pbi::ConstantInitialized()), - point_label_format_( - &::google::protobuf::internal::fixed_address_empty_string, - ::_pbi::ConstantInitialized()), - x_tool_tip_pattern_( - &::google::protobuf::internal::fixed_address_empty_string, - ::_pbi::ConstantInitialized()), - y_tool_tip_pattern_( - &::google::protobuf::internal::fixed_address_empty_string, - ::_pbi::ConstantInitialized()), - shape_label_( - &::google::protobuf::internal::fixed_address_empty_string, - ::_pbi::ConstantInitialized()), - shape_color_( - &::google::protobuf::internal::fixed_address_empty_string, - ::_pbi::ConstantInitialized()), - shape_( - &::google::protobuf::internal::fixed_address_empty_string, - ::_pbi::ConstantInitialized()), - plot_style_{static_cast< ::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_SeriesPlotStyle >(0)}, - lines_visible_{false}, - shapes_visible_{false}, - gradient_visible_{false}, - shape_size_{0} {} - -template -PROTOBUF_CONSTEXPR FigureDescriptor_SeriesDescriptor::FigureDescriptor_SeriesDescriptor(::_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() {} - union { - FigureDescriptor_SeriesDescriptor _instance; - }; -}; - -PROTOBUF_ATTRIBUTE_NO_DESTROY PROTOBUF_CONSTINIT - PROTOBUF_ATTRIBUTE_INIT_PRIORITY1 FigureDescriptor_SeriesDescriptorDefaultTypeInternal _FigureDescriptor_SeriesDescriptor_default_instance_; - -inline constexpr FigureDescriptor_BusinessCalendarDescriptor::Impl_::Impl_( - ::_pbi::ConstantInitialized) noexcept - : business_days_{}, - _business_days_cached_byte_size_{0}, - business_periods_{}, - holidays_{}, - name_( - &::google::protobuf::internal::fixed_address_empty_string, - ::_pbi::ConstantInitialized()), - time_zone_( - &::google::protobuf::internal::fixed_address_empty_string, - ::_pbi::ConstantInitialized()), - _cached_size_{0} {} - -template -PROTOBUF_CONSTEXPR FigureDescriptor_BusinessCalendarDescriptor::FigureDescriptor_BusinessCalendarDescriptor(::_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() {} - union { - FigureDescriptor_BusinessCalendarDescriptor _instance; - }; -}; - -PROTOBUF_ATTRIBUTE_NO_DESTROY PROTOBUF_CONSTINIT - PROTOBUF_ATTRIBUTE_INIT_PRIORITY1 FigureDescriptor_BusinessCalendarDescriptorDefaultTypeInternal _FigureDescriptor_BusinessCalendarDescriptor_default_instance_; - -inline constexpr Diagnostic::Impl_::Impl_( - ::_pbi::ConstantInitialized) noexcept - : _cached_size_{0}, - tags_{}, - _tags_cached_byte_size_{0}, - code_( - &::google::protobuf::internal::fixed_address_empty_string, - ::_pbi::ConstantInitialized()), - source_( - &::google::protobuf::internal::fixed_address_empty_string, - ::_pbi::ConstantInitialized()), - message_( - &::google::protobuf::internal::fixed_address_empty_string, - ::_pbi::ConstantInitialized()), - data_( - &::google::protobuf::internal::fixed_address_empty_string, - ::_pbi::ConstantInitialized()), - range_{nullptr}, - code_description_{nullptr}, - severity_{static_cast< ::io::deephaven::proto::backplane::script::grpc::Diagnostic_DiagnosticSeverity >(0)} {} - -template -PROTOBUF_CONSTEXPR Diagnostic::Diagnostic(::_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() {} - union { - Diagnostic _instance; - }; -}; - -PROTOBUF_ATTRIBUTE_NO_DESTROY PROTOBUF_CONSTINIT - PROTOBUF_ATTRIBUTE_INIT_PRIORITY1 DiagnosticDefaultTypeInternal _Diagnostic_default_instance_; - -inline constexpr ChangeDocumentRequest_TextDocumentContentChangeEvent::Impl_::Impl_( - ::_pbi::ConstantInitialized) noexcept - : _cached_size_{0}, - text_( - &::google::protobuf::internal::fixed_address_empty_string, - ::_pbi::ConstantInitialized()), - range_{nullptr}, - range_length_{0} {} - -template -PROTOBUF_CONSTEXPR ChangeDocumentRequest_TextDocumentContentChangeEvent::ChangeDocumentRequest_TextDocumentContentChangeEvent(::_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() {} - union { - ChangeDocumentRequest_TextDocumentContentChangeEvent _instance; - }; -}; - -PROTOBUF_ATTRIBUTE_NO_DESTROY PROTOBUF_CONSTINIT - PROTOBUF_ATTRIBUTE_INIT_PRIORITY1 ChangeDocumentRequest_TextDocumentContentChangeEventDefaultTypeInternal _ChangeDocumentRequest_TextDocumentContentChangeEvent_default_instance_; - -inline constexpr GetSignatureHelpResponse::Impl_::Impl_( - ::_pbi::ConstantInitialized) noexcept - : _cached_size_{0}, - signatures_{}, - active_signature_{0}, - active_parameter_{0} {} - -template -PROTOBUF_CONSTEXPR GetSignatureHelpResponse::GetSignatureHelpResponse(::_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() {} - union { - GetSignatureHelpResponse _instance; - }; -}; - -PROTOBUF_ATTRIBUTE_NO_DESTROY PROTOBUF_CONSTINIT - PROTOBUF_ATTRIBUTE_INIT_PRIORITY1 GetSignatureHelpResponseDefaultTypeInternal _GetSignatureHelpResponse_default_instance_; - -inline constexpr GetPullDiagnosticResponse::Impl_::Impl_( - ::_pbi::ConstantInitialized) noexcept - : _cached_size_{0}, - items_{}, - kind_( - &::google::protobuf::internal::fixed_address_empty_string, - ::_pbi::ConstantInitialized()), - result_id_( - &::google::protobuf::internal::fixed_address_empty_string, - ::_pbi::ConstantInitialized()) {} - -template -PROTOBUF_CONSTEXPR GetPullDiagnosticResponse::GetPullDiagnosticResponse(::_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() {} - union { - GetPullDiagnosticResponse _instance; - }; -}; - -PROTOBUF_ATTRIBUTE_NO_DESTROY PROTOBUF_CONSTINIT - PROTOBUF_ATTRIBUTE_INIT_PRIORITY1 GetPullDiagnosticResponseDefaultTypeInternal _GetPullDiagnosticResponse_default_instance_; - -inline constexpr GetPublishDiagnosticResponse::Impl_::Impl_( - ::_pbi::ConstantInitialized) noexcept - : _cached_size_{0}, - diagnostics_{}, - uri_( - &::google::protobuf::internal::fixed_address_empty_string, - ::_pbi::ConstantInitialized()), - version_{0} {} - -template -PROTOBUF_CONSTEXPR GetPublishDiagnosticResponse::GetPublishDiagnosticResponse(::_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() {} - union { - GetPublishDiagnosticResponse _instance; - }; -}; - -PROTOBUF_ATTRIBUTE_NO_DESTROY PROTOBUF_CONSTINIT - PROTOBUF_ATTRIBUTE_INIT_PRIORITY1 GetPublishDiagnosticResponseDefaultTypeInternal _GetPublishDiagnosticResponse_default_instance_; - -inline constexpr FigureDescriptor_AxisDescriptor::Impl_::Impl_( - ::_pbi::ConstantInitialized) noexcept - : _cached_size_{0}, - major_tick_locations_{}, - id_( - &::google::protobuf::internal::fixed_address_empty_string, - ::_pbi::ConstantInitialized()), - label_( - &::google::protobuf::internal::fixed_address_empty_string, - ::_pbi::ConstantInitialized()), - label_font_( - &::google::protobuf::internal::fixed_address_empty_string, - ::_pbi::ConstantInitialized()), - ticks_font_( - &::google::protobuf::internal::fixed_address_empty_string, - ::_pbi::ConstantInitialized()), - format_pattern_( - &::google::protobuf::internal::fixed_address_empty_string, - ::_pbi::ConstantInitialized()), - color_( - &::google::protobuf::internal::fixed_address_empty_string, - ::_pbi::ConstantInitialized()), - business_calendar_descriptor_{nullptr}, - format_type_{static_cast< ::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_AxisDescriptor_AxisFormatType >(0)}, - type_{static_cast< ::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_AxisDescriptor_AxisType >(0)}, - min_range_{0}, - position_{static_cast< ::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_AxisDescriptor_AxisPosition >(0)}, - log_{false}, - minor_ticks_visible_{false}, - major_ticks_visible_{false}, - invert_{false}, - max_range_{0}, - gap_between_major_ticks_{0}, - minor_tick_count_{0}, - is_time_axis_{false}, - tick_label_angle_{0} {} - -template -PROTOBUF_CONSTEXPR FigureDescriptor_AxisDescriptor::FigureDescriptor_AxisDescriptor(::_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() {} - union { - FigureDescriptor_AxisDescriptor _instance; - }; -}; - -PROTOBUF_ATTRIBUTE_NO_DESTROY PROTOBUF_CONSTINIT - PROTOBUF_ATTRIBUTE_INIT_PRIORITY1 FigureDescriptor_AxisDescriptorDefaultTypeInternal _FigureDescriptor_AxisDescriptor_default_instance_; - -inline constexpr CompletionItem::Impl_::Impl_( - ::_pbi::ConstantInitialized) noexcept - : _cached_size_{0}, - additional_text_edits_{}, - commit_characters_{}, - label_( - &::google::protobuf::internal::fixed_address_empty_string, - ::_pbi::ConstantInitialized()), - detail_( - &::google::protobuf::internal::fixed_address_empty_string, - ::_pbi::ConstantInitialized()), - sort_text_( - &::google::protobuf::internal::fixed_address_empty_string, - ::_pbi::ConstantInitialized()), - filter_text_( - &::google::protobuf::internal::fixed_address_empty_string, - ::_pbi::ConstantInitialized()), - text_edit_{nullptr}, - documentation_{nullptr}, - start_{0}, - length_{0}, - kind_{0}, - deprecated_{false}, - preselect_{false}, - insert_text_format_{0} {} - -template -PROTOBUF_CONSTEXPR CompletionItem::CompletionItem(::_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() {} - union { - CompletionItem _instance; - }; -}; - -PROTOBUF_ATTRIBUTE_NO_DESTROY PROTOBUF_CONSTINIT - PROTOBUF_ATTRIBUTE_INIT_PRIORITY1 CompletionItemDefaultTypeInternal _CompletionItem_default_instance_; - -inline constexpr ChangeDocumentRequest::Impl_::Impl_( - ::_pbi::ConstantInitialized) noexcept - : _cached_size_{0}, - content_changes_{}, - console_id_{nullptr}, - text_document_{nullptr} {} - -template -PROTOBUF_CONSTEXPR ChangeDocumentRequest::ChangeDocumentRequest(::_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() {} - union { - ChangeDocumentRequest _instance; - }; -}; - -PROTOBUF_ATTRIBUTE_NO_DESTROY PROTOBUF_CONSTINIT - PROTOBUF_ATTRIBUTE_INIT_PRIORITY1 ChangeDocumentRequestDefaultTypeInternal _ChangeDocumentRequest_default_instance_; - -inline constexpr SignatureHelpContext::Impl_::Impl_( - ::_pbi::ConstantInitialized) noexcept - : _cached_size_{0}, - trigger_character_( - &::google::protobuf::internal::fixed_address_empty_string, - ::_pbi::ConstantInitialized()), - active_signature_help_{nullptr}, - trigger_kind_{0}, - is_retrigger_{false} {} - -template -PROTOBUF_CONSTEXPR SignatureHelpContext::SignatureHelpContext(::_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() {} - union { - SignatureHelpContext _instance; - }; -}; - -PROTOBUF_ATTRIBUTE_NO_DESTROY PROTOBUF_CONSTINIT - PROTOBUF_ATTRIBUTE_INIT_PRIORITY1 SignatureHelpContextDefaultTypeInternal _SignatureHelpContext_default_instance_; - -inline constexpr GetCompletionItemsResponse::Impl_::Impl_( - ::_pbi::ConstantInitialized) noexcept - : items_{}, - request_id_{0}, - success_{false}, - _cached_size_{0} {} - -template -PROTOBUF_CONSTEXPR GetCompletionItemsResponse::GetCompletionItemsResponse(::_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() {} - union { - GetCompletionItemsResponse _instance; - }; -}; - -PROTOBUF_ATTRIBUTE_NO_DESTROY PROTOBUF_CONSTINIT - PROTOBUF_ATTRIBUTE_INIT_PRIORITY1 GetCompletionItemsResponseDefaultTypeInternal _GetCompletionItemsResponse_default_instance_; - -inline constexpr FigureDescriptor_ChartDescriptor::Impl_::Impl_( - ::_pbi::ConstantInitialized) noexcept - : _cached_size_{0}, - series_{}, - multi_series_{}, - axes_{}, - title_( - &::google::protobuf::internal::fixed_address_empty_string, - ::_pbi::ConstantInitialized()), - title_font_( - &::google::protobuf::internal::fixed_address_empty_string, - ::_pbi::ConstantInitialized()), - title_color_( - &::google::protobuf::internal::fixed_address_empty_string, - ::_pbi::ConstantInitialized()), - legend_font_( - &::google::protobuf::internal::fixed_address_empty_string, - ::_pbi::ConstantInitialized()), - legend_color_( - &::google::protobuf::internal::fixed_address_empty_string, - ::_pbi::ConstantInitialized()), - colspan_{0}, - rowspan_{0}, - chart_type_{static_cast< ::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_ChartDescriptor_ChartType >(0)}, - show_legend_{false}, - is3d_{false}, - column_{0}, - row_{0} {} - -template -PROTOBUF_CONSTEXPR FigureDescriptor_ChartDescriptor::FigureDescriptor_ChartDescriptor(::_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() {} - union { - FigureDescriptor_ChartDescriptor _instance; - }; -}; - -PROTOBUF_ATTRIBUTE_NO_DESTROY PROTOBUF_CONSTINIT - PROTOBUF_ATTRIBUTE_INIT_PRIORITY1 FigureDescriptor_ChartDescriptorDefaultTypeInternal _FigureDescriptor_ChartDescriptor_default_instance_; - -inline constexpr ExecuteCommandResponse::Impl_::Impl_( - ::_pbi::ConstantInitialized) noexcept - : _cached_size_{0}, - error_message_( - &::google::protobuf::internal::fixed_address_empty_string, - ::_pbi::ConstantInitialized()), - changes_{nullptr} {} - -template -PROTOBUF_CONSTEXPR ExecuteCommandResponse::ExecuteCommandResponse(::_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() {} - union { - ExecuteCommandResponse _instance; - }; -}; - -PROTOBUF_ATTRIBUTE_NO_DESTROY PROTOBUF_CONSTINIT - PROTOBUF_ATTRIBUTE_INIT_PRIORITY1 ExecuteCommandResponseDefaultTypeInternal _ExecuteCommandResponse_default_instance_; - -inline constexpr GetSignatureHelpRequest::Impl_::Impl_( - ::_pbi::ConstantInitialized) noexcept - : _cached_size_{0}, - context_{nullptr}, - text_document_{nullptr}, - position_{nullptr} {} - -template -PROTOBUF_CONSTEXPR GetSignatureHelpRequest::GetSignatureHelpRequest(::_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() {} - union { - GetSignatureHelpRequest _instance; - }; -}; - -PROTOBUF_ATTRIBUTE_NO_DESTROY PROTOBUF_CONSTINIT - PROTOBUF_ATTRIBUTE_INIT_PRIORITY1 GetSignatureHelpRequestDefaultTypeInternal _GetSignatureHelpRequest_default_instance_; - -inline constexpr FigureDescriptor::Impl_::Impl_( - ::_pbi::ConstantInitialized) noexcept - : _cached_size_{0}, - charts_{}, - errors_{}, - title_( - &::google::protobuf::internal::fixed_address_empty_string, - ::_pbi::ConstantInitialized()), - title_font_( - &::google::protobuf::internal::fixed_address_empty_string, - ::_pbi::ConstantInitialized()), - title_color_( - &::google::protobuf::internal::fixed_address_empty_string, - ::_pbi::ConstantInitialized()), - update_interval_{::int64_t{0}}, - cols_{0}, - rows_{0} {} - -template -PROTOBUF_CONSTEXPR FigureDescriptor::FigureDescriptor(::_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() {} - union { - FigureDescriptor _instance; - }; -}; - -PROTOBUF_ATTRIBUTE_NO_DESTROY PROTOBUF_CONSTINIT - PROTOBUF_ATTRIBUTE_INIT_PRIORITY1 FigureDescriptorDefaultTypeInternal _FigureDescriptor_default_instance_; - -inline constexpr AutoCompleteResponse::Impl_::Impl_( - ::_pbi::ConstantInitialized) noexcept - : request_id_{0}, - success_{false}, - response_{}, - _cached_size_{0}, - _oneof_case_{} {} - -template -PROTOBUF_CONSTEXPR AutoCompleteResponse::AutoCompleteResponse(::_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() {} - union { - AutoCompleteResponse _instance; - }; -}; - -PROTOBUF_ATTRIBUTE_NO_DESTROY PROTOBUF_CONSTINIT - PROTOBUF_ATTRIBUTE_INIT_PRIORITY1 AutoCompleteResponseDefaultTypeInternal _AutoCompleteResponse_default_instance_; - -inline constexpr AutoCompleteRequest::Impl_::Impl_( - ::_pbi::ConstantInitialized) noexcept - : _cached_size_{0}, - console_id_{nullptr}, - request_id_{0}, - request_{}, - _oneof_case_{} {} - -template -PROTOBUF_CONSTEXPR AutoCompleteRequest::AutoCompleteRequest(::_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() {} - union { - AutoCompleteRequest _instance; - }; -}; - -PROTOBUF_ATTRIBUTE_NO_DESTROY PROTOBUF_CONSTINIT - PROTOBUF_ATTRIBUTE_INIT_PRIORITY1 AutoCompleteRequestDefaultTypeInternal _AutoCompleteRequest_default_instance_; -} // namespace grpc -} // namespace script -} // namespace backplane -} // namespace proto -} // namespace deephaven -} // namespace io -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[] 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[] 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)}, - {29, 38, -1, sizeof(::io::deephaven::proto::backplane::script::grpc::StartConsoleResponse)}, - {39, -1, -1, sizeof(::io::deephaven::proto::backplane::script::grpc::GetHeapInfoRequest)}, - {47, -1, -1, sizeof(::io::deephaven::proto::backplane::script::grpc::GetHeapInfoResponse)}, - {58, -1, -1, sizeof(::io::deephaven::proto::backplane::script::grpc::LogSubscriptionRequest)}, - {68, -1, -1, sizeof(::io::deephaven::proto::backplane::script::grpc::LogSubscriptionData)}, - {79, 89, -1, sizeof(::io::deephaven::proto::backplane::script::grpc::ExecuteCommandRequest)}, - {91, 101, -1, sizeof(::io::deephaven::proto::backplane::script::grpc::ExecuteCommandResponse)}, - {103, 114, -1, sizeof(::io::deephaven::proto::backplane::script::grpc::BindTableToVariableRequest)}, - {117, -1, -1, sizeof(::io::deephaven::proto::backplane::script::grpc::BindTableToVariableResponse)}, - {125, 135, -1, sizeof(::io::deephaven::proto::backplane::script::grpc::CancelCommandRequest)}, - {137, -1, -1, sizeof(::io::deephaven::proto::backplane::script::grpc::CancelCommandResponse)}, - {145, 155, -1, sizeof(::io::deephaven::proto::backplane::script::grpc::CancelAutoCompleteRequest)}, - {157, -1, -1, sizeof(::io::deephaven::proto::backplane::script::grpc::CancelAutoCompleteResponse)}, - {165, 183, -1, sizeof(::io::deephaven::proto::backplane::script::grpc::AutoCompleteRequest)}, - {192, -1, -1, sizeof(::io::deephaven::proto::backplane::script::grpc::AutoCompleteResponse)}, - {208, -1, -1, sizeof(::io::deephaven::proto::backplane::script::grpc::BrowserNextResponse)}, - {216, 226, -1, sizeof(::io::deephaven::proto::backplane::script::grpc::OpenDocumentRequest)}, - {228, -1, -1, sizeof(::io::deephaven::proto::backplane::script::grpc::TextDocumentItem)}, - {240, 250, -1, sizeof(::io::deephaven::proto::backplane::script::grpc::CloseDocumentRequest)}, - {252, 263, -1, sizeof(::io::deephaven::proto::backplane::script::grpc::ChangeDocumentRequest_TextDocumentContentChangeEvent)}, - {266, 277, -1, sizeof(::io::deephaven::proto::backplane::script::grpc::ChangeDocumentRequest)}, - {280, 290, -1, sizeof(::io::deephaven::proto::backplane::script::grpc::DocumentRange)}, - {292, -1, -1, sizeof(::io::deephaven::proto::backplane::script::grpc::VersionedTextDocumentIdentifier)}, - {302, -1, -1, sizeof(::io::deephaven::proto::backplane::script::grpc::Position)}, - {312, -1, -1, sizeof(::io::deephaven::proto::backplane::script::grpc::MarkupContent)}, - {322, 335, -1, sizeof(::io::deephaven::proto::backplane::script::grpc::GetCompletionItemsRequest)}, - {340, -1, -1, sizeof(::io::deephaven::proto::backplane::script::grpc::CompletionContext)}, - {350, -1, -1, sizeof(::io::deephaven::proto::backplane::script::grpc::GetCompletionItemsResponse)}, - {361, 383, -1, sizeof(::io::deephaven::proto::backplane::script::grpc::CompletionItem)}, - {397, 407, -1, sizeof(::io::deephaven::proto::backplane::script::grpc::TextEdit)}, - {409, 420, -1, sizeof(::io::deephaven::proto::backplane::script::grpc::GetSignatureHelpRequest)}, - {423, 435, -1, sizeof(::io::deephaven::proto::backplane::script::grpc::SignatureHelpContext)}, - {439, 450, -1, sizeof(::io::deephaven::proto::backplane::script::grpc::GetSignatureHelpResponse)}, - {453, 465, -1, sizeof(::io::deephaven::proto::backplane::script::grpc::SignatureInformation)}, - {469, 479, -1, sizeof(::io::deephaven::proto::backplane::script::grpc::ParameterInformation)}, - {481, 491, -1, sizeof(::io::deephaven::proto::backplane::script::grpc::GetHoverRequest)}, - {493, 503, -1, sizeof(::io::deephaven::proto::backplane::script::grpc::GetHoverResponse)}, - {505, 516, -1, sizeof(::io::deephaven::proto::backplane::script::grpc::GetDiagnosticRequest)}, - {519, 530, -1, sizeof(::io::deephaven::proto::backplane::script::grpc::GetPullDiagnosticResponse)}, - {533, 544, -1, sizeof(::io::deephaven::proto::backplane::script::grpc::GetPublishDiagnosticResponse)}, - {547, -1, -1, sizeof(::io::deephaven::proto::backplane::script::grpc::Diagnostic_CodeDescription)}, - {556, 572, -1, sizeof(::io::deephaven::proto::backplane::script::grpc::Diagnostic)}, - {580, 603, -1, sizeof(::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_ChartDescriptor)}, - {618, 640, -1, sizeof(::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_SeriesDescriptor)}, - {654, 676, -1, sizeof(::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_MultiSeriesDescriptor)}, - {690, 701, -1, sizeof(::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_StringMapWithDefault)}, - {704, 715, -1, sizeof(::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_DoubleMapWithDefault)}, - {718, 729, -1, sizeof(::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_BoolMapWithDefault)}, - {732, 761, -1, sizeof(::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_AxisDescriptor)}, - {782, -1, -1, sizeof(::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_BusinessCalendarDescriptor_BusinessPeriod)}, - {792, 802, -1, sizeof(::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_BusinessCalendarDescriptor_Holiday)}, - {804, -1, -1, sizeof(::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_BusinessCalendarDescriptor_LocalDate)}, - {815, -1, -1, sizeof(::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_BusinessCalendarDescriptor)}, - {828, -1, -1, sizeof(::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_MultiSeriesSourceDescriptor)}, - {840, 855, -1, sizeof(::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_SourceDescriptor)}, - {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, - &::io::deephaven::proto::backplane::script::grpc::_StartConsoleRequest_default_instance_._instance, - &::io::deephaven::proto::backplane::script::grpc::_StartConsoleResponse_default_instance_._instance, - &::io::deephaven::proto::backplane::script::grpc::_GetHeapInfoRequest_default_instance_._instance, - &::io::deephaven::proto::backplane::script::grpc::_GetHeapInfoResponse_default_instance_._instance, - &::io::deephaven::proto::backplane::script::grpc::_LogSubscriptionRequest_default_instance_._instance, - &::io::deephaven::proto::backplane::script::grpc::_LogSubscriptionData_default_instance_._instance, - &::io::deephaven::proto::backplane::script::grpc::_ExecuteCommandRequest_default_instance_._instance, - &::io::deephaven::proto::backplane::script::grpc::_ExecuteCommandResponse_default_instance_._instance, - &::io::deephaven::proto::backplane::script::grpc::_BindTableToVariableRequest_default_instance_._instance, - &::io::deephaven::proto::backplane::script::grpc::_BindTableToVariableResponse_default_instance_._instance, - &::io::deephaven::proto::backplane::script::grpc::_CancelCommandRequest_default_instance_._instance, - &::io::deephaven::proto::backplane::script::grpc::_CancelCommandResponse_default_instance_._instance, - &::io::deephaven::proto::backplane::script::grpc::_CancelAutoCompleteRequest_default_instance_._instance, - &::io::deephaven::proto::backplane::script::grpc::_CancelAutoCompleteResponse_default_instance_._instance, - &::io::deephaven::proto::backplane::script::grpc::_AutoCompleteRequest_default_instance_._instance, - &::io::deephaven::proto::backplane::script::grpc::_AutoCompleteResponse_default_instance_._instance, - &::io::deephaven::proto::backplane::script::grpc::_BrowserNextResponse_default_instance_._instance, - &::io::deephaven::proto::backplane::script::grpc::_OpenDocumentRequest_default_instance_._instance, - &::io::deephaven::proto::backplane::script::grpc::_TextDocumentItem_default_instance_._instance, - &::io::deephaven::proto::backplane::script::grpc::_CloseDocumentRequest_default_instance_._instance, - &::io::deephaven::proto::backplane::script::grpc::_ChangeDocumentRequest_TextDocumentContentChangeEvent_default_instance_._instance, - &::io::deephaven::proto::backplane::script::grpc::_ChangeDocumentRequest_default_instance_._instance, - &::io::deephaven::proto::backplane::script::grpc::_DocumentRange_default_instance_._instance, - &::io::deephaven::proto::backplane::script::grpc::_VersionedTextDocumentIdentifier_default_instance_._instance, - &::io::deephaven::proto::backplane::script::grpc::_Position_default_instance_._instance, - &::io::deephaven::proto::backplane::script::grpc::_MarkupContent_default_instance_._instance, - &::io::deephaven::proto::backplane::script::grpc::_GetCompletionItemsRequest_default_instance_._instance, - &::io::deephaven::proto::backplane::script::grpc::_CompletionContext_default_instance_._instance, - &::io::deephaven::proto::backplane::script::grpc::_GetCompletionItemsResponse_default_instance_._instance, - &::io::deephaven::proto::backplane::script::grpc::_CompletionItem_default_instance_._instance, - &::io::deephaven::proto::backplane::script::grpc::_TextEdit_default_instance_._instance, - &::io::deephaven::proto::backplane::script::grpc::_GetSignatureHelpRequest_default_instance_._instance, - &::io::deephaven::proto::backplane::script::grpc::_SignatureHelpContext_default_instance_._instance, - &::io::deephaven::proto::backplane::script::grpc::_GetSignatureHelpResponse_default_instance_._instance, - &::io::deephaven::proto::backplane::script::grpc::_SignatureInformation_default_instance_._instance, - &::io::deephaven::proto::backplane::script::grpc::_ParameterInformation_default_instance_._instance, - &::io::deephaven::proto::backplane::script::grpc::_GetHoverRequest_default_instance_._instance, - &::io::deephaven::proto::backplane::script::grpc::_GetHoverResponse_default_instance_._instance, - &::io::deephaven::proto::backplane::script::grpc::_GetDiagnosticRequest_default_instance_._instance, - &::io::deephaven::proto::backplane::script::grpc::_GetPullDiagnosticResponse_default_instance_._instance, - &::io::deephaven::proto::backplane::script::grpc::_GetPublishDiagnosticResponse_default_instance_._instance, - &::io::deephaven::proto::backplane::script::grpc::_Diagnostic_CodeDescription_default_instance_._instance, - &::io::deephaven::proto::backplane::script::grpc::_Diagnostic_default_instance_._instance, - &::io::deephaven::proto::backplane::script::grpc::_FigureDescriptor_ChartDescriptor_default_instance_._instance, - &::io::deephaven::proto::backplane::script::grpc::_FigureDescriptor_SeriesDescriptor_default_instance_._instance, - &::io::deephaven::proto::backplane::script::grpc::_FigureDescriptor_MultiSeriesDescriptor_default_instance_._instance, - &::io::deephaven::proto::backplane::script::grpc::_FigureDescriptor_StringMapWithDefault_default_instance_._instance, - &::io::deephaven::proto::backplane::script::grpc::_FigureDescriptor_DoubleMapWithDefault_default_instance_._instance, - &::io::deephaven::proto::backplane::script::grpc::_FigureDescriptor_BoolMapWithDefault_default_instance_._instance, - &::io::deephaven::proto::backplane::script::grpc::_FigureDescriptor_AxisDescriptor_default_instance_._instance, - &::io::deephaven::proto::backplane::script::grpc::_FigureDescriptor_BusinessCalendarDescriptor_BusinessPeriod_default_instance_._instance, - &::io::deephaven::proto::backplane::script::grpc::_FigureDescriptor_BusinessCalendarDescriptor_Holiday_default_instance_._instance, - &::io::deephaven::proto::backplane::script::grpc::_FigureDescriptor_BusinessCalendarDescriptor_LocalDate_default_instance_._instance, - &::io::deephaven::proto::backplane::script::grpc::_FigureDescriptor_BusinessCalendarDescriptor_default_instance_._instance, - &::io::deephaven::proto::backplane::script::grpc::_FigureDescriptor_MultiSeriesSourceDescriptor_default_instance_._instance, - &::io::deephaven::proto::backplane::script::grpc::_FigureDescriptor_SourceDescriptor_default_instance_._instance, - &::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[] 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" - "/application.proto\"\030\n\026GetConsoleTypesReq" - "uest\"0\n\027GetConsoleTypesResponse\022\025\n\rconso" - "le_types\030\001 \003(\t\"i\n\023StartConsoleRequest\022<\n" - "\tresult_id\030\001 \001(\0132).io.deephaven.proto.ba" - "ckplane.grpc.Ticket\022\024\n\014session_type\030\002 \001(" - "\t\"T\n\024StartConsoleResponse\022<\n\tresult_id\030\001" - " \001(\0132).io.deephaven.proto.backplane.grpc" - ".Ticket\"\024\n\022GetHeapInfoRequest\"`\n\023GetHeap" - "InfoResponse\022\026\n\nmax_memory\030\001 \001(\003B\0020\001\022\030\n\014" - "total_memory\030\002 \001(\003B\0020\001\022\027\n\013free_memory\030\003 " - "\001(\003B\0020\001\"M\n\026LogSubscriptionRequest\022#\n\027las" - "t_seen_log_timestamp\030\001 \001(\003B\0020\001\022\016\n\006levels" - "\030\002 \003(\t\"S\n\023LogSubscriptionData\022\022\n\006micros\030" - "\001 \001(\003B\0020\001\022\021\n\tlog_level\030\002 \001(\t\022\017\n\007message\030" - "\003 \001(\tJ\004\010\004\020\005\"j\n\025ExecuteCommandRequest\022=\n\n" - "console_id\030\001 \001(\0132).io.deephaven.proto.ba" - "ckplane.grpc.Ticket\022\014\n\004code\030\003 \001(\tJ\004\010\002\020\003\"" - "w\n\026ExecuteCommandResponse\022\025\n\rerror_messa" - "ge\030\001 \001(\t\022F\n\007changes\030\002 \001(\01325.io.deephaven" - ".proto.backplane.grpc.FieldsChangeUpdate" - "\"\265\001\n\032BindTableToVariableRequest\022=\n\nconso" - "le_id\030\001 \001(\0132).io.deephaven.proto.backpla" - "ne.grpc.Ticket\022\025\n\rvariable_name\030\003 \001(\t\022;\n" - "\010table_id\030\004 \001(\0132).io.deephaven.proto.bac" - "kplane.grpc.TicketJ\004\010\002\020\003\"\035\n\033BindTableToV" - "ariableResponse\"\224\001\n\024CancelCommandRequest" - "\022=\n\nconsole_id\030\001 \001(\0132).io.deephaven.prot" - "o.backplane.grpc.Ticket\022=\n\ncommand_id\030\002 " - "\001(\0132).io.deephaven.proto.backplane.grpc." - "Ticket\"\027\n\025CancelCommandResponse\"n\n\031Cance" - "lAutoCompleteRequest\022=\n\nconsole_id\030\001 \001(\013" - "2).io.deephaven.proto.backplane.grpc.Tic" - "ket\022\022\n\nrequest_id\030\002 \001(\005\"\034\n\032CancelAutoCom" - "pleteResponse\"\361\005\n\023AutoCompleteRequest\022=\n" - "\nconsole_id\030\005 \001(\0132).io.deephaven.proto.b" - "ackplane.grpc.Ticket\022\022\n\nrequest_id\030\006 \001(\005" - "\022V\n\ropen_document\030\001 \001(\0132=.io.deephaven.p" - "roto.backplane.script.grpc.OpenDocumentR" - "equestH\000\022Z\n\017change_document\030\002 \001(\0132\?.io.d" - "eephaven.proto.backplane.script.grpc.Cha" - "ngeDocumentRequestH\000\022c\n\024get_completion_i" - "tems\030\003 \001(\0132C.io.deephaven.proto.backplan" - "e.script.grpc.GetCompletionItemsRequestH" - "\000\022_\n\022get_signature_help\030\007 \001(\0132A.io.deeph" - "aven.proto.backplane.script.grpc.GetSign" - "atureHelpRequestH\000\022N\n\tget_hover\030\010 \001(\01329." - "io.deephaven.proto.backplane.script.grpc" - ".GetHoverRequestH\000\022X\n\016get_diagnostic\030\t \001" - "(\0132>.io.deephaven.proto.backplane.script" - ".grpc.GetDiagnosticRequestH\000\022X\n\016close_do" - "cument\030\004 \001(\0132>.io.deephaven.proto.backpl" - "ane.script.grpc.CloseDocumentRequestH\000B\t" - "\n\007request\"\221\004\n\024AutoCompleteResponse\022\022\n\nre" - "quest_id\030\002 \001(\005\022\017\n\007success\030\003 \001(\010\022`\n\020compl" - "etion_items\030\001 \001(\0132D.io.deephaven.proto.b" - "ackplane.script.grpc.GetCompletionItemsR" - "esponseH\000\022X\n\nsignatures\030\004 \001(\0132B.io.deeph" - "aven.proto.backplane.script.grpc.GetSign" - "atureHelpResponseH\000\022K\n\005hover\030\005 \001(\0132:.io." - "deephaven.proto.backplane.script.grpc.Ge" - "tHoverResponseH\000\022Y\n\ndiagnostic\030\006 \001(\0132C.i" - "o.deephaven.proto.backplane.script.grpc." - "GetPullDiagnosticResponseH\000\022d\n\022diagnosti" - "c_publish\030\007 \001(\0132F.io.deephaven.proto.bac" - "kplane.script.grpc.GetPublishDiagnosticR" - "esponseH\000B\n\n\010response\"\025\n\023BrowserNextResp" - "onse\"\253\001\n\023OpenDocumentRequest\022A\n\nconsole_" - "id\030\001 \001(\0132).io.deephaven.proto.backplane." - "grpc.TicketB\002\030\001\022Q\n\rtext_document\030\002 \001(\0132:" - ".io.deephaven.proto.backplane.script.grp" - "c.TextDocumentItem\"S\n\020TextDocumentItem\022\013" - "\n\003uri\030\001 \001(\t\022\023\n\013language_id\030\002 \001(\t\022\017\n\007vers" - "ion\030\003 \001(\005\022\014\n\004text\030\004 \001(\t\"\273\001\n\024CloseDocumen" - "tRequest\022A\n\nconsole_id\030\001 \001(\0132).io.deepha" - "ven.proto.backplane.grpc.TicketB\002\030\001\022`\n\rt" - "ext_document\030\002 \001(\0132I.io.deephaven.proto." - "backplane.script.grpc.VersionedTextDocum" - "entIdentifier\"\304\003\n\025ChangeDocumentRequest\022" - "A\n\nconsole_id\030\001 \001(\0132).io.deephaven.proto" - ".backplane.grpc.TicketB\002\030\001\022`\n\rtext_docum" - "ent\030\002 \001(\0132I.io.deephaven.proto.backplane" - ".script.grpc.VersionedTextDocumentIdenti" - "fier\022w\n\017content_changes\030\003 \003(\0132^.io.deeph" - "aven.proto.backplane.script.grpc.ChangeD" - "ocumentRequest.TextDocumentContentChange" - "Event\032\214\001\n\036TextDocumentContentChangeEvent" - "\022F\n\005range\030\001 \001(\01327.io.deephaven.proto.bac" - "kplane.script.grpc.DocumentRange\022\024\n\014rang" - "e_length\030\002 \001(\005\022\014\n\004text\030\003 \001(\t\"\223\001\n\rDocumen" - "tRange\022A\n\005start\030\001 \001(\01322.io.deephaven.pro" - "to.backplane.script.grpc.Position\022\?\n\003end" - "\030\002 \001(\01322.io.deephaven.proto.backplane.sc" - "ript.grpc.Position\"\?\n\037VersionedTextDocum" - "entIdentifier\022\013\n\003uri\030\001 \001(\t\022\017\n\007version\030\002 " - "\001(\005\"+\n\010Position\022\014\n\004line\030\001 \001(\005\022\021\n\tcharact" - "er\030\002 \001(\005\",\n\rMarkupContent\022\014\n\004kind\030\001 \001(\t\022" - "\r\n\005value\030\002 \001(\t\"\354\002\n\031GetCompletionItemsReq" - "uest\022A\n\nconsole_id\030\001 \001(\0132).io.deephaven." - "proto.backplane.grpc.TicketB\002\030\001\022L\n\007conte" - "xt\030\002 \001(\0132;.io.deephaven.proto.backplane." - "script.grpc.CompletionContext\022`\n\rtext_do" - "cument\030\003 \001(\0132I.io.deephaven.proto.backpl" - "ane.script.grpc.VersionedTextDocumentIde" - "ntifier\022D\n\010position\030\004 \001(\01322.io.deephaven" - ".proto.backplane.script.grpc.Position\022\026\n" - "\nrequest_id\030\005 \001(\005B\002\030\001\"D\n\021CompletionConte" - "xt\022\024\n\014trigger_kind\030\001 \001(\005\022\031\n\021trigger_char" - "acter\030\002 \001(\t\"\222\001\n\032GetCompletionItemsRespon" - "se\022G\n\005items\030\001 \003(\01328.io.deephaven.proto.b" - "ackplane.script.grpc.CompletionItem\022\026\n\nr" - "equest_id\030\002 \001(\005B\002\030\001\022\023\n\007success\030\003 \001(\010B\002\030\001" - "\"\322\003\n\016CompletionItem\022\r\n\005start\030\001 \001(\005\022\016\n\006le" - "ngth\030\002 \001(\005\022\r\n\005label\030\003 \001(\t\022\014\n\004kind\030\004 \001(\005\022" - "\016\n\006detail\030\005 \001(\t\022\022\n\ndeprecated\030\007 \001(\010\022\021\n\tp" - "reselect\030\010 \001(\010\022E\n\ttext_edit\030\t \001(\01322.io.d" - "eephaven.proto.backplane.script.grpc.Tex" - "tEdit\022\021\n\tsort_text\030\n \001(\t\022\023\n\013filter_text\030" - "\013 \001(\t\022\032\n\022insert_text_format\030\014 \001(\005\022Q\n\025add" - "itional_text_edits\030\r \003(\01322.io.deephaven." - "proto.backplane.script.grpc.TextEdit\022\031\n\021" - "commit_characters\030\016 \003(\t\022N\n\rdocumentation" - "\030\017 \001(\01327.io.deephaven.proto.backplane.sc" - "ript.grpc.MarkupContentJ\004\010\006\020\007\"`\n\010TextEdi" - "t\022F\n\005range\030\001 \001(\01327.io.deephaven.proto.ba" - "ckplane.script.grpc.DocumentRange\022\014\n\004tex" - "t\030\002 \001(\t\"\222\002\n\027GetSignatureHelpRequest\022O\n\007c" - "ontext\030\001 \001(\0132>.io.deephaven.proto.backpl" - "ane.script.grpc.SignatureHelpContext\022`\n\r" - "text_document\030\002 \001(\0132I.io.deephaven.proto" - ".backplane.script.grpc.VersionedTextDocu" - "mentIdentifier\022D\n\010position\030\003 \001(\01322.io.de" - "ephaven.proto.backplane.script.grpc.Posi" - "tion\"\333\001\n\024SignatureHelpContext\022\024\n\014trigger" - "_kind\030\001 \001(\005\022\036\n\021trigger_character\030\002 \001(\tH\000" - "\210\001\001\022\024\n\014is_retrigger\030\003 \001(\010\022a\n\025active_sign" - "ature_help\030\004 \001(\0132B.io.deephaven.proto.ba" - "ckplane.script.grpc.GetSignatureHelpResp" - "onseB\024\n\022_trigger_character\"\326\001\n\030GetSignat" - "ureHelpResponse\022R\n\nsignatures\030\001 \003(\0132>.io" - ".deephaven.proto.backplane.script.grpc.S" - "ignatureInformation\022\035\n\020active_signature\030" - "\002 \001(\005H\000\210\001\001\022\035\n\020active_parameter\030\003 \001(\005H\001\210\001" - "\001B\023\n\021_active_signatureB\023\n\021_active_parame" - "ter\"\375\001\n\024SignatureInformation\022\r\n\005label\030\001 " - "\001(\t\022N\n\rdocumentation\030\002 \001(\01327.io.deephave" - "n.proto.backplane.script.grpc.MarkupCont" - "ent\022R\n\nparameters\030\003 \003(\0132>.io.deephaven.p" - "roto.backplane.script.grpc.ParameterInfo" - "rmation\022\035\n\020active_parameter\030\004 \001(\005H\000\210\001\001B\023" - "\n\021_active_parameter\"u\n\024ParameterInformat" - "ion\022\r\n\005label\030\001 \001(\t\022N\n\rdocumentation\030\002 \001(" - "\01327.io.deephaven.proto.backplane.script." - "grpc.MarkupContent\"\271\001\n\017GetHoverRequest\022`" - "\n\rtext_document\030\001 \001(\0132I.io.deephaven.pro" - "to.backplane.script.grpc.VersionedTextDo" - "cumentIdentifier\022D\n\010position\030\002 \001(\01322.io." - "deephaven.proto.backplane.script.grpc.Po" - "sition\"\245\001\n\020GetHoverResponse\022I\n\010contents\030" - "\001 \001(\01327.io.deephaven.proto.backplane.scr" - "ipt.grpc.MarkupContent\022F\n\005range\030\002 \001(\01327." - "io.deephaven.proto.backplane.script.grpc" - ".DocumentRange\"\330\001\n\024GetDiagnosticRequest\022" - "`\n\rtext_document\030\001 \001(\0132I.io.deephaven.pr" - "oto.backplane.script.grpc.VersionedTextD" - "ocumentIdentifier\022\027\n\nidentifier\030\002 \001(\tH\000\210" - "\001\001\022\037\n\022previous_result_id\030\003 \001(\tH\001\210\001\001B\r\n\013_" - "identifierB\025\n\023_previous_result_id\"\224\001\n\031Ge" - "tPullDiagnosticResponse\022\014\n\004kind\030\001 \001(\t\022\026\n" - "\tresult_id\030\002 \001(\tH\000\210\001\001\022C\n\005items\030\003 \003(\01324.i" - "o.deephaven.proto.backplane.script.grpc." - "DiagnosticB\014\n\n_result_id\"\230\001\n\034GetPublishD" - "iagnosticResponse\022\013\n\003uri\030\001 \001(\t\022\024\n\007versio" - "n\030\002 \001(\005H\000\210\001\001\022I\n\013diagnostics\030\003 \003(\01324.io.d" - "eephaven.proto.backplane.script.grpc.Dia" - "gnosticB\n\n\010_version\"\247\005\n\nDiagnostic\022F\n\005ra" - "nge\030\001 \001(\01327.io.deephaven.proto.backplane" - ".script.grpc.DocumentRange\022Y\n\010severity\030\002" - " \001(\0162G.io.deephaven.proto.backplane.scri" - "pt.grpc.Diagnostic.DiagnosticSeverity\022\021\n" - "\004code\030\003 \001(\tH\000\210\001\001\022c\n\020code_description\030\004 \001" - "(\0132D.io.deephaven.proto.backplane.script" - ".grpc.Diagnostic.CodeDescriptionH\001\210\001\001\022\023\n" - "\006source\030\005 \001(\tH\002\210\001\001\022\017\n\007message\030\006 \001(\t\022P\n\004t" - "ags\030\007 \003(\0162B.io.deephaven.proto.backplane" - ".script.grpc.Diagnostic.DiagnosticTag\022\021\n" - "\004data\030\t \001(\014H\003\210\001\001\032\037\n\017CodeDescription\022\014\n\004h" - "ref\030\001 \001(\t\"]\n\022DiagnosticSeverity\022\024\n\020NOT_S" - "ET_SEVERITY\020\000\022\t\n\005ERROR\020\001\022\013\n\007WARNING\020\002\022\017\n" - "\013INFORMATION\020\003\022\010\n\004HINT\020\004\"A\n\rDiagnosticTa" - "g\022\017\n\013NOT_SET_TAG\020\000\022\017\n\013UNNECESSARY\020\001\022\016\n\nD" - "EPRECATED\020\002B\007\n\005_codeB\023\n\021_code_descriptio" - "nB\t\n\007_sourceB\007\n\005_data\"\3460\n\020FigureDescript" - "or\022\022\n\005title\030\001 \001(\tH\000\210\001\001\022\022\n\ntitle_font\030\002 \001" - "(\t\022\023\n\013title_color\030\003 \001(\t\022\033\n\017update_interv" - "al\030\007 \001(\003B\0020\001\022\014\n\004cols\030\010 \001(\005\022\014\n\004rows\030\t \001(\005" - "\022Z\n\006charts\030\n \003(\0132J.io.deephaven.proto.ba" - "ckplane.script.grpc.FigureDescriptor.Cha" - "rtDescriptor\022\016\n\006errors\030\r \003(\t\032\316\005\n\017ChartDe" - "scriptor\022\017\n\007colspan\030\001 \001(\005\022\017\n\007rowspan\030\002 \001" - "(\005\022[\n\006series\030\003 \003(\0132K.io.deephaven.proto." - "backplane.script.grpc.FigureDescriptor.S" - "eriesDescriptor\022f\n\014multi_series\030\004 \003(\0132P." - "io.deephaven.proto.backplane.script.grpc" - ".FigureDescriptor.MultiSeriesDescriptor\022" - "W\n\004axes\030\005 \003(\0132I.io.deephaven.proto.backp" - "lane.script.grpc.FigureDescriptor.AxisDe" - "scriptor\022h\n\nchart_type\030\006 \001(\0162T.io.deepha" - "ven.proto.backplane.script.grpc.FigureDe" - "scriptor.ChartDescriptor.ChartType\022\022\n\005ti" - "tle\030\007 \001(\tH\000\210\001\001\022\022\n\ntitle_font\030\010 \001(\t\022\023\n\013ti" - "tle_color\030\t \001(\t\022\023\n\013show_legend\030\n \001(\010\022\023\n\013" - "legend_font\030\013 \001(\t\022\024\n\014legend_color\030\014 \001(\t\022" - "\014\n\004is3d\030\r \001(\010\022\016\n\006column\030\016 \001(\005\022\013\n\003row\030\017 \001" - "(\005\"_\n\tChartType\022\006\n\002XY\020\000\022\007\n\003PIE\020\001\022\014\n\004OHLC" - "\020\002\032\002\010\001\022\014\n\010CATEGORY\020\003\022\007\n\003XYZ\020\004\022\017\n\013CATEGOR" - "Y_3D\020\005\022\013\n\007TREEMAP\020\006B\010\n\006_title\032\376\004\n\020Series" - "Descriptor\022^\n\nplot_style\030\001 \001(\0162J.io.deep" - "haven.proto.backplane.script.grpc.Figure" - "Descriptor.SeriesPlotStyle\022\014\n\004name\030\002 \001(\t" - "\022\032\n\rlines_visible\030\003 \001(\010H\000\210\001\001\022\033\n\016shapes_v" - "isible\030\004 \001(\010H\001\210\001\001\022\030\n\020gradient_visible\030\005 " - "\001(\010\022\022\n\nline_color\030\006 \001(\t\022\037\n\022point_label_f" - "ormat\030\010 \001(\tH\002\210\001\001\022\037\n\022x_tool_tip_pattern\030\t" - " \001(\tH\003\210\001\001\022\037\n\022y_tool_tip_pattern\030\n \001(\tH\004\210" - "\001\001\022\023\n\013shape_label\030\013 \001(\t\022\027\n\nshape_size\030\014 " - "\001(\001H\005\210\001\001\022\023\n\013shape_color\030\r \001(\t\022\r\n\005shape\030\016" - " \001(\t\022a\n\014data_sources\030\017 \003(\0132K.io.deephave" - "n.proto.backplane.script.grpc.FigureDesc" - "riptor.SourceDescriptorB\020\n\016_lines_visibl" - "eB\021\n\017_shapes_visibleB\025\n\023_point_label_for" - "matB\025\n\023_x_tool_tip_patternB\025\n\023_y_tool_ti" - "p_patternB\r\n\013_shape_sizeJ\004\010\007\020\010\032\354\n\n\025Multi" - "SeriesDescriptor\022^\n\nplot_style\030\001 \001(\0162J.i" - "o.deephaven.proto.backplane.script.grpc." - "FigureDescriptor.SeriesPlotStyle\022\014\n\004name" - "\030\002 \001(\t\022c\n\nline_color\030\003 \001(\0132O.io.deephave" - "n.proto.backplane.script.grpc.FigureDesc" - "riptor.StringMapWithDefault\022d\n\013point_col" - "or\030\004 \001(\0132O.io.deephaven.proto.backplane." - "script.grpc.FigureDescriptor.StringMapWi" - "thDefault\022d\n\rlines_visible\030\005 \001(\0132M.io.de" - "ephaven.proto.backplane.script.grpc.Figu" - "reDescriptor.BoolMapWithDefault\022e\n\016point" - "s_visible\030\006 \001(\0132M.io.deephaven.proto.bac" - "kplane.script.grpc.FigureDescriptor.Bool" - "MapWithDefault\022g\n\020gradient_visible\030\007 \001(\013" - "2M.io.deephaven.proto.backplane.script.g" - "rpc.FigureDescriptor.BoolMapWithDefault\022" - "k\n\022point_label_format\030\010 \001(\0132O.io.deephav" - "en.proto.backplane.script.grpc.FigureDes" - "criptor.StringMapWithDefault\022k\n\022x_tool_t" - "ip_pattern\030\t \001(\0132O.io.deephaven.proto.ba" - "ckplane.script.grpc.FigureDescriptor.Str" - "ingMapWithDefault\022k\n\022y_tool_tip_pattern\030" - "\n \001(\0132O.io.deephaven.proto.backplane.scr" - "ipt.grpc.FigureDescriptor.StringMapWithD" - "efault\022d\n\013point_label\030\013 \001(\0132O.io.deephav" - "en.proto.backplane.script.grpc.FigureDes" - "criptor.StringMapWithDefault\022c\n\npoint_si" - "ze\030\014 \001(\0132O.io.deephaven.proto.backplane." - "script.grpc.FigureDescriptor.DoubleMapWi" - "thDefault\022d\n\013point_shape\030\r \001(\0132O.io.deep" - "haven.proto.backplane.script.grpc.Figure" - "Descriptor.StringMapWithDefault\022l\n\014data_" - "sources\030\016 \003(\0132V.io.deephaven.proto.backp" - "lane.script.grpc.FigureDescriptor.MultiS" - "eriesSourceDescriptor\032d\n\024StringMapWithDe" - "fault\022\033\n\016default_string\030\001 \001(\tH\000\210\001\001\022\014\n\004ke" - "ys\030\002 \003(\t\022\016\n\006values\030\003 \003(\tB\021\n\017_default_str" - "ing\032d\n\024DoubleMapWithDefault\022\033\n\016default_d" - "ouble\030\001 \001(\001H\000\210\001\001\022\014\n\004keys\030\002 \003(\t\022\016\n\006values" - "\030\003 \003(\001B\021\n\017_default_double\032^\n\022BoolMapWith" - "Default\022\031\n\014default_bool\030\001 \001(\010H\000\210\001\001\022\014\n\004ke" - "ys\030\002 \003(\t\022\016\n\006values\030\003 \003(\010B\017\n\r_default_boo" - "l\032\246\010\n\016AxisDescriptor\022\n\n\002id\030\001 \001(\t\022m\n\013form" - "at_type\030\002 \001(\0162X.io.deephaven.proto.backp" - "lane.script.grpc.FigureDescriptor.AxisDe" - "scriptor.AxisFormatType\022`\n\004type\030\003 \001(\0162R." - "io.deephaven.proto.backplane.script.grpc" - ".FigureDescriptor.AxisDescriptor.AxisTyp" - "e\022h\n\010position\030\004 \001(\0162V.io.deephaven.proto" - ".backplane.script.grpc.FigureDescriptor." - "AxisDescriptor.AxisPosition\022\013\n\003log\030\005 \001(\010" - "\022\r\n\005label\030\006 \001(\t\022\022\n\nlabel_font\030\007 \001(\t\022\022\n\nt" - "icks_font\030\010 \001(\t\022\033\n\016format_pattern\030\t \001(\tH" - "\000\210\001\001\022\r\n\005color\030\n \001(\t\022\021\n\tmin_range\030\013 \001(\001\022\021" - "\n\tmax_range\030\014 \001(\001\022\033\n\023minor_ticks_visible" - "\030\r \001(\010\022\033\n\023major_ticks_visible\030\016 \001(\010\022\030\n\020m" - "inor_tick_count\030\017 \001(\005\022$\n\027gap_between_maj" - "or_ticks\030\020 \001(\001H\001\210\001\001\022\034\n\024major_tick_locati" - "ons\030\021 \003(\001\022\030\n\020tick_label_angle\030\022 \001(\001\022\016\n\006i" - "nvert\030\023 \001(\010\022\024\n\014is_time_axis\030\024 \001(\010\022{\n\034bus" - "iness_calendar_descriptor\030\025 \001(\0132U.io.dee" - "phaven.proto.backplane.script.grpc.Figur" - "eDescriptor.BusinessCalendarDescriptor\"*" - "\n\016AxisFormatType\022\014\n\010CATEGORY\020\000\022\n\n\006NUMBER" - "\020\001\"C\n\010AxisType\022\005\n\001X\020\000\022\005\n\001Y\020\001\022\t\n\005SHAPE\020\002\022" - "\010\n\004SIZE\020\003\022\t\n\005LABEL\020\004\022\t\n\005COLOR\020\005\"B\n\014AxisP" - "osition\022\007\n\003TOP\020\000\022\n\n\006BOTTOM\020\001\022\010\n\004LEFT\020\002\022\t" - "\n\005RIGHT\020\003\022\010\n\004NONE\020\004B\021\n\017_format_patternB\032" - "\n\030_gap_between_major_ticks\032\360\006\n\032BusinessC" - "alendarDescriptor\022\014\n\004name\030\001 \001(\t\022\021\n\ttime_" - "zone\030\002 \001(\t\022v\n\rbusiness_days\030\003 \003(\0162_.io.d" - "eephaven.proto.backplane.script.grpc.Fig" - "ureDescriptor.BusinessCalendarDescriptor" - ".DayOfWeek\022~\n\020business_periods\030\004 \003(\0132d.i" - "o.deephaven.proto.backplane.script.grpc." - "FigureDescriptor.BusinessCalendarDescrip" - "tor.BusinessPeriod\022o\n\010holidays\030\005 \003(\0132].i" - "o.deephaven.proto.backplane.script.grpc." - "FigureDescriptor.BusinessCalendarDescrip" - "tor.Holiday\032-\n\016BusinessPeriod\022\014\n\004open\030\001 " - "\001(\t\022\r\n\005close\030\002 \001(\t\032\370\001\n\007Holiday\022m\n\004date\030\001" - " \001(\0132_.io.deephaven.proto.backplane.scri" - "pt.grpc.FigureDescriptor.BusinessCalenda" - "rDescriptor.LocalDate\022~\n\020business_period" - "s\030\002 \003(\0132d.io.deephaven.proto.backplane.s" - "cript.grpc.FigureDescriptor.BusinessCale" - "ndarDescriptor.BusinessPeriod\0325\n\tLocalDa" - "te\022\014\n\004year\030\001 \001(\005\022\r\n\005month\030\002 \001(\005\022\013\n\003day\030\003" - " \001(\005\"g\n\tDayOfWeek\022\n\n\006SUNDAY\020\000\022\n\n\006MONDAY\020" - "\001\022\013\n\007TUESDAY\020\002\022\r\n\tWEDNESDAY\020\003\022\014\n\010THURSDA" - "Y\020\004\022\n\n\006FRIDAY\020\005\022\014\n\010SATURDAY\020\006\032\266\001\n\033MultiS" - "eriesSourceDescriptor\022\017\n\007axis_id\030\001 \001(\t\022S" - "\n\004type\030\002 \001(\0162E.io.deephaven.proto.backpl" - "ane.script.grpc.FigureDescriptor.SourceT" - "ype\022\034\n\024partitioned_table_id\030\003 \001(\005\022\023\n\013col" - "umn_name\030\004 \001(\t\032\264\002\n\020SourceDescriptor\022\017\n\007a" - "xis_id\030\001 \001(\t\022S\n\004type\030\002 \001(\0162E.io.deephave" - "n.proto.backplane.script.grpc.FigureDesc" - "riptor.SourceType\022\020\n\010table_id\030\003 \001(\005\022\034\n\024p" - "artitioned_table_id\030\004 \001(\005\022\023\n\013column_name" - "\030\005 \001(\t\022\023\n\013column_type\030\006 \001(\t\022`\n\tone_click" - "\030\007 \001(\0132M.io.deephaven.proto.backplane.sc" - "ript.grpc.FigureDescriptor.OneClickDescr" - "iptor\032c\n\022OneClickDescriptor\022\017\n\007columns\030\001" - " \003(\t\022\024\n\014column_types\030\002 \003(\t\022&\n\036require_al" - "l_filters_to_display\030\003 \001(\010\"\246\001\n\017SeriesPlo" - "tStyle\022\007\n\003BAR\020\000\022\017\n\013STACKED_BAR\020\001\022\010\n\004LINE" - "\020\002\022\010\n\004AREA\020\003\022\020\n\014STACKED_AREA\020\004\022\007\n\003PIE\020\005\022" - "\r\n\tHISTOGRAM\020\006\022\010\n\004OHLC\020\007\022\013\n\007SCATTER\020\010\022\010\n" - "\004STEP\020\t\022\r\n\tERROR_BAR\020\n\022\013\n\007TREEMAP\020\013\"\322\001\n\n" - "SourceType\022\005\n\001X\020\000\022\005\n\001Y\020\001\022\005\n\001Z\020\002\022\t\n\005X_LOW" - "\020\003\022\n\n\006X_HIGH\020\004\022\t\n\005Y_LOW\020\005\022\n\n\006Y_HIGH\020\006\022\010\n" - "\004TIME\020\007\022\010\n\004OPEN\020\010\022\010\n\004HIGH\020\t\022\007\n\003LOW\020\n\022\t\n\005" - "CLOSE\020\013\022\t\n\005SHAPE\020\014\022\010\n\004SIZE\020\r\022\t\n\005LABEL\020\016\022" - "\t\n\005COLOR\020\017\022\n\n\006PARENT\020\020\022\016\n\nHOVER_TEXT\020\021\022\010" - "\n\004TEXT\020\022B\010\n\006_titleJ\004\010\013\020\014J\004\010\014\020\r2\262\r\n\016Conso" - "leService\022\230\001\n\017GetConsoleTypes\022@.io.deeph" - "aven.proto.backplane.script.grpc.GetCons" - "oleTypesRequest\032A.io.deephaven.proto.bac" - "kplane.script.grpc.GetConsoleTypesRespon" - "se\"\000\022\217\001\n\014StartConsole\022=.io.deephaven.pro" - "to.backplane.script.grpc.StartConsoleReq" - "uest\032>.io.deephaven.proto.backplane.scri" - "pt.grpc.StartConsoleResponse\"\000\022\214\001\n\013GetHe" - "apInfo\022<.io.deephaven.proto.backplane.sc" - "ript.grpc.GetHeapInfoRequest\032=.io.deepha" - "ven.proto.backplane.script.grpc.GetHeapI" - "nfoResponse\"\000\022\226\001\n\017SubscribeToLogs\022@.io.d" - "eephaven.proto.backplane.script.grpc.Log" - "SubscriptionRequest\032=.io.deephaven.proto" - ".backplane.script.grpc.LogSubscriptionDa" - "ta\"\0000\001\022\225\001\n\016ExecuteCommand\022\?.io.deephaven" - ".proto.backplane.script.grpc.ExecuteComm" - "andRequest\032@.io.deephaven.proto.backplan" - "e.script.grpc.ExecuteCommandResponse\"\000\022\222" - "\001\n\rCancelCommand\022>.io.deephaven.proto.ba" - "ckplane.script.grpc.CancelCommandRequest" - "\032\?.io.deephaven.proto.backplane.script.g" - "rpc.CancelCommandResponse\"\000\022\244\001\n\023BindTabl" - "eToVariable\022D.io.deephaven.proto.backpla" - "ne.script.grpc.BindTableToVariableReques" - "t\032E.io.deephaven.proto.backplane.script." - "grpc.BindTableToVariableResponse\"\000\022\231\001\n\022A" - "utoCompleteStream\022=.io.deephaven.proto.b" - "ackplane.script.grpc.AutoCompleteRequest" - "\032>.io.deephaven.proto.backplane.script.g" - "rpc.AutoCompleteResponse\"\000(\0010\001\022\241\001\n\022Cance" - "lAutoComplete\022C.io.deephaven.proto.backp" - "lane.script.grpc.CancelAutoCompleteReque" - "st\032D.io.deephaven.proto.backplane.script" - ".grpc.CancelAutoCompleteResponse\"\000\022\233\001\n\026O" - "penAutoCompleteStream\022=.io.deephaven.pro" - "to.backplane.script.grpc.AutoCompleteReq" - "uest\032>.io.deephaven.proto.backplane.scri" - "pt.grpc.AutoCompleteResponse\"\0000\001\022\230\001\n\026Nex" - "tAutoCompleteStream\022=.io.deephaven.proto" - ".backplane.script.grpc.AutoCompleteReque" - "st\032=.io.deephaven.proto.backplane.script" - ".grpc.BrowserNextResponse\"\000BCH\001P\001Z=githu" - "b.com/deephaven/deephaven-core/go/intern" - "al/proto/consoleb\006proto3" -}; -static const ::_pbi::DescriptorTable* const descriptor_table_deephaven_2fproto_2fconsole_2eproto_deps[2] = - { - &::descriptor_table_deephaven_2fproto_2fapplication_2eproto, - &::descriptor_table_deephaven_2fproto_2fticket_2eproto, -}; -static ::absl::once_flag descriptor_table_deephaven_2fproto_2fconsole_2eproto_once; -PROTOBUF_CONSTINIT const ::_pbi::DescriptorTable descriptor_table_deephaven_2fproto_2fconsole_2eproto = { - false, - false, - 15824, - descriptor_table_protodef_deephaven_2fproto_2fconsole_2eproto, - "deephaven/proto/console.proto", - &descriptor_table_deephaven_2fproto_2fconsole_2eproto_once, - descriptor_table_deephaven_2fproto_2fconsole_2eproto_deps, - 2, - 60, - schemas, - file_default_instances, - TableStruct_deephaven_2fproto_2fconsole_2eproto::offsets, - file_level_enum_descriptors_deephaven_2fproto_2fconsole_2eproto, - file_level_service_descriptors_deephaven_2fproto_2fconsole_2eproto, -}; -namespace io { -namespace deephaven { -namespace proto { -namespace backplane { -namespace script { -namespace grpc { -const ::google::protobuf::EnumDescriptor* Diagnostic_DiagnosticSeverity_descriptor() { - ::google::protobuf::internal::AssignDescriptors(&descriptor_table_deephaven_2fproto_2fconsole_2eproto); - return file_level_enum_descriptors_deephaven_2fproto_2fconsole_2eproto[0]; -} -PROTOBUF_CONSTINIT const uint32_t Diagnostic_DiagnosticSeverity_internal_data_[] = { - 327680u, 0u, }; -bool Diagnostic_DiagnosticSeverity_IsValid(int value) { - return 0 <= value && value <= 4; -} -#if (__cplusplus < 201703) && \ - (!defined(_MSC_VER) || (_MSC_VER >= 1900 && _MSC_VER < 1912)) - -constexpr Diagnostic_DiagnosticSeverity Diagnostic::NOT_SET_SEVERITY; -constexpr Diagnostic_DiagnosticSeverity Diagnostic::ERROR; -constexpr Diagnostic_DiagnosticSeverity Diagnostic::WARNING; -constexpr Diagnostic_DiagnosticSeverity Diagnostic::INFORMATION; -constexpr Diagnostic_DiagnosticSeverity Diagnostic::HINT; -constexpr Diagnostic_DiagnosticSeverity Diagnostic::DiagnosticSeverity_MIN; -constexpr Diagnostic_DiagnosticSeverity Diagnostic::DiagnosticSeverity_MAX; -constexpr int Diagnostic::DiagnosticSeverity_ARRAYSIZE; - -#endif // (__cplusplus < 201703) && - // (!defined(_MSC_VER) || (_MSC_VER >= 1900 && _MSC_VER < 1912)) -const ::google::protobuf::EnumDescriptor* Diagnostic_DiagnosticTag_descriptor() { - ::google::protobuf::internal::AssignDescriptors(&descriptor_table_deephaven_2fproto_2fconsole_2eproto); - return file_level_enum_descriptors_deephaven_2fproto_2fconsole_2eproto[1]; -} -PROTOBUF_CONSTINIT const uint32_t Diagnostic_DiagnosticTag_internal_data_[] = { - 196608u, 0u, }; -bool Diagnostic_DiagnosticTag_IsValid(int value) { - return 0 <= value && value <= 2; -} -#if (__cplusplus < 201703) && \ - (!defined(_MSC_VER) || (_MSC_VER >= 1900 && _MSC_VER < 1912)) - -constexpr Diagnostic_DiagnosticTag Diagnostic::NOT_SET_TAG; -constexpr Diagnostic_DiagnosticTag Diagnostic::UNNECESSARY; -constexpr Diagnostic_DiagnosticTag Diagnostic::DEPRECATED; -constexpr Diagnostic_DiagnosticTag Diagnostic::DiagnosticTag_MIN; -constexpr Diagnostic_DiagnosticTag Diagnostic::DiagnosticTag_MAX; -constexpr int Diagnostic::DiagnosticTag_ARRAYSIZE; - -#endif // (__cplusplus < 201703) && - // (!defined(_MSC_VER) || (_MSC_VER >= 1900 && _MSC_VER < 1912)) -const ::google::protobuf::EnumDescriptor* FigureDescriptor_ChartDescriptor_ChartType_descriptor() { - ::google::protobuf::internal::AssignDescriptors(&descriptor_table_deephaven_2fproto_2fconsole_2eproto); - return file_level_enum_descriptors_deephaven_2fproto_2fconsole_2eproto[2]; -} -PROTOBUF_CONSTINIT const uint32_t FigureDescriptor_ChartDescriptor_ChartType_internal_data_[] = { - 458752u, 0u, }; -bool FigureDescriptor_ChartDescriptor_ChartType_IsValid(int value) { - return 0 <= value && value <= 6; -} -#if (__cplusplus < 201703) && \ - (!defined(_MSC_VER) || (_MSC_VER >= 1900 && _MSC_VER < 1912)) - -constexpr FigureDescriptor_ChartDescriptor_ChartType FigureDescriptor_ChartDescriptor::XY; -constexpr FigureDescriptor_ChartDescriptor_ChartType FigureDescriptor_ChartDescriptor::PIE; -constexpr FigureDescriptor_ChartDescriptor_ChartType FigureDescriptor_ChartDescriptor::OHLC; -constexpr FigureDescriptor_ChartDescriptor_ChartType FigureDescriptor_ChartDescriptor::CATEGORY; -constexpr FigureDescriptor_ChartDescriptor_ChartType FigureDescriptor_ChartDescriptor::XYZ; -constexpr FigureDescriptor_ChartDescriptor_ChartType FigureDescriptor_ChartDescriptor::CATEGORY_3D; -constexpr FigureDescriptor_ChartDescriptor_ChartType FigureDescriptor_ChartDescriptor::TREEMAP; -constexpr FigureDescriptor_ChartDescriptor_ChartType FigureDescriptor_ChartDescriptor::ChartType_MIN; -constexpr FigureDescriptor_ChartDescriptor_ChartType FigureDescriptor_ChartDescriptor::ChartType_MAX; -constexpr int FigureDescriptor_ChartDescriptor::ChartType_ARRAYSIZE; - -#endif // (__cplusplus < 201703) && - // (!defined(_MSC_VER) || (_MSC_VER >= 1900 && _MSC_VER < 1912)) -const ::google::protobuf::EnumDescriptor* FigureDescriptor_AxisDescriptor_AxisFormatType_descriptor() { - ::google::protobuf::internal::AssignDescriptors(&descriptor_table_deephaven_2fproto_2fconsole_2eproto); - return file_level_enum_descriptors_deephaven_2fproto_2fconsole_2eproto[3]; -} -PROTOBUF_CONSTINIT const uint32_t FigureDescriptor_AxisDescriptor_AxisFormatType_internal_data_[] = { - 131072u, 0u, }; -bool FigureDescriptor_AxisDescriptor_AxisFormatType_IsValid(int value) { - return 0 <= value && value <= 1; -} -#if (__cplusplus < 201703) && \ - (!defined(_MSC_VER) || (_MSC_VER >= 1900 && _MSC_VER < 1912)) - -constexpr FigureDescriptor_AxisDescriptor_AxisFormatType FigureDescriptor_AxisDescriptor::CATEGORY; -constexpr FigureDescriptor_AxisDescriptor_AxisFormatType FigureDescriptor_AxisDescriptor::NUMBER; -constexpr FigureDescriptor_AxisDescriptor_AxisFormatType FigureDescriptor_AxisDescriptor::AxisFormatType_MIN; -constexpr FigureDescriptor_AxisDescriptor_AxisFormatType FigureDescriptor_AxisDescriptor::AxisFormatType_MAX; -constexpr int FigureDescriptor_AxisDescriptor::AxisFormatType_ARRAYSIZE; - -#endif // (__cplusplus < 201703) && - // (!defined(_MSC_VER) || (_MSC_VER >= 1900 && _MSC_VER < 1912)) -const ::google::protobuf::EnumDescriptor* FigureDescriptor_AxisDescriptor_AxisType_descriptor() { - ::google::protobuf::internal::AssignDescriptors(&descriptor_table_deephaven_2fproto_2fconsole_2eproto); - return file_level_enum_descriptors_deephaven_2fproto_2fconsole_2eproto[4]; -} -PROTOBUF_CONSTINIT const uint32_t FigureDescriptor_AxisDescriptor_AxisType_internal_data_[] = { - 393216u, 0u, }; -bool FigureDescriptor_AxisDescriptor_AxisType_IsValid(int value) { - return 0 <= value && value <= 5; -} -#if (__cplusplus < 201703) && \ - (!defined(_MSC_VER) || (_MSC_VER >= 1900 && _MSC_VER < 1912)) - -constexpr FigureDescriptor_AxisDescriptor_AxisType FigureDescriptor_AxisDescriptor::X; -constexpr FigureDescriptor_AxisDescriptor_AxisType FigureDescriptor_AxisDescriptor::Y; -constexpr FigureDescriptor_AxisDescriptor_AxisType FigureDescriptor_AxisDescriptor::SHAPE; -constexpr FigureDescriptor_AxisDescriptor_AxisType FigureDescriptor_AxisDescriptor::SIZE; -constexpr FigureDescriptor_AxisDescriptor_AxisType FigureDescriptor_AxisDescriptor::LABEL; -constexpr FigureDescriptor_AxisDescriptor_AxisType FigureDescriptor_AxisDescriptor::COLOR; -constexpr FigureDescriptor_AxisDescriptor_AxisType FigureDescriptor_AxisDescriptor::AxisType_MIN; -constexpr FigureDescriptor_AxisDescriptor_AxisType FigureDescriptor_AxisDescriptor::AxisType_MAX; -constexpr int FigureDescriptor_AxisDescriptor::AxisType_ARRAYSIZE; - -#endif // (__cplusplus < 201703) && - // (!defined(_MSC_VER) || (_MSC_VER >= 1900 && _MSC_VER < 1912)) -const ::google::protobuf::EnumDescriptor* FigureDescriptor_AxisDescriptor_AxisPosition_descriptor() { - ::google::protobuf::internal::AssignDescriptors(&descriptor_table_deephaven_2fproto_2fconsole_2eproto); - return file_level_enum_descriptors_deephaven_2fproto_2fconsole_2eproto[5]; -} -PROTOBUF_CONSTINIT const uint32_t FigureDescriptor_AxisDescriptor_AxisPosition_internal_data_[] = { - 327680u, 0u, }; -bool FigureDescriptor_AxisDescriptor_AxisPosition_IsValid(int value) { - return 0 <= value && value <= 4; -} -#if (__cplusplus < 201703) && \ - (!defined(_MSC_VER) || (_MSC_VER >= 1900 && _MSC_VER < 1912)) - -constexpr FigureDescriptor_AxisDescriptor_AxisPosition FigureDescriptor_AxisDescriptor::TOP; -constexpr FigureDescriptor_AxisDescriptor_AxisPosition FigureDescriptor_AxisDescriptor::BOTTOM; -constexpr FigureDescriptor_AxisDescriptor_AxisPosition FigureDescriptor_AxisDescriptor::LEFT; -constexpr FigureDescriptor_AxisDescriptor_AxisPosition FigureDescriptor_AxisDescriptor::RIGHT; -constexpr FigureDescriptor_AxisDescriptor_AxisPosition FigureDescriptor_AxisDescriptor::NONE; -constexpr FigureDescriptor_AxisDescriptor_AxisPosition FigureDescriptor_AxisDescriptor::AxisPosition_MIN; -constexpr FigureDescriptor_AxisDescriptor_AxisPosition FigureDescriptor_AxisDescriptor::AxisPosition_MAX; -constexpr int FigureDescriptor_AxisDescriptor::AxisPosition_ARRAYSIZE; - -#endif // (__cplusplus < 201703) && - // (!defined(_MSC_VER) || (_MSC_VER >= 1900 && _MSC_VER < 1912)) -const ::google::protobuf::EnumDescriptor* FigureDescriptor_BusinessCalendarDescriptor_DayOfWeek_descriptor() { - ::google::protobuf::internal::AssignDescriptors(&descriptor_table_deephaven_2fproto_2fconsole_2eproto); - return file_level_enum_descriptors_deephaven_2fproto_2fconsole_2eproto[6]; -} -PROTOBUF_CONSTINIT const uint32_t FigureDescriptor_BusinessCalendarDescriptor_DayOfWeek_internal_data_[] = { - 458752u, 0u, }; -bool FigureDescriptor_BusinessCalendarDescriptor_DayOfWeek_IsValid(int value) { - return 0 <= value && value <= 6; -} -#if (__cplusplus < 201703) && \ - (!defined(_MSC_VER) || (_MSC_VER >= 1900 && _MSC_VER < 1912)) - -constexpr FigureDescriptor_BusinessCalendarDescriptor_DayOfWeek FigureDescriptor_BusinessCalendarDescriptor::SUNDAY; -constexpr FigureDescriptor_BusinessCalendarDescriptor_DayOfWeek FigureDescriptor_BusinessCalendarDescriptor::MONDAY; -constexpr FigureDescriptor_BusinessCalendarDescriptor_DayOfWeek FigureDescriptor_BusinessCalendarDescriptor::TUESDAY; -constexpr FigureDescriptor_BusinessCalendarDescriptor_DayOfWeek FigureDescriptor_BusinessCalendarDescriptor::WEDNESDAY; -constexpr FigureDescriptor_BusinessCalendarDescriptor_DayOfWeek FigureDescriptor_BusinessCalendarDescriptor::THURSDAY; -constexpr FigureDescriptor_BusinessCalendarDescriptor_DayOfWeek FigureDescriptor_BusinessCalendarDescriptor::FRIDAY; -constexpr FigureDescriptor_BusinessCalendarDescriptor_DayOfWeek FigureDescriptor_BusinessCalendarDescriptor::SATURDAY; -constexpr FigureDescriptor_BusinessCalendarDescriptor_DayOfWeek FigureDescriptor_BusinessCalendarDescriptor::DayOfWeek_MIN; -constexpr FigureDescriptor_BusinessCalendarDescriptor_DayOfWeek FigureDescriptor_BusinessCalendarDescriptor::DayOfWeek_MAX; -constexpr int FigureDescriptor_BusinessCalendarDescriptor::DayOfWeek_ARRAYSIZE; - -#endif // (__cplusplus < 201703) && - // (!defined(_MSC_VER) || (_MSC_VER >= 1900 && _MSC_VER < 1912)) -const ::google::protobuf::EnumDescriptor* FigureDescriptor_SeriesPlotStyle_descriptor() { - ::google::protobuf::internal::AssignDescriptors(&descriptor_table_deephaven_2fproto_2fconsole_2eproto); - return file_level_enum_descriptors_deephaven_2fproto_2fconsole_2eproto[7]; -} -PROTOBUF_CONSTINIT const uint32_t FigureDescriptor_SeriesPlotStyle_internal_data_[] = { - 786432u, 0u, }; -bool FigureDescriptor_SeriesPlotStyle_IsValid(int value) { - return 0 <= value && value <= 11; -} -#if (__cplusplus < 201703) && \ - (!defined(_MSC_VER) || (_MSC_VER >= 1900 && _MSC_VER < 1912)) - -constexpr FigureDescriptor_SeriesPlotStyle FigureDescriptor::BAR; -constexpr FigureDescriptor_SeriesPlotStyle FigureDescriptor::STACKED_BAR; -constexpr FigureDescriptor_SeriesPlotStyle FigureDescriptor::LINE; -constexpr FigureDescriptor_SeriesPlotStyle FigureDescriptor::AREA; -constexpr FigureDescriptor_SeriesPlotStyle FigureDescriptor::STACKED_AREA; -constexpr FigureDescriptor_SeriesPlotStyle FigureDescriptor::PIE; -constexpr FigureDescriptor_SeriesPlotStyle FigureDescriptor::HISTOGRAM; -constexpr FigureDescriptor_SeriesPlotStyle FigureDescriptor::OHLC; -constexpr FigureDescriptor_SeriesPlotStyle FigureDescriptor::SCATTER; -constexpr FigureDescriptor_SeriesPlotStyle FigureDescriptor::STEP; -constexpr FigureDescriptor_SeriesPlotStyle FigureDescriptor::ERROR_BAR; -constexpr FigureDescriptor_SeriesPlotStyle FigureDescriptor::TREEMAP; -constexpr FigureDescriptor_SeriesPlotStyle FigureDescriptor::SeriesPlotStyle_MIN; -constexpr FigureDescriptor_SeriesPlotStyle FigureDescriptor::SeriesPlotStyle_MAX; -constexpr int FigureDescriptor::SeriesPlotStyle_ARRAYSIZE; - -#endif // (__cplusplus < 201703) && - // (!defined(_MSC_VER) || (_MSC_VER >= 1900 && _MSC_VER < 1912)) -const ::google::protobuf::EnumDescriptor* FigureDescriptor_SourceType_descriptor() { - ::google::protobuf::internal::AssignDescriptors(&descriptor_table_deephaven_2fproto_2fconsole_2eproto); - return file_level_enum_descriptors_deephaven_2fproto_2fconsole_2eproto[8]; -} -PROTOBUF_CONSTINIT const uint32_t FigureDescriptor_SourceType_internal_data_[] = { - 1245184u, 0u, }; -bool FigureDescriptor_SourceType_IsValid(int value) { - return 0 <= value && value <= 18; -} -#if (__cplusplus < 201703) && \ - (!defined(_MSC_VER) || (_MSC_VER >= 1900 && _MSC_VER < 1912)) - -constexpr FigureDescriptor_SourceType FigureDescriptor::X; -constexpr FigureDescriptor_SourceType FigureDescriptor::Y; -constexpr FigureDescriptor_SourceType FigureDescriptor::Z; -constexpr FigureDescriptor_SourceType FigureDescriptor::X_LOW; -constexpr FigureDescriptor_SourceType FigureDescriptor::X_HIGH; -constexpr FigureDescriptor_SourceType FigureDescriptor::Y_LOW; -constexpr FigureDescriptor_SourceType FigureDescriptor::Y_HIGH; -constexpr FigureDescriptor_SourceType FigureDescriptor::TIME; -constexpr FigureDescriptor_SourceType FigureDescriptor::OPEN; -constexpr FigureDescriptor_SourceType FigureDescriptor::HIGH; -constexpr FigureDescriptor_SourceType FigureDescriptor::LOW; -constexpr FigureDescriptor_SourceType FigureDescriptor::CLOSE; -constexpr FigureDescriptor_SourceType FigureDescriptor::SHAPE; -constexpr FigureDescriptor_SourceType FigureDescriptor::SIZE; -constexpr FigureDescriptor_SourceType FigureDescriptor::LABEL; -constexpr FigureDescriptor_SourceType FigureDescriptor::COLOR; -constexpr FigureDescriptor_SourceType FigureDescriptor::PARENT; -constexpr FigureDescriptor_SourceType FigureDescriptor::HOVER_TEXT; -constexpr FigureDescriptor_SourceType FigureDescriptor::TEXT; -constexpr FigureDescriptor_SourceType FigureDescriptor::SourceType_MIN; -constexpr FigureDescriptor_SourceType FigureDescriptor::SourceType_MAX; -constexpr int FigureDescriptor::SourceType_ARRAYSIZE; - -#endif // (__cplusplus < 201703) && - // (!defined(_MSC_VER) || (_MSC_VER >= 1900 && _MSC_VER < 1912)) -// =================================================================== - -class GetConsoleTypesRequest::_Internal { - public: -}; - -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>( - from._internal_metadata_); - - // @@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 - {{ - }}, -}; - - - - - - - - -::google::protobuf::Metadata GetConsoleTypesRequest::GetMetadata() const { - return ::google::protobuf::internal::ZeroFieldsBase::GetMetadataImpl(GetClassData()->full()); -} -// =================================================================== - -class GetConsoleTypesResponse::_Internal { - public: -}; - -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 ::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_, from); - - // @@protoc_insertion_point(copy_constructor:io.deephaven.proto.backplane.script.grpc.GetConsoleTypesResponse) -} -inline PROTOBUF_NDEBUG_INLINE GetConsoleTypesResponse::Impl_::Impl_( - ::google::protobuf::internal::InternalVisibility visibility, - ::google::protobuf::Arena* arena) - : console_types_{visibility, arena}, - _cached_size_{0} {} - -inline void GetConsoleTypesResponse::SharedCtor(::_pb::Arena* arena) { - new (&_impl_) Impl_(internal_visibility(), arena); -} -GetConsoleTypesResponse::~GetConsoleTypesResponse() { - // @@protoc_insertion_point(destructor:io.deephaven.proto.backplane.script.grpc.GetConsoleTypesResponse) - _internal_metadata_.Delete<::google::protobuf::UnknownFieldSet>(); - SharedDtor(); -} -inline void GetConsoleTypesResponse::SharedDtor() { - ABSL_DCHECK(GetArena() == nullptr); - _impl_.~Impl_(); -} - -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_ = { - { - 0, // no _has_bits_ - 0, // no _extensions_ - 1, 0, // max_field_number, fast_idx_mask - offsetof(decltype(_table_), field_lookup_table), - 4294967294, // skipmap - offsetof(decltype(_table_), field_entries), - 1, // 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::GetConsoleTypesResponse>(), // to_prefetch - #endif // PROTOBUF_PREFETCH_PARSE_TABLE - }, {{ - // repeated string console_types = 1; - {::_pbi::TcParser::FastUR1, - {10, 63, 0, PROTOBUF_FIELD_OFFSET(GetConsoleTypesResponse, _impl_.console_types_)}}, - }}, {{ - 65535, 65535 - }}, {{ - // repeated string console_types = 1; - {PROTOBUF_FIELD_OFFSET(GetConsoleTypesResponse, _impl_.console_types_), 0, 0, - (0 | ::_fl::kFcRepeated | ::_fl::kUtf8String | ::_fl::kRepSString)}, - }}, - // no aux_entries - {{ - "\100\15\0\0\0\0\0\0" - "io.deephaven.proto.backplane.script.grpc.GetConsoleTypesResponse" - "console_types" - }}, -}; - -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; - - _impl_.console_types_.Clear(); - _internal_metadata_.Clear<::google::protobuf::UnknownFieldSet>(); -} - -#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) - ABSL_DCHECK_NE(&from, _this); - ::uint32_t cached_has_bits = 0; - (void) cached_has_bits; - - _this->_internal_mutable_console_types()->MergeFrom(from._internal_console_types()); - _this->_internal_metadata_.MergeFrom<::google::protobuf::UnknownFieldSet>(from._internal_metadata_); -} - -void GetConsoleTypesResponse::CopyFrom(const GetConsoleTypesResponse& from) { -// @@protoc_insertion_point(class_specific_copy_from_start:io.deephaven.proto.backplane.script.grpc.GetConsoleTypesResponse) - if (&from == this) return; - Clear(); - MergeFrom(from); -} - - -void GetConsoleTypesResponse::InternalSwap(GetConsoleTypesResponse* PROTOBUF_RESTRICT other) { - using std::swap; - _internal_metadata_.InternalSwap(&other->_internal_metadata_); - _impl_.console_types_.InternalSwap(&other->_impl_.console_types_); -} - -::google::protobuf::Metadata GetConsoleTypesResponse::GetMetadata() const { - return ::google::protobuf::Message::GetMetadataImpl(GetClassData()->full()); -} -// =================================================================== - -class StartConsoleRequest::_Internal { - public: - using HasBits = - decltype(std::declval()._impl_._has_bits_); - static constexpr ::int32_t kHasBitsOffset = - 8 * PROTOBUF_FIELD_OFFSET(StartConsoleRequest, _impl_._has_bits_); -}; - -void StartConsoleRequest::clear_result_id() { - ::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 ::io::deephaven::proto::backplane::script::grpc::StartConsoleRequest& from_msg) - : _has_bits_{from._has_bits_}, - _cached_size_{0}, - session_type_(arena, from.session_type_) {} - -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_, from); - ::uint32_t cached_has_bits = _impl_._has_bits_[0]; - _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) -} -inline PROTOBUF_NDEBUG_INLINE StartConsoleRequest::Impl_::Impl_( - ::google::protobuf::internal::InternalVisibility visibility, - ::google::protobuf::Arena* arena) - : _cached_size_{0}, - session_type_(arena) {} - -inline void StartConsoleRequest::SharedCtor(::_pb::Arena* arena) { - new (&_impl_) Impl_(internal_visibility(), arena); - _impl_.result_id_ = {}; -} -StartConsoleRequest::~StartConsoleRequest() { - // @@protoc_insertion_point(destructor:io.deephaven.proto.backplane.script.grpc.StartConsoleRequest) - _internal_metadata_.Delete<::google::protobuf::UnknownFieldSet>(); - SharedDtor(); -} -inline void StartConsoleRequest::SharedDtor() { - ABSL_DCHECK(GetArena() == nullptr); - _impl_.session_type_.Destroy(); - delete _impl_.result_id_; - _impl_.~Impl_(); -} - -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_ = { - { - PROTOBUF_FIELD_OFFSET(StartConsoleRequest, _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::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, - {18, 63, 0, PROTOBUF_FIELD_OFFSET(StartConsoleRequest, _impl_.session_type_)}}, - // .io.deephaven.proto.backplane.grpc.Ticket result_id = 1; - {::_pbi::TcParser::FastMtS1, - {10, 0, 0, PROTOBUF_FIELD_OFFSET(StartConsoleRequest, _impl_.result_id_)}}, - }}, {{ - 65535, 65535 - }}, {{ - // .io.deephaven.proto.backplane.grpc.Ticket result_id = 1; - {PROTOBUF_FIELD_OFFSET(StartConsoleRequest, _impl_.result_id_), _Internal::kHasBitsOffset + 0, 0, - (0 | ::_fl::kFcOptional | ::_fl::kMessage | ::_fl::kTvTable)}, - // string session_type = 2; - {PROTOBUF_FIELD_OFFSET(StartConsoleRequest, _impl_.session_type_), -1, 0, - (0 | ::_fl::kFcSingular | ::_fl::kUtf8String | ::_fl::kRepAString)}, - }}, {{ - {::_pbi::TcParser::GetTable<::io::deephaven::proto::backplane::grpc::Ticket>()}, - }}, {{ - "\74\0\14\0\0\0\0\0" - "io.deephaven.proto.backplane.script.grpc.StartConsoleRequest" - "session_type" - }}, -}; - -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; - - _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>(); -} - -#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; - (void) cached_has_bits; - - if (!from._internal_session_type().empty()) { - _this->_internal_set_session_type(from._internal_session_type()); - } - 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_); -} - -void StartConsoleRequest::CopyFrom(const StartConsoleRequest& from) { -// @@protoc_insertion_point(class_specific_copy_from_start:io.deephaven.proto.backplane.script.grpc.StartConsoleRequest) - if (&from == this) return; - Clear(); - MergeFrom(from); -} - - -void StartConsoleRequest::InternalSwap(StartConsoleRequest* PROTOBUF_RESTRICT other) { - using std::swap; - auto* arena = GetArena(); - ABSL_DCHECK_EQ(arena, other->GetArena()); - _internal_metadata_.InternalSwap(&other->_internal_metadata_); - swap(_impl_._has_bits_[0], other->_impl_._has_bits_[0]); - ::_pbi::ArenaStringPtr::InternalSwap(&_impl_.session_type_, &other->_impl_.session_type_, arena); - swap(_impl_.result_id_, other->_impl_.result_id_); -} - -::google::protobuf::Metadata StartConsoleRequest::GetMetadata() const { - return ::google::protobuf::Message::GetMetadataImpl(GetClassData()->full()); -} -// =================================================================== - -class StartConsoleResponse::_Internal { - public: - using HasBits = - decltype(std::declval()._impl_._has_bits_); - static constexpr ::int32_t kHasBitsOffset = - 8 * PROTOBUF_FIELD_OFFSET(StartConsoleResponse, _impl_._has_bits_); -}; - -void StartConsoleResponse::clear_result_id() { - ::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 ::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_, from); - ::uint32_t cached_has_bits = _impl_._has_bits_[0]; - _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) -} -inline PROTOBUF_NDEBUG_INLINE StartConsoleResponse::Impl_::Impl_( - ::google::protobuf::internal::InternalVisibility visibility, - ::google::protobuf::Arena* arena) - : _cached_size_{0} {} - -inline void StartConsoleResponse::SharedCtor(::_pb::Arena* arena) { - new (&_impl_) Impl_(internal_visibility(), arena); - _impl_.result_id_ = {}; -} -StartConsoleResponse::~StartConsoleResponse() { - // @@protoc_insertion_point(destructor:io.deephaven.proto.backplane.script.grpc.StartConsoleResponse) - _internal_metadata_.Delete<::google::protobuf::UnknownFieldSet>(); - SharedDtor(); -} -inline void StartConsoleResponse::SharedDtor() { - ABSL_DCHECK(GetArena() == nullptr); - delete _impl_.result_id_; - _impl_.~Impl_(); -} - -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_ = { - { - PROTOBUF_FIELD_OFFSET(StartConsoleResponse, _impl_._has_bits_), - 0, // no _extensions_ - 1, 0, // max_field_number, fast_idx_mask - offsetof(decltype(_table_), field_lookup_table), - 4294967294, // skipmap - offsetof(decltype(_table_), field_entries), - 1, // num_field_entries - 1, // num_aux_entries - offsetof(decltype(_table_), 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::StartConsoleResponse>(), // to_prefetch - #endif // PROTOBUF_PREFETCH_PARSE_TABLE - }, {{ - // .io.deephaven.proto.backplane.grpc.Ticket result_id = 1; - {::_pbi::TcParser::FastMtS1, - {10, 0, 0, PROTOBUF_FIELD_OFFSET(StartConsoleResponse, _impl_.result_id_)}}, - }}, {{ - 65535, 65535 - }}, {{ - // .io.deephaven.proto.backplane.grpc.Ticket result_id = 1; - {PROTOBUF_FIELD_OFFSET(StartConsoleResponse, _impl_.result_id_), _Internal::kHasBitsOffset + 0, 0, - (0 | ::_fl::kFcOptional | ::_fl::kMessage | ::_fl::kTvTable)}, - }}, {{ - {::_pbi::TcParser::GetTable<::io::deephaven::proto::backplane::grpc::Ticket>()}, - }}, {{ - }}, -}; - -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; - - 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>(); -} - -#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; - - 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_); -} - -void StartConsoleResponse::CopyFrom(const StartConsoleResponse& from) { -// @@protoc_insertion_point(class_specific_copy_from_start:io.deephaven.proto.backplane.script.grpc.StartConsoleResponse) - if (&from == this) return; - Clear(); - MergeFrom(from); -} - - -void StartConsoleResponse::InternalSwap(StartConsoleResponse* PROTOBUF_RESTRICT other) { - using std::swap; - _internal_metadata_.InternalSwap(&other->_internal_metadata_); - swap(_impl_._has_bits_[0], other->_impl_._has_bits_[0]); - swap(_impl_.result_id_, other->_impl_.result_id_); -} - -::google::protobuf::Metadata StartConsoleResponse::GetMetadata() const { - return ::google::protobuf::Message::GetMetadataImpl(GetClassData()->full()); -} -// =================================================================== - -class GetHeapInfoRequest::_Internal { - public: -}; - -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>( - from._internal_metadata_); - - // @@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 - {{ - }}, -}; - - - - - - - - -::google::protobuf::Metadata GetHeapInfoRequest::GetMetadata() const { - return ::google::protobuf::internal::ZeroFieldsBase::GetMetadataImpl(GetClassData()->full()); -} -// =================================================================== - -class GetHeapInfoResponse::_Internal { - public: -}; - -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) -} -GetHeapInfoResponse::GetHeapInfoResponse( - ::google::protobuf::Arena* arena, const GetHeapInfoResponse& from) - : GetHeapInfoResponse(arena) { - MergeFrom(from); -} -inline PROTOBUF_NDEBUG_INLINE GetHeapInfoResponse::Impl_::Impl_( - ::google::protobuf::internal::InternalVisibility visibility, - ::google::protobuf::Arena* arena) - : _cached_size_{0} {} - -inline void GetHeapInfoResponse::SharedCtor(::_pb::Arena* arena) { - new (&_impl_) Impl_(internal_visibility(), arena); - ::memset(reinterpret_cast(&_impl_) + - offsetof(Impl_, max_memory_), - 0, - offsetof(Impl_, free_memory_) - - offsetof(Impl_, max_memory_) + - sizeof(Impl_::free_memory_)); -} -GetHeapInfoResponse::~GetHeapInfoResponse() { - // @@protoc_insertion_point(destructor:io.deephaven.proto.backplane.script.grpc.GetHeapInfoResponse) - _internal_metadata_.Delete<::google::protobuf::UnknownFieldSet>(); - SharedDtor(); -} -inline void GetHeapInfoResponse::SharedDtor() { - ABSL_DCHECK(GetArena() == nullptr); - _impl_.~Impl_(); -} - -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_ = { - { - 0, // no _has_bits_ - 0, // no _extensions_ - 3, 24, // max_field_number, fast_idx_mask - offsetof(decltype(_table_), field_lookup_table), - 4294967288, // skipmap - offsetof(decltype(_table_), field_entries), - 3, // 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::GetHeapInfoResponse>(), // to_prefetch - #endif // PROTOBUF_PREFETCH_PARSE_TABLE - }, {{ - {::_pbi::TcParser::MiniParse, {}}, - // int64 max_memory = 1 [jstype = JS_STRING]; - {::_pbi::TcParser::SingularVarintNoZag1<::uint64_t, offsetof(GetHeapInfoResponse, _impl_.max_memory_), 63>(), - {8, 63, 0, PROTOBUF_FIELD_OFFSET(GetHeapInfoResponse, _impl_.max_memory_)}}, - // int64 total_memory = 2 [jstype = JS_STRING]; - {::_pbi::TcParser::SingularVarintNoZag1<::uint64_t, offsetof(GetHeapInfoResponse, _impl_.total_memory_), 63>(), - {16, 63, 0, PROTOBUF_FIELD_OFFSET(GetHeapInfoResponse, _impl_.total_memory_)}}, - // int64 free_memory = 3 [jstype = JS_STRING]; - {::_pbi::TcParser::SingularVarintNoZag1<::uint64_t, offsetof(GetHeapInfoResponse, _impl_.free_memory_), 63>(), - {24, 63, 0, PROTOBUF_FIELD_OFFSET(GetHeapInfoResponse, _impl_.free_memory_)}}, - }}, {{ - 65535, 65535 - }}, {{ - // int64 max_memory = 1 [jstype = JS_STRING]; - {PROTOBUF_FIELD_OFFSET(GetHeapInfoResponse, _impl_.max_memory_), 0, 0, - (0 | ::_fl::kFcSingular | ::_fl::kInt64)}, - // int64 total_memory = 2 [jstype = JS_STRING]; - {PROTOBUF_FIELD_OFFSET(GetHeapInfoResponse, _impl_.total_memory_), 0, 0, - (0 | ::_fl::kFcSingular | ::_fl::kInt64)}, - // int64 free_memory = 3 [jstype = JS_STRING]; - {PROTOBUF_FIELD_OFFSET(GetHeapInfoResponse, _impl_.free_memory_), 0, 0, - (0 | ::_fl::kFcSingular | ::_fl::kInt64)}, - }}, - // no aux_entries - {{ - }}, -}; - -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; - // 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>(); -} - -#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) - ABSL_DCHECK_NE(&from, _this); - ::uint32_t cached_has_bits = 0; - (void) cached_has_bits; - - if (from._internal_max_memory() != 0) { - _this->_impl_.max_memory_ = from._impl_.max_memory_; - } - if (from._internal_total_memory() != 0) { - _this->_impl_.total_memory_ = from._impl_.total_memory_; - } - if (from._internal_free_memory() != 0) { - _this->_impl_.free_memory_ = from._impl_.free_memory_; - } - _this->_internal_metadata_.MergeFrom<::google::protobuf::UnknownFieldSet>(from._internal_metadata_); -} - -void GetHeapInfoResponse::CopyFrom(const GetHeapInfoResponse& from) { -// @@protoc_insertion_point(class_specific_copy_from_start:io.deephaven.proto.backplane.script.grpc.GetHeapInfoResponse) - if (&from == this) return; - Clear(); - MergeFrom(from); -} - - -void GetHeapInfoResponse::InternalSwap(GetHeapInfoResponse* PROTOBUF_RESTRICT other) { - using std::swap; - _internal_metadata_.InternalSwap(&other->_internal_metadata_); - ::google::protobuf::internal::memswap< - PROTOBUF_FIELD_OFFSET(GetHeapInfoResponse, _impl_.free_memory_) - + sizeof(GetHeapInfoResponse::_impl_.free_memory_) - - PROTOBUF_FIELD_OFFSET(GetHeapInfoResponse, _impl_.max_memory_)>( - reinterpret_cast(&_impl_.max_memory_), - reinterpret_cast(&other->_impl_.max_memory_)); -} - -::google::protobuf::Metadata GetHeapInfoResponse::GetMetadata() const { - return ::google::protobuf::Message::GetMetadataImpl(GetClassData()->full()); -} -// =================================================================== - -class LogSubscriptionRequest::_Internal { - public: -}; - -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 ::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_, from); - _impl_.last_seen_log_timestamp_ = from._impl_.last_seen_log_timestamp_; - - // @@protoc_insertion_point(copy_constructor:io.deephaven.proto.backplane.script.grpc.LogSubscriptionRequest) -} -inline PROTOBUF_NDEBUG_INLINE LogSubscriptionRequest::Impl_::Impl_( - ::google::protobuf::internal::InternalVisibility visibility, - ::google::protobuf::Arena* arena) - : levels_{visibility, arena}, - _cached_size_{0} {} - -inline void LogSubscriptionRequest::SharedCtor(::_pb::Arena* arena) { - new (&_impl_) Impl_(internal_visibility(), arena); - _impl_.last_seen_log_timestamp_ = {}; -} -LogSubscriptionRequest::~LogSubscriptionRequest() { - // @@protoc_insertion_point(destructor:io.deephaven.proto.backplane.script.grpc.LogSubscriptionRequest) - _internal_metadata_.Delete<::google::protobuf::UnknownFieldSet>(); - SharedDtor(); -} -inline void LogSubscriptionRequest::SharedDtor() { - ABSL_DCHECK(GetArena() == nullptr); - _impl_.~Impl_(); -} - -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_ = { - { - 0, // no _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 - 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::LogSubscriptionRequest>(), // to_prefetch - #endif // PROTOBUF_PREFETCH_PARSE_TABLE - }, {{ - // repeated string levels = 2; - {::_pbi::TcParser::FastUR1, - {18, 63, 0, PROTOBUF_FIELD_OFFSET(LogSubscriptionRequest, _impl_.levels_)}}, - // int64 last_seen_log_timestamp = 1 [jstype = JS_STRING]; - {::_pbi::TcParser::SingularVarintNoZag1<::uint64_t, offsetof(LogSubscriptionRequest, _impl_.last_seen_log_timestamp_), 63>(), - {8, 63, 0, PROTOBUF_FIELD_OFFSET(LogSubscriptionRequest, _impl_.last_seen_log_timestamp_)}}, - }}, {{ - 65535, 65535 - }}, {{ - // int64 last_seen_log_timestamp = 1 [jstype = JS_STRING]; - {PROTOBUF_FIELD_OFFSET(LogSubscriptionRequest, _impl_.last_seen_log_timestamp_), 0, 0, - (0 | ::_fl::kFcSingular | ::_fl::kInt64)}, - // repeated string levels = 2; - {PROTOBUF_FIELD_OFFSET(LogSubscriptionRequest, _impl_.levels_), 0, 0, - (0 | ::_fl::kFcRepeated | ::_fl::kUtf8String | ::_fl::kRepSString)}, - }}, - // no aux_entries - {{ - "\77\0\6\0\0\0\0\0" - "io.deephaven.proto.backplane.script.grpc.LogSubscriptionRequest" - "levels" - }}, -}; - -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; - - _impl_.levels_.Clear(); - _impl_.last_seen_log_timestamp_ = ::int64_t{0}; - _internal_metadata_.Clear<::google::protobuf::UnknownFieldSet>(); -} - -#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) - ABSL_DCHECK_NE(&from, _this); - ::uint32_t cached_has_bits = 0; - (void) cached_has_bits; - - _this->_internal_mutable_levels()->MergeFrom(from._internal_levels()); - if (from._internal_last_seen_log_timestamp() != 0) { - _this->_impl_.last_seen_log_timestamp_ = from._impl_.last_seen_log_timestamp_; - } - _this->_internal_metadata_.MergeFrom<::google::protobuf::UnknownFieldSet>(from._internal_metadata_); -} - -void LogSubscriptionRequest::CopyFrom(const LogSubscriptionRequest& from) { -// @@protoc_insertion_point(class_specific_copy_from_start:io.deephaven.proto.backplane.script.grpc.LogSubscriptionRequest) - if (&from == this) return; - Clear(); - MergeFrom(from); -} - - -void LogSubscriptionRequest::InternalSwap(LogSubscriptionRequest* PROTOBUF_RESTRICT other) { - using std::swap; - _internal_metadata_.InternalSwap(&other->_internal_metadata_); - _impl_.levels_.InternalSwap(&other->_impl_.levels_); - swap(_impl_.last_seen_log_timestamp_, other->_impl_.last_seen_log_timestamp_); -} - -::google::protobuf::Metadata LogSubscriptionRequest::GetMetadata() const { - return ::google::protobuf::Message::GetMetadataImpl(GetClassData()->full()); -} -// =================================================================== - -class LogSubscriptionData::_Internal { - public: -}; - -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 ::io::deephaven::proto::backplane::script::grpc::LogSubscriptionData& from_msg) - : log_level_(arena, from.log_level_), - message_(arena, from.message_), - _cached_size_{0} {} - -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_, from); - _impl_.micros_ = from._impl_.micros_; - - // @@protoc_insertion_point(copy_constructor:io.deephaven.proto.backplane.script.grpc.LogSubscriptionData) -} -inline PROTOBUF_NDEBUG_INLINE LogSubscriptionData::Impl_::Impl_( - ::google::protobuf::internal::InternalVisibility visibility, - ::google::protobuf::Arena* arena) - : log_level_(arena), - message_(arena), - _cached_size_{0} {} - -inline void LogSubscriptionData::SharedCtor(::_pb::Arena* arena) { - new (&_impl_) Impl_(internal_visibility(), arena); - _impl_.micros_ = {}; -} -LogSubscriptionData::~LogSubscriptionData() { - // @@protoc_insertion_point(destructor:io.deephaven.proto.backplane.script.grpc.LogSubscriptionData) - _internal_metadata_.Delete<::google::protobuf::UnknownFieldSet>(); - SharedDtor(); -} -inline void LogSubscriptionData::SharedDtor() { - ABSL_DCHECK(GetArena() == nullptr); - _impl_.log_level_.Destroy(); - _impl_.message_.Destroy(); - _impl_.~Impl_(); -} - -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_ = { - { - 0, // no _has_bits_ - 0, // no _extensions_ - 3, 24, // max_field_number, fast_idx_mask - offsetof(decltype(_table_), field_lookup_table), - 4294967288, // skipmap - offsetof(decltype(_table_), field_entries), - 3, // 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::LogSubscriptionData>(), // to_prefetch - #endif // PROTOBUF_PREFETCH_PARSE_TABLE - }, {{ - {::_pbi::TcParser::MiniParse, {}}, - // int64 micros = 1 [jstype = JS_STRING]; - {::_pbi::TcParser::SingularVarintNoZag1<::uint64_t, offsetof(LogSubscriptionData, _impl_.micros_), 63>(), - {8, 63, 0, PROTOBUF_FIELD_OFFSET(LogSubscriptionData, _impl_.micros_)}}, - // string log_level = 2; - {::_pbi::TcParser::FastUS1, - {18, 63, 0, PROTOBUF_FIELD_OFFSET(LogSubscriptionData, _impl_.log_level_)}}, - // string message = 3; - {::_pbi::TcParser::FastUS1, - {26, 63, 0, PROTOBUF_FIELD_OFFSET(LogSubscriptionData, _impl_.message_)}}, - }}, {{ - 65535, 65535 - }}, {{ - // int64 micros = 1 [jstype = JS_STRING]; - {PROTOBUF_FIELD_OFFSET(LogSubscriptionData, _impl_.micros_), 0, 0, - (0 | ::_fl::kFcSingular | ::_fl::kInt64)}, - // string log_level = 2; - {PROTOBUF_FIELD_OFFSET(LogSubscriptionData, _impl_.log_level_), 0, 0, - (0 | ::_fl::kFcSingular | ::_fl::kUtf8String | ::_fl::kRepAString)}, - // string message = 3; - {PROTOBUF_FIELD_OFFSET(LogSubscriptionData, _impl_.message_), 0, 0, - (0 | ::_fl::kFcSingular | ::_fl::kUtf8String | ::_fl::kRepAString)}, - }}, - // no aux_entries - {{ - "\74\0\11\7\0\0\0\0" - "io.deephaven.proto.backplane.script.grpc.LogSubscriptionData" - "log_level" - "message" - }}, -}; - -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; - - _impl_.log_level_.ClearToEmpty(); - _impl_.message_.ClearToEmpty(); - _impl_.micros_ = ::int64_t{0}; - _internal_metadata_.Clear<::google::protobuf::UnknownFieldSet>(); -} - -#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) - ABSL_DCHECK_NE(&from, _this); - ::uint32_t cached_has_bits = 0; - (void) cached_has_bits; - - if (!from._internal_log_level().empty()) { - _this->_internal_set_log_level(from._internal_log_level()); - } - if (!from._internal_message().empty()) { - _this->_internal_set_message(from._internal_message()); - } - if (from._internal_micros() != 0) { - _this->_impl_.micros_ = from._impl_.micros_; - } - _this->_internal_metadata_.MergeFrom<::google::protobuf::UnknownFieldSet>(from._internal_metadata_); -} - -void LogSubscriptionData::CopyFrom(const LogSubscriptionData& from) { -// @@protoc_insertion_point(class_specific_copy_from_start:io.deephaven.proto.backplane.script.grpc.LogSubscriptionData) - if (&from == this) return; - Clear(); - MergeFrom(from); -} - - -void LogSubscriptionData::InternalSwap(LogSubscriptionData* PROTOBUF_RESTRICT other) { - using std::swap; - auto* arena = GetArena(); - ABSL_DCHECK_EQ(arena, other->GetArena()); - _internal_metadata_.InternalSwap(&other->_internal_metadata_); - ::_pbi::ArenaStringPtr::InternalSwap(&_impl_.log_level_, &other->_impl_.log_level_, arena); - ::_pbi::ArenaStringPtr::InternalSwap(&_impl_.message_, &other->_impl_.message_, arena); - swap(_impl_.micros_, other->_impl_.micros_); -} - -::google::protobuf::Metadata LogSubscriptionData::GetMetadata() const { - return ::google::protobuf::Message::GetMetadataImpl(GetClassData()->full()); -} -// =================================================================== - -class ExecuteCommandRequest::_Internal { - public: - using HasBits = - decltype(std::declval()._impl_._has_bits_); - static constexpr ::int32_t kHasBitsOffset = - 8 * PROTOBUF_FIELD_OFFSET(ExecuteCommandRequest, _impl_._has_bits_); -}; - -void ExecuteCommandRequest::clear_console_id() { - ::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 ::io::deephaven::proto::backplane::script::grpc::ExecuteCommandRequest& from_msg) - : _has_bits_{from._has_bits_}, - _cached_size_{0}, - code_(arena, from.code_) {} - -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_, from); - ::uint32_t cached_has_bits = _impl_._has_bits_[0]; - _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) -} -inline PROTOBUF_NDEBUG_INLINE ExecuteCommandRequest::Impl_::Impl_( - ::google::protobuf::internal::InternalVisibility visibility, - ::google::protobuf::Arena* arena) - : _cached_size_{0}, - code_(arena) {} - -inline void ExecuteCommandRequest::SharedCtor(::_pb::Arena* arena) { - new (&_impl_) Impl_(internal_visibility(), arena); - _impl_.console_id_ = {}; -} -ExecuteCommandRequest::~ExecuteCommandRequest() { - // @@protoc_insertion_point(destructor:io.deephaven.proto.backplane.script.grpc.ExecuteCommandRequest) - _internal_metadata_.Delete<::google::protobuf::UnknownFieldSet>(); - SharedDtor(); -} -inline void ExecuteCommandRequest::SharedDtor() { - ABSL_DCHECK(GetArena() == nullptr); - _impl_.code_.Destroy(); - delete _impl_.console_id_; - _impl_.~Impl_(); -} - -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_ = { - { - PROTOBUF_FIELD_OFFSET(ExecuteCommandRequest, _impl_._has_bits_), - 0, // no _extensions_ - 3, 24, // max_field_number, fast_idx_mask - offsetof(decltype(_table_), field_lookup_table), - 4294967290, // 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::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; - {::_pbi::TcParser::FastMtS1, - {10, 0, 0, PROTOBUF_FIELD_OFFSET(ExecuteCommandRequest, _impl_.console_id_)}}, - {::_pbi::TcParser::MiniParse, {}}, - // string code = 3; - {::_pbi::TcParser::FastUS1, - {26, 63, 0, PROTOBUF_FIELD_OFFSET(ExecuteCommandRequest, _impl_.code_)}}, - }}, {{ - 65535, 65535 - }}, {{ - // .io.deephaven.proto.backplane.grpc.Ticket console_id = 1; - {PROTOBUF_FIELD_OFFSET(ExecuteCommandRequest, _impl_.console_id_), _Internal::kHasBitsOffset + 0, 0, - (0 | ::_fl::kFcOptional | ::_fl::kMessage | ::_fl::kTvTable)}, - // string code = 3; - {PROTOBUF_FIELD_OFFSET(ExecuteCommandRequest, _impl_.code_), -1, 0, - (0 | ::_fl::kFcSingular | ::_fl::kUtf8String | ::_fl::kRepAString)}, - }}, {{ - {::_pbi::TcParser::GetTable<::io::deephaven::proto::backplane::grpc::Ticket>()}, - }}, {{ - "\76\0\4\0\0\0\0\0" - "io.deephaven.proto.backplane.script.grpc.ExecuteCommandRequest" - "code" - }}, -}; - -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; - - _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>(); -} - -#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; - (void) cached_has_bits; - - if (!from._internal_code().empty()) { - _this->_internal_set_code(from._internal_code()); - } - 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_); -} - -void ExecuteCommandRequest::CopyFrom(const ExecuteCommandRequest& from) { -// @@protoc_insertion_point(class_specific_copy_from_start:io.deephaven.proto.backplane.script.grpc.ExecuteCommandRequest) - if (&from == this) return; - Clear(); - MergeFrom(from); -} - - -void ExecuteCommandRequest::InternalSwap(ExecuteCommandRequest* PROTOBUF_RESTRICT other) { - using std::swap; - auto* arena = GetArena(); - ABSL_DCHECK_EQ(arena, other->GetArena()); - _internal_metadata_.InternalSwap(&other->_internal_metadata_); - swap(_impl_._has_bits_[0], other->_impl_._has_bits_[0]); - ::_pbi::ArenaStringPtr::InternalSwap(&_impl_.code_, &other->_impl_.code_, arena); - swap(_impl_.console_id_, other->_impl_.console_id_); -} - -::google::protobuf::Metadata ExecuteCommandRequest::GetMetadata() const { - return ::google::protobuf::Message::GetMetadataImpl(GetClassData()->full()); -} -// =================================================================== - -class ExecuteCommandResponse::_Internal { - public: - using HasBits = - decltype(std::declval()._impl_._has_bits_); - static constexpr ::int32_t kHasBitsOffset = - 8 * PROTOBUF_FIELD_OFFSET(ExecuteCommandResponse, _impl_._has_bits_); -}; - -void ExecuteCommandResponse::clear_changes() { - ::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 ::io::deephaven::proto::backplane::script::grpc::ExecuteCommandResponse& from_msg) - : _has_bits_{from._has_bits_}, - _cached_size_{0}, - error_message_(arena, from.error_message_) {} - -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_, from); - ::uint32_t cached_has_bits = _impl_._has_bits_[0]; - _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) -} -inline PROTOBUF_NDEBUG_INLINE ExecuteCommandResponse::Impl_::Impl_( - ::google::protobuf::internal::InternalVisibility visibility, - ::google::protobuf::Arena* arena) - : _cached_size_{0}, - error_message_(arena) {} - -inline void ExecuteCommandResponse::SharedCtor(::_pb::Arena* arena) { - new (&_impl_) Impl_(internal_visibility(), arena); - _impl_.changes_ = {}; -} -ExecuteCommandResponse::~ExecuteCommandResponse() { - // @@protoc_insertion_point(destructor:io.deephaven.proto.backplane.script.grpc.ExecuteCommandResponse) - _internal_metadata_.Delete<::google::protobuf::UnknownFieldSet>(); - SharedDtor(); -} -inline void ExecuteCommandResponse::SharedDtor() { - ABSL_DCHECK(GetArena() == nullptr); - _impl_.error_message_.Destroy(); - delete _impl_.changes_; - _impl_.~Impl_(); -} - -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_ = { - { - PROTOBUF_FIELD_OFFSET(ExecuteCommandResponse, _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::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, - {18, 0, 0, PROTOBUF_FIELD_OFFSET(ExecuteCommandResponse, _impl_.changes_)}}, - // string error_message = 1; - {::_pbi::TcParser::FastUS1, - {10, 63, 0, PROTOBUF_FIELD_OFFSET(ExecuteCommandResponse, _impl_.error_message_)}}, - }}, {{ - 65535, 65535 - }}, {{ - // string error_message = 1; - {PROTOBUF_FIELD_OFFSET(ExecuteCommandResponse, _impl_.error_message_), -1, 0, - (0 | ::_fl::kFcSingular | ::_fl::kUtf8String | ::_fl::kRepAString)}, - // .io.deephaven.proto.backplane.grpc.FieldsChangeUpdate changes = 2; - {PROTOBUF_FIELD_OFFSET(ExecuteCommandResponse, _impl_.changes_), _Internal::kHasBitsOffset + 0, 0, - (0 | ::_fl::kFcOptional | ::_fl::kMessage | ::_fl::kTvTable)}, - }}, {{ - {::_pbi::TcParser::GetTable<::io::deephaven::proto::backplane::grpc::FieldsChangeUpdate>()}, - }}, {{ - "\77\15\0\0\0\0\0\0" - "io.deephaven.proto.backplane.script.grpc.ExecuteCommandResponse" - "error_message" - }}, -}; - -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; - - _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>(); -} - -#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; - (void) cached_has_bits; - - if (!from._internal_error_message().empty()) { - _this->_internal_set_error_message(from._internal_error_message()); - } - 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_); -} - -void ExecuteCommandResponse::CopyFrom(const ExecuteCommandResponse& from) { -// @@protoc_insertion_point(class_specific_copy_from_start:io.deephaven.proto.backplane.script.grpc.ExecuteCommandResponse) - if (&from == this) return; - Clear(); - MergeFrom(from); -} - - -void ExecuteCommandResponse::InternalSwap(ExecuteCommandResponse* PROTOBUF_RESTRICT other) { - using std::swap; - auto* arena = GetArena(); - ABSL_DCHECK_EQ(arena, other->GetArena()); - _internal_metadata_.InternalSwap(&other->_internal_metadata_); - swap(_impl_._has_bits_[0], other->_impl_._has_bits_[0]); - ::_pbi::ArenaStringPtr::InternalSwap(&_impl_.error_message_, &other->_impl_.error_message_, arena); - swap(_impl_.changes_, other->_impl_.changes_); -} - -::google::protobuf::Metadata ExecuteCommandResponse::GetMetadata() const { - return ::google::protobuf::Message::GetMetadataImpl(GetClassData()->full()); -} -// =================================================================== - -class BindTableToVariableRequest::_Internal { - public: - using HasBits = - decltype(std::declval()._impl_._has_bits_); - static constexpr ::int32_t kHasBitsOffset = - 8 * PROTOBUF_FIELD_OFFSET(BindTableToVariableRequest, _impl_._has_bits_); -}; - -void BindTableToVariableRequest::clear_console_id() { - ::google::protobuf::internal::TSanWrite(&_impl_); - if (_impl_.console_id_ != nullptr) _impl_.console_id_->Clear(); - _impl_._has_bits_[0] &= ~0x00000001u; -} -void BindTableToVariableRequest::clear_table_id() { - ::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 ::io::deephaven::proto::backplane::script::grpc::BindTableToVariableRequest& from_msg) - : _has_bits_{from._has_bits_}, - _cached_size_{0}, - variable_name_(arena, from.variable_name_) {} - -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_, from); - ::uint32_t cached_has_bits = _impl_._has_bits_[0]; - _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) -} -inline PROTOBUF_NDEBUG_INLINE BindTableToVariableRequest::Impl_::Impl_( - ::google::protobuf::internal::InternalVisibility visibility, - ::google::protobuf::Arena* arena) - : _cached_size_{0}, - variable_name_(arena) {} - -inline void BindTableToVariableRequest::SharedCtor(::_pb::Arena* arena) { - new (&_impl_) Impl_(internal_visibility(), arena); - ::memset(reinterpret_cast(&_impl_) + - offsetof(Impl_, console_id_), - 0, - offsetof(Impl_, table_id_) - - offsetof(Impl_, console_id_) + - sizeof(Impl_::table_id_)); -} -BindTableToVariableRequest::~BindTableToVariableRequest() { - // @@protoc_insertion_point(destructor:io.deephaven.proto.backplane.script.grpc.BindTableToVariableRequest) - _internal_metadata_.Delete<::google::protobuf::UnknownFieldSet>(); - SharedDtor(); -} -inline void BindTableToVariableRequest::SharedDtor() { - ABSL_DCHECK(GetArena() == nullptr); - _impl_.variable_name_.Destroy(); - delete _impl_.console_id_; - delete _impl_.table_id_; - _impl_.~Impl_(); -} - -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_ = { - { - PROTOBUF_FIELD_OFFSET(BindTableToVariableRequest, _impl_._has_bits_), - 0, // no _extensions_ - 4, 24, // max_field_number, fast_idx_mask - offsetof(decltype(_table_), field_lookup_table), - 4294967282, // skipmap - offsetof(decltype(_table_), field_entries), - 3, // num_field_entries - 2, // num_aux_entries - offsetof(decltype(_table_), 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::BindTableToVariableRequest>(), // to_prefetch - #endif // PROTOBUF_PREFETCH_PARSE_TABLE - }, {{ - // .io.deephaven.proto.backplane.grpc.Ticket table_id = 4; - {::_pbi::TcParser::FastMtS1, - {34, 1, 1, PROTOBUF_FIELD_OFFSET(BindTableToVariableRequest, _impl_.table_id_)}}, - // .io.deephaven.proto.backplane.grpc.Ticket console_id = 1; - {::_pbi::TcParser::FastMtS1, - {10, 0, 0, PROTOBUF_FIELD_OFFSET(BindTableToVariableRequest, _impl_.console_id_)}}, - {::_pbi::TcParser::MiniParse, {}}, - // string variable_name = 3; - {::_pbi::TcParser::FastUS1, - {26, 63, 0, PROTOBUF_FIELD_OFFSET(BindTableToVariableRequest, _impl_.variable_name_)}}, - }}, {{ - 65535, 65535 - }}, {{ - // .io.deephaven.proto.backplane.grpc.Ticket console_id = 1; - {PROTOBUF_FIELD_OFFSET(BindTableToVariableRequest, _impl_.console_id_), _Internal::kHasBitsOffset + 0, 0, - (0 | ::_fl::kFcOptional | ::_fl::kMessage | ::_fl::kTvTable)}, - // string variable_name = 3; - {PROTOBUF_FIELD_OFFSET(BindTableToVariableRequest, _impl_.variable_name_), -1, 0, - (0 | ::_fl::kFcSingular | ::_fl::kUtf8String | ::_fl::kRepAString)}, - // .io.deephaven.proto.backplane.grpc.Ticket table_id = 4; - {PROTOBUF_FIELD_OFFSET(BindTableToVariableRequest, _impl_.table_id_), _Internal::kHasBitsOffset + 1, 1, - (0 | ::_fl::kFcOptional | ::_fl::kMessage | ::_fl::kTvTable)}, - }}, {{ - {::_pbi::TcParser::GetTable<::io::deephaven::proto::backplane::grpc::Ticket>()}, - {::_pbi::TcParser::GetTable<::io::deephaven::proto::backplane::grpc::Ticket>()}, - }}, {{ - "\103\0\15\0\0\0\0\0" - "io.deephaven.proto.backplane.script.grpc.BindTableToVariableRequest" - "variable_name" - }}, -}; - -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; - - _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>(); -} - -#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; - (void) cached_has_bits; - - if (!from._internal_variable_name().empty()) { - _this->_internal_set_variable_name(from._internal_variable_name()); - } - cached_has_bits = from._impl_._has_bits_[0]; - if (cached_has_bits & 0x00000003u) { - 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 (cached_has_bits & 0x00000002u) { - 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_); -} - -void BindTableToVariableRequest::CopyFrom(const BindTableToVariableRequest& from) { -// @@protoc_insertion_point(class_specific_copy_from_start:io.deephaven.proto.backplane.script.grpc.BindTableToVariableRequest) - if (&from == this) return; - Clear(); - MergeFrom(from); -} - - -void BindTableToVariableRequest::InternalSwap(BindTableToVariableRequest* PROTOBUF_RESTRICT other) { - using std::swap; - auto* arena = GetArena(); - ABSL_DCHECK_EQ(arena, other->GetArena()); - _internal_metadata_.InternalSwap(&other->_internal_metadata_); - swap(_impl_._has_bits_[0], other->_impl_._has_bits_[0]); - ::_pbi::ArenaStringPtr::InternalSwap(&_impl_.variable_name_, &other->_impl_.variable_name_, arena); - ::google::protobuf::internal::memswap< - PROTOBUF_FIELD_OFFSET(BindTableToVariableRequest, _impl_.table_id_) - + sizeof(BindTableToVariableRequest::_impl_.table_id_) - - PROTOBUF_FIELD_OFFSET(BindTableToVariableRequest, _impl_.console_id_)>( - reinterpret_cast(&_impl_.console_id_), - reinterpret_cast(&other->_impl_.console_id_)); -} - -::google::protobuf::Metadata BindTableToVariableRequest::GetMetadata() const { - return ::google::protobuf::Message::GetMetadataImpl(GetClassData()->full()); -} -// =================================================================== - -class BindTableToVariableResponse::_Internal { - public: -}; - -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>( - from._internal_metadata_); - - // @@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 - {{ - }}, -}; - - - - - - - - -::google::protobuf::Metadata BindTableToVariableResponse::GetMetadata() const { - return ::google::protobuf::internal::ZeroFieldsBase::GetMetadataImpl(GetClassData()->full()); -} -// =================================================================== - -class CancelCommandRequest::_Internal { - public: - using HasBits = - decltype(std::declval()._impl_._has_bits_); - static constexpr ::int32_t kHasBitsOffset = - 8 * PROTOBUF_FIELD_OFFSET(CancelCommandRequest, _impl_._has_bits_); -}; - -void CancelCommandRequest::clear_console_id() { - ::google::protobuf::internal::TSanWrite(&_impl_); - if (_impl_.console_id_ != nullptr) _impl_.console_id_->Clear(); - _impl_._has_bits_[0] &= ~0x00000001u; -} -void CancelCommandRequest::clear_command_id() { - ::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 ::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_, from); - ::uint32_t cached_has_bits = _impl_._has_bits_[0]; - _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) -} -inline PROTOBUF_NDEBUG_INLINE CancelCommandRequest::Impl_::Impl_( - ::google::protobuf::internal::InternalVisibility visibility, - ::google::protobuf::Arena* arena) - : _cached_size_{0} {} - -inline void CancelCommandRequest::SharedCtor(::_pb::Arena* arena) { - new (&_impl_) Impl_(internal_visibility(), arena); - ::memset(reinterpret_cast(&_impl_) + - offsetof(Impl_, console_id_), - 0, - offsetof(Impl_, command_id_) - - offsetof(Impl_, console_id_) + - sizeof(Impl_::command_id_)); -} -CancelCommandRequest::~CancelCommandRequest() { - // @@protoc_insertion_point(destructor:io.deephaven.proto.backplane.script.grpc.CancelCommandRequest) - _internal_metadata_.Delete<::google::protobuf::UnknownFieldSet>(); - SharedDtor(); -} -inline void CancelCommandRequest::SharedDtor() { - ABSL_DCHECK(GetArena() == nullptr); - delete _impl_.console_id_; - delete _impl_.command_id_; - _impl_.~Impl_(); -} - -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_ = { - { - PROTOBUF_FIELD_OFFSET(CancelCommandRequest, _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 - 2, // num_aux_entries - offsetof(decltype(_table_), 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::CancelCommandRequest>(), // to_prefetch - #endif // PROTOBUF_PREFETCH_PARSE_TABLE - }, {{ - // .io.deephaven.proto.backplane.grpc.Ticket command_id = 2; - {::_pbi::TcParser::FastMtS1, - {18, 1, 1, PROTOBUF_FIELD_OFFSET(CancelCommandRequest, _impl_.command_id_)}}, - // .io.deephaven.proto.backplane.grpc.Ticket console_id = 1; - {::_pbi::TcParser::FastMtS1, - {10, 0, 0, PROTOBUF_FIELD_OFFSET(CancelCommandRequest, _impl_.console_id_)}}, - }}, {{ - 65535, 65535 - }}, {{ - // .io.deephaven.proto.backplane.grpc.Ticket console_id = 1; - {PROTOBUF_FIELD_OFFSET(CancelCommandRequest, _impl_.console_id_), _Internal::kHasBitsOffset + 0, 0, - (0 | ::_fl::kFcOptional | ::_fl::kMessage | ::_fl::kTvTable)}, - // .io.deephaven.proto.backplane.grpc.Ticket command_id = 2; - {PROTOBUF_FIELD_OFFSET(CancelCommandRequest, _impl_.command_id_), _Internal::kHasBitsOffset + 1, 1, - (0 | ::_fl::kFcOptional | ::_fl::kMessage | ::_fl::kTvTable)}, - }}, {{ - {::_pbi::TcParser::GetTable<::io::deephaven::proto::backplane::grpc::Ticket>()}, - {::_pbi::TcParser::GetTable<::io::deephaven::proto::backplane::grpc::Ticket>()}, - }}, {{ - }}, -}; - -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) { - 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>(); -} - -#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; - (void) cached_has_bits; - - cached_has_bits = from._impl_._has_bits_[0]; - if (cached_has_bits & 0x00000003u) { - 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 (cached_has_bits & 0x00000002u) { - 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_); -} - -void CancelCommandRequest::CopyFrom(const CancelCommandRequest& from) { -// @@protoc_insertion_point(class_specific_copy_from_start:io.deephaven.proto.backplane.script.grpc.CancelCommandRequest) - if (&from == this) return; - Clear(); - MergeFrom(from); -} - - -void CancelCommandRequest::InternalSwap(CancelCommandRequest* PROTOBUF_RESTRICT other) { - using std::swap; - _internal_metadata_.InternalSwap(&other->_internal_metadata_); - swap(_impl_._has_bits_[0], other->_impl_._has_bits_[0]); - ::google::protobuf::internal::memswap< - PROTOBUF_FIELD_OFFSET(CancelCommandRequest, _impl_.command_id_) - + sizeof(CancelCommandRequest::_impl_.command_id_) - - PROTOBUF_FIELD_OFFSET(CancelCommandRequest, _impl_.console_id_)>( - reinterpret_cast(&_impl_.console_id_), - reinterpret_cast(&other->_impl_.console_id_)); -} - -::google::protobuf::Metadata CancelCommandRequest::GetMetadata() const { - return ::google::protobuf::Message::GetMetadataImpl(GetClassData()->full()); -} -// =================================================================== - -class CancelCommandResponse::_Internal { - public: -}; - -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>( - from._internal_metadata_); - - // @@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 - {{ - }}, -}; - - - - - - - - -::google::protobuf::Metadata CancelCommandResponse::GetMetadata() const { - return ::google::protobuf::internal::ZeroFieldsBase::GetMetadataImpl(GetClassData()->full()); -} -// =================================================================== - -class CancelAutoCompleteRequest::_Internal { - public: - using HasBits = - decltype(std::declval()._impl_._has_bits_); - static constexpr ::int32_t kHasBitsOffset = - 8 * PROTOBUF_FIELD_OFFSET(CancelAutoCompleteRequest, _impl_._has_bits_); -}; - -void CancelAutoCompleteRequest::clear_console_id() { - ::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 ::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_, from); - ::uint32_t cached_has_bits = _impl_._has_bits_[0]; - _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) -} -inline PROTOBUF_NDEBUG_INLINE CancelAutoCompleteRequest::Impl_::Impl_( - ::google::protobuf::internal::InternalVisibility visibility, - ::google::protobuf::Arena* arena) - : _cached_size_{0} {} - -inline void CancelAutoCompleteRequest::SharedCtor(::_pb::Arena* arena) { - new (&_impl_) Impl_(internal_visibility(), arena); - ::memset(reinterpret_cast(&_impl_) + - offsetof(Impl_, console_id_), - 0, - offsetof(Impl_, request_id_) - - offsetof(Impl_, console_id_) + - sizeof(Impl_::request_id_)); -} -CancelAutoCompleteRequest::~CancelAutoCompleteRequest() { - // @@protoc_insertion_point(destructor:io.deephaven.proto.backplane.script.grpc.CancelAutoCompleteRequest) - _internal_metadata_.Delete<::google::protobuf::UnknownFieldSet>(); - SharedDtor(); -} -inline void CancelAutoCompleteRequest::SharedDtor() { - ABSL_DCHECK(GetArena() == nullptr); - delete _impl_.console_id_; - _impl_.~Impl_(); -} - -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_ = { - { - PROTOBUF_FIELD_OFFSET(CancelAutoCompleteRequest, _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::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>(), - {16, 63, 0, PROTOBUF_FIELD_OFFSET(CancelAutoCompleteRequest, _impl_.request_id_)}}, - // .io.deephaven.proto.backplane.grpc.Ticket console_id = 1; - {::_pbi::TcParser::FastMtS1, - {10, 0, 0, PROTOBUF_FIELD_OFFSET(CancelAutoCompleteRequest, _impl_.console_id_)}}, - }}, {{ - 65535, 65535 - }}, {{ - // .io.deephaven.proto.backplane.grpc.Ticket console_id = 1; - {PROTOBUF_FIELD_OFFSET(CancelAutoCompleteRequest, _impl_.console_id_), _Internal::kHasBitsOffset + 0, 0, - (0 | ::_fl::kFcOptional | ::_fl::kMessage | ::_fl::kTvTable)}, - // int32 request_id = 2; - {PROTOBUF_FIELD_OFFSET(CancelAutoCompleteRequest, _impl_.request_id_), -1, 0, - (0 | ::_fl::kFcSingular | ::_fl::kInt32)}, - }}, {{ - {::_pbi::TcParser::GetTable<::io::deephaven::proto::backplane::grpc::Ticket>()}, - }}, {{ - }}, -}; - -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; - - 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>(); -} - -#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; - - 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->_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_); -} - -void CancelAutoCompleteRequest::CopyFrom(const CancelAutoCompleteRequest& from) { -// @@protoc_insertion_point(class_specific_copy_from_start:io.deephaven.proto.backplane.script.grpc.CancelAutoCompleteRequest) - if (&from == this) return; - Clear(); - MergeFrom(from); -} - - -void CancelAutoCompleteRequest::InternalSwap(CancelAutoCompleteRequest* PROTOBUF_RESTRICT other) { - using std::swap; - _internal_metadata_.InternalSwap(&other->_internal_metadata_); - swap(_impl_._has_bits_[0], other->_impl_._has_bits_[0]); - ::google::protobuf::internal::memswap< - PROTOBUF_FIELD_OFFSET(CancelAutoCompleteRequest, _impl_.request_id_) - + sizeof(CancelAutoCompleteRequest::_impl_.request_id_) - - PROTOBUF_FIELD_OFFSET(CancelAutoCompleteRequest, _impl_.console_id_)>( - reinterpret_cast(&_impl_.console_id_), - reinterpret_cast(&other->_impl_.console_id_)); -} - -::google::protobuf::Metadata CancelAutoCompleteRequest::GetMetadata() const { - return ::google::protobuf::Message::GetMetadataImpl(GetClassData()->full()); -} -// =================================================================== - -class CancelAutoCompleteResponse::_Internal { - public: -}; - -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>( - from._internal_metadata_); - - // @@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 - {{ - }}, -}; - - - - - - - - -::google::protobuf::Metadata CancelAutoCompleteResponse::GetMetadata() const { - return ::google::protobuf::internal::ZeroFieldsBase::GetMetadataImpl(GetClassData()->full()); -} -// =================================================================== - -class AutoCompleteRequest::_Internal { - public: - using HasBits = - decltype(std::declval()._impl_._has_bits_); - static constexpr ::int32_t kHasBitsOffset = - 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_); -}; - -void AutoCompleteRequest::clear_console_id() { - ::google::protobuf::internal::TSanWrite(&_impl_); - if (_impl_.console_id_ != nullptr) _impl_.console_id_->Clear(); - _impl_._has_bits_[0] &= ~0x00000001u; -} -void AutoCompleteRequest::set_allocated_open_document(::io::deephaven::proto::backplane::script::grpc::OpenDocumentRequest* open_document) { - ::google::protobuf::Arena* message_arena = GetArena(); - clear_request(); - if (open_document) { - ::google::protobuf::Arena* submessage_arena = open_document->GetArena(); - if (message_arena != submessage_arena) { - open_document = ::google::protobuf::internal::GetOwnedMessage(message_arena, open_document, submessage_arena); - } - set_has_open_document(); - _impl_.request_.open_document_ = open_document; - } - // @@protoc_insertion_point(field_set_allocated:io.deephaven.proto.backplane.script.grpc.AutoCompleteRequest.open_document) -} -void AutoCompleteRequest::set_allocated_change_document(::io::deephaven::proto::backplane::script::grpc::ChangeDocumentRequest* change_document) { - ::google::protobuf::Arena* message_arena = GetArena(); - clear_request(); - if (change_document) { - ::google::protobuf::Arena* submessage_arena = change_document->GetArena(); - if (message_arena != submessage_arena) { - change_document = ::google::protobuf::internal::GetOwnedMessage(message_arena, change_document, submessage_arena); - } - set_has_change_document(); - _impl_.request_.change_document_ = change_document; - } - // @@protoc_insertion_point(field_set_allocated:io.deephaven.proto.backplane.script.grpc.AutoCompleteRequest.change_document) -} -void AutoCompleteRequest::set_allocated_get_completion_items(::io::deephaven::proto::backplane::script::grpc::GetCompletionItemsRequest* get_completion_items) { - ::google::protobuf::Arena* message_arena = GetArena(); - clear_request(); - if (get_completion_items) { - ::google::protobuf::Arena* submessage_arena = get_completion_items->GetArena(); - if (message_arena != submessage_arena) { - get_completion_items = ::google::protobuf::internal::GetOwnedMessage(message_arena, get_completion_items, submessage_arena); - } - set_has_get_completion_items(); - _impl_.request_.get_completion_items_ = get_completion_items; - } - // @@protoc_insertion_point(field_set_allocated:io.deephaven.proto.backplane.script.grpc.AutoCompleteRequest.get_completion_items) -} -void AutoCompleteRequest::set_allocated_get_signature_help(::io::deephaven::proto::backplane::script::grpc::GetSignatureHelpRequest* get_signature_help) { - ::google::protobuf::Arena* message_arena = GetArena(); - clear_request(); - if (get_signature_help) { - ::google::protobuf::Arena* submessage_arena = get_signature_help->GetArena(); - if (message_arena != submessage_arena) { - get_signature_help = ::google::protobuf::internal::GetOwnedMessage(message_arena, get_signature_help, submessage_arena); - } - set_has_get_signature_help(); - _impl_.request_.get_signature_help_ = get_signature_help; - } - // @@protoc_insertion_point(field_set_allocated:io.deephaven.proto.backplane.script.grpc.AutoCompleteRequest.get_signature_help) -} -void AutoCompleteRequest::set_allocated_get_hover(::io::deephaven::proto::backplane::script::grpc::GetHoverRequest* get_hover) { - ::google::protobuf::Arena* message_arena = GetArena(); - clear_request(); - if (get_hover) { - ::google::protobuf::Arena* submessage_arena = get_hover->GetArena(); - if (message_arena != submessage_arena) { - get_hover = ::google::protobuf::internal::GetOwnedMessage(message_arena, get_hover, submessage_arena); - } - set_has_get_hover(); - _impl_.request_.get_hover_ = get_hover; - } - // @@protoc_insertion_point(field_set_allocated:io.deephaven.proto.backplane.script.grpc.AutoCompleteRequest.get_hover) -} -void AutoCompleteRequest::set_allocated_get_diagnostic(::io::deephaven::proto::backplane::script::grpc::GetDiagnosticRequest* get_diagnostic) { - ::google::protobuf::Arena* message_arena = GetArena(); - clear_request(); - if (get_diagnostic) { - ::google::protobuf::Arena* submessage_arena = get_diagnostic->GetArena(); - if (message_arena != submessage_arena) { - get_diagnostic = ::google::protobuf::internal::GetOwnedMessage(message_arena, get_diagnostic, submessage_arena); - } - set_has_get_diagnostic(); - _impl_.request_.get_diagnostic_ = get_diagnostic; - } - // @@protoc_insertion_point(field_set_allocated:io.deephaven.proto.backplane.script.grpc.AutoCompleteRequest.get_diagnostic) -} -void AutoCompleteRequest::set_allocated_close_document(::io::deephaven::proto::backplane::script::grpc::CloseDocumentRequest* close_document) { - ::google::protobuf::Arena* message_arena = GetArena(); - clear_request(); - if (close_document) { - ::google::protobuf::Arena* submessage_arena = close_document->GetArena(); - if (message_arena != submessage_arena) { - close_document = ::google::protobuf::internal::GetOwnedMessage(message_arena, close_document, submessage_arena); - } - set_has_close_document(); - _impl_.request_.close_document_ = close_document; - } - // @@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 ::io::deephaven::proto::backplane::script::grpc::AutoCompleteRequest& from_msg) - : _has_bits_{from._has_bits_}, - _cached_size_{0}, - request_{}, - _oneof_case_{from._oneof_case_[0]} {} - -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_, from); - ::uint32_t cached_has_bits = _impl_._has_bits_[0]; - _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_ = ::google::protobuf::Message::CopyConstruct<::io::deephaven::proto::backplane::script::grpc::OpenDocumentRequest>(arena, *from._impl_.request_.open_document_); - break; - case kChangeDocument: - _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_ = ::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_ = ::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_ = ::google::protobuf::Message::CopyConstruct<::io::deephaven::proto::backplane::script::grpc::GetHoverRequest>(arena, *from._impl_.request_.get_hover_); - break; - case kGetDiagnostic: - _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_ = ::google::protobuf::Message::CopyConstruct<::io::deephaven::proto::backplane::script::grpc::CloseDocumentRequest>(arena, *from._impl_.request_.close_document_); - break; - } - - // @@protoc_insertion_point(copy_constructor:io.deephaven.proto.backplane.script.grpc.AutoCompleteRequest) -} -inline PROTOBUF_NDEBUG_INLINE AutoCompleteRequest::Impl_::Impl_( - ::google::protobuf::internal::InternalVisibility visibility, - ::google::protobuf::Arena* arena) - : _cached_size_{0}, - request_{}, - _oneof_case_{} {} - -inline void AutoCompleteRequest::SharedCtor(::_pb::Arena* arena) { - new (&_impl_) Impl_(internal_visibility(), arena); - ::memset(reinterpret_cast(&_impl_) + - offsetof(Impl_, console_id_), - 0, - offsetof(Impl_, request_id_) - - offsetof(Impl_, console_id_) + - sizeof(Impl_::request_id_)); -} -AutoCompleteRequest::~AutoCompleteRequest() { - // @@protoc_insertion_point(destructor:io.deephaven.proto.backplane.script.grpc.AutoCompleteRequest) - _internal_metadata_.Delete<::google::protobuf::UnknownFieldSet>(); - SharedDtor(); -} -inline void AutoCompleteRequest::SharedDtor() { - ABSL_DCHECK(GetArena() == nullptr); - delete _impl_.console_id_; - if (has_request()) { - clear_request(); - } - _impl_.~Impl_(); -} - -void AutoCompleteRequest::clear_request() { -// @@protoc_insertion_point(one_of_clear_start:io.deephaven.proto.backplane.script.grpc.AutoCompleteRequest) - ::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; - } - case REQUEST_NOT_SET: { - break; - } - } - _impl_._oneof_case_[0] = REQUEST_NOT_SET; -} - - -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_ = { - { - PROTOBUF_FIELD_OFFSET(AutoCompleteRequest, _impl_._has_bits_), - 0, // no _extensions_ - 9, 8, // max_field_number, fast_idx_mask - offsetof(decltype(_table_), field_lookup_table), - 4294966784, // skipmap - offsetof(decltype(_table_), field_entries), - 9, // num_field_entries - 8, // num_aux_entries - offsetof(decltype(_table_), 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::AutoCompleteRequest>(), // to_prefetch - #endif // PROTOBUF_PREFETCH_PARSE_TABLE - }, {{ - // int32 request_id = 6; - {::_pbi::TcParser::SingularVarintNoZag1<::uint32_t, offsetof(AutoCompleteRequest, _impl_.request_id_), 63>(), - {48, 63, 0, PROTOBUF_FIELD_OFFSET(AutoCompleteRequest, _impl_.request_id_)}}, - // .io.deephaven.proto.backplane.grpc.Ticket console_id = 5; - {::_pbi::TcParser::FastMtS1, - {42, 0, 4, PROTOBUF_FIELD_OFFSET(AutoCompleteRequest, _impl_.console_id_)}}, - }}, {{ - 65535, 65535 - }}, {{ - // .io.deephaven.proto.backplane.script.grpc.OpenDocumentRequest open_document = 1; - {PROTOBUF_FIELD_OFFSET(AutoCompleteRequest, _impl_.request_.open_document_), _Internal::kOneofCaseOffset + 0, 0, - (0 | ::_fl::kFcOneof | ::_fl::kMessage | ::_fl::kTvTable)}, - // .io.deephaven.proto.backplane.script.grpc.ChangeDocumentRequest change_document = 2; - {PROTOBUF_FIELD_OFFSET(AutoCompleteRequest, _impl_.request_.change_document_), _Internal::kOneofCaseOffset + 0, 1, - (0 | ::_fl::kFcOneof | ::_fl::kMessage | ::_fl::kTvTable)}, - // .io.deephaven.proto.backplane.script.grpc.GetCompletionItemsRequest get_completion_items = 3; - {PROTOBUF_FIELD_OFFSET(AutoCompleteRequest, _impl_.request_.get_completion_items_), _Internal::kOneofCaseOffset + 0, 2, - (0 | ::_fl::kFcOneof | ::_fl::kMessage | ::_fl::kTvTable)}, - // .io.deephaven.proto.backplane.script.grpc.CloseDocumentRequest close_document = 4; - {PROTOBUF_FIELD_OFFSET(AutoCompleteRequest, _impl_.request_.close_document_), _Internal::kOneofCaseOffset + 0, 3, - (0 | ::_fl::kFcOneof | ::_fl::kMessage | ::_fl::kTvTable)}, - // .io.deephaven.proto.backplane.grpc.Ticket console_id = 5; - {PROTOBUF_FIELD_OFFSET(AutoCompleteRequest, _impl_.console_id_), _Internal::kHasBitsOffset + 0, 4, - (0 | ::_fl::kFcOptional | ::_fl::kMessage | ::_fl::kTvTable)}, - // int32 request_id = 6; - {PROTOBUF_FIELD_OFFSET(AutoCompleteRequest, _impl_.request_id_), -1, 0, - (0 | ::_fl::kFcSingular | ::_fl::kInt32)}, - // .io.deephaven.proto.backplane.script.grpc.GetSignatureHelpRequest get_signature_help = 7; - {PROTOBUF_FIELD_OFFSET(AutoCompleteRequest, _impl_.request_.get_signature_help_), _Internal::kOneofCaseOffset + 0, 5, - (0 | ::_fl::kFcOneof | ::_fl::kMessage | ::_fl::kTvTable)}, - // .io.deephaven.proto.backplane.script.grpc.GetHoverRequest get_hover = 8; - {PROTOBUF_FIELD_OFFSET(AutoCompleteRequest, _impl_.request_.get_hover_), _Internal::kOneofCaseOffset + 0, 6, - (0 | ::_fl::kFcOneof | ::_fl::kMessage | ::_fl::kTvTable)}, - // .io.deephaven.proto.backplane.script.grpc.GetDiagnosticRequest get_diagnostic = 9; - {PROTOBUF_FIELD_OFFSET(AutoCompleteRequest, _impl_.request_.get_diagnostic_), _Internal::kOneofCaseOffset + 0, 7, - (0 | ::_fl::kFcOneof | ::_fl::kMessage | ::_fl::kTvTable)}, - }}, {{ - {::_pbi::TcParser::GetTable<::io::deephaven::proto::backplane::script::grpc::OpenDocumentRequest>()}, - {::_pbi::TcParser::GetTable<::io::deephaven::proto::backplane::script::grpc::ChangeDocumentRequest>()}, - {::_pbi::TcParser::GetTable<::io::deephaven::proto::backplane::script::grpc::GetCompletionItemsRequest>()}, - {::_pbi::TcParser::GetTable<::io::deephaven::proto::backplane::script::grpc::CloseDocumentRequest>()}, - {::_pbi::TcParser::GetTable<::io::deephaven::proto::backplane::grpc::Ticket>()}, - {::_pbi::TcParser::GetTable<::io::deephaven::proto::backplane::script::grpc::GetSignatureHelpRequest>()}, - {::_pbi::TcParser::GetTable<::io::deephaven::proto::backplane::script::grpc::GetHoverRequest>()}, - {::_pbi::TcParser::GetTable<::io::deephaven::proto::backplane::script::grpc::GetDiagnosticRequest>()}, - }}, {{ - }}, -}; - -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; - // 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>(); -} - -#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; - - 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->_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; - } - - 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_); -} - -void AutoCompleteRequest::CopyFrom(const AutoCompleteRequest& from) { -// @@protoc_insertion_point(class_specific_copy_from_start:io.deephaven.proto.backplane.script.grpc.AutoCompleteRequest) - if (&from == this) return; - Clear(); - MergeFrom(from); -} - - -void AutoCompleteRequest::InternalSwap(AutoCompleteRequest* PROTOBUF_RESTRICT other) { - using std::swap; - _internal_metadata_.InternalSwap(&other->_internal_metadata_); - swap(_impl_._has_bits_[0], other->_impl_._has_bits_[0]); - ::google::protobuf::internal::memswap< - PROTOBUF_FIELD_OFFSET(AutoCompleteRequest, _impl_.request_id_) - + sizeof(AutoCompleteRequest::_impl_.request_id_) - - PROTOBUF_FIELD_OFFSET(AutoCompleteRequest, _impl_.console_id_)>( - reinterpret_cast(&_impl_.console_id_), - reinterpret_cast(&other->_impl_.console_id_)); - swap(_impl_.request_, other->_impl_.request_); - swap(_impl_._oneof_case_[0], other->_impl_._oneof_case_[0]); -} - -::google::protobuf::Metadata AutoCompleteRequest::GetMetadata() const { - 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_); -}; - -void AutoCompleteResponse::set_allocated_completion_items(::io::deephaven::proto::backplane::script::grpc::GetCompletionItemsResponse* completion_items) { - ::google::protobuf::Arena* message_arena = GetArena(); - clear_response(); - if (completion_items) { - ::google::protobuf::Arena* submessage_arena = completion_items->GetArena(); - if (message_arena != submessage_arena) { - completion_items = ::google::protobuf::internal::GetOwnedMessage(message_arena, completion_items, submessage_arena); - } - set_has_completion_items(); - _impl_.response_.completion_items_ = completion_items; - } - // @@protoc_insertion_point(field_set_allocated:io.deephaven.proto.backplane.script.grpc.AutoCompleteResponse.completion_items) -} -void AutoCompleteResponse::set_allocated_signatures(::io::deephaven::proto::backplane::script::grpc::GetSignatureHelpResponse* signatures) { - ::google::protobuf::Arena* message_arena = GetArena(); - clear_response(); - if (signatures) { - ::google::protobuf::Arena* submessage_arena = signatures->GetArena(); - if (message_arena != submessage_arena) { - signatures = ::google::protobuf::internal::GetOwnedMessage(message_arena, signatures, submessage_arena); - } - set_has_signatures(); - _impl_.response_.signatures_ = signatures; - } - // @@protoc_insertion_point(field_set_allocated:io.deephaven.proto.backplane.script.grpc.AutoCompleteResponse.signatures) -} -void AutoCompleteResponse::set_allocated_hover(::io::deephaven::proto::backplane::script::grpc::GetHoverResponse* hover) { - ::google::protobuf::Arena* message_arena = GetArena(); - clear_response(); - if (hover) { - ::google::protobuf::Arena* submessage_arena = hover->GetArena(); - if (message_arena != submessage_arena) { - hover = ::google::protobuf::internal::GetOwnedMessage(message_arena, hover, submessage_arena); - } - set_has_hover(); - _impl_.response_.hover_ = hover; - } - // @@protoc_insertion_point(field_set_allocated:io.deephaven.proto.backplane.script.grpc.AutoCompleteResponse.hover) -} -void AutoCompleteResponse::set_allocated_diagnostic(::io::deephaven::proto::backplane::script::grpc::GetPullDiagnosticResponse* diagnostic) { - ::google::protobuf::Arena* message_arena = GetArena(); - clear_response(); - if (diagnostic) { - ::google::protobuf::Arena* submessage_arena = diagnostic->GetArena(); - if (message_arena != submessage_arena) { - diagnostic = ::google::protobuf::internal::GetOwnedMessage(message_arena, diagnostic, submessage_arena); - } - set_has_diagnostic(); - _impl_.response_.diagnostic_ = diagnostic; - } - // @@protoc_insertion_point(field_set_allocated:io.deephaven.proto.backplane.script.grpc.AutoCompleteResponse.diagnostic) -} -void AutoCompleteResponse::set_allocated_diagnostic_publish(::io::deephaven::proto::backplane::script::grpc::GetPublishDiagnosticResponse* diagnostic_publish) { - ::google::protobuf::Arena* message_arena = GetArena(); - clear_response(); - if (diagnostic_publish) { - ::google::protobuf::Arena* submessage_arena = diagnostic_publish->GetArena(); - if (message_arena != submessage_arena) { - diagnostic_publish = ::google::protobuf::internal::GetOwnedMessage(message_arena, diagnostic_publish, submessage_arena); - } - set_has_diagnostic_publish(); - _impl_.response_.diagnostic_publish_ = diagnostic_publish; - } - // @@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 ::io::deephaven::proto::backplane::script::grpc::AutoCompleteResponse& from_msg) - : response_{}, - _cached_size_{0}, - _oneof_case_{from._oneof_case_[0]} {} - -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_, from); - ::memcpy(reinterpret_cast(&_impl_) + - offsetof(Impl_, request_id_), - reinterpret_cast(&from._impl_) + - offsetof(Impl_, request_id_), - offsetof(Impl_, success_) - - offsetof(Impl_, request_id_) + - sizeof(Impl_::success_)); - switch (response_case()) { - case RESPONSE_NOT_SET: - break; - case kCompletionItems: - _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_ = ::google::protobuf::Message::CopyConstruct<::io::deephaven::proto::backplane::script::grpc::GetSignatureHelpResponse>(arena, *from._impl_.response_.signatures_); - break; - case kHover: - _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_ = ::google::protobuf::Message::CopyConstruct<::io::deephaven::proto::backplane::script::grpc::GetPullDiagnosticResponse>(arena, *from._impl_.response_.diagnostic_); - break; - case kDiagnosticPublish: - _impl_.response_.diagnostic_publish_ = ::google::protobuf::Message::CopyConstruct<::io::deephaven::proto::backplane::script::grpc::GetPublishDiagnosticResponse>(arena, *from._impl_.response_.diagnostic_publish_); - break; - } - - // @@protoc_insertion_point(copy_constructor:io.deephaven.proto.backplane.script.grpc.AutoCompleteResponse) -} -inline PROTOBUF_NDEBUG_INLINE AutoCompleteResponse::Impl_::Impl_( - ::google::protobuf::internal::InternalVisibility visibility, - ::google::protobuf::Arena* arena) - : response_{}, - _cached_size_{0}, - _oneof_case_{} {} - -inline void AutoCompleteResponse::SharedCtor(::_pb::Arena* arena) { - new (&_impl_) Impl_(internal_visibility(), arena); - ::memset(reinterpret_cast(&_impl_) + - offsetof(Impl_, request_id_), - 0, - offsetof(Impl_, success_) - - offsetof(Impl_, request_id_) + - sizeof(Impl_::success_)); -} -AutoCompleteResponse::~AutoCompleteResponse() { - // @@protoc_insertion_point(destructor:io.deephaven.proto.backplane.script.grpc.AutoCompleteResponse) - _internal_metadata_.Delete<::google::protobuf::UnknownFieldSet>(); - SharedDtor(); -} -inline void AutoCompleteResponse::SharedDtor() { - ABSL_DCHECK(GetArena() == nullptr); - if (has_response()) { - clear_response(); - } - _impl_.~Impl_(); -} - -void AutoCompleteResponse::clear_response() { -// @@protoc_insertion_point(one_of_clear_start:io.deephaven.proto.backplane.script.grpc.AutoCompleteResponse) - ::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; - } - case RESPONSE_NOT_SET: { - break; - } - } - _impl_._oneof_case_[0] = RESPONSE_NOT_SET; -} - - -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_ = { - { - 0, // no _has_bits_ - 0, // no _extensions_ - 7, 8, // max_field_number, fast_idx_mask - offsetof(decltype(_table_), field_lookup_table), - 4294967168, // skipmap - offsetof(decltype(_table_), field_entries), - 7, // num_field_entries - 5, // num_aux_entries - offsetof(decltype(_table_), 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::AutoCompleteResponse>(), // to_prefetch - #endif // PROTOBUF_PREFETCH_PARSE_TABLE - }, {{ - // int32 request_id = 2; - {::_pbi::TcParser::SingularVarintNoZag1<::uint32_t, offsetof(AutoCompleteResponse, _impl_.request_id_), 63>(), - {16, 63, 0, PROTOBUF_FIELD_OFFSET(AutoCompleteResponse, _impl_.request_id_)}}, - // bool success = 3; - {::_pbi::TcParser::SingularVarintNoZag1(), - {24, 63, 0, PROTOBUF_FIELD_OFFSET(AutoCompleteResponse, _impl_.success_)}}, - }}, {{ - 65535, 65535 - }}, {{ - // .io.deephaven.proto.backplane.script.grpc.GetCompletionItemsResponse completion_items = 1; - {PROTOBUF_FIELD_OFFSET(AutoCompleteResponse, _impl_.response_.completion_items_), _Internal::kOneofCaseOffset + 0, 0, - (0 | ::_fl::kFcOneof | ::_fl::kMessage | ::_fl::kTvTable)}, - // int32 request_id = 2; - {PROTOBUF_FIELD_OFFSET(AutoCompleteResponse, _impl_.request_id_), 0, 0, - (0 | ::_fl::kFcSingular | ::_fl::kInt32)}, - // bool success = 3; - {PROTOBUF_FIELD_OFFSET(AutoCompleteResponse, _impl_.success_), 0, 0, - (0 | ::_fl::kFcSingular | ::_fl::kBool)}, - // .io.deephaven.proto.backplane.script.grpc.GetSignatureHelpResponse signatures = 4; - {PROTOBUF_FIELD_OFFSET(AutoCompleteResponse, _impl_.response_.signatures_), _Internal::kOneofCaseOffset + 0, 1, - (0 | ::_fl::kFcOneof | ::_fl::kMessage | ::_fl::kTvTable)}, - // .io.deephaven.proto.backplane.script.grpc.GetHoverResponse hover = 5; - {PROTOBUF_FIELD_OFFSET(AutoCompleteResponse, _impl_.response_.hover_), _Internal::kOneofCaseOffset + 0, 2, - (0 | ::_fl::kFcOneof | ::_fl::kMessage | ::_fl::kTvTable)}, - // .io.deephaven.proto.backplane.script.grpc.GetPullDiagnosticResponse diagnostic = 6; - {PROTOBUF_FIELD_OFFSET(AutoCompleteResponse, _impl_.response_.diagnostic_), _Internal::kOneofCaseOffset + 0, 3, - (0 | ::_fl::kFcOneof | ::_fl::kMessage | ::_fl::kTvTable)}, - // .io.deephaven.proto.backplane.script.grpc.GetPublishDiagnosticResponse diagnostic_publish = 7; - {PROTOBUF_FIELD_OFFSET(AutoCompleteResponse, _impl_.response_.diagnostic_publish_), _Internal::kOneofCaseOffset + 0, 4, - (0 | ::_fl::kFcOneof | ::_fl::kMessage | ::_fl::kTvTable)}, - }}, {{ - {::_pbi::TcParser::GetTable<::io::deephaven::proto::backplane::script::grpc::GetCompletionItemsResponse>()}, - {::_pbi::TcParser::GetTable<::io::deephaven::proto::backplane::script::grpc::GetSignatureHelpResponse>()}, - {::_pbi::TcParser::GetTable<::io::deephaven::proto::backplane::script::grpc::GetHoverResponse>()}, - {::_pbi::TcParser::GetTable<::io::deephaven::proto::backplane::script::grpc::GetPullDiagnosticResponse>()}, - {::_pbi::TcParser::GetTable<::io::deephaven::proto::backplane::script::grpc::GetPublishDiagnosticResponse>()}, - }}, {{ - }}, -}; - -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; - - ::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>(); -} - -#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->_impl_.request_id_ = from._impl_.request_id_; - } - if (from._internal_success() != 0) { - _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; - } - - 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_); -} - -void AutoCompleteResponse::CopyFrom(const AutoCompleteResponse& from) { -// @@protoc_insertion_point(class_specific_copy_from_start:io.deephaven.proto.backplane.script.grpc.AutoCompleteResponse) - if (&from == this) return; - Clear(); - MergeFrom(from); -} - - -void AutoCompleteResponse::InternalSwap(AutoCompleteResponse* PROTOBUF_RESTRICT other) { - using std::swap; - _internal_metadata_.InternalSwap(&other->_internal_metadata_); - ::google::protobuf::internal::memswap< - PROTOBUF_FIELD_OFFSET(AutoCompleteResponse, _impl_.success_) - + sizeof(AutoCompleteResponse::_impl_.success_) - - PROTOBUF_FIELD_OFFSET(AutoCompleteResponse, _impl_.request_id_)>( - reinterpret_cast(&_impl_.request_id_), - reinterpret_cast(&other->_impl_.request_id_)); - swap(_impl_.response_, other->_impl_.response_); - swap(_impl_._oneof_case_[0], other->_impl_._oneof_case_[0]); -} - -::google::protobuf::Metadata AutoCompleteResponse::GetMetadata() const { - return ::google::protobuf::Message::GetMetadataImpl(GetClassData()->full()); -} -// =================================================================== - -class BrowserNextResponse::_Internal { - public: -}; - -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>( - from._internal_metadata_); - - // @@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 - {{ - }}, -}; - - - - - - - - -::google::protobuf::Metadata BrowserNextResponse::GetMetadata() const { - return ::google::protobuf::internal::ZeroFieldsBase::GetMetadataImpl(GetClassData()->full()); -} -// =================================================================== - -class OpenDocumentRequest::_Internal { - public: - using HasBits = - decltype(std::declval()._impl_._has_bits_); - static constexpr ::int32_t kHasBitsOffset = - 8 * PROTOBUF_FIELD_OFFSET(OpenDocumentRequest, _impl_._has_bits_); -}; - -void OpenDocumentRequest::clear_console_id() { - ::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 ::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_, from); - ::uint32_t cached_has_bits = _impl_._has_bits_[0]; - _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) -} -inline PROTOBUF_NDEBUG_INLINE OpenDocumentRequest::Impl_::Impl_( - ::google::protobuf::internal::InternalVisibility visibility, - ::google::protobuf::Arena* arena) - : _cached_size_{0} {} - -inline void OpenDocumentRequest::SharedCtor(::_pb::Arena* arena) { - new (&_impl_) Impl_(internal_visibility(), arena); - ::memset(reinterpret_cast(&_impl_) + - offsetof(Impl_, console_id_), - 0, - offsetof(Impl_, text_document_) - - offsetof(Impl_, console_id_) + - sizeof(Impl_::text_document_)); -} -OpenDocumentRequest::~OpenDocumentRequest() { - // @@protoc_insertion_point(destructor:io.deephaven.proto.backplane.script.grpc.OpenDocumentRequest) - _internal_metadata_.Delete<::google::protobuf::UnknownFieldSet>(); - SharedDtor(); -} -inline void OpenDocumentRequest::SharedDtor() { - ABSL_DCHECK(GetArena() == nullptr); - delete _impl_.console_id_; - delete _impl_.text_document_; - _impl_.~Impl_(); -} - -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_ = { - { - PROTOBUF_FIELD_OFFSET(OpenDocumentRequest, _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 - 2, // num_aux_entries - offsetof(decltype(_table_), 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::OpenDocumentRequest>(), // to_prefetch - #endif // PROTOBUF_PREFETCH_PARSE_TABLE - }, {{ - // .io.deephaven.proto.backplane.script.grpc.TextDocumentItem text_document = 2; - {::_pbi::TcParser::FastMtS1, - {18, 1, 1, PROTOBUF_FIELD_OFFSET(OpenDocumentRequest, _impl_.text_document_)}}, - // .io.deephaven.proto.backplane.grpc.Ticket console_id = 1 [deprecated = true]; - {::_pbi::TcParser::FastMtS1, - {10, 0, 0, PROTOBUF_FIELD_OFFSET(OpenDocumentRequest, _impl_.console_id_)}}, - }}, {{ - 65535, 65535 - }}, {{ - // .io.deephaven.proto.backplane.grpc.Ticket console_id = 1 [deprecated = true]; - {PROTOBUF_FIELD_OFFSET(OpenDocumentRequest, _impl_.console_id_), _Internal::kHasBitsOffset + 0, 0, - (0 | ::_fl::kFcOptional | ::_fl::kMessage | ::_fl::kTvTable)}, - // .io.deephaven.proto.backplane.script.grpc.TextDocumentItem text_document = 2; - {PROTOBUF_FIELD_OFFSET(OpenDocumentRequest, _impl_.text_document_), _Internal::kHasBitsOffset + 1, 1, - (0 | ::_fl::kFcOptional | ::_fl::kMessage | ::_fl::kTvTable)}, - }}, {{ - {::_pbi::TcParser::GetTable<::io::deephaven::proto::backplane::grpc::Ticket>()}, - {::_pbi::TcParser::GetTable<::io::deephaven::proto::backplane::script::grpc::TextDocumentItem>()}, - }}, {{ - }}, -}; - -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) { - 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>(); -} - -#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; - (void) cached_has_bits; - - cached_has_bits = from._impl_._has_bits_[0]; - if (cached_has_bits & 0x00000003u) { - 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 (cached_has_bits & 0x00000002u) { - 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_); -} - -void OpenDocumentRequest::CopyFrom(const OpenDocumentRequest& from) { -// @@protoc_insertion_point(class_specific_copy_from_start:io.deephaven.proto.backplane.script.grpc.OpenDocumentRequest) - if (&from == this) return; - Clear(); - MergeFrom(from); -} - - -void OpenDocumentRequest::InternalSwap(OpenDocumentRequest* PROTOBUF_RESTRICT other) { - using std::swap; - _internal_metadata_.InternalSwap(&other->_internal_metadata_); - swap(_impl_._has_bits_[0], other->_impl_._has_bits_[0]); - ::google::protobuf::internal::memswap< - PROTOBUF_FIELD_OFFSET(OpenDocumentRequest, _impl_.text_document_) - + sizeof(OpenDocumentRequest::_impl_.text_document_) - - PROTOBUF_FIELD_OFFSET(OpenDocumentRequest, _impl_.console_id_)>( - reinterpret_cast(&_impl_.console_id_), - reinterpret_cast(&other->_impl_.console_id_)); -} - -::google::protobuf::Metadata OpenDocumentRequest::GetMetadata() const { - return ::google::protobuf::Message::GetMetadataImpl(GetClassData()->full()); -} -// =================================================================== - -class TextDocumentItem::_Internal { - public: -}; - -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 ::io::deephaven::proto::backplane::script::grpc::TextDocumentItem& from_msg) - : uri_(arena, from.uri_), - language_id_(arena, from.language_id_), - text_(arena, from.text_), - _cached_size_{0} {} - -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_, from); - _impl_.version_ = from._impl_.version_; - - // @@protoc_insertion_point(copy_constructor:io.deephaven.proto.backplane.script.grpc.TextDocumentItem) -} -inline PROTOBUF_NDEBUG_INLINE TextDocumentItem::Impl_::Impl_( - ::google::protobuf::internal::InternalVisibility visibility, - ::google::protobuf::Arena* arena) - : uri_(arena), - language_id_(arena), - text_(arena), - _cached_size_{0} {} - -inline void TextDocumentItem::SharedCtor(::_pb::Arena* arena) { - new (&_impl_) Impl_(internal_visibility(), arena); - _impl_.version_ = {}; -} -TextDocumentItem::~TextDocumentItem() { - // @@protoc_insertion_point(destructor:io.deephaven.proto.backplane.script.grpc.TextDocumentItem) - _internal_metadata_.Delete<::google::protobuf::UnknownFieldSet>(); - SharedDtor(); -} -inline void TextDocumentItem::SharedDtor() { - ABSL_DCHECK(GetArena() == nullptr); - _impl_.uri_.Destroy(); - _impl_.language_id_.Destroy(); - _impl_.text_.Destroy(); - _impl_.~Impl_(); -} - -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_ = { - { - 0, // no _has_bits_ - 0, // no _extensions_ - 4, 24, // max_field_number, fast_idx_mask - offsetof(decltype(_table_), field_lookup_table), - 4294967280, // skipmap - offsetof(decltype(_table_), field_entries), - 4, // 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::TextDocumentItem>(), // to_prefetch - #endif // PROTOBUF_PREFETCH_PARSE_TABLE - }, {{ - // string text = 4; - {::_pbi::TcParser::FastUS1, - {34, 63, 0, PROTOBUF_FIELD_OFFSET(TextDocumentItem, _impl_.text_)}}, - // string uri = 1; - {::_pbi::TcParser::FastUS1, - {10, 63, 0, PROTOBUF_FIELD_OFFSET(TextDocumentItem, _impl_.uri_)}}, - // string language_id = 2; - {::_pbi::TcParser::FastUS1, - {18, 63, 0, PROTOBUF_FIELD_OFFSET(TextDocumentItem, _impl_.language_id_)}}, - // int32 version = 3; - {::_pbi::TcParser::SingularVarintNoZag1<::uint32_t, offsetof(TextDocumentItem, _impl_.version_), 63>(), - {24, 63, 0, PROTOBUF_FIELD_OFFSET(TextDocumentItem, _impl_.version_)}}, - }}, {{ - 65535, 65535 - }}, {{ - // string uri = 1; - {PROTOBUF_FIELD_OFFSET(TextDocumentItem, _impl_.uri_), 0, 0, - (0 | ::_fl::kFcSingular | ::_fl::kUtf8String | ::_fl::kRepAString)}, - // string language_id = 2; - {PROTOBUF_FIELD_OFFSET(TextDocumentItem, _impl_.language_id_), 0, 0, - (0 | ::_fl::kFcSingular | ::_fl::kUtf8String | ::_fl::kRepAString)}, - // int32 version = 3; - {PROTOBUF_FIELD_OFFSET(TextDocumentItem, _impl_.version_), 0, 0, - (0 | ::_fl::kFcSingular | ::_fl::kInt32)}, - // string text = 4; - {PROTOBUF_FIELD_OFFSET(TextDocumentItem, _impl_.text_), 0, 0, - (0 | ::_fl::kFcSingular | ::_fl::kUtf8String | ::_fl::kRepAString)}, - }}, - // no aux_entries - {{ - "\71\3\13\0\4\0\0\0" - "io.deephaven.proto.backplane.script.grpc.TextDocumentItem" - "uri" - "language_id" - "text" - }}, -}; - -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; - - _impl_.uri_.ClearToEmpty(); - _impl_.language_id_.ClearToEmpty(); - _impl_.text_.ClearToEmpty(); - _impl_.version_ = 0; - _internal_metadata_.Clear<::google::protobuf::UnknownFieldSet>(); -} - -#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) - ABSL_DCHECK_NE(&from, _this); - ::uint32_t cached_has_bits = 0; - (void) cached_has_bits; - - if (!from._internal_uri().empty()) { - _this->_internal_set_uri(from._internal_uri()); - } - if (!from._internal_language_id().empty()) { - _this->_internal_set_language_id(from._internal_language_id()); - } - if (!from._internal_text().empty()) { - _this->_internal_set_text(from._internal_text()); - } - if (from._internal_version() != 0) { - _this->_impl_.version_ = from._impl_.version_; - } - _this->_internal_metadata_.MergeFrom<::google::protobuf::UnknownFieldSet>(from._internal_metadata_); -} - -void TextDocumentItem::CopyFrom(const TextDocumentItem& from) { -// @@protoc_insertion_point(class_specific_copy_from_start:io.deephaven.proto.backplane.script.grpc.TextDocumentItem) - if (&from == this) return; - Clear(); - MergeFrom(from); -} - - -void TextDocumentItem::InternalSwap(TextDocumentItem* PROTOBUF_RESTRICT other) { - using std::swap; - auto* arena = GetArena(); - ABSL_DCHECK_EQ(arena, other->GetArena()); - _internal_metadata_.InternalSwap(&other->_internal_metadata_); - ::_pbi::ArenaStringPtr::InternalSwap(&_impl_.uri_, &other->_impl_.uri_, arena); - ::_pbi::ArenaStringPtr::InternalSwap(&_impl_.language_id_, &other->_impl_.language_id_, arena); - ::_pbi::ArenaStringPtr::InternalSwap(&_impl_.text_, &other->_impl_.text_, arena); - swap(_impl_.version_, other->_impl_.version_); -} - -::google::protobuf::Metadata TextDocumentItem::GetMetadata() const { - return ::google::protobuf::Message::GetMetadataImpl(GetClassData()->full()); -} -// =================================================================== - -class CloseDocumentRequest::_Internal { - public: - using HasBits = - decltype(std::declval()._impl_._has_bits_); - static constexpr ::int32_t kHasBitsOffset = - 8 * PROTOBUF_FIELD_OFFSET(CloseDocumentRequest, _impl_._has_bits_); -}; - -void CloseDocumentRequest::clear_console_id() { - ::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 ::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_, from); - ::uint32_t cached_has_bits = _impl_._has_bits_[0]; - _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) -} -inline PROTOBUF_NDEBUG_INLINE CloseDocumentRequest::Impl_::Impl_( - ::google::protobuf::internal::InternalVisibility visibility, - ::google::protobuf::Arena* arena) - : _cached_size_{0} {} - -inline void CloseDocumentRequest::SharedCtor(::_pb::Arena* arena) { - new (&_impl_) Impl_(internal_visibility(), arena); - ::memset(reinterpret_cast(&_impl_) + - offsetof(Impl_, console_id_), - 0, - offsetof(Impl_, text_document_) - - offsetof(Impl_, console_id_) + - sizeof(Impl_::text_document_)); -} -CloseDocumentRequest::~CloseDocumentRequest() { - // @@protoc_insertion_point(destructor:io.deephaven.proto.backplane.script.grpc.CloseDocumentRequest) - _internal_metadata_.Delete<::google::protobuf::UnknownFieldSet>(); - SharedDtor(); -} -inline void CloseDocumentRequest::SharedDtor() { - ABSL_DCHECK(GetArena() == nullptr); - delete _impl_.console_id_; - delete _impl_.text_document_; - _impl_.~Impl_(); -} - -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_ = { - { - PROTOBUF_FIELD_OFFSET(CloseDocumentRequest, _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 - 2, // num_aux_entries - offsetof(decltype(_table_), 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::CloseDocumentRequest>(), // to_prefetch - #endif // PROTOBUF_PREFETCH_PARSE_TABLE - }, {{ - // .io.deephaven.proto.backplane.script.grpc.VersionedTextDocumentIdentifier text_document = 2; - {::_pbi::TcParser::FastMtS1, - {18, 1, 1, PROTOBUF_FIELD_OFFSET(CloseDocumentRequest, _impl_.text_document_)}}, - // .io.deephaven.proto.backplane.grpc.Ticket console_id = 1 [deprecated = true]; - {::_pbi::TcParser::FastMtS1, - {10, 0, 0, PROTOBUF_FIELD_OFFSET(CloseDocumentRequest, _impl_.console_id_)}}, - }}, {{ - 65535, 65535 - }}, {{ - // .io.deephaven.proto.backplane.grpc.Ticket console_id = 1 [deprecated = true]; - {PROTOBUF_FIELD_OFFSET(CloseDocumentRequest, _impl_.console_id_), _Internal::kHasBitsOffset + 0, 0, - (0 | ::_fl::kFcOptional | ::_fl::kMessage | ::_fl::kTvTable)}, - // .io.deephaven.proto.backplane.script.grpc.VersionedTextDocumentIdentifier text_document = 2; - {PROTOBUF_FIELD_OFFSET(CloseDocumentRequest, _impl_.text_document_), _Internal::kHasBitsOffset + 1, 1, - (0 | ::_fl::kFcOptional | ::_fl::kMessage | ::_fl::kTvTable)}, - }}, {{ - {::_pbi::TcParser::GetTable<::io::deephaven::proto::backplane::grpc::Ticket>()}, - {::_pbi::TcParser::GetTable<::io::deephaven::proto::backplane::script::grpc::VersionedTextDocumentIdentifier>()}, - }}, {{ - }}, -}; - -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) { - 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>(); -} - -#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; - (void) cached_has_bits; - - cached_has_bits = from._impl_._has_bits_[0]; - if (cached_has_bits & 0x00000003u) { - 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 (cached_has_bits & 0x00000002u) { - 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_); -} - -void CloseDocumentRequest::CopyFrom(const CloseDocumentRequest& from) { -// @@protoc_insertion_point(class_specific_copy_from_start:io.deephaven.proto.backplane.script.grpc.CloseDocumentRequest) - if (&from == this) return; - Clear(); - MergeFrom(from); -} - - -void CloseDocumentRequest::InternalSwap(CloseDocumentRequest* PROTOBUF_RESTRICT other) { - using std::swap; - _internal_metadata_.InternalSwap(&other->_internal_metadata_); - swap(_impl_._has_bits_[0], other->_impl_._has_bits_[0]); - ::google::protobuf::internal::memswap< - PROTOBUF_FIELD_OFFSET(CloseDocumentRequest, _impl_.text_document_) - + sizeof(CloseDocumentRequest::_impl_.text_document_) - - PROTOBUF_FIELD_OFFSET(CloseDocumentRequest, _impl_.console_id_)>( - reinterpret_cast(&_impl_.console_id_), - reinterpret_cast(&other->_impl_.console_id_)); -} - -::google::protobuf::Metadata CloseDocumentRequest::GetMetadata() const { - return ::google::protobuf::Message::GetMetadataImpl(GetClassData()->full()); -} -// =================================================================== - -class ChangeDocumentRequest_TextDocumentContentChangeEvent::_Internal { - public: - using HasBits = - decltype(std::declval()._impl_._has_bits_); - static constexpr ::int32_t kHasBitsOffset = - 8 * PROTOBUF_FIELD_OFFSET(ChangeDocumentRequest_TextDocumentContentChangeEvent, _impl_._has_bits_); -}; - -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 ::io::deephaven::proto::backplane::script::grpc::ChangeDocumentRequest_TextDocumentContentChangeEvent& from_msg) - : _has_bits_{from._has_bits_}, - _cached_size_{0}, - text_(arena, from.text_) {} - -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_, from); - ::uint32_t cached_has_bits = _impl_._has_bits_[0]; - _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) -} -inline PROTOBUF_NDEBUG_INLINE ChangeDocumentRequest_TextDocumentContentChangeEvent::Impl_::Impl_( - ::google::protobuf::internal::InternalVisibility visibility, - ::google::protobuf::Arena* arena) - : _cached_size_{0}, - text_(arena) {} - -inline void ChangeDocumentRequest_TextDocumentContentChangeEvent::SharedCtor(::_pb::Arena* arena) { - new (&_impl_) Impl_(internal_visibility(), arena); - ::memset(reinterpret_cast(&_impl_) + - offsetof(Impl_, range_), - 0, - offsetof(Impl_, range_length_) - - offsetof(Impl_, range_) + - sizeof(Impl_::range_length_)); -} -ChangeDocumentRequest_TextDocumentContentChangeEvent::~ChangeDocumentRequest_TextDocumentContentChangeEvent() { - // @@protoc_insertion_point(destructor:io.deephaven.proto.backplane.script.grpc.ChangeDocumentRequest.TextDocumentContentChangeEvent) - _internal_metadata_.Delete<::google::protobuf::UnknownFieldSet>(); - SharedDtor(); -} -inline void ChangeDocumentRequest_TextDocumentContentChangeEvent::SharedDtor() { - ABSL_DCHECK(GetArena() == nullptr); - _impl_.text_.Destroy(); - delete _impl_.range_; - _impl_.~Impl_(); -} - -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_ = { - { - PROTOBUF_FIELD_OFFSET(ChangeDocumentRequest_TextDocumentContentChangeEvent, _impl_._has_bits_), - 0, // no _extensions_ - 3, 24, // max_field_number, fast_idx_mask - offsetof(decltype(_table_), field_lookup_table), - 4294967288, // skipmap - offsetof(decltype(_table_), field_entries), - 3, // num_field_entries - 1, // num_aux_entries - offsetof(decltype(_table_), 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::ChangeDocumentRequest_TextDocumentContentChangeEvent>(), // to_prefetch - #endif // PROTOBUF_PREFETCH_PARSE_TABLE - }, {{ - {::_pbi::TcParser::MiniParse, {}}, - // .io.deephaven.proto.backplane.script.grpc.DocumentRange range = 1; - {::_pbi::TcParser::FastMtS1, - {10, 0, 0, PROTOBUF_FIELD_OFFSET(ChangeDocumentRequest_TextDocumentContentChangeEvent, _impl_.range_)}}, - // int32 range_length = 2; - {::_pbi::TcParser::SingularVarintNoZag1<::uint32_t, offsetof(ChangeDocumentRequest_TextDocumentContentChangeEvent, _impl_.range_length_), 63>(), - {16, 63, 0, PROTOBUF_FIELD_OFFSET(ChangeDocumentRequest_TextDocumentContentChangeEvent, _impl_.range_length_)}}, - // string text = 3; - {::_pbi::TcParser::FastUS1, - {26, 63, 0, PROTOBUF_FIELD_OFFSET(ChangeDocumentRequest_TextDocumentContentChangeEvent, _impl_.text_)}}, - }}, {{ - 65535, 65535 - }}, {{ - // .io.deephaven.proto.backplane.script.grpc.DocumentRange range = 1; - {PROTOBUF_FIELD_OFFSET(ChangeDocumentRequest_TextDocumentContentChangeEvent, _impl_.range_), _Internal::kHasBitsOffset + 0, 0, - (0 | ::_fl::kFcOptional | ::_fl::kMessage | ::_fl::kTvTable)}, - // int32 range_length = 2; - {PROTOBUF_FIELD_OFFSET(ChangeDocumentRequest_TextDocumentContentChangeEvent, _impl_.range_length_), -1, 0, - (0 | ::_fl::kFcSingular | ::_fl::kInt32)}, - // string text = 3; - {PROTOBUF_FIELD_OFFSET(ChangeDocumentRequest_TextDocumentContentChangeEvent, _impl_.text_), -1, 0, - (0 | ::_fl::kFcSingular | ::_fl::kUtf8String | ::_fl::kRepAString)}, - }}, {{ - {::_pbi::TcParser::GetTable<::io::deephaven::proto::backplane::script::grpc::DocumentRange>()}, - }}, {{ - "\135\0\0\4\0\0\0\0" - "io.deephaven.proto.backplane.script.grpc.ChangeDocumentRequest.TextDocumentContentChangeEvent" - "text" - }}, -}; - -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; - - _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>(); -} - -#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; - (void) cached_has_bits; - - if (!from._internal_text().empty()) { - _this->_internal_set_text(from._internal_text()); - } - 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->_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_); -} - -void ChangeDocumentRequest_TextDocumentContentChangeEvent::CopyFrom(const ChangeDocumentRequest_TextDocumentContentChangeEvent& from) { -// @@protoc_insertion_point(class_specific_copy_from_start:io.deephaven.proto.backplane.script.grpc.ChangeDocumentRequest.TextDocumentContentChangeEvent) - if (&from == this) return; - Clear(); - MergeFrom(from); -} - - -void ChangeDocumentRequest_TextDocumentContentChangeEvent::InternalSwap(ChangeDocumentRequest_TextDocumentContentChangeEvent* PROTOBUF_RESTRICT other) { - using std::swap; - auto* arena = GetArena(); - ABSL_DCHECK_EQ(arena, other->GetArena()); - _internal_metadata_.InternalSwap(&other->_internal_metadata_); - swap(_impl_._has_bits_[0], other->_impl_._has_bits_[0]); - ::_pbi::ArenaStringPtr::InternalSwap(&_impl_.text_, &other->_impl_.text_, arena); - ::google::protobuf::internal::memswap< - PROTOBUF_FIELD_OFFSET(ChangeDocumentRequest_TextDocumentContentChangeEvent, _impl_.range_length_) - + sizeof(ChangeDocumentRequest_TextDocumentContentChangeEvent::_impl_.range_length_) - - PROTOBUF_FIELD_OFFSET(ChangeDocumentRequest_TextDocumentContentChangeEvent, _impl_.range_)>( - reinterpret_cast(&_impl_.range_), - reinterpret_cast(&other->_impl_.range_)); -} - -::google::protobuf::Metadata ChangeDocumentRequest_TextDocumentContentChangeEvent::GetMetadata() const { - return ::google::protobuf::Message::GetMetadataImpl(GetClassData()->full()); -} -// =================================================================== - -class ChangeDocumentRequest::_Internal { - public: - using HasBits = - decltype(std::declval()._impl_._has_bits_); - static constexpr ::int32_t kHasBitsOffset = - 8 * PROTOBUF_FIELD_OFFSET(ChangeDocumentRequest, _impl_._has_bits_); -}; - -void ChangeDocumentRequest::clear_console_id() { - ::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 ::io::deephaven::proto::backplane::script::grpc::ChangeDocumentRequest& from_msg) - : _has_bits_{from._has_bits_}, - _cached_size_{0}, - content_changes_{visibility, arena, from.content_changes_} {} - -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_, from); - ::uint32_t cached_has_bits = _impl_._has_bits_[0]; - _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) -} -inline PROTOBUF_NDEBUG_INLINE ChangeDocumentRequest::Impl_::Impl_( - ::google::protobuf::internal::InternalVisibility visibility, - ::google::protobuf::Arena* arena) - : _cached_size_{0}, - content_changes_{visibility, arena} {} - -inline void ChangeDocumentRequest::SharedCtor(::_pb::Arena* arena) { - new (&_impl_) Impl_(internal_visibility(), arena); - ::memset(reinterpret_cast(&_impl_) + - offsetof(Impl_, console_id_), - 0, - offsetof(Impl_, text_document_) - - offsetof(Impl_, console_id_) + - sizeof(Impl_::text_document_)); -} -ChangeDocumentRequest::~ChangeDocumentRequest() { - // @@protoc_insertion_point(destructor:io.deephaven.proto.backplane.script.grpc.ChangeDocumentRequest) - _internal_metadata_.Delete<::google::protobuf::UnknownFieldSet>(); - SharedDtor(); -} -inline void ChangeDocumentRequest::SharedDtor() { - ABSL_DCHECK(GetArena() == nullptr); - delete _impl_.console_id_; - delete _impl_.text_document_; - _impl_.~Impl_(); -} - -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_ = { - { - PROTOBUF_FIELD_OFFSET(ChangeDocumentRequest, _impl_._has_bits_), - 0, // no _extensions_ - 3, 24, // max_field_number, fast_idx_mask - offsetof(decltype(_table_), field_lookup_table), - 4294967288, // skipmap - offsetof(decltype(_table_), field_entries), - 3, // num_field_entries - 3, // num_aux_entries - offsetof(decltype(_table_), 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::ChangeDocumentRequest>(), // to_prefetch - #endif // PROTOBUF_PREFETCH_PARSE_TABLE - }, {{ - {::_pbi::TcParser::MiniParse, {}}, - // .io.deephaven.proto.backplane.grpc.Ticket console_id = 1 [deprecated = true]; - {::_pbi::TcParser::FastMtS1, - {10, 0, 0, PROTOBUF_FIELD_OFFSET(ChangeDocumentRequest, _impl_.console_id_)}}, - // .io.deephaven.proto.backplane.script.grpc.VersionedTextDocumentIdentifier text_document = 2; - {::_pbi::TcParser::FastMtS1, - {18, 1, 1, PROTOBUF_FIELD_OFFSET(ChangeDocumentRequest, _impl_.text_document_)}}, - // repeated .io.deephaven.proto.backplane.script.grpc.ChangeDocumentRequest.TextDocumentContentChangeEvent content_changes = 3; - {::_pbi::TcParser::FastMtR1, - {26, 63, 2, PROTOBUF_FIELD_OFFSET(ChangeDocumentRequest, _impl_.content_changes_)}}, - }}, {{ - 65535, 65535 - }}, {{ - // .io.deephaven.proto.backplane.grpc.Ticket console_id = 1 [deprecated = true]; - {PROTOBUF_FIELD_OFFSET(ChangeDocumentRequest, _impl_.console_id_), _Internal::kHasBitsOffset + 0, 0, - (0 | ::_fl::kFcOptional | ::_fl::kMessage | ::_fl::kTvTable)}, - // .io.deephaven.proto.backplane.script.grpc.VersionedTextDocumentIdentifier text_document = 2; - {PROTOBUF_FIELD_OFFSET(ChangeDocumentRequest, _impl_.text_document_), _Internal::kHasBitsOffset + 1, 1, - (0 | ::_fl::kFcOptional | ::_fl::kMessage | ::_fl::kTvTable)}, - // repeated .io.deephaven.proto.backplane.script.grpc.ChangeDocumentRequest.TextDocumentContentChangeEvent content_changes = 3; - {PROTOBUF_FIELD_OFFSET(ChangeDocumentRequest, _impl_.content_changes_), -1, 2, - (0 | ::_fl::kFcRepeated | ::_fl::kMessage | ::_fl::kTvTable)}, - }}, {{ - {::_pbi::TcParser::GetTable<::io::deephaven::proto::backplane::grpc::Ticket>()}, - {::_pbi::TcParser::GetTable<::io::deephaven::proto::backplane::script::grpc::VersionedTextDocumentIdentifier>()}, - {::_pbi::TcParser::GetTable<::io::deephaven::proto::backplane::script::grpc::ChangeDocumentRequest_TextDocumentContentChangeEvent>()}, - }}, {{ - }}, -}; - -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; - // 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>(); -} - -#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; - (void) cached_has_bits; - - _this->_internal_mutable_content_changes()->MergeFrom( - from._internal_content_changes()); - cached_has_bits = from._impl_._has_bits_[0]; - if (cached_has_bits & 0x00000003u) { - 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 (cached_has_bits & 0x00000002u) { - 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_); -} - -void ChangeDocumentRequest::CopyFrom(const ChangeDocumentRequest& from) { -// @@protoc_insertion_point(class_specific_copy_from_start:io.deephaven.proto.backplane.script.grpc.ChangeDocumentRequest) - if (&from == this) return; - Clear(); - MergeFrom(from); -} - - -void ChangeDocumentRequest::InternalSwap(ChangeDocumentRequest* PROTOBUF_RESTRICT other) { - using std::swap; - _internal_metadata_.InternalSwap(&other->_internal_metadata_); - swap(_impl_._has_bits_[0], other->_impl_._has_bits_[0]); - _impl_.content_changes_.InternalSwap(&other->_impl_.content_changes_); - ::google::protobuf::internal::memswap< - PROTOBUF_FIELD_OFFSET(ChangeDocumentRequest, _impl_.text_document_) - + sizeof(ChangeDocumentRequest::_impl_.text_document_) - - PROTOBUF_FIELD_OFFSET(ChangeDocumentRequest, _impl_.console_id_)>( - reinterpret_cast(&_impl_.console_id_), - reinterpret_cast(&other->_impl_.console_id_)); -} - -::google::protobuf::Metadata ChangeDocumentRequest::GetMetadata() const { - return ::google::protobuf::Message::GetMetadataImpl(GetClassData()->full()); -} -// =================================================================== - -class DocumentRange::_Internal { - public: - using HasBits = - decltype(std::declval()._impl_._has_bits_); - static constexpr ::int32_t kHasBitsOffset = - 8 * PROTOBUF_FIELD_OFFSET(DocumentRange, _impl_._has_bits_); -}; - -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 ::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_, from); - ::uint32_t cached_has_bits = _impl_._has_bits_[0]; - _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) -} -inline PROTOBUF_NDEBUG_INLINE DocumentRange::Impl_::Impl_( - ::google::protobuf::internal::InternalVisibility visibility, - ::google::protobuf::Arena* arena) - : _cached_size_{0} {} - -inline void DocumentRange::SharedCtor(::_pb::Arena* arena) { - new (&_impl_) Impl_(internal_visibility(), arena); - ::memset(reinterpret_cast(&_impl_) + - offsetof(Impl_, start_), - 0, - offsetof(Impl_, end_) - - offsetof(Impl_, start_) + - sizeof(Impl_::end_)); -} -DocumentRange::~DocumentRange() { - // @@protoc_insertion_point(destructor:io.deephaven.proto.backplane.script.grpc.DocumentRange) - _internal_metadata_.Delete<::google::protobuf::UnknownFieldSet>(); - SharedDtor(); -} -inline void DocumentRange::SharedDtor() { - ABSL_DCHECK(GetArena() == nullptr); - delete _impl_.start_; - delete _impl_.end_; - _impl_.~Impl_(); -} - -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_ = { - { - PROTOBUF_FIELD_OFFSET(DocumentRange, _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 - 2, // num_aux_entries - offsetof(decltype(_table_), 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::DocumentRange>(), // to_prefetch - #endif // PROTOBUF_PREFETCH_PARSE_TABLE - }, {{ - // .io.deephaven.proto.backplane.script.grpc.Position end = 2; - {::_pbi::TcParser::FastMtS1, - {18, 1, 1, PROTOBUF_FIELD_OFFSET(DocumentRange, _impl_.end_)}}, - // .io.deephaven.proto.backplane.script.grpc.Position start = 1; - {::_pbi::TcParser::FastMtS1, - {10, 0, 0, PROTOBUF_FIELD_OFFSET(DocumentRange, _impl_.start_)}}, - }}, {{ - 65535, 65535 - }}, {{ - // .io.deephaven.proto.backplane.script.grpc.Position start = 1; - {PROTOBUF_FIELD_OFFSET(DocumentRange, _impl_.start_), _Internal::kHasBitsOffset + 0, 0, - (0 | ::_fl::kFcOptional | ::_fl::kMessage | ::_fl::kTvTable)}, - // .io.deephaven.proto.backplane.script.grpc.Position end = 2; - {PROTOBUF_FIELD_OFFSET(DocumentRange, _impl_.end_), _Internal::kHasBitsOffset + 1, 1, - (0 | ::_fl::kFcOptional | ::_fl::kMessage | ::_fl::kTvTable)}, - }}, {{ - {::_pbi::TcParser::GetTable<::io::deephaven::proto::backplane::script::grpc::Position>()}, - {::_pbi::TcParser::GetTable<::io::deephaven::proto::backplane::script::grpc::Position>()}, - }}, {{ - }}, -}; - -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) { - 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>(); -} - -#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; - (void) cached_has_bits; - - cached_has_bits = from._impl_._has_bits_[0]; - if (cached_has_bits & 0x00000003u) { - if (cached_has_bits & 0x00000001u) { - 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) { - 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_); -} - -void DocumentRange::CopyFrom(const DocumentRange& from) { -// @@protoc_insertion_point(class_specific_copy_from_start:io.deephaven.proto.backplane.script.grpc.DocumentRange) - if (&from == this) return; - Clear(); - MergeFrom(from); -} - - -void DocumentRange::InternalSwap(DocumentRange* PROTOBUF_RESTRICT other) { - using std::swap; - _internal_metadata_.InternalSwap(&other->_internal_metadata_); - swap(_impl_._has_bits_[0], other->_impl_._has_bits_[0]); - ::google::protobuf::internal::memswap< - PROTOBUF_FIELD_OFFSET(DocumentRange, _impl_.end_) - + sizeof(DocumentRange::_impl_.end_) - - PROTOBUF_FIELD_OFFSET(DocumentRange, _impl_.start_)>( - reinterpret_cast(&_impl_.start_), - reinterpret_cast(&other->_impl_.start_)); -} - -::google::protobuf::Metadata DocumentRange::GetMetadata() const { - return ::google::protobuf::Message::GetMetadataImpl(GetClassData()->full()); -} -// =================================================================== - -class VersionedTextDocumentIdentifier::_Internal { - public: -}; - -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 ::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_, from); - _impl_.version_ = from._impl_.version_; - - // @@protoc_insertion_point(copy_constructor:io.deephaven.proto.backplane.script.grpc.VersionedTextDocumentIdentifier) -} -inline PROTOBUF_NDEBUG_INLINE VersionedTextDocumentIdentifier::Impl_::Impl_( - ::google::protobuf::internal::InternalVisibility visibility, - ::google::protobuf::Arena* arena) - : uri_(arena), - _cached_size_{0} {} - -inline void VersionedTextDocumentIdentifier::SharedCtor(::_pb::Arena* arena) { - new (&_impl_) Impl_(internal_visibility(), arena); - _impl_.version_ = {}; -} -VersionedTextDocumentIdentifier::~VersionedTextDocumentIdentifier() { - // @@protoc_insertion_point(destructor:io.deephaven.proto.backplane.script.grpc.VersionedTextDocumentIdentifier) - _internal_metadata_.Delete<::google::protobuf::UnknownFieldSet>(); - SharedDtor(); -} -inline void VersionedTextDocumentIdentifier::SharedDtor() { - ABSL_DCHECK(GetArena() == nullptr); - _impl_.uri_.Destroy(); - _impl_.~Impl_(); -} - -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_ = { - { - 0, // no _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 - 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::VersionedTextDocumentIdentifier>(), // to_prefetch - #endif // PROTOBUF_PREFETCH_PARSE_TABLE - }, {{ - // int32 version = 2; - {::_pbi::TcParser::SingularVarintNoZag1<::uint32_t, offsetof(VersionedTextDocumentIdentifier, _impl_.version_), 63>(), - {16, 63, 0, PROTOBUF_FIELD_OFFSET(VersionedTextDocumentIdentifier, _impl_.version_)}}, - // string uri = 1; - {::_pbi::TcParser::FastUS1, - {10, 63, 0, PROTOBUF_FIELD_OFFSET(VersionedTextDocumentIdentifier, _impl_.uri_)}}, - }}, {{ - 65535, 65535 - }}, {{ - // string uri = 1; - {PROTOBUF_FIELD_OFFSET(VersionedTextDocumentIdentifier, _impl_.uri_), 0, 0, - (0 | ::_fl::kFcSingular | ::_fl::kUtf8String | ::_fl::kRepAString)}, - // int32 version = 2; - {PROTOBUF_FIELD_OFFSET(VersionedTextDocumentIdentifier, _impl_.version_), 0, 0, - (0 | ::_fl::kFcSingular | ::_fl::kInt32)}, - }}, - // no aux_entries - {{ - "\110\3\0\0\0\0\0\0" - "io.deephaven.proto.backplane.script.grpc.VersionedTextDocumentIdentifier" - "uri" - }}, -}; - -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; - - _impl_.uri_.ClearToEmpty(); - _impl_.version_ = 0; - _internal_metadata_.Clear<::google::protobuf::UnknownFieldSet>(); -} - -#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) - ABSL_DCHECK_NE(&from, _this); - ::uint32_t cached_has_bits = 0; - (void) cached_has_bits; - - if (!from._internal_uri().empty()) { - _this->_internal_set_uri(from._internal_uri()); - } - if (from._internal_version() != 0) { - _this->_impl_.version_ = from._impl_.version_; - } - _this->_internal_metadata_.MergeFrom<::google::protobuf::UnknownFieldSet>(from._internal_metadata_); -} - -void VersionedTextDocumentIdentifier::CopyFrom(const VersionedTextDocumentIdentifier& from) { -// @@protoc_insertion_point(class_specific_copy_from_start:io.deephaven.proto.backplane.script.grpc.VersionedTextDocumentIdentifier) - if (&from == this) return; - Clear(); - MergeFrom(from); -} - - -void VersionedTextDocumentIdentifier::InternalSwap(VersionedTextDocumentIdentifier* PROTOBUF_RESTRICT other) { - using std::swap; - auto* arena = GetArena(); - ABSL_DCHECK_EQ(arena, other->GetArena()); - _internal_metadata_.InternalSwap(&other->_internal_metadata_); - ::_pbi::ArenaStringPtr::InternalSwap(&_impl_.uri_, &other->_impl_.uri_, arena); - swap(_impl_.version_, other->_impl_.version_); -} - -::google::protobuf::Metadata VersionedTextDocumentIdentifier::GetMetadata() const { - return ::google::protobuf::Message::GetMetadataImpl(GetClassData()->full()); -} -// =================================================================== - -class Position::_Internal { - public: -}; - -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) -} -Position::Position( - ::google::protobuf::Arena* arena, const Position& from) - : Position(arena) { - MergeFrom(from); -} -inline PROTOBUF_NDEBUG_INLINE Position::Impl_::Impl_( - ::google::protobuf::internal::InternalVisibility visibility, - ::google::protobuf::Arena* arena) - : _cached_size_{0} {} - -inline void Position::SharedCtor(::_pb::Arena* arena) { - new (&_impl_) Impl_(internal_visibility(), arena); - ::memset(reinterpret_cast(&_impl_) + - offsetof(Impl_, line_), - 0, - offsetof(Impl_, character_) - - offsetof(Impl_, line_) + - sizeof(Impl_::character_)); -} -Position::~Position() { - // @@protoc_insertion_point(destructor:io.deephaven.proto.backplane.script.grpc.Position) - _internal_metadata_.Delete<::google::protobuf::UnknownFieldSet>(); - SharedDtor(); -} -inline void Position::SharedDtor() { - ABSL_DCHECK(GetArena() == nullptr); - _impl_.~Impl_(); -} - -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_ = { - { - 0, // no _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 - 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::Position>(), // to_prefetch - #endif // PROTOBUF_PREFETCH_PARSE_TABLE - }, {{ - // int32 character = 2; - {::_pbi::TcParser::SingularVarintNoZag1<::uint32_t, offsetof(Position, _impl_.character_), 63>(), - {16, 63, 0, PROTOBUF_FIELD_OFFSET(Position, _impl_.character_)}}, - // int32 line = 1; - {::_pbi::TcParser::SingularVarintNoZag1<::uint32_t, offsetof(Position, _impl_.line_), 63>(), - {8, 63, 0, PROTOBUF_FIELD_OFFSET(Position, _impl_.line_)}}, - }}, {{ - 65535, 65535 - }}, {{ - // int32 line = 1; - {PROTOBUF_FIELD_OFFSET(Position, _impl_.line_), 0, 0, - (0 | ::_fl::kFcSingular | ::_fl::kInt32)}, - // int32 character = 2; - {PROTOBUF_FIELD_OFFSET(Position, _impl_.character_), 0, 0, - (0 | ::_fl::kFcSingular | ::_fl::kInt32)}, - }}, - // no aux_entries - {{ - }}, -}; - -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; - - ::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>(); -} - -#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) - ABSL_DCHECK_NE(&from, _this); - ::uint32_t cached_has_bits = 0; - (void) cached_has_bits; - - if (from._internal_line() != 0) { - _this->_impl_.line_ = from._impl_.line_; - } - if (from._internal_character() != 0) { - _this->_impl_.character_ = from._impl_.character_; - } - _this->_internal_metadata_.MergeFrom<::google::protobuf::UnknownFieldSet>(from._internal_metadata_); -} - -void Position::CopyFrom(const Position& from) { -// @@protoc_insertion_point(class_specific_copy_from_start:io.deephaven.proto.backplane.script.grpc.Position) - if (&from == this) return; - Clear(); - MergeFrom(from); -} - - -void Position::InternalSwap(Position* PROTOBUF_RESTRICT other) { - using std::swap; - _internal_metadata_.InternalSwap(&other->_internal_metadata_); - ::google::protobuf::internal::memswap< - PROTOBUF_FIELD_OFFSET(Position, _impl_.character_) - + sizeof(Position::_impl_.character_) - - PROTOBUF_FIELD_OFFSET(Position, _impl_.line_)>( - reinterpret_cast(&_impl_.line_), - reinterpret_cast(&other->_impl_.line_)); -} - -::google::protobuf::Metadata Position::GetMetadata() const { - return ::google::protobuf::Message::GetMetadataImpl(GetClassData()->full()); -} -// =================================================================== - -class MarkupContent::_Internal { - public: -}; - -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 ::io::deephaven::proto::backplane::script::grpc::MarkupContent& from_msg) - : kind_(arena, from.kind_), - value_(arena, from.value_), - _cached_size_{0} {} - -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_, from); - - // @@protoc_insertion_point(copy_constructor:io.deephaven.proto.backplane.script.grpc.MarkupContent) -} -inline PROTOBUF_NDEBUG_INLINE MarkupContent::Impl_::Impl_( - ::google::protobuf::internal::InternalVisibility visibility, - ::google::protobuf::Arena* arena) - : kind_(arena), - value_(arena), - _cached_size_{0} {} - -inline void MarkupContent::SharedCtor(::_pb::Arena* arena) { - new (&_impl_) Impl_(internal_visibility(), arena); -} -MarkupContent::~MarkupContent() { - // @@protoc_insertion_point(destructor:io.deephaven.proto.backplane.script.grpc.MarkupContent) - _internal_metadata_.Delete<::google::protobuf::UnknownFieldSet>(); - SharedDtor(); -} -inline void MarkupContent::SharedDtor() { - ABSL_DCHECK(GetArena() == nullptr); - _impl_.kind_.Destroy(); - _impl_.value_.Destroy(); - _impl_.~Impl_(); -} - -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_ = { - { - 0, // no _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 - 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::MarkupContent>(), // to_prefetch - #endif // PROTOBUF_PREFETCH_PARSE_TABLE - }, {{ - // string value = 2; - {::_pbi::TcParser::FastUS1, - {18, 63, 0, PROTOBUF_FIELD_OFFSET(MarkupContent, _impl_.value_)}}, - // string kind = 1; - {::_pbi::TcParser::FastUS1, - {10, 63, 0, PROTOBUF_FIELD_OFFSET(MarkupContent, _impl_.kind_)}}, - }}, {{ - 65535, 65535 - }}, {{ - // string kind = 1; - {PROTOBUF_FIELD_OFFSET(MarkupContent, _impl_.kind_), 0, 0, - (0 | ::_fl::kFcSingular | ::_fl::kUtf8String | ::_fl::kRepAString)}, - // string value = 2; - {PROTOBUF_FIELD_OFFSET(MarkupContent, _impl_.value_), 0, 0, - (0 | ::_fl::kFcSingular | ::_fl::kUtf8String | ::_fl::kRepAString)}, - }}, - // no aux_entries - {{ - "\66\4\5\0\0\0\0\0" - "io.deephaven.proto.backplane.script.grpc.MarkupContent" - "kind" - "value" - }}, -}; - -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; - - _impl_.kind_.ClearToEmpty(); - _impl_.value_.ClearToEmpty(); - _internal_metadata_.Clear<::google::protobuf::UnknownFieldSet>(); -} - -#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) - ABSL_DCHECK_NE(&from, _this); - ::uint32_t cached_has_bits = 0; - (void) cached_has_bits; - - if (!from._internal_kind().empty()) { - _this->_internal_set_kind(from._internal_kind()); - } - if (!from._internal_value().empty()) { - _this->_internal_set_value(from._internal_value()); - } - _this->_internal_metadata_.MergeFrom<::google::protobuf::UnknownFieldSet>(from._internal_metadata_); -} - -void MarkupContent::CopyFrom(const MarkupContent& from) { -// @@protoc_insertion_point(class_specific_copy_from_start:io.deephaven.proto.backplane.script.grpc.MarkupContent) - if (&from == this) return; - Clear(); - MergeFrom(from); -} - - -void MarkupContent::InternalSwap(MarkupContent* PROTOBUF_RESTRICT other) { - using std::swap; - auto* arena = GetArena(); - ABSL_DCHECK_EQ(arena, other->GetArena()); - _internal_metadata_.InternalSwap(&other->_internal_metadata_); - ::_pbi::ArenaStringPtr::InternalSwap(&_impl_.kind_, &other->_impl_.kind_, arena); - ::_pbi::ArenaStringPtr::InternalSwap(&_impl_.value_, &other->_impl_.value_, arena); -} - -::google::protobuf::Metadata MarkupContent::GetMetadata() const { - return ::google::protobuf::Message::GetMetadataImpl(GetClassData()->full()); -} -// =================================================================== - -class GetCompletionItemsRequest::_Internal { - public: - using HasBits = - decltype(std::declval()._impl_._has_bits_); - static constexpr ::int32_t kHasBitsOffset = - 8 * PROTOBUF_FIELD_OFFSET(GetCompletionItemsRequest, _impl_._has_bits_); -}; - -void GetCompletionItemsRequest::clear_console_id() { - ::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 ::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_, from); - ::uint32_t cached_has_bits = _impl_._has_bits_[0]; - _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) -} -inline PROTOBUF_NDEBUG_INLINE GetCompletionItemsRequest::Impl_::Impl_( - ::google::protobuf::internal::InternalVisibility visibility, - ::google::protobuf::Arena* arena) - : _cached_size_{0} {} - -inline void GetCompletionItemsRequest::SharedCtor(::_pb::Arena* arena) { - new (&_impl_) Impl_(internal_visibility(), arena); - ::memset(reinterpret_cast(&_impl_) + - offsetof(Impl_, console_id_), - 0, - offsetof(Impl_, request_id_) - - offsetof(Impl_, console_id_) + - sizeof(Impl_::request_id_)); -} -GetCompletionItemsRequest::~GetCompletionItemsRequest() { - // @@protoc_insertion_point(destructor:io.deephaven.proto.backplane.script.grpc.GetCompletionItemsRequest) - _internal_metadata_.Delete<::google::protobuf::UnknownFieldSet>(); - SharedDtor(); -} -inline void GetCompletionItemsRequest::SharedDtor() { - ABSL_DCHECK(GetArena() == nullptr); - delete _impl_.console_id_; - delete _impl_.context_; - delete _impl_.text_document_; - delete _impl_.position_; - _impl_.~Impl_(); -} - -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_ = { - { - PROTOBUF_FIELD_OFFSET(GetCompletionItemsRequest, _impl_._has_bits_), - 0, // no _extensions_ - 5, 56, // max_field_number, fast_idx_mask - offsetof(decltype(_table_), field_lookup_table), - 4294967264, // skipmap - offsetof(decltype(_table_), field_entries), - 5, // num_field_entries - 4, // num_aux_entries - offsetof(decltype(_table_), 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::GetCompletionItemsRequest>(), // to_prefetch - #endif // PROTOBUF_PREFETCH_PARSE_TABLE - }, {{ - {::_pbi::TcParser::MiniParse, {}}, - // .io.deephaven.proto.backplane.grpc.Ticket console_id = 1 [deprecated = true]; - {::_pbi::TcParser::FastMtS1, - {10, 0, 0, PROTOBUF_FIELD_OFFSET(GetCompletionItemsRequest, _impl_.console_id_)}}, - // .io.deephaven.proto.backplane.script.grpc.CompletionContext context = 2; - {::_pbi::TcParser::FastMtS1, - {18, 1, 1, PROTOBUF_FIELD_OFFSET(GetCompletionItemsRequest, _impl_.context_)}}, - // .io.deephaven.proto.backplane.script.grpc.VersionedTextDocumentIdentifier text_document = 3; - {::_pbi::TcParser::FastMtS1, - {26, 2, 2, PROTOBUF_FIELD_OFFSET(GetCompletionItemsRequest, _impl_.text_document_)}}, - // .io.deephaven.proto.backplane.script.grpc.Position position = 4; - {::_pbi::TcParser::FastMtS1, - {34, 3, 3, PROTOBUF_FIELD_OFFSET(GetCompletionItemsRequest, _impl_.position_)}}, - // int32 request_id = 5 [deprecated = true]; - {::_pbi::TcParser::SingularVarintNoZag1<::uint32_t, offsetof(GetCompletionItemsRequest, _impl_.request_id_), 63>(), - {40, 63, 0, PROTOBUF_FIELD_OFFSET(GetCompletionItemsRequest, _impl_.request_id_)}}, - {::_pbi::TcParser::MiniParse, {}}, - {::_pbi::TcParser::MiniParse, {}}, - }}, {{ - 65535, 65535 - }}, {{ - // .io.deephaven.proto.backplane.grpc.Ticket console_id = 1 [deprecated = true]; - {PROTOBUF_FIELD_OFFSET(GetCompletionItemsRequest, _impl_.console_id_), _Internal::kHasBitsOffset + 0, 0, - (0 | ::_fl::kFcOptional | ::_fl::kMessage | ::_fl::kTvTable)}, - // .io.deephaven.proto.backplane.script.grpc.CompletionContext context = 2; - {PROTOBUF_FIELD_OFFSET(GetCompletionItemsRequest, _impl_.context_), _Internal::kHasBitsOffset + 1, 1, - (0 | ::_fl::kFcOptional | ::_fl::kMessage | ::_fl::kTvTable)}, - // .io.deephaven.proto.backplane.script.grpc.VersionedTextDocumentIdentifier text_document = 3; - {PROTOBUF_FIELD_OFFSET(GetCompletionItemsRequest, _impl_.text_document_), _Internal::kHasBitsOffset + 2, 2, - (0 | ::_fl::kFcOptional | ::_fl::kMessage | ::_fl::kTvTable)}, - // .io.deephaven.proto.backplane.script.grpc.Position position = 4; - {PROTOBUF_FIELD_OFFSET(GetCompletionItemsRequest, _impl_.position_), _Internal::kHasBitsOffset + 3, 3, - (0 | ::_fl::kFcOptional | ::_fl::kMessage | ::_fl::kTvTable)}, - // int32 request_id = 5 [deprecated = true]; - {PROTOBUF_FIELD_OFFSET(GetCompletionItemsRequest, _impl_.request_id_), -1, 0, - (0 | ::_fl::kFcSingular | ::_fl::kInt32)}, - }}, {{ - {::_pbi::TcParser::GetTable<::io::deephaven::proto::backplane::grpc::Ticket>()}, - {::_pbi::TcParser::GetTable<::io::deephaven::proto::backplane::script::grpc::CompletionContext>()}, - {::_pbi::TcParser::GetTable<::io::deephaven::proto::backplane::script::grpc::VersionedTextDocumentIdentifier>()}, - {::_pbi::TcParser::GetTable<::io::deephaven::proto::backplane::script::grpc::Position>()}, - }}, {{ - }}, -}; - -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; - // 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>(); -} - -#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; - (void) cached_has_bits; - - cached_has_bits = from._impl_._has_bits_[0]; - if (cached_has_bits & 0x0000000fu) { - 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 (cached_has_bits & 0x00000002u) { - 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) { - 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) { - 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->_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_); -} - -void GetCompletionItemsRequest::CopyFrom(const GetCompletionItemsRequest& from) { -// @@protoc_insertion_point(class_specific_copy_from_start:io.deephaven.proto.backplane.script.grpc.GetCompletionItemsRequest) - if (&from == this) return; - Clear(); - MergeFrom(from); -} - - -void GetCompletionItemsRequest::InternalSwap(GetCompletionItemsRequest* PROTOBUF_RESTRICT other) { - using std::swap; - _internal_metadata_.InternalSwap(&other->_internal_metadata_); - swap(_impl_._has_bits_[0], other->_impl_._has_bits_[0]); - ::google::protobuf::internal::memswap< - PROTOBUF_FIELD_OFFSET(GetCompletionItemsRequest, _impl_.request_id_) - + sizeof(GetCompletionItemsRequest::_impl_.request_id_) - - PROTOBUF_FIELD_OFFSET(GetCompletionItemsRequest, _impl_.console_id_)>( - reinterpret_cast(&_impl_.console_id_), - reinterpret_cast(&other->_impl_.console_id_)); -} - -::google::protobuf::Metadata GetCompletionItemsRequest::GetMetadata() const { - return ::google::protobuf::Message::GetMetadataImpl(GetClassData()->full()); -} -// =================================================================== - -class CompletionContext::_Internal { - public: -}; - -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 ::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_, from); - _impl_.trigger_kind_ = from._impl_.trigger_kind_; - - // @@protoc_insertion_point(copy_constructor:io.deephaven.proto.backplane.script.grpc.CompletionContext) -} -inline PROTOBUF_NDEBUG_INLINE CompletionContext::Impl_::Impl_( - ::google::protobuf::internal::InternalVisibility visibility, - ::google::protobuf::Arena* arena) - : trigger_character_(arena), - _cached_size_{0} {} - -inline void CompletionContext::SharedCtor(::_pb::Arena* arena) { - new (&_impl_) Impl_(internal_visibility(), arena); - _impl_.trigger_kind_ = {}; -} -CompletionContext::~CompletionContext() { - // @@protoc_insertion_point(destructor:io.deephaven.proto.backplane.script.grpc.CompletionContext) - _internal_metadata_.Delete<::google::protobuf::UnknownFieldSet>(); - SharedDtor(); -} -inline void CompletionContext::SharedDtor() { - ABSL_DCHECK(GetArena() == nullptr); - _impl_.trigger_character_.Destroy(); - _impl_.~Impl_(); -} - -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_ = { - { - 0, // no _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 - 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::CompletionContext>(), // to_prefetch - #endif // PROTOBUF_PREFETCH_PARSE_TABLE - }, {{ - // string trigger_character = 2; - {::_pbi::TcParser::FastUS1, - {18, 63, 0, PROTOBUF_FIELD_OFFSET(CompletionContext, _impl_.trigger_character_)}}, - // int32 trigger_kind = 1; - {::_pbi::TcParser::SingularVarintNoZag1<::uint32_t, offsetof(CompletionContext, _impl_.trigger_kind_), 63>(), - {8, 63, 0, PROTOBUF_FIELD_OFFSET(CompletionContext, _impl_.trigger_kind_)}}, - }}, {{ - 65535, 65535 - }}, {{ - // int32 trigger_kind = 1; - {PROTOBUF_FIELD_OFFSET(CompletionContext, _impl_.trigger_kind_), 0, 0, - (0 | ::_fl::kFcSingular | ::_fl::kInt32)}, - // string trigger_character = 2; - {PROTOBUF_FIELD_OFFSET(CompletionContext, _impl_.trigger_character_), 0, 0, - (0 | ::_fl::kFcSingular | ::_fl::kUtf8String | ::_fl::kRepAString)}, - }}, - // no aux_entries - {{ - "\72\0\21\0\0\0\0\0" - "io.deephaven.proto.backplane.script.grpc.CompletionContext" - "trigger_character" - }}, -}; - -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; - - _impl_.trigger_character_.ClearToEmpty(); - _impl_.trigger_kind_ = 0; - _internal_metadata_.Clear<::google::protobuf::UnknownFieldSet>(); -} - -#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) - ABSL_DCHECK_NE(&from, _this); - ::uint32_t cached_has_bits = 0; - (void) cached_has_bits; - - if (!from._internal_trigger_character().empty()) { - _this->_internal_set_trigger_character(from._internal_trigger_character()); - } - if (from._internal_trigger_kind() != 0) { - _this->_impl_.trigger_kind_ = from._impl_.trigger_kind_; - } - _this->_internal_metadata_.MergeFrom<::google::protobuf::UnknownFieldSet>(from._internal_metadata_); -} - -void CompletionContext::CopyFrom(const CompletionContext& from) { -// @@protoc_insertion_point(class_specific_copy_from_start:io.deephaven.proto.backplane.script.grpc.CompletionContext) - if (&from == this) return; - Clear(); - MergeFrom(from); -} - - -void CompletionContext::InternalSwap(CompletionContext* PROTOBUF_RESTRICT other) { - using std::swap; - auto* arena = GetArena(); - ABSL_DCHECK_EQ(arena, other->GetArena()); - _internal_metadata_.InternalSwap(&other->_internal_metadata_); - ::_pbi::ArenaStringPtr::InternalSwap(&_impl_.trigger_character_, &other->_impl_.trigger_character_, arena); - swap(_impl_.trigger_kind_, other->_impl_.trigger_kind_); -} - -::google::protobuf::Metadata CompletionContext::GetMetadata() const { - return ::google::protobuf::Message::GetMetadataImpl(GetClassData()->full()); -} -// =================================================================== - -class GetCompletionItemsResponse::_Internal { - public: -}; - -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 ::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_, from); - ::memcpy(reinterpret_cast(&_impl_) + - offsetof(Impl_, request_id_), - reinterpret_cast(&from._impl_) + - offsetof(Impl_, request_id_), - offsetof(Impl_, success_) - - offsetof(Impl_, request_id_) + - sizeof(Impl_::success_)); - - // @@protoc_insertion_point(copy_constructor:io.deephaven.proto.backplane.script.grpc.GetCompletionItemsResponse) -} -inline PROTOBUF_NDEBUG_INLINE GetCompletionItemsResponse::Impl_::Impl_( - ::google::protobuf::internal::InternalVisibility visibility, - ::google::protobuf::Arena* arena) - : items_{visibility, arena}, - _cached_size_{0} {} - -inline void GetCompletionItemsResponse::SharedCtor(::_pb::Arena* arena) { - new (&_impl_) Impl_(internal_visibility(), arena); - ::memset(reinterpret_cast(&_impl_) + - offsetof(Impl_, request_id_), - 0, - offsetof(Impl_, success_) - - offsetof(Impl_, request_id_) + - sizeof(Impl_::success_)); -} -GetCompletionItemsResponse::~GetCompletionItemsResponse() { - // @@protoc_insertion_point(destructor:io.deephaven.proto.backplane.script.grpc.GetCompletionItemsResponse) - _internal_metadata_.Delete<::google::protobuf::UnknownFieldSet>(); - SharedDtor(); -} -inline void GetCompletionItemsResponse::SharedDtor() { - ABSL_DCHECK(GetArena() == nullptr); - _impl_.~Impl_(); -} - -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_ = { - { - 0, // no _has_bits_ - 0, // no _extensions_ - 3, 24, // max_field_number, fast_idx_mask - offsetof(decltype(_table_), field_lookup_table), - 4294967288, // skipmap - offsetof(decltype(_table_), field_entries), - 3, // num_field_entries - 1, // num_aux_entries - offsetof(decltype(_table_), 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::GetCompletionItemsResponse>(), // to_prefetch - #endif // PROTOBUF_PREFETCH_PARSE_TABLE - }, {{ - {::_pbi::TcParser::MiniParse, {}}, - // repeated .io.deephaven.proto.backplane.script.grpc.CompletionItem items = 1; - {::_pbi::TcParser::FastMtR1, - {10, 63, 0, PROTOBUF_FIELD_OFFSET(GetCompletionItemsResponse, _impl_.items_)}}, - // int32 request_id = 2 [deprecated = true]; - {::_pbi::TcParser::SingularVarintNoZag1<::uint32_t, offsetof(GetCompletionItemsResponse, _impl_.request_id_), 63>(), - {16, 63, 0, PROTOBUF_FIELD_OFFSET(GetCompletionItemsResponse, _impl_.request_id_)}}, - // bool success = 3 [deprecated = true]; - {::_pbi::TcParser::SingularVarintNoZag1(), - {24, 63, 0, PROTOBUF_FIELD_OFFSET(GetCompletionItemsResponse, _impl_.success_)}}, - }}, {{ - 65535, 65535 - }}, {{ - // repeated .io.deephaven.proto.backplane.script.grpc.CompletionItem items = 1; - {PROTOBUF_FIELD_OFFSET(GetCompletionItemsResponse, _impl_.items_), 0, 0, - (0 | ::_fl::kFcRepeated | ::_fl::kMessage | ::_fl::kTvTable)}, - // int32 request_id = 2 [deprecated = true]; - {PROTOBUF_FIELD_OFFSET(GetCompletionItemsResponse, _impl_.request_id_), 0, 0, - (0 | ::_fl::kFcSingular | ::_fl::kInt32)}, - // bool success = 3 [deprecated = true]; - {PROTOBUF_FIELD_OFFSET(GetCompletionItemsResponse, _impl_.success_), 0, 0, - (0 | ::_fl::kFcSingular | ::_fl::kBool)}, - }}, {{ - {::_pbi::TcParser::GetTable<::io::deephaven::proto::backplane::script::grpc::CompletionItem>()}, - }}, {{ - }}, -}; - -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; - - _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>(); -} - -#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) - ABSL_DCHECK_NE(&from, _this); - ::uint32_t cached_has_bits = 0; - (void) cached_has_bits; - - _this->_internal_mutable_items()->MergeFrom( - from._internal_items()); - if (from._internal_request_id() != 0) { - _this->_impl_.request_id_ = from._impl_.request_id_; - } - if (from._internal_success() != 0) { - _this->_impl_.success_ = from._impl_.success_; - } - _this->_internal_metadata_.MergeFrom<::google::protobuf::UnknownFieldSet>(from._internal_metadata_); -} - -void GetCompletionItemsResponse::CopyFrom(const GetCompletionItemsResponse& from) { -// @@protoc_insertion_point(class_specific_copy_from_start:io.deephaven.proto.backplane.script.grpc.GetCompletionItemsResponse) - if (&from == this) return; - Clear(); - MergeFrom(from); -} - - -void GetCompletionItemsResponse::InternalSwap(GetCompletionItemsResponse* PROTOBUF_RESTRICT other) { - using std::swap; - _internal_metadata_.InternalSwap(&other->_internal_metadata_); - _impl_.items_.InternalSwap(&other->_impl_.items_); - ::google::protobuf::internal::memswap< - PROTOBUF_FIELD_OFFSET(GetCompletionItemsResponse, _impl_.success_) - + sizeof(GetCompletionItemsResponse::_impl_.success_) - - PROTOBUF_FIELD_OFFSET(GetCompletionItemsResponse, _impl_.request_id_)>( - reinterpret_cast(&_impl_.request_id_), - reinterpret_cast(&other->_impl_.request_id_)); -} - -::google::protobuf::Metadata GetCompletionItemsResponse::GetMetadata() const { - return ::google::protobuf::Message::GetMetadataImpl(GetClassData()->full()); -} -// =================================================================== - -class CompletionItem::_Internal { - public: - using HasBits = - decltype(std::declval()._impl_._has_bits_); - static constexpr ::int32_t kHasBitsOffset = - 8 * PROTOBUF_FIELD_OFFSET(CompletionItem, _impl_._has_bits_); -}; - -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 ::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_}, - commit_characters_{visibility, arena, from.commit_characters_}, - label_(arena, from.label_), - detail_(arena, from.detail_), - sort_text_(arena, from.sort_text_), - filter_text_(arena, from.filter_text_) {} - -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_, from); - ::uint32_t cached_has_bits = _impl_._has_bits_[0]; - _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_) + - offsetof(Impl_, start_), - offsetof(Impl_, insert_text_format_) - - offsetof(Impl_, start_) + - sizeof(Impl_::insert_text_format_)); - - // @@protoc_insertion_point(copy_constructor:io.deephaven.proto.backplane.script.grpc.CompletionItem) -} -inline PROTOBUF_NDEBUG_INLINE CompletionItem::Impl_::Impl_( - ::google::protobuf::internal::InternalVisibility visibility, - ::google::protobuf::Arena* arena) - : _cached_size_{0}, - additional_text_edits_{visibility, arena}, - commit_characters_{visibility, arena}, - label_(arena), - detail_(arena), - sort_text_(arena), - filter_text_(arena) {} - -inline void CompletionItem::SharedCtor(::_pb::Arena* arena) { - new (&_impl_) Impl_(internal_visibility(), arena); - ::memset(reinterpret_cast(&_impl_) + - offsetof(Impl_, text_edit_), - 0, - offsetof(Impl_, insert_text_format_) - - offsetof(Impl_, text_edit_) + - sizeof(Impl_::insert_text_format_)); -} -CompletionItem::~CompletionItem() { - // @@protoc_insertion_point(destructor:io.deephaven.proto.backplane.script.grpc.CompletionItem) - _internal_metadata_.Delete<::google::protobuf::UnknownFieldSet>(); - SharedDtor(); -} -inline void CompletionItem::SharedDtor() { - ABSL_DCHECK(GetArena() == nullptr); - _impl_.label_.Destroy(); - _impl_.detail_.Destroy(); - _impl_.sort_text_.Destroy(); - _impl_.filter_text_.Destroy(); - delete _impl_.text_edit_; - delete _impl_.documentation_; - _impl_.~Impl_(); -} - -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_ = { - { - PROTOBUF_FIELD_OFFSET(CompletionItem, _impl_._has_bits_), - 0, // no _extensions_ - 15, 120, // max_field_number, fast_idx_mask - offsetof(decltype(_table_), field_lookup_table), - 4294934560, // skipmap - offsetof(decltype(_table_), field_entries), - 14, // num_field_entries - 3, // num_aux_entries - offsetof(decltype(_table_), 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::CompletionItem>(), // to_prefetch - #endif // PROTOBUF_PREFETCH_PARSE_TABLE - }, {{ - {::_pbi::TcParser::MiniParse, {}}, - // int32 start = 1; - {::_pbi::TcParser::SingularVarintNoZag1<::uint32_t, offsetof(CompletionItem, _impl_.start_), 63>(), - {8, 63, 0, PROTOBUF_FIELD_OFFSET(CompletionItem, _impl_.start_)}}, - // int32 length = 2; - {::_pbi::TcParser::SingularVarintNoZag1<::uint32_t, offsetof(CompletionItem, _impl_.length_), 63>(), - {16, 63, 0, PROTOBUF_FIELD_OFFSET(CompletionItem, _impl_.length_)}}, - // string label = 3; - {::_pbi::TcParser::FastUS1, - {26, 63, 0, PROTOBUF_FIELD_OFFSET(CompletionItem, _impl_.label_)}}, - // int32 kind = 4; - {::_pbi::TcParser::SingularVarintNoZag1<::uint32_t, offsetof(CompletionItem, _impl_.kind_), 63>(), - {32, 63, 0, PROTOBUF_FIELD_OFFSET(CompletionItem, _impl_.kind_)}}, - // string detail = 5; - {::_pbi::TcParser::FastUS1, - {42, 63, 0, PROTOBUF_FIELD_OFFSET(CompletionItem, _impl_.detail_)}}, - {::_pbi::TcParser::MiniParse, {}}, - // bool deprecated = 7; - {::_pbi::TcParser::SingularVarintNoZag1(), - {56, 63, 0, PROTOBUF_FIELD_OFFSET(CompletionItem, _impl_.deprecated_)}}, - // bool preselect = 8; - {::_pbi::TcParser::SingularVarintNoZag1(), - {64, 63, 0, PROTOBUF_FIELD_OFFSET(CompletionItem, _impl_.preselect_)}}, - // .io.deephaven.proto.backplane.script.grpc.TextEdit text_edit = 9; - {::_pbi::TcParser::FastMtS1, - {74, 0, 0, PROTOBUF_FIELD_OFFSET(CompletionItem, _impl_.text_edit_)}}, - // string sort_text = 10; - {::_pbi::TcParser::FastUS1, - {82, 63, 0, PROTOBUF_FIELD_OFFSET(CompletionItem, _impl_.sort_text_)}}, - // string filter_text = 11; - {::_pbi::TcParser::FastUS1, - {90, 63, 0, PROTOBUF_FIELD_OFFSET(CompletionItem, _impl_.filter_text_)}}, - // int32 insert_text_format = 12; - {::_pbi::TcParser::SingularVarintNoZag1<::uint32_t, offsetof(CompletionItem, _impl_.insert_text_format_), 63>(), - {96, 63, 0, PROTOBUF_FIELD_OFFSET(CompletionItem, _impl_.insert_text_format_)}}, - // repeated .io.deephaven.proto.backplane.script.grpc.TextEdit additional_text_edits = 13; - {::_pbi::TcParser::FastMtR1, - {106, 63, 1, PROTOBUF_FIELD_OFFSET(CompletionItem, _impl_.additional_text_edits_)}}, - // repeated string commit_characters = 14; - {::_pbi::TcParser::FastUR1, - {114, 63, 0, PROTOBUF_FIELD_OFFSET(CompletionItem, _impl_.commit_characters_)}}, - // .io.deephaven.proto.backplane.script.grpc.MarkupContent documentation = 15; - {::_pbi::TcParser::FastMtS1, - {122, 1, 2, PROTOBUF_FIELD_OFFSET(CompletionItem, _impl_.documentation_)}}, - }}, {{ - 65535, 65535 - }}, {{ - // int32 start = 1; - {PROTOBUF_FIELD_OFFSET(CompletionItem, _impl_.start_), -1, 0, - (0 | ::_fl::kFcSingular | ::_fl::kInt32)}, - // int32 length = 2; - {PROTOBUF_FIELD_OFFSET(CompletionItem, _impl_.length_), -1, 0, - (0 | ::_fl::kFcSingular | ::_fl::kInt32)}, - // string label = 3; - {PROTOBUF_FIELD_OFFSET(CompletionItem, _impl_.label_), -1, 0, - (0 | ::_fl::kFcSingular | ::_fl::kUtf8String | ::_fl::kRepAString)}, - // int32 kind = 4; - {PROTOBUF_FIELD_OFFSET(CompletionItem, _impl_.kind_), -1, 0, - (0 | ::_fl::kFcSingular | ::_fl::kInt32)}, - // string detail = 5; - {PROTOBUF_FIELD_OFFSET(CompletionItem, _impl_.detail_), -1, 0, - (0 | ::_fl::kFcSingular | ::_fl::kUtf8String | ::_fl::kRepAString)}, - // bool deprecated = 7; - {PROTOBUF_FIELD_OFFSET(CompletionItem, _impl_.deprecated_), -1, 0, - (0 | ::_fl::kFcSingular | ::_fl::kBool)}, - // bool preselect = 8; - {PROTOBUF_FIELD_OFFSET(CompletionItem, _impl_.preselect_), -1, 0, - (0 | ::_fl::kFcSingular | ::_fl::kBool)}, - // .io.deephaven.proto.backplane.script.grpc.TextEdit text_edit = 9; - {PROTOBUF_FIELD_OFFSET(CompletionItem, _impl_.text_edit_), _Internal::kHasBitsOffset + 0, 0, - (0 | ::_fl::kFcOptional | ::_fl::kMessage | ::_fl::kTvTable)}, - // string sort_text = 10; - {PROTOBUF_FIELD_OFFSET(CompletionItem, _impl_.sort_text_), -1, 0, - (0 | ::_fl::kFcSingular | ::_fl::kUtf8String | ::_fl::kRepAString)}, - // string filter_text = 11; - {PROTOBUF_FIELD_OFFSET(CompletionItem, _impl_.filter_text_), -1, 0, - (0 | ::_fl::kFcSingular | ::_fl::kUtf8String | ::_fl::kRepAString)}, - // int32 insert_text_format = 12; - {PROTOBUF_FIELD_OFFSET(CompletionItem, _impl_.insert_text_format_), -1, 0, - (0 | ::_fl::kFcSingular | ::_fl::kInt32)}, - // repeated .io.deephaven.proto.backplane.script.grpc.TextEdit additional_text_edits = 13; - {PROTOBUF_FIELD_OFFSET(CompletionItem, _impl_.additional_text_edits_), -1, 1, - (0 | ::_fl::kFcRepeated | ::_fl::kMessage | ::_fl::kTvTable)}, - // repeated string commit_characters = 14; - {PROTOBUF_FIELD_OFFSET(CompletionItem, _impl_.commit_characters_), -1, 0, - (0 | ::_fl::kFcRepeated | ::_fl::kUtf8String | ::_fl::kRepSString)}, - // .io.deephaven.proto.backplane.script.grpc.MarkupContent documentation = 15; - {PROTOBUF_FIELD_OFFSET(CompletionItem, _impl_.documentation_), _Internal::kHasBitsOffset + 1, 2, - (0 | ::_fl::kFcOptional | ::_fl::kMessage | ::_fl::kTvTable)}, - }}, {{ - {::_pbi::TcParser::GetTable<::io::deephaven::proto::backplane::script::grpc::TextEdit>()}, - {::_pbi::TcParser::GetTable<::io::deephaven::proto::backplane::script::grpc::TextEdit>()}, - {::_pbi::TcParser::GetTable<::io::deephaven::proto::backplane::script::grpc::MarkupContent>()}, - }}, {{ - "\67\0\0\5\0\6\0\0\0\11\13\0\0\21\0\0" - "io.deephaven.proto.backplane.script.grpc.CompletionItem" - "label" - "detail" - "sort_text" - "filter_text" - "commit_characters" - }}, -}; - -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; - - _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>(); -} - -#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; - (void) cached_has_bits; - - _this->_internal_mutable_additional_text_edits()->MergeFrom( - from._internal_additional_text_edits()); - _this->_internal_mutable_commit_characters()->MergeFrom(from._internal_commit_characters()); - if (!from._internal_label().empty()) { - _this->_internal_set_label(from._internal_label()); - } - if (!from._internal_detail().empty()) { - _this->_internal_set_detail(from._internal_detail()); - } - if (!from._internal_sort_text().empty()) { - _this->_internal_set_sort_text(from._internal_sort_text()); - } - if (!from._internal_filter_text().empty()) { - _this->_internal_set_filter_text(from._internal_filter_text()); - } - cached_has_bits = from._impl_._has_bits_[0]; - if (cached_has_bits & 0x00000003u) { - if (cached_has_bits & 0x00000001u) { - 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) { - 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->_impl_.start_ = from._impl_.start_; - } - if (from._internal_length() != 0) { - _this->_impl_.length_ = from._impl_.length_; - } - if (from._internal_kind() != 0) { - _this->_impl_.kind_ = from._impl_.kind_; - } - if (from._internal_deprecated() != 0) { - _this->_impl_.deprecated_ = from._impl_.deprecated_; - } - if (from._internal_preselect() != 0) { - _this->_impl_.preselect_ = from._impl_.preselect_; - } - if (from._internal_insert_text_format() != 0) { - _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_); -} - -void CompletionItem::CopyFrom(const CompletionItem& from) { -// @@protoc_insertion_point(class_specific_copy_from_start:io.deephaven.proto.backplane.script.grpc.CompletionItem) - if (&from == this) return; - Clear(); - MergeFrom(from); -} - - -void CompletionItem::InternalSwap(CompletionItem* PROTOBUF_RESTRICT other) { - using std::swap; - auto* arena = GetArena(); - ABSL_DCHECK_EQ(arena, other->GetArena()); - _internal_metadata_.InternalSwap(&other->_internal_metadata_); - swap(_impl_._has_bits_[0], other->_impl_._has_bits_[0]); - _impl_.additional_text_edits_.InternalSwap(&other->_impl_.additional_text_edits_); - _impl_.commit_characters_.InternalSwap(&other->_impl_.commit_characters_); - ::_pbi::ArenaStringPtr::InternalSwap(&_impl_.label_, &other->_impl_.label_, arena); - ::_pbi::ArenaStringPtr::InternalSwap(&_impl_.detail_, &other->_impl_.detail_, arena); - ::_pbi::ArenaStringPtr::InternalSwap(&_impl_.sort_text_, &other->_impl_.sort_text_, arena); - ::_pbi::ArenaStringPtr::InternalSwap(&_impl_.filter_text_, &other->_impl_.filter_text_, arena); - ::google::protobuf::internal::memswap< - PROTOBUF_FIELD_OFFSET(CompletionItem, _impl_.insert_text_format_) - + sizeof(CompletionItem::_impl_.insert_text_format_) - - PROTOBUF_FIELD_OFFSET(CompletionItem, _impl_.text_edit_)>( - reinterpret_cast(&_impl_.text_edit_), - reinterpret_cast(&other->_impl_.text_edit_)); -} - -::google::protobuf::Metadata CompletionItem::GetMetadata() const { - return ::google::protobuf::Message::GetMetadataImpl(GetClassData()->full()); -} -// =================================================================== - -class TextEdit::_Internal { - public: - using HasBits = - decltype(std::declval()._impl_._has_bits_); - static constexpr ::int32_t kHasBitsOffset = - 8 * PROTOBUF_FIELD_OFFSET(TextEdit, _impl_._has_bits_); -}; - -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 ::io::deephaven::proto::backplane::script::grpc::TextEdit& from_msg) - : _has_bits_{from._has_bits_}, - _cached_size_{0}, - text_(arena, from.text_) {} - -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_, from); - ::uint32_t cached_has_bits = _impl_._has_bits_[0]; - _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) -} -inline PROTOBUF_NDEBUG_INLINE TextEdit::Impl_::Impl_( - ::google::protobuf::internal::InternalVisibility visibility, - ::google::protobuf::Arena* arena) - : _cached_size_{0}, - text_(arena) {} - -inline void TextEdit::SharedCtor(::_pb::Arena* arena) { - new (&_impl_) Impl_(internal_visibility(), arena); - _impl_.range_ = {}; -} -TextEdit::~TextEdit() { - // @@protoc_insertion_point(destructor:io.deephaven.proto.backplane.script.grpc.TextEdit) - _internal_metadata_.Delete<::google::protobuf::UnknownFieldSet>(); - SharedDtor(); -} -inline void TextEdit::SharedDtor() { - ABSL_DCHECK(GetArena() == nullptr); - _impl_.text_.Destroy(); - delete _impl_.range_; - _impl_.~Impl_(); -} - -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_ = { - { - PROTOBUF_FIELD_OFFSET(TextEdit, _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::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, - {18, 63, 0, PROTOBUF_FIELD_OFFSET(TextEdit, _impl_.text_)}}, - // .io.deephaven.proto.backplane.script.grpc.DocumentRange range = 1; - {::_pbi::TcParser::FastMtS1, - {10, 0, 0, PROTOBUF_FIELD_OFFSET(TextEdit, _impl_.range_)}}, - }}, {{ - 65535, 65535 - }}, {{ - // .io.deephaven.proto.backplane.script.grpc.DocumentRange range = 1; - {PROTOBUF_FIELD_OFFSET(TextEdit, _impl_.range_), _Internal::kHasBitsOffset + 0, 0, - (0 | ::_fl::kFcOptional | ::_fl::kMessage | ::_fl::kTvTable)}, - // string text = 2; - {PROTOBUF_FIELD_OFFSET(TextEdit, _impl_.text_), -1, 0, - (0 | ::_fl::kFcSingular | ::_fl::kUtf8String | ::_fl::kRepAString)}, - }}, {{ - {::_pbi::TcParser::GetTable<::io::deephaven::proto::backplane::script::grpc::DocumentRange>()}, - }}, {{ - "\61\0\4\0\0\0\0\0" - "io.deephaven.proto.backplane.script.grpc.TextEdit" - "text" - }}, -}; - -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; - - _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>(); -} - -#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; - (void) cached_has_bits; - - if (!from._internal_text().empty()) { - _this->_internal_set_text(from._internal_text()); - } - 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_); -} - -void TextEdit::CopyFrom(const TextEdit& from) { -// @@protoc_insertion_point(class_specific_copy_from_start:io.deephaven.proto.backplane.script.grpc.TextEdit) - if (&from == this) return; - Clear(); - MergeFrom(from); -} - - -void TextEdit::InternalSwap(TextEdit* PROTOBUF_RESTRICT other) { - using std::swap; - auto* arena = GetArena(); - ABSL_DCHECK_EQ(arena, other->GetArena()); - _internal_metadata_.InternalSwap(&other->_internal_metadata_); - swap(_impl_._has_bits_[0], other->_impl_._has_bits_[0]); - ::_pbi::ArenaStringPtr::InternalSwap(&_impl_.text_, &other->_impl_.text_, arena); - swap(_impl_.range_, other->_impl_.range_); -} - -::google::protobuf::Metadata TextEdit::GetMetadata() const { - return ::google::protobuf::Message::GetMetadataImpl(GetClassData()->full()); -} -// =================================================================== - -class GetSignatureHelpRequest::_Internal { - public: - using HasBits = - decltype(std::declval()._impl_._has_bits_); - static constexpr ::int32_t kHasBitsOffset = - 8 * PROTOBUF_FIELD_OFFSET(GetSignatureHelpRequest, _impl_._has_bits_); -}; - -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 ::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_, from); - ::uint32_t cached_has_bits = _impl_._has_bits_[0]; - _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) -} -inline PROTOBUF_NDEBUG_INLINE GetSignatureHelpRequest::Impl_::Impl_( - ::google::protobuf::internal::InternalVisibility visibility, - ::google::protobuf::Arena* arena) - : _cached_size_{0} {} - -inline void GetSignatureHelpRequest::SharedCtor(::_pb::Arena* arena) { - new (&_impl_) Impl_(internal_visibility(), arena); - ::memset(reinterpret_cast(&_impl_) + - offsetof(Impl_, context_), - 0, - offsetof(Impl_, position_) - - offsetof(Impl_, context_) + - sizeof(Impl_::position_)); -} -GetSignatureHelpRequest::~GetSignatureHelpRequest() { - // @@protoc_insertion_point(destructor:io.deephaven.proto.backplane.script.grpc.GetSignatureHelpRequest) - _internal_metadata_.Delete<::google::protobuf::UnknownFieldSet>(); - SharedDtor(); -} -inline void GetSignatureHelpRequest::SharedDtor() { - ABSL_DCHECK(GetArena() == nullptr); - delete _impl_.context_; - delete _impl_.text_document_; - delete _impl_.position_; - _impl_.~Impl_(); -} - -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_ = { - { - PROTOBUF_FIELD_OFFSET(GetSignatureHelpRequest, _impl_._has_bits_), - 0, // no _extensions_ - 3, 24, // max_field_number, fast_idx_mask - offsetof(decltype(_table_), field_lookup_table), - 4294967288, // skipmap - offsetof(decltype(_table_), field_entries), - 3, // num_field_entries - 3, // num_aux_entries - offsetof(decltype(_table_), 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::GetSignatureHelpRequest>(), // to_prefetch - #endif // PROTOBUF_PREFETCH_PARSE_TABLE - }, {{ - {::_pbi::TcParser::MiniParse, {}}, - // .io.deephaven.proto.backplane.script.grpc.SignatureHelpContext context = 1; - {::_pbi::TcParser::FastMtS1, - {10, 0, 0, PROTOBUF_FIELD_OFFSET(GetSignatureHelpRequest, _impl_.context_)}}, - // .io.deephaven.proto.backplane.script.grpc.VersionedTextDocumentIdentifier text_document = 2; - {::_pbi::TcParser::FastMtS1, - {18, 1, 1, PROTOBUF_FIELD_OFFSET(GetSignatureHelpRequest, _impl_.text_document_)}}, - // .io.deephaven.proto.backplane.script.grpc.Position position = 3; - {::_pbi::TcParser::FastMtS1, - {26, 2, 2, PROTOBUF_FIELD_OFFSET(GetSignatureHelpRequest, _impl_.position_)}}, - }}, {{ - 65535, 65535 - }}, {{ - // .io.deephaven.proto.backplane.script.grpc.SignatureHelpContext context = 1; - {PROTOBUF_FIELD_OFFSET(GetSignatureHelpRequest, _impl_.context_), _Internal::kHasBitsOffset + 0, 0, - (0 | ::_fl::kFcOptional | ::_fl::kMessage | ::_fl::kTvTable)}, - // .io.deephaven.proto.backplane.script.grpc.VersionedTextDocumentIdentifier text_document = 2; - {PROTOBUF_FIELD_OFFSET(GetSignatureHelpRequest, _impl_.text_document_), _Internal::kHasBitsOffset + 1, 1, - (0 | ::_fl::kFcOptional | ::_fl::kMessage | ::_fl::kTvTable)}, - // .io.deephaven.proto.backplane.script.grpc.Position position = 3; - {PROTOBUF_FIELD_OFFSET(GetSignatureHelpRequest, _impl_.position_), _Internal::kHasBitsOffset + 2, 2, - (0 | ::_fl::kFcOptional | ::_fl::kMessage | ::_fl::kTvTable)}, - }}, {{ - {::_pbi::TcParser::GetTable<::io::deephaven::proto::backplane::script::grpc::SignatureHelpContext>()}, - {::_pbi::TcParser::GetTable<::io::deephaven::proto::backplane::script::grpc::VersionedTextDocumentIdentifier>()}, - {::_pbi::TcParser::GetTable<::io::deephaven::proto::backplane::script::grpc::Position>()}, - }}, {{ - }}, -}; - -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) { - 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>(); -} - -#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; - (void) cached_has_bits; - - cached_has_bits = from._impl_._has_bits_[0]; - if (cached_has_bits & 0x00000007u) { - if (cached_has_bits & 0x00000001u) { - 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) { - 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) { - 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_); -} - -void GetSignatureHelpRequest::CopyFrom(const GetSignatureHelpRequest& from) { -// @@protoc_insertion_point(class_specific_copy_from_start:io.deephaven.proto.backplane.script.grpc.GetSignatureHelpRequest) - if (&from == this) return; - Clear(); - MergeFrom(from); -} - - -void GetSignatureHelpRequest::InternalSwap(GetSignatureHelpRequest* PROTOBUF_RESTRICT other) { - using std::swap; - _internal_metadata_.InternalSwap(&other->_internal_metadata_); - swap(_impl_._has_bits_[0], other->_impl_._has_bits_[0]); - ::google::protobuf::internal::memswap< - PROTOBUF_FIELD_OFFSET(GetSignatureHelpRequest, _impl_.position_) - + sizeof(GetSignatureHelpRequest::_impl_.position_) - - PROTOBUF_FIELD_OFFSET(GetSignatureHelpRequest, _impl_.context_)>( - reinterpret_cast(&_impl_.context_), - reinterpret_cast(&other->_impl_.context_)); -} - -::google::protobuf::Metadata GetSignatureHelpRequest::GetMetadata() const { - return ::google::protobuf::Message::GetMetadataImpl(GetClassData()->full()); -} -// =================================================================== - -class SignatureHelpContext::_Internal { - public: - using HasBits = - decltype(std::declval()._impl_._has_bits_); - static constexpr ::int32_t kHasBitsOffset = - 8 * PROTOBUF_FIELD_OFFSET(SignatureHelpContext, _impl_._has_bits_); -}; - -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 ::io::deephaven::proto::backplane::script::grpc::SignatureHelpContext& from_msg) - : _has_bits_{from._has_bits_}, - _cached_size_{0}, - trigger_character_(arena, from.trigger_character_) {} - -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_, from); - ::uint32_t cached_has_bits = _impl_._has_bits_[0]; - _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_) + - offsetof(Impl_, trigger_kind_), - offsetof(Impl_, is_retrigger_) - - offsetof(Impl_, trigger_kind_) + - sizeof(Impl_::is_retrigger_)); - - // @@protoc_insertion_point(copy_constructor:io.deephaven.proto.backplane.script.grpc.SignatureHelpContext) -} -inline PROTOBUF_NDEBUG_INLINE SignatureHelpContext::Impl_::Impl_( - ::google::protobuf::internal::InternalVisibility visibility, - ::google::protobuf::Arena* arena) - : _cached_size_{0}, - trigger_character_(arena) {} - -inline void SignatureHelpContext::SharedCtor(::_pb::Arena* arena) { - new (&_impl_) Impl_(internal_visibility(), arena); - ::memset(reinterpret_cast(&_impl_) + - offsetof(Impl_, active_signature_help_), - 0, - offsetof(Impl_, is_retrigger_) - - offsetof(Impl_, active_signature_help_) + - sizeof(Impl_::is_retrigger_)); -} -SignatureHelpContext::~SignatureHelpContext() { - // @@protoc_insertion_point(destructor:io.deephaven.proto.backplane.script.grpc.SignatureHelpContext) - _internal_metadata_.Delete<::google::protobuf::UnknownFieldSet>(); - SharedDtor(); -} -inline void SignatureHelpContext::SharedDtor() { - ABSL_DCHECK(GetArena() == nullptr); - _impl_.trigger_character_.Destroy(); - delete _impl_.active_signature_help_; - _impl_.~Impl_(); -} - -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_ = { - { - PROTOBUF_FIELD_OFFSET(SignatureHelpContext, _impl_._has_bits_), - 0, // no _extensions_ - 4, 24, // max_field_number, fast_idx_mask - offsetof(decltype(_table_), field_lookup_table), - 4294967280, // skipmap - offsetof(decltype(_table_), field_entries), - 4, // num_field_entries - 1, // num_aux_entries - offsetof(decltype(_table_), 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::SignatureHelpContext>(), // to_prefetch - #endif // PROTOBUF_PREFETCH_PARSE_TABLE - }, {{ - // .io.deephaven.proto.backplane.script.grpc.GetSignatureHelpResponse active_signature_help = 4; - {::_pbi::TcParser::FastMtS1, - {34, 1, 0, PROTOBUF_FIELD_OFFSET(SignatureHelpContext, _impl_.active_signature_help_)}}, - // int32 trigger_kind = 1; - {::_pbi::TcParser::SingularVarintNoZag1<::uint32_t, offsetof(SignatureHelpContext, _impl_.trigger_kind_), 63>(), - {8, 63, 0, PROTOBUF_FIELD_OFFSET(SignatureHelpContext, _impl_.trigger_kind_)}}, - // optional string trigger_character = 2; - {::_pbi::TcParser::FastUS1, - {18, 0, 0, PROTOBUF_FIELD_OFFSET(SignatureHelpContext, _impl_.trigger_character_)}}, - // bool is_retrigger = 3; - {::_pbi::TcParser::SingularVarintNoZag1(), - {24, 63, 0, PROTOBUF_FIELD_OFFSET(SignatureHelpContext, _impl_.is_retrigger_)}}, - }}, {{ - 65535, 65535 - }}, {{ - // int32 trigger_kind = 1; - {PROTOBUF_FIELD_OFFSET(SignatureHelpContext, _impl_.trigger_kind_), -1, 0, - (0 | ::_fl::kFcSingular | ::_fl::kInt32)}, - // optional string trigger_character = 2; - {PROTOBUF_FIELD_OFFSET(SignatureHelpContext, _impl_.trigger_character_), _Internal::kHasBitsOffset + 0, 0, - (0 | ::_fl::kFcOptional | ::_fl::kUtf8String | ::_fl::kRepAString)}, - // bool is_retrigger = 3; - {PROTOBUF_FIELD_OFFSET(SignatureHelpContext, _impl_.is_retrigger_), -1, 0, - (0 | ::_fl::kFcSingular | ::_fl::kBool)}, - // .io.deephaven.proto.backplane.script.grpc.GetSignatureHelpResponse active_signature_help = 4; - {PROTOBUF_FIELD_OFFSET(SignatureHelpContext, _impl_.active_signature_help_), _Internal::kHasBitsOffset + 1, 0, - (0 | ::_fl::kFcOptional | ::_fl::kMessage | ::_fl::kTvTable)}, - }}, {{ - {::_pbi::TcParser::GetTable<::io::deephaven::proto::backplane::script::grpc::GetSignatureHelpResponse>()}, - }}, {{ - "\75\0\21\0\0\0\0\0" - "io.deephaven.proto.backplane.script.grpc.SignatureHelpContext" - "trigger_character" - }}, -}; - -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) { - 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>(); -} - -#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; - (void) cached_has_bits; - - cached_has_bits = from._impl_._has_bits_[0]; - if (cached_has_bits & 0x00000003u) { - if (cached_has_bits & 0x00000001u) { - _this->_internal_set_trigger_character(from._internal_trigger_character()); - } - if (cached_has_bits & 0x00000002u) { - 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->_impl_.trigger_kind_ = from._impl_.trigger_kind_; - } - if (from._internal_is_retrigger() != 0) { - _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_); -} - -void SignatureHelpContext::CopyFrom(const SignatureHelpContext& from) { -// @@protoc_insertion_point(class_specific_copy_from_start:io.deephaven.proto.backplane.script.grpc.SignatureHelpContext) - if (&from == this) return; - Clear(); - MergeFrom(from); -} - - -void SignatureHelpContext::InternalSwap(SignatureHelpContext* PROTOBUF_RESTRICT other) { - using std::swap; - auto* arena = GetArena(); - ABSL_DCHECK_EQ(arena, other->GetArena()); - _internal_metadata_.InternalSwap(&other->_internal_metadata_); - swap(_impl_._has_bits_[0], other->_impl_._has_bits_[0]); - ::_pbi::ArenaStringPtr::InternalSwap(&_impl_.trigger_character_, &other->_impl_.trigger_character_, arena); - ::google::protobuf::internal::memswap< - PROTOBUF_FIELD_OFFSET(SignatureHelpContext, _impl_.is_retrigger_) - + sizeof(SignatureHelpContext::_impl_.is_retrigger_) - - PROTOBUF_FIELD_OFFSET(SignatureHelpContext, _impl_.active_signature_help_)>( - reinterpret_cast(&_impl_.active_signature_help_), - reinterpret_cast(&other->_impl_.active_signature_help_)); -} - -::google::protobuf::Metadata SignatureHelpContext::GetMetadata() const { - return ::google::protobuf::Message::GetMetadataImpl(GetClassData()->full()); -} -// =================================================================== - -class GetSignatureHelpResponse::_Internal { - public: - using HasBits = - decltype(std::declval()._impl_._has_bits_); - static constexpr ::int32_t kHasBitsOffset = - 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 ::io::deephaven::proto::backplane::script::grpc::GetSignatureHelpResponse& from_msg) - : _has_bits_{from._has_bits_}, - _cached_size_{0}, - signatures_{visibility, arena, from.signatures_} {} - -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_, from); - ::memcpy(reinterpret_cast(&_impl_) + - offsetof(Impl_, active_signature_), - reinterpret_cast(&from._impl_) + - offsetof(Impl_, active_signature_), - offsetof(Impl_, active_parameter_) - - offsetof(Impl_, active_signature_) + - sizeof(Impl_::active_parameter_)); - - // @@protoc_insertion_point(copy_constructor:io.deephaven.proto.backplane.script.grpc.GetSignatureHelpResponse) -} -inline PROTOBUF_NDEBUG_INLINE GetSignatureHelpResponse::Impl_::Impl_( - ::google::protobuf::internal::InternalVisibility visibility, - ::google::protobuf::Arena* arena) - : _cached_size_{0}, - signatures_{visibility, arena} {} - -inline void GetSignatureHelpResponse::SharedCtor(::_pb::Arena* arena) { - new (&_impl_) Impl_(internal_visibility(), arena); - ::memset(reinterpret_cast(&_impl_) + - offsetof(Impl_, active_signature_), - 0, - offsetof(Impl_, active_parameter_) - - offsetof(Impl_, active_signature_) + - sizeof(Impl_::active_parameter_)); -} -GetSignatureHelpResponse::~GetSignatureHelpResponse() { - // @@protoc_insertion_point(destructor:io.deephaven.proto.backplane.script.grpc.GetSignatureHelpResponse) - _internal_metadata_.Delete<::google::protobuf::UnknownFieldSet>(); - SharedDtor(); -} -inline void GetSignatureHelpResponse::SharedDtor() { - ABSL_DCHECK(GetArena() == nullptr); - _impl_.~Impl_(); -} - -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_ = { - { - PROTOBUF_FIELD_OFFSET(GetSignatureHelpResponse, _impl_._has_bits_), - 0, // no _extensions_ - 3, 24, // max_field_number, fast_idx_mask - offsetof(decltype(_table_), field_lookup_table), - 4294967288, // skipmap - offsetof(decltype(_table_), field_entries), - 3, // num_field_entries - 1, // num_aux_entries - offsetof(decltype(_table_), 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::GetSignatureHelpResponse>(), // to_prefetch - #endif // PROTOBUF_PREFETCH_PARSE_TABLE - }, {{ - {::_pbi::TcParser::MiniParse, {}}, - // repeated .io.deephaven.proto.backplane.script.grpc.SignatureInformation signatures = 1; - {::_pbi::TcParser::FastMtR1, - {10, 63, 0, PROTOBUF_FIELD_OFFSET(GetSignatureHelpResponse, _impl_.signatures_)}}, - // optional int32 active_signature = 2; - {::_pbi::TcParser::SingularVarintNoZag1<::uint32_t, offsetof(GetSignatureHelpResponse, _impl_.active_signature_), 0>(), - {16, 0, 0, PROTOBUF_FIELD_OFFSET(GetSignatureHelpResponse, _impl_.active_signature_)}}, - // optional int32 active_parameter = 3; - {::_pbi::TcParser::SingularVarintNoZag1<::uint32_t, offsetof(GetSignatureHelpResponse, _impl_.active_parameter_), 1>(), - {24, 1, 0, PROTOBUF_FIELD_OFFSET(GetSignatureHelpResponse, _impl_.active_parameter_)}}, - }}, {{ - 65535, 65535 - }}, {{ - // repeated .io.deephaven.proto.backplane.script.grpc.SignatureInformation signatures = 1; - {PROTOBUF_FIELD_OFFSET(GetSignatureHelpResponse, _impl_.signatures_), -1, 0, - (0 | ::_fl::kFcRepeated | ::_fl::kMessage | ::_fl::kTvTable)}, - // optional int32 active_signature = 2; - {PROTOBUF_FIELD_OFFSET(GetSignatureHelpResponse, _impl_.active_signature_), _Internal::kHasBitsOffset + 0, 0, - (0 | ::_fl::kFcOptional | ::_fl::kInt32)}, - // optional int32 active_parameter = 3; - {PROTOBUF_FIELD_OFFSET(GetSignatureHelpResponse, _impl_.active_parameter_), _Internal::kHasBitsOffset + 1, 0, - (0 | ::_fl::kFcOptional | ::_fl::kInt32)}, - }}, {{ - {::_pbi::TcParser::GetTable<::io::deephaven::proto::backplane::script::grpc::SignatureInformation>()}, - }}, {{ - }}, -}; - -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; - - _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>(); -} - -#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) - ABSL_DCHECK_NE(&from, _this); - ::uint32_t cached_has_bits = 0; - (void) cached_has_bits; - - _this->_internal_mutable_signatures()->MergeFrom( - from._internal_signatures()); - cached_has_bits = from._impl_._has_bits_[0]; - if (cached_has_bits & 0x00000003u) { - if (cached_has_bits & 0x00000001u) { - _this->_impl_.active_signature_ = from._impl_.active_signature_; - } - if (cached_has_bits & 0x00000002u) { - _this->_impl_.active_parameter_ = from._impl_.active_parameter_; - } - } - _this->_impl_._has_bits_[0] |= cached_has_bits; - _this->_internal_metadata_.MergeFrom<::google::protobuf::UnknownFieldSet>(from._internal_metadata_); -} - -void GetSignatureHelpResponse::CopyFrom(const GetSignatureHelpResponse& from) { -// @@protoc_insertion_point(class_specific_copy_from_start:io.deephaven.proto.backplane.script.grpc.GetSignatureHelpResponse) - if (&from == this) return; - Clear(); - MergeFrom(from); -} - - -void GetSignatureHelpResponse::InternalSwap(GetSignatureHelpResponse* PROTOBUF_RESTRICT other) { - using std::swap; - _internal_metadata_.InternalSwap(&other->_internal_metadata_); - swap(_impl_._has_bits_[0], other->_impl_._has_bits_[0]); - _impl_.signatures_.InternalSwap(&other->_impl_.signatures_); - ::google::protobuf::internal::memswap< - PROTOBUF_FIELD_OFFSET(GetSignatureHelpResponse, _impl_.active_parameter_) - + sizeof(GetSignatureHelpResponse::_impl_.active_parameter_) - - PROTOBUF_FIELD_OFFSET(GetSignatureHelpResponse, _impl_.active_signature_)>( - reinterpret_cast(&_impl_.active_signature_), - reinterpret_cast(&other->_impl_.active_signature_)); -} - -::google::protobuf::Metadata GetSignatureHelpResponse::GetMetadata() const { - return ::google::protobuf::Message::GetMetadataImpl(GetClassData()->full()); -} -// =================================================================== - -class SignatureInformation::_Internal { - public: - using HasBits = - decltype(std::declval()._impl_._has_bits_); - static constexpr ::int32_t kHasBitsOffset = - 8 * PROTOBUF_FIELD_OFFSET(SignatureInformation, _impl_._has_bits_); -}; - -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 ::io::deephaven::proto::backplane::script::grpc::SignatureInformation& from_msg) - : _has_bits_{from._has_bits_}, - _cached_size_{0}, - parameters_{visibility, arena, from.parameters_}, - label_(arena, from.label_) {} - -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_, from); - ::uint32_t cached_has_bits = _impl_._has_bits_[0]; - _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) -} -inline PROTOBUF_NDEBUG_INLINE SignatureInformation::Impl_::Impl_( - ::google::protobuf::internal::InternalVisibility visibility, - ::google::protobuf::Arena* arena) - : _cached_size_{0}, - parameters_{visibility, arena}, - label_(arena) {} - -inline void SignatureInformation::SharedCtor(::_pb::Arena* arena) { - new (&_impl_) Impl_(internal_visibility(), arena); - ::memset(reinterpret_cast(&_impl_) + - offsetof(Impl_, documentation_), - 0, - offsetof(Impl_, active_parameter_) - - offsetof(Impl_, documentation_) + - sizeof(Impl_::active_parameter_)); -} -SignatureInformation::~SignatureInformation() { - // @@protoc_insertion_point(destructor:io.deephaven.proto.backplane.script.grpc.SignatureInformation) - _internal_metadata_.Delete<::google::protobuf::UnknownFieldSet>(); - SharedDtor(); -} -inline void SignatureInformation::SharedDtor() { - ABSL_DCHECK(GetArena() == nullptr); - _impl_.label_.Destroy(); - delete _impl_.documentation_; - _impl_.~Impl_(); -} - -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_ = { - { - PROTOBUF_FIELD_OFFSET(SignatureInformation, _impl_._has_bits_), - 0, // no _extensions_ - 4, 24, // max_field_number, fast_idx_mask - offsetof(decltype(_table_), field_lookup_table), - 4294967280, // skipmap - offsetof(decltype(_table_), field_entries), - 4, // num_field_entries - 2, // num_aux_entries - offsetof(decltype(_table_), 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::SignatureInformation>(), // to_prefetch - #endif // PROTOBUF_PREFETCH_PARSE_TABLE - }, {{ - // optional int32 active_parameter = 4; - {::_pbi::TcParser::SingularVarintNoZag1<::uint32_t, offsetof(SignatureInformation, _impl_.active_parameter_), 1>(), - {32, 1, 0, PROTOBUF_FIELD_OFFSET(SignatureInformation, _impl_.active_parameter_)}}, - // string label = 1; - {::_pbi::TcParser::FastUS1, - {10, 63, 0, PROTOBUF_FIELD_OFFSET(SignatureInformation, _impl_.label_)}}, - // .io.deephaven.proto.backplane.script.grpc.MarkupContent documentation = 2; - {::_pbi::TcParser::FastMtS1, - {18, 0, 0, PROTOBUF_FIELD_OFFSET(SignatureInformation, _impl_.documentation_)}}, - // repeated .io.deephaven.proto.backplane.script.grpc.ParameterInformation parameters = 3; - {::_pbi::TcParser::FastMtR1, - {26, 63, 1, PROTOBUF_FIELD_OFFSET(SignatureInformation, _impl_.parameters_)}}, - }}, {{ - 65535, 65535 - }}, {{ - // string label = 1; - {PROTOBUF_FIELD_OFFSET(SignatureInformation, _impl_.label_), -1, 0, - (0 | ::_fl::kFcSingular | ::_fl::kUtf8String | ::_fl::kRepAString)}, - // .io.deephaven.proto.backplane.script.grpc.MarkupContent documentation = 2; - {PROTOBUF_FIELD_OFFSET(SignatureInformation, _impl_.documentation_), _Internal::kHasBitsOffset + 0, 0, - (0 | ::_fl::kFcOptional | ::_fl::kMessage | ::_fl::kTvTable)}, - // repeated .io.deephaven.proto.backplane.script.grpc.ParameterInformation parameters = 3; - {PROTOBUF_FIELD_OFFSET(SignatureInformation, _impl_.parameters_), -1, 1, - (0 | ::_fl::kFcRepeated | ::_fl::kMessage | ::_fl::kTvTable)}, - // optional int32 active_parameter = 4; - {PROTOBUF_FIELD_OFFSET(SignatureInformation, _impl_.active_parameter_), _Internal::kHasBitsOffset + 1, 0, - (0 | ::_fl::kFcOptional | ::_fl::kInt32)}, - }}, {{ - {::_pbi::TcParser::GetTable<::io::deephaven::proto::backplane::script::grpc::MarkupContent>()}, - {::_pbi::TcParser::GetTable<::io::deephaven::proto::backplane::script::grpc::ParameterInformation>()}, - }}, {{ - "\75\5\0\0\0\0\0\0" - "io.deephaven.proto.backplane.script.grpc.SignatureInformation" - "label" - }}, -}; - -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; - - _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>(); -} - -#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; - (void) cached_has_bits; - - _this->_internal_mutable_parameters()->MergeFrom( - from._internal_parameters()); - if (!from._internal_label().empty()) { - _this->_internal_set_label(from._internal_label()); - } - cached_has_bits = from._impl_._has_bits_[0]; - if (cached_has_bits & 0x00000003u) { - 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_); - } - } - if (cached_has_bits & 0x00000002u) { - _this->_impl_.active_parameter_ = from._impl_.active_parameter_; - } - } - _this->_impl_._has_bits_[0] |= cached_has_bits; - _this->_internal_metadata_.MergeFrom<::google::protobuf::UnknownFieldSet>(from._internal_metadata_); -} - -void SignatureInformation::CopyFrom(const SignatureInformation& from) { -// @@protoc_insertion_point(class_specific_copy_from_start:io.deephaven.proto.backplane.script.grpc.SignatureInformation) - if (&from == this) return; - Clear(); - MergeFrom(from); -} - - -void SignatureInformation::InternalSwap(SignatureInformation* PROTOBUF_RESTRICT other) { - using std::swap; - auto* arena = GetArena(); - ABSL_DCHECK_EQ(arena, other->GetArena()); - _internal_metadata_.InternalSwap(&other->_internal_metadata_); - swap(_impl_._has_bits_[0], other->_impl_._has_bits_[0]); - _impl_.parameters_.InternalSwap(&other->_impl_.parameters_); - ::_pbi::ArenaStringPtr::InternalSwap(&_impl_.label_, &other->_impl_.label_, arena); - ::google::protobuf::internal::memswap< - PROTOBUF_FIELD_OFFSET(SignatureInformation, _impl_.active_parameter_) - + sizeof(SignatureInformation::_impl_.active_parameter_) - - PROTOBUF_FIELD_OFFSET(SignatureInformation, _impl_.documentation_)>( - reinterpret_cast(&_impl_.documentation_), - reinterpret_cast(&other->_impl_.documentation_)); -} - -::google::protobuf::Metadata SignatureInformation::GetMetadata() const { - return ::google::protobuf::Message::GetMetadataImpl(GetClassData()->full()); -} -// =================================================================== - -class ParameterInformation::_Internal { - public: - using HasBits = - decltype(std::declval()._impl_._has_bits_); - static constexpr ::int32_t kHasBitsOffset = - 8 * PROTOBUF_FIELD_OFFSET(ParameterInformation, _impl_._has_bits_); -}; - -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 ::io::deephaven::proto::backplane::script::grpc::ParameterInformation& from_msg) - : _has_bits_{from._has_bits_}, - _cached_size_{0}, - label_(arena, from.label_) {} - -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_, from); - ::uint32_t cached_has_bits = _impl_._has_bits_[0]; - _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) -} -inline PROTOBUF_NDEBUG_INLINE ParameterInformation::Impl_::Impl_( - ::google::protobuf::internal::InternalVisibility visibility, - ::google::protobuf::Arena* arena) - : _cached_size_{0}, - label_(arena) {} - -inline void ParameterInformation::SharedCtor(::_pb::Arena* arena) { - new (&_impl_) Impl_(internal_visibility(), arena); - _impl_.documentation_ = {}; -} -ParameterInformation::~ParameterInformation() { - // @@protoc_insertion_point(destructor:io.deephaven.proto.backplane.script.grpc.ParameterInformation) - _internal_metadata_.Delete<::google::protobuf::UnknownFieldSet>(); - SharedDtor(); -} -inline void ParameterInformation::SharedDtor() { - ABSL_DCHECK(GetArena() == nullptr); - _impl_.label_.Destroy(); - delete _impl_.documentation_; - _impl_.~Impl_(); -} - -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_ = { - { - PROTOBUF_FIELD_OFFSET(ParameterInformation, _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::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, - {18, 0, 0, PROTOBUF_FIELD_OFFSET(ParameterInformation, _impl_.documentation_)}}, - // string label = 1; - {::_pbi::TcParser::FastUS1, - {10, 63, 0, PROTOBUF_FIELD_OFFSET(ParameterInformation, _impl_.label_)}}, - }}, {{ - 65535, 65535 - }}, {{ - // string label = 1; - {PROTOBUF_FIELD_OFFSET(ParameterInformation, _impl_.label_), -1, 0, - (0 | ::_fl::kFcSingular | ::_fl::kUtf8String | ::_fl::kRepAString)}, - // .io.deephaven.proto.backplane.script.grpc.MarkupContent documentation = 2; - {PROTOBUF_FIELD_OFFSET(ParameterInformation, _impl_.documentation_), _Internal::kHasBitsOffset + 0, 0, - (0 | ::_fl::kFcOptional | ::_fl::kMessage | ::_fl::kTvTable)}, - }}, {{ - {::_pbi::TcParser::GetTable<::io::deephaven::proto::backplane::script::grpc::MarkupContent>()}, - }}, {{ - "\75\5\0\0\0\0\0\0" - "io.deephaven.proto.backplane.script.grpc.ParameterInformation" - "label" - }}, -}; - -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; - - _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>(); -} - -#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; - (void) cached_has_bits; - - if (!from._internal_label().empty()) { - _this->_internal_set_label(from._internal_label()); - } - 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_); -} - -void ParameterInformation::CopyFrom(const ParameterInformation& from) { -// @@protoc_insertion_point(class_specific_copy_from_start:io.deephaven.proto.backplane.script.grpc.ParameterInformation) - if (&from == this) return; - Clear(); - MergeFrom(from); -} - - -void ParameterInformation::InternalSwap(ParameterInformation* PROTOBUF_RESTRICT other) { - using std::swap; - auto* arena = GetArena(); - ABSL_DCHECK_EQ(arena, other->GetArena()); - _internal_metadata_.InternalSwap(&other->_internal_metadata_); - swap(_impl_._has_bits_[0], other->_impl_._has_bits_[0]); - ::_pbi::ArenaStringPtr::InternalSwap(&_impl_.label_, &other->_impl_.label_, arena); - swap(_impl_.documentation_, other->_impl_.documentation_); -} - -::google::protobuf::Metadata ParameterInformation::GetMetadata() const { - return ::google::protobuf::Message::GetMetadataImpl(GetClassData()->full()); -} -// =================================================================== - -class GetHoverRequest::_Internal { - public: - using HasBits = - decltype(std::declval()._impl_._has_bits_); - static constexpr ::int32_t kHasBitsOffset = - 8 * PROTOBUF_FIELD_OFFSET(GetHoverRequest, _impl_._has_bits_); -}; - -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 ::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_, from); - ::uint32_t cached_has_bits = _impl_._has_bits_[0]; - _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) -} -inline PROTOBUF_NDEBUG_INLINE GetHoverRequest::Impl_::Impl_( - ::google::protobuf::internal::InternalVisibility visibility, - ::google::protobuf::Arena* arena) - : _cached_size_{0} {} - -inline void GetHoverRequest::SharedCtor(::_pb::Arena* arena) { - new (&_impl_) Impl_(internal_visibility(), arena); - ::memset(reinterpret_cast(&_impl_) + - offsetof(Impl_, text_document_), - 0, - offsetof(Impl_, position_) - - offsetof(Impl_, text_document_) + - sizeof(Impl_::position_)); -} -GetHoverRequest::~GetHoverRequest() { - // @@protoc_insertion_point(destructor:io.deephaven.proto.backplane.script.grpc.GetHoverRequest) - _internal_metadata_.Delete<::google::protobuf::UnknownFieldSet>(); - SharedDtor(); -} -inline void GetHoverRequest::SharedDtor() { - ABSL_DCHECK(GetArena() == nullptr); - delete _impl_.text_document_; - delete _impl_.position_; - _impl_.~Impl_(); -} - -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_ = { - { - PROTOBUF_FIELD_OFFSET(GetHoverRequest, _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 - 2, // num_aux_entries - offsetof(decltype(_table_), 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::GetHoverRequest>(), // to_prefetch - #endif // PROTOBUF_PREFETCH_PARSE_TABLE - }, {{ - // .io.deephaven.proto.backplane.script.grpc.Position position = 2; - {::_pbi::TcParser::FastMtS1, - {18, 1, 1, PROTOBUF_FIELD_OFFSET(GetHoverRequest, _impl_.position_)}}, - // .io.deephaven.proto.backplane.script.grpc.VersionedTextDocumentIdentifier text_document = 1; - {::_pbi::TcParser::FastMtS1, - {10, 0, 0, PROTOBUF_FIELD_OFFSET(GetHoverRequest, _impl_.text_document_)}}, - }}, {{ - 65535, 65535 - }}, {{ - // .io.deephaven.proto.backplane.script.grpc.VersionedTextDocumentIdentifier text_document = 1; - {PROTOBUF_FIELD_OFFSET(GetHoverRequest, _impl_.text_document_), _Internal::kHasBitsOffset + 0, 0, - (0 | ::_fl::kFcOptional | ::_fl::kMessage | ::_fl::kTvTable)}, - // .io.deephaven.proto.backplane.script.grpc.Position position = 2; - {PROTOBUF_FIELD_OFFSET(GetHoverRequest, _impl_.position_), _Internal::kHasBitsOffset + 1, 1, - (0 | ::_fl::kFcOptional | ::_fl::kMessage | ::_fl::kTvTable)}, - }}, {{ - {::_pbi::TcParser::GetTable<::io::deephaven::proto::backplane::script::grpc::VersionedTextDocumentIdentifier>()}, - {::_pbi::TcParser::GetTable<::io::deephaven::proto::backplane::script::grpc::Position>()}, - }}, {{ - }}, -}; - -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) { - 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>(); -} - -#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; - (void) cached_has_bits; - - cached_has_bits = from._impl_._has_bits_[0]; - if (cached_has_bits & 0x00000003u) { - if (cached_has_bits & 0x00000001u) { - 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) { - 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_); -} - -void GetHoverRequest::CopyFrom(const GetHoverRequest& from) { -// @@protoc_insertion_point(class_specific_copy_from_start:io.deephaven.proto.backplane.script.grpc.GetHoverRequest) - if (&from == this) return; - Clear(); - MergeFrom(from); -} - - -void GetHoverRequest::InternalSwap(GetHoverRequest* PROTOBUF_RESTRICT other) { - using std::swap; - _internal_metadata_.InternalSwap(&other->_internal_metadata_); - swap(_impl_._has_bits_[0], other->_impl_._has_bits_[0]); - ::google::protobuf::internal::memswap< - PROTOBUF_FIELD_OFFSET(GetHoverRequest, _impl_.position_) - + sizeof(GetHoverRequest::_impl_.position_) - - PROTOBUF_FIELD_OFFSET(GetHoverRequest, _impl_.text_document_)>( - reinterpret_cast(&_impl_.text_document_), - reinterpret_cast(&other->_impl_.text_document_)); -} - -::google::protobuf::Metadata GetHoverRequest::GetMetadata() const { - return ::google::protobuf::Message::GetMetadataImpl(GetClassData()->full()); -} -// =================================================================== - -class GetHoverResponse::_Internal { - public: - using HasBits = - decltype(std::declval()._impl_._has_bits_); - static constexpr ::int32_t kHasBitsOffset = - 8 * PROTOBUF_FIELD_OFFSET(GetHoverResponse, _impl_._has_bits_); -}; - -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 ::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_, from); - ::uint32_t cached_has_bits = _impl_._has_bits_[0]; - _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) -} -inline PROTOBUF_NDEBUG_INLINE GetHoverResponse::Impl_::Impl_( - ::google::protobuf::internal::InternalVisibility visibility, - ::google::protobuf::Arena* arena) - : _cached_size_{0} {} - -inline void GetHoverResponse::SharedCtor(::_pb::Arena* arena) { - new (&_impl_) Impl_(internal_visibility(), arena); - ::memset(reinterpret_cast(&_impl_) + - offsetof(Impl_, contents_), - 0, - offsetof(Impl_, range_) - - offsetof(Impl_, contents_) + - sizeof(Impl_::range_)); -} -GetHoverResponse::~GetHoverResponse() { - // @@protoc_insertion_point(destructor:io.deephaven.proto.backplane.script.grpc.GetHoverResponse) - _internal_metadata_.Delete<::google::protobuf::UnknownFieldSet>(); - SharedDtor(); -} -inline void GetHoverResponse::SharedDtor() { - ABSL_DCHECK(GetArena() == nullptr); - delete _impl_.contents_; - delete _impl_.range_; - _impl_.~Impl_(); -} - -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_ = { - { - PROTOBUF_FIELD_OFFSET(GetHoverResponse, _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 - 2, // num_aux_entries - offsetof(decltype(_table_), 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::GetHoverResponse>(), // to_prefetch - #endif // PROTOBUF_PREFETCH_PARSE_TABLE - }, {{ - // .io.deephaven.proto.backplane.script.grpc.DocumentRange range = 2; - {::_pbi::TcParser::FastMtS1, - {18, 1, 1, PROTOBUF_FIELD_OFFSET(GetHoverResponse, _impl_.range_)}}, - // .io.deephaven.proto.backplane.script.grpc.MarkupContent contents = 1; - {::_pbi::TcParser::FastMtS1, - {10, 0, 0, PROTOBUF_FIELD_OFFSET(GetHoverResponse, _impl_.contents_)}}, - }}, {{ - 65535, 65535 - }}, {{ - // .io.deephaven.proto.backplane.script.grpc.MarkupContent contents = 1; - {PROTOBUF_FIELD_OFFSET(GetHoverResponse, _impl_.contents_), _Internal::kHasBitsOffset + 0, 0, - (0 | ::_fl::kFcOptional | ::_fl::kMessage | ::_fl::kTvTable)}, - // .io.deephaven.proto.backplane.script.grpc.DocumentRange range = 2; - {PROTOBUF_FIELD_OFFSET(GetHoverResponse, _impl_.range_), _Internal::kHasBitsOffset + 1, 1, - (0 | ::_fl::kFcOptional | ::_fl::kMessage | ::_fl::kTvTable)}, - }}, {{ - {::_pbi::TcParser::GetTable<::io::deephaven::proto::backplane::script::grpc::MarkupContent>()}, - {::_pbi::TcParser::GetTable<::io::deephaven::proto::backplane::script::grpc::DocumentRange>()}, - }}, {{ - }}, -}; - -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) { - 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>(); -} - -#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; - (void) cached_has_bits; - - cached_has_bits = from._impl_._has_bits_[0]; - if (cached_has_bits & 0x00000003u) { - if (cached_has_bits & 0x00000001u) { - 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) { - 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_); -} - -void GetHoverResponse::CopyFrom(const GetHoverResponse& from) { -// @@protoc_insertion_point(class_specific_copy_from_start:io.deephaven.proto.backplane.script.grpc.GetHoverResponse) - if (&from == this) return; - Clear(); - MergeFrom(from); -} - - -void GetHoverResponse::InternalSwap(GetHoverResponse* PROTOBUF_RESTRICT other) { - using std::swap; - _internal_metadata_.InternalSwap(&other->_internal_metadata_); - swap(_impl_._has_bits_[0], other->_impl_._has_bits_[0]); - ::google::protobuf::internal::memswap< - PROTOBUF_FIELD_OFFSET(GetHoverResponse, _impl_.range_) - + sizeof(GetHoverResponse::_impl_.range_) - - PROTOBUF_FIELD_OFFSET(GetHoverResponse, _impl_.contents_)>( - reinterpret_cast(&_impl_.contents_), - reinterpret_cast(&other->_impl_.contents_)); -} - -::google::protobuf::Metadata GetHoverResponse::GetMetadata() const { - return ::google::protobuf::Message::GetMetadataImpl(GetClassData()->full()); -} -// =================================================================== - -class GetDiagnosticRequest::_Internal { - public: - using HasBits = - decltype(std::declval()._impl_._has_bits_); - static constexpr ::int32_t kHasBitsOffset = - 8 * PROTOBUF_FIELD_OFFSET(GetDiagnosticRequest, _impl_._has_bits_); -}; - -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 ::io::deephaven::proto::backplane::script::grpc::GetDiagnosticRequest& from_msg) - : _has_bits_{from._has_bits_}, - _cached_size_{0}, - identifier_(arena, from.identifier_), - previous_result_id_(arena, from.previous_result_id_) {} - -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_, from); - ::uint32_t cached_has_bits = _impl_._has_bits_[0]; - _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) -} -inline PROTOBUF_NDEBUG_INLINE GetDiagnosticRequest::Impl_::Impl_( - ::google::protobuf::internal::InternalVisibility visibility, - ::google::protobuf::Arena* arena) - : _cached_size_{0}, - identifier_(arena), - previous_result_id_(arena) {} - -inline void GetDiagnosticRequest::SharedCtor(::_pb::Arena* arena) { - new (&_impl_) Impl_(internal_visibility(), arena); - _impl_.text_document_ = {}; -} -GetDiagnosticRequest::~GetDiagnosticRequest() { - // @@protoc_insertion_point(destructor:io.deephaven.proto.backplane.script.grpc.GetDiagnosticRequest) - _internal_metadata_.Delete<::google::protobuf::UnknownFieldSet>(); - SharedDtor(); -} -inline void GetDiagnosticRequest::SharedDtor() { - ABSL_DCHECK(GetArena() == nullptr); - _impl_.identifier_.Destroy(); - _impl_.previous_result_id_.Destroy(); - delete _impl_.text_document_; - _impl_.~Impl_(); -} - -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_ = { - { - PROTOBUF_FIELD_OFFSET(GetDiagnosticRequest, _impl_._has_bits_), - 0, // no _extensions_ - 3, 24, // max_field_number, fast_idx_mask - offsetof(decltype(_table_), field_lookup_table), - 4294967288, // skipmap - offsetof(decltype(_table_), field_entries), - 3, // num_field_entries - 1, // num_aux_entries - offsetof(decltype(_table_), 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::GetDiagnosticRequest>(), // to_prefetch - #endif // PROTOBUF_PREFETCH_PARSE_TABLE - }, {{ - {::_pbi::TcParser::MiniParse, {}}, - // .io.deephaven.proto.backplane.script.grpc.VersionedTextDocumentIdentifier text_document = 1; - {::_pbi::TcParser::FastMtS1, - {10, 2, 0, PROTOBUF_FIELD_OFFSET(GetDiagnosticRequest, _impl_.text_document_)}}, - // optional string identifier = 2; - {::_pbi::TcParser::FastUS1, - {18, 0, 0, PROTOBUF_FIELD_OFFSET(GetDiagnosticRequest, _impl_.identifier_)}}, - // optional string previous_result_id = 3; - {::_pbi::TcParser::FastUS1, - {26, 1, 0, PROTOBUF_FIELD_OFFSET(GetDiagnosticRequest, _impl_.previous_result_id_)}}, - }}, {{ - 65535, 65535 - }}, {{ - // .io.deephaven.proto.backplane.script.grpc.VersionedTextDocumentIdentifier text_document = 1; - {PROTOBUF_FIELD_OFFSET(GetDiagnosticRequest, _impl_.text_document_), _Internal::kHasBitsOffset + 2, 0, - (0 | ::_fl::kFcOptional | ::_fl::kMessage | ::_fl::kTvTable)}, - // optional string identifier = 2; - {PROTOBUF_FIELD_OFFSET(GetDiagnosticRequest, _impl_.identifier_), _Internal::kHasBitsOffset + 0, 0, - (0 | ::_fl::kFcOptional | ::_fl::kUtf8String | ::_fl::kRepAString)}, - // optional string previous_result_id = 3; - {PROTOBUF_FIELD_OFFSET(GetDiagnosticRequest, _impl_.previous_result_id_), _Internal::kHasBitsOffset + 1, 0, - (0 | ::_fl::kFcOptional | ::_fl::kUtf8String | ::_fl::kRepAString)}, - }}, {{ - {::_pbi::TcParser::GetTable<::io::deephaven::proto::backplane::script::grpc::VersionedTextDocumentIdentifier>()}, - }}, {{ - "\75\0\12\22\0\0\0\0" - "io.deephaven.proto.backplane.script.grpc.GetDiagnosticRequest" - "identifier" - "previous_result_id" - }}, -}; - -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) { - 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>(); -} - -#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; - (void) cached_has_bits; - - cached_has_bits = from._impl_._has_bits_[0]; - if (cached_has_bits & 0x00000007u) { - if (cached_has_bits & 0x00000001u) { - _this->_internal_set_identifier(from._internal_identifier()); - } - if (cached_has_bits & 0x00000002u) { - _this->_internal_set_previous_result_id(from._internal_previous_result_id()); - } - if (cached_has_bits & 0x00000004u) { - 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_); -} - -void GetDiagnosticRequest::CopyFrom(const GetDiagnosticRequest& from) { -// @@protoc_insertion_point(class_specific_copy_from_start:io.deephaven.proto.backplane.script.grpc.GetDiagnosticRequest) - if (&from == this) return; - Clear(); - MergeFrom(from); -} - - -void GetDiagnosticRequest::InternalSwap(GetDiagnosticRequest* PROTOBUF_RESTRICT other) { - using std::swap; - auto* arena = GetArena(); - ABSL_DCHECK_EQ(arena, other->GetArena()); - _internal_metadata_.InternalSwap(&other->_internal_metadata_); - swap(_impl_._has_bits_[0], other->_impl_._has_bits_[0]); - ::_pbi::ArenaStringPtr::InternalSwap(&_impl_.identifier_, &other->_impl_.identifier_, arena); - ::_pbi::ArenaStringPtr::InternalSwap(&_impl_.previous_result_id_, &other->_impl_.previous_result_id_, arena); - swap(_impl_.text_document_, other->_impl_.text_document_); -} - -::google::protobuf::Metadata GetDiagnosticRequest::GetMetadata() const { - return ::google::protobuf::Message::GetMetadataImpl(GetClassData()->full()); -} -// =================================================================== - -class GetPullDiagnosticResponse::_Internal { - public: - using HasBits = - decltype(std::declval()._impl_._has_bits_); - static constexpr ::int32_t kHasBitsOffset = - 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 ::io::deephaven::proto::backplane::script::grpc::GetPullDiagnosticResponse& from_msg) - : _has_bits_{from._has_bits_}, - _cached_size_{0}, - items_{visibility, arena, from.items_}, - kind_(arena, from.kind_), - result_id_(arena, from.result_id_) {} - -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_, from); - - // @@protoc_insertion_point(copy_constructor:io.deephaven.proto.backplane.script.grpc.GetPullDiagnosticResponse) -} -inline PROTOBUF_NDEBUG_INLINE GetPullDiagnosticResponse::Impl_::Impl_( - ::google::protobuf::internal::InternalVisibility visibility, - ::google::protobuf::Arena* arena) - : _cached_size_{0}, - items_{visibility, arena}, - kind_(arena), - result_id_(arena) {} - -inline void GetPullDiagnosticResponse::SharedCtor(::_pb::Arena* arena) { - new (&_impl_) Impl_(internal_visibility(), arena); -} -GetPullDiagnosticResponse::~GetPullDiagnosticResponse() { - // @@protoc_insertion_point(destructor:io.deephaven.proto.backplane.script.grpc.GetPullDiagnosticResponse) - _internal_metadata_.Delete<::google::protobuf::UnknownFieldSet>(); - SharedDtor(); -} -inline void GetPullDiagnosticResponse::SharedDtor() { - ABSL_DCHECK(GetArena() == nullptr); - _impl_.kind_.Destroy(); - _impl_.result_id_.Destroy(); - _impl_.~Impl_(); -} - -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_ = { - { - PROTOBUF_FIELD_OFFSET(GetPullDiagnosticResponse, _impl_._has_bits_), - 0, // no _extensions_ - 3, 24, // max_field_number, fast_idx_mask - offsetof(decltype(_table_), field_lookup_table), - 4294967288, // skipmap - offsetof(decltype(_table_), field_entries), - 3, // num_field_entries - 1, // num_aux_entries - offsetof(decltype(_table_), 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::GetPullDiagnosticResponse>(), // to_prefetch - #endif // PROTOBUF_PREFETCH_PARSE_TABLE - }, {{ - {::_pbi::TcParser::MiniParse, {}}, - // string kind = 1; - {::_pbi::TcParser::FastUS1, - {10, 63, 0, PROTOBUF_FIELD_OFFSET(GetPullDiagnosticResponse, _impl_.kind_)}}, - // optional string result_id = 2; - {::_pbi::TcParser::FastUS1, - {18, 0, 0, PROTOBUF_FIELD_OFFSET(GetPullDiagnosticResponse, _impl_.result_id_)}}, - // repeated .io.deephaven.proto.backplane.script.grpc.Diagnostic items = 3; - {::_pbi::TcParser::FastMtR1, - {26, 63, 0, PROTOBUF_FIELD_OFFSET(GetPullDiagnosticResponse, _impl_.items_)}}, - }}, {{ - 65535, 65535 - }}, {{ - // string kind = 1; - {PROTOBUF_FIELD_OFFSET(GetPullDiagnosticResponse, _impl_.kind_), -1, 0, - (0 | ::_fl::kFcSingular | ::_fl::kUtf8String | ::_fl::kRepAString)}, - // optional string result_id = 2; - {PROTOBUF_FIELD_OFFSET(GetPullDiagnosticResponse, _impl_.result_id_), _Internal::kHasBitsOffset + 0, 0, - (0 | ::_fl::kFcOptional | ::_fl::kUtf8String | ::_fl::kRepAString)}, - // repeated .io.deephaven.proto.backplane.script.grpc.Diagnostic items = 3; - {PROTOBUF_FIELD_OFFSET(GetPullDiagnosticResponse, _impl_.items_), -1, 0, - (0 | ::_fl::kFcRepeated | ::_fl::kMessage | ::_fl::kTvTable)}, - }}, {{ - {::_pbi::TcParser::GetTable<::io::deephaven::proto::backplane::script::grpc::Diagnostic>()}, - }}, {{ - "\102\4\11\0\0\0\0\0" - "io.deephaven.proto.backplane.script.grpc.GetPullDiagnosticResponse" - "kind" - "result_id" - }}, -}; - -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; - - _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>(); -} - -#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) - ABSL_DCHECK_NE(&from, _this); - ::uint32_t cached_has_bits = 0; - (void) cached_has_bits; - - _this->_internal_mutable_items()->MergeFrom( - from._internal_items()); - if (!from._internal_kind().empty()) { - _this->_internal_set_kind(from._internal_kind()); - } - 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_); -} - -void GetPullDiagnosticResponse::CopyFrom(const GetPullDiagnosticResponse& from) { -// @@protoc_insertion_point(class_specific_copy_from_start:io.deephaven.proto.backplane.script.grpc.GetPullDiagnosticResponse) - if (&from == this) return; - Clear(); - MergeFrom(from); -} - - -void GetPullDiagnosticResponse::InternalSwap(GetPullDiagnosticResponse* PROTOBUF_RESTRICT other) { - using std::swap; - auto* arena = GetArena(); - ABSL_DCHECK_EQ(arena, other->GetArena()); - _internal_metadata_.InternalSwap(&other->_internal_metadata_); - swap(_impl_._has_bits_[0], other->_impl_._has_bits_[0]); - _impl_.items_.InternalSwap(&other->_impl_.items_); - ::_pbi::ArenaStringPtr::InternalSwap(&_impl_.kind_, &other->_impl_.kind_, arena); - ::_pbi::ArenaStringPtr::InternalSwap(&_impl_.result_id_, &other->_impl_.result_id_, arena); -} - -::google::protobuf::Metadata GetPullDiagnosticResponse::GetMetadata() const { - return ::google::protobuf::Message::GetMetadataImpl(GetClassData()->full()); -} -// =================================================================== - -class GetPublishDiagnosticResponse::_Internal { - public: - using HasBits = - decltype(std::declval()._impl_._has_bits_); - static constexpr ::int32_t kHasBitsOffset = - 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 ::io::deephaven::proto::backplane::script::grpc::GetPublishDiagnosticResponse& from_msg) - : _has_bits_{from._has_bits_}, - _cached_size_{0}, - diagnostics_{visibility, arena, from.diagnostics_}, - uri_(arena, from.uri_) {} - -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_, from); - _impl_.version_ = from._impl_.version_; - - // @@protoc_insertion_point(copy_constructor:io.deephaven.proto.backplane.script.grpc.GetPublishDiagnosticResponse) -} -inline PROTOBUF_NDEBUG_INLINE GetPublishDiagnosticResponse::Impl_::Impl_( - ::google::protobuf::internal::InternalVisibility visibility, - ::google::protobuf::Arena* arena) - : _cached_size_{0}, - diagnostics_{visibility, arena}, - uri_(arena) {} - -inline void GetPublishDiagnosticResponse::SharedCtor(::_pb::Arena* arena) { - new (&_impl_) Impl_(internal_visibility(), arena); - _impl_.version_ = {}; -} -GetPublishDiagnosticResponse::~GetPublishDiagnosticResponse() { - // @@protoc_insertion_point(destructor:io.deephaven.proto.backplane.script.grpc.GetPublishDiagnosticResponse) - _internal_metadata_.Delete<::google::protobuf::UnknownFieldSet>(); - SharedDtor(); -} -inline void GetPublishDiagnosticResponse::SharedDtor() { - ABSL_DCHECK(GetArena() == nullptr); - _impl_.uri_.Destroy(); - _impl_.~Impl_(); -} - -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_ = { - { - PROTOBUF_FIELD_OFFSET(GetPublishDiagnosticResponse, _impl_._has_bits_), - 0, // no _extensions_ - 3, 24, // max_field_number, fast_idx_mask - offsetof(decltype(_table_), field_lookup_table), - 4294967288, // skipmap - offsetof(decltype(_table_), field_entries), - 3, // num_field_entries - 1, // num_aux_entries - offsetof(decltype(_table_), 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::GetPublishDiagnosticResponse>(), // to_prefetch - #endif // PROTOBUF_PREFETCH_PARSE_TABLE - }, {{ - {::_pbi::TcParser::MiniParse, {}}, - // string uri = 1; - {::_pbi::TcParser::FastUS1, - {10, 63, 0, PROTOBUF_FIELD_OFFSET(GetPublishDiagnosticResponse, _impl_.uri_)}}, - // optional int32 version = 2; - {::_pbi::TcParser::SingularVarintNoZag1<::uint32_t, offsetof(GetPublishDiagnosticResponse, _impl_.version_), 0>(), - {16, 0, 0, PROTOBUF_FIELD_OFFSET(GetPublishDiagnosticResponse, _impl_.version_)}}, - // repeated .io.deephaven.proto.backplane.script.grpc.Diagnostic diagnostics = 3; - {::_pbi::TcParser::FastMtR1, - {26, 63, 0, PROTOBUF_FIELD_OFFSET(GetPublishDiagnosticResponse, _impl_.diagnostics_)}}, - }}, {{ - 65535, 65535 - }}, {{ - // string uri = 1; - {PROTOBUF_FIELD_OFFSET(GetPublishDiagnosticResponse, _impl_.uri_), -1, 0, - (0 | ::_fl::kFcSingular | ::_fl::kUtf8String | ::_fl::kRepAString)}, - // optional int32 version = 2; - {PROTOBUF_FIELD_OFFSET(GetPublishDiagnosticResponse, _impl_.version_), _Internal::kHasBitsOffset + 0, 0, - (0 | ::_fl::kFcOptional | ::_fl::kInt32)}, - // repeated .io.deephaven.proto.backplane.script.grpc.Diagnostic diagnostics = 3; - {PROTOBUF_FIELD_OFFSET(GetPublishDiagnosticResponse, _impl_.diagnostics_), -1, 0, - (0 | ::_fl::kFcRepeated | ::_fl::kMessage | ::_fl::kTvTable)}, - }}, {{ - {::_pbi::TcParser::GetTable<::io::deephaven::proto::backplane::script::grpc::Diagnostic>()}, - }}, {{ - "\105\3\0\0\0\0\0\0" - "io.deephaven.proto.backplane.script.grpc.GetPublishDiagnosticResponse" - "uri" - }}, -}; - -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; - - _impl_.diagnostics_.Clear(); - _impl_.uri_.ClearToEmpty(); - _impl_.version_ = 0; - _impl_._has_bits_.Clear(); - _internal_metadata_.Clear<::google::protobuf::UnknownFieldSet>(); -} - -#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) - ABSL_DCHECK_NE(&from, _this); - ::uint32_t cached_has_bits = 0; - (void) cached_has_bits; - - _this->_internal_mutable_diagnostics()->MergeFrom( - from._internal_diagnostics()); - if (!from._internal_uri().empty()) { - _this->_internal_set_uri(from._internal_uri()); - } - 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_); -} - -void GetPublishDiagnosticResponse::CopyFrom(const GetPublishDiagnosticResponse& from) { -// @@protoc_insertion_point(class_specific_copy_from_start:io.deephaven.proto.backplane.script.grpc.GetPublishDiagnosticResponse) - if (&from == this) return; - Clear(); - MergeFrom(from); -} - - -void GetPublishDiagnosticResponse::InternalSwap(GetPublishDiagnosticResponse* PROTOBUF_RESTRICT other) { - using std::swap; - auto* arena = GetArena(); - ABSL_DCHECK_EQ(arena, other->GetArena()); - _internal_metadata_.InternalSwap(&other->_internal_metadata_); - swap(_impl_._has_bits_[0], other->_impl_._has_bits_[0]); - _impl_.diagnostics_.InternalSwap(&other->_impl_.diagnostics_); - ::_pbi::ArenaStringPtr::InternalSwap(&_impl_.uri_, &other->_impl_.uri_, arena); - swap(_impl_.version_, other->_impl_.version_); -} - -::google::protobuf::Metadata GetPublishDiagnosticResponse::GetMetadata() const { - return ::google::protobuf::Message::GetMetadataImpl(GetClassData()->full()); -} -// =================================================================== - -class Diagnostic_CodeDescription::_Internal { - public: -}; - -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 ::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_, from); - - // @@protoc_insertion_point(copy_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) - : href_(arena), - _cached_size_{0} {} - -inline void Diagnostic_CodeDescription::SharedCtor(::_pb::Arena* arena) { - new (&_impl_) Impl_(internal_visibility(), arena); -} -Diagnostic_CodeDescription::~Diagnostic_CodeDescription() { - // @@protoc_insertion_point(destructor:io.deephaven.proto.backplane.script.grpc.Diagnostic.CodeDescription) - _internal_metadata_.Delete<::google::protobuf::UnknownFieldSet>(); - SharedDtor(); -} -inline void Diagnostic_CodeDescription::SharedDtor() { - ABSL_DCHECK(GetArena() == nullptr); - _impl_.href_.Destroy(); - _impl_.~Impl_(); -} - -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_ = { - { - 0, // no _has_bits_ - 0, // no _extensions_ - 1, 0, // max_field_number, fast_idx_mask - offsetof(decltype(_table_), field_lookup_table), - 4294967294, // skipmap - offsetof(decltype(_table_), field_entries), - 1, // 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::Diagnostic_CodeDescription>(), // to_prefetch - #endif // PROTOBUF_PREFETCH_PARSE_TABLE - }, {{ - // string href = 1; - {::_pbi::TcParser::FastUS1, - {10, 63, 0, PROTOBUF_FIELD_OFFSET(Diagnostic_CodeDescription, _impl_.href_)}}, - }}, {{ - 65535, 65535 - }}, {{ - // string href = 1; - {PROTOBUF_FIELD_OFFSET(Diagnostic_CodeDescription, _impl_.href_), 0, 0, - (0 | ::_fl::kFcSingular | ::_fl::kUtf8String | ::_fl::kRepAString)}, - }}, - // no aux_entries - {{ - "\103\4\0\0\0\0\0\0" - "io.deephaven.proto.backplane.script.grpc.Diagnostic.CodeDescription" - "href" - }}, -}; - -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; - - _impl_.href_.ClearToEmpty(); - _internal_metadata_.Clear<::google::protobuf::UnknownFieldSet>(); -} - -#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) - ABSL_DCHECK_NE(&from, _this); - ::uint32_t cached_has_bits = 0; - (void) cached_has_bits; - - if (!from._internal_href().empty()) { - _this->_internal_set_href(from._internal_href()); - } - _this->_internal_metadata_.MergeFrom<::google::protobuf::UnknownFieldSet>(from._internal_metadata_); -} - -void Diagnostic_CodeDescription::CopyFrom(const Diagnostic_CodeDescription& from) { -// @@protoc_insertion_point(class_specific_copy_from_start:io.deephaven.proto.backplane.script.grpc.Diagnostic.CodeDescription) - if (&from == this) return; - Clear(); - MergeFrom(from); -} - - -void Diagnostic_CodeDescription::InternalSwap(Diagnostic_CodeDescription* PROTOBUF_RESTRICT other) { - using std::swap; - auto* arena = GetArena(); - ABSL_DCHECK_EQ(arena, other->GetArena()); - _internal_metadata_.InternalSwap(&other->_internal_metadata_); - ::_pbi::ArenaStringPtr::InternalSwap(&_impl_.href_, &other->_impl_.href_, arena); -} - -::google::protobuf::Metadata Diagnostic_CodeDescription::GetMetadata() const { - return ::google::protobuf::Message::GetMetadataImpl(GetClassData()->full()); -} -// =================================================================== - -class Diagnostic::_Internal { - public: - using HasBits = - decltype(std::declval()._impl_._has_bits_); - static constexpr ::int32_t kHasBitsOffset = - 8 * PROTOBUF_FIELD_OFFSET(Diagnostic, _impl_._has_bits_); -}; - -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 ::io::deephaven::proto::backplane::script::grpc::Diagnostic& from_msg) - : _has_bits_{from._has_bits_}, - _cached_size_{0}, - tags_{visibility, arena, from.tags_}, - _tags_cached_byte_size_{0}, - code_(arena, from.code_), - source_(arena, from.source_), - message_(arena, from.message_), - data_(arena, from.data_) {} - -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_, from); - ::uint32_t cached_has_bits = _impl_._has_bits_[0]; - _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) -} -inline PROTOBUF_NDEBUG_INLINE Diagnostic::Impl_::Impl_( - ::google::protobuf::internal::InternalVisibility visibility, - ::google::protobuf::Arena* arena) - : _cached_size_{0}, - tags_{visibility, arena}, - _tags_cached_byte_size_{0}, - code_(arena), - source_(arena), - message_(arena), - data_(arena) {} - -inline void Diagnostic::SharedCtor(::_pb::Arena* arena) { - new (&_impl_) Impl_(internal_visibility(), arena); - ::memset(reinterpret_cast(&_impl_) + - offsetof(Impl_, range_), - 0, - offsetof(Impl_, severity_) - - offsetof(Impl_, range_) + - sizeof(Impl_::severity_)); -} -Diagnostic::~Diagnostic() { - // @@protoc_insertion_point(destructor:io.deephaven.proto.backplane.script.grpc.Diagnostic) - _internal_metadata_.Delete<::google::protobuf::UnknownFieldSet>(); - SharedDtor(); -} -inline void Diagnostic::SharedDtor() { - ABSL_DCHECK(GetArena() == nullptr); - _impl_.code_.Destroy(); - _impl_.source_.Destroy(); - _impl_.message_.Destroy(); - _impl_.data_.Destroy(); - delete _impl_.range_; - delete _impl_.code_description_; - _impl_.~Impl_(); -} - -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_ = { - { - PROTOBUF_FIELD_OFFSET(Diagnostic, _impl_._has_bits_), - 0, // no _extensions_ - 9, 120, // max_field_number, fast_idx_mask - offsetof(decltype(_table_), field_lookup_table), - 4294966912, // skipmap - offsetof(decltype(_table_), field_entries), - 8, // num_field_entries - 2, // num_aux_entries - offsetof(decltype(_table_), 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::Diagnostic>(), // to_prefetch - #endif // PROTOBUF_PREFETCH_PARSE_TABLE - }, {{ - {::_pbi::TcParser::MiniParse, {}}, - // .io.deephaven.proto.backplane.script.grpc.DocumentRange range = 1; - {::_pbi::TcParser::FastMtS1, - {10, 3, 0, PROTOBUF_FIELD_OFFSET(Diagnostic, _impl_.range_)}}, - // .io.deephaven.proto.backplane.script.grpc.Diagnostic.DiagnosticSeverity severity = 2; - {::_pbi::TcParser::SingularVarintNoZag1<::uint32_t, offsetof(Diagnostic, _impl_.severity_), 63>(), - {16, 63, 0, PROTOBUF_FIELD_OFFSET(Diagnostic, _impl_.severity_)}}, - // optional string code = 3; - {::_pbi::TcParser::FastUS1, - {26, 0, 0, PROTOBUF_FIELD_OFFSET(Diagnostic, _impl_.code_)}}, - // optional .io.deephaven.proto.backplane.script.grpc.Diagnostic.CodeDescription code_description = 4; - {::_pbi::TcParser::FastMtS1, - {34, 4, 1, PROTOBUF_FIELD_OFFSET(Diagnostic, _impl_.code_description_)}}, - // optional string source = 5; - {::_pbi::TcParser::FastUS1, - {42, 1, 0, PROTOBUF_FIELD_OFFSET(Diagnostic, _impl_.source_)}}, - // string message = 6; - {::_pbi::TcParser::FastUS1, - {50, 63, 0, PROTOBUF_FIELD_OFFSET(Diagnostic, _impl_.message_)}}, - // repeated .io.deephaven.proto.backplane.script.grpc.Diagnostic.DiagnosticTag tags = 7; - {::_pbi::TcParser::FastV32P1, - {58, 63, 0, PROTOBUF_FIELD_OFFSET(Diagnostic, _impl_.tags_)}}, - {::_pbi::TcParser::MiniParse, {}}, - // optional bytes data = 9; - {::_pbi::TcParser::FastBS1, - {74, 2, 0, PROTOBUF_FIELD_OFFSET(Diagnostic, _impl_.data_)}}, - {::_pbi::TcParser::MiniParse, {}}, - {::_pbi::TcParser::MiniParse, {}}, - {::_pbi::TcParser::MiniParse, {}}, - {::_pbi::TcParser::MiniParse, {}}, - {::_pbi::TcParser::MiniParse, {}}, - {::_pbi::TcParser::MiniParse, {}}, - }}, {{ - 65535, 65535 - }}, {{ - // .io.deephaven.proto.backplane.script.grpc.DocumentRange range = 1; - {PROTOBUF_FIELD_OFFSET(Diagnostic, _impl_.range_), _Internal::kHasBitsOffset + 3, 0, - (0 | ::_fl::kFcOptional | ::_fl::kMessage | ::_fl::kTvTable)}, - // .io.deephaven.proto.backplane.script.grpc.Diagnostic.DiagnosticSeverity severity = 2; - {PROTOBUF_FIELD_OFFSET(Diagnostic, _impl_.severity_), -1, 0, - (0 | ::_fl::kFcSingular | ::_fl::kOpenEnum)}, - // optional string code = 3; - {PROTOBUF_FIELD_OFFSET(Diagnostic, _impl_.code_), _Internal::kHasBitsOffset + 0, 0, - (0 | ::_fl::kFcOptional | ::_fl::kUtf8String | ::_fl::kRepAString)}, - // optional .io.deephaven.proto.backplane.script.grpc.Diagnostic.CodeDescription code_description = 4; - {PROTOBUF_FIELD_OFFSET(Diagnostic, _impl_.code_description_), _Internal::kHasBitsOffset + 4, 1, - (0 | ::_fl::kFcOptional | ::_fl::kMessage | ::_fl::kTvTable)}, - // optional string source = 5; - {PROTOBUF_FIELD_OFFSET(Diagnostic, _impl_.source_), _Internal::kHasBitsOffset + 1, 0, - (0 | ::_fl::kFcOptional | ::_fl::kUtf8String | ::_fl::kRepAString)}, - // string message = 6; - {PROTOBUF_FIELD_OFFSET(Diagnostic, _impl_.message_), -1, 0, - (0 | ::_fl::kFcSingular | ::_fl::kUtf8String | ::_fl::kRepAString)}, - // repeated .io.deephaven.proto.backplane.script.grpc.Diagnostic.DiagnosticTag tags = 7; - {PROTOBUF_FIELD_OFFSET(Diagnostic, _impl_.tags_), -1, 0, - (0 | ::_fl::kFcRepeated | ::_fl::kPackedOpenEnum)}, - // optional bytes data = 9; - {PROTOBUF_FIELD_OFFSET(Diagnostic, _impl_.data_), _Internal::kHasBitsOffset + 2, 0, - (0 | ::_fl::kFcOptional | ::_fl::kBytes | ::_fl::kRepAString)}, - }}, {{ - {::_pbi::TcParser::GetTable<::io::deephaven::proto::backplane::script::grpc::DocumentRange>()}, - {::_pbi::TcParser::GetTable<::io::deephaven::proto::backplane::script::grpc::Diagnostic_CodeDescription>()}, - }}, {{ - "\63\0\0\4\0\6\7\0\0\0\0\0\0\0\0\0" - "io.deephaven.proto.backplane.script.grpc.Diagnostic" - "code" - "source" - "message" - }}, -}; - -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; - // 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>(); -} - -#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; - (void) cached_has_bits; - - _this->_internal_mutable_tags()->MergeFrom(from._internal_tags()); - cached_has_bits = from._impl_._has_bits_[0]; - if (cached_has_bits & 0x00000003u) { - if (cached_has_bits & 0x00000001u) { - _this->_internal_set_code(from._internal_code()); - } - if (cached_has_bits & 0x00000002u) { - _this->_internal_set_source(from._internal_source()); - } - } - if (!from._internal_message().empty()) { - _this->_internal_set_message(from._internal_message()); - } - if (cached_has_bits & 0x0000001cu) { - if (cached_has_bits & 0x00000004u) { - _this->_internal_set_data(from._internal_data()); - } - if (cached_has_bits & 0x00000008u) { - 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) { - 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->_impl_.severity_ = from._impl_.severity_; - } - _this->_impl_._has_bits_[0] |= cached_has_bits; - _this->_internal_metadata_.MergeFrom<::google::protobuf::UnknownFieldSet>(from._internal_metadata_); -} - -void Diagnostic::CopyFrom(const Diagnostic& from) { -// @@protoc_insertion_point(class_specific_copy_from_start:io.deephaven.proto.backplane.script.grpc.Diagnostic) - if (&from == this) return; - Clear(); - MergeFrom(from); -} - - -void Diagnostic::InternalSwap(Diagnostic* PROTOBUF_RESTRICT other) { - using std::swap; - auto* arena = GetArena(); - ABSL_DCHECK_EQ(arena, other->GetArena()); - _internal_metadata_.InternalSwap(&other->_internal_metadata_); - swap(_impl_._has_bits_[0], other->_impl_._has_bits_[0]); - _impl_.tags_.InternalSwap(&other->_impl_.tags_); - ::_pbi::ArenaStringPtr::InternalSwap(&_impl_.code_, &other->_impl_.code_, arena); - ::_pbi::ArenaStringPtr::InternalSwap(&_impl_.source_, &other->_impl_.source_, arena); - ::_pbi::ArenaStringPtr::InternalSwap(&_impl_.message_, &other->_impl_.message_, arena); - ::_pbi::ArenaStringPtr::InternalSwap(&_impl_.data_, &other->_impl_.data_, arena); - ::google::protobuf::internal::memswap< - PROTOBUF_FIELD_OFFSET(Diagnostic, _impl_.severity_) - + sizeof(Diagnostic::_impl_.severity_) - - PROTOBUF_FIELD_OFFSET(Diagnostic, _impl_.range_)>( - reinterpret_cast(&_impl_.range_), - reinterpret_cast(&other->_impl_.range_)); -} - -::google::protobuf::Metadata Diagnostic::GetMetadata() const { - return ::google::protobuf::Message::GetMetadataImpl(GetClassData()->full()); -} -// =================================================================== - -class FigureDescriptor_ChartDescriptor::_Internal { - public: - using HasBits = - decltype(std::declval()._impl_._has_bits_); - static constexpr ::int32_t kHasBitsOffset = - 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 ::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_ChartDescriptor& from_msg) - : _has_bits_{from._has_bits_}, - _cached_size_{0}, - series_{visibility, arena, from.series_}, - multi_series_{visibility, arena, from.multi_series_}, - axes_{visibility, arena, from.axes_}, - title_(arena, from.title_), - title_font_(arena, from.title_font_), - title_color_(arena, from.title_color_), - legend_font_(arena, from.legend_font_), - legend_color_(arena, from.legend_color_) {} - -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_, from); - ::memcpy(reinterpret_cast(&_impl_) + - offsetof(Impl_, colspan_), - reinterpret_cast(&from._impl_) + - offsetof(Impl_, colspan_), - offsetof(Impl_, row_) - - offsetof(Impl_, colspan_) + - sizeof(Impl_::row_)); - - // @@protoc_insertion_point(copy_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) - : _cached_size_{0}, - series_{visibility, arena}, - multi_series_{visibility, arena}, - axes_{visibility, arena}, - title_(arena), - title_font_(arena), - title_color_(arena), - legend_font_(arena), - legend_color_(arena) {} - -inline void FigureDescriptor_ChartDescriptor::SharedCtor(::_pb::Arena* arena) { - new (&_impl_) Impl_(internal_visibility(), arena); - ::memset(reinterpret_cast(&_impl_) + - offsetof(Impl_, colspan_), - 0, - offsetof(Impl_, row_) - - offsetof(Impl_, colspan_) + - sizeof(Impl_::row_)); -} -FigureDescriptor_ChartDescriptor::~FigureDescriptor_ChartDescriptor() { - // @@protoc_insertion_point(destructor:io.deephaven.proto.backplane.script.grpc.FigureDescriptor.ChartDescriptor) - _internal_metadata_.Delete<::google::protobuf::UnknownFieldSet>(); - SharedDtor(); -} -inline void FigureDescriptor_ChartDescriptor::SharedDtor() { - ABSL_DCHECK(GetArena() == nullptr); - _impl_.title_.Destroy(); - _impl_.title_font_.Destroy(); - _impl_.title_color_.Destroy(); - _impl_.legend_font_.Destroy(); - _impl_.legend_color_.Destroy(); - _impl_.~Impl_(); -} - -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_ = { - { - PROTOBUF_FIELD_OFFSET(FigureDescriptor_ChartDescriptor, _impl_._has_bits_), - 0, // no _extensions_ - 15, 120, // max_field_number, fast_idx_mask - offsetof(decltype(_table_), field_lookup_table), - 4294934528, // skipmap - offsetof(decltype(_table_), field_entries), - 15, // num_field_entries - 3, // num_aux_entries - offsetof(decltype(_table_), 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::FigureDescriptor_ChartDescriptor>(), // to_prefetch - #endif // PROTOBUF_PREFETCH_PARSE_TABLE - }, {{ - {::_pbi::TcParser::MiniParse, {}}, - // int32 colspan = 1; - {::_pbi::TcParser::SingularVarintNoZag1<::uint32_t, offsetof(FigureDescriptor_ChartDescriptor, _impl_.colspan_), 63>(), - {8, 63, 0, PROTOBUF_FIELD_OFFSET(FigureDescriptor_ChartDescriptor, _impl_.colspan_)}}, - // int32 rowspan = 2; - {::_pbi::TcParser::SingularVarintNoZag1<::uint32_t, offsetof(FigureDescriptor_ChartDescriptor, _impl_.rowspan_), 63>(), - {16, 63, 0, PROTOBUF_FIELD_OFFSET(FigureDescriptor_ChartDescriptor, _impl_.rowspan_)}}, - // repeated .io.deephaven.proto.backplane.script.grpc.FigureDescriptor.SeriesDescriptor series = 3; - {::_pbi::TcParser::FastMtR1, - {26, 63, 0, PROTOBUF_FIELD_OFFSET(FigureDescriptor_ChartDescriptor, _impl_.series_)}}, - // repeated .io.deephaven.proto.backplane.script.grpc.FigureDescriptor.MultiSeriesDescriptor multi_series = 4; - {::_pbi::TcParser::FastMtR1, - {34, 63, 1, PROTOBUF_FIELD_OFFSET(FigureDescriptor_ChartDescriptor, _impl_.multi_series_)}}, - // repeated .io.deephaven.proto.backplane.script.grpc.FigureDescriptor.AxisDescriptor axes = 5; - {::_pbi::TcParser::FastMtR1, - {42, 63, 2, PROTOBUF_FIELD_OFFSET(FigureDescriptor_ChartDescriptor, _impl_.axes_)}}, - // .io.deephaven.proto.backplane.script.grpc.FigureDescriptor.ChartDescriptor.ChartType chart_type = 6; - {::_pbi::TcParser::SingularVarintNoZag1<::uint32_t, offsetof(FigureDescriptor_ChartDescriptor, _impl_.chart_type_), 63>(), - {48, 63, 0, PROTOBUF_FIELD_OFFSET(FigureDescriptor_ChartDescriptor, _impl_.chart_type_)}}, - // optional string title = 7; - {::_pbi::TcParser::FastUS1, - {58, 0, 0, PROTOBUF_FIELD_OFFSET(FigureDescriptor_ChartDescriptor, _impl_.title_)}}, - // string title_font = 8; - {::_pbi::TcParser::FastUS1, - {66, 63, 0, PROTOBUF_FIELD_OFFSET(FigureDescriptor_ChartDescriptor, _impl_.title_font_)}}, - // string title_color = 9; - {::_pbi::TcParser::FastUS1, - {74, 63, 0, PROTOBUF_FIELD_OFFSET(FigureDescriptor_ChartDescriptor, _impl_.title_color_)}}, - // bool show_legend = 10; - {::_pbi::TcParser::SingularVarintNoZag1(), - {80, 63, 0, PROTOBUF_FIELD_OFFSET(FigureDescriptor_ChartDescriptor, _impl_.show_legend_)}}, - // string legend_font = 11; - {::_pbi::TcParser::FastUS1, - {90, 63, 0, PROTOBUF_FIELD_OFFSET(FigureDescriptor_ChartDescriptor, _impl_.legend_font_)}}, - // string legend_color = 12; - {::_pbi::TcParser::FastUS1, - {98, 63, 0, PROTOBUF_FIELD_OFFSET(FigureDescriptor_ChartDescriptor, _impl_.legend_color_)}}, - // bool is3d = 13; - {::_pbi::TcParser::SingularVarintNoZag1(), - {104, 63, 0, PROTOBUF_FIELD_OFFSET(FigureDescriptor_ChartDescriptor, _impl_.is3d_)}}, - // int32 column = 14; - {::_pbi::TcParser::SingularVarintNoZag1<::uint32_t, offsetof(FigureDescriptor_ChartDescriptor, _impl_.column_), 63>(), - {112, 63, 0, PROTOBUF_FIELD_OFFSET(FigureDescriptor_ChartDescriptor, _impl_.column_)}}, - // int32 row = 15; - {::_pbi::TcParser::SingularVarintNoZag1<::uint32_t, offsetof(FigureDescriptor_ChartDescriptor, _impl_.row_), 63>(), - {120, 63, 0, PROTOBUF_FIELD_OFFSET(FigureDescriptor_ChartDescriptor, _impl_.row_)}}, - }}, {{ - 65535, 65535 - }}, {{ - // int32 colspan = 1; - {PROTOBUF_FIELD_OFFSET(FigureDescriptor_ChartDescriptor, _impl_.colspan_), -1, 0, - (0 | ::_fl::kFcSingular | ::_fl::kInt32)}, - // int32 rowspan = 2; - {PROTOBUF_FIELD_OFFSET(FigureDescriptor_ChartDescriptor, _impl_.rowspan_), -1, 0, - (0 | ::_fl::kFcSingular | ::_fl::kInt32)}, - // repeated .io.deephaven.proto.backplane.script.grpc.FigureDescriptor.SeriesDescriptor series = 3; - {PROTOBUF_FIELD_OFFSET(FigureDescriptor_ChartDescriptor, _impl_.series_), -1, 0, - (0 | ::_fl::kFcRepeated | ::_fl::kMessage | ::_fl::kTvTable)}, - // repeated .io.deephaven.proto.backplane.script.grpc.FigureDescriptor.MultiSeriesDescriptor multi_series = 4; - {PROTOBUF_FIELD_OFFSET(FigureDescriptor_ChartDescriptor, _impl_.multi_series_), -1, 1, - (0 | ::_fl::kFcRepeated | ::_fl::kMessage | ::_fl::kTvTable)}, - // repeated .io.deephaven.proto.backplane.script.grpc.FigureDescriptor.AxisDescriptor axes = 5; - {PROTOBUF_FIELD_OFFSET(FigureDescriptor_ChartDescriptor, _impl_.axes_), -1, 2, - (0 | ::_fl::kFcRepeated | ::_fl::kMessage | ::_fl::kTvTable)}, - // .io.deephaven.proto.backplane.script.grpc.FigureDescriptor.ChartDescriptor.ChartType chart_type = 6; - {PROTOBUF_FIELD_OFFSET(FigureDescriptor_ChartDescriptor, _impl_.chart_type_), -1, 0, - (0 | ::_fl::kFcSingular | ::_fl::kOpenEnum)}, - // optional string title = 7; - {PROTOBUF_FIELD_OFFSET(FigureDescriptor_ChartDescriptor, _impl_.title_), _Internal::kHasBitsOffset + 0, 0, - (0 | ::_fl::kFcOptional | ::_fl::kUtf8String | ::_fl::kRepAString)}, - // string title_font = 8; - {PROTOBUF_FIELD_OFFSET(FigureDescriptor_ChartDescriptor, _impl_.title_font_), -1, 0, - (0 | ::_fl::kFcSingular | ::_fl::kUtf8String | ::_fl::kRepAString)}, - // string title_color = 9; - {PROTOBUF_FIELD_OFFSET(FigureDescriptor_ChartDescriptor, _impl_.title_color_), -1, 0, - (0 | ::_fl::kFcSingular | ::_fl::kUtf8String | ::_fl::kRepAString)}, - // bool show_legend = 10; - {PROTOBUF_FIELD_OFFSET(FigureDescriptor_ChartDescriptor, _impl_.show_legend_), -1, 0, - (0 | ::_fl::kFcSingular | ::_fl::kBool)}, - // string legend_font = 11; - {PROTOBUF_FIELD_OFFSET(FigureDescriptor_ChartDescriptor, _impl_.legend_font_), -1, 0, - (0 | ::_fl::kFcSingular | ::_fl::kUtf8String | ::_fl::kRepAString)}, - // string legend_color = 12; - {PROTOBUF_FIELD_OFFSET(FigureDescriptor_ChartDescriptor, _impl_.legend_color_), -1, 0, - (0 | ::_fl::kFcSingular | ::_fl::kUtf8String | ::_fl::kRepAString)}, - // bool is3d = 13; - {PROTOBUF_FIELD_OFFSET(FigureDescriptor_ChartDescriptor, _impl_.is3d_), -1, 0, - (0 | ::_fl::kFcSingular | ::_fl::kBool)}, - // int32 column = 14; - {PROTOBUF_FIELD_OFFSET(FigureDescriptor_ChartDescriptor, _impl_.column_), -1, 0, - (0 | ::_fl::kFcSingular | ::_fl::kInt32)}, - // int32 row = 15; - {PROTOBUF_FIELD_OFFSET(FigureDescriptor_ChartDescriptor, _impl_.row_), -1, 0, - (0 | ::_fl::kFcSingular | ::_fl::kInt32)}, - }}, {{ - {::_pbi::TcParser::GetTable<::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_SeriesDescriptor>()}, - {::_pbi::TcParser::GetTable<::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_MultiSeriesDescriptor>()}, - {::_pbi::TcParser::GetTable<::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_AxisDescriptor>()}, - }}, {{ - "\111\0\0\0\0\0\0\5\12\13\0\13\14\0\0\0" - "io.deephaven.proto.backplane.script.grpc.FigureDescriptor.ChartDescriptor" - "title" - "title_font" - "title_color" - "legend_font" - "legend_color" - }}, -}; - -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; - - _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>(); -} - -#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) - ABSL_DCHECK_NE(&from, _this); - ::uint32_t cached_has_bits = 0; - (void) cached_has_bits; - - _this->_internal_mutable_series()->MergeFrom( - from._internal_series()); - _this->_internal_mutable_multi_series()->MergeFrom( - from._internal_multi_series()); - _this->_internal_mutable_axes()->MergeFrom( - from._internal_axes()); - 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()) { - _this->_internal_set_title_font(from._internal_title_font()); - } - if (!from._internal_title_color().empty()) { - _this->_internal_set_title_color(from._internal_title_color()); - } - if (!from._internal_legend_font().empty()) { - _this->_internal_set_legend_font(from._internal_legend_font()); - } - if (!from._internal_legend_color().empty()) { - _this->_internal_set_legend_color(from._internal_legend_color()); - } - if (from._internal_colspan() != 0) { - _this->_impl_.colspan_ = from._impl_.colspan_; - } - if (from._internal_rowspan() != 0) { - _this->_impl_.rowspan_ = from._impl_.rowspan_; - } - if (from._internal_chart_type() != 0) { - _this->_impl_.chart_type_ = from._impl_.chart_type_; - } - if (from._internal_show_legend() != 0) { - _this->_impl_.show_legend_ = from._impl_.show_legend_; - } - if (from._internal_is3d() != 0) { - _this->_impl_.is3d_ = from._impl_.is3d_; - } - if (from._internal_column() != 0) { - _this->_impl_.column_ = from._impl_.column_; - } - if (from._internal_row() != 0) { - _this->_impl_.row_ = from._impl_.row_; - } - _this->_impl_._has_bits_[0] |= cached_has_bits; - _this->_internal_metadata_.MergeFrom<::google::protobuf::UnknownFieldSet>(from._internal_metadata_); -} - -void FigureDescriptor_ChartDescriptor::CopyFrom(const FigureDescriptor_ChartDescriptor& from) { -// @@protoc_insertion_point(class_specific_copy_from_start:io.deephaven.proto.backplane.script.grpc.FigureDescriptor.ChartDescriptor) - if (&from == this) return; - Clear(); - MergeFrom(from); -} - - -void FigureDescriptor_ChartDescriptor::InternalSwap(FigureDescriptor_ChartDescriptor* PROTOBUF_RESTRICT other) { - using std::swap; - auto* arena = GetArena(); - ABSL_DCHECK_EQ(arena, other->GetArena()); - _internal_metadata_.InternalSwap(&other->_internal_metadata_); - swap(_impl_._has_bits_[0], other->_impl_._has_bits_[0]); - _impl_.series_.InternalSwap(&other->_impl_.series_); - _impl_.multi_series_.InternalSwap(&other->_impl_.multi_series_); - _impl_.axes_.InternalSwap(&other->_impl_.axes_); - ::_pbi::ArenaStringPtr::InternalSwap(&_impl_.title_, &other->_impl_.title_, arena); - ::_pbi::ArenaStringPtr::InternalSwap(&_impl_.title_font_, &other->_impl_.title_font_, arena); - ::_pbi::ArenaStringPtr::InternalSwap(&_impl_.title_color_, &other->_impl_.title_color_, arena); - ::_pbi::ArenaStringPtr::InternalSwap(&_impl_.legend_font_, &other->_impl_.legend_font_, arena); - ::_pbi::ArenaStringPtr::InternalSwap(&_impl_.legend_color_, &other->_impl_.legend_color_, arena); - ::google::protobuf::internal::memswap< - PROTOBUF_FIELD_OFFSET(FigureDescriptor_ChartDescriptor, _impl_.row_) - + sizeof(FigureDescriptor_ChartDescriptor::_impl_.row_) - - PROTOBUF_FIELD_OFFSET(FigureDescriptor_ChartDescriptor, _impl_.colspan_)>( - reinterpret_cast(&_impl_.colspan_), - reinterpret_cast(&other->_impl_.colspan_)); -} - -::google::protobuf::Metadata FigureDescriptor_ChartDescriptor::GetMetadata() const { - return ::google::protobuf::Message::GetMetadataImpl(GetClassData()->full()); -} -// =================================================================== - -class FigureDescriptor_SeriesDescriptor::_Internal { - public: - using HasBits = - decltype(std::declval()._impl_._has_bits_); - static constexpr ::int32_t kHasBitsOffset = - 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 ::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_}, - name_(arena, from.name_), - line_color_(arena, from.line_color_), - point_label_format_(arena, from.point_label_format_), - x_tool_tip_pattern_(arena, from.x_tool_tip_pattern_), - y_tool_tip_pattern_(arena, from.y_tool_tip_pattern_), - shape_label_(arena, from.shape_label_), - shape_color_(arena, from.shape_color_), - shape_(arena, from.shape_) {} - -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_, from); - ::memcpy(reinterpret_cast(&_impl_) + - offsetof(Impl_, plot_style_), - reinterpret_cast(&from._impl_) + - offsetof(Impl_, plot_style_), - offsetof(Impl_, shape_size_) - - offsetof(Impl_, plot_style_) + - sizeof(Impl_::shape_size_)); - - // @@protoc_insertion_point(copy_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) - : _cached_size_{0}, - data_sources_{visibility, arena}, - name_(arena), - line_color_(arena), - point_label_format_(arena), - x_tool_tip_pattern_(arena), - y_tool_tip_pattern_(arena), - shape_label_(arena), - shape_color_(arena), - shape_(arena) {} - -inline void FigureDescriptor_SeriesDescriptor::SharedCtor(::_pb::Arena* arena) { - new (&_impl_) Impl_(internal_visibility(), arena); - ::memset(reinterpret_cast(&_impl_) + - offsetof(Impl_, plot_style_), - 0, - offsetof(Impl_, shape_size_) - - offsetof(Impl_, plot_style_) + - sizeof(Impl_::shape_size_)); -} -FigureDescriptor_SeriesDescriptor::~FigureDescriptor_SeriesDescriptor() { - // @@protoc_insertion_point(destructor:io.deephaven.proto.backplane.script.grpc.FigureDescriptor.SeriesDescriptor) - _internal_metadata_.Delete<::google::protobuf::UnknownFieldSet>(); - SharedDtor(); -} -inline void FigureDescriptor_SeriesDescriptor::SharedDtor() { - ABSL_DCHECK(GetArena() == nullptr); - _impl_.name_.Destroy(); - _impl_.line_color_.Destroy(); - _impl_.point_label_format_.Destroy(); - _impl_.x_tool_tip_pattern_.Destroy(); - _impl_.y_tool_tip_pattern_.Destroy(); - _impl_.shape_label_.Destroy(); - _impl_.shape_color_.Destroy(); - _impl_.shape_.Destroy(); - _impl_.~Impl_(); -} - -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_ = { - { - PROTOBUF_FIELD_OFFSET(FigureDescriptor_SeriesDescriptor, _impl_._has_bits_), - 0, // no _extensions_ - 15, 120, // max_field_number, fast_idx_mask - offsetof(decltype(_table_), field_lookup_table), - 4294934592, // skipmap - offsetof(decltype(_table_), field_entries), - 14, // num_field_entries - 1, // num_aux_entries - offsetof(decltype(_table_), 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::FigureDescriptor_SeriesDescriptor>(), // to_prefetch - #endif // PROTOBUF_PREFETCH_PARSE_TABLE - }, {{ - {::_pbi::TcParser::MiniParse, {}}, - // .io.deephaven.proto.backplane.script.grpc.FigureDescriptor.SeriesPlotStyle plot_style = 1; - {::_pbi::TcParser::SingularVarintNoZag1<::uint32_t, offsetof(FigureDescriptor_SeriesDescriptor, _impl_.plot_style_), 63>(), - {8, 63, 0, PROTOBUF_FIELD_OFFSET(FigureDescriptor_SeriesDescriptor, _impl_.plot_style_)}}, - // string name = 2; - {::_pbi::TcParser::FastUS1, - {18, 63, 0, PROTOBUF_FIELD_OFFSET(FigureDescriptor_SeriesDescriptor, _impl_.name_)}}, - // optional bool lines_visible = 3; - {::_pbi::TcParser::SingularVarintNoZag1(), - {24, 3, 0, PROTOBUF_FIELD_OFFSET(FigureDescriptor_SeriesDescriptor, _impl_.lines_visible_)}}, - // optional bool shapes_visible = 4; - {::_pbi::TcParser::SingularVarintNoZag1(), - {32, 4, 0, PROTOBUF_FIELD_OFFSET(FigureDescriptor_SeriesDescriptor, _impl_.shapes_visible_)}}, - // bool gradient_visible = 5; - {::_pbi::TcParser::SingularVarintNoZag1(), - {40, 63, 0, PROTOBUF_FIELD_OFFSET(FigureDescriptor_SeriesDescriptor, _impl_.gradient_visible_)}}, - // string line_color = 6; - {::_pbi::TcParser::FastUS1, - {50, 63, 0, PROTOBUF_FIELD_OFFSET(FigureDescriptor_SeriesDescriptor, _impl_.line_color_)}}, - {::_pbi::TcParser::MiniParse, {}}, - // optional string point_label_format = 8; - {::_pbi::TcParser::FastUS1, - {66, 0, 0, PROTOBUF_FIELD_OFFSET(FigureDescriptor_SeriesDescriptor, _impl_.point_label_format_)}}, - // optional string x_tool_tip_pattern = 9; - {::_pbi::TcParser::FastUS1, - {74, 1, 0, PROTOBUF_FIELD_OFFSET(FigureDescriptor_SeriesDescriptor, _impl_.x_tool_tip_pattern_)}}, - // optional string y_tool_tip_pattern = 10; - {::_pbi::TcParser::FastUS1, - {82, 2, 0, PROTOBUF_FIELD_OFFSET(FigureDescriptor_SeriesDescriptor, _impl_.y_tool_tip_pattern_)}}, - // string shape_label = 11; - {::_pbi::TcParser::FastUS1, - {90, 63, 0, PROTOBUF_FIELD_OFFSET(FigureDescriptor_SeriesDescriptor, _impl_.shape_label_)}}, - // optional double shape_size = 12; - {::_pbi::TcParser::FastF64S1, - {97, 5, 0, PROTOBUF_FIELD_OFFSET(FigureDescriptor_SeriesDescriptor, _impl_.shape_size_)}}, - // string shape_color = 13; - {::_pbi::TcParser::FastUS1, - {106, 63, 0, PROTOBUF_FIELD_OFFSET(FigureDescriptor_SeriesDescriptor, _impl_.shape_color_)}}, - // string shape = 14; - {::_pbi::TcParser::FastUS1, - {114, 63, 0, PROTOBUF_FIELD_OFFSET(FigureDescriptor_SeriesDescriptor, _impl_.shape_)}}, - // repeated .io.deephaven.proto.backplane.script.grpc.FigureDescriptor.SourceDescriptor data_sources = 15; - {::_pbi::TcParser::FastMtR1, - {122, 63, 0, PROTOBUF_FIELD_OFFSET(FigureDescriptor_SeriesDescriptor, _impl_.data_sources_)}}, - }}, {{ - 65535, 65535 - }}, {{ - // .io.deephaven.proto.backplane.script.grpc.FigureDescriptor.SeriesPlotStyle plot_style = 1; - {PROTOBUF_FIELD_OFFSET(FigureDescriptor_SeriesDescriptor, _impl_.plot_style_), -1, 0, - (0 | ::_fl::kFcSingular | ::_fl::kOpenEnum)}, - // string name = 2; - {PROTOBUF_FIELD_OFFSET(FigureDescriptor_SeriesDescriptor, _impl_.name_), -1, 0, - (0 | ::_fl::kFcSingular | ::_fl::kUtf8String | ::_fl::kRepAString)}, - // optional bool lines_visible = 3; - {PROTOBUF_FIELD_OFFSET(FigureDescriptor_SeriesDescriptor, _impl_.lines_visible_), _Internal::kHasBitsOffset + 3, 0, - (0 | ::_fl::kFcOptional | ::_fl::kBool)}, - // optional bool shapes_visible = 4; - {PROTOBUF_FIELD_OFFSET(FigureDescriptor_SeriesDescriptor, _impl_.shapes_visible_), _Internal::kHasBitsOffset + 4, 0, - (0 | ::_fl::kFcOptional | ::_fl::kBool)}, - // bool gradient_visible = 5; - {PROTOBUF_FIELD_OFFSET(FigureDescriptor_SeriesDescriptor, _impl_.gradient_visible_), -1, 0, - (0 | ::_fl::kFcSingular | ::_fl::kBool)}, - // string line_color = 6; - {PROTOBUF_FIELD_OFFSET(FigureDescriptor_SeriesDescriptor, _impl_.line_color_), -1, 0, - (0 | ::_fl::kFcSingular | ::_fl::kUtf8String | ::_fl::kRepAString)}, - // optional string point_label_format = 8; - {PROTOBUF_FIELD_OFFSET(FigureDescriptor_SeriesDescriptor, _impl_.point_label_format_), _Internal::kHasBitsOffset + 0, 0, - (0 | ::_fl::kFcOptional | ::_fl::kUtf8String | ::_fl::kRepAString)}, - // optional string x_tool_tip_pattern = 9; - {PROTOBUF_FIELD_OFFSET(FigureDescriptor_SeriesDescriptor, _impl_.x_tool_tip_pattern_), _Internal::kHasBitsOffset + 1, 0, - (0 | ::_fl::kFcOptional | ::_fl::kUtf8String | ::_fl::kRepAString)}, - // optional string y_tool_tip_pattern = 10; - {PROTOBUF_FIELD_OFFSET(FigureDescriptor_SeriesDescriptor, _impl_.y_tool_tip_pattern_), _Internal::kHasBitsOffset + 2, 0, - (0 | ::_fl::kFcOptional | ::_fl::kUtf8String | ::_fl::kRepAString)}, - // string shape_label = 11; - {PROTOBUF_FIELD_OFFSET(FigureDescriptor_SeriesDescriptor, _impl_.shape_label_), -1, 0, - (0 | ::_fl::kFcSingular | ::_fl::kUtf8String | ::_fl::kRepAString)}, - // optional double shape_size = 12; - {PROTOBUF_FIELD_OFFSET(FigureDescriptor_SeriesDescriptor, _impl_.shape_size_), _Internal::kHasBitsOffset + 5, 0, - (0 | ::_fl::kFcOptional | ::_fl::kDouble)}, - // string shape_color = 13; - {PROTOBUF_FIELD_OFFSET(FigureDescriptor_SeriesDescriptor, _impl_.shape_color_), -1, 0, - (0 | ::_fl::kFcSingular | ::_fl::kUtf8String | ::_fl::kRepAString)}, - // string shape = 14; - {PROTOBUF_FIELD_OFFSET(FigureDescriptor_SeriesDescriptor, _impl_.shape_), -1, 0, - (0 | ::_fl::kFcSingular | ::_fl::kUtf8String | ::_fl::kRepAString)}, - // repeated .io.deephaven.proto.backplane.script.grpc.FigureDescriptor.SourceDescriptor data_sources = 15; - {PROTOBUF_FIELD_OFFSET(FigureDescriptor_SeriesDescriptor, _impl_.data_sources_), -1, 0, - (0 | ::_fl::kFcRepeated | ::_fl::kMessage | ::_fl::kTvTable)}, - }}, {{ - {::_pbi::TcParser::GetTable<::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_SourceDescriptor>()}, - }}, {{ - "\112\0\4\0\0\0\12\22\22\22\13\0\13\5\0\0" - "io.deephaven.proto.backplane.script.grpc.FigureDescriptor.SeriesDescriptor" - "name" - "line_color" - "point_label_format" - "x_tool_tip_pattern" - "y_tool_tip_pattern" - "shape_label" - "shape_color" - "shape" - }}, -}; - -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; - - _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>(); -} - -#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) - ABSL_DCHECK_NE(&from, _this); - ::uint32_t cached_has_bits = 0; - (void) cached_has_bits; - - _this->_internal_mutable_data_sources()->MergeFrom( - from._internal_data_sources()); - if (!from._internal_name().empty()) { - _this->_internal_set_name(from._internal_name()); - } - if (!from._internal_line_color().empty()) { - _this->_internal_set_line_color(from._internal_line_color()); - } - cached_has_bits = from._impl_._has_bits_[0]; - if (cached_has_bits & 0x00000007u) { - if (cached_has_bits & 0x00000001u) { - _this->_internal_set_point_label_format(from._internal_point_label_format()); - } - if (cached_has_bits & 0x00000002u) { - _this->_internal_set_x_tool_tip_pattern(from._internal_x_tool_tip_pattern()); - } - if (cached_has_bits & 0x00000004u) { - _this->_internal_set_y_tool_tip_pattern(from._internal_y_tool_tip_pattern()); - } - } - if (!from._internal_shape_label().empty()) { - _this->_internal_set_shape_label(from._internal_shape_label()); - } - if (!from._internal_shape_color().empty()) { - _this->_internal_set_shape_color(from._internal_shape_color()); - } - if (!from._internal_shape().empty()) { - _this->_internal_set_shape(from._internal_shape()); - } - if (from._internal_plot_style() != 0) { - _this->_impl_.plot_style_ = from._impl_.plot_style_; - } - if (cached_has_bits & 0x00000018u) { - if (cached_has_bits & 0x00000008u) { - _this->_impl_.lines_visible_ = from._impl_.lines_visible_; - } - if (cached_has_bits & 0x00000010u) { - _this->_impl_.shapes_visible_ = from._impl_.shapes_visible_; - } - } - if (from._internal_gradient_visible() != 0) { - _this->_impl_.gradient_visible_ = from._impl_.gradient_visible_; - } - if (cached_has_bits & 0x00000020u) { - _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_); -} - -void FigureDescriptor_SeriesDescriptor::CopyFrom(const FigureDescriptor_SeriesDescriptor& from) { -// @@protoc_insertion_point(class_specific_copy_from_start:io.deephaven.proto.backplane.script.grpc.FigureDescriptor.SeriesDescriptor) - if (&from == this) return; - Clear(); - MergeFrom(from); -} - - -void FigureDescriptor_SeriesDescriptor::InternalSwap(FigureDescriptor_SeriesDescriptor* PROTOBUF_RESTRICT other) { - using std::swap; - auto* arena = GetArena(); - ABSL_DCHECK_EQ(arena, other->GetArena()); - _internal_metadata_.InternalSwap(&other->_internal_metadata_); - swap(_impl_._has_bits_[0], other->_impl_._has_bits_[0]); - _impl_.data_sources_.InternalSwap(&other->_impl_.data_sources_); - ::_pbi::ArenaStringPtr::InternalSwap(&_impl_.name_, &other->_impl_.name_, arena); - ::_pbi::ArenaStringPtr::InternalSwap(&_impl_.line_color_, &other->_impl_.line_color_, arena); - ::_pbi::ArenaStringPtr::InternalSwap(&_impl_.point_label_format_, &other->_impl_.point_label_format_, arena); - ::_pbi::ArenaStringPtr::InternalSwap(&_impl_.x_tool_tip_pattern_, &other->_impl_.x_tool_tip_pattern_, arena); - ::_pbi::ArenaStringPtr::InternalSwap(&_impl_.y_tool_tip_pattern_, &other->_impl_.y_tool_tip_pattern_, arena); - ::_pbi::ArenaStringPtr::InternalSwap(&_impl_.shape_label_, &other->_impl_.shape_label_, arena); - ::_pbi::ArenaStringPtr::InternalSwap(&_impl_.shape_color_, &other->_impl_.shape_color_, arena); - ::_pbi::ArenaStringPtr::InternalSwap(&_impl_.shape_, &other->_impl_.shape_, arena); - ::google::protobuf::internal::memswap< - PROTOBUF_FIELD_OFFSET(FigureDescriptor_SeriesDescriptor, _impl_.shape_size_) - + sizeof(FigureDescriptor_SeriesDescriptor::_impl_.shape_size_) - - PROTOBUF_FIELD_OFFSET(FigureDescriptor_SeriesDescriptor, _impl_.plot_style_)>( - reinterpret_cast(&_impl_.plot_style_), - reinterpret_cast(&other->_impl_.plot_style_)); -} - -::google::protobuf::Metadata FigureDescriptor_SeriesDescriptor::GetMetadata() const { - return ::google::protobuf::Message::GetMetadataImpl(GetClassData()->full()); -} -// =================================================================== - -class FigureDescriptor_MultiSeriesDescriptor::_Internal { - public: - using HasBits = - decltype(std::declval()._impl_._has_bits_); - static constexpr ::int32_t kHasBitsOffset = - 8 * PROTOBUF_FIELD_OFFSET(FigureDescriptor_MultiSeriesDescriptor, _impl_._has_bits_); -}; - -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 ::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_}, - name_(arena, from.name_) {} - -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_, from); - ::uint32_t cached_has_bits = _impl_._has_bits_[0]; - _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) -} -inline PROTOBUF_NDEBUG_INLINE FigureDescriptor_MultiSeriesDescriptor::Impl_::Impl_( - ::google::protobuf::internal::InternalVisibility visibility, - ::google::protobuf::Arena* arena) - : _cached_size_{0}, - data_sources_{visibility, arena}, - name_(arena) {} - -inline void FigureDescriptor_MultiSeriesDescriptor::SharedCtor(::_pb::Arena* arena) { - new (&_impl_) Impl_(internal_visibility(), arena); - ::memset(reinterpret_cast(&_impl_) + - offsetof(Impl_, line_color_), - 0, - offsetof(Impl_, plot_style_) - - offsetof(Impl_, line_color_) + - sizeof(Impl_::plot_style_)); -} -FigureDescriptor_MultiSeriesDescriptor::~FigureDescriptor_MultiSeriesDescriptor() { - // @@protoc_insertion_point(destructor:io.deephaven.proto.backplane.script.grpc.FigureDescriptor.MultiSeriesDescriptor) - _internal_metadata_.Delete<::google::protobuf::UnknownFieldSet>(); - SharedDtor(); -} -inline void FigureDescriptor_MultiSeriesDescriptor::SharedDtor() { - ABSL_DCHECK(GetArena() == nullptr); - _impl_.name_.Destroy(); - delete _impl_.line_color_; - delete _impl_.point_color_; - delete _impl_.lines_visible_; - delete _impl_.points_visible_; - delete _impl_.gradient_visible_; - delete _impl_.point_label_format_; - delete _impl_.x_tool_tip_pattern_; - delete _impl_.y_tool_tip_pattern_; - delete _impl_.point_label_; - delete _impl_.point_size_; - delete _impl_.point_shape_; - _impl_.~Impl_(); -} - -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_ = { - { - PROTOBUF_FIELD_OFFSET(FigureDescriptor_MultiSeriesDescriptor, _impl_._has_bits_), - 0, // no _extensions_ - 14, 120, // max_field_number, fast_idx_mask - offsetof(decltype(_table_), field_lookup_table), - 4294950912, // skipmap - offsetof(decltype(_table_), field_entries), - 14, // num_field_entries - 12, // num_aux_entries - offsetof(decltype(_table_), 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::FigureDescriptor_MultiSeriesDescriptor>(), // to_prefetch - #endif // PROTOBUF_PREFETCH_PARSE_TABLE - }, {{ - {::_pbi::TcParser::MiniParse, {}}, - // .io.deephaven.proto.backplane.script.grpc.FigureDescriptor.SeriesPlotStyle plot_style = 1; - {::_pbi::TcParser::SingularVarintNoZag1<::uint32_t, offsetof(FigureDescriptor_MultiSeriesDescriptor, _impl_.plot_style_), 63>(), - {8, 63, 0, PROTOBUF_FIELD_OFFSET(FigureDescriptor_MultiSeriesDescriptor, _impl_.plot_style_)}}, - // string name = 2; - {::_pbi::TcParser::FastUS1, - {18, 63, 0, PROTOBUF_FIELD_OFFSET(FigureDescriptor_MultiSeriesDescriptor, _impl_.name_)}}, - // .io.deephaven.proto.backplane.script.grpc.FigureDescriptor.StringMapWithDefault line_color = 3; - {::_pbi::TcParser::FastMtS1, - {26, 0, 0, PROTOBUF_FIELD_OFFSET(FigureDescriptor_MultiSeriesDescriptor, _impl_.line_color_)}}, - // .io.deephaven.proto.backplane.script.grpc.FigureDescriptor.StringMapWithDefault point_color = 4; - {::_pbi::TcParser::FastMtS1, - {34, 1, 1, PROTOBUF_FIELD_OFFSET(FigureDescriptor_MultiSeriesDescriptor, _impl_.point_color_)}}, - // .io.deephaven.proto.backplane.script.grpc.FigureDescriptor.BoolMapWithDefault lines_visible = 5; - {::_pbi::TcParser::FastMtS1, - {42, 2, 2, PROTOBUF_FIELD_OFFSET(FigureDescriptor_MultiSeriesDescriptor, _impl_.lines_visible_)}}, - // .io.deephaven.proto.backplane.script.grpc.FigureDescriptor.BoolMapWithDefault points_visible = 6; - {::_pbi::TcParser::FastMtS1, - {50, 3, 3, PROTOBUF_FIELD_OFFSET(FigureDescriptor_MultiSeriesDescriptor, _impl_.points_visible_)}}, - // .io.deephaven.proto.backplane.script.grpc.FigureDescriptor.BoolMapWithDefault gradient_visible = 7; - {::_pbi::TcParser::FastMtS1, - {58, 4, 4, PROTOBUF_FIELD_OFFSET(FigureDescriptor_MultiSeriesDescriptor, _impl_.gradient_visible_)}}, - // .io.deephaven.proto.backplane.script.grpc.FigureDescriptor.StringMapWithDefault point_label_format = 8; - {::_pbi::TcParser::FastMtS1, - {66, 5, 5, PROTOBUF_FIELD_OFFSET(FigureDescriptor_MultiSeriesDescriptor, _impl_.point_label_format_)}}, - // .io.deephaven.proto.backplane.script.grpc.FigureDescriptor.StringMapWithDefault x_tool_tip_pattern = 9; - {::_pbi::TcParser::FastMtS1, - {74, 6, 6, PROTOBUF_FIELD_OFFSET(FigureDescriptor_MultiSeriesDescriptor, _impl_.x_tool_tip_pattern_)}}, - // .io.deephaven.proto.backplane.script.grpc.FigureDescriptor.StringMapWithDefault y_tool_tip_pattern = 10; - {::_pbi::TcParser::FastMtS1, - {82, 7, 7, PROTOBUF_FIELD_OFFSET(FigureDescriptor_MultiSeriesDescriptor, _impl_.y_tool_tip_pattern_)}}, - // .io.deephaven.proto.backplane.script.grpc.FigureDescriptor.StringMapWithDefault point_label = 11; - {::_pbi::TcParser::FastMtS1, - {90, 8, 8, PROTOBUF_FIELD_OFFSET(FigureDescriptor_MultiSeriesDescriptor, _impl_.point_label_)}}, - // .io.deephaven.proto.backplane.script.grpc.FigureDescriptor.DoubleMapWithDefault point_size = 12; - {::_pbi::TcParser::FastMtS1, - {98, 9, 9, PROTOBUF_FIELD_OFFSET(FigureDescriptor_MultiSeriesDescriptor, _impl_.point_size_)}}, - // .io.deephaven.proto.backplane.script.grpc.FigureDescriptor.StringMapWithDefault point_shape = 13; - {::_pbi::TcParser::FastMtS1, - {106, 10, 10, PROTOBUF_FIELD_OFFSET(FigureDescriptor_MultiSeriesDescriptor, _impl_.point_shape_)}}, - // repeated .io.deephaven.proto.backplane.script.grpc.FigureDescriptor.MultiSeriesSourceDescriptor data_sources = 14; - {::_pbi::TcParser::FastMtR1, - {114, 63, 11, PROTOBUF_FIELD_OFFSET(FigureDescriptor_MultiSeriesDescriptor, _impl_.data_sources_)}}, - {::_pbi::TcParser::MiniParse, {}}, - }}, {{ - 65535, 65535 - }}, {{ - // .io.deephaven.proto.backplane.script.grpc.FigureDescriptor.SeriesPlotStyle plot_style = 1; - {PROTOBUF_FIELD_OFFSET(FigureDescriptor_MultiSeriesDescriptor, _impl_.plot_style_), -1, 0, - (0 | ::_fl::kFcSingular | ::_fl::kOpenEnum)}, - // string name = 2; - {PROTOBUF_FIELD_OFFSET(FigureDescriptor_MultiSeriesDescriptor, _impl_.name_), -1, 0, - (0 | ::_fl::kFcSingular | ::_fl::kUtf8String | ::_fl::kRepAString)}, - // .io.deephaven.proto.backplane.script.grpc.FigureDescriptor.StringMapWithDefault line_color = 3; - {PROTOBUF_FIELD_OFFSET(FigureDescriptor_MultiSeriesDescriptor, _impl_.line_color_), _Internal::kHasBitsOffset + 0, 0, - (0 | ::_fl::kFcOptional | ::_fl::kMessage | ::_fl::kTvTable)}, - // .io.deephaven.proto.backplane.script.grpc.FigureDescriptor.StringMapWithDefault point_color = 4; - {PROTOBUF_FIELD_OFFSET(FigureDescriptor_MultiSeriesDescriptor, _impl_.point_color_), _Internal::kHasBitsOffset + 1, 1, - (0 | ::_fl::kFcOptional | ::_fl::kMessage | ::_fl::kTvTable)}, - // .io.deephaven.proto.backplane.script.grpc.FigureDescriptor.BoolMapWithDefault lines_visible = 5; - {PROTOBUF_FIELD_OFFSET(FigureDescriptor_MultiSeriesDescriptor, _impl_.lines_visible_), _Internal::kHasBitsOffset + 2, 2, - (0 | ::_fl::kFcOptional | ::_fl::kMessage | ::_fl::kTvTable)}, - // .io.deephaven.proto.backplane.script.grpc.FigureDescriptor.BoolMapWithDefault points_visible = 6; - {PROTOBUF_FIELD_OFFSET(FigureDescriptor_MultiSeriesDescriptor, _impl_.points_visible_), _Internal::kHasBitsOffset + 3, 3, - (0 | ::_fl::kFcOptional | ::_fl::kMessage | ::_fl::kTvTable)}, - // .io.deephaven.proto.backplane.script.grpc.FigureDescriptor.BoolMapWithDefault gradient_visible = 7; - {PROTOBUF_FIELD_OFFSET(FigureDescriptor_MultiSeriesDescriptor, _impl_.gradient_visible_), _Internal::kHasBitsOffset + 4, 4, - (0 | ::_fl::kFcOptional | ::_fl::kMessage | ::_fl::kTvTable)}, - // .io.deephaven.proto.backplane.script.grpc.FigureDescriptor.StringMapWithDefault point_label_format = 8; - {PROTOBUF_FIELD_OFFSET(FigureDescriptor_MultiSeriesDescriptor, _impl_.point_label_format_), _Internal::kHasBitsOffset + 5, 5, - (0 | ::_fl::kFcOptional | ::_fl::kMessage | ::_fl::kTvTable)}, - // .io.deephaven.proto.backplane.script.grpc.FigureDescriptor.StringMapWithDefault x_tool_tip_pattern = 9; - {PROTOBUF_FIELD_OFFSET(FigureDescriptor_MultiSeriesDescriptor, _impl_.x_tool_tip_pattern_), _Internal::kHasBitsOffset + 6, 6, - (0 | ::_fl::kFcOptional | ::_fl::kMessage | ::_fl::kTvTable)}, - // .io.deephaven.proto.backplane.script.grpc.FigureDescriptor.StringMapWithDefault y_tool_tip_pattern = 10; - {PROTOBUF_FIELD_OFFSET(FigureDescriptor_MultiSeriesDescriptor, _impl_.y_tool_tip_pattern_), _Internal::kHasBitsOffset + 7, 7, - (0 | ::_fl::kFcOptional | ::_fl::kMessage | ::_fl::kTvTable)}, - // .io.deephaven.proto.backplane.script.grpc.FigureDescriptor.StringMapWithDefault point_label = 11; - {PROTOBUF_FIELD_OFFSET(FigureDescriptor_MultiSeriesDescriptor, _impl_.point_label_), _Internal::kHasBitsOffset + 8, 8, - (0 | ::_fl::kFcOptional | ::_fl::kMessage | ::_fl::kTvTable)}, - // .io.deephaven.proto.backplane.script.grpc.FigureDescriptor.DoubleMapWithDefault point_size = 12; - {PROTOBUF_FIELD_OFFSET(FigureDescriptor_MultiSeriesDescriptor, _impl_.point_size_), _Internal::kHasBitsOffset + 9, 9, - (0 | ::_fl::kFcOptional | ::_fl::kMessage | ::_fl::kTvTable)}, - // .io.deephaven.proto.backplane.script.grpc.FigureDescriptor.StringMapWithDefault point_shape = 13; - {PROTOBUF_FIELD_OFFSET(FigureDescriptor_MultiSeriesDescriptor, _impl_.point_shape_), _Internal::kHasBitsOffset + 10, 10, - (0 | ::_fl::kFcOptional | ::_fl::kMessage | ::_fl::kTvTable)}, - // repeated .io.deephaven.proto.backplane.script.grpc.FigureDescriptor.MultiSeriesSourceDescriptor data_sources = 14; - {PROTOBUF_FIELD_OFFSET(FigureDescriptor_MultiSeriesDescriptor, _impl_.data_sources_), -1, 11, - (0 | ::_fl::kFcRepeated | ::_fl::kMessage | ::_fl::kTvTable)}, - }}, {{ - {::_pbi::TcParser::GetTable<::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_StringMapWithDefault>()}, - {::_pbi::TcParser::GetTable<::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_StringMapWithDefault>()}, - {::_pbi::TcParser::GetTable<::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_BoolMapWithDefault>()}, - {::_pbi::TcParser::GetTable<::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_BoolMapWithDefault>()}, - {::_pbi::TcParser::GetTable<::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_BoolMapWithDefault>()}, - {::_pbi::TcParser::GetTable<::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_StringMapWithDefault>()}, - {::_pbi::TcParser::GetTable<::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_StringMapWithDefault>()}, - {::_pbi::TcParser::GetTable<::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_StringMapWithDefault>()}, - {::_pbi::TcParser::GetTable<::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_StringMapWithDefault>()}, - {::_pbi::TcParser::GetTable<::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_DoubleMapWithDefault>()}, - {::_pbi::TcParser::GetTable<::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_StringMapWithDefault>()}, - {::_pbi::TcParser::GetTable<::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_MultiSeriesSourceDescriptor>()}, - }}, {{ - "\117\0\4\0\0\0\0\0\0\0\0\0\0\0\0\0" - "io.deephaven.proto.backplane.script.grpc.FigureDescriptor.MultiSeriesDescriptor" - "name" - }}, -}; - -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; - - _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>(); -} - -#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; - (void) cached_has_bits; - - _this->_internal_mutable_data_sources()->MergeFrom( - from._internal_data_sources()); - if (!from._internal_name().empty()) { - _this->_internal_set_name(from._internal_name()); - } - cached_has_bits = from._impl_._has_bits_[0]; - if (cached_has_bits & 0x000000ffu) { - if (cached_has_bits & 0x00000001u) { - 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) { - 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) { - 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) { - 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) { - 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) { - 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) { - 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) { - 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) { - 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) { - 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) { - 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->_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_); -} - -void FigureDescriptor_MultiSeriesDescriptor::CopyFrom(const FigureDescriptor_MultiSeriesDescriptor& from) { -// @@protoc_insertion_point(class_specific_copy_from_start:io.deephaven.proto.backplane.script.grpc.FigureDescriptor.MultiSeriesDescriptor) - if (&from == this) return; - Clear(); - MergeFrom(from); -} - - -void FigureDescriptor_MultiSeriesDescriptor::InternalSwap(FigureDescriptor_MultiSeriesDescriptor* PROTOBUF_RESTRICT other) { - using std::swap; - auto* arena = GetArena(); - ABSL_DCHECK_EQ(arena, other->GetArena()); - _internal_metadata_.InternalSwap(&other->_internal_metadata_); - swap(_impl_._has_bits_[0], other->_impl_._has_bits_[0]); - _impl_.data_sources_.InternalSwap(&other->_impl_.data_sources_); - ::_pbi::ArenaStringPtr::InternalSwap(&_impl_.name_, &other->_impl_.name_, arena); - ::google::protobuf::internal::memswap< - PROTOBUF_FIELD_OFFSET(FigureDescriptor_MultiSeriesDescriptor, _impl_.plot_style_) - + sizeof(FigureDescriptor_MultiSeriesDescriptor::_impl_.plot_style_) - - PROTOBUF_FIELD_OFFSET(FigureDescriptor_MultiSeriesDescriptor, _impl_.line_color_)>( - reinterpret_cast(&_impl_.line_color_), - reinterpret_cast(&other->_impl_.line_color_)); -} - -::google::protobuf::Metadata FigureDescriptor_MultiSeriesDescriptor::GetMetadata() const { - return ::google::protobuf::Message::GetMetadataImpl(GetClassData()->full()); -} -// =================================================================== - -class FigureDescriptor_StringMapWithDefault::_Internal { - public: - using HasBits = - decltype(std::declval()._impl_._has_bits_); - static constexpr ::int32_t kHasBitsOffset = - 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 ::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_StringMapWithDefault& from_msg) - : _has_bits_{from._has_bits_}, - _cached_size_{0}, - keys_{visibility, arena, from.keys_}, - values_{visibility, arena, from.values_}, - default_string_(arena, from.default_string_) {} - -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_, from); - - // @@protoc_insertion_point(copy_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) - : _cached_size_{0}, - keys_{visibility, arena}, - values_{visibility, arena}, - default_string_(arena) {} - -inline void FigureDescriptor_StringMapWithDefault::SharedCtor(::_pb::Arena* arena) { - new (&_impl_) Impl_(internal_visibility(), arena); -} -FigureDescriptor_StringMapWithDefault::~FigureDescriptor_StringMapWithDefault() { - // @@protoc_insertion_point(destructor:io.deephaven.proto.backplane.script.grpc.FigureDescriptor.StringMapWithDefault) - _internal_metadata_.Delete<::google::protobuf::UnknownFieldSet>(); - SharedDtor(); -} -inline void FigureDescriptor_StringMapWithDefault::SharedDtor() { - ABSL_DCHECK(GetArena() == nullptr); - _impl_.default_string_.Destroy(); - _impl_.~Impl_(); -} - -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_ = { - { - PROTOBUF_FIELD_OFFSET(FigureDescriptor_StringMapWithDefault, _impl_._has_bits_), - 0, // no _extensions_ - 3, 24, // max_field_number, fast_idx_mask - offsetof(decltype(_table_), field_lookup_table), - 4294967288, // skipmap - offsetof(decltype(_table_), field_entries), - 3, // 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::FigureDescriptor_StringMapWithDefault>(), // to_prefetch - #endif // PROTOBUF_PREFETCH_PARSE_TABLE - }, {{ - {::_pbi::TcParser::MiniParse, {}}, - // optional string default_string = 1; - {::_pbi::TcParser::FastUS1, - {10, 0, 0, PROTOBUF_FIELD_OFFSET(FigureDescriptor_StringMapWithDefault, _impl_.default_string_)}}, - // repeated string keys = 2; - {::_pbi::TcParser::FastUR1, - {18, 63, 0, PROTOBUF_FIELD_OFFSET(FigureDescriptor_StringMapWithDefault, _impl_.keys_)}}, - // repeated string values = 3; - {::_pbi::TcParser::FastUR1, - {26, 63, 0, PROTOBUF_FIELD_OFFSET(FigureDescriptor_StringMapWithDefault, _impl_.values_)}}, - }}, {{ - 65535, 65535 - }}, {{ - // optional string default_string = 1; - {PROTOBUF_FIELD_OFFSET(FigureDescriptor_StringMapWithDefault, _impl_.default_string_), _Internal::kHasBitsOffset + 0, 0, - (0 | ::_fl::kFcOptional | ::_fl::kUtf8String | ::_fl::kRepAString)}, - // repeated string keys = 2; - {PROTOBUF_FIELD_OFFSET(FigureDescriptor_StringMapWithDefault, _impl_.keys_), -1, 0, - (0 | ::_fl::kFcRepeated | ::_fl::kUtf8String | ::_fl::kRepSString)}, - // repeated string values = 3; - {PROTOBUF_FIELD_OFFSET(FigureDescriptor_StringMapWithDefault, _impl_.values_), -1, 0, - (0 | ::_fl::kFcRepeated | ::_fl::kUtf8String | ::_fl::kRepSString)}, - }}, - // no aux_entries - {{ - "\116\16\4\6\0\0\0\0" - "io.deephaven.proto.backplane.script.grpc.FigureDescriptor.StringMapWithDefault" - "default_string" - "keys" - "values" - }}, -}; - -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; - - _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>(); -} - -#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) - ABSL_DCHECK_NE(&from, _this); - ::uint32_t cached_has_bits = 0; - (void) cached_has_bits; - - _this->_internal_mutable_keys()->MergeFrom(from._internal_keys()); - _this->_internal_mutable_values()->MergeFrom(from._internal_values()); - 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_); -} - -void FigureDescriptor_StringMapWithDefault::CopyFrom(const FigureDescriptor_StringMapWithDefault& from) { -// @@protoc_insertion_point(class_specific_copy_from_start:io.deephaven.proto.backplane.script.grpc.FigureDescriptor.StringMapWithDefault) - if (&from == this) return; - Clear(); - MergeFrom(from); -} - - -void FigureDescriptor_StringMapWithDefault::InternalSwap(FigureDescriptor_StringMapWithDefault* PROTOBUF_RESTRICT other) { - using std::swap; - auto* arena = GetArena(); - ABSL_DCHECK_EQ(arena, other->GetArena()); - _internal_metadata_.InternalSwap(&other->_internal_metadata_); - swap(_impl_._has_bits_[0], other->_impl_._has_bits_[0]); - _impl_.keys_.InternalSwap(&other->_impl_.keys_); - _impl_.values_.InternalSwap(&other->_impl_.values_); - ::_pbi::ArenaStringPtr::InternalSwap(&_impl_.default_string_, &other->_impl_.default_string_, arena); -} - -::google::protobuf::Metadata FigureDescriptor_StringMapWithDefault::GetMetadata() const { - return ::google::protobuf::Message::GetMetadataImpl(GetClassData()->full()); -} -// =================================================================== - -class FigureDescriptor_DoubleMapWithDefault::_Internal { - public: - using HasBits = - decltype(std::declval()._impl_._has_bits_); - static constexpr ::int32_t kHasBitsOffset = - 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 ::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_DoubleMapWithDefault& from_msg) - : _has_bits_{from._has_bits_}, - _cached_size_{0}, - keys_{visibility, arena, from.keys_}, - values_{visibility, arena, from.values_} {} - -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_, from); - _impl_.default_double_ = from._impl_.default_double_; - - // @@protoc_insertion_point(copy_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) - : _cached_size_{0}, - keys_{visibility, arena}, - values_{visibility, arena} {} - -inline void FigureDescriptor_DoubleMapWithDefault::SharedCtor(::_pb::Arena* arena) { - new (&_impl_) Impl_(internal_visibility(), arena); - _impl_.default_double_ = {}; -} -FigureDescriptor_DoubleMapWithDefault::~FigureDescriptor_DoubleMapWithDefault() { - // @@protoc_insertion_point(destructor:io.deephaven.proto.backplane.script.grpc.FigureDescriptor.DoubleMapWithDefault) - _internal_metadata_.Delete<::google::protobuf::UnknownFieldSet>(); - SharedDtor(); -} -inline void FigureDescriptor_DoubleMapWithDefault::SharedDtor() { - ABSL_DCHECK(GetArena() == nullptr); - _impl_.~Impl_(); -} - -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_ = { - { - PROTOBUF_FIELD_OFFSET(FigureDescriptor_DoubleMapWithDefault, _impl_._has_bits_), - 0, // no _extensions_ - 3, 24, // max_field_number, fast_idx_mask - offsetof(decltype(_table_), field_lookup_table), - 4294967288, // skipmap - offsetof(decltype(_table_), field_entries), - 3, // 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::FigureDescriptor_DoubleMapWithDefault>(), // to_prefetch - #endif // PROTOBUF_PREFETCH_PARSE_TABLE - }, {{ - {::_pbi::TcParser::MiniParse, {}}, - // optional double default_double = 1; - {::_pbi::TcParser::FastF64S1, - {9, 0, 0, PROTOBUF_FIELD_OFFSET(FigureDescriptor_DoubleMapWithDefault, _impl_.default_double_)}}, - // repeated string keys = 2; - {::_pbi::TcParser::FastUR1, - {18, 63, 0, PROTOBUF_FIELD_OFFSET(FigureDescriptor_DoubleMapWithDefault, _impl_.keys_)}}, - // repeated double values = 3; - {::_pbi::TcParser::FastF64P1, - {26, 63, 0, PROTOBUF_FIELD_OFFSET(FigureDescriptor_DoubleMapWithDefault, _impl_.values_)}}, - }}, {{ - 65535, 65535 - }}, {{ - // optional double default_double = 1; - {PROTOBUF_FIELD_OFFSET(FigureDescriptor_DoubleMapWithDefault, _impl_.default_double_), _Internal::kHasBitsOffset + 0, 0, - (0 | ::_fl::kFcOptional | ::_fl::kDouble)}, - // repeated string keys = 2; - {PROTOBUF_FIELD_OFFSET(FigureDescriptor_DoubleMapWithDefault, _impl_.keys_), -1, 0, - (0 | ::_fl::kFcRepeated | ::_fl::kUtf8String | ::_fl::kRepSString)}, - // repeated double values = 3; - {PROTOBUF_FIELD_OFFSET(FigureDescriptor_DoubleMapWithDefault, _impl_.values_), -1, 0, - (0 | ::_fl::kFcRepeated | ::_fl::kPackedDouble)}, - }}, - // no aux_entries - {{ - "\116\0\4\0\0\0\0\0" - "io.deephaven.proto.backplane.script.grpc.FigureDescriptor.DoubleMapWithDefault" - "keys" - }}, -}; - -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; - - _impl_.keys_.Clear(); - _impl_.values_.Clear(); - _impl_.default_double_ = 0; - _impl_._has_bits_.Clear(); - _internal_metadata_.Clear<::google::protobuf::UnknownFieldSet>(); -} - -#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) - ABSL_DCHECK_NE(&from, _this); - ::uint32_t cached_has_bits = 0; - (void) cached_has_bits; - - _this->_internal_mutable_keys()->MergeFrom(from._internal_keys()); - _this->_internal_mutable_values()->MergeFrom(from._internal_values()); - 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_); -} - -void FigureDescriptor_DoubleMapWithDefault::CopyFrom(const FigureDescriptor_DoubleMapWithDefault& from) { -// @@protoc_insertion_point(class_specific_copy_from_start:io.deephaven.proto.backplane.script.grpc.FigureDescriptor.DoubleMapWithDefault) - if (&from == this) return; - Clear(); - MergeFrom(from); -} - - -void FigureDescriptor_DoubleMapWithDefault::InternalSwap(FigureDescriptor_DoubleMapWithDefault* PROTOBUF_RESTRICT other) { - using std::swap; - _internal_metadata_.InternalSwap(&other->_internal_metadata_); - swap(_impl_._has_bits_[0], other->_impl_._has_bits_[0]); - _impl_.keys_.InternalSwap(&other->_impl_.keys_); - _impl_.values_.InternalSwap(&other->_impl_.values_); - swap(_impl_.default_double_, other->_impl_.default_double_); -} - -::google::protobuf::Metadata FigureDescriptor_DoubleMapWithDefault::GetMetadata() const { - return ::google::protobuf::Message::GetMetadataImpl(GetClassData()->full()); -} -// =================================================================== - -class FigureDescriptor_BoolMapWithDefault::_Internal { - public: - using HasBits = - decltype(std::declval()._impl_._has_bits_); - static constexpr ::int32_t kHasBitsOffset = - 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 ::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_BoolMapWithDefault& from_msg) - : _has_bits_{from._has_bits_}, - _cached_size_{0}, - keys_{visibility, arena, from.keys_}, - values_{visibility, arena, from.values_} {} - -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_, from); - _impl_.default_bool_ = from._impl_.default_bool_; - - // @@protoc_insertion_point(copy_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) - : _cached_size_{0}, - keys_{visibility, arena}, - values_{visibility, arena} {} - -inline void FigureDescriptor_BoolMapWithDefault::SharedCtor(::_pb::Arena* arena) { - new (&_impl_) Impl_(internal_visibility(), arena); - _impl_.default_bool_ = {}; -} -FigureDescriptor_BoolMapWithDefault::~FigureDescriptor_BoolMapWithDefault() { - // @@protoc_insertion_point(destructor:io.deephaven.proto.backplane.script.grpc.FigureDescriptor.BoolMapWithDefault) - _internal_metadata_.Delete<::google::protobuf::UnknownFieldSet>(); - SharedDtor(); -} -inline void FigureDescriptor_BoolMapWithDefault::SharedDtor() { - ABSL_DCHECK(GetArena() == nullptr); - _impl_.~Impl_(); -} - -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_ = { - { - PROTOBUF_FIELD_OFFSET(FigureDescriptor_BoolMapWithDefault, _impl_._has_bits_), - 0, // no _extensions_ - 3, 24, // max_field_number, fast_idx_mask - offsetof(decltype(_table_), field_lookup_table), - 4294967288, // skipmap - offsetof(decltype(_table_), field_entries), - 3, // 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::FigureDescriptor_BoolMapWithDefault>(), // to_prefetch - #endif // PROTOBUF_PREFETCH_PARSE_TABLE - }, {{ - {::_pbi::TcParser::MiniParse, {}}, - // optional bool default_bool = 1; - {::_pbi::TcParser::SingularVarintNoZag1(), - {8, 0, 0, PROTOBUF_FIELD_OFFSET(FigureDescriptor_BoolMapWithDefault, _impl_.default_bool_)}}, - // repeated string keys = 2; - {::_pbi::TcParser::FastUR1, - {18, 63, 0, PROTOBUF_FIELD_OFFSET(FigureDescriptor_BoolMapWithDefault, _impl_.keys_)}}, - // repeated bool values = 3; - {::_pbi::TcParser::FastV8P1, - {26, 63, 0, PROTOBUF_FIELD_OFFSET(FigureDescriptor_BoolMapWithDefault, _impl_.values_)}}, - }}, {{ - 65535, 65535 - }}, {{ - // optional bool default_bool = 1; - {PROTOBUF_FIELD_OFFSET(FigureDescriptor_BoolMapWithDefault, _impl_.default_bool_), _Internal::kHasBitsOffset + 0, 0, - (0 | ::_fl::kFcOptional | ::_fl::kBool)}, - // repeated string keys = 2; - {PROTOBUF_FIELD_OFFSET(FigureDescriptor_BoolMapWithDefault, _impl_.keys_), -1, 0, - (0 | ::_fl::kFcRepeated | ::_fl::kUtf8String | ::_fl::kRepSString)}, - // repeated bool values = 3; - {PROTOBUF_FIELD_OFFSET(FigureDescriptor_BoolMapWithDefault, _impl_.values_), -1, 0, - (0 | ::_fl::kFcRepeated | ::_fl::kPackedBool)}, - }}, - // no aux_entries - {{ - "\114\0\4\0\0\0\0\0" - "io.deephaven.proto.backplane.script.grpc.FigureDescriptor.BoolMapWithDefault" - "keys" - }}, -}; - -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; - - _impl_.keys_.Clear(); - _impl_.values_.Clear(); - _impl_.default_bool_ = false; - _impl_._has_bits_.Clear(); - _internal_metadata_.Clear<::google::protobuf::UnknownFieldSet>(); -} - -#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) - ABSL_DCHECK_NE(&from, _this); - ::uint32_t cached_has_bits = 0; - (void) cached_has_bits; - - _this->_internal_mutable_keys()->MergeFrom(from._internal_keys()); - _this->_internal_mutable_values()->MergeFrom(from._internal_values()); - 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_); -} - -void FigureDescriptor_BoolMapWithDefault::CopyFrom(const FigureDescriptor_BoolMapWithDefault& from) { -// @@protoc_insertion_point(class_specific_copy_from_start:io.deephaven.proto.backplane.script.grpc.FigureDescriptor.BoolMapWithDefault) - if (&from == this) return; - Clear(); - MergeFrom(from); -} - - -void FigureDescriptor_BoolMapWithDefault::InternalSwap(FigureDescriptor_BoolMapWithDefault* PROTOBUF_RESTRICT other) { - using std::swap; - _internal_metadata_.InternalSwap(&other->_internal_metadata_); - swap(_impl_._has_bits_[0], other->_impl_._has_bits_[0]); - _impl_.keys_.InternalSwap(&other->_impl_.keys_); - _impl_.values_.InternalSwap(&other->_impl_.values_); - swap(_impl_.default_bool_, other->_impl_.default_bool_); -} - -::google::protobuf::Metadata FigureDescriptor_BoolMapWithDefault::GetMetadata() const { - return ::google::protobuf::Message::GetMetadataImpl(GetClassData()->full()); -} -// =================================================================== - -class FigureDescriptor_AxisDescriptor::_Internal { - public: - using HasBits = - decltype(std::declval()._impl_._has_bits_); - static constexpr ::int32_t kHasBitsOffset = - 8 * PROTOBUF_FIELD_OFFSET(FigureDescriptor_AxisDescriptor, _impl_._has_bits_); -}; - -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 ::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_}, - id_(arena, from.id_), - label_(arena, from.label_), - label_font_(arena, from.label_font_), - ticks_font_(arena, from.ticks_font_), - format_pattern_(arena, from.format_pattern_), - color_(arena, from.color_) {} - -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_, from); - ::uint32_t cached_has_bits = _impl_._has_bits_[0]; - _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_) + - offsetof(Impl_, format_type_), - offsetof(Impl_, tick_label_angle_) - - offsetof(Impl_, format_type_) + - sizeof(Impl_::tick_label_angle_)); - - // @@protoc_insertion_point(copy_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) - : _cached_size_{0}, - major_tick_locations_{visibility, arena}, - id_(arena), - label_(arena), - label_font_(arena), - ticks_font_(arena), - format_pattern_(arena), - color_(arena) {} - -inline void FigureDescriptor_AxisDescriptor::SharedCtor(::_pb::Arena* arena) { - new (&_impl_) Impl_(internal_visibility(), arena); - ::memset(reinterpret_cast(&_impl_) + - offsetof(Impl_, business_calendar_descriptor_), - 0, - offsetof(Impl_, tick_label_angle_) - - offsetof(Impl_, business_calendar_descriptor_) + - sizeof(Impl_::tick_label_angle_)); -} -FigureDescriptor_AxisDescriptor::~FigureDescriptor_AxisDescriptor() { - // @@protoc_insertion_point(destructor:io.deephaven.proto.backplane.script.grpc.FigureDescriptor.AxisDescriptor) - _internal_metadata_.Delete<::google::protobuf::UnknownFieldSet>(); - SharedDtor(); -} -inline void FigureDescriptor_AxisDescriptor::SharedDtor() { - ABSL_DCHECK(GetArena() == nullptr); - _impl_.id_.Destroy(); - _impl_.label_.Destroy(); - _impl_.label_font_.Destroy(); - _impl_.ticks_font_.Destroy(); - _impl_.format_pattern_.Destroy(); - _impl_.color_.Destroy(); - delete _impl_.business_calendar_descriptor_; - _impl_.~Impl_(); -} - -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_ = { - { - PROTOBUF_FIELD_OFFSET(FigureDescriptor_AxisDescriptor, _impl_._has_bits_), - 0, // no _extensions_ - 21, 248, // max_field_number, fast_idx_mask - offsetof(decltype(_table_), field_lookup_table), - 4292870144, // skipmap - offsetof(decltype(_table_), field_entries), - 21, // num_field_entries - 1, // num_aux_entries - offsetof(decltype(_table_), 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::FigureDescriptor_AxisDescriptor>(), // to_prefetch - #endif // PROTOBUF_PREFETCH_PARSE_TABLE - }, {{ - {::_pbi::TcParser::MiniParse, {}}, - // string id = 1; - {::_pbi::TcParser::FastUS1, - {10, 63, 0, PROTOBUF_FIELD_OFFSET(FigureDescriptor_AxisDescriptor, _impl_.id_)}}, - // .io.deephaven.proto.backplane.script.grpc.FigureDescriptor.AxisDescriptor.AxisFormatType format_type = 2; - {::_pbi::TcParser::SingularVarintNoZag1<::uint32_t, offsetof(FigureDescriptor_AxisDescriptor, _impl_.format_type_), 63>(), - {16, 63, 0, PROTOBUF_FIELD_OFFSET(FigureDescriptor_AxisDescriptor, _impl_.format_type_)}}, - // .io.deephaven.proto.backplane.script.grpc.FigureDescriptor.AxisDescriptor.AxisType type = 3; - {::_pbi::TcParser::SingularVarintNoZag1<::uint32_t, offsetof(FigureDescriptor_AxisDescriptor, _impl_.type_), 63>(), - {24, 63, 0, PROTOBUF_FIELD_OFFSET(FigureDescriptor_AxisDescriptor, _impl_.type_)}}, - // .io.deephaven.proto.backplane.script.grpc.FigureDescriptor.AxisDescriptor.AxisPosition position = 4; - {::_pbi::TcParser::SingularVarintNoZag1<::uint32_t, offsetof(FigureDescriptor_AxisDescriptor, _impl_.position_), 63>(), - {32, 63, 0, PROTOBUF_FIELD_OFFSET(FigureDescriptor_AxisDescriptor, _impl_.position_)}}, - // bool log = 5; - {::_pbi::TcParser::SingularVarintNoZag1(), - {40, 63, 0, PROTOBUF_FIELD_OFFSET(FigureDescriptor_AxisDescriptor, _impl_.log_)}}, - // string label = 6; - {::_pbi::TcParser::FastUS1, - {50, 63, 0, PROTOBUF_FIELD_OFFSET(FigureDescriptor_AxisDescriptor, _impl_.label_)}}, - // string label_font = 7; - {::_pbi::TcParser::FastUS1, - {58, 63, 0, PROTOBUF_FIELD_OFFSET(FigureDescriptor_AxisDescriptor, _impl_.label_font_)}}, - // string ticks_font = 8; - {::_pbi::TcParser::FastUS1, - {66, 63, 0, PROTOBUF_FIELD_OFFSET(FigureDescriptor_AxisDescriptor, _impl_.ticks_font_)}}, - // optional string format_pattern = 9; - {::_pbi::TcParser::FastUS1, - {74, 0, 0, PROTOBUF_FIELD_OFFSET(FigureDescriptor_AxisDescriptor, _impl_.format_pattern_)}}, - // string color = 10; - {::_pbi::TcParser::FastUS1, - {82, 63, 0, PROTOBUF_FIELD_OFFSET(FigureDescriptor_AxisDescriptor, _impl_.color_)}}, - // double min_range = 11; - {::_pbi::TcParser::FastF64S1, - {89, 63, 0, PROTOBUF_FIELD_OFFSET(FigureDescriptor_AxisDescriptor, _impl_.min_range_)}}, - // double max_range = 12; - {::_pbi::TcParser::FastF64S1, - {97, 63, 0, PROTOBUF_FIELD_OFFSET(FigureDescriptor_AxisDescriptor, _impl_.max_range_)}}, - // bool minor_ticks_visible = 13; - {::_pbi::TcParser::SingularVarintNoZag1(), - {104, 63, 0, PROTOBUF_FIELD_OFFSET(FigureDescriptor_AxisDescriptor, _impl_.minor_ticks_visible_)}}, - // bool major_ticks_visible = 14; - {::_pbi::TcParser::SingularVarintNoZag1(), - {112, 63, 0, PROTOBUF_FIELD_OFFSET(FigureDescriptor_AxisDescriptor, _impl_.major_ticks_visible_)}}, - // int32 minor_tick_count = 15; - {::_pbi::TcParser::SingularVarintNoZag1<::uint32_t, offsetof(FigureDescriptor_AxisDescriptor, _impl_.minor_tick_count_), 63>(), - {120, 63, 0, PROTOBUF_FIELD_OFFSET(FigureDescriptor_AxisDescriptor, _impl_.minor_tick_count_)}}, - // optional double gap_between_major_ticks = 16; - {::_pbi::TcParser::FastF64S2, - {385, 2, 0, PROTOBUF_FIELD_OFFSET(FigureDescriptor_AxisDescriptor, _impl_.gap_between_major_ticks_)}}, - // repeated double major_tick_locations = 17; - {::_pbi::TcParser::FastF64P2, - {394, 63, 0, PROTOBUF_FIELD_OFFSET(FigureDescriptor_AxisDescriptor, _impl_.major_tick_locations_)}}, - // double tick_label_angle = 18; - {::_pbi::TcParser::FastF64S2, - {401, 63, 0, PROTOBUF_FIELD_OFFSET(FigureDescriptor_AxisDescriptor, _impl_.tick_label_angle_)}}, - // bool invert = 19; - {::_pbi::TcParser::FastV8S2, - {408, 63, 0, PROTOBUF_FIELD_OFFSET(FigureDescriptor_AxisDescriptor, _impl_.invert_)}}, - // bool is_time_axis = 20; - {::_pbi::TcParser::FastV8S2, - {416, 63, 0, PROTOBUF_FIELD_OFFSET(FigureDescriptor_AxisDescriptor, _impl_.is_time_axis_)}}, - // .io.deephaven.proto.backplane.script.grpc.FigureDescriptor.BusinessCalendarDescriptor business_calendar_descriptor = 21; - {::_pbi::TcParser::FastMtS2, - {426, 1, 0, PROTOBUF_FIELD_OFFSET(FigureDescriptor_AxisDescriptor, _impl_.business_calendar_descriptor_)}}, - {::_pbi::TcParser::MiniParse, {}}, - {::_pbi::TcParser::MiniParse, {}}, - {::_pbi::TcParser::MiniParse, {}}, - {::_pbi::TcParser::MiniParse, {}}, - {::_pbi::TcParser::MiniParse, {}}, - {::_pbi::TcParser::MiniParse, {}}, - {::_pbi::TcParser::MiniParse, {}}, - {::_pbi::TcParser::MiniParse, {}}, - {::_pbi::TcParser::MiniParse, {}}, - {::_pbi::TcParser::MiniParse, {}}, - }}, {{ - 65535, 65535 - }}, {{ - // string id = 1; - {PROTOBUF_FIELD_OFFSET(FigureDescriptor_AxisDescriptor, _impl_.id_), -1, 0, - (0 | ::_fl::kFcSingular | ::_fl::kUtf8String | ::_fl::kRepAString)}, - // .io.deephaven.proto.backplane.script.grpc.FigureDescriptor.AxisDescriptor.AxisFormatType format_type = 2; - {PROTOBUF_FIELD_OFFSET(FigureDescriptor_AxisDescriptor, _impl_.format_type_), -1, 0, - (0 | ::_fl::kFcSingular | ::_fl::kOpenEnum)}, - // .io.deephaven.proto.backplane.script.grpc.FigureDescriptor.AxisDescriptor.AxisType type = 3; - {PROTOBUF_FIELD_OFFSET(FigureDescriptor_AxisDescriptor, _impl_.type_), -1, 0, - (0 | ::_fl::kFcSingular | ::_fl::kOpenEnum)}, - // .io.deephaven.proto.backplane.script.grpc.FigureDescriptor.AxisDescriptor.AxisPosition position = 4; - {PROTOBUF_FIELD_OFFSET(FigureDescriptor_AxisDescriptor, _impl_.position_), -1, 0, - (0 | ::_fl::kFcSingular | ::_fl::kOpenEnum)}, - // bool log = 5; - {PROTOBUF_FIELD_OFFSET(FigureDescriptor_AxisDescriptor, _impl_.log_), -1, 0, - (0 | ::_fl::kFcSingular | ::_fl::kBool)}, - // string label = 6; - {PROTOBUF_FIELD_OFFSET(FigureDescriptor_AxisDescriptor, _impl_.label_), -1, 0, - (0 | ::_fl::kFcSingular | ::_fl::kUtf8String | ::_fl::kRepAString)}, - // string label_font = 7; - {PROTOBUF_FIELD_OFFSET(FigureDescriptor_AxisDescriptor, _impl_.label_font_), -1, 0, - (0 | ::_fl::kFcSingular | ::_fl::kUtf8String | ::_fl::kRepAString)}, - // string ticks_font = 8; - {PROTOBUF_FIELD_OFFSET(FigureDescriptor_AxisDescriptor, _impl_.ticks_font_), -1, 0, - (0 | ::_fl::kFcSingular | ::_fl::kUtf8String | ::_fl::kRepAString)}, - // optional string format_pattern = 9; - {PROTOBUF_FIELD_OFFSET(FigureDescriptor_AxisDescriptor, _impl_.format_pattern_), _Internal::kHasBitsOffset + 0, 0, - (0 | ::_fl::kFcOptional | ::_fl::kUtf8String | ::_fl::kRepAString)}, - // string color = 10; - {PROTOBUF_FIELD_OFFSET(FigureDescriptor_AxisDescriptor, _impl_.color_), -1, 0, - (0 | ::_fl::kFcSingular | ::_fl::kUtf8String | ::_fl::kRepAString)}, - // double min_range = 11; - {PROTOBUF_FIELD_OFFSET(FigureDescriptor_AxisDescriptor, _impl_.min_range_), -1, 0, - (0 | ::_fl::kFcSingular | ::_fl::kDouble)}, - // double max_range = 12; - {PROTOBUF_FIELD_OFFSET(FigureDescriptor_AxisDescriptor, _impl_.max_range_), -1, 0, - (0 | ::_fl::kFcSingular | ::_fl::kDouble)}, - // bool minor_ticks_visible = 13; - {PROTOBUF_FIELD_OFFSET(FigureDescriptor_AxisDescriptor, _impl_.minor_ticks_visible_), -1, 0, - (0 | ::_fl::kFcSingular | ::_fl::kBool)}, - // bool major_ticks_visible = 14; - {PROTOBUF_FIELD_OFFSET(FigureDescriptor_AxisDescriptor, _impl_.major_ticks_visible_), -1, 0, - (0 | ::_fl::kFcSingular | ::_fl::kBool)}, - // int32 minor_tick_count = 15; - {PROTOBUF_FIELD_OFFSET(FigureDescriptor_AxisDescriptor, _impl_.minor_tick_count_), -1, 0, - (0 | ::_fl::kFcSingular | ::_fl::kInt32)}, - // optional double gap_between_major_ticks = 16; - {PROTOBUF_FIELD_OFFSET(FigureDescriptor_AxisDescriptor, _impl_.gap_between_major_ticks_), _Internal::kHasBitsOffset + 2, 0, - (0 | ::_fl::kFcOptional | ::_fl::kDouble)}, - // repeated double major_tick_locations = 17; - {PROTOBUF_FIELD_OFFSET(FigureDescriptor_AxisDescriptor, _impl_.major_tick_locations_), -1, 0, - (0 | ::_fl::kFcRepeated | ::_fl::kPackedDouble)}, - // double tick_label_angle = 18; - {PROTOBUF_FIELD_OFFSET(FigureDescriptor_AxisDescriptor, _impl_.tick_label_angle_), -1, 0, - (0 | ::_fl::kFcSingular | ::_fl::kDouble)}, - // bool invert = 19; - {PROTOBUF_FIELD_OFFSET(FigureDescriptor_AxisDescriptor, _impl_.invert_), -1, 0, - (0 | ::_fl::kFcSingular | ::_fl::kBool)}, - // bool is_time_axis = 20; - {PROTOBUF_FIELD_OFFSET(FigureDescriptor_AxisDescriptor, _impl_.is_time_axis_), -1, 0, - (0 | ::_fl::kFcSingular | ::_fl::kBool)}, - // .io.deephaven.proto.backplane.script.grpc.FigureDescriptor.BusinessCalendarDescriptor business_calendar_descriptor = 21; - {PROTOBUF_FIELD_OFFSET(FigureDescriptor_AxisDescriptor, _impl_.business_calendar_descriptor_), _Internal::kHasBitsOffset + 1, 0, - (0 | ::_fl::kFcOptional | ::_fl::kMessage | ::_fl::kTvTable)}, - }}, {{ - {::_pbi::TcParser::GetTable<::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_BusinessCalendarDescriptor>()}, - }}, {{ - "\110\2\0\0\0\0\5\12\12\16\5\0\0\0\0\0\0\0\0\0\0\0\0\0" - "io.deephaven.proto.backplane.script.grpc.FigureDescriptor.AxisDescriptor" - "id" - "label" - "label_font" - "ticks_font" - "format_pattern" - "color" - }}, -}; - -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; - - _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>(); -} - -#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; - (void) cached_has_bits; - - _this->_internal_mutable_major_tick_locations()->MergeFrom(from._internal_major_tick_locations()); - if (!from._internal_id().empty()) { - _this->_internal_set_id(from._internal_id()); - } - if (!from._internal_label().empty()) { - _this->_internal_set_label(from._internal_label()); - } - if (!from._internal_label_font().empty()) { - _this->_internal_set_label_font(from._internal_label_font()); - } - if (!from._internal_ticks_font().empty()) { - _this->_internal_set_ticks_font(from._internal_ticks_font()); - } - 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 (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->_impl_.format_type_ = from._impl_.format_type_; - } - if (from._internal_type() != 0) { - _this->_impl_.type_ = from._impl_.type_; - } - 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->_impl_.position_ = from._impl_.position_; - } - if (from._internal_log() != 0) { - _this->_impl_.log_ = from._impl_.log_; - } - if (from._internal_minor_ticks_visible() != 0) { - _this->_impl_.minor_ticks_visible_ = from._impl_.minor_ticks_visible_; - } - if (from._internal_major_ticks_visible() != 0) { - _this->_impl_.major_ticks_visible_ = from._impl_.major_ticks_visible_; - } - if (from._internal_invert() != 0) { - _this->_impl_.invert_ = from._impl_.invert_; - } - if (::absl::bit_cast<::uint64_t>(from._internal_max_range()) != 0) { - _this->_impl_.max_range_ = from._impl_.max_range_; - } - 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->_impl_.minor_tick_count_ = from._impl_.minor_tick_count_; - } - if (from._internal_is_time_axis() != 0) { - _this->_impl_.is_time_axis_ = from._impl_.is_time_axis_; - } - 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_); -} - -void FigureDescriptor_AxisDescriptor::CopyFrom(const FigureDescriptor_AxisDescriptor& from) { -// @@protoc_insertion_point(class_specific_copy_from_start:io.deephaven.proto.backplane.script.grpc.FigureDescriptor.AxisDescriptor) - if (&from == this) return; - Clear(); - MergeFrom(from); -} - - -void FigureDescriptor_AxisDescriptor::InternalSwap(FigureDescriptor_AxisDescriptor* PROTOBUF_RESTRICT other) { - using std::swap; - auto* arena = GetArena(); - ABSL_DCHECK_EQ(arena, other->GetArena()); - _internal_metadata_.InternalSwap(&other->_internal_metadata_); - swap(_impl_._has_bits_[0], other->_impl_._has_bits_[0]); - _impl_.major_tick_locations_.InternalSwap(&other->_impl_.major_tick_locations_); - ::_pbi::ArenaStringPtr::InternalSwap(&_impl_.id_, &other->_impl_.id_, arena); - ::_pbi::ArenaStringPtr::InternalSwap(&_impl_.label_, &other->_impl_.label_, arena); - ::_pbi::ArenaStringPtr::InternalSwap(&_impl_.label_font_, &other->_impl_.label_font_, arena); - ::_pbi::ArenaStringPtr::InternalSwap(&_impl_.ticks_font_, &other->_impl_.ticks_font_, arena); - ::_pbi::ArenaStringPtr::InternalSwap(&_impl_.format_pattern_, &other->_impl_.format_pattern_, arena); - ::_pbi::ArenaStringPtr::InternalSwap(&_impl_.color_, &other->_impl_.color_, arena); - ::google::protobuf::internal::memswap< - PROTOBUF_FIELD_OFFSET(FigureDescriptor_AxisDescriptor, _impl_.tick_label_angle_) - + sizeof(FigureDescriptor_AxisDescriptor::_impl_.tick_label_angle_) - - PROTOBUF_FIELD_OFFSET(FigureDescriptor_AxisDescriptor, _impl_.business_calendar_descriptor_)>( - reinterpret_cast(&_impl_.business_calendar_descriptor_), - reinterpret_cast(&other->_impl_.business_calendar_descriptor_)); -} - -::google::protobuf::Metadata FigureDescriptor_AxisDescriptor::GetMetadata() const { - return ::google::protobuf::Message::GetMetadataImpl(GetClassData()->full()); -} -// =================================================================== - -class FigureDescriptor_BusinessCalendarDescriptor_BusinessPeriod::_Internal { - public: -}; - -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 ::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_BusinessCalendarDescriptor_BusinessPeriod& from_msg) - : open_(arena, from.open_), - close_(arena, from.close_), - _cached_size_{0} {} - -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_, from); - - // @@protoc_insertion_point(copy_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) - : open_(arena), - close_(arena), - _cached_size_{0} {} - -inline void FigureDescriptor_BusinessCalendarDescriptor_BusinessPeriod::SharedCtor(::_pb::Arena* arena) { - new (&_impl_) Impl_(internal_visibility(), arena); -} -FigureDescriptor_BusinessCalendarDescriptor_BusinessPeriod::~FigureDescriptor_BusinessCalendarDescriptor_BusinessPeriod() { - // @@protoc_insertion_point(destructor:io.deephaven.proto.backplane.script.grpc.FigureDescriptor.BusinessCalendarDescriptor.BusinessPeriod) - _internal_metadata_.Delete<::google::protobuf::UnknownFieldSet>(); - SharedDtor(); -} -inline void FigureDescriptor_BusinessCalendarDescriptor_BusinessPeriod::SharedDtor() { - ABSL_DCHECK(GetArena() == nullptr); - _impl_.open_.Destroy(); - _impl_.close_.Destroy(); - _impl_.~Impl_(); -} - -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_ = { - { - 0, // no _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 - 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::FigureDescriptor_BusinessCalendarDescriptor_BusinessPeriod>(), // to_prefetch - #endif // PROTOBUF_PREFETCH_PARSE_TABLE - }, {{ - // string close = 2; - {::_pbi::TcParser::FastUS1, - {18, 63, 0, PROTOBUF_FIELD_OFFSET(FigureDescriptor_BusinessCalendarDescriptor_BusinessPeriod, _impl_.close_)}}, - // string open = 1; - {::_pbi::TcParser::FastUS1, - {10, 63, 0, PROTOBUF_FIELD_OFFSET(FigureDescriptor_BusinessCalendarDescriptor_BusinessPeriod, _impl_.open_)}}, - }}, {{ - 65535, 65535 - }}, {{ - // string open = 1; - {PROTOBUF_FIELD_OFFSET(FigureDescriptor_BusinessCalendarDescriptor_BusinessPeriod, _impl_.open_), 0, 0, - (0 | ::_fl::kFcSingular | ::_fl::kUtf8String | ::_fl::kRepAString)}, - // string close = 2; - {PROTOBUF_FIELD_OFFSET(FigureDescriptor_BusinessCalendarDescriptor_BusinessPeriod, _impl_.close_), 0, 0, - (0 | ::_fl::kFcSingular | ::_fl::kUtf8String | ::_fl::kRepAString)}, - }}, - // no aux_entries - {{ - "\143\4\5\0\0\0\0\0" - "io.deephaven.proto.backplane.script.grpc.FigureDescriptor.BusinessCalendarDescriptor.BusinessPeriod" - "open" - "close" - }}, -}; - -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; - - _impl_.open_.ClearToEmpty(); - _impl_.close_.ClearToEmpty(); - _internal_metadata_.Clear<::google::protobuf::UnknownFieldSet>(); -} - -#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) - ABSL_DCHECK_NE(&from, _this); - ::uint32_t cached_has_bits = 0; - (void) cached_has_bits; - - if (!from._internal_open().empty()) { - _this->_internal_set_open(from._internal_open()); - } - if (!from._internal_close().empty()) { - _this->_internal_set_close(from._internal_close()); - } - _this->_internal_metadata_.MergeFrom<::google::protobuf::UnknownFieldSet>(from._internal_metadata_); -} - -void FigureDescriptor_BusinessCalendarDescriptor_BusinessPeriod::CopyFrom(const FigureDescriptor_BusinessCalendarDescriptor_BusinessPeriod& from) { -// @@protoc_insertion_point(class_specific_copy_from_start:io.deephaven.proto.backplane.script.grpc.FigureDescriptor.BusinessCalendarDescriptor.BusinessPeriod) - if (&from == this) return; - Clear(); - MergeFrom(from); -} - - -void FigureDescriptor_BusinessCalendarDescriptor_BusinessPeriod::InternalSwap(FigureDescriptor_BusinessCalendarDescriptor_BusinessPeriod* PROTOBUF_RESTRICT other) { - using std::swap; - auto* arena = GetArena(); - ABSL_DCHECK_EQ(arena, other->GetArena()); - _internal_metadata_.InternalSwap(&other->_internal_metadata_); - ::_pbi::ArenaStringPtr::InternalSwap(&_impl_.open_, &other->_impl_.open_, arena); - ::_pbi::ArenaStringPtr::InternalSwap(&_impl_.close_, &other->_impl_.close_, arena); -} - -::google::protobuf::Metadata FigureDescriptor_BusinessCalendarDescriptor_BusinessPeriod::GetMetadata() const { - return ::google::protobuf::Message::GetMetadataImpl(GetClassData()->full()); -} -// =================================================================== - -class FigureDescriptor_BusinessCalendarDescriptor_Holiday::_Internal { - public: - using HasBits = - decltype(std::declval()._impl_._has_bits_); - static constexpr ::int32_t kHasBitsOffset = - 8 * PROTOBUF_FIELD_OFFSET(FigureDescriptor_BusinessCalendarDescriptor_Holiday, _impl_._has_bits_); -}; - -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 ::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_} {} - -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_, from); - ::uint32_t cached_has_bits = _impl_._has_bits_[0]; - _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) -} -inline PROTOBUF_NDEBUG_INLINE FigureDescriptor_BusinessCalendarDescriptor_Holiday::Impl_::Impl_( - ::google::protobuf::internal::InternalVisibility visibility, - ::google::protobuf::Arena* arena) - : _cached_size_{0}, - business_periods_{visibility, arena} {} - -inline void FigureDescriptor_BusinessCalendarDescriptor_Holiday::SharedCtor(::_pb::Arena* arena) { - new (&_impl_) Impl_(internal_visibility(), arena); - _impl_.date_ = {}; -} -FigureDescriptor_BusinessCalendarDescriptor_Holiday::~FigureDescriptor_BusinessCalendarDescriptor_Holiday() { - // @@protoc_insertion_point(destructor:io.deephaven.proto.backplane.script.grpc.FigureDescriptor.BusinessCalendarDescriptor.Holiday) - _internal_metadata_.Delete<::google::protobuf::UnknownFieldSet>(); - SharedDtor(); -} -inline void FigureDescriptor_BusinessCalendarDescriptor_Holiday::SharedDtor() { - ABSL_DCHECK(GetArena() == nullptr); - delete _impl_.date_; - _impl_.~Impl_(); -} - -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_ = { - { - PROTOBUF_FIELD_OFFSET(FigureDescriptor_BusinessCalendarDescriptor_Holiday, _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 - 2, // num_aux_entries - offsetof(decltype(_table_), 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::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, - {18, 63, 1, PROTOBUF_FIELD_OFFSET(FigureDescriptor_BusinessCalendarDescriptor_Holiday, _impl_.business_periods_)}}, - // .io.deephaven.proto.backplane.script.grpc.FigureDescriptor.BusinessCalendarDescriptor.LocalDate date = 1; - {::_pbi::TcParser::FastMtS1, - {10, 0, 0, PROTOBUF_FIELD_OFFSET(FigureDescriptor_BusinessCalendarDescriptor_Holiday, _impl_.date_)}}, - }}, {{ - 65535, 65535 - }}, {{ - // .io.deephaven.proto.backplane.script.grpc.FigureDescriptor.BusinessCalendarDescriptor.LocalDate date = 1; - {PROTOBUF_FIELD_OFFSET(FigureDescriptor_BusinessCalendarDescriptor_Holiday, _impl_.date_), _Internal::kHasBitsOffset + 0, 0, - (0 | ::_fl::kFcOptional | ::_fl::kMessage | ::_fl::kTvTable)}, - // repeated .io.deephaven.proto.backplane.script.grpc.FigureDescriptor.BusinessCalendarDescriptor.BusinessPeriod business_periods = 2; - {PROTOBUF_FIELD_OFFSET(FigureDescriptor_BusinessCalendarDescriptor_Holiday, _impl_.business_periods_), -1, 1, - (0 | ::_fl::kFcRepeated | ::_fl::kMessage | ::_fl::kTvTable)}, - }}, {{ - {::_pbi::TcParser::GetTable<::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_BusinessCalendarDescriptor_LocalDate>()}, - {::_pbi::TcParser::GetTable<::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_BusinessCalendarDescriptor_BusinessPeriod>()}, - }}, {{ - }}, -}; - -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; - - _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>(); -} - -#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; - (void) cached_has_bits; - - _this->_internal_mutable_business_periods()->MergeFrom( - from._internal_business_periods()); - 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_); -} - -void FigureDescriptor_BusinessCalendarDescriptor_Holiday::CopyFrom(const FigureDescriptor_BusinessCalendarDescriptor_Holiday& from) { -// @@protoc_insertion_point(class_specific_copy_from_start:io.deephaven.proto.backplane.script.grpc.FigureDescriptor.BusinessCalendarDescriptor.Holiday) - if (&from == this) return; - Clear(); - MergeFrom(from); -} - - -void FigureDescriptor_BusinessCalendarDescriptor_Holiday::InternalSwap(FigureDescriptor_BusinessCalendarDescriptor_Holiday* PROTOBUF_RESTRICT other) { - using std::swap; - _internal_metadata_.InternalSwap(&other->_internal_metadata_); - swap(_impl_._has_bits_[0], other->_impl_._has_bits_[0]); - _impl_.business_periods_.InternalSwap(&other->_impl_.business_periods_); - swap(_impl_.date_, other->_impl_.date_); -} - -::google::protobuf::Metadata FigureDescriptor_BusinessCalendarDescriptor_Holiday::GetMetadata() const { - return ::google::protobuf::Message::GetMetadataImpl(GetClassData()->full()); -} -// =================================================================== - -class FigureDescriptor_BusinessCalendarDescriptor_LocalDate::_Internal { - public: -}; - -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) -} -FigureDescriptor_BusinessCalendarDescriptor_LocalDate::FigureDescriptor_BusinessCalendarDescriptor_LocalDate( - ::google::protobuf::Arena* arena, const FigureDescriptor_BusinessCalendarDescriptor_LocalDate& from) - : FigureDescriptor_BusinessCalendarDescriptor_LocalDate(arena) { - MergeFrom(from); -} -inline PROTOBUF_NDEBUG_INLINE FigureDescriptor_BusinessCalendarDescriptor_LocalDate::Impl_::Impl_( - ::google::protobuf::internal::InternalVisibility visibility, - ::google::protobuf::Arena* arena) - : _cached_size_{0} {} - -inline void FigureDescriptor_BusinessCalendarDescriptor_LocalDate::SharedCtor(::_pb::Arena* arena) { - new (&_impl_) Impl_(internal_visibility(), arena); - ::memset(reinterpret_cast(&_impl_) + - offsetof(Impl_, year_), - 0, - offsetof(Impl_, day_) - - offsetof(Impl_, year_) + - sizeof(Impl_::day_)); -} -FigureDescriptor_BusinessCalendarDescriptor_LocalDate::~FigureDescriptor_BusinessCalendarDescriptor_LocalDate() { - // @@protoc_insertion_point(destructor:io.deephaven.proto.backplane.script.grpc.FigureDescriptor.BusinessCalendarDescriptor.LocalDate) - _internal_metadata_.Delete<::google::protobuf::UnknownFieldSet>(); - SharedDtor(); -} -inline void FigureDescriptor_BusinessCalendarDescriptor_LocalDate::SharedDtor() { - ABSL_DCHECK(GetArena() == nullptr); - _impl_.~Impl_(); -} - -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_ = { - { - 0, // no _has_bits_ - 0, // no _extensions_ - 3, 24, // max_field_number, fast_idx_mask - offsetof(decltype(_table_), field_lookup_table), - 4294967288, // skipmap - offsetof(decltype(_table_), field_entries), - 3, // 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::FigureDescriptor_BusinessCalendarDescriptor_LocalDate>(), // to_prefetch - #endif // PROTOBUF_PREFETCH_PARSE_TABLE - }, {{ - {::_pbi::TcParser::MiniParse, {}}, - // int32 year = 1; - {::_pbi::TcParser::SingularVarintNoZag1<::uint32_t, offsetof(FigureDescriptor_BusinessCalendarDescriptor_LocalDate, _impl_.year_), 63>(), - {8, 63, 0, PROTOBUF_FIELD_OFFSET(FigureDescriptor_BusinessCalendarDescriptor_LocalDate, _impl_.year_)}}, - // int32 month = 2; - {::_pbi::TcParser::SingularVarintNoZag1<::uint32_t, offsetof(FigureDescriptor_BusinessCalendarDescriptor_LocalDate, _impl_.month_), 63>(), - {16, 63, 0, PROTOBUF_FIELD_OFFSET(FigureDescriptor_BusinessCalendarDescriptor_LocalDate, _impl_.month_)}}, - // int32 day = 3; - {::_pbi::TcParser::SingularVarintNoZag1<::uint32_t, offsetof(FigureDescriptor_BusinessCalendarDescriptor_LocalDate, _impl_.day_), 63>(), - {24, 63, 0, PROTOBUF_FIELD_OFFSET(FigureDescriptor_BusinessCalendarDescriptor_LocalDate, _impl_.day_)}}, - }}, {{ - 65535, 65535 - }}, {{ - // int32 year = 1; - {PROTOBUF_FIELD_OFFSET(FigureDescriptor_BusinessCalendarDescriptor_LocalDate, _impl_.year_), 0, 0, - (0 | ::_fl::kFcSingular | ::_fl::kInt32)}, - // int32 month = 2; - {PROTOBUF_FIELD_OFFSET(FigureDescriptor_BusinessCalendarDescriptor_LocalDate, _impl_.month_), 0, 0, - (0 | ::_fl::kFcSingular | ::_fl::kInt32)}, - // int32 day = 3; - {PROTOBUF_FIELD_OFFSET(FigureDescriptor_BusinessCalendarDescriptor_LocalDate, _impl_.day_), 0, 0, - (0 | ::_fl::kFcSingular | ::_fl::kInt32)}, - }}, - // no aux_entries - {{ - }}, -}; - -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; - - ::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>(); -} - -#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) - ABSL_DCHECK_NE(&from, _this); - ::uint32_t cached_has_bits = 0; - (void) cached_has_bits; - - if (from._internal_year() != 0) { - _this->_impl_.year_ = from._impl_.year_; - } - if (from._internal_month() != 0) { - _this->_impl_.month_ = from._impl_.month_; - } - if (from._internal_day() != 0) { - _this->_impl_.day_ = from._impl_.day_; - } - _this->_internal_metadata_.MergeFrom<::google::protobuf::UnknownFieldSet>(from._internal_metadata_); -} - -void FigureDescriptor_BusinessCalendarDescriptor_LocalDate::CopyFrom(const FigureDescriptor_BusinessCalendarDescriptor_LocalDate& from) { -// @@protoc_insertion_point(class_specific_copy_from_start:io.deephaven.proto.backplane.script.grpc.FigureDescriptor.BusinessCalendarDescriptor.LocalDate) - if (&from == this) return; - Clear(); - MergeFrom(from); -} - - -void FigureDescriptor_BusinessCalendarDescriptor_LocalDate::InternalSwap(FigureDescriptor_BusinessCalendarDescriptor_LocalDate* PROTOBUF_RESTRICT other) { - using std::swap; - _internal_metadata_.InternalSwap(&other->_internal_metadata_); - ::google::protobuf::internal::memswap< - PROTOBUF_FIELD_OFFSET(FigureDescriptor_BusinessCalendarDescriptor_LocalDate, _impl_.day_) - + sizeof(FigureDescriptor_BusinessCalendarDescriptor_LocalDate::_impl_.day_) - - PROTOBUF_FIELD_OFFSET(FigureDescriptor_BusinessCalendarDescriptor_LocalDate, _impl_.year_)>( - reinterpret_cast(&_impl_.year_), - reinterpret_cast(&other->_impl_.year_)); -} - -::google::protobuf::Metadata FigureDescriptor_BusinessCalendarDescriptor_LocalDate::GetMetadata() const { - return ::google::protobuf::Message::GetMetadataImpl(GetClassData()->full()); -} -// =================================================================== - -class FigureDescriptor_BusinessCalendarDescriptor::_Internal { - public: -}; - -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 ::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_}, - holidays_{visibility, arena, from.holidays_}, - name_(arena, from.name_), - time_zone_(arena, from.time_zone_), - _cached_size_{0} {} - -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_, from); - - // @@protoc_insertion_point(copy_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) - : business_days_{visibility, arena}, - _business_days_cached_byte_size_{0}, - business_periods_{visibility, arena}, - holidays_{visibility, arena}, - name_(arena), - time_zone_(arena), - _cached_size_{0} {} - -inline void FigureDescriptor_BusinessCalendarDescriptor::SharedCtor(::_pb::Arena* arena) { - new (&_impl_) Impl_(internal_visibility(), arena); -} -FigureDescriptor_BusinessCalendarDescriptor::~FigureDescriptor_BusinessCalendarDescriptor() { - // @@protoc_insertion_point(destructor:io.deephaven.proto.backplane.script.grpc.FigureDescriptor.BusinessCalendarDescriptor) - _internal_metadata_.Delete<::google::protobuf::UnknownFieldSet>(); - SharedDtor(); -} -inline void FigureDescriptor_BusinessCalendarDescriptor::SharedDtor() { - ABSL_DCHECK(GetArena() == nullptr); - _impl_.name_.Destroy(); - _impl_.time_zone_.Destroy(); - _impl_.~Impl_(); -} - -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_ = { - { - 0, // no _has_bits_ - 0, // no _extensions_ - 5, 56, // max_field_number, fast_idx_mask - offsetof(decltype(_table_), field_lookup_table), - 4294967264, // skipmap - offsetof(decltype(_table_), field_entries), - 5, // num_field_entries - 2, // num_aux_entries - offsetof(decltype(_table_), 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::FigureDescriptor_BusinessCalendarDescriptor>(), // to_prefetch - #endif // PROTOBUF_PREFETCH_PARSE_TABLE - }, {{ - {::_pbi::TcParser::MiniParse, {}}, - // string name = 1; - {::_pbi::TcParser::FastUS1, - {10, 63, 0, PROTOBUF_FIELD_OFFSET(FigureDescriptor_BusinessCalendarDescriptor, _impl_.name_)}}, - // string time_zone = 2; - {::_pbi::TcParser::FastUS1, - {18, 63, 0, PROTOBUF_FIELD_OFFSET(FigureDescriptor_BusinessCalendarDescriptor, _impl_.time_zone_)}}, - // repeated .io.deephaven.proto.backplane.script.grpc.FigureDescriptor.BusinessCalendarDescriptor.DayOfWeek business_days = 3; - {::_pbi::TcParser::FastV32P1, - {26, 63, 0, PROTOBUF_FIELD_OFFSET(FigureDescriptor_BusinessCalendarDescriptor, _impl_.business_days_)}}, - // repeated .io.deephaven.proto.backplane.script.grpc.FigureDescriptor.BusinessCalendarDescriptor.BusinessPeriod business_periods = 4; - {::_pbi::TcParser::FastMtR1, - {34, 63, 0, PROTOBUF_FIELD_OFFSET(FigureDescriptor_BusinessCalendarDescriptor, _impl_.business_periods_)}}, - // repeated .io.deephaven.proto.backplane.script.grpc.FigureDescriptor.BusinessCalendarDescriptor.Holiday holidays = 5; - {::_pbi::TcParser::FastMtR1, - {42, 63, 1, PROTOBUF_FIELD_OFFSET(FigureDescriptor_BusinessCalendarDescriptor, _impl_.holidays_)}}, - {::_pbi::TcParser::MiniParse, {}}, - {::_pbi::TcParser::MiniParse, {}}, - }}, {{ - 65535, 65535 - }}, {{ - // string name = 1; - {PROTOBUF_FIELD_OFFSET(FigureDescriptor_BusinessCalendarDescriptor, _impl_.name_), 0, 0, - (0 | ::_fl::kFcSingular | ::_fl::kUtf8String | ::_fl::kRepAString)}, - // string time_zone = 2; - {PROTOBUF_FIELD_OFFSET(FigureDescriptor_BusinessCalendarDescriptor, _impl_.time_zone_), 0, 0, - (0 | ::_fl::kFcSingular | ::_fl::kUtf8String | ::_fl::kRepAString)}, - // repeated .io.deephaven.proto.backplane.script.grpc.FigureDescriptor.BusinessCalendarDescriptor.DayOfWeek business_days = 3; - {PROTOBUF_FIELD_OFFSET(FigureDescriptor_BusinessCalendarDescriptor, _impl_.business_days_), 0, 0, - (0 | ::_fl::kFcRepeated | ::_fl::kPackedOpenEnum)}, - // repeated .io.deephaven.proto.backplane.script.grpc.FigureDescriptor.BusinessCalendarDescriptor.BusinessPeriod business_periods = 4; - {PROTOBUF_FIELD_OFFSET(FigureDescriptor_BusinessCalendarDescriptor, _impl_.business_periods_), 0, 0, - (0 | ::_fl::kFcRepeated | ::_fl::kMessage | ::_fl::kTvTable)}, - // repeated .io.deephaven.proto.backplane.script.grpc.FigureDescriptor.BusinessCalendarDescriptor.Holiday holidays = 5; - {PROTOBUF_FIELD_OFFSET(FigureDescriptor_BusinessCalendarDescriptor, _impl_.holidays_), 0, 1, - (0 | ::_fl::kFcRepeated | ::_fl::kMessage | ::_fl::kTvTable)}, - }}, {{ - {::_pbi::TcParser::GetTable<::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_BusinessCalendarDescriptor_BusinessPeriod>()}, - {::_pbi::TcParser::GetTable<::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_BusinessCalendarDescriptor_Holiday>()}, - }}, {{ - "\124\4\11\0\0\0\0\0" - "io.deephaven.proto.backplane.script.grpc.FigureDescriptor.BusinessCalendarDescriptor" - "name" - "time_zone" - }}, -}; - -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; - - _impl_.business_days_.Clear(); - _impl_.business_periods_.Clear(); - _impl_.holidays_.Clear(); - _impl_.name_.ClearToEmpty(); - _impl_.time_zone_.ClearToEmpty(); - _internal_metadata_.Clear<::google::protobuf::UnknownFieldSet>(); -} - -#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) - ABSL_DCHECK_NE(&from, _this); - ::uint32_t cached_has_bits = 0; - (void) cached_has_bits; - - _this->_internal_mutable_business_days()->MergeFrom(from._internal_business_days()); - _this->_internal_mutable_business_periods()->MergeFrom( - from._internal_business_periods()); - _this->_internal_mutable_holidays()->MergeFrom( - from._internal_holidays()); - if (!from._internal_name().empty()) { - _this->_internal_set_name(from._internal_name()); - } - if (!from._internal_time_zone().empty()) { - _this->_internal_set_time_zone(from._internal_time_zone()); - } - _this->_internal_metadata_.MergeFrom<::google::protobuf::UnknownFieldSet>(from._internal_metadata_); -} - -void FigureDescriptor_BusinessCalendarDescriptor::CopyFrom(const FigureDescriptor_BusinessCalendarDescriptor& from) { -// @@protoc_insertion_point(class_specific_copy_from_start:io.deephaven.proto.backplane.script.grpc.FigureDescriptor.BusinessCalendarDescriptor) - if (&from == this) return; - Clear(); - MergeFrom(from); -} - - -void FigureDescriptor_BusinessCalendarDescriptor::InternalSwap(FigureDescriptor_BusinessCalendarDescriptor* PROTOBUF_RESTRICT other) { - using std::swap; - auto* arena = GetArena(); - ABSL_DCHECK_EQ(arena, other->GetArena()); - _internal_metadata_.InternalSwap(&other->_internal_metadata_); - _impl_.business_days_.InternalSwap(&other->_impl_.business_days_); - _impl_.business_periods_.InternalSwap(&other->_impl_.business_periods_); - _impl_.holidays_.InternalSwap(&other->_impl_.holidays_); - ::_pbi::ArenaStringPtr::InternalSwap(&_impl_.name_, &other->_impl_.name_, arena); - ::_pbi::ArenaStringPtr::InternalSwap(&_impl_.time_zone_, &other->_impl_.time_zone_, arena); -} - -::google::protobuf::Metadata FigureDescriptor_BusinessCalendarDescriptor::GetMetadata() const { - return ::google::protobuf::Message::GetMetadataImpl(GetClassData()->full()); -} -// =================================================================== - -class FigureDescriptor_MultiSeriesSourceDescriptor::_Internal { - public: -}; - -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 ::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} {} - -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_, from); - ::memcpy(reinterpret_cast(&_impl_) + - offsetof(Impl_, type_), - reinterpret_cast(&from._impl_) + - offsetof(Impl_, type_), - offsetof(Impl_, partitioned_table_id_) - - offsetof(Impl_, type_) + - sizeof(Impl_::partitioned_table_id_)); - - // @@protoc_insertion_point(copy_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) - : axis_id_(arena), - column_name_(arena), - _cached_size_{0} {} - -inline void FigureDescriptor_MultiSeriesSourceDescriptor::SharedCtor(::_pb::Arena* arena) { - new (&_impl_) Impl_(internal_visibility(), arena); - ::memset(reinterpret_cast(&_impl_) + - offsetof(Impl_, type_), - 0, - offsetof(Impl_, partitioned_table_id_) - - offsetof(Impl_, type_) + - sizeof(Impl_::partitioned_table_id_)); -} -FigureDescriptor_MultiSeriesSourceDescriptor::~FigureDescriptor_MultiSeriesSourceDescriptor() { - // @@protoc_insertion_point(destructor:io.deephaven.proto.backplane.script.grpc.FigureDescriptor.MultiSeriesSourceDescriptor) - _internal_metadata_.Delete<::google::protobuf::UnknownFieldSet>(); - SharedDtor(); -} -inline void FigureDescriptor_MultiSeriesSourceDescriptor::SharedDtor() { - ABSL_DCHECK(GetArena() == nullptr); - _impl_.axis_id_.Destroy(); - _impl_.column_name_.Destroy(); - _impl_.~Impl_(); -} - -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_ = { - { - 0, // no _has_bits_ - 0, // no _extensions_ - 4, 24, // max_field_number, fast_idx_mask - offsetof(decltype(_table_), field_lookup_table), - 4294967280, // skipmap - offsetof(decltype(_table_), field_entries), - 4, // 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::FigureDescriptor_MultiSeriesSourceDescriptor>(), // to_prefetch - #endif // PROTOBUF_PREFETCH_PARSE_TABLE - }, {{ - // string column_name = 4; - {::_pbi::TcParser::FastUS1, - {34, 63, 0, PROTOBUF_FIELD_OFFSET(FigureDescriptor_MultiSeriesSourceDescriptor, _impl_.column_name_)}}, - // string axis_id = 1; - {::_pbi::TcParser::FastUS1, - {10, 63, 0, PROTOBUF_FIELD_OFFSET(FigureDescriptor_MultiSeriesSourceDescriptor, _impl_.axis_id_)}}, - // .io.deephaven.proto.backplane.script.grpc.FigureDescriptor.SourceType type = 2; - {::_pbi::TcParser::SingularVarintNoZag1<::uint32_t, offsetof(FigureDescriptor_MultiSeriesSourceDescriptor, _impl_.type_), 63>(), - {16, 63, 0, PROTOBUF_FIELD_OFFSET(FigureDescriptor_MultiSeriesSourceDescriptor, _impl_.type_)}}, - // int32 partitioned_table_id = 3; - {::_pbi::TcParser::SingularVarintNoZag1<::uint32_t, offsetof(FigureDescriptor_MultiSeriesSourceDescriptor, _impl_.partitioned_table_id_), 63>(), - {24, 63, 0, PROTOBUF_FIELD_OFFSET(FigureDescriptor_MultiSeriesSourceDescriptor, _impl_.partitioned_table_id_)}}, - }}, {{ - 65535, 65535 - }}, {{ - // string axis_id = 1; - {PROTOBUF_FIELD_OFFSET(FigureDescriptor_MultiSeriesSourceDescriptor, _impl_.axis_id_), 0, 0, - (0 | ::_fl::kFcSingular | ::_fl::kUtf8String | ::_fl::kRepAString)}, - // .io.deephaven.proto.backplane.script.grpc.FigureDescriptor.SourceType type = 2; - {PROTOBUF_FIELD_OFFSET(FigureDescriptor_MultiSeriesSourceDescriptor, _impl_.type_), 0, 0, - (0 | ::_fl::kFcSingular | ::_fl::kOpenEnum)}, - // int32 partitioned_table_id = 3; - {PROTOBUF_FIELD_OFFSET(FigureDescriptor_MultiSeriesSourceDescriptor, _impl_.partitioned_table_id_), 0, 0, - (0 | ::_fl::kFcSingular | ::_fl::kInt32)}, - // string column_name = 4; - {PROTOBUF_FIELD_OFFSET(FigureDescriptor_MultiSeriesSourceDescriptor, _impl_.column_name_), 0, 0, - (0 | ::_fl::kFcSingular | ::_fl::kUtf8String | ::_fl::kRepAString)}, - }}, - // no aux_entries - {{ - "\125\7\0\0\13\0\0\0" - "io.deephaven.proto.backplane.script.grpc.FigureDescriptor.MultiSeriesSourceDescriptor" - "axis_id" - "column_name" - }}, -}; - -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; - - _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>(); -} - -#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) - ABSL_DCHECK_NE(&from, _this); - ::uint32_t cached_has_bits = 0; - (void) cached_has_bits; - - if (!from._internal_axis_id().empty()) { - _this->_internal_set_axis_id(from._internal_axis_id()); - } - if (!from._internal_column_name().empty()) { - _this->_internal_set_column_name(from._internal_column_name()); - } - if (from._internal_type() != 0) { - _this->_impl_.type_ = from._impl_.type_; - } - if (from._internal_partitioned_table_id() != 0) { - _this->_impl_.partitioned_table_id_ = from._impl_.partitioned_table_id_; - } - _this->_internal_metadata_.MergeFrom<::google::protobuf::UnknownFieldSet>(from._internal_metadata_); -} - -void FigureDescriptor_MultiSeriesSourceDescriptor::CopyFrom(const FigureDescriptor_MultiSeriesSourceDescriptor& from) { -// @@protoc_insertion_point(class_specific_copy_from_start:io.deephaven.proto.backplane.script.grpc.FigureDescriptor.MultiSeriesSourceDescriptor) - if (&from == this) return; - Clear(); - MergeFrom(from); -} - - -void FigureDescriptor_MultiSeriesSourceDescriptor::InternalSwap(FigureDescriptor_MultiSeriesSourceDescriptor* PROTOBUF_RESTRICT other) { - using std::swap; - auto* arena = GetArena(); - ABSL_DCHECK_EQ(arena, other->GetArena()); - _internal_metadata_.InternalSwap(&other->_internal_metadata_); - ::_pbi::ArenaStringPtr::InternalSwap(&_impl_.axis_id_, &other->_impl_.axis_id_, arena); - ::_pbi::ArenaStringPtr::InternalSwap(&_impl_.column_name_, &other->_impl_.column_name_, arena); - ::google::protobuf::internal::memswap< - PROTOBUF_FIELD_OFFSET(FigureDescriptor_MultiSeriesSourceDescriptor, _impl_.partitioned_table_id_) - + sizeof(FigureDescriptor_MultiSeriesSourceDescriptor::_impl_.partitioned_table_id_) - - PROTOBUF_FIELD_OFFSET(FigureDescriptor_MultiSeriesSourceDescriptor, _impl_.type_)>( - reinterpret_cast(&_impl_.type_), - reinterpret_cast(&other->_impl_.type_)); -} - -::google::protobuf::Metadata FigureDescriptor_MultiSeriesSourceDescriptor::GetMetadata() const { - return ::google::protobuf::Message::GetMetadataImpl(GetClassData()->full()); -} -// =================================================================== - -class FigureDescriptor_SourceDescriptor::_Internal { - public: - using HasBits = - decltype(std::declval()._impl_._has_bits_); - static constexpr ::int32_t kHasBitsOffset = - 8 * PROTOBUF_FIELD_OFFSET(FigureDescriptor_SourceDescriptor, _impl_._has_bits_); -}; - -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 ::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_SourceDescriptor& from_msg) - : _has_bits_{from._has_bits_}, - _cached_size_{0}, - axis_id_(arena, from.axis_id_), - column_name_(arena, from.column_name_), - column_type_(arena, from.column_type_) {} - -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_, from); - ::uint32_t cached_has_bits = _impl_._has_bits_[0]; - _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_) + - offsetof(Impl_, type_), - offsetof(Impl_, partitioned_table_id_) - - offsetof(Impl_, type_) + - sizeof(Impl_::partitioned_table_id_)); - - // @@protoc_insertion_point(copy_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) - : _cached_size_{0}, - axis_id_(arena), - column_name_(arena), - column_type_(arena) {} - -inline void FigureDescriptor_SourceDescriptor::SharedCtor(::_pb::Arena* arena) { - new (&_impl_) Impl_(internal_visibility(), arena); - ::memset(reinterpret_cast(&_impl_) + - offsetof(Impl_, one_click_), - 0, - offsetof(Impl_, partitioned_table_id_) - - offsetof(Impl_, one_click_) + - sizeof(Impl_::partitioned_table_id_)); -} -FigureDescriptor_SourceDescriptor::~FigureDescriptor_SourceDescriptor() { - // @@protoc_insertion_point(destructor:io.deephaven.proto.backplane.script.grpc.FigureDescriptor.SourceDescriptor) - _internal_metadata_.Delete<::google::protobuf::UnknownFieldSet>(); - SharedDtor(); -} -inline void FigureDescriptor_SourceDescriptor::SharedDtor() { - ABSL_DCHECK(GetArena() == nullptr); - _impl_.axis_id_.Destroy(); - _impl_.column_name_.Destroy(); - _impl_.column_type_.Destroy(); - delete _impl_.one_click_; - _impl_.~Impl_(); -} - -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_ = { - { - PROTOBUF_FIELD_OFFSET(FigureDescriptor_SourceDescriptor, _impl_._has_bits_), - 0, // no _extensions_ - 7, 56, // max_field_number, fast_idx_mask - offsetof(decltype(_table_), field_lookup_table), - 4294967168, // skipmap - offsetof(decltype(_table_), field_entries), - 7, // num_field_entries - 1, // num_aux_entries - offsetof(decltype(_table_), 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::FigureDescriptor_SourceDescriptor>(), // to_prefetch - #endif // PROTOBUF_PREFETCH_PARSE_TABLE - }, {{ - {::_pbi::TcParser::MiniParse, {}}, - // string axis_id = 1; - {::_pbi::TcParser::FastUS1, - {10, 63, 0, PROTOBUF_FIELD_OFFSET(FigureDescriptor_SourceDescriptor, _impl_.axis_id_)}}, - // .io.deephaven.proto.backplane.script.grpc.FigureDescriptor.SourceType type = 2; - {::_pbi::TcParser::SingularVarintNoZag1<::uint32_t, offsetof(FigureDescriptor_SourceDescriptor, _impl_.type_), 63>(), - {16, 63, 0, PROTOBUF_FIELD_OFFSET(FigureDescriptor_SourceDescriptor, _impl_.type_)}}, - // int32 table_id = 3; - {::_pbi::TcParser::SingularVarintNoZag1<::uint32_t, offsetof(FigureDescriptor_SourceDescriptor, _impl_.table_id_), 63>(), - {24, 63, 0, PROTOBUF_FIELD_OFFSET(FigureDescriptor_SourceDescriptor, _impl_.table_id_)}}, - // int32 partitioned_table_id = 4; - {::_pbi::TcParser::SingularVarintNoZag1<::uint32_t, offsetof(FigureDescriptor_SourceDescriptor, _impl_.partitioned_table_id_), 63>(), - {32, 63, 0, PROTOBUF_FIELD_OFFSET(FigureDescriptor_SourceDescriptor, _impl_.partitioned_table_id_)}}, - // string column_name = 5; - {::_pbi::TcParser::FastUS1, - {42, 63, 0, PROTOBUF_FIELD_OFFSET(FigureDescriptor_SourceDescriptor, _impl_.column_name_)}}, - // string column_type = 6; - {::_pbi::TcParser::FastUS1, - {50, 63, 0, PROTOBUF_FIELD_OFFSET(FigureDescriptor_SourceDescriptor, _impl_.column_type_)}}, - // .io.deephaven.proto.backplane.script.grpc.FigureDescriptor.OneClickDescriptor one_click = 7; - {::_pbi::TcParser::FastMtS1, - {58, 0, 0, PROTOBUF_FIELD_OFFSET(FigureDescriptor_SourceDescriptor, _impl_.one_click_)}}, - }}, {{ - 65535, 65535 - }}, {{ - // string axis_id = 1; - {PROTOBUF_FIELD_OFFSET(FigureDescriptor_SourceDescriptor, _impl_.axis_id_), -1, 0, - (0 | ::_fl::kFcSingular | ::_fl::kUtf8String | ::_fl::kRepAString)}, - // .io.deephaven.proto.backplane.script.grpc.FigureDescriptor.SourceType type = 2; - {PROTOBUF_FIELD_OFFSET(FigureDescriptor_SourceDescriptor, _impl_.type_), -1, 0, - (0 | ::_fl::kFcSingular | ::_fl::kOpenEnum)}, - // int32 table_id = 3; - {PROTOBUF_FIELD_OFFSET(FigureDescriptor_SourceDescriptor, _impl_.table_id_), -1, 0, - (0 | ::_fl::kFcSingular | ::_fl::kInt32)}, - // int32 partitioned_table_id = 4; - {PROTOBUF_FIELD_OFFSET(FigureDescriptor_SourceDescriptor, _impl_.partitioned_table_id_), -1, 0, - (0 | ::_fl::kFcSingular | ::_fl::kInt32)}, - // string column_name = 5; - {PROTOBUF_FIELD_OFFSET(FigureDescriptor_SourceDescriptor, _impl_.column_name_), -1, 0, - (0 | ::_fl::kFcSingular | ::_fl::kUtf8String | ::_fl::kRepAString)}, - // string column_type = 6; - {PROTOBUF_FIELD_OFFSET(FigureDescriptor_SourceDescriptor, _impl_.column_type_), -1, 0, - (0 | ::_fl::kFcSingular | ::_fl::kUtf8String | ::_fl::kRepAString)}, - // .io.deephaven.proto.backplane.script.grpc.FigureDescriptor.OneClickDescriptor one_click = 7; - {PROTOBUF_FIELD_OFFSET(FigureDescriptor_SourceDescriptor, _impl_.one_click_), _Internal::kHasBitsOffset + 0, 0, - (0 | ::_fl::kFcOptional | ::_fl::kMessage | ::_fl::kTvTable)}, - }}, {{ - {::_pbi::TcParser::GetTable<::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_OneClickDescriptor>()}, - }}, {{ - "\112\7\0\0\0\13\13\0" - "io.deephaven.proto.backplane.script.grpc.FigureDescriptor.SourceDescriptor" - "axis_id" - "column_name" - "column_type" - }}, -}; - -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; - - _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>(); -} - -#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; - (void) cached_has_bits; - - if (!from._internal_axis_id().empty()) { - _this->_internal_set_axis_id(from._internal_axis_id()); - } - if (!from._internal_column_name().empty()) { - _this->_internal_set_column_name(from._internal_column_name()); - } - if (!from._internal_column_type().empty()) { - _this->_internal_set_column_type(from._internal_column_type()); - } - 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->_impl_.type_ = from._impl_.type_; - } - if (from._internal_table_id() != 0) { - _this->_impl_.table_id_ = from._impl_.table_id_; - } - if (from._internal_partitioned_table_id() != 0) { - _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_); -} - -void FigureDescriptor_SourceDescriptor::CopyFrom(const FigureDescriptor_SourceDescriptor& from) { -// @@protoc_insertion_point(class_specific_copy_from_start:io.deephaven.proto.backplane.script.grpc.FigureDescriptor.SourceDescriptor) - if (&from == this) return; - Clear(); - MergeFrom(from); -} - - -void FigureDescriptor_SourceDescriptor::InternalSwap(FigureDescriptor_SourceDescriptor* PROTOBUF_RESTRICT other) { - using std::swap; - auto* arena = GetArena(); - ABSL_DCHECK_EQ(arena, other->GetArena()); - _internal_metadata_.InternalSwap(&other->_internal_metadata_); - swap(_impl_._has_bits_[0], other->_impl_._has_bits_[0]); - ::_pbi::ArenaStringPtr::InternalSwap(&_impl_.axis_id_, &other->_impl_.axis_id_, arena); - ::_pbi::ArenaStringPtr::InternalSwap(&_impl_.column_name_, &other->_impl_.column_name_, arena); - ::_pbi::ArenaStringPtr::InternalSwap(&_impl_.column_type_, &other->_impl_.column_type_, arena); - ::google::protobuf::internal::memswap< - PROTOBUF_FIELD_OFFSET(FigureDescriptor_SourceDescriptor, _impl_.partitioned_table_id_) - + sizeof(FigureDescriptor_SourceDescriptor::_impl_.partitioned_table_id_) - - PROTOBUF_FIELD_OFFSET(FigureDescriptor_SourceDescriptor, _impl_.one_click_)>( - reinterpret_cast(&_impl_.one_click_), - reinterpret_cast(&other->_impl_.one_click_)); -} - -::google::protobuf::Metadata FigureDescriptor_SourceDescriptor::GetMetadata() const { - return ::google::protobuf::Message::GetMetadataImpl(GetClassData()->full()); -} -// =================================================================== - -class FigureDescriptor_OneClickDescriptor::_Internal { - public: -}; - -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 ::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} {} - -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_, 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) -} -inline PROTOBUF_NDEBUG_INLINE FigureDescriptor_OneClickDescriptor::Impl_::Impl_( - ::google::protobuf::internal::InternalVisibility visibility, - ::google::protobuf::Arena* arena) - : columns_{visibility, arena}, - column_types_{visibility, arena}, - _cached_size_{0} {} - -inline void FigureDescriptor_OneClickDescriptor::SharedCtor(::_pb::Arena* arena) { - new (&_impl_) Impl_(internal_visibility(), arena); - _impl_.require_all_filters_to_display_ = {}; -} -FigureDescriptor_OneClickDescriptor::~FigureDescriptor_OneClickDescriptor() { - // @@protoc_insertion_point(destructor:io.deephaven.proto.backplane.script.grpc.FigureDescriptor.OneClickDescriptor) - _internal_metadata_.Delete<::google::protobuf::UnknownFieldSet>(); - SharedDtor(); -} -inline void FigureDescriptor_OneClickDescriptor::SharedDtor() { - ABSL_DCHECK(GetArena() == nullptr); - _impl_.~Impl_(); -} - -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_ = { - { - 0, // no _has_bits_ - 0, // no _extensions_ - 3, 24, // max_field_number, fast_idx_mask - offsetof(decltype(_table_), field_lookup_table), - 4294967288, // skipmap - offsetof(decltype(_table_), field_entries), - 3, // 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::FigureDescriptor_OneClickDescriptor>(), // to_prefetch - #endif // PROTOBUF_PREFETCH_PARSE_TABLE - }, {{ - {::_pbi::TcParser::MiniParse, {}}, - // repeated string columns = 1; - {::_pbi::TcParser::FastUR1, - {10, 63, 0, PROTOBUF_FIELD_OFFSET(FigureDescriptor_OneClickDescriptor, _impl_.columns_)}}, - // repeated string column_types = 2; - {::_pbi::TcParser::FastUR1, - {18, 63, 0, PROTOBUF_FIELD_OFFSET(FigureDescriptor_OneClickDescriptor, _impl_.column_types_)}}, - // bool require_all_filters_to_display = 3; - {::_pbi::TcParser::SingularVarintNoZag1(), - {24, 63, 0, PROTOBUF_FIELD_OFFSET(FigureDescriptor_OneClickDescriptor, _impl_.require_all_filters_to_display_)}}, - }}, {{ - 65535, 65535 - }}, {{ - // repeated string columns = 1; - {PROTOBUF_FIELD_OFFSET(FigureDescriptor_OneClickDescriptor, _impl_.columns_), 0, 0, - (0 | ::_fl::kFcRepeated | ::_fl::kUtf8String | ::_fl::kRepSString)}, - // repeated string column_types = 2; - {PROTOBUF_FIELD_OFFSET(FigureDescriptor_OneClickDescriptor, _impl_.column_types_), 0, 0, - (0 | ::_fl::kFcRepeated | ::_fl::kUtf8String | ::_fl::kRepSString)}, - // bool require_all_filters_to_display = 3; - {PROTOBUF_FIELD_OFFSET(FigureDescriptor_OneClickDescriptor, _impl_.require_all_filters_to_display_), 0, 0, - (0 | ::_fl::kFcSingular | ::_fl::kBool)}, - }}, - // no aux_entries - {{ - "\114\7\14\0\0\0\0\0" - "io.deephaven.proto.backplane.script.grpc.FigureDescriptor.OneClickDescriptor" - "columns" - "column_types" - }}, -}; - -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; - - _impl_.columns_.Clear(); - _impl_.column_types_.Clear(); - _impl_.require_all_filters_to_display_ = false; - _internal_metadata_.Clear<::google::protobuf::UnknownFieldSet>(); -} - -#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) - ABSL_DCHECK_NE(&from, _this); - ::uint32_t cached_has_bits = 0; - (void) cached_has_bits; - - _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->_impl_.require_all_filters_to_display_ = from._impl_.require_all_filters_to_display_; - } - _this->_internal_metadata_.MergeFrom<::google::protobuf::UnknownFieldSet>(from._internal_metadata_); -} - -void FigureDescriptor_OneClickDescriptor::CopyFrom(const FigureDescriptor_OneClickDescriptor& from) { -// @@protoc_insertion_point(class_specific_copy_from_start:io.deephaven.proto.backplane.script.grpc.FigureDescriptor.OneClickDescriptor) - if (&from == this) return; - Clear(); - MergeFrom(from); -} - - -void FigureDescriptor_OneClickDescriptor::InternalSwap(FigureDescriptor_OneClickDescriptor* PROTOBUF_RESTRICT other) { - using std::swap; - _internal_metadata_.InternalSwap(&other->_internal_metadata_); - _impl_.columns_.InternalSwap(&other->_impl_.columns_); - _impl_.column_types_.InternalSwap(&other->_impl_.column_types_); - swap(_impl_.require_all_filters_to_display_, other->_impl_.require_all_filters_to_display_); -} - -::google::protobuf::Metadata FigureDescriptor_OneClickDescriptor::GetMetadata() const { - return ::google::protobuf::Message::GetMetadataImpl(GetClassData()->full()); -} -// =================================================================== - -class FigureDescriptor::_Internal { - public: - using HasBits = - decltype(std::declval()._impl_._has_bits_); - static constexpr ::int32_t kHasBitsOffset = - 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 ::io::deephaven::proto::backplane::script::grpc::FigureDescriptor& from_msg) - : _has_bits_{from._has_bits_}, - _cached_size_{0}, - charts_{visibility, arena, from.charts_}, - errors_{visibility, arena, from.errors_}, - title_(arena, from.title_), - title_font_(arena, from.title_font_), - title_color_(arena, from.title_color_) {} - -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_, from); - ::memcpy(reinterpret_cast(&_impl_) + - offsetof(Impl_, update_interval_), - reinterpret_cast(&from._impl_) + - offsetof(Impl_, update_interval_), - offsetof(Impl_, rows_) - - offsetof(Impl_, update_interval_) + - sizeof(Impl_::rows_)); - - // @@protoc_insertion_point(copy_constructor:io.deephaven.proto.backplane.script.grpc.FigureDescriptor) -} -inline PROTOBUF_NDEBUG_INLINE FigureDescriptor::Impl_::Impl_( - ::google::protobuf::internal::InternalVisibility visibility, - ::google::protobuf::Arena* arena) - : _cached_size_{0}, - charts_{visibility, arena}, - errors_{visibility, arena}, - title_(arena), - title_font_(arena), - title_color_(arena) {} - -inline void FigureDescriptor::SharedCtor(::_pb::Arena* arena) { - new (&_impl_) Impl_(internal_visibility(), arena); - ::memset(reinterpret_cast(&_impl_) + - offsetof(Impl_, update_interval_), - 0, - offsetof(Impl_, rows_) - - offsetof(Impl_, update_interval_) + - sizeof(Impl_::rows_)); -} -FigureDescriptor::~FigureDescriptor() { - // @@protoc_insertion_point(destructor:io.deephaven.proto.backplane.script.grpc.FigureDescriptor) - _internal_metadata_.Delete<::google::protobuf::UnknownFieldSet>(); - SharedDtor(); -} -inline void FigureDescriptor::SharedDtor() { - ABSL_DCHECK(GetArena() == nullptr); - _impl_.title_.Destroy(); - _impl_.title_font_.Destroy(); - _impl_.title_color_.Destroy(); - _impl_.~Impl_(); -} - -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_ = { - { - PROTOBUF_FIELD_OFFSET(FigureDescriptor, _impl_._has_bits_), - 0, // no _extensions_ - 13, 120, // max_field_number, fast_idx_mask - offsetof(decltype(_table_), field_lookup_table), - 4294962232, // skipmap - offsetof(decltype(_table_), field_entries), - 8, // num_field_entries - 1, // num_aux_entries - offsetof(decltype(_table_), 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::FigureDescriptor>(), // to_prefetch - #endif // PROTOBUF_PREFETCH_PARSE_TABLE - }, {{ - {::_pbi::TcParser::MiniParse, {}}, - // optional string title = 1; - {::_pbi::TcParser::FastUS1, - {10, 0, 0, PROTOBUF_FIELD_OFFSET(FigureDescriptor, _impl_.title_)}}, - // string title_font = 2; - {::_pbi::TcParser::FastUS1, - {18, 63, 0, PROTOBUF_FIELD_OFFSET(FigureDescriptor, _impl_.title_font_)}}, - // string title_color = 3; - {::_pbi::TcParser::FastUS1, - {26, 63, 0, PROTOBUF_FIELD_OFFSET(FigureDescriptor, _impl_.title_color_)}}, - {::_pbi::TcParser::MiniParse, {}}, - {::_pbi::TcParser::MiniParse, {}}, - {::_pbi::TcParser::MiniParse, {}}, - // int64 update_interval = 7 [jstype = JS_STRING]; - {::_pbi::TcParser::SingularVarintNoZag1<::uint64_t, offsetof(FigureDescriptor, _impl_.update_interval_), 63>(), - {56, 63, 0, PROTOBUF_FIELD_OFFSET(FigureDescriptor, _impl_.update_interval_)}}, - // int32 cols = 8; - {::_pbi::TcParser::SingularVarintNoZag1<::uint32_t, offsetof(FigureDescriptor, _impl_.cols_), 63>(), - {64, 63, 0, PROTOBUF_FIELD_OFFSET(FigureDescriptor, _impl_.cols_)}}, - // int32 rows = 9; - {::_pbi::TcParser::SingularVarintNoZag1<::uint32_t, offsetof(FigureDescriptor, _impl_.rows_), 63>(), - {72, 63, 0, PROTOBUF_FIELD_OFFSET(FigureDescriptor, _impl_.rows_)}}, - // repeated .io.deephaven.proto.backplane.script.grpc.FigureDescriptor.ChartDescriptor charts = 10; - {::_pbi::TcParser::FastMtR1, - {82, 63, 0, PROTOBUF_FIELD_OFFSET(FigureDescriptor, _impl_.charts_)}}, - {::_pbi::TcParser::MiniParse, {}}, - {::_pbi::TcParser::MiniParse, {}}, - // repeated string errors = 13; - {::_pbi::TcParser::FastUR1, - {106, 63, 0, PROTOBUF_FIELD_OFFSET(FigureDescriptor, _impl_.errors_)}}, - {::_pbi::TcParser::MiniParse, {}}, - {::_pbi::TcParser::MiniParse, {}}, - }}, {{ - 65535, 65535 - }}, {{ - // optional string title = 1; - {PROTOBUF_FIELD_OFFSET(FigureDescriptor, _impl_.title_), _Internal::kHasBitsOffset + 0, 0, - (0 | ::_fl::kFcOptional | ::_fl::kUtf8String | ::_fl::kRepAString)}, - // string title_font = 2; - {PROTOBUF_FIELD_OFFSET(FigureDescriptor, _impl_.title_font_), -1, 0, - (0 | ::_fl::kFcSingular | ::_fl::kUtf8String | ::_fl::kRepAString)}, - // string title_color = 3; - {PROTOBUF_FIELD_OFFSET(FigureDescriptor, _impl_.title_color_), -1, 0, - (0 | ::_fl::kFcSingular | ::_fl::kUtf8String | ::_fl::kRepAString)}, - // int64 update_interval = 7 [jstype = JS_STRING]; - {PROTOBUF_FIELD_OFFSET(FigureDescriptor, _impl_.update_interval_), -1, 0, - (0 | ::_fl::kFcSingular | ::_fl::kInt64)}, - // int32 cols = 8; - {PROTOBUF_FIELD_OFFSET(FigureDescriptor, _impl_.cols_), -1, 0, - (0 | ::_fl::kFcSingular | ::_fl::kInt32)}, - // int32 rows = 9; - {PROTOBUF_FIELD_OFFSET(FigureDescriptor, _impl_.rows_), -1, 0, - (0 | ::_fl::kFcSingular | ::_fl::kInt32)}, - // repeated .io.deephaven.proto.backplane.script.grpc.FigureDescriptor.ChartDescriptor charts = 10; - {PROTOBUF_FIELD_OFFSET(FigureDescriptor, _impl_.charts_), -1, 0, - (0 | ::_fl::kFcRepeated | ::_fl::kMessage | ::_fl::kTvTable)}, - // repeated string errors = 13; - {PROTOBUF_FIELD_OFFSET(FigureDescriptor, _impl_.errors_), -1, 0, - (0 | ::_fl::kFcRepeated | ::_fl::kUtf8String | ::_fl::kRepSString)}, - }}, {{ - {::_pbi::TcParser::GetTable<::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_ChartDescriptor>()}, - }}, {{ - "\71\5\12\13\0\0\0\0\6\0\0\0\0\0\0\0" - "io.deephaven.proto.backplane.script.grpc.FigureDescriptor" - "title" - "title_font" - "title_color" - "errors" - }}, -}; - -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; - - _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>(); -} - -#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) - ABSL_DCHECK_NE(&from, _this); - ::uint32_t cached_has_bits = 0; - (void) cached_has_bits; - - _this->_internal_mutable_charts()->MergeFrom( - from._internal_charts()); - _this->_internal_mutable_errors()->MergeFrom(from._internal_errors()); - 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()) { - _this->_internal_set_title_font(from._internal_title_font()); - } - if (!from._internal_title_color().empty()) { - _this->_internal_set_title_color(from._internal_title_color()); - } - if (from._internal_update_interval() != 0) { - _this->_impl_.update_interval_ = from._impl_.update_interval_; - } - if (from._internal_cols() != 0) { - _this->_impl_.cols_ = from._impl_.cols_; - } - if (from._internal_rows() != 0) { - _this->_impl_.rows_ = from._impl_.rows_; - } - _this->_impl_._has_bits_[0] |= cached_has_bits; - _this->_internal_metadata_.MergeFrom<::google::protobuf::UnknownFieldSet>(from._internal_metadata_); -} - -void FigureDescriptor::CopyFrom(const FigureDescriptor& from) { -// @@protoc_insertion_point(class_specific_copy_from_start:io.deephaven.proto.backplane.script.grpc.FigureDescriptor) - if (&from == this) return; - Clear(); - MergeFrom(from); -} - - -void FigureDescriptor::InternalSwap(FigureDescriptor* PROTOBUF_RESTRICT other) { - using std::swap; - auto* arena = GetArena(); - ABSL_DCHECK_EQ(arena, other->GetArena()); - _internal_metadata_.InternalSwap(&other->_internal_metadata_); - swap(_impl_._has_bits_[0], other->_impl_._has_bits_[0]); - _impl_.charts_.InternalSwap(&other->_impl_.charts_); - _impl_.errors_.InternalSwap(&other->_impl_.errors_); - ::_pbi::ArenaStringPtr::InternalSwap(&_impl_.title_, &other->_impl_.title_, arena); - ::_pbi::ArenaStringPtr::InternalSwap(&_impl_.title_font_, &other->_impl_.title_font_, arena); - ::_pbi::ArenaStringPtr::InternalSwap(&_impl_.title_color_, &other->_impl_.title_color_, arena); - ::google::protobuf::internal::memswap< - PROTOBUF_FIELD_OFFSET(FigureDescriptor, _impl_.rows_) - + sizeof(FigureDescriptor::_impl_.rows_) - - PROTOBUF_FIELD_OFFSET(FigureDescriptor, _impl_.update_interval_)>( - reinterpret_cast(&_impl_.update_interval_), - reinterpret_cast(&other->_impl_.update_interval_)); -} - -::google::protobuf::Metadata FigureDescriptor::GetMetadata() const { - return ::google::protobuf::Message::GetMetadataImpl(GetClassData()->full()); -} -// @@protoc_insertion_point(namespace_scope) -} // namespace grpc -} // namespace script -} // namespace backplane -} // namespace proto -} // namespace deephaven -} // namespace io -namespace google { -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 deleted file mode 100644 index 7478199fbb4..00000000000 --- a/cpp-client/deephaven/dhclient/proto/deephaven/proto/console.pb.h +++ /dev/null @@ -1,28267 +0,0 @@ -// 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 - -#ifndef GOOGLE_PROTOBUF_INCLUDED_deephaven_2fproto_2fconsole_2eproto_2epb_2eh -#define GOOGLE_PROTOBUF_INCLUDED_deephaven_2fproto_2fconsole_2eproto_2epb_2eh - -#include -#include -#include -#include - -#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" -#include "google/protobuf/generated_message_bases.h" -#include "google/protobuf/generated_message_tctable_decl.h" -#include "google/protobuf/generated_message_util.h" -#include "google/protobuf/metadata_lite.h" -#include "google/protobuf/generated_message_reflection.h" -#include "google/protobuf/message.h" -#include "google/protobuf/repeated_field.h" // IWYU pragma: export -#include "google/protobuf/extension_set.h" // IWYU pragma: export -#include "google/protobuf/generated_enum_reflection.h" -#include "google/protobuf/unknown_field_set.h" -#include "deephaven/proto/ticket.pb.h" -#include "deephaven/proto/application.pb.h" -// @@protoc_insertion_point(includes) - -// Must be included last. -#include "google/protobuf/port_def.inc" - -#define PROTOBUF_INTERNAL_EXPORT_deephaven_2fproto_2fconsole_2eproto - -namespace google { -namespace protobuf { -namespace internal { -class AnyMetadata; -} // namespace internal -} // namespace protobuf -} // namespace google - -// Internal implementation detail -- do not use these members. -struct TableStruct_deephaven_2fproto_2fconsole_2eproto { - static const ::uint32_t offsets[]; -}; -extern const ::google::protobuf::internal::DescriptorTable - descriptor_table_deephaven_2fproto_2fconsole_2eproto; -namespace io { -namespace deephaven { -namespace proto { -namespace backplane { -namespace script { -namespace grpc { -class AutoCompleteRequest; -struct AutoCompleteRequestDefaultTypeInternal; -extern AutoCompleteRequestDefaultTypeInternal _AutoCompleteRequest_default_instance_; -class AutoCompleteResponse; -struct AutoCompleteResponseDefaultTypeInternal; -extern AutoCompleteResponseDefaultTypeInternal _AutoCompleteResponse_default_instance_; -class BindTableToVariableRequest; -struct BindTableToVariableRequestDefaultTypeInternal; -extern BindTableToVariableRequestDefaultTypeInternal _BindTableToVariableRequest_default_instance_; -class BindTableToVariableResponse; -struct BindTableToVariableResponseDefaultTypeInternal; -extern BindTableToVariableResponseDefaultTypeInternal _BindTableToVariableResponse_default_instance_; -class BrowserNextResponse; -struct BrowserNextResponseDefaultTypeInternal; -extern BrowserNextResponseDefaultTypeInternal _BrowserNextResponse_default_instance_; -class CancelAutoCompleteRequest; -struct CancelAutoCompleteRequestDefaultTypeInternal; -extern CancelAutoCompleteRequestDefaultTypeInternal _CancelAutoCompleteRequest_default_instance_; -class CancelAutoCompleteResponse; -struct CancelAutoCompleteResponseDefaultTypeInternal; -extern CancelAutoCompleteResponseDefaultTypeInternal _CancelAutoCompleteResponse_default_instance_; -class CancelCommandRequest; -struct CancelCommandRequestDefaultTypeInternal; -extern CancelCommandRequestDefaultTypeInternal _CancelCommandRequest_default_instance_; -class CancelCommandResponse; -struct CancelCommandResponseDefaultTypeInternal; -extern CancelCommandResponseDefaultTypeInternal _CancelCommandResponse_default_instance_; -class ChangeDocumentRequest; -struct ChangeDocumentRequestDefaultTypeInternal; -extern ChangeDocumentRequestDefaultTypeInternal _ChangeDocumentRequest_default_instance_; -class ChangeDocumentRequest_TextDocumentContentChangeEvent; -struct ChangeDocumentRequest_TextDocumentContentChangeEventDefaultTypeInternal; -extern ChangeDocumentRequest_TextDocumentContentChangeEventDefaultTypeInternal _ChangeDocumentRequest_TextDocumentContentChangeEvent_default_instance_; -class CloseDocumentRequest; -struct CloseDocumentRequestDefaultTypeInternal; -extern CloseDocumentRequestDefaultTypeInternal _CloseDocumentRequest_default_instance_; -class CompletionContext; -struct CompletionContextDefaultTypeInternal; -extern CompletionContextDefaultTypeInternal _CompletionContext_default_instance_; -class CompletionItem; -struct CompletionItemDefaultTypeInternal; -extern CompletionItemDefaultTypeInternal _CompletionItem_default_instance_; -class Diagnostic; -struct DiagnosticDefaultTypeInternal; -extern DiagnosticDefaultTypeInternal _Diagnostic_default_instance_; -class Diagnostic_CodeDescription; -struct Diagnostic_CodeDescriptionDefaultTypeInternal; -extern Diagnostic_CodeDescriptionDefaultTypeInternal _Diagnostic_CodeDescription_default_instance_; -class DocumentRange; -struct DocumentRangeDefaultTypeInternal; -extern DocumentRangeDefaultTypeInternal _DocumentRange_default_instance_; -class ExecuteCommandRequest; -struct ExecuteCommandRequestDefaultTypeInternal; -extern ExecuteCommandRequestDefaultTypeInternal _ExecuteCommandRequest_default_instance_; -class ExecuteCommandResponse; -struct ExecuteCommandResponseDefaultTypeInternal; -extern ExecuteCommandResponseDefaultTypeInternal _ExecuteCommandResponse_default_instance_; -class FigureDescriptor; -struct FigureDescriptorDefaultTypeInternal; -extern FigureDescriptorDefaultTypeInternal _FigureDescriptor_default_instance_; -class FigureDescriptor_AxisDescriptor; -struct FigureDescriptor_AxisDescriptorDefaultTypeInternal; -extern FigureDescriptor_AxisDescriptorDefaultTypeInternal _FigureDescriptor_AxisDescriptor_default_instance_; -class FigureDescriptor_BoolMapWithDefault; -struct FigureDescriptor_BoolMapWithDefaultDefaultTypeInternal; -extern FigureDescriptor_BoolMapWithDefaultDefaultTypeInternal _FigureDescriptor_BoolMapWithDefault_default_instance_; -class FigureDescriptor_BusinessCalendarDescriptor; -struct FigureDescriptor_BusinessCalendarDescriptorDefaultTypeInternal; -extern FigureDescriptor_BusinessCalendarDescriptorDefaultTypeInternal _FigureDescriptor_BusinessCalendarDescriptor_default_instance_; -class FigureDescriptor_BusinessCalendarDescriptor_BusinessPeriod; -struct FigureDescriptor_BusinessCalendarDescriptor_BusinessPeriodDefaultTypeInternal; -extern FigureDescriptor_BusinessCalendarDescriptor_BusinessPeriodDefaultTypeInternal _FigureDescriptor_BusinessCalendarDescriptor_BusinessPeriod_default_instance_; -class FigureDescriptor_BusinessCalendarDescriptor_Holiday; -struct FigureDescriptor_BusinessCalendarDescriptor_HolidayDefaultTypeInternal; -extern FigureDescriptor_BusinessCalendarDescriptor_HolidayDefaultTypeInternal _FigureDescriptor_BusinessCalendarDescriptor_Holiday_default_instance_; -class FigureDescriptor_BusinessCalendarDescriptor_LocalDate; -struct FigureDescriptor_BusinessCalendarDescriptor_LocalDateDefaultTypeInternal; -extern FigureDescriptor_BusinessCalendarDescriptor_LocalDateDefaultTypeInternal _FigureDescriptor_BusinessCalendarDescriptor_LocalDate_default_instance_; -class FigureDescriptor_ChartDescriptor; -struct FigureDescriptor_ChartDescriptorDefaultTypeInternal; -extern FigureDescriptor_ChartDescriptorDefaultTypeInternal _FigureDescriptor_ChartDescriptor_default_instance_; -class FigureDescriptor_DoubleMapWithDefault; -struct FigureDescriptor_DoubleMapWithDefaultDefaultTypeInternal; -extern FigureDescriptor_DoubleMapWithDefaultDefaultTypeInternal _FigureDescriptor_DoubleMapWithDefault_default_instance_; -class FigureDescriptor_MultiSeriesDescriptor; -struct FigureDescriptor_MultiSeriesDescriptorDefaultTypeInternal; -extern FigureDescriptor_MultiSeriesDescriptorDefaultTypeInternal _FigureDescriptor_MultiSeriesDescriptor_default_instance_; -class FigureDescriptor_MultiSeriesSourceDescriptor; -struct FigureDescriptor_MultiSeriesSourceDescriptorDefaultTypeInternal; -extern FigureDescriptor_MultiSeriesSourceDescriptorDefaultTypeInternal _FigureDescriptor_MultiSeriesSourceDescriptor_default_instance_; -class FigureDescriptor_OneClickDescriptor; -struct FigureDescriptor_OneClickDescriptorDefaultTypeInternal; -extern FigureDescriptor_OneClickDescriptorDefaultTypeInternal _FigureDescriptor_OneClickDescriptor_default_instance_; -class FigureDescriptor_SeriesDescriptor; -struct FigureDescriptor_SeriesDescriptorDefaultTypeInternal; -extern FigureDescriptor_SeriesDescriptorDefaultTypeInternal _FigureDescriptor_SeriesDescriptor_default_instance_; -class FigureDescriptor_SourceDescriptor; -struct FigureDescriptor_SourceDescriptorDefaultTypeInternal; -extern FigureDescriptor_SourceDescriptorDefaultTypeInternal _FigureDescriptor_SourceDescriptor_default_instance_; -class FigureDescriptor_StringMapWithDefault; -struct FigureDescriptor_StringMapWithDefaultDefaultTypeInternal; -extern FigureDescriptor_StringMapWithDefaultDefaultTypeInternal _FigureDescriptor_StringMapWithDefault_default_instance_; -class GetCompletionItemsRequest; -struct GetCompletionItemsRequestDefaultTypeInternal; -extern GetCompletionItemsRequestDefaultTypeInternal _GetCompletionItemsRequest_default_instance_; -class GetCompletionItemsResponse; -struct GetCompletionItemsResponseDefaultTypeInternal; -extern GetCompletionItemsResponseDefaultTypeInternal _GetCompletionItemsResponse_default_instance_; -class GetConsoleTypesRequest; -struct GetConsoleTypesRequestDefaultTypeInternal; -extern GetConsoleTypesRequestDefaultTypeInternal _GetConsoleTypesRequest_default_instance_; -class GetConsoleTypesResponse; -struct GetConsoleTypesResponseDefaultTypeInternal; -extern GetConsoleTypesResponseDefaultTypeInternal _GetConsoleTypesResponse_default_instance_; -class GetDiagnosticRequest; -struct GetDiagnosticRequestDefaultTypeInternal; -extern GetDiagnosticRequestDefaultTypeInternal _GetDiagnosticRequest_default_instance_; -class GetHeapInfoRequest; -struct GetHeapInfoRequestDefaultTypeInternal; -extern GetHeapInfoRequestDefaultTypeInternal _GetHeapInfoRequest_default_instance_; -class GetHeapInfoResponse; -struct GetHeapInfoResponseDefaultTypeInternal; -extern GetHeapInfoResponseDefaultTypeInternal _GetHeapInfoResponse_default_instance_; -class GetHoverRequest; -struct GetHoverRequestDefaultTypeInternal; -extern GetHoverRequestDefaultTypeInternal _GetHoverRequest_default_instance_; -class GetHoverResponse; -struct GetHoverResponseDefaultTypeInternal; -extern GetHoverResponseDefaultTypeInternal _GetHoverResponse_default_instance_; -class GetPublishDiagnosticResponse; -struct GetPublishDiagnosticResponseDefaultTypeInternal; -extern GetPublishDiagnosticResponseDefaultTypeInternal _GetPublishDiagnosticResponse_default_instance_; -class GetPullDiagnosticResponse; -struct GetPullDiagnosticResponseDefaultTypeInternal; -extern GetPullDiagnosticResponseDefaultTypeInternal _GetPullDiagnosticResponse_default_instance_; -class GetSignatureHelpRequest; -struct GetSignatureHelpRequestDefaultTypeInternal; -extern GetSignatureHelpRequestDefaultTypeInternal _GetSignatureHelpRequest_default_instance_; -class GetSignatureHelpResponse; -struct GetSignatureHelpResponseDefaultTypeInternal; -extern GetSignatureHelpResponseDefaultTypeInternal _GetSignatureHelpResponse_default_instance_; -class LogSubscriptionData; -struct LogSubscriptionDataDefaultTypeInternal; -extern LogSubscriptionDataDefaultTypeInternal _LogSubscriptionData_default_instance_; -class LogSubscriptionRequest; -struct LogSubscriptionRequestDefaultTypeInternal; -extern LogSubscriptionRequestDefaultTypeInternal _LogSubscriptionRequest_default_instance_; -class MarkupContent; -struct MarkupContentDefaultTypeInternal; -extern MarkupContentDefaultTypeInternal _MarkupContent_default_instance_; -class OpenDocumentRequest; -struct OpenDocumentRequestDefaultTypeInternal; -extern OpenDocumentRequestDefaultTypeInternal _OpenDocumentRequest_default_instance_; -class ParameterInformation; -struct ParameterInformationDefaultTypeInternal; -extern ParameterInformationDefaultTypeInternal _ParameterInformation_default_instance_; -class Position; -struct PositionDefaultTypeInternal; -extern PositionDefaultTypeInternal _Position_default_instance_; -class SignatureHelpContext; -struct SignatureHelpContextDefaultTypeInternal; -extern SignatureHelpContextDefaultTypeInternal _SignatureHelpContext_default_instance_; -class SignatureInformation; -struct SignatureInformationDefaultTypeInternal; -extern SignatureInformationDefaultTypeInternal _SignatureInformation_default_instance_; -class StartConsoleRequest; -struct StartConsoleRequestDefaultTypeInternal; -extern StartConsoleRequestDefaultTypeInternal _StartConsoleRequest_default_instance_; -class StartConsoleResponse; -struct StartConsoleResponseDefaultTypeInternal; -extern StartConsoleResponseDefaultTypeInternal _StartConsoleResponse_default_instance_; -class TextDocumentItem; -struct TextDocumentItemDefaultTypeInternal; -extern TextDocumentItemDefaultTypeInternal _TextDocumentItem_default_instance_; -class TextEdit; -struct TextEditDefaultTypeInternal; -extern TextEditDefaultTypeInternal _TextEdit_default_instance_; -class VersionedTextDocumentIdentifier; -struct VersionedTextDocumentIdentifierDefaultTypeInternal; -extern VersionedTextDocumentIdentifierDefaultTypeInternal _VersionedTextDocumentIdentifier_default_instance_; -} // namespace grpc -} // namespace script -} // namespace backplane -} // namespace proto -} // namespace deephaven -} // namespace io -namespace google { -namespace protobuf { -} // namespace protobuf -} // namespace google - -namespace io { -namespace deephaven { -namespace proto { -namespace backplane { -namespace script { -namespace grpc { -enum Diagnostic_DiagnosticSeverity : int { - Diagnostic_DiagnosticSeverity_NOT_SET_SEVERITY = 0, - Diagnostic_DiagnosticSeverity_ERROR = 1, - Diagnostic_DiagnosticSeverity_WARNING = 2, - Diagnostic_DiagnosticSeverity_INFORMATION = 3, - Diagnostic_DiagnosticSeverity_HINT = 4, - Diagnostic_DiagnosticSeverity_Diagnostic_DiagnosticSeverity_INT_MIN_SENTINEL_DO_NOT_USE_ = - std::numeric_limits<::int32_t>::min(), - Diagnostic_DiagnosticSeverity_Diagnostic_DiagnosticSeverity_INT_MAX_SENTINEL_DO_NOT_USE_ = - std::numeric_limits<::int32_t>::max(), -}; - -bool Diagnostic_DiagnosticSeverity_IsValid(int value); -extern const uint32_t Diagnostic_DiagnosticSeverity_internal_data_[]; -constexpr Diagnostic_DiagnosticSeverity Diagnostic_DiagnosticSeverity_DiagnosticSeverity_MIN = static_cast(0); -constexpr Diagnostic_DiagnosticSeverity Diagnostic_DiagnosticSeverity_DiagnosticSeverity_MAX = static_cast(4); -constexpr int Diagnostic_DiagnosticSeverity_DiagnosticSeverity_ARRAYSIZE = 4 + 1; -const ::google::protobuf::EnumDescriptor* -Diagnostic_DiagnosticSeverity_descriptor(); -template -const std::string& Diagnostic_DiagnosticSeverity_Name(T value) { - static_assert(std::is_same::value || - std::is_integral::value, - "Incorrect type passed to DiagnosticSeverity_Name()."); - return Diagnostic_DiagnosticSeverity_Name(static_cast(value)); -} -template <> -inline const std::string& Diagnostic_DiagnosticSeverity_Name(Diagnostic_DiagnosticSeverity value) { - return ::google::protobuf::internal::NameOfDenseEnum( - static_cast(value)); -} -inline bool Diagnostic_DiagnosticSeverity_Parse(absl::string_view name, Diagnostic_DiagnosticSeverity* value) { - return ::google::protobuf::internal::ParseNamedEnum( - Diagnostic_DiagnosticSeverity_descriptor(), name, value); -} -enum Diagnostic_DiagnosticTag : int { - Diagnostic_DiagnosticTag_NOT_SET_TAG = 0, - Diagnostic_DiagnosticTag_UNNECESSARY = 1, - Diagnostic_DiagnosticTag_DEPRECATED = 2, - Diagnostic_DiagnosticTag_Diagnostic_DiagnosticTag_INT_MIN_SENTINEL_DO_NOT_USE_ = - std::numeric_limits<::int32_t>::min(), - Diagnostic_DiagnosticTag_Diagnostic_DiagnosticTag_INT_MAX_SENTINEL_DO_NOT_USE_ = - std::numeric_limits<::int32_t>::max(), -}; - -bool Diagnostic_DiagnosticTag_IsValid(int value); -extern const uint32_t Diagnostic_DiagnosticTag_internal_data_[]; -constexpr Diagnostic_DiagnosticTag Diagnostic_DiagnosticTag_DiagnosticTag_MIN = static_cast(0); -constexpr Diagnostic_DiagnosticTag Diagnostic_DiagnosticTag_DiagnosticTag_MAX = static_cast(2); -constexpr int Diagnostic_DiagnosticTag_DiagnosticTag_ARRAYSIZE = 2 + 1; -const ::google::protobuf::EnumDescriptor* -Diagnostic_DiagnosticTag_descriptor(); -template -const std::string& Diagnostic_DiagnosticTag_Name(T value) { - static_assert(std::is_same::value || - std::is_integral::value, - "Incorrect type passed to DiagnosticTag_Name()."); - return Diagnostic_DiagnosticTag_Name(static_cast(value)); -} -template <> -inline const std::string& Diagnostic_DiagnosticTag_Name(Diagnostic_DiagnosticTag value) { - return ::google::protobuf::internal::NameOfDenseEnum( - static_cast(value)); -} -inline bool Diagnostic_DiagnosticTag_Parse(absl::string_view name, Diagnostic_DiagnosticTag* value) { - return ::google::protobuf::internal::ParseNamedEnum( - Diagnostic_DiagnosticTag_descriptor(), name, value); -} -enum FigureDescriptor_ChartDescriptor_ChartType : int { - FigureDescriptor_ChartDescriptor_ChartType_XY = 0, - FigureDescriptor_ChartDescriptor_ChartType_PIE = 1, - FigureDescriptor_ChartDescriptor_ChartType_OHLC [[deprecated]] = 2, - FigureDescriptor_ChartDescriptor_ChartType_CATEGORY = 3, - FigureDescriptor_ChartDescriptor_ChartType_XYZ = 4, - FigureDescriptor_ChartDescriptor_ChartType_CATEGORY_3D = 5, - FigureDescriptor_ChartDescriptor_ChartType_TREEMAP = 6, - FigureDescriptor_ChartDescriptor_ChartType_FigureDescriptor_ChartDescriptor_ChartType_INT_MIN_SENTINEL_DO_NOT_USE_ = - std::numeric_limits<::int32_t>::min(), - FigureDescriptor_ChartDescriptor_ChartType_FigureDescriptor_ChartDescriptor_ChartType_INT_MAX_SENTINEL_DO_NOT_USE_ = - std::numeric_limits<::int32_t>::max(), -}; - -bool FigureDescriptor_ChartDescriptor_ChartType_IsValid(int value); -extern const uint32_t FigureDescriptor_ChartDescriptor_ChartType_internal_data_[]; -constexpr FigureDescriptor_ChartDescriptor_ChartType FigureDescriptor_ChartDescriptor_ChartType_ChartType_MIN = static_cast(0); -constexpr FigureDescriptor_ChartDescriptor_ChartType FigureDescriptor_ChartDescriptor_ChartType_ChartType_MAX = static_cast(6); -constexpr int FigureDescriptor_ChartDescriptor_ChartType_ChartType_ARRAYSIZE = 6 + 1; -const ::google::protobuf::EnumDescriptor* -FigureDescriptor_ChartDescriptor_ChartType_descriptor(); -template -const std::string& FigureDescriptor_ChartDescriptor_ChartType_Name(T value) { - static_assert(std::is_same::value || - std::is_integral::value, - "Incorrect type passed to ChartType_Name()."); - return FigureDescriptor_ChartDescriptor_ChartType_Name(static_cast(value)); -} -template <> -inline const std::string& FigureDescriptor_ChartDescriptor_ChartType_Name(FigureDescriptor_ChartDescriptor_ChartType value) { - return ::google::protobuf::internal::NameOfDenseEnum( - static_cast(value)); -} -inline bool FigureDescriptor_ChartDescriptor_ChartType_Parse(absl::string_view name, FigureDescriptor_ChartDescriptor_ChartType* value) { - return ::google::protobuf::internal::ParseNamedEnum( - FigureDescriptor_ChartDescriptor_ChartType_descriptor(), name, value); -} -enum FigureDescriptor_AxisDescriptor_AxisFormatType : int { - FigureDescriptor_AxisDescriptor_AxisFormatType_CATEGORY = 0, - FigureDescriptor_AxisDescriptor_AxisFormatType_NUMBER = 1, - FigureDescriptor_AxisDescriptor_AxisFormatType_FigureDescriptor_AxisDescriptor_AxisFormatType_INT_MIN_SENTINEL_DO_NOT_USE_ = - std::numeric_limits<::int32_t>::min(), - FigureDescriptor_AxisDescriptor_AxisFormatType_FigureDescriptor_AxisDescriptor_AxisFormatType_INT_MAX_SENTINEL_DO_NOT_USE_ = - std::numeric_limits<::int32_t>::max(), -}; - -bool FigureDescriptor_AxisDescriptor_AxisFormatType_IsValid(int value); -extern const uint32_t FigureDescriptor_AxisDescriptor_AxisFormatType_internal_data_[]; -constexpr FigureDescriptor_AxisDescriptor_AxisFormatType FigureDescriptor_AxisDescriptor_AxisFormatType_AxisFormatType_MIN = static_cast(0); -constexpr FigureDescriptor_AxisDescriptor_AxisFormatType FigureDescriptor_AxisDescriptor_AxisFormatType_AxisFormatType_MAX = static_cast(1); -constexpr int FigureDescriptor_AxisDescriptor_AxisFormatType_AxisFormatType_ARRAYSIZE = 1 + 1; -const ::google::protobuf::EnumDescriptor* -FigureDescriptor_AxisDescriptor_AxisFormatType_descriptor(); -template -const std::string& FigureDescriptor_AxisDescriptor_AxisFormatType_Name(T value) { - static_assert(std::is_same::value || - std::is_integral::value, - "Incorrect type passed to AxisFormatType_Name()."); - return FigureDescriptor_AxisDescriptor_AxisFormatType_Name(static_cast(value)); -} -template <> -inline const std::string& FigureDescriptor_AxisDescriptor_AxisFormatType_Name(FigureDescriptor_AxisDescriptor_AxisFormatType value) { - return ::google::protobuf::internal::NameOfDenseEnum( - static_cast(value)); -} -inline bool FigureDescriptor_AxisDescriptor_AxisFormatType_Parse(absl::string_view name, FigureDescriptor_AxisDescriptor_AxisFormatType* value) { - return ::google::protobuf::internal::ParseNamedEnum( - FigureDescriptor_AxisDescriptor_AxisFormatType_descriptor(), name, value); -} -enum FigureDescriptor_AxisDescriptor_AxisType : int { - FigureDescriptor_AxisDescriptor_AxisType_X = 0, - FigureDescriptor_AxisDescriptor_AxisType_Y = 1, - FigureDescriptor_AxisDescriptor_AxisType_SHAPE = 2, - FigureDescriptor_AxisDescriptor_AxisType_SIZE = 3, - FigureDescriptor_AxisDescriptor_AxisType_LABEL = 4, - FigureDescriptor_AxisDescriptor_AxisType_COLOR = 5, - FigureDescriptor_AxisDescriptor_AxisType_FigureDescriptor_AxisDescriptor_AxisType_INT_MIN_SENTINEL_DO_NOT_USE_ = - std::numeric_limits<::int32_t>::min(), - FigureDescriptor_AxisDescriptor_AxisType_FigureDescriptor_AxisDescriptor_AxisType_INT_MAX_SENTINEL_DO_NOT_USE_ = - std::numeric_limits<::int32_t>::max(), -}; - -bool FigureDescriptor_AxisDescriptor_AxisType_IsValid(int value); -extern const uint32_t FigureDescriptor_AxisDescriptor_AxisType_internal_data_[]; -constexpr FigureDescriptor_AxisDescriptor_AxisType FigureDescriptor_AxisDescriptor_AxisType_AxisType_MIN = static_cast(0); -constexpr FigureDescriptor_AxisDescriptor_AxisType FigureDescriptor_AxisDescriptor_AxisType_AxisType_MAX = static_cast(5); -constexpr int FigureDescriptor_AxisDescriptor_AxisType_AxisType_ARRAYSIZE = 5 + 1; -const ::google::protobuf::EnumDescriptor* -FigureDescriptor_AxisDescriptor_AxisType_descriptor(); -template -const std::string& FigureDescriptor_AxisDescriptor_AxisType_Name(T value) { - static_assert(std::is_same::value || - std::is_integral::value, - "Incorrect type passed to AxisType_Name()."); - return FigureDescriptor_AxisDescriptor_AxisType_Name(static_cast(value)); -} -template <> -inline const std::string& FigureDescriptor_AxisDescriptor_AxisType_Name(FigureDescriptor_AxisDescriptor_AxisType value) { - return ::google::protobuf::internal::NameOfDenseEnum( - static_cast(value)); -} -inline bool FigureDescriptor_AxisDescriptor_AxisType_Parse(absl::string_view name, FigureDescriptor_AxisDescriptor_AxisType* value) { - return ::google::protobuf::internal::ParseNamedEnum( - FigureDescriptor_AxisDescriptor_AxisType_descriptor(), name, value); -} -enum FigureDescriptor_AxisDescriptor_AxisPosition : int { - FigureDescriptor_AxisDescriptor_AxisPosition_TOP = 0, - FigureDescriptor_AxisDescriptor_AxisPosition_BOTTOM = 1, - FigureDescriptor_AxisDescriptor_AxisPosition_LEFT = 2, - FigureDescriptor_AxisDescriptor_AxisPosition_RIGHT = 3, - FigureDescriptor_AxisDescriptor_AxisPosition_NONE = 4, - FigureDescriptor_AxisDescriptor_AxisPosition_FigureDescriptor_AxisDescriptor_AxisPosition_INT_MIN_SENTINEL_DO_NOT_USE_ = - std::numeric_limits<::int32_t>::min(), - FigureDescriptor_AxisDescriptor_AxisPosition_FigureDescriptor_AxisDescriptor_AxisPosition_INT_MAX_SENTINEL_DO_NOT_USE_ = - std::numeric_limits<::int32_t>::max(), -}; - -bool FigureDescriptor_AxisDescriptor_AxisPosition_IsValid(int value); -extern const uint32_t FigureDescriptor_AxisDescriptor_AxisPosition_internal_data_[]; -constexpr FigureDescriptor_AxisDescriptor_AxisPosition FigureDescriptor_AxisDescriptor_AxisPosition_AxisPosition_MIN = static_cast(0); -constexpr FigureDescriptor_AxisDescriptor_AxisPosition FigureDescriptor_AxisDescriptor_AxisPosition_AxisPosition_MAX = static_cast(4); -constexpr int FigureDescriptor_AxisDescriptor_AxisPosition_AxisPosition_ARRAYSIZE = 4 + 1; -const ::google::protobuf::EnumDescriptor* -FigureDescriptor_AxisDescriptor_AxisPosition_descriptor(); -template -const std::string& FigureDescriptor_AxisDescriptor_AxisPosition_Name(T value) { - static_assert(std::is_same::value || - std::is_integral::value, - "Incorrect type passed to AxisPosition_Name()."); - return FigureDescriptor_AxisDescriptor_AxisPosition_Name(static_cast(value)); -} -template <> -inline const std::string& FigureDescriptor_AxisDescriptor_AxisPosition_Name(FigureDescriptor_AxisDescriptor_AxisPosition value) { - return ::google::protobuf::internal::NameOfDenseEnum( - static_cast(value)); -} -inline bool FigureDescriptor_AxisDescriptor_AxisPosition_Parse(absl::string_view name, FigureDescriptor_AxisDescriptor_AxisPosition* value) { - return ::google::protobuf::internal::ParseNamedEnum( - FigureDescriptor_AxisDescriptor_AxisPosition_descriptor(), name, value); -} -enum FigureDescriptor_BusinessCalendarDescriptor_DayOfWeek : int { - FigureDescriptor_BusinessCalendarDescriptor_DayOfWeek_SUNDAY = 0, - FigureDescriptor_BusinessCalendarDescriptor_DayOfWeek_MONDAY = 1, - FigureDescriptor_BusinessCalendarDescriptor_DayOfWeek_TUESDAY = 2, - FigureDescriptor_BusinessCalendarDescriptor_DayOfWeek_WEDNESDAY = 3, - FigureDescriptor_BusinessCalendarDescriptor_DayOfWeek_THURSDAY = 4, - FigureDescriptor_BusinessCalendarDescriptor_DayOfWeek_FRIDAY = 5, - FigureDescriptor_BusinessCalendarDescriptor_DayOfWeek_SATURDAY = 6, - FigureDescriptor_BusinessCalendarDescriptor_DayOfWeek_FigureDescriptor_BusinessCalendarDescriptor_DayOfWeek_INT_MIN_SENTINEL_DO_NOT_USE_ = - std::numeric_limits<::int32_t>::min(), - FigureDescriptor_BusinessCalendarDescriptor_DayOfWeek_FigureDescriptor_BusinessCalendarDescriptor_DayOfWeek_INT_MAX_SENTINEL_DO_NOT_USE_ = - std::numeric_limits<::int32_t>::max(), -}; - -bool FigureDescriptor_BusinessCalendarDescriptor_DayOfWeek_IsValid(int value); -extern const uint32_t FigureDescriptor_BusinessCalendarDescriptor_DayOfWeek_internal_data_[]; -constexpr FigureDescriptor_BusinessCalendarDescriptor_DayOfWeek FigureDescriptor_BusinessCalendarDescriptor_DayOfWeek_DayOfWeek_MIN = static_cast(0); -constexpr FigureDescriptor_BusinessCalendarDescriptor_DayOfWeek FigureDescriptor_BusinessCalendarDescriptor_DayOfWeek_DayOfWeek_MAX = static_cast(6); -constexpr int FigureDescriptor_BusinessCalendarDescriptor_DayOfWeek_DayOfWeek_ARRAYSIZE = 6 + 1; -const ::google::protobuf::EnumDescriptor* -FigureDescriptor_BusinessCalendarDescriptor_DayOfWeek_descriptor(); -template -const std::string& FigureDescriptor_BusinessCalendarDescriptor_DayOfWeek_Name(T value) { - static_assert(std::is_same::value || - std::is_integral::value, - "Incorrect type passed to DayOfWeek_Name()."); - return FigureDescriptor_BusinessCalendarDescriptor_DayOfWeek_Name(static_cast(value)); -} -template <> -inline const std::string& FigureDescriptor_BusinessCalendarDescriptor_DayOfWeek_Name(FigureDescriptor_BusinessCalendarDescriptor_DayOfWeek value) { - return ::google::protobuf::internal::NameOfDenseEnum( - static_cast(value)); -} -inline bool FigureDescriptor_BusinessCalendarDescriptor_DayOfWeek_Parse(absl::string_view name, FigureDescriptor_BusinessCalendarDescriptor_DayOfWeek* value) { - return ::google::protobuf::internal::ParseNamedEnum( - FigureDescriptor_BusinessCalendarDescriptor_DayOfWeek_descriptor(), name, value); -} -enum FigureDescriptor_SeriesPlotStyle : int { - FigureDescriptor_SeriesPlotStyle_BAR = 0, - FigureDescriptor_SeriesPlotStyle_STACKED_BAR = 1, - FigureDescriptor_SeriesPlotStyle_LINE = 2, - FigureDescriptor_SeriesPlotStyle_AREA = 3, - FigureDescriptor_SeriesPlotStyle_STACKED_AREA = 4, - FigureDescriptor_SeriesPlotStyle_PIE = 5, - FigureDescriptor_SeriesPlotStyle_HISTOGRAM = 6, - FigureDescriptor_SeriesPlotStyle_OHLC = 7, - FigureDescriptor_SeriesPlotStyle_SCATTER = 8, - FigureDescriptor_SeriesPlotStyle_STEP = 9, - FigureDescriptor_SeriesPlotStyle_ERROR_BAR = 10, - FigureDescriptor_SeriesPlotStyle_TREEMAP = 11, - FigureDescriptor_SeriesPlotStyle_FigureDescriptor_SeriesPlotStyle_INT_MIN_SENTINEL_DO_NOT_USE_ = - std::numeric_limits<::int32_t>::min(), - FigureDescriptor_SeriesPlotStyle_FigureDescriptor_SeriesPlotStyle_INT_MAX_SENTINEL_DO_NOT_USE_ = - std::numeric_limits<::int32_t>::max(), -}; - -bool FigureDescriptor_SeriesPlotStyle_IsValid(int value); -extern const uint32_t FigureDescriptor_SeriesPlotStyle_internal_data_[]; -constexpr FigureDescriptor_SeriesPlotStyle FigureDescriptor_SeriesPlotStyle_SeriesPlotStyle_MIN = static_cast(0); -constexpr FigureDescriptor_SeriesPlotStyle FigureDescriptor_SeriesPlotStyle_SeriesPlotStyle_MAX = static_cast(11); -constexpr int FigureDescriptor_SeriesPlotStyle_SeriesPlotStyle_ARRAYSIZE = 11 + 1; -const ::google::protobuf::EnumDescriptor* -FigureDescriptor_SeriesPlotStyle_descriptor(); -template -const std::string& FigureDescriptor_SeriesPlotStyle_Name(T value) { - static_assert(std::is_same::value || - std::is_integral::value, - "Incorrect type passed to SeriesPlotStyle_Name()."); - return FigureDescriptor_SeriesPlotStyle_Name(static_cast(value)); -} -template <> -inline const std::string& FigureDescriptor_SeriesPlotStyle_Name(FigureDescriptor_SeriesPlotStyle value) { - return ::google::protobuf::internal::NameOfDenseEnum( - static_cast(value)); -} -inline bool FigureDescriptor_SeriesPlotStyle_Parse(absl::string_view name, FigureDescriptor_SeriesPlotStyle* value) { - return ::google::protobuf::internal::ParseNamedEnum( - FigureDescriptor_SeriesPlotStyle_descriptor(), name, value); -} -enum FigureDescriptor_SourceType : int { - FigureDescriptor_SourceType_X = 0, - FigureDescriptor_SourceType_Y = 1, - FigureDescriptor_SourceType_Z = 2, - FigureDescriptor_SourceType_X_LOW = 3, - FigureDescriptor_SourceType_X_HIGH = 4, - FigureDescriptor_SourceType_Y_LOW = 5, - FigureDescriptor_SourceType_Y_HIGH = 6, - FigureDescriptor_SourceType_TIME = 7, - FigureDescriptor_SourceType_OPEN = 8, - FigureDescriptor_SourceType_HIGH = 9, - FigureDescriptor_SourceType_LOW = 10, - FigureDescriptor_SourceType_CLOSE = 11, - FigureDescriptor_SourceType_SHAPE = 12, - FigureDescriptor_SourceType_SIZE = 13, - FigureDescriptor_SourceType_LABEL = 14, - FigureDescriptor_SourceType_COLOR = 15, - FigureDescriptor_SourceType_PARENT = 16, - FigureDescriptor_SourceType_HOVER_TEXT = 17, - FigureDescriptor_SourceType_TEXT = 18, - FigureDescriptor_SourceType_FigureDescriptor_SourceType_INT_MIN_SENTINEL_DO_NOT_USE_ = - std::numeric_limits<::int32_t>::min(), - FigureDescriptor_SourceType_FigureDescriptor_SourceType_INT_MAX_SENTINEL_DO_NOT_USE_ = - std::numeric_limits<::int32_t>::max(), -}; - -bool FigureDescriptor_SourceType_IsValid(int value); -extern const uint32_t FigureDescriptor_SourceType_internal_data_[]; -constexpr FigureDescriptor_SourceType FigureDescriptor_SourceType_SourceType_MIN = static_cast(0); -constexpr FigureDescriptor_SourceType FigureDescriptor_SourceType_SourceType_MAX = static_cast(18); -constexpr int FigureDescriptor_SourceType_SourceType_ARRAYSIZE = 18 + 1; -const ::google::protobuf::EnumDescriptor* -FigureDescriptor_SourceType_descriptor(); -template -const std::string& FigureDescriptor_SourceType_Name(T value) { - static_assert(std::is_same::value || - std::is_integral::value, - "Incorrect type passed to SourceType_Name()."); - return FigureDescriptor_SourceType_Name(static_cast(value)); -} -template <> -inline const std::string& FigureDescriptor_SourceType_Name(FigureDescriptor_SourceType value) { - return ::google::protobuf::internal::NameOfDenseEnum( - static_cast(value)); -} -inline bool FigureDescriptor_SourceType_Parse(absl::string_view name, FigureDescriptor_SourceType* value) { - return ::google::protobuf::internal::ParseNamedEnum( - FigureDescriptor_SourceType_descriptor(), name, value); -} - -// =================================================================== - - -// ------------------------------------------------------------------- - -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() 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; - } - inline VersionedTextDocumentIdentifier& operator=(VersionedTextDocumentIdentifier&& 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 VersionedTextDocumentIdentifier& default_instance() { - return *internal_default_instance(); - } - 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); } - 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 - if (GetArena() == other->GetArena()) { -#endif // !PROTOBUF_FORCE_COPY_IN_SWAP - InternalSwap(other); - } else { - ::google::protobuf::internal::GenericSwap(this, other); - } - } - void UnsafeArenaSwap(VersionedTextDocumentIdentifier* other) { - if (other == this) return; - ABSL_DCHECK(GetArena() == other->GetArena()); - InternalSwap(other); - } - - // implements Message ---------------------------------------------- - - 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); } - - private: - static void MergeImpl( - ::google::protobuf::MessageLite& to_msg, - const ::google::protobuf::MessageLite& from_msg); - - 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; - #endif // PROTOBUF_CUSTOM_VTABLE - int GetCachedSize() const { return _impl_._cached_size_.Get(); } - - private: - void SharedCtor(::google::protobuf::Arena* arena); - void SharedDtor(); - void InternalSwap(VersionedTextDocumentIdentifier* other); - private: - friend class ::google::protobuf::internal::AnyMetadata; - 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); - 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, - }; - // string uri = 1; - void clear_uri() ; - const std::string& uri() const; - template - void set_uri(Arg_&& arg, Args_... args); - std::string* mutable_uri(); - PROTOBUF_NODISCARD std::string* release_uri(); - void set_allocated_uri(std::string* value); - - private: - const std::string& _internal_uri() const; - inline PROTOBUF_ALWAYS_INLINE void _internal_set_uri( - const std::string& value); - std::string* _internal_mutable_uri(); - - public: - // int32 version = 2; - void clear_version() ; - ::int32_t version() const; - void set_version(::int32_t value); - - private: - ::int32_t _internal_version() const; - void _internal_set_version(::int32_t value); - - public: - // @@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 - 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 VersionedTextDocumentIdentifier& from_msg); - ::google::protobuf::internal::ArenaStringPtr uri_; - ::int32_t version_; - mutable ::google::protobuf::internal::CachedSize _cached_size_; - PROTOBUF_TSAN_DECLARE_MEMBER - }; - 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) */ { - public: - inline TextDocumentItem() : TextDocumentItem(nullptr) {} - ~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; - } - inline TextDocumentItem& operator=(TextDocumentItem&& 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 TextDocumentItem& default_instance() { - return *internal_default_instance(); - } - 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); } - 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 - if (GetArena() == other->GetArena()) { -#endif // !PROTOBUF_FORCE_COPY_IN_SWAP - InternalSwap(other); - } else { - ::google::protobuf::internal::GenericSwap(this, other); - } - } - void UnsafeArenaSwap(TextDocumentItem* other) { - if (other == this) return; - ABSL_DCHECK(GetArena() == other->GetArena()); - InternalSwap(other); - } - - // implements Message ---------------------------------------------- - - 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); } - - private: - static void MergeImpl( - ::google::protobuf::MessageLite& to_msg, - const ::google::protobuf::MessageLite& from_msg); - - 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; - #endif // PROTOBUF_CUSTOM_VTABLE - int GetCachedSize() const { return _impl_._cached_size_.Get(); } - - private: - void SharedCtor(::google::protobuf::Arena* arena); - void SharedDtor(); - void InternalSwap(TextDocumentItem* other); - private: - friend class ::google::protobuf::internal::AnyMetadata; - 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); - 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, - kTextFieldNumber = 4, - kVersionFieldNumber = 3, - }; - // string uri = 1; - void clear_uri() ; - const std::string& uri() const; - template - void set_uri(Arg_&& arg, Args_... args); - std::string* mutable_uri(); - PROTOBUF_NODISCARD std::string* release_uri(); - void set_allocated_uri(std::string* value); - - private: - const std::string& _internal_uri() const; - inline PROTOBUF_ALWAYS_INLINE void _internal_set_uri( - const std::string& value); - std::string* _internal_mutable_uri(); - - public: - // string language_id = 2; - void clear_language_id() ; - const std::string& language_id() const; - template - void set_language_id(Arg_&& arg, Args_... args); - std::string* mutable_language_id(); - PROTOBUF_NODISCARD std::string* release_language_id(); - void set_allocated_language_id(std::string* value); - - private: - const std::string& _internal_language_id() const; - inline PROTOBUF_ALWAYS_INLINE void _internal_set_language_id( - const std::string& value); - std::string* _internal_mutable_language_id(); - - public: - // string text = 4; - void clear_text() ; - const std::string& text() const; - template - void set_text(Arg_&& arg, Args_... args); - std::string* mutable_text(); - PROTOBUF_NODISCARD std::string* release_text(); - void set_allocated_text(std::string* value); - - private: - const std::string& _internal_text() const; - inline PROTOBUF_ALWAYS_INLINE void _internal_set_text( - const std::string& value); - std::string* _internal_mutable_text(); - - public: - // int32 version = 3; - void clear_version() ; - ::int32_t version() const; - void set_version(::int32_t value); - - private: - ::int32_t _internal_version() const; - void _internal_set_version(::int32_t value); - - public: - // @@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 - 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 TextDocumentItem& from_msg); - ::google::protobuf::internal::ArenaStringPtr uri_; - ::google::protobuf::internal::ArenaStringPtr language_id_; - ::google::protobuf::internal::ArenaStringPtr text_; - ::int32_t version_; - mutable ::google::protobuf::internal::CachedSize _cached_size_; - PROTOBUF_TSAN_DECLARE_MEMBER - }; - 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) */ { - public: - inline Position() : Position(nullptr) {} - ~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; - } - inline Position& operator=(Position&& 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 Position& default_instance() { - return *internal_default_instance(); - } - 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); } - 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 - if (GetArena() == other->GetArena()) { -#endif // !PROTOBUF_FORCE_COPY_IN_SWAP - InternalSwap(other); - } else { - ::google::protobuf::internal::GenericSwap(this, other); - } - } - void UnsafeArenaSwap(Position* other) { - if (other == this) return; - ABSL_DCHECK(GetArena() == other->GetArena()); - InternalSwap(other); - } - - // implements Message ---------------------------------------------- - - 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); } - - private: - static void MergeImpl( - ::google::protobuf::MessageLite& to_msg, - const ::google::protobuf::MessageLite& from_msg); - - 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; - #endif // PROTOBUF_CUSTOM_VTABLE - int GetCachedSize() const { return _impl_._cached_size_.Get(); } - - private: - void SharedCtor(::google::protobuf::Arena* arena); - void SharedDtor(); - void InternalSwap(Position* other); - private: - friend class ::google::protobuf::internal::AnyMetadata; - 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); - 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, - }; - // int32 line = 1; - void clear_line() ; - ::int32_t line() const; - void set_line(::int32_t value); - - private: - ::int32_t _internal_line() const; - void _internal_set_line(::int32_t value); - - public: - // int32 character = 2; - void clear_character() ; - ::int32_t character() const; - void set_character(::int32_t value); - - private: - ::int32_t _internal_character() const; - void _internal_set_character(::int32_t value); - - public: - // @@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 - 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 Position& from_msg); - ::int32_t line_; - ::int32_t character_; - mutable ::google::protobuf::internal::CachedSize _cached_size_; - PROTOBUF_TSAN_DECLARE_MEMBER - }; - 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) */ { - public: - inline MarkupContent() : MarkupContent(nullptr) {} - ~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; - } - inline MarkupContent& operator=(MarkupContent&& 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 MarkupContent& default_instance() { - return *internal_default_instance(); - } - 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); } - 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 - if (GetArena() == other->GetArena()) { -#endif // !PROTOBUF_FORCE_COPY_IN_SWAP - InternalSwap(other); - } else { - ::google::protobuf::internal::GenericSwap(this, other); - } - } - void UnsafeArenaSwap(MarkupContent* other) { - if (other == this) return; - ABSL_DCHECK(GetArena() == other->GetArena()); - InternalSwap(other); - } - - // implements Message ---------------------------------------------- - - 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); } - - private: - static void MergeImpl( - ::google::protobuf::MessageLite& to_msg, - const ::google::protobuf::MessageLite& from_msg); - - 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; - #endif // PROTOBUF_CUSTOM_VTABLE - int GetCachedSize() const { return _impl_._cached_size_.Get(); } - - private: - void SharedCtor(::google::protobuf::Arena* arena); - void SharedDtor(); - void InternalSwap(MarkupContent* other); - private: - friend class ::google::protobuf::internal::AnyMetadata; - 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); - 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, - }; - // string kind = 1; - void clear_kind() ; - const std::string& kind() const; - template - void set_kind(Arg_&& arg, Args_... args); - std::string* mutable_kind(); - PROTOBUF_NODISCARD std::string* release_kind(); - void set_allocated_kind(std::string* value); - - private: - const std::string& _internal_kind() const; - inline PROTOBUF_ALWAYS_INLINE void _internal_set_kind( - const std::string& value); - std::string* _internal_mutable_kind(); - - public: - // string value = 2; - void clear_value() ; - const std::string& value() const; - template - void set_value(Arg_&& arg, Args_... args); - std::string* mutable_value(); - PROTOBUF_NODISCARD std::string* release_value(); - void set_allocated_value(std::string* value); - - private: - const std::string& _internal_value() const; - inline PROTOBUF_ALWAYS_INLINE void _internal_set_value( - const std::string& value); - std::string* _internal_mutable_value(); - - public: - // @@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 - 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 MarkupContent& from_msg); - ::google::protobuf::internal::ArenaStringPtr kind_; - ::google::protobuf::internal::ArenaStringPtr value_; - mutable ::google::protobuf::internal::CachedSize _cached_size_; - PROTOBUF_TSAN_DECLARE_MEMBER - }; - 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) */ { - public: - inline LogSubscriptionRequest() : LogSubscriptionRequest(nullptr) {} - ~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; - } - inline LogSubscriptionRequest& operator=(LogSubscriptionRequest&& 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 LogSubscriptionRequest& default_instance() { - return *internal_default_instance(); - } - 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); } - 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 - if (GetArena() == other->GetArena()) { -#endif // !PROTOBUF_FORCE_COPY_IN_SWAP - InternalSwap(other); - } else { - ::google::protobuf::internal::GenericSwap(this, other); - } - } - void UnsafeArenaSwap(LogSubscriptionRequest* other) { - if (other == this) return; - ABSL_DCHECK(GetArena() == other->GetArena()); - InternalSwap(other); - } - - // implements Message ---------------------------------------------- - - 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); } - - private: - static void MergeImpl( - ::google::protobuf::MessageLite& to_msg, - const ::google::protobuf::MessageLite& from_msg); - - 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; - #endif // PROTOBUF_CUSTOM_VTABLE - int GetCachedSize() const { return _impl_._cached_size_.Get(); } - - private: - void SharedCtor(::google::protobuf::Arena* arena); - void SharedDtor(); - void InternalSwap(LogSubscriptionRequest* other); - private: - friend class ::google::protobuf::internal::AnyMetadata; - 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); - 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, - }; - // repeated string levels = 2; - int levels_size() const; - private: - int _internal_levels_size() const; - - public: - void clear_levels() ; - const std::string& levels(int index) const; - std::string* mutable_levels(int index); - template - void set_levels(int index, Arg_&& value, Args_... args); - std::string* add_levels(); - template - void add_levels(Arg_&& value, Args_... args); - const ::google::protobuf::RepeatedPtrField& levels() const; - ::google::protobuf::RepeatedPtrField* mutable_levels(); - - private: - const ::google::protobuf::RepeatedPtrField& _internal_levels() const; - ::google::protobuf::RepeatedPtrField* _internal_mutable_levels(); - - public: - // int64 last_seen_log_timestamp = 1 [jstype = JS_STRING]; - void clear_last_seen_log_timestamp() ; - ::int64_t last_seen_log_timestamp() const; - void set_last_seen_log_timestamp(::int64_t value); - - private: - ::int64_t _internal_last_seen_log_timestamp() const; - void _internal_set_last_seen_log_timestamp(::int64_t value); - - public: - // @@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 - 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 LogSubscriptionRequest& from_msg); - ::google::protobuf::RepeatedPtrField levels_; - ::int64_t last_seen_log_timestamp_; - mutable ::google::protobuf::internal::CachedSize _cached_size_; - PROTOBUF_TSAN_DECLARE_MEMBER - }; - 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) */ { - public: - inline LogSubscriptionData() : LogSubscriptionData(nullptr) {} - ~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; - } - inline LogSubscriptionData& operator=(LogSubscriptionData&& 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 LogSubscriptionData& default_instance() { - return *internal_default_instance(); - } - 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); } - 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 - if (GetArena() == other->GetArena()) { -#endif // !PROTOBUF_FORCE_COPY_IN_SWAP - InternalSwap(other); - } else { - ::google::protobuf::internal::GenericSwap(this, other); - } - } - void UnsafeArenaSwap(LogSubscriptionData* other) { - if (other == this) return; - ABSL_DCHECK(GetArena() == other->GetArena()); - InternalSwap(other); - } - - // implements Message ---------------------------------------------- - - 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); } - - private: - static void MergeImpl( - ::google::protobuf::MessageLite& to_msg, - const ::google::protobuf::MessageLite& from_msg); - - 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; - #endif // PROTOBUF_CUSTOM_VTABLE - int GetCachedSize() const { return _impl_._cached_size_.Get(); } - - private: - void SharedCtor(::google::protobuf::Arena* arena); - void SharedDtor(); - void InternalSwap(LogSubscriptionData* other); - private: - friend class ::google::protobuf::internal::AnyMetadata; - 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); - 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, - kMicrosFieldNumber = 1, - }; - // string log_level = 2; - void clear_log_level() ; - const std::string& log_level() const; - template - void set_log_level(Arg_&& arg, Args_... args); - std::string* mutable_log_level(); - PROTOBUF_NODISCARD std::string* release_log_level(); - void set_allocated_log_level(std::string* value); - - private: - const std::string& _internal_log_level() const; - inline PROTOBUF_ALWAYS_INLINE void _internal_set_log_level( - const std::string& value); - std::string* _internal_mutable_log_level(); - - public: - // string message = 3; - void clear_message() ; - const std::string& message() const; - template - void set_message(Arg_&& arg, Args_... args); - std::string* mutable_message(); - PROTOBUF_NODISCARD std::string* release_message(); - void set_allocated_message(std::string* value); - - private: - const std::string& _internal_message() const; - inline PROTOBUF_ALWAYS_INLINE void _internal_set_message( - const std::string& value); - std::string* _internal_mutable_message(); - - public: - // int64 micros = 1 [jstype = JS_STRING]; - void clear_micros() ; - ::int64_t micros() const; - void set_micros(::int64_t value); - - private: - ::int64_t _internal_micros() const; - void _internal_set_micros(::int64_t value); - - public: - // @@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 - 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 LogSubscriptionData& from_msg); - ::google::protobuf::internal::ArenaStringPtr log_level_; - ::google::protobuf::internal::ArenaStringPtr message_; - ::int64_t micros_; - mutable ::google::protobuf::internal::CachedSize _cached_size_; - PROTOBUF_TSAN_DECLARE_MEMBER - }; - 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) */ { - public: - inline GetHeapInfoResponse() : GetHeapInfoResponse(nullptr) {} - ~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; - } - inline GetHeapInfoResponse& operator=(GetHeapInfoResponse&& 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 GetHeapInfoResponse& default_instance() { - return *internal_default_instance(); - } - 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); } - 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 - if (GetArena() == other->GetArena()) { -#endif // !PROTOBUF_FORCE_COPY_IN_SWAP - InternalSwap(other); - } else { - ::google::protobuf::internal::GenericSwap(this, other); - } - } - void UnsafeArenaSwap(GetHeapInfoResponse* other) { - if (other == this) return; - ABSL_DCHECK(GetArena() == other->GetArena()); - InternalSwap(other); - } - - // implements Message ---------------------------------------------- - - 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); } - - private: - static void MergeImpl( - ::google::protobuf::MessageLite& to_msg, - const ::google::protobuf::MessageLite& from_msg); - - 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; - #endif // PROTOBUF_CUSTOM_VTABLE - int GetCachedSize() const { return _impl_._cached_size_.Get(); } - - private: - void SharedCtor(::google::protobuf::Arena* arena); - void SharedDtor(); - void InternalSwap(GetHeapInfoResponse* other); - private: - friend class ::google::protobuf::internal::AnyMetadata; - 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); - 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, - kFreeMemoryFieldNumber = 3, - }; - // int64 max_memory = 1 [jstype = JS_STRING]; - void clear_max_memory() ; - ::int64_t max_memory() const; - void set_max_memory(::int64_t value); - - private: - ::int64_t _internal_max_memory() const; - void _internal_set_max_memory(::int64_t value); - - public: - // int64 total_memory = 2 [jstype = JS_STRING]; - void clear_total_memory() ; - ::int64_t total_memory() const; - void set_total_memory(::int64_t value); - - private: - ::int64_t _internal_total_memory() const; - void _internal_set_total_memory(::int64_t value); - - public: - // int64 free_memory = 3 [jstype = JS_STRING]; - void clear_free_memory() ; - ::int64_t free_memory() const; - void set_free_memory(::int64_t value); - - private: - ::int64_t _internal_free_memory() const; - void _internal_set_free_memory(::int64_t value); - - public: - // @@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 - 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 GetHeapInfoResponse& from_msg); - ::int64_t max_memory_; - ::int64_t total_memory_; - ::int64_t free_memory_; - mutable ::google::protobuf::internal::CachedSize _cached_size_; - PROTOBUF_TSAN_DECLARE_MEMBER - }; - 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) */ { - public: - inline GetHeapInfoRequest() : GetHeapInfoRequest(nullptr) {} - 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; - } - inline GetHeapInfoRequest& operator=(GetHeapInfoRequest&& 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 GetHeapInfoRequest& default_instance() { - return *internal_default_instance(); - } - 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); } - 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 - if (GetArena() == other->GetArena()) { -#endif // !PROTOBUF_FORCE_COPY_IN_SWAP - InternalSwap(other); - } else { - ::google::protobuf::internal::GenericSwap(this, other); - } - } - void UnsafeArenaSwap(GetHeapInfoRequest* other) { - if (other == this) return; - ABSL_DCHECK(GetArena() == other->GetArena()); - InternalSwap(other); - } - - // implements Message ---------------------------------------------- - - 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) { - ::google::protobuf::internal::ZeroFieldsBase::CopyImpl(*this, from); - } - using ::google::protobuf::internal::ZeroFieldsBase::MergeFrom; - void MergeFrom(const GetHeapInfoRequest& 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.script.grpc.GetHeapInfoRequest"; } - - protected: - explicit GetHeapInfoRequest(::google::protobuf::Arena* arena); - GetHeapInfoRequest(::google::protobuf::Arena* arena, const GetHeapInfoRequest& from); - 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; - 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 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) */ { - public: - inline GetConsoleTypesResponse() : GetConsoleTypesResponse(nullptr) {} - ~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; - } - inline GetConsoleTypesResponse& operator=(GetConsoleTypesResponse&& 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 GetConsoleTypesResponse& default_instance() { - return *internal_default_instance(); - } - 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); } - 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 - if (GetArena() == other->GetArena()) { -#endif // !PROTOBUF_FORCE_COPY_IN_SWAP - InternalSwap(other); - } else { - ::google::protobuf::internal::GenericSwap(this, other); - } - } - void UnsafeArenaSwap(GetConsoleTypesResponse* other) { - if (other == this) return; - ABSL_DCHECK(GetArena() == other->GetArena()); - InternalSwap(other); - } - - // implements Message ---------------------------------------------- - - 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); } - - private: - static void MergeImpl( - ::google::protobuf::MessageLite& to_msg, - const ::google::protobuf::MessageLite& from_msg); - - 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; - #endif // PROTOBUF_CUSTOM_VTABLE - int GetCachedSize() const { return _impl_._cached_size_.Get(); } - - private: - void SharedCtor(::google::protobuf::Arena* arena); - void SharedDtor(); - void InternalSwap(GetConsoleTypesResponse* other); - private: - friend class ::google::protobuf::internal::AnyMetadata; - 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); - 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, - }; - // repeated string console_types = 1; - int console_types_size() const; - private: - int _internal_console_types_size() const; - - public: - void clear_console_types() ; - const std::string& console_types(int index) const; - std::string* mutable_console_types(int index); - template - void set_console_types(int index, Arg_&& value, Args_... args); - std::string* add_console_types(); - template - void add_console_types(Arg_&& value, Args_... args); - const ::google::protobuf::RepeatedPtrField& console_types() const; - ::google::protobuf::RepeatedPtrField* mutable_console_types(); - - private: - const ::google::protobuf::RepeatedPtrField& _internal_console_types() const; - ::google::protobuf::RepeatedPtrField* _internal_mutable_console_types(); - - public: - // @@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 - 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 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) */ { - public: - inline GetConsoleTypesRequest() : GetConsoleTypesRequest(nullptr) {} - 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; - } - inline GetConsoleTypesRequest& operator=(GetConsoleTypesRequest&& 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 GetConsoleTypesRequest& default_instance() { - return *internal_default_instance(); - } - 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); } - 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 - if (GetArena() == other->GetArena()) { -#endif // !PROTOBUF_FORCE_COPY_IN_SWAP - InternalSwap(other); - } else { - ::google::protobuf::internal::GenericSwap(this, other); - } - } - void UnsafeArenaSwap(GetConsoleTypesRequest* other) { - if (other == this) return; - ABSL_DCHECK(GetArena() == other->GetArena()); - InternalSwap(other); - } - - // implements Message ---------------------------------------------- - - 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) { - ::google::protobuf::internal::ZeroFieldsBase::CopyImpl(*this, from); - } - using ::google::protobuf::internal::ZeroFieldsBase::MergeFrom; - void MergeFrom(const GetConsoleTypesRequest& 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.script.grpc.GetConsoleTypesRequest"; } - - protected: - explicit GetConsoleTypesRequest(::google::protobuf::Arena* arena); - GetConsoleTypesRequest(::google::protobuf::Arena* arena, const GetConsoleTypesRequest& from); - 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; - 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 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) */ { - public: - inline FigureDescriptor_StringMapWithDefault() : FigureDescriptor_StringMapWithDefault(nullptr) {} - ~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; - } - inline FigureDescriptor_StringMapWithDefault& operator=(FigureDescriptor_StringMapWithDefault&& 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 FigureDescriptor_StringMapWithDefault& default_instance() { - return *internal_default_instance(); - } - 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); } - 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 - if (GetArena() == other->GetArena()) { -#endif // !PROTOBUF_FORCE_COPY_IN_SWAP - InternalSwap(other); - } else { - ::google::protobuf::internal::GenericSwap(this, other); - } - } - void UnsafeArenaSwap(FigureDescriptor_StringMapWithDefault* other) { - if (other == this) return; - ABSL_DCHECK(GetArena() == other->GetArena()); - InternalSwap(other); - } - - // implements Message ---------------------------------------------- - - 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); } - - private: - static void MergeImpl( - ::google::protobuf::MessageLite& to_msg, - const ::google::protobuf::MessageLite& from_msg); - - 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; - #endif // PROTOBUF_CUSTOM_VTABLE - int GetCachedSize() const { return _impl_._cached_size_.Get(); } - - private: - void SharedCtor(::google::protobuf::Arena* arena); - void SharedDtor(); - void InternalSwap(FigureDescriptor_StringMapWithDefault* other); - private: - friend class ::google::protobuf::internal::AnyMetadata; - 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); - 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, - kDefaultStringFieldNumber = 1, - }; - // repeated string keys = 2; - int keys_size() const; - private: - int _internal_keys_size() const; - - public: - void clear_keys() ; - const std::string& keys(int index) const; - std::string* mutable_keys(int index); - template - void set_keys(int index, Arg_&& value, Args_... args); - std::string* add_keys(); - template - void add_keys(Arg_&& value, Args_... args); - const ::google::protobuf::RepeatedPtrField& keys() const; - ::google::protobuf::RepeatedPtrField* mutable_keys(); - - private: - const ::google::protobuf::RepeatedPtrField& _internal_keys() const; - ::google::protobuf::RepeatedPtrField* _internal_mutable_keys(); - - public: - // repeated string values = 3; - int values_size() const; - private: - int _internal_values_size() const; - - public: - void clear_values() ; - const std::string& values(int index) const; - std::string* mutable_values(int index); - template - void set_values(int index, Arg_&& value, Args_... args); - std::string* add_values(); - template - void add_values(Arg_&& value, Args_... args); - const ::google::protobuf::RepeatedPtrField& values() const; - ::google::protobuf::RepeatedPtrField* mutable_values(); - - private: - const ::google::protobuf::RepeatedPtrField& _internal_values() const; - ::google::protobuf::RepeatedPtrField* _internal_mutable_values(); - - public: - // optional string default_string = 1; - bool has_default_string() const; - void clear_default_string() ; - const std::string& default_string() const; - template - void set_default_string(Arg_&& arg, Args_... args); - std::string* mutable_default_string(); - PROTOBUF_NODISCARD std::string* release_default_string(); - void set_allocated_default_string(std::string* value); - - private: - const std::string& _internal_default_string() const; - inline PROTOBUF_ALWAYS_INLINE void _internal_set_default_string( - const std::string& value); - std::string* _internal_mutable_default_string(); - - public: - // @@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 - 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 FigureDescriptor_StringMapWithDefault& from_msg); - ::google::protobuf::internal::HasBits<1> _has_bits_; - mutable ::google::protobuf::internal::CachedSize _cached_size_; - ::google::protobuf::RepeatedPtrField keys_; - ::google::protobuf::RepeatedPtrField values_; - ::google::protobuf::internal::ArenaStringPtr default_string_; - PROTOBUF_TSAN_DECLARE_MEMBER - }; - 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) */ { - public: - inline FigureDescriptor_OneClickDescriptor() : FigureDescriptor_OneClickDescriptor(nullptr) {} - ~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; - } - inline FigureDescriptor_OneClickDescriptor& operator=(FigureDescriptor_OneClickDescriptor&& 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 FigureDescriptor_OneClickDescriptor& default_instance() { - return *internal_default_instance(); - } - 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); } - 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 - if (GetArena() == other->GetArena()) { -#endif // !PROTOBUF_FORCE_COPY_IN_SWAP - InternalSwap(other); - } else { - ::google::protobuf::internal::GenericSwap(this, other); - } - } - void UnsafeArenaSwap(FigureDescriptor_OneClickDescriptor* other) { - if (other == this) return; - ABSL_DCHECK(GetArena() == other->GetArena()); - InternalSwap(other); - } - - // implements Message ---------------------------------------------- - - 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); } - - private: - static void MergeImpl( - ::google::protobuf::MessageLite& to_msg, - const ::google::protobuf::MessageLite& from_msg); - - 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; - #endif // PROTOBUF_CUSTOM_VTABLE - int GetCachedSize() const { return _impl_._cached_size_.Get(); } - - private: - void SharedCtor(::google::protobuf::Arena* arena); - void SharedDtor(); - void InternalSwap(FigureDescriptor_OneClickDescriptor* other); - private: - friend class ::google::protobuf::internal::AnyMetadata; - 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); - 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, - kRequireAllFiltersToDisplayFieldNumber = 3, - }; - // repeated string columns = 1; - int columns_size() const; - private: - int _internal_columns_size() const; - - public: - void clear_columns() ; - const std::string& columns(int index) const; - std::string* mutable_columns(int index); - template - void set_columns(int index, Arg_&& value, Args_... args); - std::string* add_columns(); - template - void add_columns(Arg_&& value, Args_... args); - const ::google::protobuf::RepeatedPtrField& columns() const; - ::google::protobuf::RepeatedPtrField* mutable_columns(); - - private: - const ::google::protobuf::RepeatedPtrField& _internal_columns() const; - ::google::protobuf::RepeatedPtrField* _internal_mutable_columns(); - - public: - // repeated string column_types = 2; - int column_types_size() const; - private: - int _internal_column_types_size() const; - - public: - void clear_column_types() ; - const std::string& column_types(int index) const; - std::string* mutable_column_types(int index); - template - void set_column_types(int index, Arg_&& value, Args_... args); - std::string* add_column_types(); - template - void add_column_types(Arg_&& value, Args_... args); - const ::google::protobuf::RepeatedPtrField& column_types() const; - ::google::protobuf::RepeatedPtrField* mutable_column_types(); - - private: - const ::google::protobuf::RepeatedPtrField& _internal_column_types() const; - ::google::protobuf::RepeatedPtrField* _internal_mutable_column_types(); - - public: - // bool require_all_filters_to_display = 3; - void clear_require_all_filters_to_display() ; - bool require_all_filters_to_display() const; - void set_require_all_filters_to_display(bool value); - - private: - bool _internal_require_all_filters_to_display() const; - void _internal_set_require_all_filters_to_display(bool value); - - public: - // @@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 - 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 FigureDescriptor_OneClickDescriptor& from_msg); - ::google::protobuf::RepeatedPtrField columns_; - ::google::protobuf::RepeatedPtrField column_types_; - bool require_all_filters_to_display_; - mutable ::google::protobuf::internal::CachedSize _cached_size_; - PROTOBUF_TSAN_DECLARE_MEMBER - }; - 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) */ { - public: - inline FigureDescriptor_MultiSeriesSourceDescriptor() : FigureDescriptor_MultiSeriesSourceDescriptor(nullptr) {} - ~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; - } - inline FigureDescriptor_MultiSeriesSourceDescriptor& operator=(FigureDescriptor_MultiSeriesSourceDescriptor&& 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 FigureDescriptor_MultiSeriesSourceDescriptor& default_instance() { - return *internal_default_instance(); - } - 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); } - 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 - if (GetArena() == other->GetArena()) { -#endif // !PROTOBUF_FORCE_COPY_IN_SWAP - InternalSwap(other); - } else { - ::google::protobuf::internal::GenericSwap(this, other); - } - } - void UnsafeArenaSwap(FigureDescriptor_MultiSeriesSourceDescriptor* other) { - if (other == this) return; - ABSL_DCHECK(GetArena() == other->GetArena()); - InternalSwap(other); - } - - // implements Message ---------------------------------------------- - - 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); } - - private: - static void MergeImpl( - ::google::protobuf::MessageLite& to_msg, - const ::google::protobuf::MessageLite& from_msg); - - 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; - #endif // PROTOBUF_CUSTOM_VTABLE - int GetCachedSize() const { return _impl_._cached_size_.Get(); } - - private: - void SharedCtor(::google::protobuf::Arena* arena); - void SharedDtor(); - void InternalSwap(FigureDescriptor_MultiSeriesSourceDescriptor* other); - private: - friend class ::google::protobuf::internal::AnyMetadata; - 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); - 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, - kTypeFieldNumber = 2, - kPartitionedTableIdFieldNumber = 3, - }; - // string axis_id = 1; - void clear_axis_id() ; - const std::string& axis_id() const; - template - void set_axis_id(Arg_&& arg, Args_... args); - std::string* mutable_axis_id(); - PROTOBUF_NODISCARD std::string* release_axis_id(); - void set_allocated_axis_id(std::string* value); - - private: - const std::string& _internal_axis_id() const; - inline PROTOBUF_ALWAYS_INLINE void _internal_set_axis_id( - const std::string& value); - std::string* _internal_mutable_axis_id(); - - public: - // string column_name = 4; - void clear_column_name() ; - const std::string& column_name() const; - template - void set_column_name(Arg_&& arg, Args_... args); - std::string* mutable_column_name(); - PROTOBUF_NODISCARD std::string* release_column_name(); - void set_allocated_column_name(std::string* value); - - private: - const std::string& _internal_column_name() const; - inline PROTOBUF_ALWAYS_INLINE void _internal_set_column_name( - const std::string& value); - std::string* _internal_mutable_column_name(); - - public: - // .io.deephaven.proto.backplane.script.grpc.FigureDescriptor.SourceType type = 2; - void clear_type() ; - ::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_SourceType type() const; - void set_type(::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_SourceType value); - - private: - ::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_SourceType _internal_type() const; - void _internal_set_type(::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_SourceType value); - - public: - // int32 partitioned_table_id = 3; - void clear_partitioned_table_id() ; - ::int32_t partitioned_table_id() const; - void set_partitioned_table_id(::int32_t value); - - private: - ::int32_t _internal_partitioned_table_id() const; - void _internal_set_partitioned_table_id(::int32_t value); - - public: - // @@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 - 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 FigureDescriptor_MultiSeriesSourceDescriptor& from_msg); - ::google::protobuf::internal::ArenaStringPtr axis_id_; - ::google::protobuf::internal::ArenaStringPtr column_name_; - int type_; - ::int32_t partitioned_table_id_; - mutable ::google::protobuf::internal::CachedSize _cached_size_; - PROTOBUF_TSAN_DECLARE_MEMBER - }; - 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) */ { - public: - inline FigureDescriptor_DoubleMapWithDefault() : FigureDescriptor_DoubleMapWithDefault(nullptr) {} - ~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; - } - inline FigureDescriptor_DoubleMapWithDefault& operator=(FigureDescriptor_DoubleMapWithDefault&& 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 FigureDescriptor_DoubleMapWithDefault& default_instance() { - return *internal_default_instance(); - } - 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); } - 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 - if (GetArena() == other->GetArena()) { -#endif // !PROTOBUF_FORCE_COPY_IN_SWAP - InternalSwap(other); - } else { - ::google::protobuf::internal::GenericSwap(this, other); - } - } - void UnsafeArenaSwap(FigureDescriptor_DoubleMapWithDefault* other) { - if (other == this) return; - ABSL_DCHECK(GetArena() == other->GetArena()); - InternalSwap(other); - } - - // implements Message ---------------------------------------------- - - 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); } - - private: - static void MergeImpl( - ::google::protobuf::MessageLite& to_msg, - const ::google::protobuf::MessageLite& from_msg); - - 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; - #endif // PROTOBUF_CUSTOM_VTABLE - int GetCachedSize() const { return _impl_._cached_size_.Get(); } - - private: - void SharedCtor(::google::protobuf::Arena* arena); - void SharedDtor(); - void InternalSwap(FigureDescriptor_DoubleMapWithDefault* other); - private: - friend class ::google::protobuf::internal::AnyMetadata; - 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); - 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, - kDefaultDoubleFieldNumber = 1, - }; - // repeated string keys = 2; - int keys_size() const; - private: - int _internal_keys_size() const; - - public: - void clear_keys() ; - const std::string& keys(int index) const; - std::string* mutable_keys(int index); - template - void set_keys(int index, Arg_&& value, Args_... args); - std::string* add_keys(); - template - void add_keys(Arg_&& value, Args_... args); - const ::google::protobuf::RepeatedPtrField& keys() const; - ::google::protobuf::RepeatedPtrField* mutable_keys(); - - private: - const ::google::protobuf::RepeatedPtrField& _internal_keys() const; - ::google::protobuf::RepeatedPtrField* _internal_mutable_keys(); - - public: - // repeated double values = 3; - int values_size() const; - private: - int _internal_values_size() const; - - public: - void clear_values() ; - double values(int index) const; - void set_values(int index, double value); - void add_values(double value); - const ::google::protobuf::RepeatedField& values() const; - ::google::protobuf::RepeatedField* mutable_values(); - - private: - const ::google::protobuf::RepeatedField& _internal_values() const; - ::google::protobuf::RepeatedField* _internal_mutable_values(); - - public: - // optional double default_double = 1; - bool has_default_double() const; - void clear_default_double() ; - double default_double() const; - void set_default_double(double value); - - private: - double _internal_default_double() const; - void _internal_set_default_double(double value); - - public: - // @@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 - 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 FigureDescriptor_DoubleMapWithDefault& from_msg); - ::google::protobuf::internal::HasBits<1> _has_bits_; - mutable ::google::protobuf::internal::CachedSize _cached_size_; - ::google::protobuf::RepeatedPtrField keys_; - ::google::protobuf::RepeatedField values_; - double default_double_; - PROTOBUF_TSAN_DECLARE_MEMBER - }; - 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) */ { - public: - inline FigureDescriptor_BusinessCalendarDescriptor_LocalDate() : FigureDescriptor_BusinessCalendarDescriptor_LocalDate(nullptr) {} - ~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; - } - 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 - && 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 FigureDescriptor_BusinessCalendarDescriptor_LocalDate& default_instance() { - return *internal_default_instance(); - } - 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); } - 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 - if (GetArena() == other->GetArena()) { -#endif // !PROTOBUF_FORCE_COPY_IN_SWAP - InternalSwap(other); - } else { - ::google::protobuf::internal::GenericSwap(this, other); - } - } - void UnsafeArenaSwap(FigureDescriptor_BusinessCalendarDescriptor_LocalDate* other) { - if (other == this) return; - ABSL_DCHECK(GetArena() == other->GetArena()); - InternalSwap(other); - } - - // implements Message ---------------------------------------------- - - 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); } - - private: - static void MergeImpl( - ::google::protobuf::MessageLite& to_msg, - const ::google::protobuf::MessageLite& from_msg); - - 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; - #endif // PROTOBUF_CUSTOM_VTABLE - int GetCachedSize() const { return _impl_._cached_size_.Get(); } - - private: - void SharedCtor(::google::protobuf::Arena* arena); - void SharedDtor(); - void InternalSwap(FigureDescriptor_BusinessCalendarDescriptor_LocalDate* other); - private: - friend class ::google::protobuf::internal::AnyMetadata; - 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); - 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, - kDayFieldNumber = 3, - }; - // int32 year = 1; - void clear_year() ; - ::int32_t year() const; - void set_year(::int32_t value); - - private: - ::int32_t _internal_year() const; - void _internal_set_year(::int32_t value); - - public: - // int32 month = 2; - void clear_month() ; - ::int32_t month() const; - void set_month(::int32_t value); - - private: - ::int32_t _internal_month() const; - void _internal_set_month(::int32_t value); - - public: - // int32 day = 3; - void clear_day() ; - ::int32_t day() const; - void set_day(::int32_t value); - - private: - ::int32_t _internal_day() const; - void _internal_set_day(::int32_t value); - - public: - // @@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 - 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 FigureDescriptor_BusinessCalendarDescriptor_LocalDate& from_msg); - ::int32_t year_; - ::int32_t month_; - ::int32_t day_; - mutable ::google::protobuf::internal::CachedSize _cached_size_; - PROTOBUF_TSAN_DECLARE_MEMBER - }; - 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) */ { - public: - inline FigureDescriptor_BusinessCalendarDescriptor_BusinessPeriod() : FigureDescriptor_BusinessCalendarDescriptor_BusinessPeriod(nullptr) {} - ~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; - } - 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 - && 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 FigureDescriptor_BusinessCalendarDescriptor_BusinessPeriod& default_instance() { - return *internal_default_instance(); - } - 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); } - 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 - if (GetArena() == other->GetArena()) { -#endif // !PROTOBUF_FORCE_COPY_IN_SWAP - InternalSwap(other); - } else { - ::google::protobuf::internal::GenericSwap(this, other); - } - } - void UnsafeArenaSwap(FigureDescriptor_BusinessCalendarDescriptor_BusinessPeriod* other) { - if (other == this) return; - ABSL_DCHECK(GetArena() == other->GetArena()); - InternalSwap(other); - } - - // implements Message ---------------------------------------------- - - 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); } - - private: - static void MergeImpl( - ::google::protobuf::MessageLite& to_msg, - const ::google::protobuf::MessageLite& from_msg); - - 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; - #endif // PROTOBUF_CUSTOM_VTABLE - int GetCachedSize() const { return _impl_._cached_size_.Get(); } - - private: - void SharedCtor(::google::protobuf::Arena* arena); - void SharedDtor(); - void InternalSwap(FigureDescriptor_BusinessCalendarDescriptor_BusinessPeriod* other); - private: - friend class ::google::protobuf::internal::AnyMetadata; - 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); - 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, - }; - // string open = 1; - void clear_open() ; - const std::string& open() const; - template - void set_open(Arg_&& arg, Args_... args); - std::string* mutable_open(); - PROTOBUF_NODISCARD std::string* release_open(); - void set_allocated_open(std::string* value); - - private: - const std::string& _internal_open() const; - inline PROTOBUF_ALWAYS_INLINE void _internal_set_open( - const std::string& value); - std::string* _internal_mutable_open(); - - public: - // string close = 2; - void clear_close() ; - const std::string& close() const; - template - void set_close(Arg_&& arg, Args_... args); - std::string* mutable_close(); - PROTOBUF_NODISCARD std::string* release_close(); - void set_allocated_close(std::string* value); - - private: - const std::string& _internal_close() const; - inline PROTOBUF_ALWAYS_INLINE void _internal_set_close( - const std::string& value); - std::string* _internal_mutable_close(); - - public: - // @@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 - 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 FigureDescriptor_BusinessCalendarDescriptor_BusinessPeriod& from_msg); - ::google::protobuf::internal::ArenaStringPtr open_; - ::google::protobuf::internal::ArenaStringPtr close_; - mutable ::google::protobuf::internal::CachedSize _cached_size_; - PROTOBUF_TSAN_DECLARE_MEMBER - }; - 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) */ { - public: - inline FigureDescriptor_BoolMapWithDefault() : FigureDescriptor_BoolMapWithDefault(nullptr) {} - ~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; - } - inline FigureDescriptor_BoolMapWithDefault& operator=(FigureDescriptor_BoolMapWithDefault&& 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 FigureDescriptor_BoolMapWithDefault& default_instance() { - return *internal_default_instance(); - } - 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); } - 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 - if (GetArena() == other->GetArena()) { -#endif // !PROTOBUF_FORCE_COPY_IN_SWAP - InternalSwap(other); - } else { - ::google::protobuf::internal::GenericSwap(this, other); - } - } - void UnsafeArenaSwap(FigureDescriptor_BoolMapWithDefault* other) { - if (other == this) return; - ABSL_DCHECK(GetArena() == other->GetArena()); - InternalSwap(other); - } - - // implements Message ---------------------------------------------- - - 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); } - - private: - static void MergeImpl( - ::google::protobuf::MessageLite& to_msg, - const ::google::protobuf::MessageLite& from_msg); - - 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; - #endif // PROTOBUF_CUSTOM_VTABLE - int GetCachedSize() const { return _impl_._cached_size_.Get(); } - - private: - void SharedCtor(::google::protobuf::Arena* arena); - void SharedDtor(); - void InternalSwap(FigureDescriptor_BoolMapWithDefault* other); - private: - friend class ::google::protobuf::internal::AnyMetadata; - 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); - 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, - kDefaultBoolFieldNumber = 1, - }; - // repeated string keys = 2; - int keys_size() const; - private: - int _internal_keys_size() const; - - public: - void clear_keys() ; - const std::string& keys(int index) const; - std::string* mutable_keys(int index); - template - void set_keys(int index, Arg_&& value, Args_... args); - std::string* add_keys(); - template - void add_keys(Arg_&& value, Args_... args); - const ::google::protobuf::RepeatedPtrField& keys() const; - ::google::protobuf::RepeatedPtrField* mutable_keys(); - - private: - const ::google::protobuf::RepeatedPtrField& _internal_keys() const; - ::google::protobuf::RepeatedPtrField* _internal_mutable_keys(); - - public: - // repeated bool values = 3; - int values_size() const; - private: - int _internal_values_size() const; - - public: - void clear_values() ; - bool values(int index) const; - void set_values(int index, bool value); - void add_values(bool value); - const ::google::protobuf::RepeatedField& values() const; - ::google::protobuf::RepeatedField* mutable_values(); - - private: - const ::google::protobuf::RepeatedField& _internal_values() const; - ::google::protobuf::RepeatedField* _internal_mutable_values(); - - public: - // optional bool default_bool = 1; - bool has_default_bool() const; - void clear_default_bool() ; - bool default_bool() const; - void set_default_bool(bool value); - - private: - bool _internal_default_bool() const; - void _internal_set_default_bool(bool value); - - public: - // @@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 - 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 FigureDescriptor_BoolMapWithDefault& from_msg); - ::google::protobuf::internal::HasBits<1> _has_bits_; - mutable ::google::protobuf::internal::CachedSize _cached_size_; - ::google::protobuf::RepeatedPtrField keys_; - ::google::protobuf::RepeatedField values_; - bool default_bool_; - PROTOBUF_TSAN_DECLARE_MEMBER - }; - 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) */ { - public: - inline Diagnostic_CodeDescription() : Diagnostic_CodeDescription(nullptr) {} - ~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; - } - inline Diagnostic_CodeDescription& operator=(Diagnostic_CodeDescription&& 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 Diagnostic_CodeDescription& default_instance() { - return *internal_default_instance(); - } - 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); } - 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 - if (GetArena() == other->GetArena()) { -#endif // !PROTOBUF_FORCE_COPY_IN_SWAP - InternalSwap(other); - } else { - ::google::protobuf::internal::GenericSwap(this, other); - } - } - void UnsafeArenaSwap(Diagnostic_CodeDescription* other) { - if (other == this) return; - ABSL_DCHECK(GetArena() == other->GetArena()); - InternalSwap(other); - } - - // implements Message ---------------------------------------------- - - 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); } - - private: - static void MergeImpl( - ::google::protobuf::MessageLite& to_msg, - const ::google::protobuf::MessageLite& from_msg); - - 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; - #endif // PROTOBUF_CUSTOM_VTABLE - int GetCachedSize() const { return _impl_._cached_size_.Get(); } - - private: - void SharedCtor(::google::protobuf::Arena* arena); - void SharedDtor(); - void InternalSwap(Diagnostic_CodeDescription* other); - private: - friend class ::google::protobuf::internal::AnyMetadata; - 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); - 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, - }; - // string href = 1; - void clear_href() ; - const std::string& href() const; - template - void set_href(Arg_&& arg, Args_... args); - std::string* mutable_href(); - PROTOBUF_NODISCARD std::string* release_href(); - void set_allocated_href(std::string* value); - - private: - const std::string& _internal_href() const; - inline PROTOBUF_ALWAYS_INLINE void _internal_set_href( - const std::string& value); - std::string* _internal_mutable_href(); - - public: - // @@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 - 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 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) */ { - public: - inline CompletionContext() : CompletionContext(nullptr) {} - ~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; - } - inline CompletionContext& operator=(CompletionContext&& 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 CompletionContext& default_instance() { - return *internal_default_instance(); - } - 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); } - 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 - if (GetArena() == other->GetArena()) { -#endif // !PROTOBUF_FORCE_COPY_IN_SWAP - InternalSwap(other); - } else { - ::google::protobuf::internal::GenericSwap(this, other); - } - } - void UnsafeArenaSwap(CompletionContext* other) { - if (other == this) return; - ABSL_DCHECK(GetArena() == other->GetArena()); - InternalSwap(other); - } - - // implements Message ---------------------------------------------- - - 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); } - - private: - static void MergeImpl( - ::google::protobuf::MessageLite& to_msg, - const ::google::protobuf::MessageLite& from_msg); - - 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; - #endif // PROTOBUF_CUSTOM_VTABLE - int GetCachedSize() const { return _impl_._cached_size_.Get(); } - - private: - void SharedCtor(::google::protobuf::Arena* arena); - void SharedDtor(); - void InternalSwap(CompletionContext* other); - private: - friend class ::google::protobuf::internal::AnyMetadata; - 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); - 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, - }; - // string trigger_character = 2; - void clear_trigger_character() ; - const std::string& trigger_character() const; - template - void set_trigger_character(Arg_&& arg, Args_... args); - std::string* mutable_trigger_character(); - PROTOBUF_NODISCARD std::string* release_trigger_character(); - void set_allocated_trigger_character(std::string* value); - - private: - const std::string& _internal_trigger_character() const; - inline PROTOBUF_ALWAYS_INLINE void _internal_set_trigger_character( - const std::string& value); - std::string* _internal_mutable_trigger_character(); - - public: - // int32 trigger_kind = 1; - void clear_trigger_kind() ; - ::int32_t trigger_kind() const; - void set_trigger_kind(::int32_t value); - - private: - ::int32_t _internal_trigger_kind() const; - void _internal_set_trigger_kind(::int32_t value); - - public: - // @@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 - 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 CompletionContext& from_msg); - ::google::protobuf::internal::ArenaStringPtr trigger_character_; - ::int32_t trigger_kind_; - mutable ::google::protobuf::internal::CachedSize _cached_size_; - PROTOBUF_TSAN_DECLARE_MEMBER - }; - 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) */ { - public: - inline CancelCommandResponse() : CancelCommandResponse(nullptr) {} - 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; - } - inline CancelCommandResponse& operator=(CancelCommandResponse&& 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 CancelCommandResponse& default_instance() { - return *internal_default_instance(); - } - 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); } - 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 - if (GetArena() == other->GetArena()) { -#endif // !PROTOBUF_FORCE_COPY_IN_SWAP - InternalSwap(other); - } else { - ::google::protobuf::internal::GenericSwap(this, other); - } - } - void UnsafeArenaSwap(CancelCommandResponse* other) { - if (other == this) return; - ABSL_DCHECK(GetArena() == other->GetArena()); - InternalSwap(other); - } - - // implements Message ---------------------------------------------- - - 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) { - ::google::protobuf::internal::ZeroFieldsBase::CopyImpl(*this, from); - } - using ::google::protobuf::internal::ZeroFieldsBase::MergeFrom; - void MergeFrom(const CancelCommandResponse& 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.script.grpc.CancelCommandResponse"; } - - protected: - explicit CancelCommandResponse(::google::protobuf::Arena* arena); - CancelCommandResponse(::google::protobuf::Arena* arena, const CancelCommandResponse& from); - 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; - 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 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) */ { - public: - inline CancelAutoCompleteResponse() : CancelAutoCompleteResponse(nullptr) {} - 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; - } - inline CancelAutoCompleteResponse& operator=(CancelAutoCompleteResponse&& 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 CancelAutoCompleteResponse& default_instance() { - return *internal_default_instance(); - } - 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); } - 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 - if (GetArena() == other->GetArena()) { -#endif // !PROTOBUF_FORCE_COPY_IN_SWAP - InternalSwap(other); - } else { - ::google::protobuf::internal::GenericSwap(this, other); - } - } - void UnsafeArenaSwap(CancelAutoCompleteResponse* other) { - if (other == this) return; - ABSL_DCHECK(GetArena() == other->GetArena()); - InternalSwap(other); - } - - // implements Message ---------------------------------------------- - - 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) { - ::google::protobuf::internal::ZeroFieldsBase::CopyImpl(*this, from); - } - using ::google::protobuf::internal::ZeroFieldsBase::MergeFrom; - void MergeFrom(const CancelAutoCompleteResponse& 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.script.grpc.CancelAutoCompleteResponse"; } - - protected: - explicit CancelAutoCompleteResponse(::google::protobuf::Arena* arena); - CancelAutoCompleteResponse(::google::protobuf::Arena* arena, const CancelAutoCompleteResponse& from); - 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; - 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 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) */ { - public: - inline BrowserNextResponse() : BrowserNextResponse(nullptr) {} - 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; - } - inline BrowserNextResponse& operator=(BrowserNextResponse&& 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 BrowserNextResponse& default_instance() { - return *internal_default_instance(); - } - 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); } - 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 - if (GetArena() == other->GetArena()) { -#endif // !PROTOBUF_FORCE_COPY_IN_SWAP - InternalSwap(other); - } else { - ::google::protobuf::internal::GenericSwap(this, other); - } - } - void UnsafeArenaSwap(BrowserNextResponse* other) { - if (other == this) return; - ABSL_DCHECK(GetArena() == other->GetArena()); - InternalSwap(other); - } - - // implements Message ---------------------------------------------- - - 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) { - ::google::protobuf::internal::ZeroFieldsBase::CopyImpl(*this, from); - } - using ::google::protobuf::internal::ZeroFieldsBase::MergeFrom; - void MergeFrom(const BrowserNextResponse& 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.script.grpc.BrowserNextResponse"; } - - protected: - explicit BrowserNextResponse(::google::protobuf::Arena* arena); - BrowserNextResponse(::google::protobuf::Arena* arena, const BrowserNextResponse& from); - 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; - 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 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) */ { - public: - inline BindTableToVariableResponse() : BindTableToVariableResponse(nullptr) {} - 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; - } - inline BindTableToVariableResponse& operator=(BindTableToVariableResponse&& 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 BindTableToVariableResponse& default_instance() { - return *internal_default_instance(); - } - 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); } - 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 - if (GetArena() == other->GetArena()) { -#endif // !PROTOBUF_FORCE_COPY_IN_SWAP - InternalSwap(other); - } else { - ::google::protobuf::internal::GenericSwap(this, other); - } - } - void UnsafeArenaSwap(BindTableToVariableResponse* other) { - if (other == this) return; - ABSL_DCHECK(GetArena() == other->GetArena()); - InternalSwap(other); - } - - // implements Message ---------------------------------------------- - - 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) { - ::google::protobuf::internal::ZeroFieldsBase::CopyImpl(*this, from); - } - using ::google::protobuf::internal::ZeroFieldsBase::MergeFrom; - void MergeFrom(const BindTableToVariableResponse& 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.script.grpc.BindTableToVariableResponse"; } - - protected: - explicit BindTableToVariableResponse(::google::protobuf::Arena* arena); - BindTableToVariableResponse(::google::protobuf::Arena* arena, const BindTableToVariableResponse& from); - 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; - 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 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) */ { - public: - inline StartConsoleResponse() : StartConsoleResponse(nullptr) {} - ~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; - } - inline StartConsoleResponse& operator=(StartConsoleResponse&& 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 StartConsoleResponse& default_instance() { - return *internal_default_instance(); - } - 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); } - 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 - if (GetArena() == other->GetArena()) { -#endif // !PROTOBUF_FORCE_COPY_IN_SWAP - InternalSwap(other); - } else { - ::google::protobuf::internal::GenericSwap(this, other); - } - } - void UnsafeArenaSwap(StartConsoleResponse* other) { - if (other == this) return; - ABSL_DCHECK(GetArena() == other->GetArena()); - InternalSwap(other); - } - - // implements Message ---------------------------------------------- - - 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); } - - private: - static void MergeImpl( - ::google::protobuf::MessageLite& to_msg, - const ::google::protobuf::MessageLite& from_msg); - - 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; - #endif // PROTOBUF_CUSTOM_VTABLE - int GetCachedSize() const { return _impl_._cached_size_.Get(); } - - private: - void SharedCtor(::google::protobuf::Arena* arena); - void SharedDtor(); - void InternalSwap(StartConsoleResponse* other); - private: - friend class ::google::protobuf::internal::AnyMetadata; - 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); - 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, - }; - // .io.deephaven.proto.backplane.grpc.Ticket result_id = 1; - bool has_result_id() const; - void clear_result_id() ; - const ::io::deephaven::proto::backplane::grpc::Ticket& result_id() const; - PROTOBUF_NODISCARD ::io::deephaven::proto::backplane::grpc::Ticket* release_result_id(); - ::io::deephaven::proto::backplane::grpc::Ticket* mutable_result_id(); - void set_allocated_result_id(::io::deephaven::proto::backplane::grpc::Ticket* value); - void unsafe_arena_set_allocated_result_id(::io::deephaven::proto::backplane::grpc::Ticket* value); - ::io::deephaven::proto::backplane::grpc::Ticket* unsafe_arena_release_result_id(); - - private: - const ::io::deephaven::proto::backplane::grpc::Ticket& _internal_result_id() const; - ::io::deephaven::proto::backplane::grpc::Ticket* _internal_mutable_result_id(); - - public: - // @@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 - 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 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_; - PROTOBUF_TSAN_DECLARE_MEMBER - }; - 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) */ { - public: - inline StartConsoleRequest() : StartConsoleRequest(nullptr) {} - ~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; - } - inline StartConsoleRequest& operator=(StartConsoleRequest&& 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 StartConsoleRequest& default_instance() { - return *internal_default_instance(); - } - 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); } - 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 - if (GetArena() == other->GetArena()) { -#endif // !PROTOBUF_FORCE_COPY_IN_SWAP - InternalSwap(other); - } else { - ::google::protobuf::internal::GenericSwap(this, other); - } - } - void UnsafeArenaSwap(StartConsoleRequest* other) { - if (other == this) return; - ABSL_DCHECK(GetArena() == other->GetArena()); - InternalSwap(other); - } - - // implements Message ---------------------------------------------- - - 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); } - - private: - static void MergeImpl( - ::google::protobuf::MessageLite& to_msg, - const ::google::protobuf::MessageLite& from_msg); - - 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; - #endif // PROTOBUF_CUSTOM_VTABLE - int GetCachedSize() const { return _impl_._cached_size_.Get(); } - - private: - void SharedCtor(::google::protobuf::Arena* arena); - void SharedDtor(); - void InternalSwap(StartConsoleRequest* other); - private: - friend class ::google::protobuf::internal::AnyMetadata; - 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); - 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, - }; - // string session_type = 2; - void clear_session_type() ; - const std::string& session_type() const; - template - void set_session_type(Arg_&& arg, Args_... args); - std::string* mutable_session_type(); - PROTOBUF_NODISCARD std::string* release_session_type(); - void set_allocated_session_type(std::string* value); - - private: - const std::string& _internal_session_type() const; - inline PROTOBUF_ALWAYS_INLINE void _internal_set_session_type( - const std::string& value); - std::string* _internal_mutable_session_type(); - - public: - // .io.deephaven.proto.backplane.grpc.Ticket result_id = 1; - bool has_result_id() const; - void clear_result_id() ; - const ::io::deephaven::proto::backplane::grpc::Ticket& result_id() const; - PROTOBUF_NODISCARD ::io::deephaven::proto::backplane::grpc::Ticket* release_result_id(); - ::io::deephaven::proto::backplane::grpc::Ticket* mutable_result_id(); - void set_allocated_result_id(::io::deephaven::proto::backplane::grpc::Ticket* value); - void unsafe_arena_set_allocated_result_id(::io::deephaven::proto::backplane::grpc::Ticket* value); - ::io::deephaven::proto::backplane::grpc::Ticket* unsafe_arena_release_result_id(); - - private: - const ::io::deephaven::proto::backplane::grpc::Ticket& _internal_result_id() const; - ::io::deephaven::proto::backplane::grpc::Ticket* _internal_mutable_result_id(); - - public: - // @@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 - 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 StartConsoleRequest& from_msg); - ::google::protobuf::internal::HasBits<1> _has_bits_; - mutable ::google::protobuf::internal::CachedSize _cached_size_; - ::google::protobuf::internal::ArenaStringPtr session_type_; - ::io::deephaven::proto::backplane::grpc::Ticket* result_id_; - PROTOBUF_TSAN_DECLARE_MEMBER - }; - 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) */ { - public: - inline ParameterInformation() : ParameterInformation(nullptr) {} - ~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; - } - inline ParameterInformation& operator=(ParameterInformation&& 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 ParameterInformation& default_instance() { - return *internal_default_instance(); - } - 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); } - 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 - if (GetArena() == other->GetArena()) { -#endif // !PROTOBUF_FORCE_COPY_IN_SWAP - InternalSwap(other); - } else { - ::google::protobuf::internal::GenericSwap(this, other); - } - } - void UnsafeArenaSwap(ParameterInformation* other) { - if (other == this) return; - ABSL_DCHECK(GetArena() == other->GetArena()); - InternalSwap(other); - } - - // implements Message ---------------------------------------------- - - 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); } - - private: - static void MergeImpl( - ::google::protobuf::MessageLite& to_msg, - const ::google::protobuf::MessageLite& from_msg); - - 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; - #endif // PROTOBUF_CUSTOM_VTABLE - int GetCachedSize() const { return _impl_._cached_size_.Get(); } - - private: - void SharedCtor(::google::protobuf::Arena* arena); - void SharedDtor(); - void InternalSwap(ParameterInformation* other); - private: - friend class ::google::protobuf::internal::AnyMetadata; - 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); - 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, - }; - // string label = 1; - void clear_label() ; - const std::string& label() const; - template - void set_label(Arg_&& arg, Args_... args); - std::string* mutable_label(); - PROTOBUF_NODISCARD std::string* release_label(); - void set_allocated_label(std::string* value); - - private: - const std::string& _internal_label() const; - inline PROTOBUF_ALWAYS_INLINE void _internal_set_label( - const std::string& value); - std::string* _internal_mutable_label(); - - public: - // .io.deephaven.proto.backplane.script.grpc.MarkupContent documentation = 2; - bool has_documentation() const; - void clear_documentation() ; - const ::io::deephaven::proto::backplane::script::grpc::MarkupContent& documentation() const; - PROTOBUF_NODISCARD ::io::deephaven::proto::backplane::script::grpc::MarkupContent* release_documentation(); - ::io::deephaven::proto::backplane::script::grpc::MarkupContent* mutable_documentation(); - void set_allocated_documentation(::io::deephaven::proto::backplane::script::grpc::MarkupContent* value); - void unsafe_arena_set_allocated_documentation(::io::deephaven::proto::backplane::script::grpc::MarkupContent* value); - ::io::deephaven::proto::backplane::script::grpc::MarkupContent* unsafe_arena_release_documentation(); - - private: - const ::io::deephaven::proto::backplane::script::grpc::MarkupContent& _internal_documentation() const; - ::io::deephaven::proto::backplane::script::grpc::MarkupContent* _internal_mutable_documentation(); - - public: - // @@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 - 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 ParameterInformation& from_msg); - ::google::protobuf::internal::HasBits<1> _has_bits_; - mutable ::google::protobuf::internal::CachedSize _cached_size_; - ::google::protobuf::internal::ArenaStringPtr label_; - ::io::deephaven::proto::backplane::script::grpc::MarkupContent* documentation_; - PROTOBUF_TSAN_DECLARE_MEMBER - }; - 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) */ { - public: - inline OpenDocumentRequest() : OpenDocumentRequest(nullptr) {} - ~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; - } - inline OpenDocumentRequest& operator=(OpenDocumentRequest&& 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 OpenDocumentRequest& default_instance() { - return *internal_default_instance(); - } - 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); } - 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 - if (GetArena() == other->GetArena()) { -#endif // !PROTOBUF_FORCE_COPY_IN_SWAP - InternalSwap(other); - } else { - ::google::protobuf::internal::GenericSwap(this, other); - } - } - void UnsafeArenaSwap(OpenDocumentRequest* other) { - if (other == this) return; - ABSL_DCHECK(GetArena() == other->GetArena()); - InternalSwap(other); - } - - // implements Message ---------------------------------------------- - - 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); } - - private: - static void MergeImpl( - ::google::protobuf::MessageLite& to_msg, - const ::google::protobuf::MessageLite& from_msg); - - 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; - #endif // PROTOBUF_CUSTOM_VTABLE - int GetCachedSize() const { return _impl_._cached_size_.Get(); } - - private: - void SharedCtor(::google::protobuf::Arena* arena); - void SharedDtor(); - void InternalSwap(OpenDocumentRequest* other); - private: - friend class ::google::protobuf::internal::AnyMetadata; - 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); - 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, - }; - // .io.deephaven.proto.backplane.grpc.Ticket console_id = 1 [deprecated = true]; - [[deprecated]] bool has_console_id() const; - [[deprecated]] void clear_console_id() ; - [[deprecated]] const ::io::deephaven::proto::backplane::grpc::Ticket& console_id() const; - [[deprecated]] PROTOBUF_NODISCARD ::io::deephaven::proto::backplane::grpc::Ticket* release_console_id(); - [[deprecated]] ::io::deephaven::proto::backplane::grpc::Ticket* mutable_console_id(); - [[deprecated]] void set_allocated_console_id(::io::deephaven::proto::backplane::grpc::Ticket* value); - [[deprecated]] void unsafe_arena_set_allocated_console_id(::io::deephaven::proto::backplane::grpc::Ticket* value); - [[deprecated]] ::io::deephaven::proto::backplane::grpc::Ticket* unsafe_arena_release_console_id(); - - private: - const ::io::deephaven::proto::backplane::grpc::Ticket& _internal_console_id() const; - ::io::deephaven::proto::backplane::grpc::Ticket* _internal_mutable_console_id(); - - public: - // .io.deephaven.proto.backplane.script.grpc.TextDocumentItem text_document = 2; - bool has_text_document() const; - void clear_text_document() ; - const ::io::deephaven::proto::backplane::script::grpc::TextDocumentItem& text_document() const; - PROTOBUF_NODISCARD ::io::deephaven::proto::backplane::script::grpc::TextDocumentItem* release_text_document(); - ::io::deephaven::proto::backplane::script::grpc::TextDocumentItem* mutable_text_document(); - void set_allocated_text_document(::io::deephaven::proto::backplane::script::grpc::TextDocumentItem* value); - void unsafe_arena_set_allocated_text_document(::io::deephaven::proto::backplane::script::grpc::TextDocumentItem* value); - ::io::deephaven::proto::backplane::script::grpc::TextDocumentItem* unsafe_arena_release_text_document(); - - private: - const ::io::deephaven::proto::backplane::script::grpc::TextDocumentItem& _internal_text_document() const; - ::io::deephaven::proto::backplane::script::grpc::TextDocumentItem* _internal_mutable_text_document(); - - public: - // @@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 - 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 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_; - ::io::deephaven::proto::backplane::script::grpc::TextDocumentItem* text_document_; - PROTOBUF_TSAN_DECLARE_MEMBER - }; - 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) */ { - public: - inline GetHoverRequest() : GetHoverRequest(nullptr) {} - ~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; - } - inline GetHoverRequest& operator=(GetHoverRequest&& 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 GetHoverRequest& default_instance() { - return *internal_default_instance(); - } - 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); } - 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 - if (GetArena() == other->GetArena()) { -#endif // !PROTOBUF_FORCE_COPY_IN_SWAP - InternalSwap(other); - } else { - ::google::protobuf::internal::GenericSwap(this, other); - } - } - void UnsafeArenaSwap(GetHoverRequest* other) { - if (other == this) return; - ABSL_DCHECK(GetArena() == other->GetArena()); - InternalSwap(other); - } - - // implements Message ---------------------------------------------- - - 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); } - - private: - static void MergeImpl( - ::google::protobuf::MessageLite& to_msg, - const ::google::protobuf::MessageLite& from_msg); - - 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; - #endif // PROTOBUF_CUSTOM_VTABLE - int GetCachedSize() const { return _impl_._cached_size_.Get(); } - - private: - void SharedCtor(::google::protobuf::Arena* arena); - void SharedDtor(); - void InternalSwap(GetHoverRequest* other); - private: - friend class ::google::protobuf::internal::AnyMetadata; - 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); - 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, - }; - // .io.deephaven.proto.backplane.script.grpc.VersionedTextDocumentIdentifier text_document = 1; - bool has_text_document() const; - void clear_text_document() ; - const ::io::deephaven::proto::backplane::script::grpc::VersionedTextDocumentIdentifier& text_document() const; - PROTOBUF_NODISCARD ::io::deephaven::proto::backplane::script::grpc::VersionedTextDocumentIdentifier* release_text_document(); - ::io::deephaven::proto::backplane::script::grpc::VersionedTextDocumentIdentifier* mutable_text_document(); - void set_allocated_text_document(::io::deephaven::proto::backplane::script::grpc::VersionedTextDocumentIdentifier* value); - void unsafe_arena_set_allocated_text_document(::io::deephaven::proto::backplane::script::grpc::VersionedTextDocumentIdentifier* value); - ::io::deephaven::proto::backplane::script::grpc::VersionedTextDocumentIdentifier* unsafe_arena_release_text_document(); - - private: - const ::io::deephaven::proto::backplane::script::grpc::VersionedTextDocumentIdentifier& _internal_text_document() const; - ::io::deephaven::proto::backplane::script::grpc::VersionedTextDocumentIdentifier* _internal_mutable_text_document(); - - public: - // .io.deephaven.proto.backplane.script.grpc.Position position = 2; - bool has_position() const; - void clear_position() ; - const ::io::deephaven::proto::backplane::script::grpc::Position& position() const; - PROTOBUF_NODISCARD ::io::deephaven::proto::backplane::script::grpc::Position* release_position(); - ::io::deephaven::proto::backplane::script::grpc::Position* mutable_position(); - void set_allocated_position(::io::deephaven::proto::backplane::script::grpc::Position* value); - void unsafe_arena_set_allocated_position(::io::deephaven::proto::backplane::script::grpc::Position* value); - ::io::deephaven::proto::backplane::script::grpc::Position* unsafe_arena_release_position(); - - private: - const ::io::deephaven::proto::backplane::script::grpc::Position& _internal_position() const; - ::io::deephaven::proto::backplane::script::grpc::Position* _internal_mutable_position(); - - public: - // @@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 - 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 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_; - ::io::deephaven::proto::backplane::script::grpc::Position* position_; - PROTOBUF_TSAN_DECLARE_MEMBER - }; - 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) */ { - public: - inline GetDiagnosticRequest() : GetDiagnosticRequest(nullptr) {} - ~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; - } - inline GetDiagnosticRequest& operator=(GetDiagnosticRequest&& 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 GetDiagnosticRequest& default_instance() { - return *internal_default_instance(); - } - 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); } - 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 - if (GetArena() == other->GetArena()) { -#endif // !PROTOBUF_FORCE_COPY_IN_SWAP - InternalSwap(other); - } else { - ::google::protobuf::internal::GenericSwap(this, other); - } - } - void UnsafeArenaSwap(GetDiagnosticRequest* other) { - if (other == this) return; - ABSL_DCHECK(GetArena() == other->GetArena()); - InternalSwap(other); - } - - // implements Message ---------------------------------------------- - - 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); } - - private: - static void MergeImpl( - ::google::protobuf::MessageLite& to_msg, - const ::google::protobuf::MessageLite& from_msg); - - 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; - #endif // PROTOBUF_CUSTOM_VTABLE - int GetCachedSize() const { return _impl_._cached_size_.Get(); } - - private: - void SharedCtor(::google::protobuf::Arena* arena); - void SharedDtor(); - void InternalSwap(GetDiagnosticRequest* other); - private: - friend class ::google::protobuf::internal::AnyMetadata; - 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); - 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, - kTextDocumentFieldNumber = 1, - }; - // optional string identifier = 2; - bool has_identifier() const; - void clear_identifier() ; - const std::string& identifier() const; - template - void set_identifier(Arg_&& arg, Args_... args); - std::string* mutable_identifier(); - PROTOBUF_NODISCARD std::string* release_identifier(); - void set_allocated_identifier(std::string* value); - - private: - const std::string& _internal_identifier() const; - inline PROTOBUF_ALWAYS_INLINE void _internal_set_identifier( - const std::string& value); - std::string* _internal_mutable_identifier(); - - public: - // optional string previous_result_id = 3; - bool has_previous_result_id() const; - void clear_previous_result_id() ; - const std::string& previous_result_id() const; - template - void set_previous_result_id(Arg_&& arg, Args_... args); - std::string* mutable_previous_result_id(); - PROTOBUF_NODISCARD std::string* release_previous_result_id(); - void set_allocated_previous_result_id(std::string* value); - - private: - const std::string& _internal_previous_result_id() const; - inline PROTOBUF_ALWAYS_INLINE void _internal_set_previous_result_id( - const std::string& value); - std::string* _internal_mutable_previous_result_id(); - - public: - // .io.deephaven.proto.backplane.script.grpc.VersionedTextDocumentIdentifier text_document = 1; - bool has_text_document() const; - void clear_text_document() ; - const ::io::deephaven::proto::backplane::script::grpc::VersionedTextDocumentIdentifier& text_document() const; - PROTOBUF_NODISCARD ::io::deephaven::proto::backplane::script::grpc::VersionedTextDocumentIdentifier* release_text_document(); - ::io::deephaven::proto::backplane::script::grpc::VersionedTextDocumentIdentifier* mutable_text_document(); - void set_allocated_text_document(::io::deephaven::proto::backplane::script::grpc::VersionedTextDocumentIdentifier* value); - void unsafe_arena_set_allocated_text_document(::io::deephaven::proto::backplane::script::grpc::VersionedTextDocumentIdentifier* value); - ::io::deephaven::proto::backplane::script::grpc::VersionedTextDocumentIdentifier* unsafe_arena_release_text_document(); - - private: - const ::io::deephaven::proto::backplane::script::grpc::VersionedTextDocumentIdentifier& _internal_text_document() const; - ::io::deephaven::proto::backplane::script::grpc::VersionedTextDocumentIdentifier* _internal_mutable_text_document(); - - public: - // @@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 - 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 GetDiagnosticRequest& from_msg); - ::google::protobuf::internal::HasBits<1> _has_bits_; - mutable ::google::protobuf::internal::CachedSize _cached_size_; - ::google::protobuf::internal::ArenaStringPtr identifier_; - ::google::protobuf::internal::ArenaStringPtr previous_result_id_; - ::io::deephaven::proto::backplane::script::grpc::VersionedTextDocumentIdentifier* text_document_; - PROTOBUF_TSAN_DECLARE_MEMBER - }; - 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) */ { - public: - inline GetCompletionItemsRequest() : GetCompletionItemsRequest(nullptr) {} - ~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; - } - inline GetCompletionItemsRequest& operator=(GetCompletionItemsRequest&& 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 GetCompletionItemsRequest& default_instance() { - return *internal_default_instance(); - } - 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); } - 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 - if (GetArena() == other->GetArena()) { -#endif // !PROTOBUF_FORCE_COPY_IN_SWAP - InternalSwap(other); - } else { - ::google::protobuf::internal::GenericSwap(this, other); - } - } - void UnsafeArenaSwap(GetCompletionItemsRequest* other) { - if (other == this) return; - ABSL_DCHECK(GetArena() == other->GetArena()); - InternalSwap(other); - } - - // implements Message ---------------------------------------------- - - 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); } - - private: - static void MergeImpl( - ::google::protobuf::MessageLite& to_msg, - const ::google::protobuf::MessageLite& from_msg); - - 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; - #endif // PROTOBUF_CUSTOM_VTABLE - int GetCachedSize() const { return _impl_._cached_size_.Get(); } - - private: - void SharedCtor(::google::protobuf::Arena* arena); - void SharedDtor(); - void InternalSwap(GetCompletionItemsRequest* other); - private: - friend class ::google::protobuf::internal::AnyMetadata; - 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); - 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, - kTextDocumentFieldNumber = 3, - kPositionFieldNumber = 4, - kRequestIdFieldNumber = 5, - }; - // .io.deephaven.proto.backplane.grpc.Ticket console_id = 1 [deprecated = true]; - [[deprecated]] bool has_console_id() const; - [[deprecated]] void clear_console_id() ; - [[deprecated]] const ::io::deephaven::proto::backplane::grpc::Ticket& console_id() const; - [[deprecated]] PROTOBUF_NODISCARD ::io::deephaven::proto::backplane::grpc::Ticket* release_console_id(); - [[deprecated]] ::io::deephaven::proto::backplane::grpc::Ticket* mutable_console_id(); - [[deprecated]] void set_allocated_console_id(::io::deephaven::proto::backplane::grpc::Ticket* value); - [[deprecated]] void unsafe_arena_set_allocated_console_id(::io::deephaven::proto::backplane::grpc::Ticket* value); - [[deprecated]] ::io::deephaven::proto::backplane::grpc::Ticket* unsafe_arena_release_console_id(); - - private: - const ::io::deephaven::proto::backplane::grpc::Ticket& _internal_console_id() const; - ::io::deephaven::proto::backplane::grpc::Ticket* _internal_mutable_console_id(); - - public: - // .io.deephaven.proto.backplane.script.grpc.CompletionContext context = 2; - bool has_context() const; - void clear_context() ; - const ::io::deephaven::proto::backplane::script::grpc::CompletionContext& context() const; - PROTOBUF_NODISCARD ::io::deephaven::proto::backplane::script::grpc::CompletionContext* release_context(); - ::io::deephaven::proto::backplane::script::grpc::CompletionContext* mutable_context(); - void set_allocated_context(::io::deephaven::proto::backplane::script::grpc::CompletionContext* value); - void unsafe_arena_set_allocated_context(::io::deephaven::proto::backplane::script::grpc::CompletionContext* value); - ::io::deephaven::proto::backplane::script::grpc::CompletionContext* unsafe_arena_release_context(); - - private: - const ::io::deephaven::proto::backplane::script::grpc::CompletionContext& _internal_context() const; - ::io::deephaven::proto::backplane::script::grpc::CompletionContext* _internal_mutable_context(); - - public: - // .io.deephaven.proto.backplane.script.grpc.VersionedTextDocumentIdentifier text_document = 3; - bool has_text_document() const; - void clear_text_document() ; - const ::io::deephaven::proto::backplane::script::grpc::VersionedTextDocumentIdentifier& text_document() const; - PROTOBUF_NODISCARD ::io::deephaven::proto::backplane::script::grpc::VersionedTextDocumentIdentifier* release_text_document(); - ::io::deephaven::proto::backplane::script::grpc::VersionedTextDocumentIdentifier* mutable_text_document(); - void set_allocated_text_document(::io::deephaven::proto::backplane::script::grpc::VersionedTextDocumentIdentifier* value); - void unsafe_arena_set_allocated_text_document(::io::deephaven::proto::backplane::script::grpc::VersionedTextDocumentIdentifier* value); - ::io::deephaven::proto::backplane::script::grpc::VersionedTextDocumentIdentifier* unsafe_arena_release_text_document(); - - private: - const ::io::deephaven::proto::backplane::script::grpc::VersionedTextDocumentIdentifier& _internal_text_document() const; - ::io::deephaven::proto::backplane::script::grpc::VersionedTextDocumentIdentifier* _internal_mutable_text_document(); - - public: - // .io.deephaven.proto.backplane.script.grpc.Position position = 4; - bool has_position() const; - void clear_position() ; - const ::io::deephaven::proto::backplane::script::grpc::Position& position() const; - PROTOBUF_NODISCARD ::io::deephaven::proto::backplane::script::grpc::Position* release_position(); - ::io::deephaven::proto::backplane::script::grpc::Position* mutable_position(); - void set_allocated_position(::io::deephaven::proto::backplane::script::grpc::Position* value); - void unsafe_arena_set_allocated_position(::io::deephaven::proto::backplane::script::grpc::Position* value); - ::io::deephaven::proto::backplane::script::grpc::Position* unsafe_arena_release_position(); - - private: - const ::io::deephaven::proto::backplane::script::grpc::Position& _internal_position() const; - ::io::deephaven::proto::backplane::script::grpc::Position* _internal_mutable_position(); - - public: - // int32 request_id = 5 [deprecated = true]; - [[deprecated]] void clear_request_id() ; - [[deprecated]] ::int32_t request_id() const; - [[deprecated]] void set_request_id(::int32_t value); - - private: - ::int32_t _internal_request_id() const; - void _internal_set_request_id(::int32_t value); - - public: - // @@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 - 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 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_; - ::io::deephaven::proto::backplane::script::grpc::CompletionContext* context_; - ::io::deephaven::proto::backplane::script::grpc::VersionedTextDocumentIdentifier* text_document_; - ::io::deephaven::proto::backplane::script::grpc::Position* position_; - ::int32_t request_id_; - PROTOBUF_TSAN_DECLARE_MEMBER - }; - 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) */ { - public: - inline FigureDescriptor_SourceDescriptor() : FigureDescriptor_SourceDescriptor(nullptr) {} - ~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; - } - inline FigureDescriptor_SourceDescriptor& operator=(FigureDescriptor_SourceDescriptor&& 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 FigureDescriptor_SourceDescriptor& default_instance() { - return *internal_default_instance(); - } - 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); } - 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 - if (GetArena() == other->GetArena()) { -#endif // !PROTOBUF_FORCE_COPY_IN_SWAP - InternalSwap(other); - } else { - ::google::protobuf::internal::GenericSwap(this, other); - } - } - void UnsafeArenaSwap(FigureDescriptor_SourceDescriptor* other) { - if (other == this) return; - ABSL_DCHECK(GetArena() == other->GetArena()); - InternalSwap(other); - } - - // implements Message ---------------------------------------------- - - 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); } - - private: - static void MergeImpl( - ::google::protobuf::MessageLite& to_msg, - const ::google::protobuf::MessageLite& from_msg); - - 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; - #endif // PROTOBUF_CUSTOM_VTABLE - int GetCachedSize() const { return _impl_._cached_size_.Get(); } - - private: - void SharedCtor(::google::protobuf::Arena* arena); - void SharedDtor(); - void InternalSwap(FigureDescriptor_SourceDescriptor* other); - private: - friend class ::google::protobuf::internal::AnyMetadata; - 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); - 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, - kColumnTypeFieldNumber = 6, - kOneClickFieldNumber = 7, - kTypeFieldNumber = 2, - kTableIdFieldNumber = 3, - kPartitionedTableIdFieldNumber = 4, - }; - // string axis_id = 1; - void clear_axis_id() ; - const std::string& axis_id() const; - template - void set_axis_id(Arg_&& arg, Args_... args); - std::string* mutable_axis_id(); - PROTOBUF_NODISCARD std::string* release_axis_id(); - void set_allocated_axis_id(std::string* value); - - private: - const std::string& _internal_axis_id() const; - inline PROTOBUF_ALWAYS_INLINE void _internal_set_axis_id( - const std::string& value); - std::string* _internal_mutable_axis_id(); - - public: - // string column_name = 5; - void clear_column_name() ; - const std::string& column_name() const; - template - void set_column_name(Arg_&& arg, Args_... args); - std::string* mutable_column_name(); - PROTOBUF_NODISCARD std::string* release_column_name(); - void set_allocated_column_name(std::string* value); - - private: - const std::string& _internal_column_name() const; - inline PROTOBUF_ALWAYS_INLINE void _internal_set_column_name( - const std::string& value); - std::string* _internal_mutable_column_name(); - - public: - // string column_type = 6; - void clear_column_type() ; - const std::string& column_type() const; - template - void set_column_type(Arg_&& arg, Args_... args); - std::string* mutable_column_type(); - PROTOBUF_NODISCARD std::string* release_column_type(); - void set_allocated_column_type(std::string* value); - - private: - const std::string& _internal_column_type() const; - inline PROTOBUF_ALWAYS_INLINE void _internal_set_column_type( - const std::string& value); - std::string* _internal_mutable_column_type(); - - public: - // .io.deephaven.proto.backplane.script.grpc.FigureDescriptor.OneClickDescriptor one_click = 7; - bool has_one_click() const; - void clear_one_click() ; - const ::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_OneClickDescriptor& one_click() const; - PROTOBUF_NODISCARD ::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_OneClickDescriptor* release_one_click(); - ::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_OneClickDescriptor* mutable_one_click(); - void set_allocated_one_click(::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_OneClickDescriptor* value); - void unsafe_arena_set_allocated_one_click(::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_OneClickDescriptor* value); - ::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_OneClickDescriptor* unsafe_arena_release_one_click(); - - private: - const ::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_OneClickDescriptor& _internal_one_click() const; - ::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_OneClickDescriptor* _internal_mutable_one_click(); - - public: - // .io.deephaven.proto.backplane.script.grpc.FigureDescriptor.SourceType type = 2; - void clear_type() ; - ::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_SourceType type() const; - void set_type(::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_SourceType value); - - private: - ::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_SourceType _internal_type() const; - void _internal_set_type(::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_SourceType value); - - public: - // int32 table_id = 3; - void clear_table_id() ; - ::int32_t table_id() const; - void set_table_id(::int32_t value); - - private: - ::int32_t _internal_table_id() const; - void _internal_set_table_id(::int32_t value); - - public: - // int32 partitioned_table_id = 4; - void clear_partitioned_table_id() ; - ::int32_t partitioned_table_id() const; - void set_partitioned_table_id(::int32_t value); - - private: - ::int32_t _internal_partitioned_table_id() const; - void _internal_set_partitioned_table_id(::int32_t value); - - public: - // @@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 - 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 FigureDescriptor_SourceDescriptor& from_msg); - ::google::protobuf::internal::HasBits<1> _has_bits_; - mutable ::google::protobuf::internal::CachedSize _cached_size_; - ::google::protobuf::internal::ArenaStringPtr axis_id_; - ::google::protobuf::internal::ArenaStringPtr column_name_; - ::google::protobuf::internal::ArenaStringPtr column_type_; - ::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_OneClickDescriptor* one_click_; - int type_; - ::int32_t table_id_; - ::int32_t partitioned_table_id_; - PROTOBUF_TSAN_DECLARE_MEMBER - }; - 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) */ { - public: - inline FigureDescriptor_MultiSeriesDescriptor() : FigureDescriptor_MultiSeriesDescriptor(nullptr) {} - ~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; - } - inline FigureDescriptor_MultiSeriesDescriptor& operator=(FigureDescriptor_MultiSeriesDescriptor&& 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 FigureDescriptor_MultiSeriesDescriptor& default_instance() { - return *internal_default_instance(); - } - 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); } - 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 - if (GetArena() == other->GetArena()) { -#endif // !PROTOBUF_FORCE_COPY_IN_SWAP - InternalSwap(other); - } else { - ::google::protobuf::internal::GenericSwap(this, other); - } - } - void UnsafeArenaSwap(FigureDescriptor_MultiSeriesDescriptor* other) { - if (other == this) return; - ABSL_DCHECK(GetArena() == other->GetArena()); - InternalSwap(other); - } - - // implements Message ---------------------------------------------- - - 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); } - - private: - static void MergeImpl( - ::google::protobuf::MessageLite& to_msg, - const ::google::protobuf::MessageLite& from_msg); - - 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; - #endif // PROTOBUF_CUSTOM_VTABLE - int GetCachedSize() const { return _impl_._cached_size_.Get(); } - - private: - void SharedCtor(::google::protobuf::Arena* arena); - void SharedDtor(); - void InternalSwap(FigureDescriptor_MultiSeriesDescriptor* other); - private: - friend class ::google::protobuf::internal::AnyMetadata; - 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); - 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, - kLineColorFieldNumber = 3, - kPointColorFieldNumber = 4, - kLinesVisibleFieldNumber = 5, - kPointsVisibleFieldNumber = 6, - kGradientVisibleFieldNumber = 7, - kPointLabelFormatFieldNumber = 8, - kXToolTipPatternFieldNumber = 9, - kYToolTipPatternFieldNumber = 10, - kPointLabelFieldNumber = 11, - kPointSizeFieldNumber = 12, - kPointShapeFieldNumber = 13, - kPlotStyleFieldNumber = 1, - }; - // repeated .io.deephaven.proto.backplane.script.grpc.FigureDescriptor.MultiSeriesSourceDescriptor data_sources = 14; - int data_sources_size() const; - private: - int _internal_data_sources_size() const; - - 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(); - - 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; - // string name = 2; - void clear_name() ; - const std::string& name() const; - template - void set_name(Arg_&& arg, Args_... args); - std::string* mutable_name(); - PROTOBUF_NODISCARD std::string* release_name(); - void set_allocated_name(std::string* value); - - private: - const std::string& _internal_name() const; - inline PROTOBUF_ALWAYS_INLINE void _internal_set_name( - const std::string& value); - std::string* _internal_mutable_name(); - - public: - // .io.deephaven.proto.backplane.script.grpc.FigureDescriptor.StringMapWithDefault line_color = 3; - bool has_line_color() const; - void clear_line_color() ; - const ::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_StringMapWithDefault& line_color() const; - PROTOBUF_NODISCARD ::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_StringMapWithDefault* release_line_color(); - ::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_StringMapWithDefault* mutable_line_color(); - void set_allocated_line_color(::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_StringMapWithDefault* value); - void unsafe_arena_set_allocated_line_color(::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_StringMapWithDefault* value); - ::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_StringMapWithDefault* unsafe_arena_release_line_color(); - - private: - const ::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_StringMapWithDefault& _internal_line_color() const; - ::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_StringMapWithDefault* _internal_mutable_line_color(); - - public: - // .io.deephaven.proto.backplane.script.grpc.FigureDescriptor.StringMapWithDefault point_color = 4; - bool has_point_color() const; - void clear_point_color() ; - const ::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_StringMapWithDefault& point_color() const; - PROTOBUF_NODISCARD ::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_StringMapWithDefault* release_point_color(); - ::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_StringMapWithDefault* mutable_point_color(); - void set_allocated_point_color(::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_StringMapWithDefault* value); - void unsafe_arena_set_allocated_point_color(::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_StringMapWithDefault* value); - ::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_StringMapWithDefault* unsafe_arena_release_point_color(); - - private: - const ::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_StringMapWithDefault& _internal_point_color() const; - ::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_StringMapWithDefault* _internal_mutable_point_color(); - - public: - // .io.deephaven.proto.backplane.script.grpc.FigureDescriptor.BoolMapWithDefault lines_visible = 5; - bool has_lines_visible() const; - void clear_lines_visible() ; - const ::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_BoolMapWithDefault& lines_visible() const; - PROTOBUF_NODISCARD ::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_BoolMapWithDefault* release_lines_visible(); - ::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_BoolMapWithDefault* mutable_lines_visible(); - void set_allocated_lines_visible(::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_BoolMapWithDefault* value); - void unsafe_arena_set_allocated_lines_visible(::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_BoolMapWithDefault* value); - ::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_BoolMapWithDefault* unsafe_arena_release_lines_visible(); - - private: - const ::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_BoolMapWithDefault& _internal_lines_visible() const; - ::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_BoolMapWithDefault* _internal_mutable_lines_visible(); - - public: - // .io.deephaven.proto.backplane.script.grpc.FigureDescriptor.BoolMapWithDefault points_visible = 6; - bool has_points_visible() const; - void clear_points_visible() ; - const ::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_BoolMapWithDefault& points_visible() const; - PROTOBUF_NODISCARD ::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_BoolMapWithDefault* release_points_visible(); - ::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_BoolMapWithDefault* mutable_points_visible(); - void set_allocated_points_visible(::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_BoolMapWithDefault* value); - void unsafe_arena_set_allocated_points_visible(::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_BoolMapWithDefault* value); - ::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_BoolMapWithDefault* unsafe_arena_release_points_visible(); - - private: - const ::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_BoolMapWithDefault& _internal_points_visible() const; - ::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_BoolMapWithDefault* _internal_mutable_points_visible(); - - public: - // .io.deephaven.proto.backplane.script.grpc.FigureDescriptor.BoolMapWithDefault gradient_visible = 7; - bool has_gradient_visible() const; - void clear_gradient_visible() ; - const ::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_BoolMapWithDefault& gradient_visible() const; - PROTOBUF_NODISCARD ::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_BoolMapWithDefault* release_gradient_visible(); - ::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_BoolMapWithDefault* mutable_gradient_visible(); - void set_allocated_gradient_visible(::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_BoolMapWithDefault* value); - void unsafe_arena_set_allocated_gradient_visible(::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_BoolMapWithDefault* value); - ::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_BoolMapWithDefault* unsafe_arena_release_gradient_visible(); - - private: - const ::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_BoolMapWithDefault& _internal_gradient_visible() const; - ::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_BoolMapWithDefault* _internal_mutable_gradient_visible(); - - public: - // .io.deephaven.proto.backplane.script.grpc.FigureDescriptor.StringMapWithDefault point_label_format = 8; - bool has_point_label_format() const; - void clear_point_label_format() ; - const ::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_StringMapWithDefault& point_label_format() const; - PROTOBUF_NODISCARD ::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_StringMapWithDefault* release_point_label_format(); - ::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_StringMapWithDefault* mutable_point_label_format(); - void set_allocated_point_label_format(::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_StringMapWithDefault* value); - void unsafe_arena_set_allocated_point_label_format(::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_StringMapWithDefault* value); - ::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_StringMapWithDefault* unsafe_arena_release_point_label_format(); - - private: - const ::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_StringMapWithDefault& _internal_point_label_format() const; - ::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_StringMapWithDefault* _internal_mutable_point_label_format(); - - public: - // .io.deephaven.proto.backplane.script.grpc.FigureDescriptor.StringMapWithDefault x_tool_tip_pattern = 9; - bool has_x_tool_tip_pattern() const; - void clear_x_tool_tip_pattern() ; - const ::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_StringMapWithDefault& x_tool_tip_pattern() const; - PROTOBUF_NODISCARD ::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_StringMapWithDefault* release_x_tool_tip_pattern(); - ::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_StringMapWithDefault* mutable_x_tool_tip_pattern(); - void set_allocated_x_tool_tip_pattern(::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_StringMapWithDefault* value); - void unsafe_arena_set_allocated_x_tool_tip_pattern(::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_StringMapWithDefault* value); - ::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_StringMapWithDefault* unsafe_arena_release_x_tool_tip_pattern(); - - private: - const ::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_StringMapWithDefault& _internal_x_tool_tip_pattern() const; - ::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_StringMapWithDefault* _internal_mutable_x_tool_tip_pattern(); - - public: - // .io.deephaven.proto.backplane.script.grpc.FigureDescriptor.StringMapWithDefault y_tool_tip_pattern = 10; - bool has_y_tool_tip_pattern() const; - void clear_y_tool_tip_pattern() ; - const ::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_StringMapWithDefault& y_tool_tip_pattern() const; - PROTOBUF_NODISCARD ::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_StringMapWithDefault* release_y_tool_tip_pattern(); - ::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_StringMapWithDefault* mutable_y_tool_tip_pattern(); - void set_allocated_y_tool_tip_pattern(::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_StringMapWithDefault* value); - void unsafe_arena_set_allocated_y_tool_tip_pattern(::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_StringMapWithDefault* value); - ::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_StringMapWithDefault* unsafe_arena_release_y_tool_tip_pattern(); - - private: - const ::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_StringMapWithDefault& _internal_y_tool_tip_pattern() const; - ::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_StringMapWithDefault* _internal_mutable_y_tool_tip_pattern(); - - public: - // .io.deephaven.proto.backplane.script.grpc.FigureDescriptor.StringMapWithDefault point_label = 11; - bool has_point_label() const; - void clear_point_label() ; - const ::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_StringMapWithDefault& point_label() const; - PROTOBUF_NODISCARD ::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_StringMapWithDefault* release_point_label(); - ::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_StringMapWithDefault* mutable_point_label(); - void set_allocated_point_label(::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_StringMapWithDefault* value); - void unsafe_arena_set_allocated_point_label(::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_StringMapWithDefault* value); - ::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_StringMapWithDefault* unsafe_arena_release_point_label(); - - private: - const ::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_StringMapWithDefault& _internal_point_label() const; - ::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_StringMapWithDefault* _internal_mutable_point_label(); - - public: - // .io.deephaven.proto.backplane.script.grpc.FigureDescriptor.DoubleMapWithDefault point_size = 12; - bool has_point_size() const; - void clear_point_size() ; - const ::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_DoubleMapWithDefault& point_size() const; - PROTOBUF_NODISCARD ::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_DoubleMapWithDefault* release_point_size(); - ::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_DoubleMapWithDefault* mutable_point_size(); - void set_allocated_point_size(::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_DoubleMapWithDefault* value); - void unsafe_arena_set_allocated_point_size(::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_DoubleMapWithDefault* value); - ::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_DoubleMapWithDefault* unsafe_arena_release_point_size(); - - private: - const ::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_DoubleMapWithDefault& _internal_point_size() const; - ::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_DoubleMapWithDefault* _internal_mutable_point_size(); - - public: - // .io.deephaven.proto.backplane.script.grpc.FigureDescriptor.StringMapWithDefault point_shape = 13; - bool has_point_shape() const; - void clear_point_shape() ; - const ::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_StringMapWithDefault& point_shape() const; - PROTOBUF_NODISCARD ::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_StringMapWithDefault* release_point_shape(); - ::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_StringMapWithDefault* mutable_point_shape(); - void set_allocated_point_shape(::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_StringMapWithDefault* value); - void unsafe_arena_set_allocated_point_shape(::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_StringMapWithDefault* value); - ::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_StringMapWithDefault* unsafe_arena_release_point_shape(); - - private: - const ::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_StringMapWithDefault& _internal_point_shape() const; - ::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_StringMapWithDefault* _internal_mutable_point_shape(); - - public: - // .io.deephaven.proto.backplane.script.grpc.FigureDescriptor.SeriesPlotStyle plot_style = 1; - void clear_plot_style() ; - ::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_SeriesPlotStyle plot_style() const; - void set_plot_style(::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_SeriesPlotStyle value); - - private: - ::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_SeriesPlotStyle _internal_plot_style() const; - void _internal_set_plot_style(::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_SeriesPlotStyle value); - - public: - // @@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 - 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 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_; - ::google::protobuf::internal::ArenaStringPtr name_; - ::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_StringMapWithDefault* line_color_; - ::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_StringMapWithDefault* point_color_; - ::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_BoolMapWithDefault* lines_visible_; - ::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_BoolMapWithDefault* points_visible_; - ::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_BoolMapWithDefault* gradient_visible_; - ::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_StringMapWithDefault* point_label_format_; - ::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_StringMapWithDefault* x_tool_tip_pattern_; - ::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_StringMapWithDefault* y_tool_tip_pattern_; - ::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_StringMapWithDefault* point_label_; - ::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_DoubleMapWithDefault* point_size_; - ::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_StringMapWithDefault* point_shape_; - int plot_style_; - PROTOBUF_TSAN_DECLARE_MEMBER - }; - 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) */ { - public: - inline FigureDescriptor_BusinessCalendarDescriptor_Holiday() : FigureDescriptor_BusinessCalendarDescriptor_Holiday(nullptr) {} - ~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; - } - 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 - && 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 FigureDescriptor_BusinessCalendarDescriptor_Holiday& default_instance() { - return *internal_default_instance(); - } - 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); } - 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 - if (GetArena() == other->GetArena()) { -#endif // !PROTOBUF_FORCE_COPY_IN_SWAP - InternalSwap(other); - } else { - ::google::protobuf::internal::GenericSwap(this, other); - } - } - void UnsafeArenaSwap(FigureDescriptor_BusinessCalendarDescriptor_Holiday* other) { - if (other == this) return; - ABSL_DCHECK(GetArena() == other->GetArena()); - InternalSwap(other); - } - - // implements Message ---------------------------------------------- - - 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); } - - private: - static void MergeImpl( - ::google::protobuf::MessageLite& to_msg, - const ::google::protobuf::MessageLite& from_msg); - - 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; - #endif // PROTOBUF_CUSTOM_VTABLE - int GetCachedSize() const { return _impl_._cached_size_.Get(); } - - private: - void SharedCtor(::google::protobuf::Arena* arena); - void SharedDtor(); - void InternalSwap(FigureDescriptor_BusinessCalendarDescriptor_Holiday* other); - private: - friend class ::google::protobuf::internal::AnyMetadata; - 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); - 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, - }; - // repeated .io.deephaven.proto.backplane.script.grpc.FigureDescriptor.BusinessCalendarDescriptor.BusinessPeriod business_periods = 2; - int business_periods_size() const; - private: - int _internal_business_periods_size() const; - - 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(); - - 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; - // .io.deephaven.proto.backplane.script.grpc.FigureDescriptor.BusinessCalendarDescriptor.LocalDate date = 1; - bool has_date() const; - void clear_date() ; - const ::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_BusinessCalendarDescriptor_LocalDate& date() const; - PROTOBUF_NODISCARD ::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_BusinessCalendarDescriptor_LocalDate* release_date(); - ::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_BusinessCalendarDescriptor_LocalDate* mutable_date(); - void set_allocated_date(::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_BusinessCalendarDescriptor_LocalDate* value); - void unsafe_arena_set_allocated_date(::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_BusinessCalendarDescriptor_LocalDate* value); - ::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_BusinessCalendarDescriptor_LocalDate* unsafe_arena_release_date(); - - private: - const ::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_BusinessCalendarDescriptor_LocalDate& _internal_date() const; - ::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_BusinessCalendarDescriptor_LocalDate* _internal_mutable_date(); - - public: - // @@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 - 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 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_; - ::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_BusinessCalendarDescriptor_LocalDate* date_; - PROTOBUF_TSAN_DECLARE_MEMBER - }; - 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) */ { - public: - inline ExecuteCommandRequest() : ExecuteCommandRequest(nullptr) {} - ~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; - } - inline ExecuteCommandRequest& operator=(ExecuteCommandRequest&& 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 ExecuteCommandRequest& default_instance() { - return *internal_default_instance(); - } - 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); } - 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 - if (GetArena() == other->GetArena()) { -#endif // !PROTOBUF_FORCE_COPY_IN_SWAP - InternalSwap(other); - } else { - ::google::protobuf::internal::GenericSwap(this, other); - } - } - void UnsafeArenaSwap(ExecuteCommandRequest* other) { - if (other == this) return; - ABSL_DCHECK(GetArena() == other->GetArena()); - InternalSwap(other); - } - - // implements Message ---------------------------------------------- - - 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); } - - private: - static void MergeImpl( - ::google::protobuf::MessageLite& to_msg, - const ::google::protobuf::MessageLite& from_msg); - - 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; - #endif // PROTOBUF_CUSTOM_VTABLE - int GetCachedSize() const { return _impl_._cached_size_.Get(); } - - private: - void SharedCtor(::google::protobuf::Arena* arena); - void SharedDtor(); - void InternalSwap(ExecuteCommandRequest* other); - private: - friend class ::google::protobuf::internal::AnyMetadata; - 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); - 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, - }; - // string code = 3; - void clear_code() ; - const std::string& code() const; - template - void set_code(Arg_&& arg, Args_... args); - std::string* mutable_code(); - PROTOBUF_NODISCARD std::string* release_code(); - void set_allocated_code(std::string* value); - - private: - const std::string& _internal_code() const; - inline PROTOBUF_ALWAYS_INLINE void _internal_set_code( - const std::string& value); - std::string* _internal_mutable_code(); - - public: - // .io.deephaven.proto.backplane.grpc.Ticket console_id = 1; - bool has_console_id() const; - void clear_console_id() ; - const ::io::deephaven::proto::backplane::grpc::Ticket& console_id() const; - PROTOBUF_NODISCARD ::io::deephaven::proto::backplane::grpc::Ticket* release_console_id(); - ::io::deephaven::proto::backplane::grpc::Ticket* mutable_console_id(); - void set_allocated_console_id(::io::deephaven::proto::backplane::grpc::Ticket* value); - void unsafe_arena_set_allocated_console_id(::io::deephaven::proto::backplane::grpc::Ticket* value); - ::io::deephaven::proto::backplane::grpc::Ticket* unsafe_arena_release_console_id(); - - private: - const ::io::deephaven::proto::backplane::grpc::Ticket& _internal_console_id() const; - ::io::deephaven::proto::backplane::grpc::Ticket* _internal_mutable_console_id(); - - public: - // @@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 - 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 ExecuteCommandRequest& from_msg); - ::google::protobuf::internal::HasBits<1> _has_bits_; - mutable ::google::protobuf::internal::CachedSize _cached_size_; - ::google::protobuf::internal::ArenaStringPtr code_; - ::io::deephaven::proto::backplane::grpc::Ticket* console_id_; - PROTOBUF_TSAN_DECLARE_MEMBER - }; - 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) */ { - public: - inline DocumentRange() : DocumentRange(nullptr) {} - ~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; - } - inline DocumentRange& operator=(DocumentRange&& 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 DocumentRange& default_instance() { - return *internal_default_instance(); - } - 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); } - 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 - if (GetArena() == other->GetArena()) { -#endif // !PROTOBUF_FORCE_COPY_IN_SWAP - InternalSwap(other); - } else { - ::google::protobuf::internal::GenericSwap(this, other); - } - } - void UnsafeArenaSwap(DocumentRange* other) { - if (other == this) return; - ABSL_DCHECK(GetArena() == other->GetArena()); - InternalSwap(other); - } - - // implements Message ---------------------------------------------- - - 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); } - - private: - static void MergeImpl( - ::google::protobuf::MessageLite& to_msg, - const ::google::protobuf::MessageLite& from_msg); - - 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; - #endif // PROTOBUF_CUSTOM_VTABLE - int GetCachedSize() const { return _impl_._cached_size_.Get(); } - - private: - void SharedCtor(::google::protobuf::Arena* arena); - void SharedDtor(); - void InternalSwap(DocumentRange* other); - private: - friend class ::google::protobuf::internal::AnyMetadata; - 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); - 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, - }; - // .io.deephaven.proto.backplane.script.grpc.Position start = 1; - bool has_start() const; - void clear_start() ; - const ::io::deephaven::proto::backplane::script::grpc::Position& start() const; - PROTOBUF_NODISCARD ::io::deephaven::proto::backplane::script::grpc::Position* release_start(); - ::io::deephaven::proto::backplane::script::grpc::Position* mutable_start(); - void set_allocated_start(::io::deephaven::proto::backplane::script::grpc::Position* value); - void unsafe_arena_set_allocated_start(::io::deephaven::proto::backplane::script::grpc::Position* value); - ::io::deephaven::proto::backplane::script::grpc::Position* unsafe_arena_release_start(); - - private: - const ::io::deephaven::proto::backplane::script::grpc::Position& _internal_start() const; - ::io::deephaven::proto::backplane::script::grpc::Position* _internal_mutable_start(); - - public: - // .io.deephaven.proto.backplane.script.grpc.Position end = 2; - bool has_end() const; - void clear_end() ; - const ::io::deephaven::proto::backplane::script::grpc::Position& end() const; - PROTOBUF_NODISCARD ::io::deephaven::proto::backplane::script::grpc::Position* release_end(); - ::io::deephaven::proto::backplane::script::grpc::Position* mutable_end(); - void set_allocated_end(::io::deephaven::proto::backplane::script::grpc::Position* value); - void unsafe_arena_set_allocated_end(::io::deephaven::proto::backplane::script::grpc::Position* value); - ::io::deephaven::proto::backplane::script::grpc::Position* unsafe_arena_release_end(); - - private: - const ::io::deephaven::proto::backplane::script::grpc::Position& _internal_end() const; - ::io::deephaven::proto::backplane::script::grpc::Position* _internal_mutable_end(); - - public: - // @@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 - 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 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_; - ::io::deephaven::proto::backplane::script::grpc::Position* end_; - PROTOBUF_TSAN_DECLARE_MEMBER - }; - 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) */ { - public: - inline CloseDocumentRequest() : CloseDocumentRequest(nullptr) {} - ~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; - } - inline CloseDocumentRequest& operator=(CloseDocumentRequest&& 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 CloseDocumentRequest& default_instance() { - return *internal_default_instance(); - } - 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); } - 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 - if (GetArena() == other->GetArena()) { -#endif // !PROTOBUF_FORCE_COPY_IN_SWAP - InternalSwap(other); - } else { - ::google::protobuf::internal::GenericSwap(this, other); - } - } - void UnsafeArenaSwap(CloseDocumentRequest* other) { - if (other == this) return; - ABSL_DCHECK(GetArena() == other->GetArena()); - InternalSwap(other); - } - - // implements Message ---------------------------------------------- - - 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); } - - private: - static void MergeImpl( - ::google::protobuf::MessageLite& to_msg, - const ::google::protobuf::MessageLite& from_msg); - - 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; - #endif // PROTOBUF_CUSTOM_VTABLE - int GetCachedSize() const { return _impl_._cached_size_.Get(); } - - private: - void SharedCtor(::google::protobuf::Arena* arena); - void SharedDtor(); - void InternalSwap(CloseDocumentRequest* other); - private: - friend class ::google::protobuf::internal::AnyMetadata; - 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); - 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, - }; - // .io.deephaven.proto.backplane.grpc.Ticket console_id = 1 [deprecated = true]; - [[deprecated]] bool has_console_id() const; - [[deprecated]] void clear_console_id() ; - [[deprecated]] const ::io::deephaven::proto::backplane::grpc::Ticket& console_id() const; - [[deprecated]] PROTOBUF_NODISCARD ::io::deephaven::proto::backplane::grpc::Ticket* release_console_id(); - [[deprecated]] ::io::deephaven::proto::backplane::grpc::Ticket* mutable_console_id(); - [[deprecated]] void set_allocated_console_id(::io::deephaven::proto::backplane::grpc::Ticket* value); - [[deprecated]] void unsafe_arena_set_allocated_console_id(::io::deephaven::proto::backplane::grpc::Ticket* value); - [[deprecated]] ::io::deephaven::proto::backplane::grpc::Ticket* unsafe_arena_release_console_id(); - - private: - const ::io::deephaven::proto::backplane::grpc::Ticket& _internal_console_id() const; - ::io::deephaven::proto::backplane::grpc::Ticket* _internal_mutable_console_id(); - - public: - // .io.deephaven.proto.backplane.script.grpc.VersionedTextDocumentIdentifier text_document = 2; - bool has_text_document() const; - void clear_text_document() ; - const ::io::deephaven::proto::backplane::script::grpc::VersionedTextDocumentIdentifier& text_document() const; - PROTOBUF_NODISCARD ::io::deephaven::proto::backplane::script::grpc::VersionedTextDocumentIdentifier* release_text_document(); - ::io::deephaven::proto::backplane::script::grpc::VersionedTextDocumentIdentifier* mutable_text_document(); - void set_allocated_text_document(::io::deephaven::proto::backplane::script::grpc::VersionedTextDocumentIdentifier* value); - void unsafe_arena_set_allocated_text_document(::io::deephaven::proto::backplane::script::grpc::VersionedTextDocumentIdentifier* value); - ::io::deephaven::proto::backplane::script::grpc::VersionedTextDocumentIdentifier* unsafe_arena_release_text_document(); - - private: - const ::io::deephaven::proto::backplane::script::grpc::VersionedTextDocumentIdentifier& _internal_text_document() const; - ::io::deephaven::proto::backplane::script::grpc::VersionedTextDocumentIdentifier* _internal_mutable_text_document(); - - public: - // @@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 - 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 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_; - ::io::deephaven::proto::backplane::script::grpc::VersionedTextDocumentIdentifier* text_document_; - PROTOBUF_TSAN_DECLARE_MEMBER - }; - 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) */ { - public: - inline CancelCommandRequest() : CancelCommandRequest(nullptr) {} - ~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; - } - inline CancelCommandRequest& operator=(CancelCommandRequest&& 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 CancelCommandRequest& default_instance() { - return *internal_default_instance(); - } - 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); } - 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 - if (GetArena() == other->GetArena()) { -#endif // !PROTOBUF_FORCE_COPY_IN_SWAP - InternalSwap(other); - } else { - ::google::protobuf::internal::GenericSwap(this, other); - } - } - void UnsafeArenaSwap(CancelCommandRequest* other) { - if (other == this) return; - ABSL_DCHECK(GetArena() == other->GetArena()); - InternalSwap(other); - } - - // implements Message ---------------------------------------------- - - 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); } - - private: - static void MergeImpl( - ::google::protobuf::MessageLite& to_msg, - const ::google::protobuf::MessageLite& from_msg); - - 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; - #endif // PROTOBUF_CUSTOM_VTABLE - int GetCachedSize() const { return _impl_._cached_size_.Get(); } - - private: - void SharedCtor(::google::protobuf::Arena* arena); - void SharedDtor(); - void InternalSwap(CancelCommandRequest* other); - private: - friend class ::google::protobuf::internal::AnyMetadata; - 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); - 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, - }; - // .io.deephaven.proto.backplane.grpc.Ticket console_id = 1; - bool has_console_id() const; - void clear_console_id() ; - const ::io::deephaven::proto::backplane::grpc::Ticket& console_id() const; - PROTOBUF_NODISCARD ::io::deephaven::proto::backplane::grpc::Ticket* release_console_id(); - ::io::deephaven::proto::backplane::grpc::Ticket* mutable_console_id(); - void set_allocated_console_id(::io::deephaven::proto::backplane::grpc::Ticket* value); - void unsafe_arena_set_allocated_console_id(::io::deephaven::proto::backplane::grpc::Ticket* value); - ::io::deephaven::proto::backplane::grpc::Ticket* unsafe_arena_release_console_id(); - - private: - const ::io::deephaven::proto::backplane::grpc::Ticket& _internal_console_id() const; - ::io::deephaven::proto::backplane::grpc::Ticket* _internal_mutable_console_id(); - - public: - // .io.deephaven.proto.backplane.grpc.Ticket command_id = 2; - bool has_command_id() const; - void clear_command_id() ; - const ::io::deephaven::proto::backplane::grpc::Ticket& command_id() const; - PROTOBUF_NODISCARD ::io::deephaven::proto::backplane::grpc::Ticket* release_command_id(); - ::io::deephaven::proto::backplane::grpc::Ticket* mutable_command_id(); - void set_allocated_command_id(::io::deephaven::proto::backplane::grpc::Ticket* value); - void unsafe_arena_set_allocated_command_id(::io::deephaven::proto::backplane::grpc::Ticket* value); - ::io::deephaven::proto::backplane::grpc::Ticket* unsafe_arena_release_command_id(); - - private: - const ::io::deephaven::proto::backplane::grpc::Ticket& _internal_command_id() const; - ::io::deephaven::proto::backplane::grpc::Ticket* _internal_mutable_command_id(); - - public: - // @@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 - 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 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_; - ::io::deephaven::proto::backplane::grpc::Ticket* command_id_; - PROTOBUF_TSAN_DECLARE_MEMBER - }; - 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) */ { - public: - inline CancelAutoCompleteRequest() : CancelAutoCompleteRequest(nullptr) {} - ~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; - } - inline CancelAutoCompleteRequest& operator=(CancelAutoCompleteRequest&& 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 CancelAutoCompleteRequest& default_instance() { - return *internal_default_instance(); - } - 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); } - 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 - if (GetArena() == other->GetArena()) { -#endif // !PROTOBUF_FORCE_COPY_IN_SWAP - InternalSwap(other); - } else { - ::google::protobuf::internal::GenericSwap(this, other); - } - } - void UnsafeArenaSwap(CancelAutoCompleteRequest* other) { - if (other == this) return; - ABSL_DCHECK(GetArena() == other->GetArena()); - InternalSwap(other); - } - - // implements Message ---------------------------------------------- - - 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); } - - private: - static void MergeImpl( - ::google::protobuf::MessageLite& to_msg, - const ::google::protobuf::MessageLite& from_msg); - - 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; - #endif // PROTOBUF_CUSTOM_VTABLE - int GetCachedSize() const { return _impl_._cached_size_.Get(); } - - private: - void SharedCtor(::google::protobuf::Arena* arena); - void SharedDtor(); - void InternalSwap(CancelAutoCompleteRequest* other); - private: - friend class ::google::protobuf::internal::AnyMetadata; - 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); - 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, - }; - // .io.deephaven.proto.backplane.grpc.Ticket console_id = 1; - bool has_console_id() const; - void clear_console_id() ; - const ::io::deephaven::proto::backplane::grpc::Ticket& console_id() const; - PROTOBUF_NODISCARD ::io::deephaven::proto::backplane::grpc::Ticket* release_console_id(); - ::io::deephaven::proto::backplane::grpc::Ticket* mutable_console_id(); - void set_allocated_console_id(::io::deephaven::proto::backplane::grpc::Ticket* value); - void unsafe_arena_set_allocated_console_id(::io::deephaven::proto::backplane::grpc::Ticket* value); - ::io::deephaven::proto::backplane::grpc::Ticket* unsafe_arena_release_console_id(); - - private: - const ::io::deephaven::proto::backplane::grpc::Ticket& _internal_console_id() const; - ::io::deephaven::proto::backplane::grpc::Ticket* _internal_mutable_console_id(); - - public: - // int32 request_id = 2; - void clear_request_id() ; - ::int32_t request_id() const; - void set_request_id(::int32_t value); - - private: - ::int32_t _internal_request_id() const; - void _internal_set_request_id(::int32_t value); - - public: - // @@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 - 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 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_; - ::int32_t request_id_; - PROTOBUF_TSAN_DECLARE_MEMBER - }; - 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) */ { - public: - inline BindTableToVariableRequest() : BindTableToVariableRequest(nullptr) {} - ~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; - } - inline BindTableToVariableRequest& operator=(BindTableToVariableRequest&& 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 BindTableToVariableRequest& default_instance() { - return *internal_default_instance(); - } - 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); } - 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 - if (GetArena() == other->GetArena()) { -#endif // !PROTOBUF_FORCE_COPY_IN_SWAP - InternalSwap(other); - } else { - ::google::protobuf::internal::GenericSwap(this, other); - } - } - void UnsafeArenaSwap(BindTableToVariableRequest* other) { - if (other == this) return; - ABSL_DCHECK(GetArena() == other->GetArena()); - InternalSwap(other); - } - - // implements Message ---------------------------------------------- - - 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); } - - private: - static void MergeImpl( - ::google::protobuf::MessageLite& to_msg, - const ::google::protobuf::MessageLite& from_msg); - - 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; - #endif // PROTOBUF_CUSTOM_VTABLE - int GetCachedSize() const { return _impl_._cached_size_.Get(); } - - private: - void SharedCtor(::google::protobuf::Arena* arena); - void SharedDtor(); - void InternalSwap(BindTableToVariableRequest* other); - private: - friend class ::google::protobuf::internal::AnyMetadata; - 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); - 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, - kTableIdFieldNumber = 4, - }; - // string variable_name = 3; - void clear_variable_name() ; - const std::string& variable_name() const; - template - void set_variable_name(Arg_&& arg, Args_... args); - std::string* mutable_variable_name(); - PROTOBUF_NODISCARD std::string* release_variable_name(); - void set_allocated_variable_name(std::string* value); - - private: - const std::string& _internal_variable_name() const; - inline PROTOBUF_ALWAYS_INLINE void _internal_set_variable_name( - const std::string& value); - std::string* _internal_mutable_variable_name(); - - public: - // .io.deephaven.proto.backplane.grpc.Ticket console_id = 1; - bool has_console_id() const; - void clear_console_id() ; - const ::io::deephaven::proto::backplane::grpc::Ticket& console_id() const; - PROTOBUF_NODISCARD ::io::deephaven::proto::backplane::grpc::Ticket* release_console_id(); - ::io::deephaven::proto::backplane::grpc::Ticket* mutable_console_id(); - void set_allocated_console_id(::io::deephaven::proto::backplane::grpc::Ticket* value); - void unsafe_arena_set_allocated_console_id(::io::deephaven::proto::backplane::grpc::Ticket* value); - ::io::deephaven::proto::backplane::grpc::Ticket* unsafe_arena_release_console_id(); - - private: - const ::io::deephaven::proto::backplane::grpc::Ticket& _internal_console_id() const; - ::io::deephaven::proto::backplane::grpc::Ticket* _internal_mutable_console_id(); - - public: - // .io.deephaven.proto.backplane.grpc.Ticket table_id = 4; - bool has_table_id() const; - void clear_table_id() ; - const ::io::deephaven::proto::backplane::grpc::Ticket& table_id() const; - PROTOBUF_NODISCARD ::io::deephaven::proto::backplane::grpc::Ticket* release_table_id(); - ::io::deephaven::proto::backplane::grpc::Ticket* mutable_table_id(); - void set_allocated_table_id(::io::deephaven::proto::backplane::grpc::Ticket* value); - void unsafe_arena_set_allocated_table_id(::io::deephaven::proto::backplane::grpc::Ticket* value); - ::io::deephaven::proto::backplane::grpc::Ticket* unsafe_arena_release_table_id(); - - private: - const ::io::deephaven::proto::backplane::grpc::Ticket& _internal_table_id() const; - ::io::deephaven::proto::backplane::grpc::Ticket* _internal_mutable_table_id(); - - public: - // @@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 - 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 BindTableToVariableRequest& from_msg); - ::google::protobuf::internal::HasBits<1> _has_bits_; - mutable ::google::protobuf::internal::CachedSize _cached_size_; - ::google::protobuf::internal::ArenaStringPtr variable_name_; - ::io::deephaven::proto::backplane::grpc::Ticket* console_id_; - ::io::deephaven::proto::backplane::grpc::Ticket* table_id_; - PROTOBUF_TSAN_DECLARE_MEMBER - }; - 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) */ { - public: - inline TextEdit() : TextEdit(nullptr) {} - ~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; - } - inline TextEdit& operator=(TextEdit&& 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 TextEdit& default_instance() { - return *internal_default_instance(); - } - 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); } - 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 - if (GetArena() == other->GetArena()) { -#endif // !PROTOBUF_FORCE_COPY_IN_SWAP - InternalSwap(other); - } else { - ::google::protobuf::internal::GenericSwap(this, other); - } - } - void UnsafeArenaSwap(TextEdit* other) { - if (other == this) return; - ABSL_DCHECK(GetArena() == other->GetArena()); - InternalSwap(other); - } - - // implements Message ---------------------------------------------- - - 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); } - - private: - static void MergeImpl( - ::google::protobuf::MessageLite& to_msg, - const ::google::protobuf::MessageLite& from_msg); - - 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; - #endif // PROTOBUF_CUSTOM_VTABLE - int GetCachedSize() const { return _impl_._cached_size_.Get(); } - - private: - void SharedCtor(::google::protobuf::Arena* arena); - void SharedDtor(); - void InternalSwap(TextEdit* other); - private: - friend class ::google::protobuf::internal::AnyMetadata; - 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); - 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, - }; - // string text = 2; - void clear_text() ; - const std::string& text() const; - template - void set_text(Arg_&& arg, Args_... args); - std::string* mutable_text(); - PROTOBUF_NODISCARD std::string* release_text(); - void set_allocated_text(std::string* value); - - private: - const std::string& _internal_text() const; - inline PROTOBUF_ALWAYS_INLINE void _internal_set_text( - const std::string& value); - std::string* _internal_mutable_text(); - - public: - // .io.deephaven.proto.backplane.script.grpc.DocumentRange range = 1; - bool has_range() const; - void clear_range() ; - const ::io::deephaven::proto::backplane::script::grpc::DocumentRange& range() const; - PROTOBUF_NODISCARD ::io::deephaven::proto::backplane::script::grpc::DocumentRange* release_range(); - ::io::deephaven::proto::backplane::script::grpc::DocumentRange* mutable_range(); - void set_allocated_range(::io::deephaven::proto::backplane::script::grpc::DocumentRange* value); - void unsafe_arena_set_allocated_range(::io::deephaven::proto::backplane::script::grpc::DocumentRange* value); - ::io::deephaven::proto::backplane::script::grpc::DocumentRange* unsafe_arena_release_range(); - - private: - const ::io::deephaven::proto::backplane::script::grpc::DocumentRange& _internal_range() const; - ::io::deephaven::proto::backplane::script::grpc::DocumentRange* _internal_mutable_range(); - - public: - // @@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 - 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 TextEdit& from_msg); - ::google::protobuf::internal::HasBits<1> _has_bits_; - mutable ::google::protobuf::internal::CachedSize _cached_size_; - ::google::protobuf::internal::ArenaStringPtr text_; - ::io::deephaven::proto::backplane::script::grpc::DocumentRange* range_; - PROTOBUF_TSAN_DECLARE_MEMBER - }; - 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) */ { - public: - inline SignatureInformation() : SignatureInformation(nullptr) {} - ~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; - } - inline SignatureInformation& operator=(SignatureInformation&& 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 SignatureInformation& default_instance() { - return *internal_default_instance(); - } - 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); } - 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 - if (GetArena() == other->GetArena()) { -#endif // !PROTOBUF_FORCE_COPY_IN_SWAP - InternalSwap(other); - } else { - ::google::protobuf::internal::GenericSwap(this, other); - } - } - void UnsafeArenaSwap(SignatureInformation* other) { - if (other == this) return; - ABSL_DCHECK(GetArena() == other->GetArena()); - InternalSwap(other); - } - - // implements Message ---------------------------------------------- - - 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); } - - private: - static void MergeImpl( - ::google::protobuf::MessageLite& to_msg, - const ::google::protobuf::MessageLite& from_msg); - - 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; - #endif // PROTOBUF_CUSTOM_VTABLE - int GetCachedSize() const { return _impl_._cached_size_.Get(); } - - private: - void SharedCtor(::google::protobuf::Arena* arena); - void SharedDtor(); - void InternalSwap(SignatureInformation* other); - private: - friend class ::google::protobuf::internal::AnyMetadata; - 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); - 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, - kDocumentationFieldNumber = 2, - kActiveParameterFieldNumber = 4, - }; - // repeated .io.deephaven.proto.backplane.script.grpc.ParameterInformation parameters = 3; - int parameters_size() const; - private: - int _internal_parameters_size() const; - - 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(); - - 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; - // string label = 1; - void clear_label() ; - const std::string& label() const; - template - void set_label(Arg_&& arg, Args_... args); - std::string* mutable_label(); - PROTOBUF_NODISCARD std::string* release_label(); - void set_allocated_label(std::string* value); - - private: - const std::string& _internal_label() const; - inline PROTOBUF_ALWAYS_INLINE void _internal_set_label( - const std::string& value); - std::string* _internal_mutable_label(); - - public: - // .io.deephaven.proto.backplane.script.grpc.MarkupContent documentation = 2; - bool has_documentation() const; - void clear_documentation() ; - const ::io::deephaven::proto::backplane::script::grpc::MarkupContent& documentation() const; - PROTOBUF_NODISCARD ::io::deephaven::proto::backplane::script::grpc::MarkupContent* release_documentation(); - ::io::deephaven::proto::backplane::script::grpc::MarkupContent* mutable_documentation(); - void set_allocated_documentation(::io::deephaven::proto::backplane::script::grpc::MarkupContent* value); - void unsafe_arena_set_allocated_documentation(::io::deephaven::proto::backplane::script::grpc::MarkupContent* value); - ::io::deephaven::proto::backplane::script::grpc::MarkupContent* unsafe_arena_release_documentation(); - - private: - const ::io::deephaven::proto::backplane::script::grpc::MarkupContent& _internal_documentation() const; - ::io::deephaven::proto::backplane::script::grpc::MarkupContent* _internal_mutable_documentation(); - - public: - // optional int32 active_parameter = 4; - bool has_active_parameter() const; - void clear_active_parameter() ; - ::int32_t active_parameter() const; - void set_active_parameter(::int32_t value); - - private: - ::int32_t _internal_active_parameter() const; - void _internal_set_active_parameter(::int32_t value); - - public: - // @@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 - 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 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_; - ::google::protobuf::internal::ArenaStringPtr label_; - ::io::deephaven::proto::backplane::script::grpc::MarkupContent* documentation_; - ::int32_t active_parameter_; - PROTOBUF_TSAN_DECLARE_MEMBER - }; - 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) */ { - public: - inline GetHoverResponse() : GetHoverResponse(nullptr) {} - ~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; - } - inline GetHoverResponse& operator=(GetHoverResponse&& 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 GetHoverResponse& default_instance() { - return *internal_default_instance(); - } - 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); } - 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 - if (GetArena() == other->GetArena()) { -#endif // !PROTOBUF_FORCE_COPY_IN_SWAP - InternalSwap(other); - } else { - ::google::protobuf::internal::GenericSwap(this, other); - } - } - void UnsafeArenaSwap(GetHoverResponse* other) { - if (other == this) return; - ABSL_DCHECK(GetArena() == other->GetArena()); - InternalSwap(other); - } - - // implements Message ---------------------------------------------- - - 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); } - - private: - static void MergeImpl( - ::google::protobuf::MessageLite& to_msg, - const ::google::protobuf::MessageLite& from_msg); - - 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; - #endif // PROTOBUF_CUSTOM_VTABLE - int GetCachedSize() const { return _impl_._cached_size_.Get(); } - - private: - void SharedCtor(::google::protobuf::Arena* arena); - void SharedDtor(); - void InternalSwap(GetHoverResponse* other); - private: - friend class ::google::protobuf::internal::AnyMetadata; - 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); - 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, - }; - // .io.deephaven.proto.backplane.script.grpc.MarkupContent contents = 1; - bool has_contents() const; - void clear_contents() ; - const ::io::deephaven::proto::backplane::script::grpc::MarkupContent& contents() const; - PROTOBUF_NODISCARD ::io::deephaven::proto::backplane::script::grpc::MarkupContent* release_contents(); - ::io::deephaven::proto::backplane::script::grpc::MarkupContent* mutable_contents(); - void set_allocated_contents(::io::deephaven::proto::backplane::script::grpc::MarkupContent* value); - void unsafe_arena_set_allocated_contents(::io::deephaven::proto::backplane::script::grpc::MarkupContent* value); - ::io::deephaven::proto::backplane::script::grpc::MarkupContent* unsafe_arena_release_contents(); - - private: - const ::io::deephaven::proto::backplane::script::grpc::MarkupContent& _internal_contents() const; - ::io::deephaven::proto::backplane::script::grpc::MarkupContent* _internal_mutable_contents(); - - public: - // .io.deephaven.proto.backplane.script.grpc.DocumentRange range = 2; - bool has_range() const; - void clear_range() ; - const ::io::deephaven::proto::backplane::script::grpc::DocumentRange& range() const; - PROTOBUF_NODISCARD ::io::deephaven::proto::backplane::script::grpc::DocumentRange* release_range(); - ::io::deephaven::proto::backplane::script::grpc::DocumentRange* mutable_range(); - void set_allocated_range(::io::deephaven::proto::backplane::script::grpc::DocumentRange* value); - void unsafe_arena_set_allocated_range(::io::deephaven::proto::backplane::script::grpc::DocumentRange* value); - ::io::deephaven::proto::backplane::script::grpc::DocumentRange* unsafe_arena_release_range(); - - private: - const ::io::deephaven::proto::backplane::script::grpc::DocumentRange& _internal_range() const; - ::io::deephaven::proto::backplane::script::grpc::DocumentRange* _internal_mutable_range(); - - public: - // @@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 - 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 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_; - ::io::deephaven::proto::backplane::script::grpc::DocumentRange* range_; - PROTOBUF_TSAN_DECLARE_MEMBER - }; - 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) */ { - public: - inline FigureDescriptor_SeriesDescriptor() : FigureDescriptor_SeriesDescriptor(nullptr) {} - ~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; - } - inline FigureDescriptor_SeriesDescriptor& operator=(FigureDescriptor_SeriesDescriptor&& 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 FigureDescriptor_SeriesDescriptor& default_instance() { - return *internal_default_instance(); - } - 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); } - 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 - if (GetArena() == other->GetArena()) { -#endif // !PROTOBUF_FORCE_COPY_IN_SWAP - InternalSwap(other); - } else { - ::google::protobuf::internal::GenericSwap(this, other); - } - } - void UnsafeArenaSwap(FigureDescriptor_SeriesDescriptor* other) { - if (other == this) return; - ABSL_DCHECK(GetArena() == other->GetArena()); - InternalSwap(other); - } - - // implements Message ---------------------------------------------- - - 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); } - - private: - static void MergeImpl( - ::google::protobuf::MessageLite& to_msg, - const ::google::protobuf::MessageLite& from_msg); - - 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; - #endif // PROTOBUF_CUSTOM_VTABLE - int GetCachedSize() const { return _impl_._cached_size_.Get(); } - - private: - void SharedCtor(::google::protobuf::Arena* arena); - void SharedDtor(); - void InternalSwap(FigureDescriptor_SeriesDescriptor* other); - private: - friend class ::google::protobuf::internal::AnyMetadata; - 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); - 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, - kLineColorFieldNumber = 6, - kPointLabelFormatFieldNumber = 8, - kXToolTipPatternFieldNumber = 9, - kYToolTipPatternFieldNumber = 10, - kShapeLabelFieldNumber = 11, - kShapeColorFieldNumber = 13, - kShapeFieldNumber = 14, - kPlotStyleFieldNumber = 1, - kLinesVisibleFieldNumber = 3, - kShapesVisibleFieldNumber = 4, - kGradientVisibleFieldNumber = 5, - kShapeSizeFieldNumber = 12, - }; - // repeated .io.deephaven.proto.backplane.script.grpc.FigureDescriptor.SourceDescriptor data_sources = 15; - int data_sources_size() const; - private: - int _internal_data_sources_size() const; - - 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(); - - 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; - // string name = 2; - void clear_name() ; - const std::string& name() const; - template - void set_name(Arg_&& arg, Args_... args); - std::string* mutable_name(); - PROTOBUF_NODISCARD std::string* release_name(); - void set_allocated_name(std::string* value); - - private: - const std::string& _internal_name() const; - inline PROTOBUF_ALWAYS_INLINE void _internal_set_name( - const std::string& value); - std::string* _internal_mutable_name(); - - public: - // string line_color = 6; - void clear_line_color() ; - const std::string& line_color() const; - template - void set_line_color(Arg_&& arg, Args_... args); - std::string* mutable_line_color(); - PROTOBUF_NODISCARD std::string* release_line_color(); - void set_allocated_line_color(std::string* value); - - private: - const std::string& _internal_line_color() const; - inline PROTOBUF_ALWAYS_INLINE void _internal_set_line_color( - const std::string& value); - std::string* _internal_mutable_line_color(); - - public: - // optional string point_label_format = 8; - bool has_point_label_format() const; - void clear_point_label_format() ; - const std::string& point_label_format() const; - template - void set_point_label_format(Arg_&& arg, Args_... args); - std::string* mutable_point_label_format(); - PROTOBUF_NODISCARD std::string* release_point_label_format(); - void set_allocated_point_label_format(std::string* value); - - private: - const std::string& _internal_point_label_format() const; - inline PROTOBUF_ALWAYS_INLINE void _internal_set_point_label_format( - const std::string& value); - std::string* _internal_mutable_point_label_format(); - - public: - // optional string x_tool_tip_pattern = 9; - bool has_x_tool_tip_pattern() const; - void clear_x_tool_tip_pattern() ; - const std::string& x_tool_tip_pattern() const; - template - void set_x_tool_tip_pattern(Arg_&& arg, Args_... args); - std::string* mutable_x_tool_tip_pattern(); - PROTOBUF_NODISCARD std::string* release_x_tool_tip_pattern(); - void set_allocated_x_tool_tip_pattern(std::string* value); - - private: - const std::string& _internal_x_tool_tip_pattern() const; - inline PROTOBUF_ALWAYS_INLINE void _internal_set_x_tool_tip_pattern( - const std::string& value); - std::string* _internal_mutable_x_tool_tip_pattern(); - - public: - // optional string y_tool_tip_pattern = 10; - bool has_y_tool_tip_pattern() const; - void clear_y_tool_tip_pattern() ; - const std::string& y_tool_tip_pattern() const; - template - void set_y_tool_tip_pattern(Arg_&& arg, Args_... args); - std::string* mutable_y_tool_tip_pattern(); - PROTOBUF_NODISCARD std::string* release_y_tool_tip_pattern(); - void set_allocated_y_tool_tip_pattern(std::string* value); - - private: - const std::string& _internal_y_tool_tip_pattern() const; - inline PROTOBUF_ALWAYS_INLINE void _internal_set_y_tool_tip_pattern( - const std::string& value); - std::string* _internal_mutable_y_tool_tip_pattern(); - - public: - // string shape_label = 11; - void clear_shape_label() ; - const std::string& shape_label() const; - template - void set_shape_label(Arg_&& arg, Args_... args); - std::string* mutable_shape_label(); - PROTOBUF_NODISCARD std::string* release_shape_label(); - void set_allocated_shape_label(std::string* value); - - private: - const std::string& _internal_shape_label() const; - inline PROTOBUF_ALWAYS_INLINE void _internal_set_shape_label( - const std::string& value); - std::string* _internal_mutable_shape_label(); - - public: - // string shape_color = 13; - void clear_shape_color() ; - const std::string& shape_color() const; - template - void set_shape_color(Arg_&& arg, Args_... args); - std::string* mutable_shape_color(); - PROTOBUF_NODISCARD std::string* release_shape_color(); - void set_allocated_shape_color(std::string* value); - - private: - const std::string& _internal_shape_color() const; - inline PROTOBUF_ALWAYS_INLINE void _internal_set_shape_color( - const std::string& value); - std::string* _internal_mutable_shape_color(); - - public: - // string shape = 14; - void clear_shape() ; - const std::string& shape() const; - template - void set_shape(Arg_&& arg, Args_... args); - std::string* mutable_shape(); - PROTOBUF_NODISCARD std::string* release_shape(); - void set_allocated_shape(std::string* value); - - private: - const std::string& _internal_shape() const; - inline PROTOBUF_ALWAYS_INLINE void _internal_set_shape( - const std::string& value); - std::string* _internal_mutable_shape(); - - public: - // .io.deephaven.proto.backplane.script.grpc.FigureDescriptor.SeriesPlotStyle plot_style = 1; - void clear_plot_style() ; - ::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_SeriesPlotStyle plot_style() const; - void set_plot_style(::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_SeriesPlotStyle value); - - private: - ::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_SeriesPlotStyle _internal_plot_style() const; - void _internal_set_plot_style(::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_SeriesPlotStyle value); - - public: - // optional bool lines_visible = 3; - bool has_lines_visible() const; - void clear_lines_visible() ; - bool lines_visible() const; - void set_lines_visible(bool value); - - private: - bool _internal_lines_visible() const; - void _internal_set_lines_visible(bool value); - - public: - // optional bool shapes_visible = 4; - bool has_shapes_visible() const; - void clear_shapes_visible() ; - bool shapes_visible() const; - void set_shapes_visible(bool value); - - private: - bool _internal_shapes_visible() const; - void _internal_set_shapes_visible(bool value); - - public: - // bool gradient_visible = 5; - void clear_gradient_visible() ; - bool gradient_visible() const; - void set_gradient_visible(bool value); - - private: - bool _internal_gradient_visible() const; - void _internal_set_gradient_visible(bool value); - - public: - // optional double shape_size = 12; - bool has_shape_size() const; - void clear_shape_size() ; - double shape_size() const; - void set_shape_size(double value); - - private: - double _internal_shape_size() const; - void _internal_set_shape_size(double value); - - public: - // @@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 - 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 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_; - ::google::protobuf::internal::ArenaStringPtr name_; - ::google::protobuf::internal::ArenaStringPtr line_color_; - ::google::protobuf::internal::ArenaStringPtr point_label_format_; - ::google::protobuf::internal::ArenaStringPtr x_tool_tip_pattern_; - ::google::protobuf::internal::ArenaStringPtr y_tool_tip_pattern_; - ::google::protobuf::internal::ArenaStringPtr shape_label_; - ::google::protobuf::internal::ArenaStringPtr shape_color_; - ::google::protobuf::internal::ArenaStringPtr shape_; - int plot_style_; - bool lines_visible_; - bool shapes_visible_; - bool gradient_visible_; - double shape_size_; - PROTOBUF_TSAN_DECLARE_MEMBER - }; - 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) */ { - public: - inline FigureDescriptor_BusinessCalendarDescriptor() : FigureDescriptor_BusinessCalendarDescriptor(nullptr) {} - ~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; - } - inline FigureDescriptor_BusinessCalendarDescriptor& operator=(FigureDescriptor_BusinessCalendarDescriptor&& 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 FigureDescriptor_BusinessCalendarDescriptor& default_instance() { - return *internal_default_instance(); - } - 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); } - 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 - if (GetArena() == other->GetArena()) { -#endif // !PROTOBUF_FORCE_COPY_IN_SWAP - InternalSwap(other); - } else { - ::google::protobuf::internal::GenericSwap(this, other); - } - } - void UnsafeArenaSwap(FigureDescriptor_BusinessCalendarDescriptor* other) { - if (other == this) return; - ABSL_DCHECK(GetArena() == other->GetArena()); - InternalSwap(other); - } - - // implements Message ---------------------------------------------- - - 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); } - - private: - static void MergeImpl( - ::google::protobuf::MessageLite& to_msg, - const ::google::protobuf::MessageLite& from_msg); - - 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; - #endif // PROTOBUF_CUSTOM_VTABLE - int GetCachedSize() const { return _impl_._cached_size_.Get(); } - - private: - void SharedCtor(::google::protobuf::Arena* arena); - void SharedDtor(); - void InternalSwap(FigureDescriptor_BusinessCalendarDescriptor* other); - private: - friend class ::google::protobuf::internal::AnyMetadata; - 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); - 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; - static constexpr DayOfWeek TUESDAY = FigureDescriptor_BusinessCalendarDescriptor_DayOfWeek_TUESDAY; - static constexpr DayOfWeek WEDNESDAY = FigureDescriptor_BusinessCalendarDescriptor_DayOfWeek_WEDNESDAY; - static constexpr DayOfWeek THURSDAY = FigureDescriptor_BusinessCalendarDescriptor_DayOfWeek_THURSDAY; - static constexpr DayOfWeek FRIDAY = FigureDescriptor_BusinessCalendarDescriptor_DayOfWeek_FRIDAY; - static constexpr DayOfWeek SATURDAY = FigureDescriptor_BusinessCalendarDescriptor_DayOfWeek_SATURDAY; - static inline bool DayOfWeek_IsValid(int value) { - return FigureDescriptor_BusinessCalendarDescriptor_DayOfWeek_IsValid(value); - } - static constexpr DayOfWeek DayOfWeek_MIN = FigureDescriptor_BusinessCalendarDescriptor_DayOfWeek_DayOfWeek_MIN; - static constexpr DayOfWeek DayOfWeek_MAX = FigureDescriptor_BusinessCalendarDescriptor_DayOfWeek_DayOfWeek_MAX; - static constexpr int DayOfWeek_ARRAYSIZE = FigureDescriptor_BusinessCalendarDescriptor_DayOfWeek_DayOfWeek_ARRAYSIZE; - static inline const ::google::protobuf::EnumDescriptor* DayOfWeek_descriptor() { - return FigureDescriptor_BusinessCalendarDescriptor_DayOfWeek_descriptor(); - } - template - static inline const std::string& DayOfWeek_Name(T value) { - return FigureDescriptor_BusinessCalendarDescriptor_DayOfWeek_Name(value); - } - static inline bool DayOfWeek_Parse(absl::string_view name, DayOfWeek* value) { - return FigureDescriptor_BusinessCalendarDescriptor_DayOfWeek_Parse(name, value); - } - - // accessors ------------------------------------------------------- - enum : int { - kBusinessDaysFieldNumber = 3, - kBusinessPeriodsFieldNumber = 4, - kHolidaysFieldNumber = 5, - kNameFieldNumber = 1, - kTimeZoneFieldNumber = 2, - }; - // repeated .io.deephaven.proto.backplane.script.grpc.FigureDescriptor.BusinessCalendarDescriptor.DayOfWeek business_days = 3; - int business_days_size() const; - private: - int _internal_business_days_size() const; - - public: - void clear_business_days() ; - public: - ::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_BusinessCalendarDescriptor_DayOfWeek business_days(int index) const; - void set_business_days(int index, ::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_BusinessCalendarDescriptor_DayOfWeek value); - void add_business_days(::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_BusinessCalendarDescriptor_DayOfWeek value); - const ::google::protobuf::RepeatedField& business_days() const; - ::google::protobuf::RepeatedField* mutable_business_days(); - - private: - const ::google::protobuf::RepeatedField& _internal_business_days() const; - ::google::protobuf::RepeatedField* _internal_mutable_business_days(); - - public: - // repeated .io.deephaven.proto.backplane.script.grpc.FigureDescriptor.BusinessCalendarDescriptor.BusinessPeriod business_periods = 4; - int business_periods_size() const; - private: - int _internal_business_periods_size() const; - - 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(); - - 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; - // repeated .io.deephaven.proto.backplane.script.grpc.FigureDescriptor.BusinessCalendarDescriptor.Holiday holidays = 5; - int holidays_size() const; - private: - int _internal_holidays_size() const; - - 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(); - - 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; - // string name = 1; - void clear_name() ; - const std::string& name() const; - template - void set_name(Arg_&& arg, Args_... args); - std::string* mutable_name(); - PROTOBUF_NODISCARD std::string* release_name(); - void set_allocated_name(std::string* value); - - private: - const std::string& _internal_name() const; - inline PROTOBUF_ALWAYS_INLINE void _internal_set_name( - const std::string& value); - std::string* _internal_mutable_name(); - - public: - // string time_zone = 2; - void clear_time_zone() ; - const std::string& time_zone() const; - template - void set_time_zone(Arg_&& arg, Args_... args); - std::string* mutable_time_zone(); - PROTOBUF_NODISCARD std::string* release_time_zone(); - void set_allocated_time_zone(std::string* value); - - private: - const std::string& _internal_time_zone() const; - inline PROTOBUF_ALWAYS_INLINE void _internal_set_time_zone( - const std::string& value); - std::string* _internal_mutable_time_zone(); - - public: - // @@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 - 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 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_; - ::google::protobuf::RepeatedPtrField< ::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_BusinessCalendarDescriptor_Holiday > holidays_; - ::google::protobuf::internal::ArenaStringPtr name_; - ::google::protobuf::internal::ArenaStringPtr time_zone_; - mutable ::google::protobuf::internal::CachedSize _cached_size_; - PROTOBUF_TSAN_DECLARE_MEMBER - }; - 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) */ { - public: - inline Diagnostic() : Diagnostic(nullptr) {} - ~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; - } - inline Diagnostic& operator=(Diagnostic&& 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 Diagnostic& default_instance() { - return *internal_default_instance(); - } - 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); } - 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 - if (GetArena() == other->GetArena()) { -#endif // !PROTOBUF_FORCE_COPY_IN_SWAP - InternalSwap(other); - } else { - ::google::protobuf::internal::GenericSwap(this, other); - } - } - void UnsafeArenaSwap(Diagnostic* other) { - if (other == this) return; - ABSL_DCHECK(GetArena() == other->GetArena()); - InternalSwap(other); - } - - // implements Message ---------------------------------------------- - - 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); } - - private: - static void MergeImpl( - ::google::protobuf::MessageLite& to_msg, - const ::google::protobuf::MessageLite& from_msg); - - 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; - #endif // PROTOBUF_CUSTOM_VTABLE - int GetCachedSize() const { return _impl_._cached_size_.Get(); } - - private: - void SharedCtor(::google::protobuf::Arena* arena); - void SharedDtor(); - void InternalSwap(Diagnostic* other); - private: - friend class ::google::protobuf::internal::AnyMetadata; - 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); - 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; - static constexpr DiagnosticSeverity WARNING = Diagnostic_DiagnosticSeverity_WARNING; - static constexpr DiagnosticSeverity INFORMATION = Diagnostic_DiagnosticSeverity_INFORMATION; - static constexpr DiagnosticSeverity HINT = Diagnostic_DiagnosticSeverity_HINT; - static inline bool DiagnosticSeverity_IsValid(int value) { - return Diagnostic_DiagnosticSeverity_IsValid(value); - } - static constexpr DiagnosticSeverity DiagnosticSeverity_MIN = Diagnostic_DiagnosticSeverity_DiagnosticSeverity_MIN; - static constexpr DiagnosticSeverity DiagnosticSeverity_MAX = Diagnostic_DiagnosticSeverity_DiagnosticSeverity_MAX; - static constexpr int DiagnosticSeverity_ARRAYSIZE = Diagnostic_DiagnosticSeverity_DiagnosticSeverity_ARRAYSIZE; - static inline const ::google::protobuf::EnumDescriptor* DiagnosticSeverity_descriptor() { - return Diagnostic_DiagnosticSeverity_descriptor(); - } - template - static inline const std::string& DiagnosticSeverity_Name(T value) { - return Diagnostic_DiagnosticSeverity_Name(value); - } - 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; - static constexpr DiagnosticTag DEPRECATED = Diagnostic_DiagnosticTag_DEPRECATED; - static inline bool DiagnosticTag_IsValid(int value) { - return Diagnostic_DiagnosticTag_IsValid(value); - } - static constexpr DiagnosticTag DiagnosticTag_MIN = Diagnostic_DiagnosticTag_DiagnosticTag_MIN; - static constexpr DiagnosticTag DiagnosticTag_MAX = Diagnostic_DiagnosticTag_DiagnosticTag_MAX; - static constexpr int DiagnosticTag_ARRAYSIZE = Diagnostic_DiagnosticTag_DiagnosticTag_ARRAYSIZE; - static inline const ::google::protobuf::EnumDescriptor* DiagnosticTag_descriptor() { - return Diagnostic_DiagnosticTag_descriptor(); - } - template - static inline const std::string& DiagnosticTag_Name(T value) { - return Diagnostic_DiagnosticTag_Name(value); - } - static inline bool DiagnosticTag_Parse(absl::string_view name, DiagnosticTag* value) { - return Diagnostic_DiagnosticTag_Parse(name, value); - } - - // accessors ------------------------------------------------------- - enum : int { - kTagsFieldNumber = 7, - kCodeFieldNumber = 3, - kSourceFieldNumber = 5, - kMessageFieldNumber = 6, - kDataFieldNumber = 9, - kRangeFieldNumber = 1, - kCodeDescriptionFieldNumber = 4, - kSeverityFieldNumber = 2, - }; - // repeated .io.deephaven.proto.backplane.script.grpc.Diagnostic.DiagnosticTag tags = 7; - int tags_size() const; - private: - int _internal_tags_size() const; - - public: - void clear_tags() ; - public: - ::io::deephaven::proto::backplane::script::grpc::Diagnostic_DiagnosticTag tags(int index) const; - void set_tags(int index, ::io::deephaven::proto::backplane::script::grpc::Diagnostic_DiagnosticTag value); - void add_tags(::io::deephaven::proto::backplane::script::grpc::Diagnostic_DiagnosticTag value); - const ::google::protobuf::RepeatedField& tags() const; - ::google::protobuf::RepeatedField* mutable_tags(); - - private: - const ::google::protobuf::RepeatedField& _internal_tags() const; - ::google::protobuf::RepeatedField* _internal_mutable_tags(); - - public: - // optional string code = 3; - bool has_code() const; - void clear_code() ; - const std::string& code() const; - template - void set_code(Arg_&& arg, Args_... args); - std::string* mutable_code(); - PROTOBUF_NODISCARD std::string* release_code(); - void set_allocated_code(std::string* value); - - private: - const std::string& _internal_code() const; - inline PROTOBUF_ALWAYS_INLINE void _internal_set_code( - const std::string& value); - std::string* _internal_mutable_code(); - - public: - // optional string source = 5; - bool has_source() const; - void clear_source() ; - const std::string& source() const; - template - void set_source(Arg_&& arg, Args_... args); - std::string* mutable_source(); - PROTOBUF_NODISCARD std::string* release_source(); - void set_allocated_source(std::string* value); - - private: - const std::string& _internal_source() const; - inline PROTOBUF_ALWAYS_INLINE void _internal_set_source( - const std::string& value); - std::string* _internal_mutable_source(); - - public: - // string message = 6; - void clear_message() ; - const std::string& message() const; - template - void set_message(Arg_&& arg, Args_... args); - std::string* mutable_message(); - PROTOBUF_NODISCARD std::string* release_message(); - void set_allocated_message(std::string* value); - - private: - const std::string& _internal_message() const; - inline PROTOBUF_ALWAYS_INLINE void _internal_set_message( - const std::string& value); - std::string* _internal_mutable_message(); - - public: - // optional bytes data = 9; - bool has_data() const; - void clear_data() ; - const std::string& data() const; - template - void set_data(Arg_&& arg, Args_... args); - std::string* mutable_data(); - PROTOBUF_NODISCARD std::string* release_data(); - void set_allocated_data(std::string* value); - - private: - const std::string& _internal_data() const; - inline PROTOBUF_ALWAYS_INLINE void _internal_set_data( - const std::string& value); - std::string* _internal_mutable_data(); - - public: - // .io.deephaven.proto.backplane.script.grpc.DocumentRange range = 1; - bool has_range() const; - void clear_range() ; - const ::io::deephaven::proto::backplane::script::grpc::DocumentRange& range() const; - PROTOBUF_NODISCARD ::io::deephaven::proto::backplane::script::grpc::DocumentRange* release_range(); - ::io::deephaven::proto::backplane::script::grpc::DocumentRange* mutable_range(); - void set_allocated_range(::io::deephaven::proto::backplane::script::grpc::DocumentRange* value); - void unsafe_arena_set_allocated_range(::io::deephaven::proto::backplane::script::grpc::DocumentRange* value); - ::io::deephaven::proto::backplane::script::grpc::DocumentRange* unsafe_arena_release_range(); - - private: - const ::io::deephaven::proto::backplane::script::grpc::DocumentRange& _internal_range() const; - ::io::deephaven::proto::backplane::script::grpc::DocumentRange* _internal_mutable_range(); - - public: - // optional .io.deephaven.proto.backplane.script.grpc.Diagnostic.CodeDescription code_description = 4; - bool has_code_description() const; - void clear_code_description() ; - const ::io::deephaven::proto::backplane::script::grpc::Diagnostic_CodeDescription& code_description() const; - PROTOBUF_NODISCARD ::io::deephaven::proto::backplane::script::grpc::Diagnostic_CodeDescription* release_code_description(); - ::io::deephaven::proto::backplane::script::grpc::Diagnostic_CodeDescription* mutable_code_description(); - void set_allocated_code_description(::io::deephaven::proto::backplane::script::grpc::Diagnostic_CodeDescription* value); - void unsafe_arena_set_allocated_code_description(::io::deephaven::proto::backplane::script::grpc::Diagnostic_CodeDescription* value); - ::io::deephaven::proto::backplane::script::grpc::Diagnostic_CodeDescription* unsafe_arena_release_code_description(); - - private: - const ::io::deephaven::proto::backplane::script::grpc::Diagnostic_CodeDescription& _internal_code_description() const; - ::io::deephaven::proto::backplane::script::grpc::Diagnostic_CodeDescription* _internal_mutable_code_description(); - - public: - // .io.deephaven.proto.backplane.script.grpc.Diagnostic.DiagnosticSeverity severity = 2; - void clear_severity() ; - ::io::deephaven::proto::backplane::script::grpc::Diagnostic_DiagnosticSeverity severity() const; - void set_severity(::io::deephaven::proto::backplane::script::grpc::Diagnostic_DiagnosticSeverity value); - - private: - ::io::deephaven::proto::backplane::script::grpc::Diagnostic_DiagnosticSeverity _internal_severity() const; - void _internal_set_severity(::io::deephaven::proto::backplane::script::grpc::Diagnostic_DiagnosticSeverity value); - - public: - // @@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 - 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 Diagnostic& from_msg); - ::google::protobuf::internal::HasBits<1> _has_bits_; - mutable ::google::protobuf::internal::CachedSize _cached_size_; - ::google::protobuf::RepeatedField tags_; - mutable ::google::protobuf::internal::CachedSize _tags_cached_byte_size_; - ::google::protobuf::internal::ArenaStringPtr code_; - ::google::protobuf::internal::ArenaStringPtr source_; - ::google::protobuf::internal::ArenaStringPtr message_; - ::google::protobuf::internal::ArenaStringPtr data_; - ::io::deephaven::proto::backplane::script::grpc::DocumentRange* range_; - ::io::deephaven::proto::backplane::script::grpc::Diagnostic_CodeDescription* code_description_; - int severity_; - PROTOBUF_TSAN_DECLARE_MEMBER - }; - 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) */ { - public: - inline ChangeDocumentRequest_TextDocumentContentChangeEvent() : ChangeDocumentRequest_TextDocumentContentChangeEvent(nullptr) {} - ~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; - } - inline ChangeDocumentRequest_TextDocumentContentChangeEvent& operator=(ChangeDocumentRequest_TextDocumentContentChangeEvent&& 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 ChangeDocumentRequest_TextDocumentContentChangeEvent& default_instance() { - return *internal_default_instance(); - } - 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); } - 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 - if (GetArena() == other->GetArena()) { -#endif // !PROTOBUF_FORCE_COPY_IN_SWAP - InternalSwap(other); - } else { - ::google::protobuf::internal::GenericSwap(this, other); - } - } - void UnsafeArenaSwap(ChangeDocumentRequest_TextDocumentContentChangeEvent* other) { - if (other == this) return; - ABSL_DCHECK(GetArena() == other->GetArena()); - InternalSwap(other); - } - - // implements Message ---------------------------------------------- - - 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); } - - private: - static void MergeImpl( - ::google::protobuf::MessageLite& to_msg, - const ::google::protobuf::MessageLite& from_msg); - - 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; - #endif // PROTOBUF_CUSTOM_VTABLE - int GetCachedSize() const { return _impl_._cached_size_.Get(); } - - private: - void SharedCtor(::google::protobuf::Arena* arena); - void SharedDtor(); - void InternalSwap(ChangeDocumentRequest_TextDocumentContentChangeEvent* other); - private: - friend class ::google::protobuf::internal::AnyMetadata; - 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); - 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, - kRangeLengthFieldNumber = 2, - }; - // string text = 3; - void clear_text() ; - const std::string& text() const; - template - void set_text(Arg_&& arg, Args_... args); - std::string* mutable_text(); - PROTOBUF_NODISCARD std::string* release_text(); - void set_allocated_text(std::string* value); - - private: - const std::string& _internal_text() const; - inline PROTOBUF_ALWAYS_INLINE void _internal_set_text( - const std::string& value); - std::string* _internal_mutable_text(); - - public: - // .io.deephaven.proto.backplane.script.grpc.DocumentRange range = 1; - bool has_range() const; - void clear_range() ; - const ::io::deephaven::proto::backplane::script::grpc::DocumentRange& range() const; - PROTOBUF_NODISCARD ::io::deephaven::proto::backplane::script::grpc::DocumentRange* release_range(); - ::io::deephaven::proto::backplane::script::grpc::DocumentRange* mutable_range(); - void set_allocated_range(::io::deephaven::proto::backplane::script::grpc::DocumentRange* value); - void unsafe_arena_set_allocated_range(::io::deephaven::proto::backplane::script::grpc::DocumentRange* value); - ::io::deephaven::proto::backplane::script::grpc::DocumentRange* unsafe_arena_release_range(); - - private: - const ::io::deephaven::proto::backplane::script::grpc::DocumentRange& _internal_range() const; - ::io::deephaven::proto::backplane::script::grpc::DocumentRange* _internal_mutable_range(); - - public: - // int32 range_length = 2; - void clear_range_length() ; - ::int32_t range_length() const; - void set_range_length(::int32_t value); - - private: - ::int32_t _internal_range_length() const; - void _internal_set_range_length(::int32_t value); - - public: - // @@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 - 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 ChangeDocumentRequest_TextDocumentContentChangeEvent& from_msg); - ::google::protobuf::internal::HasBits<1> _has_bits_; - mutable ::google::protobuf::internal::CachedSize _cached_size_; - ::google::protobuf::internal::ArenaStringPtr text_; - ::io::deephaven::proto::backplane::script::grpc::DocumentRange* range_; - ::int32_t range_length_; - PROTOBUF_TSAN_DECLARE_MEMBER - }; - 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) */ { - public: - inline GetSignatureHelpResponse() : GetSignatureHelpResponse(nullptr) {} - ~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; - } - inline GetSignatureHelpResponse& operator=(GetSignatureHelpResponse&& 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 GetSignatureHelpResponse& default_instance() { - return *internal_default_instance(); - } - 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); } - 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 - if (GetArena() == other->GetArena()) { -#endif // !PROTOBUF_FORCE_COPY_IN_SWAP - InternalSwap(other); - } else { - ::google::protobuf::internal::GenericSwap(this, other); - } - } - void UnsafeArenaSwap(GetSignatureHelpResponse* other) { - if (other == this) return; - ABSL_DCHECK(GetArena() == other->GetArena()); - InternalSwap(other); - } - - // implements Message ---------------------------------------------- - - 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); } - - private: - static void MergeImpl( - ::google::protobuf::MessageLite& to_msg, - const ::google::protobuf::MessageLite& from_msg); - - 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; - #endif // PROTOBUF_CUSTOM_VTABLE - int GetCachedSize() const { return _impl_._cached_size_.Get(); } - - private: - void SharedCtor(::google::protobuf::Arena* arena); - void SharedDtor(); - void InternalSwap(GetSignatureHelpResponse* other); - private: - friend class ::google::protobuf::internal::AnyMetadata; - 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); - 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, - kActiveParameterFieldNumber = 3, - }; - // repeated .io.deephaven.proto.backplane.script.grpc.SignatureInformation signatures = 1; - int signatures_size() const; - private: - int _internal_signatures_size() const; - - 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(); - - 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; - // optional int32 active_signature = 2; - bool has_active_signature() const; - void clear_active_signature() ; - ::int32_t active_signature() const; - void set_active_signature(::int32_t value); - - private: - ::int32_t _internal_active_signature() const; - void _internal_set_active_signature(::int32_t value); - - public: - // optional int32 active_parameter = 3; - bool has_active_parameter() const; - void clear_active_parameter() ; - ::int32_t active_parameter() const; - void set_active_parameter(::int32_t value); - - private: - ::int32_t _internal_active_parameter() const; - void _internal_set_active_parameter(::int32_t value); - - public: - // @@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 - 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 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_; - ::int32_t active_signature_; - ::int32_t active_parameter_; - PROTOBUF_TSAN_DECLARE_MEMBER - }; - 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) */ { - public: - inline GetPullDiagnosticResponse() : GetPullDiagnosticResponse(nullptr) {} - ~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; - } - inline GetPullDiagnosticResponse& operator=(GetPullDiagnosticResponse&& 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 GetPullDiagnosticResponse& default_instance() { - return *internal_default_instance(); - } - 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); } - 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 - if (GetArena() == other->GetArena()) { -#endif // !PROTOBUF_FORCE_COPY_IN_SWAP - InternalSwap(other); - } else { - ::google::protobuf::internal::GenericSwap(this, other); - } - } - void UnsafeArenaSwap(GetPullDiagnosticResponse* other) { - if (other == this) return; - ABSL_DCHECK(GetArena() == other->GetArena()); - InternalSwap(other); - } - - // implements Message ---------------------------------------------- - - 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); } - - private: - static void MergeImpl( - ::google::protobuf::MessageLite& to_msg, - const ::google::protobuf::MessageLite& from_msg); - - 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; - #endif // PROTOBUF_CUSTOM_VTABLE - int GetCachedSize() const { return _impl_._cached_size_.Get(); } - - private: - void SharedCtor(::google::protobuf::Arena* arena); - void SharedDtor(); - void InternalSwap(GetPullDiagnosticResponse* other); - private: - friend class ::google::protobuf::internal::AnyMetadata; - 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); - 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, - kResultIdFieldNumber = 2, - }; - // repeated .io.deephaven.proto.backplane.script.grpc.Diagnostic items = 3; - int items_size() const; - private: - int _internal_items_size() const; - - 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(); - - 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; - // string kind = 1; - void clear_kind() ; - const std::string& kind() const; - template - void set_kind(Arg_&& arg, Args_... args); - std::string* mutable_kind(); - PROTOBUF_NODISCARD std::string* release_kind(); - void set_allocated_kind(std::string* value); - - private: - const std::string& _internal_kind() const; - inline PROTOBUF_ALWAYS_INLINE void _internal_set_kind( - const std::string& value); - std::string* _internal_mutable_kind(); - - public: - // optional string result_id = 2; - bool has_result_id() const; - void clear_result_id() ; - const std::string& result_id() const; - template - void set_result_id(Arg_&& arg, Args_... args); - std::string* mutable_result_id(); - PROTOBUF_NODISCARD std::string* release_result_id(); - void set_allocated_result_id(std::string* value); - - private: - const std::string& _internal_result_id() const; - inline PROTOBUF_ALWAYS_INLINE void _internal_set_result_id( - const std::string& value); - std::string* _internal_mutable_result_id(); - - public: - // @@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 - 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 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_; - ::google::protobuf::internal::ArenaStringPtr kind_; - ::google::protobuf::internal::ArenaStringPtr result_id_; - PROTOBUF_TSAN_DECLARE_MEMBER - }; - 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) */ { - public: - inline GetPublishDiagnosticResponse() : GetPublishDiagnosticResponse(nullptr) {} - ~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; - } - inline GetPublishDiagnosticResponse& operator=(GetPublishDiagnosticResponse&& 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 GetPublishDiagnosticResponse& default_instance() { - return *internal_default_instance(); - } - 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); } - 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 - if (GetArena() == other->GetArena()) { -#endif // !PROTOBUF_FORCE_COPY_IN_SWAP - InternalSwap(other); - } else { - ::google::protobuf::internal::GenericSwap(this, other); - } - } - void UnsafeArenaSwap(GetPublishDiagnosticResponse* other) { - if (other == this) return; - ABSL_DCHECK(GetArena() == other->GetArena()); - InternalSwap(other); - } - - // implements Message ---------------------------------------------- - - 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); } - - private: - static void MergeImpl( - ::google::protobuf::MessageLite& to_msg, - const ::google::protobuf::MessageLite& from_msg); - - 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; - #endif // PROTOBUF_CUSTOM_VTABLE - int GetCachedSize() const { return _impl_._cached_size_.Get(); } - - private: - void SharedCtor(::google::protobuf::Arena* arena); - void SharedDtor(); - void InternalSwap(GetPublishDiagnosticResponse* other); - private: - friend class ::google::protobuf::internal::AnyMetadata; - 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); - 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, - kVersionFieldNumber = 2, - }; - // repeated .io.deephaven.proto.backplane.script.grpc.Diagnostic diagnostics = 3; - int diagnostics_size() const; - private: - int _internal_diagnostics_size() const; - - 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(); - - 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; - // string uri = 1; - void clear_uri() ; - const std::string& uri() const; - template - void set_uri(Arg_&& arg, Args_... args); - std::string* mutable_uri(); - PROTOBUF_NODISCARD std::string* release_uri(); - void set_allocated_uri(std::string* value); - - private: - const std::string& _internal_uri() const; - inline PROTOBUF_ALWAYS_INLINE void _internal_set_uri( - const std::string& value); - std::string* _internal_mutable_uri(); - - public: - // optional int32 version = 2; - bool has_version() const; - void clear_version() ; - ::int32_t version() const; - void set_version(::int32_t value); - - private: - ::int32_t _internal_version() const; - void _internal_set_version(::int32_t value); - - public: - // @@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 - 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 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_; - ::google::protobuf::internal::ArenaStringPtr uri_; - ::int32_t version_; - PROTOBUF_TSAN_DECLARE_MEMBER - }; - 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) */ { - public: - inline FigureDescriptor_AxisDescriptor() : FigureDescriptor_AxisDescriptor(nullptr) {} - ~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; - } - inline FigureDescriptor_AxisDescriptor& operator=(FigureDescriptor_AxisDescriptor&& 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 FigureDescriptor_AxisDescriptor& default_instance() { - return *internal_default_instance(); - } - 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); } - 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 - if (GetArena() == other->GetArena()) { -#endif // !PROTOBUF_FORCE_COPY_IN_SWAP - InternalSwap(other); - } else { - ::google::protobuf::internal::GenericSwap(this, other); - } - } - void UnsafeArenaSwap(FigureDescriptor_AxisDescriptor* other) { - if (other == this) return; - ABSL_DCHECK(GetArena() == other->GetArena()); - InternalSwap(other); - } - - // implements Message ---------------------------------------------- - - 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); } - - private: - static void MergeImpl( - ::google::protobuf::MessageLite& to_msg, - const ::google::protobuf::MessageLite& from_msg); - - 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; - #endif // PROTOBUF_CUSTOM_VTABLE - int GetCachedSize() const { return _impl_._cached_size_.Get(); } - - private: - void SharedCtor(::google::protobuf::Arena* arena); - void SharedDtor(); - void InternalSwap(FigureDescriptor_AxisDescriptor* other); - private: - friend class ::google::protobuf::internal::AnyMetadata; - 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); - 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; - static inline bool AxisFormatType_IsValid(int value) { - return FigureDescriptor_AxisDescriptor_AxisFormatType_IsValid(value); - } - static constexpr AxisFormatType AxisFormatType_MIN = FigureDescriptor_AxisDescriptor_AxisFormatType_AxisFormatType_MIN; - static constexpr AxisFormatType AxisFormatType_MAX = FigureDescriptor_AxisDescriptor_AxisFormatType_AxisFormatType_MAX; - static constexpr int AxisFormatType_ARRAYSIZE = FigureDescriptor_AxisDescriptor_AxisFormatType_AxisFormatType_ARRAYSIZE; - static inline const ::google::protobuf::EnumDescriptor* AxisFormatType_descriptor() { - return FigureDescriptor_AxisDescriptor_AxisFormatType_descriptor(); - } - template - static inline const std::string& AxisFormatType_Name(T value) { - return FigureDescriptor_AxisDescriptor_AxisFormatType_Name(value); - } - 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; - static constexpr AxisType SHAPE = FigureDescriptor_AxisDescriptor_AxisType_SHAPE; - static constexpr AxisType SIZE = FigureDescriptor_AxisDescriptor_AxisType_SIZE; - static constexpr AxisType LABEL = FigureDescriptor_AxisDescriptor_AxisType_LABEL; - static constexpr AxisType COLOR = FigureDescriptor_AxisDescriptor_AxisType_COLOR; - static inline bool AxisType_IsValid(int value) { - return FigureDescriptor_AxisDescriptor_AxisType_IsValid(value); - } - static constexpr AxisType AxisType_MIN = FigureDescriptor_AxisDescriptor_AxisType_AxisType_MIN; - static constexpr AxisType AxisType_MAX = FigureDescriptor_AxisDescriptor_AxisType_AxisType_MAX; - static constexpr int AxisType_ARRAYSIZE = FigureDescriptor_AxisDescriptor_AxisType_AxisType_ARRAYSIZE; - static inline const ::google::protobuf::EnumDescriptor* AxisType_descriptor() { - return FigureDescriptor_AxisDescriptor_AxisType_descriptor(); - } - template - static inline const std::string& AxisType_Name(T value) { - return FigureDescriptor_AxisDescriptor_AxisType_Name(value); - } - 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; - static constexpr AxisPosition LEFT = FigureDescriptor_AxisDescriptor_AxisPosition_LEFT; - static constexpr AxisPosition RIGHT = FigureDescriptor_AxisDescriptor_AxisPosition_RIGHT; - static constexpr AxisPosition NONE = FigureDescriptor_AxisDescriptor_AxisPosition_NONE; - static inline bool AxisPosition_IsValid(int value) { - return FigureDescriptor_AxisDescriptor_AxisPosition_IsValid(value); - } - static constexpr AxisPosition AxisPosition_MIN = FigureDescriptor_AxisDescriptor_AxisPosition_AxisPosition_MIN; - static constexpr AxisPosition AxisPosition_MAX = FigureDescriptor_AxisDescriptor_AxisPosition_AxisPosition_MAX; - static constexpr int AxisPosition_ARRAYSIZE = FigureDescriptor_AxisDescriptor_AxisPosition_AxisPosition_ARRAYSIZE; - static inline const ::google::protobuf::EnumDescriptor* AxisPosition_descriptor() { - return FigureDescriptor_AxisDescriptor_AxisPosition_descriptor(); - } - template - static inline const std::string& AxisPosition_Name(T value) { - return FigureDescriptor_AxisDescriptor_AxisPosition_Name(value); - } - static inline bool AxisPosition_Parse(absl::string_view name, AxisPosition* value) { - return FigureDescriptor_AxisDescriptor_AxisPosition_Parse(name, value); - } - - // accessors ------------------------------------------------------- - enum : int { - kMajorTickLocationsFieldNumber = 17, - kIdFieldNumber = 1, - kLabelFieldNumber = 6, - kLabelFontFieldNumber = 7, - kTicksFontFieldNumber = 8, - kFormatPatternFieldNumber = 9, - kColorFieldNumber = 10, - kBusinessCalendarDescriptorFieldNumber = 21, - kFormatTypeFieldNumber = 2, - kTypeFieldNumber = 3, - kMinRangeFieldNumber = 11, - kPositionFieldNumber = 4, - kLogFieldNumber = 5, - kMinorTicksVisibleFieldNumber = 13, - kMajorTicksVisibleFieldNumber = 14, - kInvertFieldNumber = 19, - kMaxRangeFieldNumber = 12, - kGapBetweenMajorTicksFieldNumber = 16, - kMinorTickCountFieldNumber = 15, - kIsTimeAxisFieldNumber = 20, - kTickLabelAngleFieldNumber = 18, - }; - // repeated double major_tick_locations = 17; - int major_tick_locations_size() const; - private: - int _internal_major_tick_locations_size() const; - - public: - void clear_major_tick_locations() ; - double major_tick_locations(int index) const; - void set_major_tick_locations(int index, double value); - void add_major_tick_locations(double value); - const ::google::protobuf::RepeatedField& major_tick_locations() const; - ::google::protobuf::RepeatedField* mutable_major_tick_locations(); - - private: - const ::google::protobuf::RepeatedField& _internal_major_tick_locations() const; - ::google::protobuf::RepeatedField* _internal_mutable_major_tick_locations(); - - public: - // string id = 1; - void clear_id() ; - const std::string& id() const; - template - void set_id(Arg_&& arg, Args_... args); - std::string* mutable_id(); - PROTOBUF_NODISCARD std::string* release_id(); - void set_allocated_id(std::string* value); - - private: - const std::string& _internal_id() const; - inline PROTOBUF_ALWAYS_INLINE void _internal_set_id( - const std::string& value); - std::string* _internal_mutable_id(); - - public: - // string label = 6; - void clear_label() ; - const std::string& label() const; - template - void set_label(Arg_&& arg, Args_... args); - std::string* mutable_label(); - PROTOBUF_NODISCARD std::string* release_label(); - void set_allocated_label(std::string* value); - - private: - const std::string& _internal_label() const; - inline PROTOBUF_ALWAYS_INLINE void _internal_set_label( - const std::string& value); - std::string* _internal_mutable_label(); - - public: - // string label_font = 7; - void clear_label_font() ; - const std::string& label_font() const; - template - void set_label_font(Arg_&& arg, Args_... args); - std::string* mutable_label_font(); - PROTOBUF_NODISCARD std::string* release_label_font(); - void set_allocated_label_font(std::string* value); - - private: - const std::string& _internal_label_font() const; - inline PROTOBUF_ALWAYS_INLINE void _internal_set_label_font( - const std::string& value); - std::string* _internal_mutable_label_font(); - - public: - // string ticks_font = 8; - void clear_ticks_font() ; - const std::string& ticks_font() const; - template - void set_ticks_font(Arg_&& arg, Args_... args); - std::string* mutable_ticks_font(); - PROTOBUF_NODISCARD std::string* release_ticks_font(); - void set_allocated_ticks_font(std::string* value); - - private: - const std::string& _internal_ticks_font() const; - inline PROTOBUF_ALWAYS_INLINE void _internal_set_ticks_font( - const std::string& value); - std::string* _internal_mutable_ticks_font(); - - public: - // optional string format_pattern = 9; - bool has_format_pattern() const; - void clear_format_pattern() ; - const std::string& format_pattern() const; - template - void set_format_pattern(Arg_&& arg, Args_... args); - std::string* mutable_format_pattern(); - PROTOBUF_NODISCARD std::string* release_format_pattern(); - void set_allocated_format_pattern(std::string* value); - - private: - const std::string& _internal_format_pattern() const; - inline PROTOBUF_ALWAYS_INLINE void _internal_set_format_pattern( - const std::string& value); - std::string* _internal_mutable_format_pattern(); - - public: - // string color = 10; - void clear_color() ; - const std::string& color() const; - template - void set_color(Arg_&& arg, Args_... args); - std::string* mutable_color(); - PROTOBUF_NODISCARD std::string* release_color(); - void set_allocated_color(std::string* value); - - private: - const std::string& _internal_color() const; - inline PROTOBUF_ALWAYS_INLINE void _internal_set_color( - const std::string& value); - std::string* _internal_mutable_color(); - - public: - // .io.deephaven.proto.backplane.script.grpc.FigureDescriptor.BusinessCalendarDescriptor business_calendar_descriptor = 21; - bool has_business_calendar_descriptor() const; - void clear_business_calendar_descriptor() ; - const ::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_BusinessCalendarDescriptor& business_calendar_descriptor() const; - PROTOBUF_NODISCARD ::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_BusinessCalendarDescriptor* release_business_calendar_descriptor(); - ::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_BusinessCalendarDescriptor* mutable_business_calendar_descriptor(); - void set_allocated_business_calendar_descriptor(::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_BusinessCalendarDescriptor* value); - void unsafe_arena_set_allocated_business_calendar_descriptor(::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_BusinessCalendarDescriptor* value); - ::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_BusinessCalendarDescriptor* unsafe_arena_release_business_calendar_descriptor(); - - private: - const ::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_BusinessCalendarDescriptor& _internal_business_calendar_descriptor() const; - ::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_BusinessCalendarDescriptor* _internal_mutable_business_calendar_descriptor(); - - public: - // .io.deephaven.proto.backplane.script.grpc.FigureDescriptor.AxisDescriptor.AxisFormatType format_type = 2; - void clear_format_type() ; - ::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_AxisDescriptor_AxisFormatType format_type() const; - void set_format_type(::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_AxisDescriptor_AxisFormatType value); - - private: - ::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_AxisDescriptor_AxisFormatType _internal_format_type() const; - void _internal_set_format_type(::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_AxisDescriptor_AxisFormatType value); - - public: - // .io.deephaven.proto.backplane.script.grpc.FigureDescriptor.AxisDescriptor.AxisType type = 3; - void clear_type() ; - ::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_AxisDescriptor_AxisType type() const; - void set_type(::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_AxisDescriptor_AxisType value); - - private: - ::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_AxisDescriptor_AxisType _internal_type() const; - void _internal_set_type(::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_AxisDescriptor_AxisType value); - - public: - // double min_range = 11; - void clear_min_range() ; - double min_range() const; - void set_min_range(double value); - - private: - double _internal_min_range() const; - void _internal_set_min_range(double value); - - public: - // .io.deephaven.proto.backplane.script.grpc.FigureDescriptor.AxisDescriptor.AxisPosition position = 4; - void clear_position() ; - ::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_AxisDescriptor_AxisPosition position() const; - void set_position(::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_AxisDescriptor_AxisPosition value); - - private: - ::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_AxisDescriptor_AxisPosition _internal_position() const; - void _internal_set_position(::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_AxisDescriptor_AxisPosition value); - - public: - // bool log = 5; - void clear_log() ; - bool log() const; - void set_log(bool value); - - private: - bool _internal_log() const; - void _internal_set_log(bool value); - - public: - // bool minor_ticks_visible = 13; - void clear_minor_ticks_visible() ; - bool minor_ticks_visible() const; - void set_minor_ticks_visible(bool value); - - private: - bool _internal_minor_ticks_visible() const; - void _internal_set_minor_ticks_visible(bool value); - - public: - // bool major_ticks_visible = 14; - void clear_major_ticks_visible() ; - bool major_ticks_visible() const; - void set_major_ticks_visible(bool value); - - private: - bool _internal_major_ticks_visible() const; - void _internal_set_major_ticks_visible(bool value); - - public: - // bool invert = 19; - void clear_invert() ; - bool invert() const; - void set_invert(bool value); - - private: - bool _internal_invert() const; - void _internal_set_invert(bool value); - - public: - // double max_range = 12; - void clear_max_range() ; - double max_range() const; - void set_max_range(double value); - - private: - double _internal_max_range() const; - void _internal_set_max_range(double value); - - public: - // optional double gap_between_major_ticks = 16; - bool has_gap_between_major_ticks() const; - void clear_gap_between_major_ticks() ; - double gap_between_major_ticks() const; - void set_gap_between_major_ticks(double value); - - private: - double _internal_gap_between_major_ticks() const; - void _internal_set_gap_between_major_ticks(double value); - - public: - // int32 minor_tick_count = 15; - void clear_minor_tick_count() ; - ::int32_t minor_tick_count() const; - void set_minor_tick_count(::int32_t value); - - private: - ::int32_t _internal_minor_tick_count() const; - void _internal_set_minor_tick_count(::int32_t value); - - public: - // bool is_time_axis = 20; - void clear_is_time_axis() ; - bool is_time_axis() const; - void set_is_time_axis(bool value); - - private: - bool _internal_is_time_axis() const; - void _internal_set_is_time_axis(bool value); - - public: - // double tick_label_angle = 18; - void clear_tick_label_angle() ; - double tick_label_angle() const; - void set_tick_label_angle(double value); - - private: - double _internal_tick_label_angle() const; - void _internal_set_tick_label_angle(double value); - - public: - // @@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 - 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 FigureDescriptor_AxisDescriptor& from_msg); - ::google::protobuf::internal::HasBits<1> _has_bits_; - mutable ::google::protobuf::internal::CachedSize _cached_size_; - ::google::protobuf::RepeatedField major_tick_locations_; - ::google::protobuf::internal::ArenaStringPtr id_; - ::google::protobuf::internal::ArenaStringPtr label_; - ::google::protobuf::internal::ArenaStringPtr label_font_; - ::google::protobuf::internal::ArenaStringPtr ticks_font_; - ::google::protobuf::internal::ArenaStringPtr format_pattern_; - ::google::protobuf::internal::ArenaStringPtr color_; - ::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_BusinessCalendarDescriptor* business_calendar_descriptor_; - int format_type_; - int type_; - double min_range_; - int position_; - bool log_; - bool minor_ticks_visible_; - bool major_ticks_visible_; - bool invert_; - double max_range_; - double gap_between_major_ticks_; - ::int32_t minor_tick_count_; - bool is_time_axis_; - double tick_label_angle_; - PROTOBUF_TSAN_DECLARE_MEMBER - }; - 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) */ { - public: - inline CompletionItem() : CompletionItem(nullptr) {} - ~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; - } - inline CompletionItem& operator=(CompletionItem&& 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 CompletionItem& default_instance() { - return *internal_default_instance(); - } - 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); } - 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 - if (GetArena() == other->GetArena()) { -#endif // !PROTOBUF_FORCE_COPY_IN_SWAP - InternalSwap(other); - } else { - ::google::protobuf::internal::GenericSwap(this, other); - } - } - void UnsafeArenaSwap(CompletionItem* other) { - if (other == this) return; - ABSL_DCHECK(GetArena() == other->GetArena()); - InternalSwap(other); - } - - // implements Message ---------------------------------------------- - - 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); } - - private: - static void MergeImpl( - ::google::protobuf::MessageLite& to_msg, - const ::google::protobuf::MessageLite& from_msg); - - 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; - #endif // PROTOBUF_CUSTOM_VTABLE - int GetCachedSize() const { return _impl_._cached_size_.Get(); } - - private: - void SharedCtor(::google::protobuf::Arena* arena); - void SharedDtor(); - void InternalSwap(CompletionItem* other); - private: - friend class ::google::protobuf::internal::AnyMetadata; - 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); - 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, - kLabelFieldNumber = 3, - kDetailFieldNumber = 5, - kSortTextFieldNumber = 10, - kFilterTextFieldNumber = 11, - kTextEditFieldNumber = 9, - kDocumentationFieldNumber = 15, - kStartFieldNumber = 1, - kLengthFieldNumber = 2, - kKindFieldNumber = 4, - kDeprecatedFieldNumber = 7, - kPreselectFieldNumber = 8, - kInsertTextFormatFieldNumber = 12, - }; - // repeated .io.deephaven.proto.backplane.script.grpc.TextEdit additional_text_edits = 13; - int additional_text_edits_size() const; - private: - int _internal_additional_text_edits_size() const; - - 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(); - - 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; - // repeated string commit_characters = 14; - int commit_characters_size() const; - private: - int _internal_commit_characters_size() const; - - public: - void clear_commit_characters() ; - const std::string& commit_characters(int index) const; - std::string* mutable_commit_characters(int index); - template - void set_commit_characters(int index, Arg_&& value, Args_... args); - std::string* add_commit_characters(); - template - void add_commit_characters(Arg_&& value, Args_... args); - const ::google::protobuf::RepeatedPtrField& commit_characters() const; - ::google::protobuf::RepeatedPtrField* mutable_commit_characters(); - - private: - const ::google::protobuf::RepeatedPtrField& _internal_commit_characters() const; - ::google::protobuf::RepeatedPtrField* _internal_mutable_commit_characters(); - - public: - // string label = 3; - void clear_label() ; - const std::string& label() const; - template - void set_label(Arg_&& arg, Args_... args); - std::string* mutable_label(); - PROTOBUF_NODISCARD std::string* release_label(); - void set_allocated_label(std::string* value); - - private: - const std::string& _internal_label() const; - inline PROTOBUF_ALWAYS_INLINE void _internal_set_label( - const std::string& value); - std::string* _internal_mutable_label(); - - public: - // string detail = 5; - void clear_detail() ; - const std::string& detail() const; - template - void set_detail(Arg_&& arg, Args_... args); - std::string* mutable_detail(); - PROTOBUF_NODISCARD std::string* release_detail(); - void set_allocated_detail(std::string* value); - - private: - const std::string& _internal_detail() const; - inline PROTOBUF_ALWAYS_INLINE void _internal_set_detail( - const std::string& value); - std::string* _internal_mutable_detail(); - - public: - // string sort_text = 10; - void clear_sort_text() ; - const std::string& sort_text() const; - template - void set_sort_text(Arg_&& arg, Args_... args); - std::string* mutable_sort_text(); - PROTOBUF_NODISCARD std::string* release_sort_text(); - void set_allocated_sort_text(std::string* value); - - private: - const std::string& _internal_sort_text() const; - inline PROTOBUF_ALWAYS_INLINE void _internal_set_sort_text( - const std::string& value); - std::string* _internal_mutable_sort_text(); - - public: - // string filter_text = 11; - void clear_filter_text() ; - const std::string& filter_text() const; - template - void set_filter_text(Arg_&& arg, Args_... args); - std::string* mutable_filter_text(); - PROTOBUF_NODISCARD std::string* release_filter_text(); - void set_allocated_filter_text(std::string* value); - - private: - const std::string& _internal_filter_text() const; - inline PROTOBUF_ALWAYS_INLINE void _internal_set_filter_text( - const std::string& value); - std::string* _internal_mutable_filter_text(); - - public: - // .io.deephaven.proto.backplane.script.grpc.TextEdit text_edit = 9; - bool has_text_edit() const; - void clear_text_edit() ; - const ::io::deephaven::proto::backplane::script::grpc::TextEdit& text_edit() const; - PROTOBUF_NODISCARD ::io::deephaven::proto::backplane::script::grpc::TextEdit* release_text_edit(); - ::io::deephaven::proto::backplane::script::grpc::TextEdit* mutable_text_edit(); - void set_allocated_text_edit(::io::deephaven::proto::backplane::script::grpc::TextEdit* value); - void unsafe_arena_set_allocated_text_edit(::io::deephaven::proto::backplane::script::grpc::TextEdit* value); - ::io::deephaven::proto::backplane::script::grpc::TextEdit* unsafe_arena_release_text_edit(); - - private: - const ::io::deephaven::proto::backplane::script::grpc::TextEdit& _internal_text_edit() const; - ::io::deephaven::proto::backplane::script::grpc::TextEdit* _internal_mutable_text_edit(); - - public: - // .io.deephaven.proto.backplane.script.grpc.MarkupContent documentation = 15; - bool has_documentation() const; - void clear_documentation() ; - const ::io::deephaven::proto::backplane::script::grpc::MarkupContent& documentation() const; - PROTOBUF_NODISCARD ::io::deephaven::proto::backplane::script::grpc::MarkupContent* release_documentation(); - ::io::deephaven::proto::backplane::script::grpc::MarkupContent* mutable_documentation(); - void set_allocated_documentation(::io::deephaven::proto::backplane::script::grpc::MarkupContent* value); - void unsafe_arena_set_allocated_documentation(::io::deephaven::proto::backplane::script::grpc::MarkupContent* value); - ::io::deephaven::proto::backplane::script::grpc::MarkupContent* unsafe_arena_release_documentation(); - - private: - const ::io::deephaven::proto::backplane::script::grpc::MarkupContent& _internal_documentation() const; - ::io::deephaven::proto::backplane::script::grpc::MarkupContent* _internal_mutable_documentation(); - - public: - // int32 start = 1; - void clear_start() ; - ::int32_t start() const; - void set_start(::int32_t value); - - private: - ::int32_t _internal_start() const; - void _internal_set_start(::int32_t value); - - public: - // int32 length = 2; - void clear_length() ; - ::int32_t length() const; - void set_length(::int32_t value); - - private: - ::int32_t _internal_length() const; - void _internal_set_length(::int32_t value); - - public: - // int32 kind = 4; - void clear_kind() ; - ::int32_t kind() const; - void set_kind(::int32_t value); - - private: - ::int32_t _internal_kind() const; - void _internal_set_kind(::int32_t value); - - public: - // bool deprecated = 7; - void clear_deprecated() ; - bool deprecated() const; - void set_deprecated(bool value); - - private: - bool _internal_deprecated() const; - void _internal_set_deprecated(bool value); - - public: - // bool preselect = 8; - void clear_preselect() ; - bool preselect() const; - void set_preselect(bool value); - - private: - bool _internal_preselect() const; - void _internal_set_preselect(bool value); - - public: - // int32 insert_text_format = 12; - void clear_insert_text_format() ; - ::int32_t insert_text_format() const; - void set_insert_text_format(::int32_t value); - - private: - ::int32_t _internal_insert_text_format() const; - void _internal_set_insert_text_format(::int32_t value); - - public: - // @@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 - 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 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_; - ::google::protobuf::RepeatedPtrField commit_characters_; - ::google::protobuf::internal::ArenaStringPtr label_; - ::google::protobuf::internal::ArenaStringPtr detail_; - ::google::protobuf::internal::ArenaStringPtr sort_text_; - ::google::protobuf::internal::ArenaStringPtr filter_text_; - ::io::deephaven::proto::backplane::script::grpc::TextEdit* text_edit_; - ::io::deephaven::proto::backplane::script::grpc::MarkupContent* documentation_; - ::int32_t start_; - ::int32_t length_; - ::int32_t kind_; - bool deprecated_; - bool preselect_; - ::int32_t insert_text_format_; - PROTOBUF_TSAN_DECLARE_MEMBER - }; - 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) */ { - public: - inline ChangeDocumentRequest() : ChangeDocumentRequest(nullptr) {} - ~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; - } - inline ChangeDocumentRequest& operator=(ChangeDocumentRequest&& 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 ChangeDocumentRequest& default_instance() { - return *internal_default_instance(); - } - 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); } - 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 - if (GetArena() == other->GetArena()) { -#endif // !PROTOBUF_FORCE_COPY_IN_SWAP - InternalSwap(other); - } else { - ::google::protobuf::internal::GenericSwap(this, other); - } - } - void UnsafeArenaSwap(ChangeDocumentRequest* other) { - if (other == this) return; - ABSL_DCHECK(GetArena() == other->GetArena()); - InternalSwap(other); - } - - // implements Message ---------------------------------------------- - - 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); } - - private: - static void MergeImpl( - ::google::protobuf::MessageLite& to_msg, - const ::google::protobuf::MessageLite& from_msg); - - 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; - #endif // PROTOBUF_CUSTOM_VTABLE - int GetCachedSize() const { return _impl_._cached_size_.Get(); } - - private: - void SharedCtor(::google::protobuf::Arena* arena); - void SharedDtor(); - void InternalSwap(ChangeDocumentRequest* other); - private: - friend class ::google::protobuf::internal::AnyMetadata; - 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); - 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, - kTextDocumentFieldNumber = 2, - }; - // repeated .io.deephaven.proto.backplane.script.grpc.ChangeDocumentRequest.TextDocumentContentChangeEvent content_changes = 3; - int content_changes_size() const; - private: - int _internal_content_changes_size() const; - - 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(); - - 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; - // .io.deephaven.proto.backplane.grpc.Ticket console_id = 1 [deprecated = true]; - [[deprecated]] bool has_console_id() const; - [[deprecated]] void clear_console_id() ; - [[deprecated]] const ::io::deephaven::proto::backplane::grpc::Ticket& console_id() const; - [[deprecated]] PROTOBUF_NODISCARD ::io::deephaven::proto::backplane::grpc::Ticket* release_console_id(); - [[deprecated]] ::io::deephaven::proto::backplane::grpc::Ticket* mutable_console_id(); - [[deprecated]] void set_allocated_console_id(::io::deephaven::proto::backplane::grpc::Ticket* value); - [[deprecated]] void unsafe_arena_set_allocated_console_id(::io::deephaven::proto::backplane::grpc::Ticket* value); - [[deprecated]] ::io::deephaven::proto::backplane::grpc::Ticket* unsafe_arena_release_console_id(); - - private: - const ::io::deephaven::proto::backplane::grpc::Ticket& _internal_console_id() const; - ::io::deephaven::proto::backplane::grpc::Ticket* _internal_mutable_console_id(); - - public: - // .io.deephaven.proto.backplane.script.grpc.VersionedTextDocumentIdentifier text_document = 2; - bool has_text_document() const; - void clear_text_document() ; - const ::io::deephaven::proto::backplane::script::grpc::VersionedTextDocumentIdentifier& text_document() const; - PROTOBUF_NODISCARD ::io::deephaven::proto::backplane::script::grpc::VersionedTextDocumentIdentifier* release_text_document(); - ::io::deephaven::proto::backplane::script::grpc::VersionedTextDocumentIdentifier* mutable_text_document(); - void set_allocated_text_document(::io::deephaven::proto::backplane::script::grpc::VersionedTextDocumentIdentifier* value); - void unsafe_arena_set_allocated_text_document(::io::deephaven::proto::backplane::script::grpc::VersionedTextDocumentIdentifier* value); - ::io::deephaven::proto::backplane::script::grpc::VersionedTextDocumentIdentifier* unsafe_arena_release_text_document(); - - private: - const ::io::deephaven::proto::backplane::script::grpc::VersionedTextDocumentIdentifier& _internal_text_document() const; - ::io::deephaven::proto::backplane::script::grpc::VersionedTextDocumentIdentifier* _internal_mutable_text_document(); - - public: - // @@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 - 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 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_; - ::io::deephaven::proto::backplane::grpc::Ticket* console_id_; - ::io::deephaven::proto::backplane::script::grpc::VersionedTextDocumentIdentifier* text_document_; - PROTOBUF_TSAN_DECLARE_MEMBER - }; - 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) */ { - public: - inline SignatureHelpContext() : SignatureHelpContext(nullptr) {} - ~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; - } - inline SignatureHelpContext& operator=(SignatureHelpContext&& 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 SignatureHelpContext& default_instance() { - return *internal_default_instance(); - } - 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); } - 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 - if (GetArena() == other->GetArena()) { -#endif // !PROTOBUF_FORCE_COPY_IN_SWAP - InternalSwap(other); - } else { - ::google::protobuf::internal::GenericSwap(this, other); - } - } - void UnsafeArenaSwap(SignatureHelpContext* other) { - if (other == this) return; - ABSL_DCHECK(GetArena() == other->GetArena()); - InternalSwap(other); - } - - // implements Message ---------------------------------------------- - - 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); } - - private: - static void MergeImpl( - ::google::protobuf::MessageLite& to_msg, - const ::google::protobuf::MessageLite& from_msg); - - 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; - #endif // PROTOBUF_CUSTOM_VTABLE - int GetCachedSize() const { return _impl_._cached_size_.Get(); } - - private: - void SharedCtor(::google::protobuf::Arena* arena); - void SharedDtor(); - void InternalSwap(SignatureHelpContext* other); - private: - friend class ::google::protobuf::internal::AnyMetadata; - 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); - 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, - kTriggerKindFieldNumber = 1, - kIsRetriggerFieldNumber = 3, - }; - // optional string trigger_character = 2; - bool has_trigger_character() const; - void clear_trigger_character() ; - const std::string& trigger_character() const; - template - void set_trigger_character(Arg_&& arg, Args_... args); - std::string* mutable_trigger_character(); - PROTOBUF_NODISCARD std::string* release_trigger_character(); - void set_allocated_trigger_character(std::string* value); - - private: - const std::string& _internal_trigger_character() const; - inline PROTOBUF_ALWAYS_INLINE void _internal_set_trigger_character( - const std::string& value); - std::string* _internal_mutable_trigger_character(); - - public: - // .io.deephaven.proto.backplane.script.grpc.GetSignatureHelpResponse active_signature_help = 4; - bool has_active_signature_help() const; - void clear_active_signature_help() ; - const ::io::deephaven::proto::backplane::script::grpc::GetSignatureHelpResponse& active_signature_help() const; - PROTOBUF_NODISCARD ::io::deephaven::proto::backplane::script::grpc::GetSignatureHelpResponse* release_active_signature_help(); - ::io::deephaven::proto::backplane::script::grpc::GetSignatureHelpResponse* mutable_active_signature_help(); - void set_allocated_active_signature_help(::io::deephaven::proto::backplane::script::grpc::GetSignatureHelpResponse* value); - void unsafe_arena_set_allocated_active_signature_help(::io::deephaven::proto::backplane::script::grpc::GetSignatureHelpResponse* value); - ::io::deephaven::proto::backplane::script::grpc::GetSignatureHelpResponse* unsafe_arena_release_active_signature_help(); - - private: - const ::io::deephaven::proto::backplane::script::grpc::GetSignatureHelpResponse& _internal_active_signature_help() const; - ::io::deephaven::proto::backplane::script::grpc::GetSignatureHelpResponse* _internal_mutable_active_signature_help(); - - public: - // int32 trigger_kind = 1; - void clear_trigger_kind() ; - ::int32_t trigger_kind() const; - void set_trigger_kind(::int32_t value); - - private: - ::int32_t _internal_trigger_kind() const; - void _internal_set_trigger_kind(::int32_t value); - - public: - // bool is_retrigger = 3; - void clear_is_retrigger() ; - bool is_retrigger() const; - void set_is_retrigger(bool value); - - private: - bool _internal_is_retrigger() const; - void _internal_set_is_retrigger(bool value); - - public: - // @@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 - 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 SignatureHelpContext& from_msg); - ::google::protobuf::internal::HasBits<1> _has_bits_; - mutable ::google::protobuf::internal::CachedSize _cached_size_; - ::google::protobuf::internal::ArenaStringPtr trigger_character_; - ::io::deephaven::proto::backplane::script::grpc::GetSignatureHelpResponse* active_signature_help_; - ::int32_t trigger_kind_; - bool is_retrigger_; - PROTOBUF_TSAN_DECLARE_MEMBER - }; - 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) */ { - public: - inline GetCompletionItemsResponse() : GetCompletionItemsResponse(nullptr) {} - ~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; - } - inline GetCompletionItemsResponse& operator=(GetCompletionItemsResponse&& 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 GetCompletionItemsResponse& default_instance() { - return *internal_default_instance(); - } - 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); } - 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 - if (GetArena() == other->GetArena()) { -#endif // !PROTOBUF_FORCE_COPY_IN_SWAP - InternalSwap(other); - } else { - ::google::protobuf::internal::GenericSwap(this, other); - } - } - void UnsafeArenaSwap(GetCompletionItemsResponse* other) { - if (other == this) return; - ABSL_DCHECK(GetArena() == other->GetArena()); - InternalSwap(other); - } - - // implements Message ---------------------------------------------- - - 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); } - - private: - static void MergeImpl( - ::google::protobuf::MessageLite& to_msg, - const ::google::protobuf::MessageLite& from_msg); - - 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; - #endif // PROTOBUF_CUSTOM_VTABLE - int GetCachedSize() const { return _impl_._cached_size_.Get(); } - - private: - void SharedCtor(::google::protobuf::Arena* arena); - void SharedDtor(); - void InternalSwap(GetCompletionItemsResponse* other); - private: - friend class ::google::protobuf::internal::AnyMetadata; - 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); - 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, - kSuccessFieldNumber = 3, - }; - // repeated .io.deephaven.proto.backplane.script.grpc.CompletionItem items = 1; - int items_size() const; - private: - int _internal_items_size() const; - - 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(); - - 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; - // int32 request_id = 2 [deprecated = true]; - [[deprecated]] void clear_request_id() ; - [[deprecated]] ::int32_t request_id() const; - [[deprecated]] void set_request_id(::int32_t value); - - private: - ::int32_t _internal_request_id() const; - void _internal_set_request_id(::int32_t value); - - public: - // bool success = 3 [deprecated = true]; - [[deprecated]] void clear_success() ; - [[deprecated]] bool success() const; - [[deprecated]] void set_success(bool value); - - private: - bool _internal_success() const; - void _internal_set_success(bool value); - - public: - // @@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 - 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 GetCompletionItemsResponse& from_msg); - ::google::protobuf::RepeatedPtrField< ::io::deephaven::proto::backplane::script::grpc::CompletionItem > items_; - ::int32_t request_id_; - bool success_; - mutable ::google::protobuf::internal::CachedSize _cached_size_; - PROTOBUF_TSAN_DECLARE_MEMBER - }; - 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) */ { - public: - inline FigureDescriptor_ChartDescriptor() : FigureDescriptor_ChartDescriptor(nullptr) {} - ~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; - } - inline FigureDescriptor_ChartDescriptor& operator=(FigureDescriptor_ChartDescriptor&& 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 FigureDescriptor_ChartDescriptor& default_instance() { - return *internal_default_instance(); - } - 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); } - 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 - if (GetArena() == other->GetArena()) { -#endif // !PROTOBUF_FORCE_COPY_IN_SWAP - InternalSwap(other); - } else { - ::google::protobuf::internal::GenericSwap(this, other); - } - } - void UnsafeArenaSwap(FigureDescriptor_ChartDescriptor* other) { - if (other == this) return; - ABSL_DCHECK(GetArena() == other->GetArena()); - InternalSwap(other); - } - - // implements Message ---------------------------------------------- - - 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); } - - private: - static void MergeImpl( - ::google::protobuf::MessageLite& to_msg, - const ::google::protobuf::MessageLite& from_msg); - - 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; - #endif // PROTOBUF_CUSTOM_VTABLE - int GetCachedSize() const { return _impl_._cached_size_.Get(); } - - private: - void SharedCtor(::google::protobuf::Arena* arena); - void SharedDtor(); - void InternalSwap(FigureDescriptor_ChartDescriptor* other); - private: - friend class ::google::protobuf::internal::AnyMetadata; - 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); - 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; - [[deprecated]] static constexpr ChartType OHLC = FigureDescriptor_ChartDescriptor_ChartType_OHLC; - static constexpr ChartType CATEGORY = FigureDescriptor_ChartDescriptor_ChartType_CATEGORY; - static constexpr ChartType XYZ = FigureDescriptor_ChartDescriptor_ChartType_XYZ; - static constexpr ChartType CATEGORY_3D = FigureDescriptor_ChartDescriptor_ChartType_CATEGORY_3D; - static constexpr ChartType TREEMAP = FigureDescriptor_ChartDescriptor_ChartType_TREEMAP; - static inline bool ChartType_IsValid(int value) { - return FigureDescriptor_ChartDescriptor_ChartType_IsValid(value); - } - static constexpr ChartType ChartType_MIN = FigureDescriptor_ChartDescriptor_ChartType_ChartType_MIN; - static constexpr ChartType ChartType_MAX = FigureDescriptor_ChartDescriptor_ChartType_ChartType_MAX; - static constexpr int ChartType_ARRAYSIZE = FigureDescriptor_ChartDescriptor_ChartType_ChartType_ARRAYSIZE; - static inline const ::google::protobuf::EnumDescriptor* ChartType_descriptor() { - return FigureDescriptor_ChartDescriptor_ChartType_descriptor(); - } - template - static inline const std::string& ChartType_Name(T value) { - return FigureDescriptor_ChartDescriptor_ChartType_Name(value); - } - static inline bool ChartType_Parse(absl::string_view name, ChartType* value) { - return FigureDescriptor_ChartDescriptor_ChartType_Parse(name, value); - } - - // accessors ------------------------------------------------------- - enum : int { - kSeriesFieldNumber = 3, - kMultiSeriesFieldNumber = 4, - kAxesFieldNumber = 5, - kTitleFieldNumber = 7, - kTitleFontFieldNumber = 8, - kTitleColorFieldNumber = 9, - kLegendFontFieldNumber = 11, - kLegendColorFieldNumber = 12, - kColspanFieldNumber = 1, - kRowspanFieldNumber = 2, - kChartTypeFieldNumber = 6, - kShowLegendFieldNumber = 10, - kIs3DFieldNumber = 13, - kColumnFieldNumber = 14, - kRowFieldNumber = 15, - }; - // repeated .io.deephaven.proto.backplane.script.grpc.FigureDescriptor.SeriesDescriptor series = 3; - int series_size() const; - private: - int _internal_series_size() const; - - 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(); - - 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; - // repeated .io.deephaven.proto.backplane.script.grpc.FigureDescriptor.MultiSeriesDescriptor multi_series = 4; - int multi_series_size() const; - private: - int _internal_multi_series_size() const; - - 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(); - - 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; - // repeated .io.deephaven.proto.backplane.script.grpc.FigureDescriptor.AxisDescriptor axes = 5; - int axes_size() const; - private: - int _internal_axes_size() const; - - 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(); - - 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; - // optional string title = 7; - bool has_title() const; - void clear_title() ; - const std::string& title() const; - template - void set_title(Arg_&& arg, Args_... args); - std::string* mutable_title(); - PROTOBUF_NODISCARD std::string* release_title(); - void set_allocated_title(std::string* value); - - private: - const std::string& _internal_title() const; - inline PROTOBUF_ALWAYS_INLINE void _internal_set_title( - const std::string& value); - std::string* _internal_mutable_title(); - - public: - // string title_font = 8; - void clear_title_font() ; - const std::string& title_font() const; - template - void set_title_font(Arg_&& arg, Args_... args); - std::string* mutable_title_font(); - PROTOBUF_NODISCARD std::string* release_title_font(); - void set_allocated_title_font(std::string* value); - - private: - const std::string& _internal_title_font() const; - inline PROTOBUF_ALWAYS_INLINE void _internal_set_title_font( - const std::string& value); - std::string* _internal_mutable_title_font(); - - public: - // string title_color = 9; - void clear_title_color() ; - const std::string& title_color() const; - template - void set_title_color(Arg_&& arg, Args_... args); - std::string* mutable_title_color(); - PROTOBUF_NODISCARD std::string* release_title_color(); - void set_allocated_title_color(std::string* value); - - private: - const std::string& _internal_title_color() const; - inline PROTOBUF_ALWAYS_INLINE void _internal_set_title_color( - const std::string& value); - std::string* _internal_mutable_title_color(); - - public: - // string legend_font = 11; - void clear_legend_font() ; - const std::string& legend_font() const; - template - void set_legend_font(Arg_&& arg, Args_... args); - std::string* mutable_legend_font(); - PROTOBUF_NODISCARD std::string* release_legend_font(); - void set_allocated_legend_font(std::string* value); - - private: - const std::string& _internal_legend_font() const; - inline PROTOBUF_ALWAYS_INLINE void _internal_set_legend_font( - const std::string& value); - std::string* _internal_mutable_legend_font(); - - public: - // string legend_color = 12; - void clear_legend_color() ; - const std::string& legend_color() const; - template - void set_legend_color(Arg_&& arg, Args_... args); - std::string* mutable_legend_color(); - PROTOBUF_NODISCARD std::string* release_legend_color(); - void set_allocated_legend_color(std::string* value); - - private: - const std::string& _internal_legend_color() const; - inline PROTOBUF_ALWAYS_INLINE void _internal_set_legend_color( - const std::string& value); - std::string* _internal_mutable_legend_color(); - - public: - // int32 colspan = 1; - void clear_colspan() ; - ::int32_t colspan() const; - void set_colspan(::int32_t value); - - private: - ::int32_t _internal_colspan() const; - void _internal_set_colspan(::int32_t value); - - public: - // int32 rowspan = 2; - void clear_rowspan() ; - ::int32_t rowspan() const; - void set_rowspan(::int32_t value); - - private: - ::int32_t _internal_rowspan() const; - void _internal_set_rowspan(::int32_t value); - - public: - // .io.deephaven.proto.backplane.script.grpc.FigureDescriptor.ChartDescriptor.ChartType chart_type = 6; - void clear_chart_type() ; - ::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_ChartDescriptor_ChartType chart_type() const; - void set_chart_type(::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_ChartDescriptor_ChartType value); - - private: - ::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_ChartDescriptor_ChartType _internal_chart_type() const; - void _internal_set_chart_type(::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_ChartDescriptor_ChartType value); - - public: - // bool show_legend = 10; - void clear_show_legend() ; - bool show_legend() const; - void set_show_legend(bool value); - - private: - bool _internal_show_legend() const; - void _internal_set_show_legend(bool value); - - public: - // bool is3d = 13; - void clear_is3d() ; - bool is3d() const; - void set_is3d(bool value); - - private: - bool _internal_is3d() const; - void _internal_set_is3d(bool value); - - public: - // int32 column = 14; - void clear_column() ; - ::int32_t column() const; - void set_column(::int32_t value); - - private: - ::int32_t _internal_column() const; - void _internal_set_column(::int32_t value); - - public: - // int32 row = 15; - void clear_row() ; - ::int32_t row() const; - void set_row(::int32_t value); - - private: - ::int32_t _internal_row() const; - void _internal_set_row(::int32_t value); - - public: - // @@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 - 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 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_; - ::google::protobuf::RepeatedPtrField< ::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_MultiSeriesDescriptor > multi_series_; - ::google::protobuf::RepeatedPtrField< ::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_AxisDescriptor > axes_; - ::google::protobuf::internal::ArenaStringPtr title_; - ::google::protobuf::internal::ArenaStringPtr title_font_; - ::google::protobuf::internal::ArenaStringPtr title_color_; - ::google::protobuf::internal::ArenaStringPtr legend_font_; - ::google::protobuf::internal::ArenaStringPtr legend_color_; - ::int32_t colspan_; - ::int32_t rowspan_; - int chart_type_; - bool show_legend_; - bool is3d_; - ::int32_t column_; - ::int32_t row_; - PROTOBUF_TSAN_DECLARE_MEMBER - }; - 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) */ { - public: - inline ExecuteCommandResponse() : ExecuteCommandResponse(nullptr) {} - ~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; - } - inline ExecuteCommandResponse& operator=(ExecuteCommandResponse&& 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 ExecuteCommandResponse& default_instance() { - return *internal_default_instance(); - } - 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); } - 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 - if (GetArena() == other->GetArena()) { -#endif // !PROTOBUF_FORCE_COPY_IN_SWAP - InternalSwap(other); - } else { - ::google::protobuf::internal::GenericSwap(this, other); - } - } - void UnsafeArenaSwap(ExecuteCommandResponse* other) { - if (other == this) return; - ABSL_DCHECK(GetArena() == other->GetArena()); - InternalSwap(other); - } - - // implements Message ---------------------------------------------- - - 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); } - - private: - static void MergeImpl( - ::google::protobuf::MessageLite& to_msg, - const ::google::protobuf::MessageLite& from_msg); - - 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; - #endif // PROTOBUF_CUSTOM_VTABLE - int GetCachedSize() const { return _impl_._cached_size_.Get(); } - - private: - void SharedCtor(::google::protobuf::Arena* arena); - void SharedDtor(); - void InternalSwap(ExecuteCommandResponse* other); - private: - friend class ::google::protobuf::internal::AnyMetadata; - 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); - 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, - }; - // string error_message = 1; - void clear_error_message() ; - const std::string& error_message() const; - template - void set_error_message(Arg_&& arg, Args_... args); - std::string* mutable_error_message(); - PROTOBUF_NODISCARD std::string* release_error_message(); - void set_allocated_error_message(std::string* value); - - private: - const std::string& _internal_error_message() const; - inline PROTOBUF_ALWAYS_INLINE void _internal_set_error_message( - const std::string& value); - std::string* _internal_mutable_error_message(); - - public: - // .io.deephaven.proto.backplane.grpc.FieldsChangeUpdate changes = 2; - bool has_changes() const; - void clear_changes() ; - const ::io::deephaven::proto::backplane::grpc::FieldsChangeUpdate& changes() const; - PROTOBUF_NODISCARD ::io::deephaven::proto::backplane::grpc::FieldsChangeUpdate* release_changes(); - ::io::deephaven::proto::backplane::grpc::FieldsChangeUpdate* mutable_changes(); - void set_allocated_changes(::io::deephaven::proto::backplane::grpc::FieldsChangeUpdate* value); - void unsafe_arena_set_allocated_changes(::io::deephaven::proto::backplane::grpc::FieldsChangeUpdate* value); - ::io::deephaven::proto::backplane::grpc::FieldsChangeUpdate* unsafe_arena_release_changes(); - - private: - const ::io::deephaven::proto::backplane::grpc::FieldsChangeUpdate& _internal_changes() const; - ::io::deephaven::proto::backplane::grpc::FieldsChangeUpdate* _internal_mutable_changes(); - - public: - // @@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 - 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 ExecuteCommandResponse& from_msg); - ::google::protobuf::internal::HasBits<1> _has_bits_; - mutable ::google::protobuf::internal::CachedSize _cached_size_; - ::google::protobuf::internal::ArenaStringPtr error_message_; - ::io::deephaven::proto::backplane::grpc::FieldsChangeUpdate* changes_; - PROTOBUF_TSAN_DECLARE_MEMBER - }; - 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) */ { - public: - inline GetSignatureHelpRequest() : GetSignatureHelpRequest(nullptr) {} - ~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; - } - inline GetSignatureHelpRequest& operator=(GetSignatureHelpRequest&& 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 GetSignatureHelpRequest& default_instance() { - return *internal_default_instance(); - } - 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); } - 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 - if (GetArena() == other->GetArena()) { -#endif // !PROTOBUF_FORCE_COPY_IN_SWAP - InternalSwap(other); - } else { - ::google::protobuf::internal::GenericSwap(this, other); - } - } - void UnsafeArenaSwap(GetSignatureHelpRequest* other) { - if (other == this) return; - ABSL_DCHECK(GetArena() == other->GetArena()); - InternalSwap(other); - } - - // implements Message ---------------------------------------------- - - 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); } - - private: - static void MergeImpl( - ::google::protobuf::MessageLite& to_msg, - const ::google::protobuf::MessageLite& from_msg); - - 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; - #endif // PROTOBUF_CUSTOM_VTABLE - int GetCachedSize() const { return _impl_._cached_size_.Get(); } - - private: - void SharedCtor(::google::protobuf::Arena* arena); - void SharedDtor(); - void InternalSwap(GetSignatureHelpRequest* other); - private: - friend class ::google::protobuf::internal::AnyMetadata; - 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); - 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, - kPositionFieldNumber = 3, - }; - // .io.deephaven.proto.backplane.script.grpc.SignatureHelpContext context = 1; - bool has_context() const; - void clear_context() ; - const ::io::deephaven::proto::backplane::script::grpc::SignatureHelpContext& context() const; - PROTOBUF_NODISCARD ::io::deephaven::proto::backplane::script::grpc::SignatureHelpContext* release_context(); - ::io::deephaven::proto::backplane::script::grpc::SignatureHelpContext* mutable_context(); - void set_allocated_context(::io::deephaven::proto::backplane::script::grpc::SignatureHelpContext* value); - void unsafe_arena_set_allocated_context(::io::deephaven::proto::backplane::script::grpc::SignatureHelpContext* value); - ::io::deephaven::proto::backplane::script::grpc::SignatureHelpContext* unsafe_arena_release_context(); - - private: - const ::io::deephaven::proto::backplane::script::grpc::SignatureHelpContext& _internal_context() const; - ::io::deephaven::proto::backplane::script::grpc::SignatureHelpContext* _internal_mutable_context(); - - public: - // .io.deephaven.proto.backplane.script.grpc.VersionedTextDocumentIdentifier text_document = 2; - bool has_text_document() const; - void clear_text_document() ; - const ::io::deephaven::proto::backplane::script::grpc::VersionedTextDocumentIdentifier& text_document() const; - PROTOBUF_NODISCARD ::io::deephaven::proto::backplane::script::grpc::VersionedTextDocumentIdentifier* release_text_document(); - ::io::deephaven::proto::backplane::script::grpc::VersionedTextDocumentIdentifier* mutable_text_document(); - void set_allocated_text_document(::io::deephaven::proto::backplane::script::grpc::VersionedTextDocumentIdentifier* value); - void unsafe_arena_set_allocated_text_document(::io::deephaven::proto::backplane::script::grpc::VersionedTextDocumentIdentifier* value); - ::io::deephaven::proto::backplane::script::grpc::VersionedTextDocumentIdentifier* unsafe_arena_release_text_document(); - - private: - const ::io::deephaven::proto::backplane::script::grpc::VersionedTextDocumentIdentifier& _internal_text_document() const; - ::io::deephaven::proto::backplane::script::grpc::VersionedTextDocumentIdentifier* _internal_mutable_text_document(); - - public: - // .io.deephaven.proto.backplane.script.grpc.Position position = 3; - bool has_position() const; - void clear_position() ; - const ::io::deephaven::proto::backplane::script::grpc::Position& position() const; - PROTOBUF_NODISCARD ::io::deephaven::proto::backplane::script::grpc::Position* release_position(); - ::io::deephaven::proto::backplane::script::grpc::Position* mutable_position(); - void set_allocated_position(::io::deephaven::proto::backplane::script::grpc::Position* value); - void unsafe_arena_set_allocated_position(::io::deephaven::proto::backplane::script::grpc::Position* value); - ::io::deephaven::proto::backplane::script::grpc::Position* unsafe_arena_release_position(); - - private: - const ::io::deephaven::proto::backplane::script::grpc::Position& _internal_position() const; - ::io::deephaven::proto::backplane::script::grpc::Position* _internal_mutable_position(); - - public: - // @@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 - 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 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_; - ::io::deephaven::proto::backplane::script::grpc::VersionedTextDocumentIdentifier* text_document_; - ::io::deephaven::proto::backplane::script::grpc::Position* position_; - PROTOBUF_TSAN_DECLARE_MEMBER - }; - 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) */ { - public: - inline FigureDescriptor() : FigureDescriptor(nullptr) {} - ~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; - } - inline FigureDescriptor& operator=(FigureDescriptor&& 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 FigureDescriptor& default_instance() { - return *internal_default_instance(); - } - 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); } - 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 - if (GetArena() == other->GetArena()) { -#endif // !PROTOBUF_FORCE_COPY_IN_SWAP - InternalSwap(other); - } else { - ::google::protobuf::internal::GenericSwap(this, other); - } - } - void UnsafeArenaSwap(FigureDescriptor* other) { - if (other == this) return; - ABSL_DCHECK(GetArena() == other->GetArena()); - InternalSwap(other); - } - - // implements Message ---------------------------------------------- - - 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); } - - private: - static void MergeImpl( - ::google::protobuf::MessageLite& to_msg, - const ::google::protobuf::MessageLite& from_msg); - - 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; - #endif // PROTOBUF_CUSTOM_VTABLE - int GetCachedSize() const { return _impl_._cached_size_.Get(); } - - private: - void SharedCtor(::google::protobuf::Arena* arena); - void SharedDtor(); - void InternalSwap(FigureDescriptor* other); - private: - friend class ::google::protobuf::internal::AnyMetadata; - 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); - 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; - using StringMapWithDefault = FigureDescriptor_StringMapWithDefault; - using DoubleMapWithDefault = FigureDescriptor_DoubleMapWithDefault; - using BoolMapWithDefault = FigureDescriptor_BoolMapWithDefault; - using AxisDescriptor = FigureDescriptor_AxisDescriptor; - using BusinessCalendarDescriptor = FigureDescriptor_BusinessCalendarDescriptor; - 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; - static constexpr SeriesPlotStyle LINE = FigureDescriptor_SeriesPlotStyle_LINE; - static constexpr SeriesPlotStyle AREA = FigureDescriptor_SeriesPlotStyle_AREA; - static constexpr SeriesPlotStyle STACKED_AREA = FigureDescriptor_SeriesPlotStyle_STACKED_AREA; - static constexpr SeriesPlotStyle PIE = FigureDescriptor_SeriesPlotStyle_PIE; - static constexpr SeriesPlotStyle HISTOGRAM = FigureDescriptor_SeriesPlotStyle_HISTOGRAM; - static constexpr SeriesPlotStyle OHLC = FigureDescriptor_SeriesPlotStyle_OHLC; - static constexpr SeriesPlotStyle SCATTER = FigureDescriptor_SeriesPlotStyle_SCATTER; - static constexpr SeriesPlotStyle STEP = FigureDescriptor_SeriesPlotStyle_STEP; - static constexpr SeriesPlotStyle ERROR_BAR = FigureDescriptor_SeriesPlotStyle_ERROR_BAR; - static constexpr SeriesPlotStyle TREEMAP = FigureDescriptor_SeriesPlotStyle_TREEMAP; - static inline bool SeriesPlotStyle_IsValid(int value) { - return FigureDescriptor_SeriesPlotStyle_IsValid(value); - } - static constexpr SeriesPlotStyle SeriesPlotStyle_MIN = FigureDescriptor_SeriesPlotStyle_SeriesPlotStyle_MIN; - static constexpr SeriesPlotStyle SeriesPlotStyle_MAX = FigureDescriptor_SeriesPlotStyle_SeriesPlotStyle_MAX; - static constexpr int SeriesPlotStyle_ARRAYSIZE = FigureDescriptor_SeriesPlotStyle_SeriesPlotStyle_ARRAYSIZE; - static inline const ::google::protobuf::EnumDescriptor* SeriesPlotStyle_descriptor() { - return FigureDescriptor_SeriesPlotStyle_descriptor(); - } - template - static inline const std::string& SeriesPlotStyle_Name(T value) { - return FigureDescriptor_SeriesPlotStyle_Name(value); - } - 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; - static constexpr SourceType Z = FigureDescriptor_SourceType_Z; - static constexpr SourceType X_LOW = FigureDescriptor_SourceType_X_LOW; - static constexpr SourceType X_HIGH = FigureDescriptor_SourceType_X_HIGH; - static constexpr SourceType Y_LOW = FigureDescriptor_SourceType_Y_LOW; - static constexpr SourceType Y_HIGH = FigureDescriptor_SourceType_Y_HIGH; - static constexpr SourceType TIME = FigureDescriptor_SourceType_TIME; - static constexpr SourceType OPEN = FigureDescriptor_SourceType_OPEN; - static constexpr SourceType HIGH = FigureDescriptor_SourceType_HIGH; - static constexpr SourceType LOW = FigureDescriptor_SourceType_LOW; - static constexpr SourceType CLOSE = FigureDescriptor_SourceType_CLOSE; - static constexpr SourceType SHAPE = FigureDescriptor_SourceType_SHAPE; - static constexpr SourceType SIZE = FigureDescriptor_SourceType_SIZE; - static constexpr SourceType LABEL = FigureDescriptor_SourceType_LABEL; - static constexpr SourceType COLOR = FigureDescriptor_SourceType_COLOR; - static constexpr SourceType PARENT = FigureDescriptor_SourceType_PARENT; - static constexpr SourceType HOVER_TEXT = FigureDescriptor_SourceType_HOVER_TEXT; - static constexpr SourceType TEXT = FigureDescriptor_SourceType_TEXT; - static inline bool SourceType_IsValid(int value) { - return FigureDescriptor_SourceType_IsValid(value); - } - static constexpr SourceType SourceType_MIN = FigureDescriptor_SourceType_SourceType_MIN; - static constexpr SourceType SourceType_MAX = FigureDescriptor_SourceType_SourceType_MAX; - static constexpr int SourceType_ARRAYSIZE = FigureDescriptor_SourceType_SourceType_ARRAYSIZE; - static inline const ::google::protobuf::EnumDescriptor* SourceType_descriptor() { - return FigureDescriptor_SourceType_descriptor(); - } - template - static inline const std::string& SourceType_Name(T value) { - return FigureDescriptor_SourceType_Name(value); - } - static inline bool SourceType_Parse(absl::string_view name, SourceType* value) { - return FigureDescriptor_SourceType_Parse(name, value); - } - - // accessors ------------------------------------------------------- - enum : int { - kChartsFieldNumber = 10, - kErrorsFieldNumber = 13, - kTitleFieldNumber = 1, - kTitleFontFieldNumber = 2, - kTitleColorFieldNumber = 3, - kUpdateIntervalFieldNumber = 7, - kColsFieldNumber = 8, - kRowsFieldNumber = 9, - }; - // repeated .io.deephaven.proto.backplane.script.grpc.FigureDescriptor.ChartDescriptor charts = 10; - int charts_size() const; - private: - int _internal_charts_size() const; - - 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(); - - 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; - // repeated string errors = 13; - int errors_size() const; - private: - int _internal_errors_size() const; - - public: - void clear_errors() ; - const std::string& errors(int index) const; - std::string* mutable_errors(int index); - template - void set_errors(int index, Arg_&& value, Args_... args); - std::string* add_errors(); - template - void add_errors(Arg_&& value, Args_... args); - const ::google::protobuf::RepeatedPtrField& errors() const; - ::google::protobuf::RepeatedPtrField* mutable_errors(); - - private: - const ::google::protobuf::RepeatedPtrField& _internal_errors() const; - ::google::protobuf::RepeatedPtrField* _internal_mutable_errors(); - - public: - // optional string title = 1; - bool has_title() const; - void clear_title() ; - const std::string& title() const; - template - void set_title(Arg_&& arg, Args_... args); - std::string* mutable_title(); - PROTOBUF_NODISCARD std::string* release_title(); - void set_allocated_title(std::string* value); - - private: - const std::string& _internal_title() const; - inline PROTOBUF_ALWAYS_INLINE void _internal_set_title( - const std::string& value); - std::string* _internal_mutable_title(); - - public: - // string title_font = 2; - void clear_title_font() ; - const std::string& title_font() const; - template - void set_title_font(Arg_&& arg, Args_... args); - std::string* mutable_title_font(); - PROTOBUF_NODISCARD std::string* release_title_font(); - void set_allocated_title_font(std::string* value); - - private: - const std::string& _internal_title_font() const; - inline PROTOBUF_ALWAYS_INLINE void _internal_set_title_font( - const std::string& value); - std::string* _internal_mutable_title_font(); - - public: - // string title_color = 3; - void clear_title_color() ; - const std::string& title_color() const; - template - void set_title_color(Arg_&& arg, Args_... args); - std::string* mutable_title_color(); - PROTOBUF_NODISCARD std::string* release_title_color(); - void set_allocated_title_color(std::string* value); - - private: - const std::string& _internal_title_color() const; - inline PROTOBUF_ALWAYS_INLINE void _internal_set_title_color( - const std::string& value); - std::string* _internal_mutable_title_color(); - - public: - // int64 update_interval = 7 [jstype = JS_STRING]; - void clear_update_interval() ; - ::int64_t update_interval() const; - void set_update_interval(::int64_t value); - - private: - ::int64_t _internal_update_interval() const; - void _internal_set_update_interval(::int64_t value); - - public: - // int32 cols = 8; - void clear_cols() ; - ::int32_t cols() const; - void set_cols(::int32_t value); - - private: - ::int32_t _internal_cols() const; - void _internal_set_cols(::int32_t value); - - public: - // int32 rows = 9; - void clear_rows() ; - ::int32_t rows() const; - void set_rows(::int32_t value); - - private: - ::int32_t _internal_rows() const; - void _internal_set_rows(::int32_t value); - - public: - // @@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 - 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 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_; - ::google::protobuf::RepeatedPtrField errors_; - ::google::protobuf::internal::ArenaStringPtr title_; - ::google::protobuf::internal::ArenaStringPtr title_font_; - ::google::protobuf::internal::ArenaStringPtr title_color_; - ::int64_t update_interval_; - ::int32_t cols_; - ::int32_t rows_; - PROTOBUF_TSAN_DECLARE_MEMBER - }; - 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) */ { - public: - inline AutoCompleteResponse() : AutoCompleteResponse(nullptr) {} - ~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; - } - inline AutoCompleteResponse& operator=(AutoCompleteResponse&& 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 AutoCompleteResponse& default_instance() { - return *internal_default_instance(); - } - enum ResponseCase { - kCompletionItems = 1, - kSignatures = 4, - kHover = 5, - kDiagnostic = 6, - 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); } - 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 - if (GetArena() == other->GetArena()) { -#endif // !PROTOBUF_FORCE_COPY_IN_SWAP - InternalSwap(other); - } else { - ::google::protobuf::internal::GenericSwap(this, other); - } - } - void UnsafeArenaSwap(AutoCompleteResponse* other) { - if (other == this) return; - ABSL_DCHECK(GetArena() == other->GetArena()); - InternalSwap(other); - } - - // implements Message ---------------------------------------------- - - 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); } - - private: - static void MergeImpl( - ::google::protobuf::MessageLite& to_msg, - const ::google::protobuf::MessageLite& from_msg); - - 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; - #endif // PROTOBUF_CUSTOM_VTABLE - int GetCachedSize() const { return _impl_._cached_size_.Get(); } - - private: - void SharedCtor(::google::protobuf::Arena* arena); - void SharedDtor(); - void InternalSwap(AutoCompleteResponse* other); - private: - friend class ::google::protobuf::internal::AnyMetadata; - 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); - 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, - kCompletionItemsFieldNumber = 1, - kSignaturesFieldNumber = 4, - kHoverFieldNumber = 5, - kDiagnosticFieldNumber = 6, - kDiagnosticPublishFieldNumber = 7, - }; - // int32 request_id = 2; - void clear_request_id() ; - ::int32_t request_id() const; - void set_request_id(::int32_t value); - - private: - ::int32_t _internal_request_id() const; - void _internal_set_request_id(::int32_t value); - - public: - // bool success = 3; - void clear_success() ; - bool success() const; - void set_success(bool value); - - private: - bool _internal_success() const; - void _internal_set_success(bool value); - - public: - // .io.deephaven.proto.backplane.script.grpc.GetCompletionItemsResponse completion_items = 1; - bool has_completion_items() const; - private: - bool _internal_has_completion_items() const; - - public: - void clear_completion_items() ; - const ::io::deephaven::proto::backplane::script::grpc::GetCompletionItemsResponse& completion_items() const; - PROTOBUF_NODISCARD ::io::deephaven::proto::backplane::script::grpc::GetCompletionItemsResponse* release_completion_items(); - ::io::deephaven::proto::backplane::script::grpc::GetCompletionItemsResponse* mutable_completion_items(); - void set_allocated_completion_items(::io::deephaven::proto::backplane::script::grpc::GetCompletionItemsResponse* value); - void unsafe_arena_set_allocated_completion_items(::io::deephaven::proto::backplane::script::grpc::GetCompletionItemsResponse* value); - ::io::deephaven::proto::backplane::script::grpc::GetCompletionItemsResponse* unsafe_arena_release_completion_items(); - - private: - const ::io::deephaven::proto::backplane::script::grpc::GetCompletionItemsResponse& _internal_completion_items() const; - ::io::deephaven::proto::backplane::script::grpc::GetCompletionItemsResponse* _internal_mutable_completion_items(); - - public: - // .io.deephaven.proto.backplane.script.grpc.GetSignatureHelpResponse signatures = 4; - bool has_signatures() const; - private: - bool _internal_has_signatures() const; - - public: - void clear_signatures() ; - const ::io::deephaven::proto::backplane::script::grpc::GetSignatureHelpResponse& signatures() const; - PROTOBUF_NODISCARD ::io::deephaven::proto::backplane::script::grpc::GetSignatureHelpResponse* release_signatures(); - ::io::deephaven::proto::backplane::script::grpc::GetSignatureHelpResponse* mutable_signatures(); - void set_allocated_signatures(::io::deephaven::proto::backplane::script::grpc::GetSignatureHelpResponse* value); - void unsafe_arena_set_allocated_signatures(::io::deephaven::proto::backplane::script::grpc::GetSignatureHelpResponse* value); - ::io::deephaven::proto::backplane::script::grpc::GetSignatureHelpResponse* unsafe_arena_release_signatures(); - - private: - const ::io::deephaven::proto::backplane::script::grpc::GetSignatureHelpResponse& _internal_signatures() const; - ::io::deephaven::proto::backplane::script::grpc::GetSignatureHelpResponse* _internal_mutable_signatures(); - - public: - // .io.deephaven.proto.backplane.script.grpc.GetHoverResponse hover = 5; - bool has_hover() const; - private: - bool _internal_has_hover() const; - - public: - void clear_hover() ; - const ::io::deephaven::proto::backplane::script::grpc::GetHoverResponse& hover() const; - PROTOBUF_NODISCARD ::io::deephaven::proto::backplane::script::grpc::GetHoverResponse* release_hover(); - ::io::deephaven::proto::backplane::script::grpc::GetHoverResponse* mutable_hover(); - void set_allocated_hover(::io::deephaven::proto::backplane::script::grpc::GetHoverResponse* value); - void unsafe_arena_set_allocated_hover(::io::deephaven::proto::backplane::script::grpc::GetHoverResponse* value); - ::io::deephaven::proto::backplane::script::grpc::GetHoverResponse* unsafe_arena_release_hover(); - - private: - const ::io::deephaven::proto::backplane::script::grpc::GetHoverResponse& _internal_hover() const; - ::io::deephaven::proto::backplane::script::grpc::GetHoverResponse* _internal_mutable_hover(); - - public: - // .io.deephaven.proto.backplane.script.grpc.GetPullDiagnosticResponse diagnostic = 6; - bool has_diagnostic() const; - private: - bool _internal_has_diagnostic() const; - - public: - void clear_diagnostic() ; - const ::io::deephaven::proto::backplane::script::grpc::GetPullDiagnosticResponse& diagnostic() const; - PROTOBUF_NODISCARD ::io::deephaven::proto::backplane::script::grpc::GetPullDiagnosticResponse* release_diagnostic(); - ::io::deephaven::proto::backplane::script::grpc::GetPullDiagnosticResponse* mutable_diagnostic(); - void set_allocated_diagnostic(::io::deephaven::proto::backplane::script::grpc::GetPullDiagnosticResponse* value); - void unsafe_arena_set_allocated_diagnostic(::io::deephaven::proto::backplane::script::grpc::GetPullDiagnosticResponse* value); - ::io::deephaven::proto::backplane::script::grpc::GetPullDiagnosticResponse* unsafe_arena_release_diagnostic(); - - private: - const ::io::deephaven::proto::backplane::script::grpc::GetPullDiagnosticResponse& _internal_diagnostic() const; - ::io::deephaven::proto::backplane::script::grpc::GetPullDiagnosticResponse* _internal_mutable_diagnostic(); - - public: - // .io.deephaven.proto.backplane.script.grpc.GetPublishDiagnosticResponse diagnostic_publish = 7; - bool has_diagnostic_publish() const; - private: - bool _internal_has_diagnostic_publish() const; - - public: - void clear_diagnostic_publish() ; - const ::io::deephaven::proto::backplane::script::grpc::GetPublishDiagnosticResponse& diagnostic_publish() const; - PROTOBUF_NODISCARD ::io::deephaven::proto::backplane::script::grpc::GetPublishDiagnosticResponse* release_diagnostic_publish(); - ::io::deephaven::proto::backplane::script::grpc::GetPublishDiagnosticResponse* mutable_diagnostic_publish(); - void set_allocated_diagnostic_publish(::io::deephaven::proto::backplane::script::grpc::GetPublishDiagnosticResponse* value); - void unsafe_arena_set_allocated_diagnostic_publish(::io::deephaven::proto::backplane::script::grpc::GetPublishDiagnosticResponse* value); - ::io::deephaven::proto::backplane::script::grpc::GetPublishDiagnosticResponse* unsafe_arena_release_diagnostic_publish(); - - private: - const ::io::deephaven::proto::backplane::script::grpc::GetPublishDiagnosticResponse& _internal_diagnostic_publish() const; - ::io::deephaven::proto::backplane::script::grpc::GetPublishDiagnosticResponse* _internal_mutable_diagnostic_publish(); - - public: - void clear_response(); - ResponseCase response_case() const; - // @@protoc_insertion_point(class_scope:io.deephaven.proto.backplane.script.grpc.AutoCompleteResponse) - private: - class _Internal; - void set_has_completion_items(); - void set_has_signatures(); - 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 - 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 AutoCompleteResponse& from_msg); - ::int32_t request_id_; - bool success_; - union ResponseUnion { - constexpr ResponseUnion() : _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_; - ::io::deephaven::proto::backplane::script::grpc::GetPullDiagnosticResponse* diagnostic_; - ::io::deephaven::proto::backplane::script::grpc::GetPublishDiagnosticResponse* diagnostic_publish_; - } 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) */ { - public: - inline AutoCompleteRequest() : AutoCompleteRequest(nullptr) {} - ~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; - } - inline AutoCompleteRequest& operator=(AutoCompleteRequest&& 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 AutoCompleteRequest& default_instance() { - return *internal_default_instance(); - } - enum RequestCase { - kOpenDocument = 1, - kChangeDocument = 2, - kGetCompletionItems = 3, - kGetSignatureHelp = 7, - kGetHover = 8, - kGetDiagnostic = 9, - 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); } - 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 - if (GetArena() == other->GetArena()) { -#endif // !PROTOBUF_FORCE_COPY_IN_SWAP - InternalSwap(other); - } else { - ::google::protobuf::internal::GenericSwap(this, other); - } - } - void UnsafeArenaSwap(AutoCompleteRequest* other) { - if (other == this) return; - ABSL_DCHECK(GetArena() == other->GetArena()); - InternalSwap(other); - } - - // implements Message ---------------------------------------------- - - 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); } - - private: - static void MergeImpl( - ::google::protobuf::MessageLite& to_msg, - const ::google::protobuf::MessageLite& from_msg); - - 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; - #endif // PROTOBUF_CUSTOM_VTABLE - int GetCachedSize() const { return _impl_._cached_size_.Get(); } - - private: - void SharedCtor(::google::protobuf::Arena* arena); - void SharedDtor(); - void InternalSwap(AutoCompleteRequest* other); - private: - friend class ::google::protobuf::internal::AnyMetadata; - 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); - 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, - kOpenDocumentFieldNumber = 1, - kChangeDocumentFieldNumber = 2, - kGetCompletionItemsFieldNumber = 3, - kGetSignatureHelpFieldNumber = 7, - kGetHoverFieldNumber = 8, - kGetDiagnosticFieldNumber = 9, - kCloseDocumentFieldNumber = 4, - }; - // .io.deephaven.proto.backplane.grpc.Ticket console_id = 5; - bool has_console_id() const; - void clear_console_id() ; - const ::io::deephaven::proto::backplane::grpc::Ticket& console_id() const; - PROTOBUF_NODISCARD ::io::deephaven::proto::backplane::grpc::Ticket* release_console_id(); - ::io::deephaven::proto::backplane::grpc::Ticket* mutable_console_id(); - void set_allocated_console_id(::io::deephaven::proto::backplane::grpc::Ticket* value); - void unsafe_arena_set_allocated_console_id(::io::deephaven::proto::backplane::grpc::Ticket* value); - ::io::deephaven::proto::backplane::grpc::Ticket* unsafe_arena_release_console_id(); - - private: - const ::io::deephaven::proto::backplane::grpc::Ticket& _internal_console_id() const; - ::io::deephaven::proto::backplane::grpc::Ticket* _internal_mutable_console_id(); - - public: - // int32 request_id = 6; - void clear_request_id() ; - ::int32_t request_id() const; - void set_request_id(::int32_t value); - - private: - ::int32_t _internal_request_id() const; - void _internal_set_request_id(::int32_t value); - - public: - // .io.deephaven.proto.backplane.script.grpc.OpenDocumentRequest open_document = 1; - bool has_open_document() const; - private: - bool _internal_has_open_document() const; - - public: - void clear_open_document() ; - const ::io::deephaven::proto::backplane::script::grpc::OpenDocumentRequest& open_document() const; - PROTOBUF_NODISCARD ::io::deephaven::proto::backplane::script::grpc::OpenDocumentRequest* release_open_document(); - ::io::deephaven::proto::backplane::script::grpc::OpenDocumentRequest* mutable_open_document(); - void set_allocated_open_document(::io::deephaven::proto::backplane::script::grpc::OpenDocumentRequest* value); - void unsafe_arena_set_allocated_open_document(::io::deephaven::proto::backplane::script::grpc::OpenDocumentRequest* value); - ::io::deephaven::proto::backplane::script::grpc::OpenDocumentRequest* unsafe_arena_release_open_document(); - - private: - const ::io::deephaven::proto::backplane::script::grpc::OpenDocumentRequest& _internal_open_document() const; - ::io::deephaven::proto::backplane::script::grpc::OpenDocumentRequest* _internal_mutable_open_document(); - - public: - // .io.deephaven.proto.backplane.script.grpc.ChangeDocumentRequest change_document = 2; - bool has_change_document() const; - private: - bool _internal_has_change_document() const; - - public: - void clear_change_document() ; - const ::io::deephaven::proto::backplane::script::grpc::ChangeDocumentRequest& change_document() const; - PROTOBUF_NODISCARD ::io::deephaven::proto::backplane::script::grpc::ChangeDocumentRequest* release_change_document(); - ::io::deephaven::proto::backplane::script::grpc::ChangeDocumentRequest* mutable_change_document(); - void set_allocated_change_document(::io::deephaven::proto::backplane::script::grpc::ChangeDocumentRequest* value); - void unsafe_arena_set_allocated_change_document(::io::deephaven::proto::backplane::script::grpc::ChangeDocumentRequest* value); - ::io::deephaven::proto::backplane::script::grpc::ChangeDocumentRequest* unsafe_arena_release_change_document(); - - private: - const ::io::deephaven::proto::backplane::script::grpc::ChangeDocumentRequest& _internal_change_document() const; - ::io::deephaven::proto::backplane::script::grpc::ChangeDocumentRequest* _internal_mutable_change_document(); - - public: - // .io.deephaven.proto.backplane.script.grpc.GetCompletionItemsRequest get_completion_items = 3; - bool has_get_completion_items() const; - private: - bool _internal_has_get_completion_items() const; - - public: - void clear_get_completion_items() ; - const ::io::deephaven::proto::backplane::script::grpc::GetCompletionItemsRequest& get_completion_items() const; - PROTOBUF_NODISCARD ::io::deephaven::proto::backplane::script::grpc::GetCompletionItemsRequest* release_get_completion_items(); - ::io::deephaven::proto::backplane::script::grpc::GetCompletionItemsRequest* mutable_get_completion_items(); - void set_allocated_get_completion_items(::io::deephaven::proto::backplane::script::grpc::GetCompletionItemsRequest* value); - void unsafe_arena_set_allocated_get_completion_items(::io::deephaven::proto::backplane::script::grpc::GetCompletionItemsRequest* value); - ::io::deephaven::proto::backplane::script::grpc::GetCompletionItemsRequest* unsafe_arena_release_get_completion_items(); - - private: - const ::io::deephaven::proto::backplane::script::grpc::GetCompletionItemsRequest& _internal_get_completion_items() const; - ::io::deephaven::proto::backplane::script::grpc::GetCompletionItemsRequest* _internal_mutable_get_completion_items(); - - public: - // .io.deephaven.proto.backplane.script.grpc.GetSignatureHelpRequest get_signature_help = 7; - bool has_get_signature_help() const; - private: - bool _internal_has_get_signature_help() const; - - public: - void clear_get_signature_help() ; - const ::io::deephaven::proto::backplane::script::grpc::GetSignatureHelpRequest& get_signature_help() const; - PROTOBUF_NODISCARD ::io::deephaven::proto::backplane::script::grpc::GetSignatureHelpRequest* release_get_signature_help(); - ::io::deephaven::proto::backplane::script::grpc::GetSignatureHelpRequest* mutable_get_signature_help(); - void set_allocated_get_signature_help(::io::deephaven::proto::backplane::script::grpc::GetSignatureHelpRequest* value); - void unsafe_arena_set_allocated_get_signature_help(::io::deephaven::proto::backplane::script::grpc::GetSignatureHelpRequest* value); - ::io::deephaven::proto::backplane::script::grpc::GetSignatureHelpRequest* unsafe_arena_release_get_signature_help(); - - private: - const ::io::deephaven::proto::backplane::script::grpc::GetSignatureHelpRequest& _internal_get_signature_help() const; - ::io::deephaven::proto::backplane::script::grpc::GetSignatureHelpRequest* _internal_mutable_get_signature_help(); - - public: - // .io.deephaven.proto.backplane.script.grpc.GetHoverRequest get_hover = 8; - bool has_get_hover() const; - private: - bool _internal_has_get_hover() const; - - public: - void clear_get_hover() ; - const ::io::deephaven::proto::backplane::script::grpc::GetHoverRequest& get_hover() const; - PROTOBUF_NODISCARD ::io::deephaven::proto::backplane::script::grpc::GetHoverRequest* release_get_hover(); - ::io::deephaven::proto::backplane::script::grpc::GetHoverRequest* mutable_get_hover(); - void set_allocated_get_hover(::io::deephaven::proto::backplane::script::grpc::GetHoverRequest* value); - void unsafe_arena_set_allocated_get_hover(::io::deephaven::proto::backplane::script::grpc::GetHoverRequest* value); - ::io::deephaven::proto::backplane::script::grpc::GetHoverRequest* unsafe_arena_release_get_hover(); - - private: - const ::io::deephaven::proto::backplane::script::grpc::GetHoverRequest& _internal_get_hover() const; - ::io::deephaven::proto::backplane::script::grpc::GetHoverRequest* _internal_mutable_get_hover(); - - public: - // .io.deephaven.proto.backplane.script.grpc.GetDiagnosticRequest get_diagnostic = 9; - bool has_get_diagnostic() const; - private: - bool _internal_has_get_diagnostic() const; - - public: - void clear_get_diagnostic() ; - const ::io::deephaven::proto::backplane::script::grpc::GetDiagnosticRequest& get_diagnostic() const; - PROTOBUF_NODISCARD ::io::deephaven::proto::backplane::script::grpc::GetDiagnosticRequest* release_get_diagnostic(); - ::io::deephaven::proto::backplane::script::grpc::GetDiagnosticRequest* mutable_get_diagnostic(); - void set_allocated_get_diagnostic(::io::deephaven::proto::backplane::script::grpc::GetDiagnosticRequest* value); - void unsafe_arena_set_allocated_get_diagnostic(::io::deephaven::proto::backplane::script::grpc::GetDiagnosticRequest* value); - ::io::deephaven::proto::backplane::script::grpc::GetDiagnosticRequest* unsafe_arena_release_get_diagnostic(); - - private: - const ::io::deephaven::proto::backplane::script::grpc::GetDiagnosticRequest& _internal_get_diagnostic() const; - ::io::deephaven::proto::backplane::script::grpc::GetDiagnosticRequest* _internal_mutable_get_diagnostic(); - - public: - // .io.deephaven.proto.backplane.script.grpc.CloseDocumentRequest close_document = 4; - bool has_close_document() const; - private: - bool _internal_has_close_document() const; - - public: - void clear_close_document() ; - const ::io::deephaven::proto::backplane::script::grpc::CloseDocumentRequest& close_document() const; - PROTOBUF_NODISCARD ::io::deephaven::proto::backplane::script::grpc::CloseDocumentRequest* release_close_document(); - ::io::deephaven::proto::backplane::script::grpc::CloseDocumentRequest* mutable_close_document(); - void set_allocated_close_document(::io::deephaven::proto::backplane::script::grpc::CloseDocumentRequest* value); - void unsafe_arena_set_allocated_close_document(::io::deephaven::proto::backplane::script::grpc::CloseDocumentRequest* value); - ::io::deephaven::proto::backplane::script::grpc::CloseDocumentRequest* unsafe_arena_release_close_document(); - - private: - const ::io::deephaven::proto::backplane::script::grpc::CloseDocumentRequest& _internal_close_document() const; - ::io::deephaven::proto::backplane::script::grpc::CloseDocumentRequest* _internal_mutable_close_document(); - - public: - void clear_request(); - RequestCase request_case() const; - // @@protoc_insertion_point(class_scope:io.deephaven.proto.backplane.script.grpc.AutoCompleteRequest) - private: - class _Internal; - void set_has_open_document(); - void set_has_change_document(); - void set_has_get_completion_items(); - void set_has_get_signature_help(); - 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 - 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 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_; - ::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_; - ::io::deephaven::proto::backplane::script::grpc::GetSignatureHelpRequest* get_signature_help_; - ::io::deephaven::proto::backplane::script::grpc::GetHoverRequest* get_hover_; - ::io::deephaven::proto::backplane::script::grpc::GetDiagnosticRequest* get_diagnostic_; - ::io::deephaven::proto::backplane::script::grpc::CloseDocumentRequest* close_document_; - } request_; - ::uint32_t _oneof_case_[1]; - PROTOBUF_TSAN_DECLARE_MEMBER - }; - union { Impl_ _impl_; }; - friend struct ::TableStruct_deephaven_2fproto_2fconsole_2eproto; -}; - -// =================================================================== - - - - -// =================================================================== - - -#ifdef __GNUC__ -#pragma GCC diagnostic push -#pragma GCC diagnostic ignored "-Wstrict-aliasing" -#endif // __GNUC__ -// ------------------------------------------------------------------- - -// GetConsoleTypesRequest - -// ------------------------------------------------------------------- - -// GetConsoleTypesResponse - -// repeated string console_types = 1; -inline int GetConsoleTypesResponse::_internal_console_types_size() const { - return _internal_console_types().size(); -} -inline int GetConsoleTypesResponse::console_types_size() const { - return _internal_console_types_size(); -} -inline void GetConsoleTypesResponse::clear_console_types() { - ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.console_types_.Clear(); -} -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; -} -inline const std::string& GetConsoleTypesResponse::console_types(int index) const - ABSL_ATTRIBUTE_LIFETIME_BOUND { - // @@protoc_insertion_point(field_get:io.deephaven.proto.backplane.script.grpc.GetConsoleTypesResponse.console_types) - return _internal_console_types().Get(index); -} -inline std::string* GetConsoleTypesResponse::mutable_console_types(int index) - ABSL_ATTRIBUTE_LIFETIME_BOUND { - // @@protoc_insertion_point(field_mutable:io.deephaven.proto.backplane.script.grpc.GetConsoleTypesResponse.console_types) - return _internal_mutable_console_types()->Mutable(index); -} -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) -} -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 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) - return _internal_console_types(); -} -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) - ::google::protobuf::internal::TSanWrite(&_impl_); - return _internal_mutable_console_types(); -} -inline const ::google::protobuf::RepeatedPtrField& -GetConsoleTypesResponse::_internal_console_types() const { - ::google::protobuf::internal::TSanRead(&_impl_); - return _impl_.console_types_; -} -inline ::google::protobuf::RepeatedPtrField* -GetConsoleTypesResponse::_internal_mutable_console_types() { - ::google::protobuf::internal::TSanRead(&_impl_); - return &_impl_.console_types_; -} - -// ------------------------------------------------------------------- - -// StartConsoleRequest - -// .io.deephaven.proto.backplane.grpc.Ticket result_id = 1; -inline bool StartConsoleRequest::has_result_id() const { - bool value = (_impl_._has_bits_[0] & 0x00000001u) != 0; - PROTOBUF_ASSUME(!value || _impl_.result_id_ != nullptr); - return value; -} -inline const ::io::deephaven::proto::backplane::grpc::Ticket& StartConsoleRequest::_internal_result_id() const { - ::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_); -} -inline const ::io::deephaven::proto::backplane::grpc::Ticket& StartConsoleRequest::result_id() const ABSL_ATTRIBUTE_LIFETIME_BOUND { - // @@protoc_insertion_point(field_get:io.deephaven.proto.backplane.script.grpc.StartConsoleRequest.result_id) - return _internal_result_id(); -} -inline void StartConsoleRequest::unsafe_arena_set_allocated_result_id(::io::deephaven::proto::backplane::grpc::Ticket* value) { - ::google::protobuf::internal::TSanWrite(&_impl_); - if (GetArena() == nullptr) { - delete reinterpret_cast<::google::protobuf::MessageLite*>(_impl_.result_id_); - } - _impl_.result_id_ = reinterpret_cast<::io::deephaven::proto::backplane::grpc::Ticket*>(value); - if (value != nullptr) { - _impl_._has_bits_[0] |= 0x00000001u; - } else { - _impl_._has_bits_[0] &= ~0x00000001u; - } - // @@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() { - ::google::protobuf::internal::TSanWrite(&_impl_); - - _impl_._has_bits_[0] &= ~0x00000001u; - ::io::deephaven::proto::backplane::grpc::Ticket* released = _impl_.result_id_; - _impl_.result_id_ = nullptr; -#ifdef PROTOBUF_FORCE_COPY_IN_RELEASE - auto* old = reinterpret_cast<::google::protobuf::MessageLite*>(released); - released = ::google::protobuf::internal::DuplicateIfNonNull(released); - if (GetArena() == nullptr) { - delete old; - } -#else // PROTOBUF_FORCE_COPY_IN_RELEASE - if (GetArena() != nullptr) { - released = ::google::protobuf::internal::DuplicateIfNonNull(released); - } -#endif // !PROTOBUF_FORCE_COPY_IN_RELEASE - return released; -} -inline ::io::deephaven::proto::backplane::grpc::Ticket* StartConsoleRequest::unsafe_arena_release_result_id() { - ::google::protobuf::internal::TSanWrite(&_impl_); - // @@protoc_insertion_point(field_release:io.deephaven.proto.backplane.script.grpc.StartConsoleRequest.result_id) - - _impl_._has_bits_[0] &= ~0x00000001u; - ::io::deephaven::proto::backplane::grpc::Ticket* temp = _impl_.result_id_; - _impl_.result_id_ = nullptr; - return temp; -} -inline ::io::deephaven::proto::backplane::grpc::Ticket* StartConsoleRequest::_internal_mutable_result_id() { - ::google::protobuf::internal::TSanWrite(&_impl_); - if (_impl_.result_id_ == nullptr) { - 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(); - ::google::protobuf::internal::TSanWrite(&_impl_); - if (message_arena == nullptr) { - delete reinterpret_cast<::google::protobuf::MessageLite*>(_impl_.result_id_); - } - - if (value != nullptr) { - ::google::protobuf::Arena* submessage_arena = reinterpret_cast<::google::protobuf::MessageLite*>(value)->GetArena(); - if (message_arena != submessage_arena) { - value = ::google::protobuf::internal::GetOwnedMessage(message_arena, value, submessage_arena); - } - _impl_._has_bits_[0] |= 0x00000001u; - } else { - _impl_._has_bits_[0] &= ~0x00000001u; - } - - _impl_.result_id_ = reinterpret_cast<::io::deephaven::proto::backplane::grpc::Ticket*>(value); - // @@protoc_insertion_point(field_set_allocated:io.deephaven.proto.backplane.script.grpc.StartConsoleRequest.result_id) -} - -// string session_type = 2; -inline void StartConsoleRequest::clear_session_type() { - ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.session_type_.ClearToEmpty(); -} -inline const std::string& StartConsoleRequest::session_type() const - ABSL_ATTRIBUTE_LIFETIME_BOUND { - // @@protoc_insertion_point(field_get:io.deephaven.proto.backplane.script.grpc.StartConsoleRequest.session_type) - return _internal_session_type(); -} -template -inline PROTOBUF_ALWAYS_INLINE void StartConsoleRequest::set_session_type(Arg_&& arg, - Args_... args) { - ::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) -} -inline std::string* StartConsoleRequest::mutable_session_type() ABSL_ATTRIBUTE_LIFETIME_BOUND { - std::string* _s = _internal_mutable_session_type(); - // @@protoc_insertion_point(field_mutable:io.deephaven.proto.backplane.script.grpc.StartConsoleRequest.session_type) - return _s; -} -inline const std::string& StartConsoleRequest::_internal_session_type() const { - ::google::protobuf::internal::TSanRead(&_impl_); - return _impl_.session_type_.Get(); -} -inline void StartConsoleRequest::_internal_set_session_type(const std::string& value) { - ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.session_type_.Set(value, GetArena()); -} -inline std::string* StartConsoleRequest::_internal_mutable_session_type() { - ::google::protobuf::internal::TSanWrite(&_impl_); - return _impl_.session_type_.Mutable( GetArena()); -} -inline std::string* StartConsoleRequest::release_session_type() { - ::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) { - ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.session_type_.SetAllocated(value, GetArena()); - #ifdef PROTOBUF_FORCE_COPY_DEFAULT_STRING - if (_impl_.session_type_.IsDefault()) { - _impl_.session_type_.Set("", GetArena()); - } - #endif // PROTOBUF_FORCE_COPY_DEFAULT_STRING - // @@protoc_insertion_point(field_set_allocated:io.deephaven.proto.backplane.script.grpc.StartConsoleRequest.session_type) -} - -// ------------------------------------------------------------------- - -// StartConsoleResponse - -// .io.deephaven.proto.backplane.grpc.Ticket result_id = 1; -inline bool StartConsoleResponse::has_result_id() const { - bool value = (_impl_._has_bits_[0] & 0x00000001u) != 0; - PROTOBUF_ASSUME(!value || _impl_.result_id_ != nullptr); - return value; -} -inline const ::io::deephaven::proto::backplane::grpc::Ticket& StartConsoleResponse::_internal_result_id() const { - ::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_); -} -inline const ::io::deephaven::proto::backplane::grpc::Ticket& StartConsoleResponse::result_id() const ABSL_ATTRIBUTE_LIFETIME_BOUND { - // @@protoc_insertion_point(field_get:io.deephaven.proto.backplane.script.grpc.StartConsoleResponse.result_id) - return _internal_result_id(); -} -inline void StartConsoleResponse::unsafe_arena_set_allocated_result_id(::io::deephaven::proto::backplane::grpc::Ticket* value) { - ::google::protobuf::internal::TSanWrite(&_impl_); - if (GetArena() == nullptr) { - delete reinterpret_cast<::google::protobuf::MessageLite*>(_impl_.result_id_); - } - _impl_.result_id_ = reinterpret_cast<::io::deephaven::proto::backplane::grpc::Ticket*>(value); - if (value != nullptr) { - _impl_._has_bits_[0] |= 0x00000001u; - } else { - _impl_._has_bits_[0] &= ~0x00000001u; - } - // @@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() { - ::google::protobuf::internal::TSanWrite(&_impl_); - - _impl_._has_bits_[0] &= ~0x00000001u; - ::io::deephaven::proto::backplane::grpc::Ticket* released = _impl_.result_id_; - _impl_.result_id_ = nullptr; -#ifdef PROTOBUF_FORCE_COPY_IN_RELEASE - auto* old = reinterpret_cast<::google::protobuf::MessageLite*>(released); - released = ::google::protobuf::internal::DuplicateIfNonNull(released); - if (GetArena() == nullptr) { - delete old; - } -#else // PROTOBUF_FORCE_COPY_IN_RELEASE - if (GetArena() != nullptr) { - released = ::google::protobuf::internal::DuplicateIfNonNull(released); - } -#endif // !PROTOBUF_FORCE_COPY_IN_RELEASE - return released; -} -inline ::io::deephaven::proto::backplane::grpc::Ticket* StartConsoleResponse::unsafe_arena_release_result_id() { - ::google::protobuf::internal::TSanWrite(&_impl_); - // @@protoc_insertion_point(field_release:io.deephaven.proto.backplane.script.grpc.StartConsoleResponse.result_id) - - _impl_._has_bits_[0] &= ~0x00000001u; - ::io::deephaven::proto::backplane::grpc::Ticket* temp = _impl_.result_id_; - _impl_.result_id_ = nullptr; - return temp; -} -inline ::io::deephaven::proto::backplane::grpc::Ticket* StartConsoleResponse::_internal_mutable_result_id() { - ::google::protobuf::internal::TSanWrite(&_impl_); - if (_impl_.result_id_ == nullptr) { - 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(); - ::google::protobuf::internal::TSanWrite(&_impl_); - if (message_arena == nullptr) { - delete reinterpret_cast<::google::protobuf::MessageLite*>(_impl_.result_id_); - } - - if (value != nullptr) { - ::google::protobuf::Arena* submessage_arena = reinterpret_cast<::google::protobuf::MessageLite*>(value)->GetArena(); - if (message_arena != submessage_arena) { - value = ::google::protobuf::internal::GetOwnedMessage(message_arena, value, submessage_arena); - } - _impl_._has_bits_[0] |= 0x00000001u; - } else { - _impl_._has_bits_[0] &= ~0x00000001u; - } - - _impl_.result_id_ = reinterpret_cast<::io::deephaven::proto::backplane::grpc::Ticket*>(value); - // @@protoc_insertion_point(field_set_allocated:io.deephaven.proto.backplane.script.grpc.StartConsoleResponse.result_id) -} - -// ------------------------------------------------------------------- - -// GetHeapInfoRequest - -// ------------------------------------------------------------------- - -// GetHeapInfoResponse - -// int64 max_memory = 1 [jstype = JS_STRING]; -inline void GetHeapInfoResponse::clear_max_memory() { - ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.max_memory_ = ::int64_t{0}; -} -inline ::int64_t GetHeapInfoResponse::max_memory() const { - // @@protoc_insertion_point(field_get:io.deephaven.proto.backplane.script.grpc.GetHeapInfoResponse.max_memory) - return _internal_max_memory(); -} -inline void GetHeapInfoResponse::set_max_memory(::int64_t value) { - _internal_set_max_memory(value); - // @@protoc_insertion_point(field_set:io.deephaven.proto.backplane.script.grpc.GetHeapInfoResponse.max_memory) -} -inline ::int64_t GetHeapInfoResponse::_internal_max_memory() const { - ::google::protobuf::internal::TSanRead(&_impl_); - return _impl_.max_memory_; -} -inline void GetHeapInfoResponse::_internal_set_max_memory(::int64_t value) { - ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.max_memory_ = value; -} - -// int64 total_memory = 2 [jstype = JS_STRING]; -inline void GetHeapInfoResponse::clear_total_memory() { - ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.total_memory_ = ::int64_t{0}; -} -inline ::int64_t GetHeapInfoResponse::total_memory() const { - // @@protoc_insertion_point(field_get:io.deephaven.proto.backplane.script.grpc.GetHeapInfoResponse.total_memory) - return _internal_total_memory(); -} -inline void GetHeapInfoResponse::set_total_memory(::int64_t value) { - _internal_set_total_memory(value); - // @@protoc_insertion_point(field_set:io.deephaven.proto.backplane.script.grpc.GetHeapInfoResponse.total_memory) -} -inline ::int64_t GetHeapInfoResponse::_internal_total_memory() const { - ::google::protobuf::internal::TSanRead(&_impl_); - return _impl_.total_memory_; -} -inline void GetHeapInfoResponse::_internal_set_total_memory(::int64_t value) { - ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.total_memory_ = value; -} - -// int64 free_memory = 3 [jstype = JS_STRING]; -inline void GetHeapInfoResponse::clear_free_memory() { - ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.free_memory_ = ::int64_t{0}; -} -inline ::int64_t GetHeapInfoResponse::free_memory() const { - // @@protoc_insertion_point(field_get:io.deephaven.proto.backplane.script.grpc.GetHeapInfoResponse.free_memory) - return _internal_free_memory(); -} -inline void GetHeapInfoResponse::set_free_memory(::int64_t value) { - _internal_set_free_memory(value); - // @@protoc_insertion_point(field_set:io.deephaven.proto.backplane.script.grpc.GetHeapInfoResponse.free_memory) -} -inline ::int64_t GetHeapInfoResponse::_internal_free_memory() const { - ::google::protobuf::internal::TSanRead(&_impl_); - return _impl_.free_memory_; -} -inline void GetHeapInfoResponse::_internal_set_free_memory(::int64_t value) { - ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.free_memory_ = value; -} - -// ------------------------------------------------------------------- - -// LogSubscriptionRequest - -// int64 last_seen_log_timestamp = 1 [jstype = JS_STRING]; -inline void LogSubscriptionRequest::clear_last_seen_log_timestamp() { - ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.last_seen_log_timestamp_ = ::int64_t{0}; -} -inline ::int64_t LogSubscriptionRequest::last_seen_log_timestamp() const { - // @@protoc_insertion_point(field_get:io.deephaven.proto.backplane.script.grpc.LogSubscriptionRequest.last_seen_log_timestamp) - return _internal_last_seen_log_timestamp(); -} -inline void LogSubscriptionRequest::set_last_seen_log_timestamp(::int64_t value) { - _internal_set_last_seen_log_timestamp(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 { - ::google::protobuf::internal::TSanRead(&_impl_); - return _impl_.last_seen_log_timestamp_; -} -inline void LogSubscriptionRequest::_internal_set_last_seen_log_timestamp(::int64_t value) { - ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.last_seen_log_timestamp_ = value; -} - -// repeated string levels = 2; -inline int LogSubscriptionRequest::_internal_levels_size() const { - return _internal_levels().size(); -} -inline int LogSubscriptionRequest::levels_size() const { - return _internal_levels_size(); -} -inline void LogSubscriptionRequest::clear_levels() { - ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.levels_.Clear(); -} -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; -} -inline const std::string& LogSubscriptionRequest::levels(int index) const - ABSL_ATTRIBUTE_LIFETIME_BOUND { - // @@protoc_insertion_point(field_get:io.deephaven.proto.backplane.script.grpc.LogSubscriptionRequest.levels) - return _internal_levels().Get(index); -} -inline std::string* LogSubscriptionRequest::mutable_levels(int index) - ABSL_ATTRIBUTE_LIFETIME_BOUND { - // @@protoc_insertion_point(field_mutable:io.deephaven.proto.backplane.script.grpc.LogSubscriptionRequest.levels) - return _internal_mutable_levels()->Mutable(index); -} -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) -} -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 const ::google::protobuf::RepeatedPtrField& -LogSubscriptionRequest::levels() const ABSL_ATTRIBUTE_LIFETIME_BOUND { - // @@protoc_insertion_point(field_list:io.deephaven.proto.backplane.script.grpc.LogSubscriptionRequest.levels) - return _internal_levels(); -} -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) - ::google::protobuf::internal::TSanWrite(&_impl_); - return _internal_mutable_levels(); -} -inline const ::google::protobuf::RepeatedPtrField& -LogSubscriptionRequest::_internal_levels() const { - ::google::protobuf::internal::TSanRead(&_impl_); - return _impl_.levels_; -} -inline ::google::protobuf::RepeatedPtrField* -LogSubscriptionRequest::_internal_mutable_levels() { - ::google::protobuf::internal::TSanRead(&_impl_); - return &_impl_.levels_; -} - -// ------------------------------------------------------------------- - -// LogSubscriptionData - -// int64 micros = 1 [jstype = JS_STRING]; -inline void LogSubscriptionData::clear_micros() { - ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.micros_ = ::int64_t{0}; -} -inline ::int64_t LogSubscriptionData::micros() const { - // @@protoc_insertion_point(field_get:io.deephaven.proto.backplane.script.grpc.LogSubscriptionData.micros) - return _internal_micros(); -} -inline void LogSubscriptionData::set_micros(::int64_t value) { - _internal_set_micros(value); - // @@protoc_insertion_point(field_set:io.deephaven.proto.backplane.script.grpc.LogSubscriptionData.micros) -} -inline ::int64_t LogSubscriptionData::_internal_micros() const { - ::google::protobuf::internal::TSanRead(&_impl_); - return _impl_.micros_; -} -inline void LogSubscriptionData::_internal_set_micros(::int64_t value) { - ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.micros_ = value; -} - -// string log_level = 2; -inline void LogSubscriptionData::clear_log_level() { - ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.log_level_.ClearToEmpty(); -} -inline const std::string& LogSubscriptionData::log_level() const - ABSL_ATTRIBUTE_LIFETIME_BOUND { - // @@protoc_insertion_point(field_get:io.deephaven.proto.backplane.script.grpc.LogSubscriptionData.log_level) - return _internal_log_level(); -} -template -inline PROTOBUF_ALWAYS_INLINE void LogSubscriptionData::set_log_level(Arg_&& arg, - Args_... args) { - ::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) -} -inline std::string* LogSubscriptionData::mutable_log_level() ABSL_ATTRIBUTE_LIFETIME_BOUND { - std::string* _s = _internal_mutable_log_level(); - // @@protoc_insertion_point(field_mutable:io.deephaven.proto.backplane.script.grpc.LogSubscriptionData.log_level) - return _s; -} -inline const std::string& LogSubscriptionData::_internal_log_level() const { - ::google::protobuf::internal::TSanRead(&_impl_); - return _impl_.log_level_.Get(); -} -inline void LogSubscriptionData::_internal_set_log_level(const std::string& value) { - ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.log_level_.Set(value, GetArena()); -} -inline std::string* LogSubscriptionData::_internal_mutable_log_level() { - ::google::protobuf::internal::TSanWrite(&_impl_); - return _impl_.log_level_.Mutable( GetArena()); -} -inline std::string* LogSubscriptionData::release_log_level() { - ::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) { - ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.log_level_.SetAllocated(value, GetArena()); - #ifdef PROTOBUF_FORCE_COPY_DEFAULT_STRING - if (_impl_.log_level_.IsDefault()) { - _impl_.log_level_.Set("", GetArena()); - } - #endif // PROTOBUF_FORCE_COPY_DEFAULT_STRING - // @@protoc_insertion_point(field_set_allocated:io.deephaven.proto.backplane.script.grpc.LogSubscriptionData.log_level) -} - -// string message = 3; -inline void LogSubscriptionData::clear_message() { - ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.message_.ClearToEmpty(); -} -inline const std::string& LogSubscriptionData::message() const - ABSL_ATTRIBUTE_LIFETIME_BOUND { - // @@protoc_insertion_point(field_get:io.deephaven.proto.backplane.script.grpc.LogSubscriptionData.message) - return _internal_message(); -} -template -inline PROTOBUF_ALWAYS_INLINE void LogSubscriptionData::set_message(Arg_&& arg, - Args_... args) { - ::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) -} -inline std::string* LogSubscriptionData::mutable_message() ABSL_ATTRIBUTE_LIFETIME_BOUND { - std::string* _s = _internal_mutable_message(); - // @@protoc_insertion_point(field_mutable:io.deephaven.proto.backplane.script.grpc.LogSubscriptionData.message) - return _s; -} -inline const std::string& LogSubscriptionData::_internal_message() const { - ::google::protobuf::internal::TSanRead(&_impl_); - return _impl_.message_.Get(); -} -inline void LogSubscriptionData::_internal_set_message(const std::string& value) { - ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.message_.Set(value, GetArena()); -} -inline std::string* LogSubscriptionData::_internal_mutable_message() { - ::google::protobuf::internal::TSanWrite(&_impl_); - return _impl_.message_.Mutable( GetArena()); -} -inline std::string* LogSubscriptionData::release_message() { - ::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) { - ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.message_.SetAllocated(value, GetArena()); - #ifdef PROTOBUF_FORCE_COPY_DEFAULT_STRING - if (_impl_.message_.IsDefault()) { - _impl_.message_.Set("", GetArena()); - } - #endif // PROTOBUF_FORCE_COPY_DEFAULT_STRING - // @@protoc_insertion_point(field_set_allocated:io.deephaven.proto.backplane.script.grpc.LogSubscriptionData.message) -} - -// ------------------------------------------------------------------- - -// ExecuteCommandRequest - -// .io.deephaven.proto.backplane.grpc.Ticket console_id = 1; -inline bool ExecuteCommandRequest::has_console_id() const { - bool value = (_impl_._has_bits_[0] & 0x00000001u) != 0; - PROTOBUF_ASSUME(!value || _impl_.console_id_ != nullptr); - return value; -} -inline const ::io::deephaven::proto::backplane::grpc::Ticket& ExecuteCommandRequest::_internal_console_id() const { - ::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_); -} -inline const ::io::deephaven::proto::backplane::grpc::Ticket& ExecuteCommandRequest::console_id() const ABSL_ATTRIBUTE_LIFETIME_BOUND { - // @@protoc_insertion_point(field_get:io.deephaven.proto.backplane.script.grpc.ExecuteCommandRequest.console_id) - return _internal_console_id(); -} -inline void ExecuteCommandRequest::unsafe_arena_set_allocated_console_id(::io::deephaven::proto::backplane::grpc::Ticket* value) { - ::google::protobuf::internal::TSanWrite(&_impl_); - if (GetArena() == nullptr) { - delete reinterpret_cast<::google::protobuf::MessageLite*>(_impl_.console_id_); - } - _impl_.console_id_ = reinterpret_cast<::io::deephaven::proto::backplane::grpc::Ticket*>(value); - if (value != nullptr) { - _impl_._has_bits_[0] |= 0x00000001u; - } else { - _impl_._has_bits_[0] &= ~0x00000001u; - } - // @@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() { - ::google::protobuf::internal::TSanWrite(&_impl_); - - _impl_._has_bits_[0] &= ~0x00000001u; - ::io::deephaven::proto::backplane::grpc::Ticket* released = _impl_.console_id_; - _impl_.console_id_ = nullptr; -#ifdef PROTOBUF_FORCE_COPY_IN_RELEASE - auto* old = reinterpret_cast<::google::protobuf::MessageLite*>(released); - released = ::google::protobuf::internal::DuplicateIfNonNull(released); - if (GetArena() == nullptr) { - delete old; - } -#else // PROTOBUF_FORCE_COPY_IN_RELEASE - if (GetArena() != nullptr) { - released = ::google::protobuf::internal::DuplicateIfNonNull(released); - } -#endif // !PROTOBUF_FORCE_COPY_IN_RELEASE - return released; -} -inline ::io::deephaven::proto::backplane::grpc::Ticket* ExecuteCommandRequest::unsafe_arena_release_console_id() { - ::google::protobuf::internal::TSanWrite(&_impl_); - // @@protoc_insertion_point(field_release:io.deephaven.proto.backplane.script.grpc.ExecuteCommandRequest.console_id) - - _impl_._has_bits_[0] &= ~0x00000001u; - ::io::deephaven::proto::backplane::grpc::Ticket* temp = _impl_.console_id_; - _impl_.console_id_ = nullptr; - return temp; -} -inline ::io::deephaven::proto::backplane::grpc::Ticket* ExecuteCommandRequest::_internal_mutable_console_id() { - ::google::protobuf::internal::TSanWrite(&_impl_); - if (_impl_.console_id_ == nullptr) { - 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(); - ::google::protobuf::internal::TSanWrite(&_impl_); - if (message_arena == nullptr) { - delete reinterpret_cast<::google::protobuf::MessageLite*>(_impl_.console_id_); - } - - if (value != nullptr) { - ::google::protobuf::Arena* submessage_arena = reinterpret_cast<::google::protobuf::MessageLite*>(value)->GetArena(); - if (message_arena != submessage_arena) { - value = ::google::protobuf::internal::GetOwnedMessage(message_arena, value, submessage_arena); - } - _impl_._has_bits_[0] |= 0x00000001u; - } else { - _impl_._has_bits_[0] &= ~0x00000001u; - } - - _impl_.console_id_ = reinterpret_cast<::io::deephaven::proto::backplane::grpc::Ticket*>(value); - // @@protoc_insertion_point(field_set_allocated:io.deephaven.proto.backplane.script.grpc.ExecuteCommandRequest.console_id) -} - -// string code = 3; -inline void ExecuteCommandRequest::clear_code() { - ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.code_.ClearToEmpty(); -} -inline const std::string& ExecuteCommandRequest::code() const - ABSL_ATTRIBUTE_LIFETIME_BOUND { - // @@protoc_insertion_point(field_get:io.deephaven.proto.backplane.script.grpc.ExecuteCommandRequest.code) - return _internal_code(); -} -template -inline PROTOBUF_ALWAYS_INLINE void ExecuteCommandRequest::set_code(Arg_&& arg, - Args_... args) { - ::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) -} -inline std::string* ExecuteCommandRequest::mutable_code() ABSL_ATTRIBUTE_LIFETIME_BOUND { - std::string* _s = _internal_mutable_code(); - // @@protoc_insertion_point(field_mutable:io.deephaven.proto.backplane.script.grpc.ExecuteCommandRequest.code) - return _s; -} -inline const std::string& ExecuteCommandRequest::_internal_code() const { - ::google::protobuf::internal::TSanRead(&_impl_); - return _impl_.code_.Get(); -} -inline void ExecuteCommandRequest::_internal_set_code(const std::string& value) { - ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.code_.Set(value, GetArena()); -} -inline std::string* ExecuteCommandRequest::_internal_mutable_code() { - ::google::protobuf::internal::TSanWrite(&_impl_); - return _impl_.code_.Mutable( GetArena()); -} -inline std::string* ExecuteCommandRequest::release_code() { - ::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) { - ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.code_.SetAllocated(value, GetArena()); - #ifdef PROTOBUF_FORCE_COPY_DEFAULT_STRING - if (_impl_.code_.IsDefault()) { - _impl_.code_.Set("", GetArena()); - } - #endif // PROTOBUF_FORCE_COPY_DEFAULT_STRING - // @@protoc_insertion_point(field_set_allocated:io.deephaven.proto.backplane.script.grpc.ExecuteCommandRequest.code) -} - -// ------------------------------------------------------------------- - -// ExecuteCommandResponse - -// string error_message = 1; -inline void ExecuteCommandResponse::clear_error_message() { - ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.error_message_.ClearToEmpty(); -} -inline const std::string& ExecuteCommandResponse::error_message() const - ABSL_ATTRIBUTE_LIFETIME_BOUND { - // @@protoc_insertion_point(field_get:io.deephaven.proto.backplane.script.grpc.ExecuteCommandResponse.error_message) - return _internal_error_message(); -} -template -inline PROTOBUF_ALWAYS_INLINE void ExecuteCommandResponse::set_error_message(Arg_&& arg, - Args_... args) { - ::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) -} -inline std::string* ExecuteCommandResponse::mutable_error_message() ABSL_ATTRIBUTE_LIFETIME_BOUND { - std::string* _s = _internal_mutable_error_message(); - // @@protoc_insertion_point(field_mutable:io.deephaven.proto.backplane.script.grpc.ExecuteCommandResponse.error_message) - return _s; -} -inline const std::string& ExecuteCommandResponse::_internal_error_message() const { - ::google::protobuf::internal::TSanRead(&_impl_); - return _impl_.error_message_.Get(); -} -inline void ExecuteCommandResponse::_internal_set_error_message(const std::string& value) { - ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.error_message_.Set(value, GetArena()); -} -inline std::string* ExecuteCommandResponse::_internal_mutable_error_message() { - ::google::protobuf::internal::TSanWrite(&_impl_); - return _impl_.error_message_.Mutable( GetArena()); -} -inline std::string* ExecuteCommandResponse::release_error_message() { - ::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) { - ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.error_message_.SetAllocated(value, GetArena()); - #ifdef PROTOBUF_FORCE_COPY_DEFAULT_STRING - if (_impl_.error_message_.IsDefault()) { - _impl_.error_message_.Set("", GetArena()); - } - #endif // PROTOBUF_FORCE_COPY_DEFAULT_STRING - // @@protoc_insertion_point(field_set_allocated:io.deephaven.proto.backplane.script.grpc.ExecuteCommandResponse.error_message) -} - -// .io.deephaven.proto.backplane.grpc.FieldsChangeUpdate changes = 2; -inline bool ExecuteCommandResponse::has_changes() const { - bool value = (_impl_._has_bits_[0] & 0x00000001u) != 0; - PROTOBUF_ASSUME(!value || _impl_.changes_ != nullptr); - return value; -} -inline const ::io::deephaven::proto::backplane::grpc::FieldsChangeUpdate& ExecuteCommandResponse::_internal_changes() const { - ::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_); -} -inline const ::io::deephaven::proto::backplane::grpc::FieldsChangeUpdate& ExecuteCommandResponse::changes() const ABSL_ATTRIBUTE_LIFETIME_BOUND { - // @@protoc_insertion_point(field_get:io.deephaven.proto.backplane.script.grpc.ExecuteCommandResponse.changes) - return _internal_changes(); -} -inline void ExecuteCommandResponse::unsafe_arena_set_allocated_changes(::io::deephaven::proto::backplane::grpc::FieldsChangeUpdate* value) { - ::google::protobuf::internal::TSanWrite(&_impl_); - if (GetArena() == nullptr) { - delete reinterpret_cast<::google::protobuf::MessageLite*>(_impl_.changes_); - } - _impl_.changes_ = reinterpret_cast<::io::deephaven::proto::backplane::grpc::FieldsChangeUpdate*>(value); - if (value != nullptr) { - _impl_._has_bits_[0] |= 0x00000001u; - } else { - _impl_._has_bits_[0] &= ~0x00000001u; - } - // @@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() { - ::google::protobuf::internal::TSanWrite(&_impl_); - - _impl_._has_bits_[0] &= ~0x00000001u; - ::io::deephaven::proto::backplane::grpc::FieldsChangeUpdate* released = _impl_.changes_; - _impl_.changes_ = nullptr; -#ifdef PROTOBUF_FORCE_COPY_IN_RELEASE - auto* old = reinterpret_cast<::google::protobuf::MessageLite*>(released); - released = ::google::protobuf::internal::DuplicateIfNonNull(released); - if (GetArena() == nullptr) { - delete old; - } -#else // PROTOBUF_FORCE_COPY_IN_RELEASE - if (GetArena() != nullptr) { - released = ::google::protobuf::internal::DuplicateIfNonNull(released); - } -#endif // !PROTOBUF_FORCE_COPY_IN_RELEASE - return released; -} -inline ::io::deephaven::proto::backplane::grpc::FieldsChangeUpdate* ExecuteCommandResponse::unsafe_arena_release_changes() { - ::google::protobuf::internal::TSanWrite(&_impl_); - // @@protoc_insertion_point(field_release:io.deephaven.proto.backplane.script.grpc.ExecuteCommandResponse.changes) - - _impl_._has_bits_[0] &= ~0x00000001u; - ::io::deephaven::proto::backplane::grpc::FieldsChangeUpdate* temp = _impl_.changes_; - _impl_.changes_ = nullptr; - return temp; -} -inline ::io::deephaven::proto::backplane::grpc::FieldsChangeUpdate* ExecuteCommandResponse::_internal_mutable_changes() { - ::google::protobuf::internal::TSanWrite(&_impl_); - if (_impl_.changes_ == nullptr) { - 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(); - ::google::protobuf::internal::TSanWrite(&_impl_); - if (message_arena == nullptr) { - delete reinterpret_cast<::google::protobuf::MessageLite*>(_impl_.changes_); - } - - if (value != nullptr) { - ::google::protobuf::Arena* submessage_arena = reinterpret_cast<::google::protobuf::MessageLite*>(value)->GetArena(); - if (message_arena != submessage_arena) { - value = ::google::protobuf::internal::GetOwnedMessage(message_arena, value, submessage_arena); - } - _impl_._has_bits_[0] |= 0x00000001u; - } else { - _impl_._has_bits_[0] &= ~0x00000001u; - } - - _impl_.changes_ = reinterpret_cast<::io::deephaven::proto::backplane::grpc::FieldsChangeUpdate*>(value); - // @@protoc_insertion_point(field_set_allocated:io.deephaven.proto.backplane.script.grpc.ExecuteCommandResponse.changes) -} - -// ------------------------------------------------------------------- - -// BindTableToVariableRequest - -// .io.deephaven.proto.backplane.grpc.Ticket console_id = 1; -inline bool BindTableToVariableRequest::has_console_id() const { - bool value = (_impl_._has_bits_[0] & 0x00000001u) != 0; - PROTOBUF_ASSUME(!value || _impl_.console_id_ != nullptr); - return value; -} -inline const ::io::deephaven::proto::backplane::grpc::Ticket& BindTableToVariableRequest::_internal_console_id() const { - ::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_); -} -inline const ::io::deephaven::proto::backplane::grpc::Ticket& BindTableToVariableRequest::console_id() const ABSL_ATTRIBUTE_LIFETIME_BOUND { - // @@protoc_insertion_point(field_get:io.deephaven.proto.backplane.script.grpc.BindTableToVariableRequest.console_id) - return _internal_console_id(); -} -inline void BindTableToVariableRequest::unsafe_arena_set_allocated_console_id(::io::deephaven::proto::backplane::grpc::Ticket* value) { - ::google::protobuf::internal::TSanWrite(&_impl_); - if (GetArena() == nullptr) { - delete reinterpret_cast<::google::protobuf::MessageLite*>(_impl_.console_id_); - } - _impl_.console_id_ = reinterpret_cast<::io::deephaven::proto::backplane::grpc::Ticket*>(value); - if (value != nullptr) { - _impl_._has_bits_[0] |= 0x00000001u; - } else { - _impl_._has_bits_[0] &= ~0x00000001u; - } - // @@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() { - ::google::protobuf::internal::TSanWrite(&_impl_); - - _impl_._has_bits_[0] &= ~0x00000001u; - ::io::deephaven::proto::backplane::grpc::Ticket* released = _impl_.console_id_; - _impl_.console_id_ = nullptr; -#ifdef PROTOBUF_FORCE_COPY_IN_RELEASE - auto* old = reinterpret_cast<::google::protobuf::MessageLite*>(released); - released = ::google::protobuf::internal::DuplicateIfNonNull(released); - if (GetArena() == nullptr) { - delete old; - } -#else // PROTOBUF_FORCE_COPY_IN_RELEASE - if (GetArena() != nullptr) { - released = ::google::protobuf::internal::DuplicateIfNonNull(released); - } -#endif // !PROTOBUF_FORCE_COPY_IN_RELEASE - return released; -} -inline ::io::deephaven::proto::backplane::grpc::Ticket* BindTableToVariableRequest::unsafe_arena_release_console_id() { - ::google::protobuf::internal::TSanWrite(&_impl_); - // @@protoc_insertion_point(field_release:io.deephaven.proto.backplane.script.grpc.BindTableToVariableRequest.console_id) - - _impl_._has_bits_[0] &= ~0x00000001u; - ::io::deephaven::proto::backplane::grpc::Ticket* temp = _impl_.console_id_; - _impl_.console_id_ = nullptr; - return temp; -} -inline ::io::deephaven::proto::backplane::grpc::Ticket* BindTableToVariableRequest::_internal_mutable_console_id() { - ::google::protobuf::internal::TSanWrite(&_impl_); - if (_impl_.console_id_ == nullptr) { - 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(); - ::google::protobuf::internal::TSanWrite(&_impl_); - if (message_arena == nullptr) { - delete reinterpret_cast<::google::protobuf::MessageLite*>(_impl_.console_id_); - } - - if (value != nullptr) { - ::google::protobuf::Arena* submessage_arena = reinterpret_cast<::google::protobuf::MessageLite*>(value)->GetArena(); - if (message_arena != submessage_arena) { - value = ::google::protobuf::internal::GetOwnedMessage(message_arena, value, submessage_arena); - } - _impl_._has_bits_[0] |= 0x00000001u; - } else { - _impl_._has_bits_[0] &= ~0x00000001u; - } - - _impl_.console_id_ = reinterpret_cast<::io::deephaven::proto::backplane::grpc::Ticket*>(value); - // @@protoc_insertion_point(field_set_allocated:io.deephaven.proto.backplane.script.grpc.BindTableToVariableRequest.console_id) -} - -// string variable_name = 3; -inline void BindTableToVariableRequest::clear_variable_name() { - ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.variable_name_.ClearToEmpty(); -} -inline const std::string& BindTableToVariableRequest::variable_name() const - ABSL_ATTRIBUTE_LIFETIME_BOUND { - // @@protoc_insertion_point(field_get:io.deephaven.proto.backplane.script.grpc.BindTableToVariableRequest.variable_name) - return _internal_variable_name(); -} -template -inline PROTOBUF_ALWAYS_INLINE void BindTableToVariableRequest::set_variable_name(Arg_&& arg, - Args_... args) { - ::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) -} -inline std::string* BindTableToVariableRequest::mutable_variable_name() ABSL_ATTRIBUTE_LIFETIME_BOUND { - std::string* _s = _internal_mutable_variable_name(); - // @@protoc_insertion_point(field_mutable:io.deephaven.proto.backplane.script.grpc.BindTableToVariableRequest.variable_name) - return _s; -} -inline const std::string& BindTableToVariableRequest::_internal_variable_name() const { - ::google::protobuf::internal::TSanRead(&_impl_); - return _impl_.variable_name_.Get(); -} -inline void BindTableToVariableRequest::_internal_set_variable_name(const std::string& value) { - ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.variable_name_.Set(value, GetArena()); -} -inline std::string* BindTableToVariableRequest::_internal_mutable_variable_name() { - ::google::protobuf::internal::TSanWrite(&_impl_); - return _impl_.variable_name_.Mutable( GetArena()); -} -inline std::string* BindTableToVariableRequest::release_variable_name() { - ::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) { - ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.variable_name_.SetAllocated(value, GetArena()); - #ifdef PROTOBUF_FORCE_COPY_DEFAULT_STRING - if (_impl_.variable_name_.IsDefault()) { - _impl_.variable_name_.Set("", GetArena()); - } - #endif // PROTOBUF_FORCE_COPY_DEFAULT_STRING - // @@protoc_insertion_point(field_set_allocated:io.deephaven.proto.backplane.script.grpc.BindTableToVariableRequest.variable_name) -} - -// .io.deephaven.proto.backplane.grpc.Ticket table_id = 4; -inline bool BindTableToVariableRequest::has_table_id() const { - bool value = (_impl_._has_bits_[0] & 0x00000002u) != 0; - PROTOBUF_ASSUME(!value || _impl_.table_id_ != nullptr); - return value; -} -inline const ::io::deephaven::proto::backplane::grpc::Ticket& BindTableToVariableRequest::_internal_table_id() const { - ::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_); -} -inline const ::io::deephaven::proto::backplane::grpc::Ticket& BindTableToVariableRequest::table_id() const ABSL_ATTRIBUTE_LIFETIME_BOUND { - // @@protoc_insertion_point(field_get:io.deephaven.proto.backplane.script.grpc.BindTableToVariableRequest.table_id) - return _internal_table_id(); -} -inline void BindTableToVariableRequest::unsafe_arena_set_allocated_table_id(::io::deephaven::proto::backplane::grpc::Ticket* value) { - ::google::protobuf::internal::TSanWrite(&_impl_); - if (GetArena() == nullptr) { - delete reinterpret_cast<::google::protobuf::MessageLite*>(_impl_.table_id_); - } - _impl_.table_id_ = reinterpret_cast<::io::deephaven::proto::backplane::grpc::Ticket*>(value); - if (value != nullptr) { - _impl_._has_bits_[0] |= 0x00000002u; - } else { - _impl_._has_bits_[0] &= ~0x00000002u; - } - // @@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() { - ::google::protobuf::internal::TSanWrite(&_impl_); - - _impl_._has_bits_[0] &= ~0x00000002u; - ::io::deephaven::proto::backplane::grpc::Ticket* released = _impl_.table_id_; - _impl_.table_id_ = nullptr; -#ifdef PROTOBUF_FORCE_COPY_IN_RELEASE - auto* old = reinterpret_cast<::google::protobuf::MessageLite*>(released); - released = ::google::protobuf::internal::DuplicateIfNonNull(released); - if (GetArena() == nullptr) { - delete old; - } -#else // PROTOBUF_FORCE_COPY_IN_RELEASE - if (GetArena() != nullptr) { - released = ::google::protobuf::internal::DuplicateIfNonNull(released); - } -#endif // !PROTOBUF_FORCE_COPY_IN_RELEASE - return released; -} -inline ::io::deephaven::proto::backplane::grpc::Ticket* BindTableToVariableRequest::unsafe_arena_release_table_id() { - ::google::protobuf::internal::TSanWrite(&_impl_); - // @@protoc_insertion_point(field_release:io.deephaven.proto.backplane.script.grpc.BindTableToVariableRequest.table_id) - - _impl_._has_bits_[0] &= ~0x00000002u; - ::io::deephaven::proto::backplane::grpc::Ticket* temp = _impl_.table_id_; - _impl_.table_id_ = nullptr; - return temp; -} -inline ::io::deephaven::proto::backplane::grpc::Ticket* BindTableToVariableRequest::_internal_mutable_table_id() { - ::google::protobuf::internal::TSanWrite(&_impl_); - if (_impl_.table_id_ == nullptr) { - 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(); - ::google::protobuf::internal::TSanWrite(&_impl_); - if (message_arena == nullptr) { - delete reinterpret_cast<::google::protobuf::MessageLite*>(_impl_.table_id_); - } - - if (value != nullptr) { - ::google::protobuf::Arena* submessage_arena = reinterpret_cast<::google::protobuf::MessageLite*>(value)->GetArena(); - if (message_arena != submessage_arena) { - value = ::google::protobuf::internal::GetOwnedMessage(message_arena, value, submessage_arena); - } - _impl_._has_bits_[0] |= 0x00000002u; - } else { - _impl_._has_bits_[0] &= ~0x00000002u; - } - - _impl_.table_id_ = reinterpret_cast<::io::deephaven::proto::backplane::grpc::Ticket*>(value); - // @@protoc_insertion_point(field_set_allocated:io.deephaven.proto.backplane.script.grpc.BindTableToVariableRequest.table_id) -} - -// ------------------------------------------------------------------- - -// BindTableToVariableResponse - -// ------------------------------------------------------------------- - -// CancelCommandRequest - -// .io.deephaven.proto.backplane.grpc.Ticket console_id = 1; -inline bool CancelCommandRequest::has_console_id() const { - bool value = (_impl_._has_bits_[0] & 0x00000001u) != 0; - PROTOBUF_ASSUME(!value || _impl_.console_id_ != nullptr); - return value; -} -inline const ::io::deephaven::proto::backplane::grpc::Ticket& CancelCommandRequest::_internal_console_id() const { - ::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_); -} -inline const ::io::deephaven::proto::backplane::grpc::Ticket& CancelCommandRequest::console_id() const ABSL_ATTRIBUTE_LIFETIME_BOUND { - // @@protoc_insertion_point(field_get:io.deephaven.proto.backplane.script.grpc.CancelCommandRequest.console_id) - return _internal_console_id(); -} -inline void CancelCommandRequest::unsafe_arena_set_allocated_console_id(::io::deephaven::proto::backplane::grpc::Ticket* value) { - ::google::protobuf::internal::TSanWrite(&_impl_); - if (GetArena() == nullptr) { - delete reinterpret_cast<::google::protobuf::MessageLite*>(_impl_.console_id_); - } - _impl_.console_id_ = reinterpret_cast<::io::deephaven::proto::backplane::grpc::Ticket*>(value); - if (value != nullptr) { - _impl_._has_bits_[0] |= 0x00000001u; - } else { - _impl_._has_bits_[0] &= ~0x00000001u; - } - // @@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() { - ::google::protobuf::internal::TSanWrite(&_impl_); - - _impl_._has_bits_[0] &= ~0x00000001u; - ::io::deephaven::proto::backplane::grpc::Ticket* released = _impl_.console_id_; - _impl_.console_id_ = nullptr; -#ifdef PROTOBUF_FORCE_COPY_IN_RELEASE - auto* old = reinterpret_cast<::google::protobuf::MessageLite*>(released); - released = ::google::protobuf::internal::DuplicateIfNonNull(released); - if (GetArena() == nullptr) { - delete old; - } -#else // PROTOBUF_FORCE_COPY_IN_RELEASE - if (GetArena() != nullptr) { - released = ::google::protobuf::internal::DuplicateIfNonNull(released); - } -#endif // !PROTOBUF_FORCE_COPY_IN_RELEASE - return released; -} -inline ::io::deephaven::proto::backplane::grpc::Ticket* CancelCommandRequest::unsafe_arena_release_console_id() { - ::google::protobuf::internal::TSanWrite(&_impl_); - // @@protoc_insertion_point(field_release:io.deephaven.proto.backplane.script.grpc.CancelCommandRequest.console_id) - - _impl_._has_bits_[0] &= ~0x00000001u; - ::io::deephaven::proto::backplane::grpc::Ticket* temp = _impl_.console_id_; - _impl_.console_id_ = nullptr; - return temp; -} -inline ::io::deephaven::proto::backplane::grpc::Ticket* CancelCommandRequest::_internal_mutable_console_id() { - ::google::protobuf::internal::TSanWrite(&_impl_); - if (_impl_.console_id_ == nullptr) { - 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(); - ::google::protobuf::internal::TSanWrite(&_impl_); - if (message_arena == nullptr) { - delete reinterpret_cast<::google::protobuf::MessageLite*>(_impl_.console_id_); - } - - if (value != nullptr) { - ::google::protobuf::Arena* submessage_arena = reinterpret_cast<::google::protobuf::MessageLite*>(value)->GetArena(); - if (message_arena != submessage_arena) { - value = ::google::protobuf::internal::GetOwnedMessage(message_arena, value, submessage_arena); - } - _impl_._has_bits_[0] |= 0x00000001u; - } else { - _impl_._has_bits_[0] &= ~0x00000001u; - } - - _impl_.console_id_ = reinterpret_cast<::io::deephaven::proto::backplane::grpc::Ticket*>(value); - // @@protoc_insertion_point(field_set_allocated:io.deephaven.proto.backplane.script.grpc.CancelCommandRequest.console_id) -} - -// .io.deephaven.proto.backplane.grpc.Ticket command_id = 2; -inline bool CancelCommandRequest::has_command_id() const { - bool value = (_impl_._has_bits_[0] & 0x00000002u) != 0; - PROTOBUF_ASSUME(!value || _impl_.command_id_ != nullptr); - return value; -} -inline const ::io::deephaven::proto::backplane::grpc::Ticket& CancelCommandRequest::_internal_command_id() const { - ::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_); -} -inline const ::io::deephaven::proto::backplane::grpc::Ticket& CancelCommandRequest::command_id() const ABSL_ATTRIBUTE_LIFETIME_BOUND { - // @@protoc_insertion_point(field_get:io.deephaven.proto.backplane.script.grpc.CancelCommandRequest.command_id) - return _internal_command_id(); -} -inline void CancelCommandRequest::unsafe_arena_set_allocated_command_id(::io::deephaven::proto::backplane::grpc::Ticket* value) { - ::google::protobuf::internal::TSanWrite(&_impl_); - if (GetArena() == nullptr) { - delete reinterpret_cast<::google::protobuf::MessageLite*>(_impl_.command_id_); - } - _impl_.command_id_ = reinterpret_cast<::io::deephaven::proto::backplane::grpc::Ticket*>(value); - if (value != nullptr) { - _impl_._has_bits_[0] |= 0x00000002u; - } else { - _impl_._has_bits_[0] &= ~0x00000002u; - } - // @@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() { - ::google::protobuf::internal::TSanWrite(&_impl_); - - _impl_._has_bits_[0] &= ~0x00000002u; - ::io::deephaven::proto::backplane::grpc::Ticket* released = _impl_.command_id_; - _impl_.command_id_ = nullptr; -#ifdef PROTOBUF_FORCE_COPY_IN_RELEASE - auto* old = reinterpret_cast<::google::protobuf::MessageLite*>(released); - released = ::google::protobuf::internal::DuplicateIfNonNull(released); - if (GetArena() == nullptr) { - delete old; - } -#else // PROTOBUF_FORCE_COPY_IN_RELEASE - if (GetArena() != nullptr) { - released = ::google::protobuf::internal::DuplicateIfNonNull(released); - } -#endif // !PROTOBUF_FORCE_COPY_IN_RELEASE - return released; -} -inline ::io::deephaven::proto::backplane::grpc::Ticket* CancelCommandRequest::unsafe_arena_release_command_id() { - ::google::protobuf::internal::TSanWrite(&_impl_); - // @@protoc_insertion_point(field_release:io.deephaven.proto.backplane.script.grpc.CancelCommandRequest.command_id) - - _impl_._has_bits_[0] &= ~0x00000002u; - ::io::deephaven::proto::backplane::grpc::Ticket* temp = _impl_.command_id_; - _impl_.command_id_ = nullptr; - return temp; -} -inline ::io::deephaven::proto::backplane::grpc::Ticket* CancelCommandRequest::_internal_mutable_command_id() { - ::google::protobuf::internal::TSanWrite(&_impl_); - if (_impl_.command_id_ == nullptr) { - 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(); - ::google::protobuf::internal::TSanWrite(&_impl_); - if (message_arena == nullptr) { - delete reinterpret_cast<::google::protobuf::MessageLite*>(_impl_.command_id_); - } - - if (value != nullptr) { - ::google::protobuf::Arena* submessage_arena = reinterpret_cast<::google::protobuf::MessageLite*>(value)->GetArena(); - if (message_arena != submessage_arena) { - value = ::google::protobuf::internal::GetOwnedMessage(message_arena, value, submessage_arena); - } - _impl_._has_bits_[0] |= 0x00000002u; - } else { - _impl_._has_bits_[0] &= ~0x00000002u; - } - - _impl_.command_id_ = reinterpret_cast<::io::deephaven::proto::backplane::grpc::Ticket*>(value); - // @@protoc_insertion_point(field_set_allocated:io.deephaven.proto.backplane.script.grpc.CancelCommandRequest.command_id) -} - -// ------------------------------------------------------------------- - -// CancelCommandResponse - -// ------------------------------------------------------------------- - -// CancelAutoCompleteRequest - -// .io.deephaven.proto.backplane.grpc.Ticket console_id = 1; -inline bool CancelAutoCompleteRequest::has_console_id() const { - bool value = (_impl_._has_bits_[0] & 0x00000001u) != 0; - PROTOBUF_ASSUME(!value || _impl_.console_id_ != nullptr); - return value; -} -inline const ::io::deephaven::proto::backplane::grpc::Ticket& CancelAutoCompleteRequest::_internal_console_id() const { - ::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_); -} -inline const ::io::deephaven::proto::backplane::grpc::Ticket& CancelAutoCompleteRequest::console_id() const ABSL_ATTRIBUTE_LIFETIME_BOUND { - // @@protoc_insertion_point(field_get:io.deephaven.proto.backplane.script.grpc.CancelAutoCompleteRequest.console_id) - return _internal_console_id(); -} -inline void CancelAutoCompleteRequest::unsafe_arena_set_allocated_console_id(::io::deephaven::proto::backplane::grpc::Ticket* value) { - ::google::protobuf::internal::TSanWrite(&_impl_); - if (GetArena() == nullptr) { - delete reinterpret_cast<::google::protobuf::MessageLite*>(_impl_.console_id_); - } - _impl_.console_id_ = reinterpret_cast<::io::deephaven::proto::backplane::grpc::Ticket*>(value); - if (value != nullptr) { - _impl_._has_bits_[0] |= 0x00000001u; - } else { - _impl_._has_bits_[0] &= ~0x00000001u; - } - // @@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() { - ::google::protobuf::internal::TSanWrite(&_impl_); - - _impl_._has_bits_[0] &= ~0x00000001u; - ::io::deephaven::proto::backplane::grpc::Ticket* released = _impl_.console_id_; - _impl_.console_id_ = nullptr; -#ifdef PROTOBUF_FORCE_COPY_IN_RELEASE - auto* old = reinterpret_cast<::google::protobuf::MessageLite*>(released); - released = ::google::protobuf::internal::DuplicateIfNonNull(released); - if (GetArena() == nullptr) { - delete old; - } -#else // PROTOBUF_FORCE_COPY_IN_RELEASE - if (GetArena() != nullptr) { - released = ::google::protobuf::internal::DuplicateIfNonNull(released); - } -#endif // !PROTOBUF_FORCE_COPY_IN_RELEASE - return released; -} -inline ::io::deephaven::proto::backplane::grpc::Ticket* CancelAutoCompleteRequest::unsafe_arena_release_console_id() { - ::google::protobuf::internal::TSanWrite(&_impl_); - // @@protoc_insertion_point(field_release:io.deephaven.proto.backplane.script.grpc.CancelAutoCompleteRequest.console_id) - - _impl_._has_bits_[0] &= ~0x00000001u; - ::io::deephaven::proto::backplane::grpc::Ticket* temp = _impl_.console_id_; - _impl_.console_id_ = nullptr; - return temp; -} -inline ::io::deephaven::proto::backplane::grpc::Ticket* CancelAutoCompleteRequest::_internal_mutable_console_id() { - ::google::protobuf::internal::TSanWrite(&_impl_); - if (_impl_.console_id_ == nullptr) { - 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(); - ::google::protobuf::internal::TSanWrite(&_impl_); - if (message_arena == nullptr) { - delete reinterpret_cast<::google::protobuf::MessageLite*>(_impl_.console_id_); - } - - if (value != nullptr) { - ::google::protobuf::Arena* submessage_arena = reinterpret_cast<::google::protobuf::MessageLite*>(value)->GetArena(); - if (message_arena != submessage_arena) { - value = ::google::protobuf::internal::GetOwnedMessage(message_arena, value, submessage_arena); - } - _impl_._has_bits_[0] |= 0x00000001u; - } else { - _impl_._has_bits_[0] &= ~0x00000001u; - } - - _impl_.console_id_ = reinterpret_cast<::io::deephaven::proto::backplane::grpc::Ticket*>(value); - // @@protoc_insertion_point(field_set_allocated:io.deephaven.proto.backplane.script.grpc.CancelAutoCompleteRequest.console_id) -} - -// int32 request_id = 2; -inline void CancelAutoCompleteRequest::clear_request_id() { - ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.request_id_ = 0; -} -inline ::int32_t CancelAutoCompleteRequest::request_id() const { - // @@protoc_insertion_point(field_get:io.deephaven.proto.backplane.script.grpc.CancelAutoCompleteRequest.request_id) - return _internal_request_id(); -} -inline void CancelAutoCompleteRequest::set_request_id(::int32_t value) { - _internal_set_request_id(value); - // @@protoc_insertion_point(field_set:io.deephaven.proto.backplane.script.grpc.CancelAutoCompleteRequest.request_id) -} -inline ::int32_t CancelAutoCompleteRequest::_internal_request_id() const { - ::google::protobuf::internal::TSanRead(&_impl_); - return _impl_.request_id_; -} -inline void CancelAutoCompleteRequest::_internal_set_request_id(::int32_t value) { - ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.request_id_ = value; -} - -// ------------------------------------------------------------------- - -// CancelAutoCompleteResponse - -// ------------------------------------------------------------------- - -// AutoCompleteRequest - -// .io.deephaven.proto.backplane.grpc.Ticket console_id = 5; -inline bool AutoCompleteRequest::has_console_id() const { - bool value = (_impl_._has_bits_[0] & 0x00000001u) != 0; - PROTOBUF_ASSUME(!value || _impl_.console_id_ != nullptr); - return value; -} -inline const ::io::deephaven::proto::backplane::grpc::Ticket& AutoCompleteRequest::_internal_console_id() const { - ::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_); -} -inline const ::io::deephaven::proto::backplane::grpc::Ticket& AutoCompleteRequest::console_id() const ABSL_ATTRIBUTE_LIFETIME_BOUND { - // @@protoc_insertion_point(field_get:io.deephaven.proto.backplane.script.grpc.AutoCompleteRequest.console_id) - return _internal_console_id(); -} -inline void AutoCompleteRequest::unsafe_arena_set_allocated_console_id(::io::deephaven::proto::backplane::grpc::Ticket* value) { - ::google::protobuf::internal::TSanWrite(&_impl_); - if (GetArena() == nullptr) { - delete reinterpret_cast<::google::protobuf::MessageLite*>(_impl_.console_id_); - } - _impl_.console_id_ = reinterpret_cast<::io::deephaven::proto::backplane::grpc::Ticket*>(value); - if (value != nullptr) { - _impl_._has_bits_[0] |= 0x00000001u; - } else { - _impl_._has_bits_[0] &= ~0x00000001u; - } - // @@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() { - ::google::protobuf::internal::TSanWrite(&_impl_); - - _impl_._has_bits_[0] &= ~0x00000001u; - ::io::deephaven::proto::backplane::grpc::Ticket* released = _impl_.console_id_; - _impl_.console_id_ = nullptr; -#ifdef PROTOBUF_FORCE_COPY_IN_RELEASE - auto* old = reinterpret_cast<::google::protobuf::MessageLite*>(released); - released = ::google::protobuf::internal::DuplicateIfNonNull(released); - if (GetArena() == nullptr) { - delete old; - } -#else // PROTOBUF_FORCE_COPY_IN_RELEASE - if (GetArena() != nullptr) { - released = ::google::protobuf::internal::DuplicateIfNonNull(released); - } -#endif // !PROTOBUF_FORCE_COPY_IN_RELEASE - return released; -} -inline ::io::deephaven::proto::backplane::grpc::Ticket* AutoCompleteRequest::unsafe_arena_release_console_id() { - ::google::protobuf::internal::TSanWrite(&_impl_); - // @@protoc_insertion_point(field_release:io.deephaven.proto.backplane.script.grpc.AutoCompleteRequest.console_id) - - _impl_._has_bits_[0] &= ~0x00000001u; - ::io::deephaven::proto::backplane::grpc::Ticket* temp = _impl_.console_id_; - _impl_.console_id_ = nullptr; - return temp; -} -inline ::io::deephaven::proto::backplane::grpc::Ticket* AutoCompleteRequest::_internal_mutable_console_id() { - ::google::protobuf::internal::TSanWrite(&_impl_); - if (_impl_.console_id_ == nullptr) { - 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(); - ::google::protobuf::internal::TSanWrite(&_impl_); - if (message_arena == nullptr) { - delete reinterpret_cast<::google::protobuf::MessageLite*>(_impl_.console_id_); - } - - if (value != nullptr) { - ::google::protobuf::Arena* submessage_arena = reinterpret_cast<::google::protobuf::MessageLite*>(value)->GetArena(); - if (message_arena != submessage_arena) { - value = ::google::protobuf::internal::GetOwnedMessage(message_arena, value, submessage_arena); - } - _impl_._has_bits_[0] |= 0x00000001u; - } else { - _impl_._has_bits_[0] &= ~0x00000001u; - } - - _impl_.console_id_ = reinterpret_cast<::io::deephaven::proto::backplane::grpc::Ticket*>(value); - // @@protoc_insertion_point(field_set_allocated:io.deephaven.proto.backplane.script.grpc.AutoCompleteRequest.console_id) -} - -// int32 request_id = 6; -inline void AutoCompleteRequest::clear_request_id() { - ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.request_id_ = 0; -} -inline ::int32_t AutoCompleteRequest::request_id() const { - // @@protoc_insertion_point(field_get:io.deephaven.proto.backplane.script.grpc.AutoCompleteRequest.request_id) - return _internal_request_id(); -} -inline void AutoCompleteRequest::set_request_id(::int32_t value) { - _internal_set_request_id(value); - // @@protoc_insertion_point(field_set:io.deephaven.proto.backplane.script.grpc.AutoCompleteRequest.request_id) -} -inline ::int32_t AutoCompleteRequest::_internal_request_id() const { - ::google::protobuf::internal::TSanRead(&_impl_); - return _impl_.request_id_; -} -inline void AutoCompleteRequest::_internal_set_request_id(::int32_t value) { - ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.request_id_ = value; -} - -// .io.deephaven.proto.backplane.script.grpc.OpenDocumentRequest open_document = 1; -inline bool AutoCompleteRequest::has_open_document() const { - return request_case() == kOpenDocument; -} -inline bool AutoCompleteRequest::_internal_has_open_document() const { - return request_case() == kOpenDocument; -} -inline void AutoCompleteRequest::set_has_open_document() { - _impl_._oneof_case_[0] = kOpenDocument; -} -inline void AutoCompleteRequest::clear_open_document() { - ::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(); - } -} -inline ::io::deephaven::proto::backplane::script::grpc::OpenDocumentRequest* AutoCompleteRequest::release_open_document() { - // @@protoc_insertion_point(field_release:io.deephaven.proto.backplane.script.grpc.AutoCompleteRequest.open_document) - if (request_case() == kOpenDocument) { - clear_has_request(); - auto* temp = _impl_.request_.open_document_; - if (GetArena() != nullptr) { - temp = ::google::protobuf::internal::DuplicateIfNonNull(temp); - } - _impl_.request_.open_document_ = nullptr; - return temp; - } else { - return nullptr; - } -} -inline const ::io::deephaven::proto::backplane::script::grpc::OpenDocumentRequest& AutoCompleteRequest::_internal_open_document() const { - return request_case() == kOpenDocument ? *_impl_.request_.open_document_ : reinterpret_cast<::io::deephaven::proto::backplane::script::grpc::OpenDocumentRequest&>(::io::deephaven::proto::backplane::script::grpc::_OpenDocumentRequest_default_instance_); -} -inline const ::io::deephaven::proto::backplane::script::grpc::OpenDocumentRequest& AutoCompleteRequest::open_document() const ABSL_ATTRIBUTE_LIFETIME_BOUND { - // @@protoc_insertion_point(field_get:io.deephaven.proto.backplane.script.grpc.AutoCompleteRequest.open_document) - return _internal_open_document(); -} -inline ::io::deephaven::proto::backplane::script::grpc::OpenDocumentRequest* AutoCompleteRequest::unsafe_arena_release_open_document() { - // @@protoc_insertion_point(field_unsafe_arena_release:io.deephaven.proto.backplane.script.grpc.AutoCompleteRequest.open_document) - if (request_case() == kOpenDocument) { - clear_has_request(); - auto* temp = _impl_.request_.open_document_; - _impl_.request_.open_document_ = nullptr; - return temp; - } else { - return nullptr; - } -} -inline void AutoCompleteRequest::unsafe_arena_set_allocated_open_document(::io::deephaven::proto::backplane::script::grpc::OpenDocumentRequest* value) { - // We rely on the oneof clear method to free the earlier contents - // of this oneof. We can directly use the pointer we're given to - // set the new value. - clear_request(); - if (value) { - set_has_open_document(); - _impl_.request_.open_document_ = value; - } - // @@protoc_insertion_point(field_unsafe_arena_set_allocated:io.deephaven.proto.backplane.script.grpc.AutoCompleteRequest.open_document) -} -inline ::io::deephaven::proto::backplane::script::grpc::OpenDocumentRequest* AutoCompleteRequest::_internal_mutable_open_document() { - if (request_case() != kOpenDocument) { - clear_request(); - set_has_open_document(); - _impl_.request_.open_document_ = - ::google::protobuf::Message::DefaultConstruct<::io::deephaven::proto::backplane::script::grpc::OpenDocumentRequest>(GetArena()); - } - return _impl_.request_.open_document_; -} -inline ::io::deephaven::proto::backplane::script::grpc::OpenDocumentRequest* AutoCompleteRequest::mutable_open_document() ABSL_ATTRIBUTE_LIFETIME_BOUND { - ::io::deephaven::proto::backplane::script::grpc::OpenDocumentRequest* _msg = _internal_mutable_open_document(); - // @@protoc_insertion_point(field_mutable:io.deephaven.proto.backplane.script.grpc.AutoCompleteRequest.open_document) - return _msg; -} - -// .io.deephaven.proto.backplane.script.grpc.ChangeDocumentRequest change_document = 2; -inline bool AutoCompleteRequest::has_change_document() const { - return request_case() == kChangeDocument; -} -inline bool AutoCompleteRequest::_internal_has_change_document() const { - return request_case() == kChangeDocument; -} -inline void AutoCompleteRequest::set_has_change_document() { - _impl_._oneof_case_[0] = kChangeDocument; -} -inline void AutoCompleteRequest::clear_change_document() { - ::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(); - } -} -inline ::io::deephaven::proto::backplane::script::grpc::ChangeDocumentRequest* AutoCompleteRequest::release_change_document() { - // @@protoc_insertion_point(field_release:io.deephaven.proto.backplane.script.grpc.AutoCompleteRequest.change_document) - if (request_case() == kChangeDocument) { - clear_has_request(); - auto* temp = _impl_.request_.change_document_; - if (GetArena() != nullptr) { - temp = ::google::protobuf::internal::DuplicateIfNonNull(temp); - } - _impl_.request_.change_document_ = nullptr; - return temp; - } else { - return nullptr; - } -} -inline const ::io::deephaven::proto::backplane::script::grpc::ChangeDocumentRequest& AutoCompleteRequest::_internal_change_document() const { - return request_case() == kChangeDocument ? *_impl_.request_.change_document_ : reinterpret_cast<::io::deephaven::proto::backplane::script::grpc::ChangeDocumentRequest&>(::io::deephaven::proto::backplane::script::grpc::_ChangeDocumentRequest_default_instance_); -} -inline const ::io::deephaven::proto::backplane::script::grpc::ChangeDocumentRequest& AutoCompleteRequest::change_document() const ABSL_ATTRIBUTE_LIFETIME_BOUND { - // @@protoc_insertion_point(field_get:io.deephaven.proto.backplane.script.grpc.AutoCompleteRequest.change_document) - return _internal_change_document(); -} -inline ::io::deephaven::proto::backplane::script::grpc::ChangeDocumentRequest* AutoCompleteRequest::unsafe_arena_release_change_document() { - // @@protoc_insertion_point(field_unsafe_arena_release:io.deephaven.proto.backplane.script.grpc.AutoCompleteRequest.change_document) - if (request_case() == kChangeDocument) { - clear_has_request(); - auto* temp = _impl_.request_.change_document_; - _impl_.request_.change_document_ = nullptr; - return temp; - } else { - return nullptr; - } -} -inline void AutoCompleteRequest::unsafe_arena_set_allocated_change_document(::io::deephaven::proto::backplane::script::grpc::ChangeDocumentRequest* value) { - // We rely on the oneof clear method to free the earlier contents - // of this oneof. We can directly use the pointer we're given to - // set the new value. - clear_request(); - if (value) { - set_has_change_document(); - _impl_.request_.change_document_ = value; - } - // @@protoc_insertion_point(field_unsafe_arena_set_allocated:io.deephaven.proto.backplane.script.grpc.AutoCompleteRequest.change_document) -} -inline ::io::deephaven::proto::backplane::script::grpc::ChangeDocumentRequest* AutoCompleteRequest::_internal_mutable_change_document() { - if (request_case() != kChangeDocument) { - clear_request(); - set_has_change_document(); - _impl_.request_.change_document_ = - ::google::protobuf::Message::DefaultConstruct<::io::deephaven::proto::backplane::script::grpc::ChangeDocumentRequest>(GetArena()); - } - return _impl_.request_.change_document_; -} -inline ::io::deephaven::proto::backplane::script::grpc::ChangeDocumentRequest* AutoCompleteRequest::mutable_change_document() ABSL_ATTRIBUTE_LIFETIME_BOUND { - ::io::deephaven::proto::backplane::script::grpc::ChangeDocumentRequest* _msg = _internal_mutable_change_document(); - // @@protoc_insertion_point(field_mutable:io.deephaven.proto.backplane.script.grpc.AutoCompleteRequest.change_document) - return _msg; -} - -// .io.deephaven.proto.backplane.script.grpc.GetCompletionItemsRequest get_completion_items = 3; -inline bool AutoCompleteRequest::has_get_completion_items() const { - return request_case() == kGetCompletionItems; -} -inline bool AutoCompleteRequest::_internal_has_get_completion_items() const { - return request_case() == kGetCompletionItems; -} -inline void AutoCompleteRequest::set_has_get_completion_items() { - _impl_._oneof_case_[0] = kGetCompletionItems; -} -inline void AutoCompleteRequest::clear_get_completion_items() { - ::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(); - } -} -inline ::io::deephaven::proto::backplane::script::grpc::GetCompletionItemsRequest* AutoCompleteRequest::release_get_completion_items() { - // @@protoc_insertion_point(field_release:io.deephaven.proto.backplane.script.grpc.AutoCompleteRequest.get_completion_items) - if (request_case() == kGetCompletionItems) { - clear_has_request(); - auto* temp = _impl_.request_.get_completion_items_; - if (GetArena() != nullptr) { - temp = ::google::protobuf::internal::DuplicateIfNonNull(temp); - } - _impl_.request_.get_completion_items_ = nullptr; - return temp; - } else { - return nullptr; - } -} -inline const ::io::deephaven::proto::backplane::script::grpc::GetCompletionItemsRequest& AutoCompleteRequest::_internal_get_completion_items() const { - return request_case() == kGetCompletionItems ? *_impl_.request_.get_completion_items_ : reinterpret_cast<::io::deephaven::proto::backplane::script::grpc::GetCompletionItemsRequest&>(::io::deephaven::proto::backplane::script::grpc::_GetCompletionItemsRequest_default_instance_); -} -inline const ::io::deephaven::proto::backplane::script::grpc::GetCompletionItemsRequest& AutoCompleteRequest::get_completion_items() const ABSL_ATTRIBUTE_LIFETIME_BOUND { - // @@protoc_insertion_point(field_get:io.deephaven.proto.backplane.script.grpc.AutoCompleteRequest.get_completion_items) - return _internal_get_completion_items(); -} -inline ::io::deephaven::proto::backplane::script::grpc::GetCompletionItemsRequest* AutoCompleteRequest::unsafe_arena_release_get_completion_items() { - // @@protoc_insertion_point(field_unsafe_arena_release:io.deephaven.proto.backplane.script.grpc.AutoCompleteRequest.get_completion_items) - if (request_case() == kGetCompletionItems) { - clear_has_request(); - auto* temp = _impl_.request_.get_completion_items_; - _impl_.request_.get_completion_items_ = nullptr; - return temp; - } else { - return nullptr; - } -} -inline void AutoCompleteRequest::unsafe_arena_set_allocated_get_completion_items(::io::deephaven::proto::backplane::script::grpc::GetCompletionItemsRequest* value) { - // We rely on the oneof clear method to free the earlier contents - // of this oneof. We can directly use the pointer we're given to - // set the new value. - clear_request(); - if (value) { - set_has_get_completion_items(); - _impl_.request_.get_completion_items_ = value; - } - // @@protoc_insertion_point(field_unsafe_arena_set_allocated:io.deephaven.proto.backplane.script.grpc.AutoCompleteRequest.get_completion_items) -} -inline ::io::deephaven::proto::backplane::script::grpc::GetCompletionItemsRequest* AutoCompleteRequest::_internal_mutable_get_completion_items() { - if (request_case() != kGetCompletionItems) { - clear_request(); - set_has_get_completion_items(); - _impl_.request_.get_completion_items_ = - ::google::protobuf::Message::DefaultConstruct<::io::deephaven::proto::backplane::script::grpc::GetCompletionItemsRequest>(GetArena()); - } - return _impl_.request_.get_completion_items_; -} -inline ::io::deephaven::proto::backplane::script::grpc::GetCompletionItemsRequest* AutoCompleteRequest::mutable_get_completion_items() ABSL_ATTRIBUTE_LIFETIME_BOUND { - ::io::deephaven::proto::backplane::script::grpc::GetCompletionItemsRequest* _msg = _internal_mutable_get_completion_items(); - // @@protoc_insertion_point(field_mutable:io.deephaven.proto.backplane.script.grpc.AutoCompleteRequest.get_completion_items) - return _msg; -} - -// .io.deephaven.proto.backplane.script.grpc.GetSignatureHelpRequest get_signature_help = 7; -inline bool AutoCompleteRequest::has_get_signature_help() const { - return request_case() == kGetSignatureHelp; -} -inline bool AutoCompleteRequest::_internal_has_get_signature_help() const { - return request_case() == kGetSignatureHelp; -} -inline void AutoCompleteRequest::set_has_get_signature_help() { - _impl_._oneof_case_[0] = kGetSignatureHelp; -} -inline void AutoCompleteRequest::clear_get_signature_help() { - ::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(); - } -} -inline ::io::deephaven::proto::backplane::script::grpc::GetSignatureHelpRequest* AutoCompleteRequest::release_get_signature_help() { - // @@protoc_insertion_point(field_release:io.deephaven.proto.backplane.script.grpc.AutoCompleteRequest.get_signature_help) - if (request_case() == kGetSignatureHelp) { - clear_has_request(); - auto* temp = _impl_.request_.get_signature_help_; - if (GetArena() != nullptr) { - temp = ::google::protobuf::internal::DuplicateIfNonNull(temp); - } - _impl_.request_.get_signature_help_ = nullptr; - return temp; - } else { - return nullptr; - } -} -inline const ::io::deephaven::proto::backplane::script::grpc::GetSignatureHelpRequest& AutoCompleteRequest::_internal_get_signature_help() const { - return request_case() == kGetSignatureHelp ? *_impl_.request_.get_signature_help_ : reinterpret_cast<::io::deephaven::proto::backplane::script::grpc::GetSignatureHelpRequest&>(::io::deephaven::proto::backplane::script::grpc::_GetSignatureHelpRequest_default_instance_); -} -inline const ::io::deephaven::proto::backplane::script::grpc::GetSignatureHelpRequest& AutoCompleteRequest::get_signature_help() const ABSL_ATTRIBUTE_LIFETIME_BOUND { - // @@protoc_insertion_point(field_get:io.deephaven.proto.backplane.script.grpc.AutoCompleteRequest.get_signature_help) - return _internal_get_signature_help(); -} -inline ::io::deephaven::proto::backplane::script::grpc::GetSignatureHelpRequest* AutoCompleteRequest::unsafe_arena_release_get_signature_help() { - // @@protoc_insertion_point(field_unsafe_arena_release:io.deephaven.proto.backplane.script.grpc.AutoCompleteRequest.get_signature_help) - if (request_case() == kGetSignatureHelp) { - clear_has_request(); - auto* temp = _impl_.request_.get_signature_help_; - _impl_.request_.get_signature_help_ = nullptr; - return temp; - } else { - return nullptr; - } -} -inline void AutoCompleteRequest::unsafe_arena_set_allocated_get_signature_help(::io::deephaven::proto::backplane::script::grpc::GetSignatureHelpRequest* value) { - // We rely on the oneof clear method to free the earlier contents - // of this oneof. We can directly use the pointer we're given to - // set the new value. - clear_request(); - if (value) { - set_has_get_signature_help(); - _impl_.request_.get_signature_help_ = value; - } - // @@protoc_insertion_point(field_unsafe_arena_set_allocated:io.deephaven.proto.backplane.script.grpc.AutoCompleteRequest.get_signature_help) -} -inline ::io::deephaven::proto::backplane::script::grpc::GetSignatureHelpRequest* AutoCompleteRequest::_internal_mutable_get_signature_help() { - if (request_case() != kGetSignatureHelp) { - clear_request(); - set_has_get_signature_help(); - _impl_.request_.get_signature_help_ = - ::google::protobuf::Message::DefaultConstruct<::io::deephaven::proto::backplane::script::grpc::GetSignatureHelpRequest>(GetArena()); - } - return _impl_.request_.get_signature_help_; -} -inline ::io::deephaven::proto::backplane::script::grpc::GetSignatureHelpRequest* AutoCompleteRequest::mutable_get_signature_help() ABSL_ATTRIBUTE_LIFETIME_BOUND { - ::io::deephaven::proto::backplane::script::grpc::GetSignatureHelpRequest* _msg = _internal_mutable_get_signature_help(); - // @@protoc_insertion_point(field_mutable:io.deephaven.proto.backplane.script.grpc.AutoCompleteRequest.get_signature_help) - return _msg; -} - -// .io.deephaven.proto.backplane.script.grpc.GetHoverRequest get_hover = 8; -inline bool AutoCompleteRequest::has_get_hover() const { - return request_case() == kGetHover; -} -inline bool AutoCompleteRequest::_internal_has_get_hover() const { - return request_case() == kGetHover; -} -inline void AutoCompleteRequest::set_has_get_hover() { - _impl_._oneof_case_[0] = kGetHover; -} -inline void AutoCompleteRequest::clear_get_hover() { - ::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(); - } -} -inline ::io::deephaven::proto::backplane::script::grpc::GetHoverRequest* AutoCompleteRequest::release_get_hover() { - // @@protoc_insertion_point(field_release:io.deephaven.proto.backplane.script.grpc.AutoCompleteRequest.get_hover) - if (request_case() == kGetHover) { - clear_has_request(); - auto* temp = _impl_.request_.get_hover_; - if (GetArena() != nullptr) { - temp = ::google::protobuf::internal::DuplicateIfNonNull(temp); - } - _impl_.request_.get_hover_ = nullptr; - return temp; - } else { - return nullptr; - } -} -inline const ::io::deephaven::proto::backplane::script::grpc::GetHoverRequest& AutoCompleteRequest::_internal_get_hover() const { - return request_case() == kGetHover ? *_impl_.request_.get_hover_ : reinterpret_cast<::io::deephaven::proto::backplane::script::grpc::GetHoverRequest&>(::io::deephaven::proto::backplane::script::grpc::_GetHoverRequest_default_instance_); -} -inline const ::io::deephaven::proto::backplane::script::grpc::GetHoverRequest& AutoCompleteRequest::get_hover() const ABSL_ATTRIBUTE_LIFETIME_BOUND { - // @@protoc_insertion_point(field_get:io.deephaven.proto.backplane.script.grpc.AutoCompleteRequest.get_hover) - return _internal_get_hover(); -} -inline ::io::deephaven::proto::backplane::script::grpc::GetHoverRequest* AutoCompleteRequest::unsafe_arena_release_get_hover() { - // @@protoc_insertion_point(field_unsafe_arena_release:io.deephaven.proto.backplane.script.grpc.AutoCompleteRequest.get_hover) - if (request_case() == kGetHover) { - clear_has_request(); - auto* temp = _impl_.request_.get_hover_; - _impl_.request_.get_hover_ = nullptr; - return temp; - } else { - return nullptr; - } -} -inline void AutoCompleteRequest::unsafe_arena_set_allocated_get_hover(::io::deephaven::proto::backplane::script::grpc::GetHoverRequest* value) { - // We rely on the oneof clear method to free the earlier contents - // of this oneof. We can directly use the pointer we're given to - // set the new value. - clear_request(); - if (value) { - set_has_get_hover(); - _impl_.request_.get_hover_ = value; - } - // @@protoc_insertion_point(field_unsafe_arena_set_allocated:io.deephaven.proto.backplane.script.grpc.AutoCompleteRequest.get_hover) -} -inline ::io::deephaven::proto::backplane::script::grpc::GetHoverRequest* AutoCompleteRequest::_internal_mutable_get_hover() { - if (request_case() != kGetHover) { - clear_request(); - set_has_get_hover(); - _impl_.request_.get_hover_ = - ::google::protobuf::Message::DefaultConstruct<::io::deephaven::proto::backplane::script::grpc::GetHoverRequest>(GetArena()); - } - return _impl_.request_.get_hover_; -} -inline ::io::deephaven::proto::backplane::script::grpc::GetHoverRequest* AutoCompleteRequest::mutable_get_hover() ABSL_ATTRIBUTE_LIFETIME_BOUND { - ::io::deephaven::proto::backplane::script::grpc::GetHoverRequest* _msg = _internal_mutable_get_hover(); - // @@protoc_insertion_point(field_mutable:io.deephaven.proto.backplane.script.grpc.AutoCompleteRequest.get_hover) - return _msg; -} - -// .io.deephaven.proto.backplane.script.grpc.GetDiagnosticRequest get_diagnostic = 9; -inline bool AutoCompleteRequest::has_get_diagnostic() const { - return request_case() == kGetDiagnostic; -} -inline bool AutoCompleteRequest::_internal_has_get_diagnostic() const { - return request_case() == kGetDiagnostic; -} -inline void AutoCompleteRequest::set_has_get_diagnostic() { - _impl_._oneof_case_[0] = kGetDiagnostic; -} -inline void AutoCompleteRequest::clear_get_diagnostic() { - ::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(); - } -} -inline ::io::deephaven::proto::backplane::script::grpc::GetDiagnosticRequest* AutoCompleteRequest::release_get_diagnostic() { - // @@protoc_insertion_point(field_release:io.deephaven.proto.backplane.script.grpc.AutoCompleteRequest.get_diagnostic) - if (request_case() == kGetDiagnostic) { - clear_has_request(); - auto* temp = _impl_.request_.get_diagnostic_; - if (GetArena() != nullptr) { - temp = ::google::protobuf::internal::DuplicateIfNonNull(temp); - } - _impl_.request_.get_diagnostic_ = nullptr; - return temp; - } else { - return nullptr; - } -} -inline const ::io::deephaven::proto::backplane::script::grpc::GetDiagnosticRequest& AutoCompleteRequest::_internal_get_diagnostic() const { - return request_case() == kGetDiagnostic ? *_impl_.request_.get_diagnostic_ : reinterpret_cast<::io::deephaven::proto::backplane::script::grpc::GetDiagnosticRequest&>(::io::deephaven::proto::backplane::script::grpc::_GetDiagnosticRequest_default_instance_); -} -inline const ::io::deephaven::proto::backplane::script::grpc::GetDiagnosticRequest& AutoCompleteRequest::get_diagnostic() const ABSL_ATTRIBUTE_LIFETIME_BOUND { - // @@protoc_insertion_point(field_get:io.deephaven.proto.backplane.script.grpc.AutoCompleteRequest.get_diagnostic) - return _internal_get_diagnostic(); -} -inline ::io::deephaven::proto::backplane::script::grpc::GetDiagnosticRequest* AutoCompleteRequest::unsafe_arena_release_get_diagnostic() { - // @@protoc_insertion_point(field_unsafe_arena_release:io.deephaven.proto.backplane.script.grpc.AutoCompleteRequest.get_diagnostic) - if (request_case() == kGetDiagnostic) { - clear_has_request(); - auto* temp = _impl_.request_.get_diagnostic_; - _impl_.request_.get_diagnostic_ = nullptr; - return temp; - } else { - return nullptr; - } -} -inline void AutoCompleteRequest::unsafe_arena_set_allocated_get_diagnostic(::io::deephaven::proto::backplane::script::grpc::GetDiagnosticRequest* value) { - // We rely on the oneof clear method to free the earlier contents - // of this oneof. We can directly use the pointer we're given to - // set the new value. - clear_request(); - if (value) { - set_has_get_diagnostic(); - _impl_.request_.get_diagnostic_ = value; - } - // @@protoc_insertion_point(field_unsafe_arena_set_allocated:io.deephaven.proto.backplane.script.grpc.AutoCompleteRequest.get_diagnostic) -} -inline ::io::deephaven::proto::backplane::script::grpc::GetDiagnosticRequest* AutoCompleteRequest::_internal_mutable_get_diagnostic() { - if (request_case() != kGetDiagnostic) { - clear_request(); - set_has_get_diagnostic(); - _impl_.request_.get_diagnostic_ = - ::google::protobuf::Message::DefaultConstruct<::io::deephaven::proto::backplane::script::grpc::GetDiagnosticRequest>(GetArena()); - } - return _impl_.request_.get_diagnostic_; -} -inline ::io::deephaven::proto::backplane::script::grpc::GetDiagnosticRequest* AutoCompleteRequest::mutable_get_diagnostic() ABSL_ATTRIBUTE_LIFETIME_BOUND { - ::io::deephaven::proto::backplane::script::grpc::GetDiagnosticRequest* _msg = _internal_mutable_get_diagnostic(); - // @@protoc_insertion_point(field_mutable:io.deephaven.proto.backplane.script.grpc.AutoCompleteRequest.get_diagnostic) - return _msg; -} - -// .io.deephaven.proto.backplane.script.grpc.CloseDocumentRequest close_document = 4; -inline bool AutoCompleteRequest::has_close_document() const { - return request_case() == kCloseDocument; -} -inline bool AutoCompleteRequest::_internal_has_close_document() const { - return request_case() == kCloseDocument; -} -inline void AutoCompleteRequest::set_has_close_document() { - _impl_._oneof_case_[0] = kCloseDocument; -} -inline void AutoCompleteRequest::clear_close_document() { - ::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(); - } -} -inline ::io::deephaven::proto::backplane::script::grpc::CloseDocumentRequest* AutoCompleteRequest::release_close_document() { - // @@protoc_insertion_point(field_release:io.deephaven.proto.backplane.script.grpc.AutoCompleteRequest.close_document) - if (request_case() == kCloseDocument) { - clear_has_request(); - auto* temp = _impl_.request_.close_document_; - if (GetArena() != nullptr) { - temp = ::google::protobuf::internal::DuplicateIfNonNull(temp); - } - _impl_.request_.close_document_ = nullptr; - return temp; - } else { - return nullptr; - } -} -inline const ::io::deephaven::proto::backplane::script::grpc::CloseDocumentRequest& AutoCompleteRequest::_internal_close_document() const { - return request_case() == kCloseDocument ? *_impl_.request_.close_document_ : reinterpret_cast<::io::deephaven::proto::backplane::script::grpc::CloseDocumentRequest&>(::io::deephaven::proto::backplane::script::grpc::_CloseDocumentRequest_default_instance_); -} -inline const ::io::deephaven::proto::backplane::script::grpc::CloseDocumentRequest& AutoCompleteRequest::close_document() const ABSL_ATTRIBUTE_LIFETIME_BOUND { - // @@protoc_insertion_point(field_get:io.deephaven.proto.backplane.script.grpc.AutoCompleteRequest.close_document) - return _internal_close_document(); -} -inline ::io::deephaven::proto::backplane::script::grpc::CloseDocumentRequest* AutoCompleteRequest::unsafe_arena_release_close_document() { - // @@protoc_insertion_point(field_unsafe_arena_release:io.deephaven.proto.backplane.script.grpc.AutoCompleteRequest.close_document) - if (request_case() == kCloseDocument) { - clear_has_request(); - auto* temp = _impl_.request_.close_document_; - _impl_.request_.close_document_ = nullptr; - return temp; - } else { - return nullptr; - } -} -inline void AutoCompleteRequest::unsafe_arena_set_allocated_close_document(::io::deephaven::proto::backplane::script::grpc::CloseDocumentRequest* value) { - // We rely on the oneof clear method to free the earlier contents - // of this oneof. We can directly use the pointer we're given to - // set the new value. - clear_request(); - if (value) { - set_has_close_document(); - _impl_.request_.close_document_ = value; - } - // @@protoc_insertion_point(field_unsafe_arena_set_allocated:io.deephaven.proto.backplane.script.grpc.AutoCompleteRequest.close_document) -} -inline ::io::deephaven::proto::backplane::script::grpc::CloseDocumentRequest* AutoCompleteRequest::_internal_mutable_close_document() { - if (request_case() != kCloseDocument) { - clear_request(); - set_has_close_document(); - _impl_.request_.close_document_ = - ::google::protobuf::Message::DefaultConstruct<::io::deephaven::proto::backplane::script::grpc::CloseDocumentRequest>(GetArena()); - } - return _impl_.request_.close_document_; -} -inline ::io::deephaven::proto::backplane::script::grpc::CloseDocumentRequest* AutoCompleteRequest::mutable_close_document() ABSL_ATTRIBUTE_LIFETIME_BOUND { - ::io::deephaven::proto::backplane::script::grpc::CloseDocumentRequest* _msg = _internal_mutable_close_document(); - // @@protoc_insertion_point(field_mutable:io.deephaven.proto.backplane.script.grpc.AutoCompleteRequest.close_document) - return _msg; -} - -inline bool AutoCompleteRequest::has_request() const { - return request_case() != REQUEST_NOT_SET; -} -inline void AutoCompleteRequest::clear_has_request() { - _impl_._oneof_case_[0] = REQUEST_NOT_SET; -} -inline AutoCompleteRequest::RequestCase AutoCompleteRequest::request_case() const { - return AutoCompleteRequest::RequestCase(_impl_._oneof_case_[0]); -} -// ------------------------------------------------------------------- - -// AutoCompleteResponse - -// int32 request_id = 2; -inline void AutoCompleteResponse::clear_request_id() { - ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.request_id_ = 0; -} -inline ::int32_t AutoCompleteResponse::request_id() const { - // @@protoc_insertion_point(field_get:io.deephaven.proto.backplane.script.grpc.AutoCompleteResponse.request_id) - return _internal_request_id(); -} -inline void AutoCompleteResponse::set_request_id(::int32_t value) { - _internal_set_request_id(value); - // @@protoc_insertion_point(field_set:io.deephaven.proto.backplane.script.grpc.AutoCompleteResponse.request_id) -} -inline ::int32_t AutoCompleteResponse::_internal_request_id() const { - ::google::protobuf::internal::TSanRead(&_impl_); - return _impl_.request_id_; -} -inline void AutoCompleteResponse::_internal_set_request_id(::int32_t value) { - ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.request_id_ = value; -} - -// bool success = 3; -inline void AutoCompleteResponse::clear_success() { - ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.success_ = false; -} -inline bool AutoCompleteResponse::success() const { - // @@protoc_insertion_point(field_get:io.deephaven.proto.backplane.script.grpc.AutoCompleteResponse.success) - return _internal_success(); -} -inline void AutoCompleteResponse::set_success(bool value) { - _internal_set_success(value); - // @@protoc_insertion_point(field_set:io.deephaven.proto.backplane.script.grpc.AutoCompleteResponse.success) -} -inline bool AutoCompleteResponse::_internal_success() const { - ::google::protobuf::internal::TSanRead(&_impl_); - return _impl_.success_; -} -inline void AutoCompleteResponse::_internal_set_success(bool value) { - ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.success_ = value; -} - -// .io.deephaven.proto.backplane.script.grpc.GetCompletionItemsResponse completion_items = 1; -inline bool AutoCompleteResponse::has_completion_items() const { - return response_case() == kCompletionItems; -} -inline bool AutoCompleteResponse::_internal_has_completion_items() const { - return response_case() == kCompletionItems; -} -inline void AutoCompleteResponse::set_has_completion_items() { - _impl_._oneof_case_[0] = kCompletionItems; -} -inline void AutoCompleteResponse::clear_completion_items() { - ::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(); - } -} -inline ::io::deephaven::proto::backplane::script::grpc::GetCompletionItemsResponse* AutoCompleteResponse::release_completion_items() { - // @@protoc_insertion_point(field_release:io.deephaven.proto.backplane.script.grpc.AutoCompleteResponse.completion_items) - if (response_case() == kCompletionItems) { - clear_has_response(); - auto* temp = _impl_.response_.completion_items_; - if (GetArena() != nullptr) { - temp = ::google::protobuf::internal::DuplicateIfNonNull(temp); - } - _impl_.response_.completion_items_ = nullptr; - return temp; - } else { - return nullptr; - } -} -inline const ::io::deephaven::proto::backplane::script::grpc::GetCompletionItemsResponse& AutoCompleteResponse::_internal_completion_items() const { - return response_case() == kCompletionItems ? *_impl_.response_.completion_items_ : reinterpret_cast<::io::deephaven::proto::backplane::script::grpc::GetCompletionItemsResponse&>(::io::deephaven::proto::backplane::script::grpc::_GetCompletionItemsResponse_default_instance_); -} -inline const ::io::deephaven::proto::backplane::script::grpc::GetCompletionItemsResponse& AutoCompleteResponse::completion_items() const ABSL_ATTRIBUTE_LIFETIME_BOUND { - // @@protoc_insertion_point(field_get:io.deephaven.proto.backplane.script.grpc.AutoCompleteResponse.completion_items) - return _internal_completion_items(); -} -inline ::io::deephaven::proto::backplane::script::grpc::GetCompletionItemsResponse* AutoCompleteResponse::unsafe_arena_release_completion_items() { - // @@protoc_insertion_point(field_unsafe_arena_release:io.deephaven.proto.backplane.script.grpc.AutoCompleteResponse.completion_items) - if (response_case() == kCompletionItems) { - clear_has_response(); - auto* temp = _impl_.response_.completion_items_; - _impl_.response_.completion_items_ = nullptr; - return temp; - } else { - return nullptr; - } -} -inline void AutoCompleteResponse::unsafe_arena_set_allocated_completion_items(::io::deephaven::proto::backplane::script::grpc::GetCompletionItemsResponse* value) { - // We rely on the oneof clear method to free the earlier contents - // of this oneof. We can directly use the pointer we're given to - // set the new value. - clear_response(); - if (value) { - set_has_completion_items(); - _impl_.response_.completion_items_ = value; - } - // @@protoc_insertion_point(field_unsafe_arena_set_allocated:io.deephaven.proto.backplane.script.grpc.AutoCompleteResponse.completion_items) -} -inline ::io::deephaven::proto::backplane::script::grpc::GetCompletionItemsResponse* AutoCompleteResponse::_internal_mutable_completion_items() { - if (response_case() != kCompletionItems) { - clear_response(); - set_has_completion_items(); - _impl_.response_.completion_items_ = - ::google::protobuf::Message::DefaultConstruct<::io::deephaven::proto::backplane::script::grpc::GetCompletionItemsResponse>(GetArena()); - } - return _impl_.response_.completion_items_; -} -inline ::io::deephaven::proto::backplane::script::grpc::GetCompletionItemsResponse* AutoCompleteResponse::mutable_completion_items() ABSL_ATTRIBUTE_LIFETIME_BOUND { - ::io::deephaven::proto::backplane::script::grpc::GetCompletionItemsResponse* _msg = _internal_mutable_completion_items(); - // @@protoc_insertion_point(field_mutable:io.deephaven.proto.backplane.script.grpc.AutoCompleteResponse.completion_items) - return _msg; -} - -// .io.deephaven.proto.backplane.script.grpc.GetSignatureHelpResponse signatures = 4; -inline bool AutoCompleteResponse::has_signatures() const { - return response_case() == kSignatures; -} -inline bool AutoCompleteResponse::_internal_has_signatures() const { - return response_case() == kSignatures; -} -inline void AutoCompleteResponse::set_has_signatures() { - _impl_._oneof_case_[0] = kSignatures; -} -inline void AutoCompleteResponse::clear_signatures() { - ::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(); - } -} -inline ::io::deephaven::proto::backplane::script::grpc::GetSignatureHelpResponse* AutoCompleteResponse::release_signatures() { - // @@protoc_insertion_point(field_release:io.deephaven.proto.backplane.script.grpc.AutoCompleteResponse.signatures) - if (response_case() == kSignatures) { - clear_has_response(); - auto* temp = _impl_.response_.signatures_; - if (GetArena() != nullptr) { - temp = ::google::protobuf::internal::DuplicateIfNonNull(temp); - } - _impl_.response_.signatures_ = nullptr; - return temp; - } else { - return nullptr; - } -} -inline const ::io::deephaven::proto::backplane::script::grpc::GetSignatureHelpResponse& AutoCompleteResponse::_internal_signatures() const { - return response_case() == kSignatures ? *_impl_.response_.signatures_ : reinterpret_cast<::io::deephaven::proto::backplane::script::grpc::GetSignatureHelpResponse&>(::io::deephaven::proto::backplane::script::grpc::_GetSignatureHelpResponse_default_instance_); -} -inline const ::io::deephaven::proto::backplane::script::grpc::GetSignatureHelpResponse& AutoCompleteResponse::signatures() const ABSL_ATTRIBUTE_LIFETIME_BOUND { - // @@protoc_insertion_point(field_get:io.deephaven.proto.backplane.script.grpc.AutoCompleteResponse.signatures) - return _internal_signatures(); -} -inline ::io::deephaven::proto::backplane::script::grpc::GetSignatureHelpResponse* AutoCompleteResponse::unsafe_arena_release_signatures() { - // @@protoc_insertion_point(field_unsafe_arena_release:io.deephaven.proto.backplane.script.grpc.AutoCompleteResponse.signatures) - if (response_case() == kSignatures) { - clear_has_response(); - auto* temp = _impl_.response_.signatures_; - _impl_.response_.signatures_ = nullptr; - return temp; - } else { - return nullptr; - } -} -inline void AutoCompleteResponse::unsafe_arena_set_allocated_signatures(::io::deephaven::proto::backplane::script::grpc::GetSignatureHelpResponse* value) { - // We rely on the oneof clear method to free the earlier contents - // of this oneof. We can directly use the pointer we're given to - // set the new value. - clear_response(); - if (value) { - set_has_signatures(); - _impl_.response_.signatures_ = value; - } - // @@protoc_insertion_point(field_unsafe_arena_set_allocated:io.deephaven.proto.backplane.script.grpc.AutoCompleteResponse.signatures) -} -inline ::io::deephaven::proto::backplane::script::grpc::GetSignatureHelpResponse* AutoCompleteResponse::_internal_mutable_signatures() { - if (response_case() != kSignatures) { - clear_response(); - set_has_signatures(); - _impl_.response_.signatures_ = - ::google::protobuf::Message::DefaultConstruct<::io::deephaven::proto::backplane::script::grpc::GetSignatureHelpResponse>(GetArena()); - } - return _impl_.response_.signatures_; -} -inline ::io::deephaven::proto::backplane::script::grpc::GetSignatureHelpResponse* AutoCompleteResponse::mutable_signatures() ABSL_ATTRIBUTE_LIFETIME_BOUND { - ::io::deephaven::proto::backplane::script::grpc::GetSignatureHelpResponse* _msg = _internal_mutable_signatures(); - // @@protoc_insertion_point(field_mutable:io.deephaven.proto.backplane.script.grpc.AutoCompleteResponse.signatures) - return _msg; -} - -// .io.deephaven.proto.backplane.script.grpc.GetHoverResponse hover = 5; -inline bool AutoCompleteResponse::has_hover() const { - return response_case() == kHover; -} -inline bool AutoCompleteResponse::_internal_has_hover() const { - return response_case() == kHover; -} -inline void AutoCompleteResponse::set_has_hover() { - _impl_._oneof_case_[0] = kHover; -} -inline void AutoCompleteResponse::clear_hover() { - ::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(); - } -} -inline ::io::deephaven::proto::backplane::script::grpc::GetHoverResponse* AutoCompleteResponse::release_hover() { - // @@protoc_insertion_point(field_release:io.deephaven.proto.backplane.script.grpc.AutoCompleteResponse.hover) - if (response_case() == kHover) { - clear_has_response(); - auto* temp = _impl_.response_.hover_; - if (GetArena() != nullptr) { - temp = ::google::protobuf::internal::DuplicateIfNonNull(temp); - } - _impl_.response_.hover_ = nullptr; - return temp; - } else { - return nullptr; - } -} -inline const ::io::deephaven::proto::backplane::script::grpc::GetHoverResponse& AutoCompleteResponse::_internal_hover() const { - return response_case() == kHover ? *_impl_.response_.hover_ : reinterpret_cast<::io::deephaven::proto::backplane::script::grpc::GetHoverResponse&>(::io::deephaven::proto::backplane::script::grpc::_GetHoverResponse_default_instance_); -} -inline const ::io::deephaven::proto::backplane::script::grpc::GetHoverResponse& AutoCompleteResponse::hover() const ABSL_ATTRIBUTE_LIFETIME_BOUND { - // @@protoc_insertion_point(field_get:io.deephaven.proto.backplane.script.grpc.AutoCompleteResponse.hover) - return _internal_hover(); -} -inline ::io::deephaven::proto::backplane::script::grpc::GetHoverResponse* AutoCompleteResponse::unsafe_arena_release_hover() { - // @@protoc_insertion_point(field_unsafe_arena_release:io.deephaven.proto.backplane.script.grpc.AutoCompleteResponse.hover) - if (response_case() == kHover) { - clear_has_response(); - auto* temp = _impl_.response_.hover_; - _impl_.response_.hover_ = nullptr; - return temp; - } else { - return nullptr; - } -} -inline void AutoCompleteResponse::unsafe_arena_set_allocated_hover(::io::deephaven::proto::backplane::script::grpc::GetHoverResponse* value) { - // We rely on the oneof clear method to free the earlier contents - // of this oneof. We can directly use the pointer we're given to - // set the new value. - clear_response(); - if (value) { - set_has_hover(); - _impl_.response_.hover_ = value; - } - // @@protoc_insertion_point(field_unsafe_arena_set_allocated:io.deephaven.proto.backplane.script.grpc.AutoCompleteResponse.hover) -} -inline ::io::deephaven::proto::backplane::script::grpc::GetHoverResponse* AutoCompleteResponse::_internal_mutable_hover() { - if (response_case() != kHover) { - clear_response(); - set_has_hover(); - _impl_.response_.hover_ = - ::google::protobuf::Message::DefaultConstruct<::io::deephaven::proto::backplane::script::grpc::GetHoverResponse>(GetArena()); - } - return _impl_.response_.hover_; -} -inline ::io::deephaven::proto::backplane::script::grpc::GetHoverResponse* AutoCompleteResponse::mutable_hover() ABSL_ATTRIBUTE_LIFETIME_BOUND { - ::io::deephaven::proto::backplane::script::grpc::GetHoverResponse* _msg = _internal_mutable_hover(); - // @@protoc_insertion_point(field_mutable:io.deephaven.proto.backplane.script.grpc.AutoCompleteResponse.hover) - return _msg; -} - -// .io.deephaven.proto.backplane.script.grpc.GetPullDiagnosticResponse diagnostic = 6; -inline bool AutoCompleteResponse::has_diagnostic() const { - return response_case() == kDiagnostic; -} -inline bool AutoCompleteResponse::_internal_has_diagnostic() const { - return response_case() == kDiagnostic; -} -inline void AutoCompleteResponse::set_has_diagnostic() { - _impl_._oneof_case_[0] = kDiagnostic; -} -inline void AutoCompleteResponse::clear_diagnostic() { - ::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(); - } -} -inline ::io::deephaven::proto::backplane::script::grpc::GetPullDiagnosticResponse* AutoCompleteResponse::release_diagnostic() { - // @@protoc_insertion_point(field_release:io.deephaven.proto.backplane.script.grpc.AutoCompleteResponse.diagnostic) - if (response_case() == kDiagnostic) { - clear_has_response(); - auto* temp = _impl_.response_.diagnostic_; - if (GetArena() != nullptr) { - temp = ::google::protobuf::internal::DuplicateIfNonNull(temp); - } - _impl_.response_.diagnostic_ = nullptr; - return temp; - } else { - return nullptr; - } -} -inline const ::io::deephaven::proto::backplane::script::grpc::GetPullDiagnosticResponse& AutoCompleteResponse::_internal_diagnostic() const { - return response_case() == kDiagnostic ? *_impl_.response_.diagnostic_ : reinterpret_cast<::io::deephaven::proto::backplane::script::grpc::GetPullDiagnosticResponse&>(::io::deephaven::proto::backplane::script::grpc::_GetPullDiagnosticResponse_default_instance_); -} -inline const ::io::deephaven::proto::backplane::script::grpc::GetPullDiagnosticResponse& AutoCompleteResponse::diagnostic() const ABSL_ATTRIBUTE_LIFETIME_BOUND { - // @@protoc_insertion_point(field_get:io.deephaven.proto.backplane.script.grpc.AutoCompleteResponse.diagnostic) - return _internal_diagnostic(); -} -inline ::io::deephaven::proto::backplane::script::grpc::GetPullDiagnosticResponse* AutoCompleteResponse::unsafe_arena_release_diagnostic() { - // @@protoc_insertion_point(field_unsafe_arena_release:io.deephaven.proto.backplane.script.grpc.AutoCompleteResponse.diagnostic) - if (response_case() == kDiagnostic) { - clear_has_response(); - auto* temp = _impl_.response_.diagnostic_; - _impl_.response_.diagnostic_ = nullptr; - return temp; - } else { - return nullptr; - } -} -inline void AutoCompleteResponse::unsafe_arena_set_allocated_diagnostic(::io::deephaven::proto::backplane::script::grpc::GetPullDiagnosticResponse* value) { - // We rely on the oneof clear method to free the earlier contents - // of this oneof. We can directly use the pointer we're given to - // set the new value. - clear_response(); - if (value) { - set_has_diagnostic(); - _impl_.response_.diagnostic_ = value; - } - // @@protoc_insertion_point(field_unsafe_arena_set_allocated:io.deephaven.proto.backplane.script.grpc.AutoCompleteResponse.diagnostic) -} -inline ::io::deephaven::proto::backplane::script::grpc::GetPullDiagnosticResponse* AutoCompleteResponse::_internal_mutable_diagnostic() { - if (response_case() != kDiagnostic) { - clear_response(); - set_has_diagnostic(); - _impl_.response_.diagnostic_ = - ::google::protobuf::Message::DefaultConstruct<::io::deephaven::proto::backplane::script::grpc::GetPullDiagnosticResponse>(GetArena()); - } - return _impl_.response_.diagnostic_; -} -inline ::io::deephaven::proto::backplane::script::grpc::GetPullDiagnosticResponse* AutoCompleteResponse::mutable_diagnostic() ABSL_ATTRIBUTE_LIFETIME_BOUND { - ::io::deephaven::proto::backplane::script::grpc::GetPullDiagnosticResponse* _msg = _internal_mutable_diagnostic(); - // @@protoc_insertion_point(field_mutable:io.deephaven.proto.backplane.script.grpc.AutoCompleteResponse.diagnostic) - return _msg; -} - -// .io.deephaven.proto.backplane.script.grpc.GetPublishDiagnosticResponse diagnostic_publish = 7; -inline bool AutoCompleteResponse::has_diagnostic_publish() const { - return response_case() == kDiagnosticPublish; -} -inline bool AutoCompleteResponse::_internal_has_diagnostic_publish() const { - return response_case() == kDiagnosticPublish; -} -inline void AutoCompleteResponse::set_has_diagnostic_publish() { - _impl_._oneof_case_[0] = kDiagnosticPublish; -} -inline void AutoCompleteResponse::clear_diagnostic_publish() { - ::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(); - } -} -inline ::io::deephaven::proto::backplane::script::grpc::GetPublishDiagnosticResponse* AutoCompleteResponse::release_diagnostic_publish() { - // @@protoc_insertion_point(field_release:io.deephaven.proto.backplane.script.grpc.AutoCompleteResponse.diagnostic_publish) - if (response_case() == kDiagnosticPublish) { - clear_has_response(); - auto* temp = _impl_.response_.diagnostic_publish_; - if (GetArena() != nullptr) { - temp = ::google::protobuf::internal::DuplicateIfNonNull(temp); - } - _impl_.response_.diagnostic_publish_ = nullptr; - return temp; - } else { - return nullptr; - } -} -inline const ::io::deephaven::proto::backplane::script::grpc::GetPublishDiagnosticResponse& AutoCompleteResponse::_internal_diagnostic_publish() const { - return response_case() == kDiagnosticPublish ? *_impl_.response_.diagnostic_publish_ : reinterpret_cast<::io::deephaven::proto::backplane::script::grpc::GetPublishDiagnosticResponse&>(::io::deephaven::proto::backplane::script::grpc::_GetPublishDiagnosticResponse_default_instance_); -} -inline const ::io::deephaven::proto::backplane::script::grpc::GetPublishDiagnosticResponse& AutoCompleteResponse::diagnostic_publish() const ABSL_ATTRIBUTE_LIFETIME_BOUND { - // @@protoc_insertion_point(field_get:io.deephaven.proto.backplane.script.grpc.AutoCompleteResponse.diagnostic_publish) - return _internal_diagnostic_publish(); -} -inline ::io::deephaven::proto::backplane::script::grpc::GetPublishDiagnosticResponse* AutoCompleteResponse::unsafe_arena_release_diagnostic_publish() { - // @@protoc_insertion_point(field_unsafe_arena_release:io.deephaven.proto.backplane.script.grpc.AutoCompleteResponse.diagnostic_publish) - if (response_case() == kDiagnosticPublish) { - clear_has_response(); - auto* temp = _impl_.response_.diagnostic_publish_; - _impl_.response_.diagnostic_publish_ = nullptr; - return temp; - } else { - return nullptr; - } -} -inline void AutoCompleteResponse::unsafe_arena_set_allocated_diagnostic_publish(::io::deephaven::proto::backplane::script::grpc::GetPublishDiagnosticResponse* value) { - // We rely on the oneof clear method to free the earlier contents - // of this oneof. We can directly use the pointer we're given to - // set the new value. - clear_response(); - if (value) { - set_has_diagnostic_publish(); - _impl_.response_.diagnostic_publish_ = value; - } - // @@protoc_insertion_point(field_unsafe_arena_set_allocated:io.deephaven.proto.backplane.script.grpc.AutoCompleteResponse.diagnostic_publish) -} -inline ::io::deephaven::proto::backplane::script::grpc::GetPublishDiagnosticResponse* AutoCompleteResponse::_internal_mutable_diagnostic_publish() { - if (response_case() != kDiagnosticPublish) { - clear_response(); - set_has_diagnostic_publish(); - _impl_.response_.diagnostic_publish_ = - ::google::protobuf::Message::DefaultConstruct<::io::deephaven::proto::backplane::script::grpc::GetPublishDiagnosticResponse>(GetArena()); - } - return _impl_.response_.diagnostic_publish_; -} -inline ::io::deephaven::proto::backplane::script::grpc::GetPublishDiagnosticResponse* AutoCompleteResponse::mutable_diagnostic_publish() ABSL_ATTRIBUTE_LIFETIME_BOUND { - ::io::deephaven::proto::backplane::script::grpc::GetPublishDiagnosticResponse* _msg = _internal_mutable_diagnostic_publish(); - // @@protoc_insertion_point(field_mutable:io.deephaven.proto.backplane.script.grpc.AutoCompleteResponse.diagnostic_publish) - return _msg; -} - -inline bool AutoCompleteResponse::has_response() const { - return response_case() != RESPONSE_NOT_SET; -} -inline void AutoCompleteResponse::clear_has_response() { - _impl_._oneof_case_[0] = RESPONSE_NOT_SET; -} -inline AutoCompleteResponse::ResponseCase AutoCompleteResponse::response_case() const { - return AutoCompleteResponse::ResponseCase(_impl_._oneof_case_[0]); -} -// ------------------------------------------------------------------- - -// BrowserNextResponse - -// ------------------------------------------------------------------- - -// OpenDocumentRequest - -// .io.deephaven.proto.backplane.grpc.Ticket console_id = 1 [deprecated = true]; -inline bool OpenDocumentRequest::has_console_id() const { - bool value = (_impl_._has_bits_[0] & 0x00000001u) != 0; - PROTOBUF_ASSUME(!value || _impl_.console_id_ != nullptr); - return value; -} -inline const ::io::deephaven::proto::backplane::grpc::Ticket& OpenDocumentRequest::_internal_console_id() const { - ::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_); -} -inline const ::io::deephaven::proto::backplane::grpc::Ticket& OpenDocumentRequest::console_id() const ABSL_ATTRIBUTE_LIFETIME_BOUND { - // @@protoc_insertion_point(field_get:io.deephaven.proto.backplane.script.grpc.OpenDocumentRequest.console_id) - return _internal_console_id(); -} -inline void OpenDocumentRequest::unsafe_arena_set_allocated_console_id(::io::deephaven::proto::backplane::grpc::Ticket* value) { - ::google::protobuf::internal::TSanWrite(&_impl_); - if (GetArena() == nullptr) { - delete reinterpret_cast<::google::protobuf::MessageLite*>(_impl_.console_id_); - } - _impl_.console_id_ = reinterpret_cast<::io::deephaven::proto::backplane::grpc::Ticket*>(value); - if (value != nullptr) { - _impl_._has_bits_[0] |= 0x00000001u; - } else { - _impl_._has_bits_[0] &= ~0x00000001u; - } - // @@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() { - ::google::protobuf::internal::TSanWrite(&_impl_); - - _impl_._has_bits_[0] &= ~0x00000001u; - ::io::deephaven::proto::backplane::grpc::Ticket* released = _impl_.console_id_; - _impl_.console_id_ = nullptr; -#ifdef PROTOBUF_FORCE_COPY_IN_RELEASE - auto* old = reinterpret_cast<::google::protobuf::MessageLite*>(released); - released = ::google::protobuf::internal::DuplicateIfNonNull(released); - if (GetArena() == nullptr) { - delete old; - } -#else // PROTOBUF_FORCE_COPY_IN_RELEASE - if (GetArena() != nullptr) { - released = ::google::protobuf::internal::DuplicateIfNonNull(released); - } -#endif // !PROTOBUF_FORCE_COPY_IN_RELEASE - return released; -} -inline ::io::deephaven::proto::backplane::grpc::Ticket* OpenDocumentRequest::unsafe_arena_release_console_id() { - ::google::protobuf::internal::TSanWrite(&_impl_); - // @@protoc_insertion_point(field_release:io.deephaven.proto.backplane.script.grpc.OpenDocumentRequest.console_id) - - _impl_._has_bits_[0] &= ~0x00000001u; - ::io::deephaven::proto::backplane::grpc::Ticket* temp = _impl_.console_id_; - _impl_.console_id_ = nullptr; - return temp; -} -inline ::io::deephaven::proto::backplane::grpc::Ticket* OpenDocumentRequest::_internal_mutable_console_id() { - ::google::protobuf::internal::TSanWrite(&_impl_); - if (_impl_.console_id_ == nullptr) { - 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(); - ::google::protobuf::internal::TSanWrite(&_impl_); - if (message_arena == nullptr) { - delete reinterpret_cast<::google::protobuf::MessageLite*>(_impl_.console_id_); - } - - if (value != nullptr) { - ::google::protobuf::Arena* submessage_arena = reinterpret_cast<::google::protobuf::MessageLite*>(value)->GetArena(); - if (message_arena != submessage_arena) { - value = ::google::protobuf::internal::GetOwnedMessage(message_arena, value, submessage_arena); - } - _impl_._has_bits_[0] |= 0x00000001u; - } else { - _impl_._has_bits_[0] &= ~0x00000001u; - } - - _impl_.console_id_ = reinterpret_cast<::io::deephaven::proto::backplane::grpc::Ticket*>(value); - // @@protoc_insertion_point(field_set_allocated:io.deephaven.proto.backplane.script.grpc.OpenDocumentRequest.console_id) -} - -// .io.deephaven.proto.backplane.script.grpc.TextDocumentItem text_document = 2; -inline bool OpenDocumentRequest::has_text_document() const { - bool value = (_impl_._has_bits_[0] & 0x00000002u) != 0; - PROTOBUF_ASSUME(!value || _impl_.text_document_ != nullptr); - return value; -} -inline void OpenDocumentRequest::clear_text_document() { - ::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 { - ::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_); -} -inline const ::io::deephaven::proto::backplane::script::grpc::TextDocumentItem& OpenDocumentRequest::text_document() const ABSL_ATTRIBUTE_LIFETIME_BOUND { - // @@protoc_insertion_point(field_get:io.deephaven.proto.backplane.script.grpc.OpenDocumentRequest.text_document) - return _internal_text_document(); -} -inline void OpenDocumentRequest::unsafe_arena_set_allocated_text_document(::io::deephaven::proto::backplane::script::grpc::TextDocumentItem* value) { - ::google::protobuf::internal::TSanWrite(&_impl_); - if (GetArena() == nullptr) { - delete reinterpret_cast<::google::protobuf::MessageLite*>(_impl_.text_document_); - } - _impl_.text_document_ = reinterpret_cast<::io::deephaven::proto::backplane::script::grpc::TextDocumentItem*>(value); - if (value != nullptr) { - _impl_._has_bits_[0] |= 0x00000002u; - } else { - _impl_._has_bits_[0] &= ~0x00000002u; - } - // @@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() { - ::google::protobuf::internal::TSanWrite(&_impl_); - - _impl_._has_bits_[0] &= ~0x00000002u; - ::io::deephaven::proto::backplane::script::grpc::TextDocumentItem* released = _impl_.text_document_; - _impl_.text_document_ = nullptr; -#ifdef PROTOBUF_FORCE_COPY_IN_RELEASE - auto* old = reinterpret_cast<::google::protobuf::MessageLite*>(released); - released = ::google::protobuf::internal::DuplicateIfNonNull(released); - if (GetArena() == nullptr) { - delete old; - } -#else // PROTOBUF_FORCE_COPY_IN_RELEASE - if (GetArena() != nullptr) { - released = ::google::protobuf::internal::DuplicateIfNonNull(released); - } -#endif // !PROTOBUF_FORCE_COPY_IN_RELEASE - return released; -} -inline ::io::deephaven::proto::backplane::script::grpc::TextDocumentItem* OpenDocumentRequest::unsafe_arena_release_text_document() { - ::google::protobuf::internal::TSanWrite(&_impl_); - // @@protoc_insertion_point(field_release:io.deephaven.proto.backplane.script.grpc.OpenDocumentRequest.text_document) - - _impl_._has_bits_[0] &= ~0x00000002u; - ::io::deephaven::proto::backplane::script::grpc::TextDocumentItem* temp = _impl_.text_document_; - _impl_.text_document_ = nullptr; - return temp; -} -inline ::io::deephaven::proto::backplane::script::grpc::TextDocumentItem* OpenDocumentRequest::_internal_mutable_text_document() { - ::google::protobuf::internal::TSanWrite(&_impl_); - if (_impl_.text_document_ == nullptr) { - 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(); - ::google::protobuf::internal::TSanWrite(&_impl_); - if (message_arena == nullptr) { - delete (_impl_.text_document_); - } - - if (value != nullptr) { - ::google::protobuf::Arena* submessage_arena = (value)->GetArena(); - if (message_arena != submessage_arena) { - value = ::google::protobuf::internal::GetOwnedMessage(message_arena, value, submessage_arena); - } - _impl_._has_bits_[0] |= 0x00000002u; - } else { - _impl_._has_bits_[0] &= ~0x00000002u; - } - - _impl_.text_document_ = reinterpret_cast<::io::deephaven::proto::backplane::script::grpc::TextDocumentItem*>(value); - // @@protoc_insertion_point(field_set_allocated:io.deephaven.proto.backplane.script.grpc.OpenDocumentRequest.text_document) -} - -// ------------------------------------------------------------------- - -// TextDocumentItem - -// string uri = 1; -inline void TextDocumentItem::clear_uri() { - ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.uri_.ClearToEmpty(); -} -inline const std::string& TextDocumentItem::uri() const - ABSL_ATTRIBUTE_LIFETIME_BOUND { - // @@protoc_insertion_point(field_get:io.deephaven.proto.backplane.script.grpc.TextDocumentItem.uri) - return _internal_uri(); -} -template -inline PROTOBUF_ALWAYS_INLINE void TextDocumentItem::set_uri(Arg_&& arg, - Args_... args) { - ::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) -} -inline std::string* TextDocumentItem::mutable_uri() ABSL_ATTRIBUTE_LIFETIME_BOUND { - std::string* _s = _internal_mutable_uri(); - // @@protoc_insertion_point(field_mutable:io.deephaven.proto.backplane.script.grpc.TextDocumentItem.uri) - return _s; -} -inline const std::string& TextDocumentItem::_internal_uri() const { - ::google::protobuf::internal::TSanRead(&_impl_); - return _impl_.uri_.Get(); -} -inline void TextDocumentItem::_internal_set_uri(const std::string& value) { - ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.uri_.Set(value, GetArena()); -} -inline std::string* TextDocumentItem::_internal_mutable_uri() { - ::google::protobuf::internal::TSanWrite(&_impl_); - return _impl_.uri_.Mutable( GetArena()); -} -inline std::string* TextDocumentItem::release_uri() { - ::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) { - ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.uri_.SetAllocated(value, GetArena()); - #ifdef PROTOBUF_FORCE_COPY_DEFAULT_STRING - if (_impl_.uri_.IsDefault()) { - _impl_.uri_.Set("", GetArena()); - } - #endif // PROTOBUF_FORCE_COPY_DEFAULT_STRING - // @@protoc_insertion_point(field_set_allocated:io.deephaven.proto.backplane.script.grpc.TextDocumentItem.uri) -} - -// string language_id = 2; -inline void TextDocumentItem::clear_language_id() { - ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.language_id_.ClearToEmpty(); -} -inline const std::string& TextDocumentItem::language_id() const - ABSL_ATTRIBUTE_LIFETIME_BOUND { - // @@protoc_insertion_point(field_get:io.deephaven.proto.backplane.script.grpc.TextDocumentItem.language_id) - return _internal_language_id(); -} -template -inline PROTOBUF_ALWAYS_INLINE void TextDocumentItem::set_language_id(Arg_&& arg, - Args_... args) { - ::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) -} -inline std::string* TextDocumentItem::mutable_language_id() ABSL_ATTRIBUTE_LIFETIME_BOUND { - std::string* _s = _internal_mutable_language_id(); - // @@protoc_insertion_point(field_mutable:io.deephaven.proto.backplane.script.grpc.TextDocumentItem.language_id) - return _s; -} -inline const std::string& TextDocumentItem::_internal_language_id() const { - ::google::protobuf::internal::TSanRead(&_impl_); - return _impl_.language_id_.Get(); -} -inline void TextDocumentItem::_internal_set_language_id(const std::string& value) { - ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.language_id_.Set(value, GetArena()); -} -inline std::string* TextDocumentItem::_internal_mutable_language_id() { - ::google::protobuf::internal::TSanWrite(&_impl_); - return _impl_.language_id_.Mutable( GetArena()); -} -inline std::string* TextDocumentItem::release_language_id() { - ::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) { - ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.language_id_.SetAllocated(value, GetArena()); - #ifdef PROTOBUF_FORCE_COPY_DEFAULT_STRING - if (_impl_.language_id_.IsDefault()) { - _impl_.language_id_.Set("", GetArena()); - } - #endif // PROTOBUF_FORCE_COPY_DEFAULT_STRING - // @@protoc_insertion_point(field_set_allocated:io.deephaven.proto.backplane.script.grpc.TextDocumentItem.language_id) -} - -// int32 version = 3; -inline void TextDocumentItem::clear_version() { - ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.version_ = 0; -} -inline ::int32_t TextDocumentItem::version() const { - // @@protoc_insertion_point(field_get:io.deephaven.proto.backplane.script.grpc.TextDocumentItem.version) - return _internal_version(); -} -inline void TextDocumentItem::set_version(::int32_t value) { - _internal_set_version(value); - // @@protoc_insertion_point(field_set:io.deephaven.proto.backplane.script.grpc.TextDocumentItem.version) -} -inline ::int32_t TextDocumentItem::_internal_version() const { - ::google::protobuf::internal::TSanRead(&_impl_); - return _impl_.version_; -} -inline void TextDocumentItem::_internal_set_version(::int32_t value) { - ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.version_ = value; -} - -// string text = 4; -inline void TextDocumentItem::clear_text() { - ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.text_.ClearToEmpty(); -} -inline const std::string& TextDocumentItem::text() const - ABSL_ATTRIBUTE_LIFETIME_BOUND { - // @@protoc_insertion_point(field_get:io.deephaven.proto.backplane.script.grpc.TextDocumentItem.text) - return _internal_text(); -} -template -inline PROTOBUF_ALWAYS_INLINE void TextDocumentItem::set_text(Arg_&& arg, - Args_... args) { - ::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) -} -inline std::string* TextDocumentItem::mutable_text() ABSL_ATTRIBUTE_LIFETIME_BOUND { - std::string* _s = _internal_mutable_text(); - // @@protoc_insertion_point(field_mutable:io.deephaven.proto.backplane.script.grpc.TextDocumentItem.text) - return _s; -} -inline const std::string& TextDocumentItem::_internal_text() const { - ::google::protobuf::internal::TSanRead(&_impl_); - return _impl_.text_.Get(); -} -inline void TextDocumentItem::_internal_set_text(const std::string& value) { - ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.text_.Set(value, GetArena()); -} -inline std::string* TextDocumentItem::_internal_mutable_text() { - ::google::protobuf::internal::TSanWrite(&_impl_); - return _impl_.text_.Mutable( GetArena()); -} -inline std::string* TextDocumentItem::release_text() { - ::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) { - ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.text_.SetAllocated(value, GetArena()); - #ifdef PROTOBUF_FORCE_COPY_DEFAULT_STRING - if (_impl_.text_.IsDefault()) { - _impl_.text_.Set("", GetArena()); - } - #endif // PROTOBUF_FORCE_COPY_DEFAULT_STRING - // @@protoc_insertion_point(field_set_allocated:io.deephaven.proto.backplane.script.grpc.TextDocumentItem.text) -} - -// ------------------------------------------------------------------- - -// CloseDocumentRequest - -// .io.deephaven.proto.backplane.grpc.Ticket console_id = 1 [deprecated = true]; -inline bool CloseDocumentRequest::has_console_id() const { - bool value = (_impl_._has_bits_[0] & 0x00000001u) != 0; - PROTOBUF_ASSUME(!value || _impl_.console_id_ != nullptr); - return value; -} -inline const ::io::deephaven::proto::backplane::grpc::Ticket& CloseDocumentRequest::_internal_console_id() const { - ::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_); -} -inline const ::io::deephaven::proto::backplane::grpc::Ticket& CloseDocumentRequest::console_id() const ABSL_ATTRIBUTE_LIFETIME_BOUND { - // @@protoc_insertion_point(field_get:io.deephaven.proto.backplane.script.grpc.CloseDocumentRequest.console_id) - return _internal_console_id(); -} -inline void CloseDocumentRequest::unsafe_arena_set_allocated_console_id(::io::deephaven::proto::backplane::grpc::Ticket* value) { - ::google::protobuf::internal::TSanWrite(&_impl_); - if (GetArena() == nullptr) { - delete reinterpret_cast<::google::protobuf::MessageLite*>(_impl_.console_id_); - } - _impl_.console_id_ = reinterpret_cast<::io::deephaven::proto::backplane::grpc::Ticket*>(value); - if (value != nullptr) { - _impl_._has_bits_[0] |= 0x00000001u; - } else { - _impl_._has_bits_[0] &= ~0x00000001u; - } - // @@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() { - ::google::protobuf::internal::TSanWrite(&_impl_); - - _impl_._has_bits_[0] &= ~0x00000001u; - ::io::deephaven::proto::backplane::grpc::Ticket* released = _impl_.console_id_; - _impl_.console_id_ = nullptr; -#ifdef PROTOBUF_FORCE_COPY_IN_RELEASE - auto* old = reinterpret_cast<::google::protobuf::MessageLite*>(released); - released = ::google::protobuf::internal::DuplicateIfNonNull(released); - if (GetArena() == nullptr) { - delete old; - } -#else // PROTOBUF_FORCE_COPY_IN_RELEASE - if (GetArena() != nullptr) { - released = ::google::protobuf::internal::DuplicateIfNonNull(released); - } -#endif // !PROTOBUF_FORCE_COPY_IN_RELEASE - return released; -} -inline ::io::deephaven::proto::backplane::grpc::Ticket* CloseDocumentRequest::unsafe_arena_release_console_id() { - ::google::protobuf::internal::TSanWrite(&_impl_); - // @@protoc_insertion_point(field_release:io.deephaven.proto.backplane.script.grpc.CloseDocumentRequest.console_id) - - _impl_._has_bits_[0] &= ~0x00000001u; - ::io::deephaven::proto::backplane::grpc::Ticket* temp = _impl_.console_id_; - _impl_.console_id_ = nullptr; - return temp; -} -inline ::io::deephaven::proto::backplane::grpc::Ticket* CloseDocumentRequest::_internal_mutable_console_id() { - ::google::protobuf::internal::TSanWrite(&_impl_); - if (_impl_.console_id_ == nullptr) { - 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(); - ::google::protobuf::internal::TSanWrite(&_impl_); - if (message_arena == nullptr) { - delete reinterpret_cast<::google::protobuf::MessageLite*>(_impl_.console_id_); - } - - if (value != nullptr) { - ::google::protobuf::Arena* submessage_arena = reinterpret_cast<::google::protobuf::MessageLite*>(value)->GetArena(); - if (message_arena != submessage_arena) { - value = ::google::protobuf::internal::GetOwnedMessage(message_arena, value, submessage_arena); - } - _impl_._has_bits_[0] |= 0x00000001u; - } else { - _impl_._has_bits_[0] &= ~0x00000001u; - } - - _impl_.console_id_ = reinterpret_cast<::io::deephaven::proto::backplane::grpc::Ticket*>(value); - // @@protoc_insertion_point(field_set_allocated:io.deephaven.proto.backplane.script.grpc.CloseDocumentRequest.console_id) -} - -// .io.deephaven.proto.backplane.script.grpc.VersionedTextDocumentIdentifier text_document = 2; -inline bool CloseDocumentRequest::has_text_document() const { - bool value = (_impl_._has_bits_[0] & 0x00000002u) != 0; - PROTOBUF_ASSUME(!value || _impl_.text_document_ != nullptr); - return value; -} -inline void CloseDocumentRequest::clear_text_document() { - ::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 { - ::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_); -} -inline const ::io::deephaven::proto::backplane::script::grpc::VersionedTextDocumentIdentifier& CloseDocumentRequest::text_document() const ABSL_ATTRIBUTE_LIFETIME_BOUND { - // @@protoc_insertion_point(field_get:io.deephaven.proto.backplane.script.grpc.CloseDocumentRequest.text_document) - return _internal_text_document(); -} -inline void CloseDocumentRequest::unsafe_arena_set_allocated_text_document(::io::deephaven::proto::backplane::script::grpc::VersionedTextDocumentIdentifier* value) { - ::google::protobuf::internal::TSanWrite(&_impl_); - if (GetArena() == nullptr) { - delete reinterpret_cast<::google::protobuf::MessageLite*>(_impl_.text_document_); - } - _impl_.text_document_ = reinterpret_cast<::io::deephaven::proto::backplane::script::grpc::VersionedTextDocumentIdentifier*>(value); - if (value != nullptr) { - _impl_._has_bits_[0] |= 0x00000002u; - } else { - _impl_._has_bits_[0] &= ~0x00000002u; - } - // @@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() { - ::google::protobuf::internal::TSanWrite(&_impl_); - - _impl_._has_bits_[0] &= ~0x00000002u; - ::io::deephaven::proto::backplane::script::grpc::VersionedTextDocumentIdentifier* released = _impl_.text_document_; - _impl_.text_document_ = nullptr; -#ifdef PROTOBUF_FORCE_COPY_IN_RELEASE - auto* old = reinterpret_cast<::google::protobuf::MessageLite*>(released); - released = ::google::protobuf::internal::DuplicateIfNonNull(released); - if (GetArena() == nullptr) { - delete old; - } -#else // PROTOBUF_FORCE_COPY_IN_RELEASE - if (GetArena() != nullptr) { - released = ::google::protobuf::internal::DuplicateIfNonNull(released); - } -#endif // !PROTOBUF_FORCE_COPY_IN_RELEASE - return released; -} -inline ::io::deephaven::proto::backplane::script::grpc::VersionedTextDocumentIdentifier* CloseDocumentRequest::unsafe_arena_release_text_document() { - ::google::protobuf::internal::TSanWrite(&_impl_); - // @@protoc_insertion_point(field_release:io.deephaven.proto.backplane.script.grpc.CloseDocumentRequest.text_document) - - _impl_._has_bits_[0] &= ~0x00000002u; - ::io::deephaven::proto::backplane::script::grpc::VersionedTextDocumentIdentifier* temp = _impl_.text_document_; - _impl_.text_document_ = nullptr; - return temp; -} -inline ::io::deephaven::proto::backplane::script::grpc::VersionedTextDocumentIdentifier* CloseDocumentRequest::_internal_mutable_text_document() { - ::google::protobuf::internal::TSanWrite(&_impl_); - if (_impl_.text_document_ == nullptr) { - 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(); - ::google::protobuf::internal::TSanWrite(&_impl_); - if (message_arena == nullptr) { - delete (_impl_.text_document_); - } - - if (value != nullptr) { - ::google::protobuf::Arena* submessage_arena = (value)->GetArena(); - if (message_arena != submessage_arena) { - value = ::google::protobuf::internal::GetOwnedMessage(message_arena, value, submessage_arena); - } - _impl_._has_bits_[0] |= 0x00000002u; - } else { - _impl_._has_bits_[0] &= ~0x00000002u; - } - - _impl_.text_document_ = reinterpret_cast<::io::deephaven::proto::backplane::script::grpc::VersionedTextDocumentIdentifier*>(value); - // @@protoc_insertion_point(field_set_allocated:io.deephaven.proto.backplane.script.grpc.CloseDocumentRequest.text_document) -} - -// ------------------------------------------------------------------- - -// ChangeDocumentRequest_TextDocumentContentChangeEvent - -// .io.deephaven.proto.backplane.script.grpc.DocumentRange range = 1; -inline bool ChangeDocumentRequest_TextDocumentContentChangeEvent::has_range() const { - bool value = (_impl_._has_bits_[0] & 0x00000001u) != 0; - PROTOBUF_ASSUME(!value || _impl_.range_ != nullptr); - return value; -} -inline void ChangeDocumentRequest_TextDocumentContentChangeEvent::clear_range() { - ::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 { - ::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_); -} -inline const ::io::deephaven::proto::backplane::script::grpc::DocumentRange& ChangeDocumentRequest_TextDocumentContentChangeEvent::range() const ABSL_ATTRIBUTE_LIFETIME_BOUND { - // @@protoc_insertion_point(field_get:io.deephaven.proto.backplane.script.grpc.ChangeDocumentRequest.TextDocumentContentChangeEvent.range) - return _internal_range(); -} -inline void ChangeDocumentRequest_TextDocumentContentChangeEvent::unsafe_arena_set_allocated_range(::io::deephaven::proto::backplane::script::grpc::DocumentRange* value) { - ::google::protobuf::internal::TSanWrite(&_impl_); - if (GetArena() == nullptr) { - delete reinterpret_cast<::google::protobuf::MessageLite*>(_impl_.range_); - } - _impl_.range_ = reinterpret_cast<::io::deephaven::proto::backplane::script::grpc::DocumentRange*>(value); - if (value != nullptr) { - _impl_._has_bits_[0] |= 0x00000001u; - } else { - _impl_._has_bits_[0] &= ~0x00000001u; - } - // @@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() { - ::google::protobuf::internal::TSanWrite(&_impl_); - - _impl_._has_bits_[0] &= ~0x00000001u; - ::io::deephaven::proto::backplane::script::grpc::DocumentRange* released = _impl_.range_; - _impl_.range_ = nullptr; -#ifdef PROTOBUF_FORCE_COPY_IN_RELEASE - auto* old = reinterpret_cast<::google::protobuf::MessageLite*>(released); - released = ::google::protobuf::internal::DuplicateIfNonNull(released); - if (GetArena() == nullptr) { - delete old; - } -#else // PROTOBUF_FORCE_COPY_IN_RELEASE - if (GetArena() != nullptr) { - released = ::google::protobuf::internal::DuplicateIfNonNull(released); - } -#endif // !PROTOBUF_FORCE_COPY_IN_RELEASE - return released; -} -inline ::io::deephaven::proto::backplane::script::grpc::DocumentRange* ChangeDocumentRequest_TextDocumentContentChangeEvent::unsafe_arena_release_range() { - ::google::protobuf::internal::TSanWrite(&_impl_); - // @@protoc_insertion_point(field_release:io.deephaven.proto.backplane.script.grpc.ChangeDocumentRequest.TextDocumentContentChangeEvent.range) - - _impl_._has_bits_[0] &= ~0x00000001u; - ::io::deephaven::proto::backplane::script::grpc::DocumentRange* temp = _impl_.range_; - _impl_.range_ = nullptr; - return temp; -} -inline ::io::deephaven::proto::backplane::script::grpc::DocumentRange* ChangeDocumentRequest_TextDocumentContentChangeEvent::_internal_mutable_range() { - ::google::protobuf::internal::TSanWrite(&_impl_); - if (_impl_.range_ == nullptr) { - 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(); - ::google::protobuf::internal::TSanWrite(&_impl_); - if (message_arena == nullptr) { - delete (_impl_.range_); - } - - if (value != nullptr) { - ::google::protobuf::Arena* submessage_arena = (value)->GetArena(); - if (message_arena != submessage_arena) { - value = ::google::protobuf::internal::GetOwnedMessage(message_arena, value, submessage_arena); - } - _impl_._has_bits_[0] |= 0x00000001u; - } else { - _impl_._has_bits_[0] &= ~0x00000001u; - } - - _impl_.range_ = reinterpret_cast<::io::deephaven::proto::backplane::script::grpc::DocumentRange*>(value); - // @@protoc_insertion_point(field_set_allocated:io.deephaven.proto.backplane.script.grpc.ChangeDocumentRequest.TextDocumentContentChangeEvent.range) -} - -// int32 range_length = 2; -inline void ChangeDocumentRequest_TextDocumentContentChangeEvent::clear_range_length() { - ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.range_length_ = 0; -} -inline ::int32_t ChangeDocumentRequest_TextDocumentContentChangeEvent::range_length() const { - // @@protoc_insertion_point(field_get:io.deephaven.proto.backplane.script.grpc.ChangeDocumentRequest.TextDocumentContentChangeEvent.range_length) - return _internal_range_length(); -} -inline void ChangeDocumentRequest_TextDocumentContentChangeEvent::set_range_length(::int32_t value) { - _internal_set_range_length(value); - // @@protoc_insertion_point(field_set:io.deephaven.proto.backplane.script.grpc.ChangeDocumentRequest.TextDocumentContentChangeEvent.range_length) -} -inline ::int32_t ChangeDocumentRequest_TextDocumentContentChangeEvent::_internal_range_length() const { - ::google::protobuf::internal::TSanRead(&_impl_); - return _impl_.range_length_; -} -inline void ChangeDocumentRequest_TextDocumentContentChangeEvent::_internal_set_range_length(::int32_t value) { - ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.range_length_ = value; -} - -// string text = 3; -inline void ChangeDocumentRequest_TextDocumentContentChangeEvent::clear_text() { - ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.text_.ClearToEmpty(); -} -inline const std::string& ChangeDocumentRequest_TextDocumentContentChangeEvent::text() const - ABSL_ATTRIBUTE_LIFETIME_BOUND { - // @@protoc_insertion_point(field_get:io.deephaven.proto.backplane.script.grpc.ChangeDocumentRequest.TextDocumentContentChangeEvent.text) - return _internal_text(); -} -template -inline PROTOBUF_ALWAYS_INLINE void ChangeDocumentRequest_TextDocumentContentChangeEvent::set_text(Arg_&& arg, - Args_... args) { - ::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) -} -inline std::string* ChangeDocumentRequest_TextDocumentContentChangeEvent::mutable_text() ABSL_ATTRIBUTE_LIFETIME_BOUND { - std::string* _s = _internal_mutable_text(); - // @@protoc_insertion_point(field_mutable:io.deephaven.proto.backplane.script.grpc.ChangeDocumentRequest.TextDocumentContentChangeEvent.text) - return _s; -} -inline const std::string& ChangeDocumentRequest_TextDocumentContentChangeEvent::_internal_text() const { - ::google::protobuf::internal::TSanRead(&_impl_); - return _impl_.text_.Get(); -} -inline void ChangeDocumentRequest_TextDocumentContentChangeEvent::_internal_set_text(const std::string& value) { - ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.text_.Set(value, GetArena()); -} -inline std::string* ChangeDocumentRequest_TextDocumentContentChangeEvent::_internal_mutable_text() { - ::google::protobuf::internal::TSanWrite(&_impl_); - return _impl_.text_.Mutable( GetArena()); -} -inline std::string* ChangeDocumentRequest_TextDocumentContentChangeEvent::release_text() { - ::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) { - ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.text_.SetAllocated(value, GetArena()); - #ifdef PROTOBUF_FORCE_COPY_DEFAULT_STRING - if (_impl_.text_.IsDefault()) { - _impl_.text_.Set("", GetArena()); - } - #endif // PROTOBUF_FORCE_COPY_DEFAULT_STRING - // @@protoc_insertion_point(field_set_allocated:io.deephaven.proto.backplane.script.grpc.ChangeDocumentRequest.TextDocumentContentChangeEvent.text) -} - -// ------------------------------------------------------------------- - -// ChangeDocumentRequest - -// .io.deephaven.proto.backplane.grpc.Ticket console_id = 1 [deprecated = true]; -inline bool ChangeDocumentRequest::has_console_id() const { - bool value = (_impl_._has_bits_[0] & 0x00000001u) != 0; - PROTOBUF_ASSUME(!value || _impl_.console_id_ != nullptr); - return value; -} -inline const ::io::deephaven::proto::backplane::grpc::Ticket& ChangeDocumentRequest::_internal_console_id() const { - ::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_); -} -inline const ::io::deephaven::proto::backplane::grpc::Ticket& ChangeDocumentRequest::console_id() const ABSL_ATTRIBUTE_LIFETIME_BOUND { - // @@protoc_insertion_point(field_get:io.deephaven.proto.backplane.script.grpc.ChangeDocumentRequest.console_id) - return _internal_console_id(); -} -inline void ChangeDocumentRequest::unsafe_arena_set_allocated_console_id(::io::deephaven::proto::backplane::grpc::Ticket* value) { - ::google::protobuf::internal::TSanWrite(&_impl_); - if (GetArena() == nullptr) { - delete reinterpret_cast<::google::protobuf::MessageLite*>(_impl_.console_id_); - } - _impl_.console_id_ = reinterpret_cast<::io::deephaven::proto::backplane::grpc::Ticket*>(value); - if (value != nullptr) { - _impl_._has_bits_[0] |= 0x00000001u; - } else { - _impl_._has_bits_[0] &= ~0x00000001u; - } - // @@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() { - ::google::protobuf::internal::TSanWrite(&_impl_); - - _impl_._has_bits_[0] &= ~0x00000001u; - ::io::deephaven::proto::backplane::grpc::Ticket* released = _impl_.console_id_; - _impl_.console_id_ = nullptr; -#ifdef PROTOBUF_FORCE_COPY_IN_RELEASE - auto* old = reinterpret_cast<::google::protobuf::MessageLite*>(released); - released = ::google::protobuf::internal::DuplicateIfNonNull(released); - if (GetArena() == nullptr) { - delete old; - } -#else // PROTOBUF_FORCE_COPY_IN_RELEASE - if (GetArena() != nullptr) { - released = ::google::protobuf::internal::DuplicateIfNonNull(released); - } -#endif // !PROTOBUF_FORCE_COPY_IN_RELEASE - return released; -} -inline ::io::deephaven::proto::backplane::grpc::Ticket* ChangeDocumentRequest::unsafe_arena_release_console_id() { - ::google::protobuf::internal::TSanWrite(&_impl_); - // @@protoc_insertion_point(field_release:io.deephaven.proto.backplane.script.grpc.ChangeDocumentRequest.console_id) - - _impl_._has_bits_[0] &= ~0x00000001u; - ::io::deephaven::proto::backplane::grpc::Ticket* temp = _impl_.console_id_; - _impl_.console_id_ = nullptr; - return temp; -} -inline ::io::deephaven::proto::backplane::grpc::Ticket* ChangeDocumentRequest::_internal_mutable_console_id() { - ::google::protobuf::internal::TSanWrite(&_impl_); - if (_impl_.console_id_ == nullptr) { - 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(); - ::google::protobuf::internal::TSanWrite(&_impl_); - if (message_arena == nullptr) { - delete reinterpret_cast<::google::protobuf::MessageLite*>(_impl_.console_id_); - } - - if (value != nullptr) { - ::google::protobuf::Arena* submessage_arena = reinterpret_cast<::google::protobuf::MessageLite*>(value)->GetArena(); - if (message_arena != submessage_arena) { - value = ::google::protobuf::internal::GetOwnedMessage(message_arena, value, submessage_arena); - } - _impl_._has_bits_[0] |= 0x00000001u; - } else { - _impl_._has_bits_[0] &= ~0x00000001u; - } - - _impl_.console_id_ = reinterpret_cast<::io::deephaven::proto::backplane::grpc::Ticket*>(value); - // @@protoc_insertion_point(field_set_allocated:io.deephaven.proto.backplane.script.grpc.ChangeDocumentRequest.console_id) -} - -// .io.deephaven.proto.backplane.script.grpc.VersionedTextDocumentIdentifier text_document = 2; -inline bool ChangeDocumentRequest::has_text_document() const { - bool value = (_impl_._has_bits_[0] & 0x00000002u) != 0; - PROTOBUF_ASSUME(!value || _impl_.text_document_ != nullptr); - return value; -} -inline void ChangeDocumentRequest::clear_text_document() { - ::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 { - ::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_); -} -inline const ::io::deephaven::proto::backplane::script::grpc::VersionedTextDocumentIdentifier& ChangeDocumentRequest::text_document() const ABSL_ATTRIBUTE_LIFETIME_BOUND { - // @@protoc_insertion_point(field_get:io.deephaven.proto.backplane.script.grpc.ChangeDocumentRequest.text_document) - return _internal_text_document(); -} -inline void ChangeDocumentRequest::unsafe_arena_set_allocated_text_document(::io::deephaven::proto::backplane::script::grpc::VersionedTextDocumentIdentifier* value) { - ::google::protobuf::internal::TSanWrite(&_impl_); - if (GetArena() == nullptr) { - delete reinterpret_cast<::google::protobuf::MessageLite*>(_impl_.text_document_); - } - _impl_.text_document_ = reinterpret_cast<::io::deephaven::proto::backplane::script::grpc::VersionedTextDocumentIdentifier*>(value); - if (value != nullptr) { - _impl_._has_bits_[0] |= 0x00000002u; - } else { - _impl_._has_bits_[0] &= ~0x00000002u; - } - // @@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() { - ::google::protobuf::internal::TSanWrite(&_impl_); - - _impl_._has_bits_[0] &= ~0x00000002u; - ::io::deephaven::proto::backplane::script::grpc::VersionedTextDocumentIdentifier* released = _impl_.text_document_; - _impl_.text_document_ = nullptr; -#ifdef PROTOBUF_FORCE_COPY_IN_RELEASE - auto* old = reinterpret_cast<::google::protobuf::MessageLite*>(released); - released = ::google::protobuf::internal::DuplicateIfNonNull(released); - if (GetArena() == nullptr) { - delete old; - } -#else // PROTOBUF_FORCE_COPY_IN_RELEASE - if (GetArena() != nullptr) { - released = ::google::protobuf::internal::DuplicateIfNonNull(released); - } -#endif // !PROTOBUF_FORCE_COPY_IN_RELEASE - return released; -} -inline ::io::deephaven::proto::backplane::script::grpc::VersionedTextDocumentIdentifier* ChangeDocumentRequest::unsafe_arena_release_text_document() { - ::google::protobuf::internal::TSanWrite(&_impl_); - // @@protoc_insertion_point(field_release:io.deephaven.proto.backplane.script.grpc.ChangeDocumentRequest.text_document) - - _impl_._has_bits_[0] &= ~0x00000002u; - ::io::deephaven::proto::backplane::script::grpc::VersionedTextDocumentIdentifier* temp = _impl_.text_document_; - _impl_.text_document_ = nullptr; - return temp; -} -inline ::io::deephaven::proto::backplane::script::grpc::VersionedTextDocumentIdentifier* ChangeDocumentRequest::_internal_mutable_text_document() { - ::google::protobuf::internal::TSanWrite(&_impl_); - if (_impl_.text_document_ == nullptr) { - 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(); - ::google::protobuf::internal::TSanWrite(&_impl_); - if (message_arena == nullptr) { - delete (_impl_.text_document_); - } - - if (value != nullptr) { - ::google::protobuf::Arena* submessage_arena = (value)->GetArena(); - if (message_arena != submessage_arena) { - value = ::google::protobuf::internal::GetOwnedMessage(message_arena, value, submessage_arena); - } - _impl_._has_bits_[0] |= 0x00000002u; - } else { - _impl_._has_bits_[0] &= ~0x00000002u; - } - - _impl_.text_document_ = reinterpret_cast<::io::deephaven::proto::backplane::script::grpc::VersionedTextDocumentIdentifier*>(value); - // @@protoc_insertion_point(field_set_allocated:io.deephaven.proto.backplane.script.grpc.ChangeDocumentRequest.text_document) -} - -// repeated .io.deephaven.proto.backplane.script.grpc.ChangeDocumentRequest.TextDocumentContentChangeEvent content_changes = 3; -inline int ChangeDocumentRequest::_internal_content_changes_size() const { - return _internal_content_changes().size(); -} -inline int ChangeDocumentRequest::content_changes_size() const { - return _internal_content_changes_size(); -} -inline void ChangeDocumentRequest::clear_content_changes() { - ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.content_changes_.Clear(); -} -inline ::io::deephaven::proto::backplane::script::grpc::ChangeDocumentRequest_TextDocumentContentChangeEvent* ChangeDocumentRequest::mutable_content_changes(int index) - ABSL_ATTRIBUTE_LIFETIME_BOUND { - // @@protoc_insertion_point(field_mutable:io.deephaven.proto.backplane.script.grpc.ChangeDocumentRequest.content_changes) - return _internal_mutable_content_changes()->Mutable(index); -} -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) - ::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 - ABSL_ATTRIBUTE_LIFETIME_BOUND { - // @@protoc_insertion_point(field_get:io.deephaven.proto.backplane.script.grpc.ChangeDocumentRequest.content_changes) - return _internal_content_changes().Get(index); -} -inline ::io::deephaven::proto::backplane::script::grpc::ChangeDocumentRequest_TextDocumentContentChangeEvent* ChangeDocumentRequest::add_content_changes() ABSL_ATTRIBUTE_LIFETIME_BOUND { - ::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; -} -inline const ::google::protobuf::RepeatedPtrField<::io::deephaven::proto::backplane::script::grpc::ChangeDocumentRequest_TextDocumentContentChangeEvent>& ChangeDocumentRequest::content_changes() const - ABSL_ATTRIBUTE_LIFETIME_BOUND { - // @@protoc_insertion_point(field_list:io.deephaven.proto.backplane.script.grpc.ChangeDocumentRequest.content_changes) - return _internal_content_changes(); -} -inline const ::google::protobuf::RepeatedPtrField<::io::deephaven::proto::backplane::script::grpc::ChangeDocumentRequest_TextDocumentContentChangeEvent>& -ChangeDocumentRequest::_internal_content_changes() const { - ::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() { - ::google::protobuf::internal::TSanRead(&_impl_); - return &_impl_.content_changes_; -} - -// ------------------------------------------------------------------- - -// DocumentRange - -// .io.deephaven.proto.backplane.script.grpc.Position start = 1; -inline bool DocumentRange::has_start() const { - bool value = (_impl_._has_bits_[0] & 0x00000001u) != 0; - PROTOBUF_ASSUME(!value || _impl_.start_ != nullptr); - return value; -} -inline void DocumentRange::clear_start() { - ::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 { - ::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_); -} -inline const ::io::deephaven::proto::backplane::script::grpc::Position& DocumentRange::start() const ABSL_ATTRIBUTE_LIFETIME_BOUND { - // @@protoc_insertion_point(field_get:io.deephaven.proto.backplane.script.grpc.DocumentRange.start) - return _internal_start(); -} -inline void DocumentRange::unsafe_arena_set_allocated_start(::io::deephaven::proto::backplane::script::grpc::Position* value) { - ::google::protobuf::internal::TSanWrite(&_impl_); - if (GetArena() == nullptr) { - delete reinterpret_cast<::google::protobuf::MessageLite*>(_impl_.start_); - } - _impl_.start_ = reinterpret_cast<::io::deephaven::proto::backplane::script::grpc::Position*>(value); - if (value != nullptr) { - _impl_._has_bits_[0] |= 0x00000001u; - } else { - _impl_._has_bits_[0] &= ~0x00000001u; - } - // @@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() { - ::google::protobuf::internal::TSanWrite(&_impl_); - - _impl_._has_bits_[0] &= ~0x00000001u; - ::io::deephaven::proto::backplane::script::grpc::Position* released = _impl_.start_; - _impl_.start_ = nullptr; -#ifdef PROTOBUF_FORCE_COPY_IN_RELEASE - auto* old = reinterpret_cast<::google::protobuf::MessageLite*>(released); - released = ::google::protobuf::internal::DuplicateIfNonNull(released); - if (GetArena() == nullptr) { - delete old; - } -#else // PROTOBUF_FORCE_COPY_IN_RELEASE - if (GetArena() != nullptr) { - released = ::google::protobuf::internal::DuplicateIfNonNull(released); - } -#endif // !PROTOBUF_FORCE_COPY_IN_RELEASE - return released; -} -inline ::io::deephaven::proto::backplane::script::grpc::Position* DocumentRange::unsafe_arena_release_start() { - ::google::protobuf::internal::TSanWrite(&_impl_); - // @@protoc_insertion_point(field_release:io.deephaven.proto.backplane.script.grpc.DocumentRange.start) - - _impl_._has_bits_[0] &= ~0x00000001u; - ::io::deephaven::proto::backplane::script::grpc::Position* temp = _impl_.start_; - _impl_.start_ = nullptr; - return temp; -} -inline ::io::deephaven::proto::backplane::script::grpc::Position* DocumentRange::_internal_mutable_start() { - ::google::protobuf::internal::TSanWrite(&_impl_); - if (_impl_.start_ == nullptr) { - 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(); - ::google::protobuf::internal::TSanWrite(&_impl_); - if (message_arena == nullptr) { - delete (_impl_.start_); - } - - if (value != nullptr) { - ::google::protobuf::Arena* submessage_arena = (value)->GetArena(); - if (message_arena != submessage_arena) { - value = ::google::protobuf::internal::GetOwnedMessage(message_arena, value, submessage_arena); - } - _impl_._has_bits_[0] |= 0x00000001u; - } else { - _impl_._has_bits_[0] &= ~0x00000001u; - } - - _impl_.start_ = reinterpret_cast<::io::deephaven::proto::backplane::script::grpc::Position*>(value); - // @@protoc_insertion_point(field_set_allocated:io.deephaven.proto.backplane.script.grpc.DocumentRange.start) -} - -// .io.deephaven.proto.backplane.script.grpc.Position end = 2; -inline bool DocumentRange::has_end() const { - bool value = (_impl_._has_bits_[0] & 0x00000002u) != 0; - PROTOBUF_ASSUME(!value || _impl_.end_ != nullptr); - return value; -} -inline void DocumentRange::clear_end() { - ::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 { - ::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_); -} -inline const ::io::deephaven::proto::backplane::script::grpc::Position& DocumentRange::end() const ABSL_ATTRIBUTE_LIFETIME_BOUND { - // @@protoc_insertion_point(field_get:io.deephaven.proto.backplane.script.grpc.DocumentRange.end) - return _internal_end(); -} -inline void DocumentRange::unsafe_arena_set_allocated_end(::io::deephaven::proto::backplane::script::grpc::Position* value) { - ::google::protobuf::internal::TSanWrite(&_impl_); - if (GetArena() == nullptr) { - delete reinterpret_cast<::google::protobuf::MessageLite*>(_impl_.end_); - } - _impl_.end_ = reinterpret_cast<::io::deephaven::proto::backplane::script::grpc::Position*>(value); - if (value != nullptr) { - _impl_._has_bits_[0] |= 0x00000002u; - } else { - _impl_._has_bits_[0] &= ~0x00000002u; - } - // @@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() { - ::google::protobuf::internal::TSanWrite(&_impl_); - - _impl_._has_bits_[0] &= ~0x00000002u; - ::io::deephaven::proto::backplane::script::grpc::Position* released = _impl_.end_; - _impl_.end_ = nullptr; -#ifdef PROTOBUF_FORCE_COPY_IN_RELEASE - auto* old = reinterpret_cast<::google::protobuf::MessageLite*>(released); - released = ::google::protobuf::internal::DuplicateIfNonNull(released); - if (GetArena() == nullptr) { - delete old; - } -#else // PROTOBUF_FORCE_COPY_IN_RELEASE - if (GetArena() != nullptr) { - released = ::google::protobuf::internal::DuplicateIfNonNull(released); - } -#endif // !PROTOBUF_FORCE_COPY_IN_RELEASE - return released; -} -inline ::io::deephaven::proto::backplane::script::grpc::Position* DocumentRange::unsafe_arena_release_end() { - ::google::protobuf::internal::TSanWrite(&_impl_); - // @@protoc_insertion_point(field_release:io.deephaven.proto.backplane.script.grpc.DocumentRange.end) - - _impl_._has_bits_[0] &= ~0x00000002u; - ::io::deephaven::proto::backplane::script::grpc::Position* temp = _impl_.end_; - _impl_.end_ = nullptr; - return temp; -} -inline ::io::deephaven::proto::backplane::script::grpc::Position* DocumentRange::_internal_mutable_end() { - ::google::protobuf::internal::TSanWrite(&_impl_); - if (_impl_.end_ == nullptr) { - 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(); - ::google::protobuf::internal::TSanWrite(&_impl_); - if (message_arena == nullptr) { - delete (_impl_.end_); - } - - if (value != nullptr) { - ::google::protobuf::Arena* submessage_arena = (value)->GetArena(); - if (message_arena != submessage_arena) { - value = ::google::protobuf::internal::GetOwnedMessage(message_arena, value, submessage_arena); - } - _impl_._has_bits_[0] |= 0x00000002u; - } else { - _impl_._has_bits_[0] &= ~0x00000002u; - } - - _impl_.end_ = reinterpret_cast<::io::deephaven::proto::backplane::script::grpc::Position*>(value); - // @@protoc_insertion_point(field_set_allocated:io.deephaven.proto.backplane.script.grpc.DocumentRange.end) -} - -// ------------------------------------------------------------------- - -// VersionedTextDocumentIdentifier - -// string uri = 1; -inline void VersionedTextDocumentIdentifier::clear_uri() { - ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.uri_.ClearToEmpty(); -} -inline const std::string& VersionedTextDocumentIdentifier::uri() const - ABSL_ATTRIBUTE_LIFETIME_BOUND { - // @@protoc_insertion_point(field_get:io.deephaven.proto.backplane.script.grpc.VersionedTextDocumentIdentifier.uri) - return _internal_uri(); -} -template -inline PROTOBUF_ALWAYS_INLINE void VersionedTextDocumentIdentifier::set_uri(Arg_&& arg, - Args_... args) { - ::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) -} -inline std::string* VersionedTextDocumentIdentifier::mutable_uri() ABSL_ATTRIBUTE_LIFETIME_BOUND { - std::string* _s = _internal_mutable_uri(); - // @@protoc_insertion_point(field_mutable:io.deephaven.proto.backplane.script.grpc.VersionedTextDocumentIdentifier.uri) - return _s; -} -inline const std::string& VersionedTextDocumentIdentifier::_internal_uri() const { - ::google::protobuf::internal::TSanRead(&_impl_); - return _impl_.uri_.Get(); -} -inline void VersionedTextDocumentIdentifier::_internal_set_uri(const std::string& value) { - ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.uri_.Set(value, GetArena()); -} -inline std::string* VersionedTextDocumentIdentifier::_internal_mutable_uri() { - ::google::protobuf::internal::TSanWrite(&_impl_); - return _impl_.uri_.Mutable( GetArena()); -} -inline std::string* VersionedTextDocumentIdentifier::release_uri() { - ::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) { - ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.uri_.SetAllocated(value, GetArena()); - #ifdef PROTOBUF_FORCE_COPY_DEFAULT_STRING - if (_impl_.uri_.IsDefault()) { - _impl_.uri_.Set("", GetArena()); - } - #endif // PROTOBUF_FORCE_COPY_DEFAULT_STRING - // @@protoc_insertion_point(field_set_allocated:io.deephaven.proto.backplane.script.grpc.VersionedTextDocumentIdentifier.uri) -} - -// int32 version = 2; -inline void VersionedTextDocumentIdentifier::clear_version() { - ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.version_ = 0; -} -inline ::int32_t VersionedTextDocumentIdentifier::version() const { - // @@protoc_insertion_point(field_get:io.deephaven.proto.backplane.script.grpc.VersionedTextDocumentIdentifier.version) - return _internal_version(); -} -inline void VersionedTextDocumentIdentifier::set_version(::int32_t value) { - _internal_set_version(value); - // @@protoc_insertion_point(field_set:io.deephaven.proto.backplane.script.grpc.VersionedTextDocumentIdentifier.version) -} -inline ::int32_t VersionedTextDocumentIdentifier::_internal_version() const { - ::google::protobuf::internal::TSanRead(&_impl_); - return _impl_.version_; -} -inline void VersionedTextDocumentIdentifier::_internal_set_version(::int32_t value) { - ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.version_ = value; -} - -// ------------------------------------------------------------------- - -// Position - -// int32 line = 1; -inline void Position::clear_line() { - ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.line_ = 0; -} -inline ::int32_t Position::line() const { - // @@protoc_insertion_point(field_get:io.deephaven.proto.backplane.script.grpc.Position.line) - return _internal_line(); -} -inline void Position::set_line(::int32_t value) { - _internal_set_line(value); - // @@protoc_insertion_point(field_set:io.deephaven.proto.backplane.script.grpc.Position.line) -} -inline ::int32_t Position::_internal_line() const { - ::google::protobuf::internal::TSanRead(&_impl_); - return _impl_.line_; -} -inline void Position::_internal_set_line(::int32_t value) { - ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.line_ = value; -} - -// int32 character = 2; -inline void Position::clear_character() { - ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.character_ = 0; -} -inline ::int32_t Position::character() const { - // @@protoc_insertion_point(field_get:io.deephaven.proto.backplane.script.grpc.Position.character) - return _internal_character(); -} -inline void Position::set_character(::int32_t value) { - _internal_set_character(value); - // @@protoc_insertion_point(field_set:io.deephaven.proto.backplane.script.grpc.Position.character) -} -inline ::int32_t Position::_internal_character() const { - ::google::protobuf::internal::TSanRead(&_impl_); - return _impl_.character_; -} -inline void Position::_internal_set_character(::int32_t value) { - ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.character_ = value; -} - -// ------------------------------------------------------------------- - -// MarkupContent - -// string kind = 1; -inline void MarkupContent::clear_kind() { - ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.kind_.ClearToEmpty(); -} -inline const std::string& MarkupContent::kind() const - ABSL_ATTRIBUTE_LIFETIME_BOUND { - // @@protoc_insertion_point(field_get:io.deephaven.proto.backplane.script.grpc.MarkupContent.kind) - return _internal_kind(); -} -template -inline PROTOBUF_ALWAYS_INLINE void MarkupContent::set_kind(Arg_&& arg, - Args_... args) { - ::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) -} -inline std::string* MarkupContent::mutable_kind() ABSL_ATTRIBUTE_LIFETIME_BOUND { - std::string* _s = _internal_mutable_kind(); - // @@protoc_insertion_point(field_mutable:io.deephaven.proto.backplane.script.grpc.MarkupContent.kind) - return _s; -} -inline const std::string& MarkupContent::_internal_kind() const { - ::google::protobuf::internal::TSanRead(&_impl_); - return _impl_.kind_.Get(); -} -inline void MarkupContent::_internal_set_kind(const std::string& value) { - ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.kind_.Set(value, GetArena()); -} -inline std::string* MarkupContent::_internal_mutable_kind() { - ::google::protobuf::internal::TSanWrite(&_impl_); - return _impl_.kind_.Mutable( GetArena()); -} -inline std::string* MarkupContent::release_kind() { - ::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) { - ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.kind_.SetAllocated(value, GetArena()); - #ifdef PROTOBUF_FORCE_COPY_DEFAULT_STRING - if (_impl_.kind_.IsDefault()) { - _impl_.kind_.Set("", GetArena()); - } - #endif // PROTOBUF_FORCE_COPY_DEFAULT_STRING - // @@protoc_insertion_point(field_set_allocated:io.deephaven.proto.backplane.script.grpc.MarkupContent.kind) -} - -// string value = 2; -inline void MarkupContent::clear_value() { - ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.value_.ClearToEmpty(); -} -inline const std::string& MarkupContent::value() const - ABSL_ATTRIBUTE_LIFETIME_BOUND { - // @@protoc_insertion_point(field_get:io.deephaven.proto.backplane.script.grpc.MarkupContent.value) - return _internal_value(); -} -template -inline PROTOBUF_ALWAYS_INLINE void MarkupContent::set_value(Arg_&& arg, - Args_... args) { - ::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) -} -inline std::string* MarkupContent::mutable_value() ABSL_ATTRIBUTE_LIFETIME_BOUND { - std::string* _s = _internal_mutable_value(); - // @@protoc_insertion_point(field_mutable:io.deephaven.proto.backplane.script.grpc.MarkupContent.value) - return _s; -} -inline const std::string& MarkupContent::_internal_value() const { - ::google::protobuf::internal::TSanRead(&_impl_); - return _impl_.value_.Get(); -} -inline void MarkupContent::_internal_set_value(const std::string& value) { - ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.value_.Set(value, GetArena()); -} -inline std::string* MarkupContent::_internal_mutable_value() { - ::google::protobuf::internal::TSanWrite(&_impl_); - return _impl_.value_.Mutable( GetArena()); -} -inline std::string* MarkupContent::release_value() { - ::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) { - ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.value_.SetAllocated(value, GetArena()); - #ifdef PROTOBUF_FORCE_COPY_DEFAULT_STRING - if (_impl_.value_.IsDefault()) { - _impl_.value_.Set("", GetArena()); - } - #endif // PROTOBUF_FORCE_COPY_DEFAULT_STRING - // @@protoc_insertion_point(field_set_allocated:io.deephaven.proto.backplane.script.grpc.MarkupContent.value) -} - -// ------------------------------------------------------------------- - -// GetCompletionItemsRequest - -// .io.deephaven.proto.backplane.grpc.Ticket console_id = 1 [deprecated = true]; -inline bool GetCompletionItemsRequest::has_console_id() const { - bool value = (_impl_._has_bits_[0] & 0x00000001u) != 0; - PROTOBUF_ASSUME(!value || _impl_.console_id_ != nullptr); - return value; -} -inline const ::io::deephaven::proto::backplane::grpc::Ticket& GetCompletionItemsRequest::_internal_console_id() const { - ::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_); -} -inline const ::io::deephaven::proto::backplane::grpc::Ticket& GetCompletionItemsRequest::console_id() const ABSL_ATTRIBUTE_LIFETIME_BOUND { - // @@protoc_insertion_point(field_get:io.deephaven.proto.backplane.script.grpc.GetCompletionItemsRequest.console_id) - return _internal_console_id(); -} -inline void GetCompletionItemsRequest::unsafe_arena_set_allocated_console_id(::io::deephaven::proto::backplane::grpc::Ticket* value) { - ::google::protobuf::internal::TSanWrite(&_impl_); - if (GetArena() == nullptr) { - delete reinterpret_cast<::google::protobuf::MessageLite*>(_impl_.console_id_); - } - _impl_.console_id_ = reinterpret_cast<::io::deephaven::proto::backplane::grpc::Ticket*>(value); - if (value != nullptr) { - _impl_._has_bits_[0] |= 0x00000001u; - } else { - _impl_._has_bits_[0] &= ~0x00000001u; - } - // @@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() { - ::google::protobuf::internal::TSanWrite(&_impl_); - - _impl_._has_bits_[0] &= ~0x00000001u; - ::io::deephaven::proto::backplane::grpc::Ticket* released = _impl_.console_id_; - _impl_.console_id_ = nullptr; -#ifdef PROTOBUF_FORCE_COPY_IN_RELEASE - auto* old = reinterpret_cast<::google::protobuf::MessageLite*>(released); - released = ::google::protobuf::internal::DuplicateIfNonNull(released); - if (GetArena() == nullptr) { - delete old; - } -#else // PROTOBUF_FORCE_COPY_IN_RELEASE - if (GetArena() != nullptr) { - released = ::google::protobuf::internal::DuplicateIfNonNull(released); - } -#endif // !PROTOBUF_FORCE_COPY_IN_RELEASE - return released; -} -inline ::io::deephaven::proto::backplane::grpc::Ticket* GetCompletionItemsRequest::unsafe_arena_release_console_id() { - ::google::protobuf::internal::TSanWrite(&_impl_); - // @@protoc_insertion_point(field_release:io.deephaven.proto.backplane.script.grpc.GetCompletionItemsRequest.console_id) - - _impl_._has_bits_[0] &= ~0x00000001u; - ::io::deephaven::proto::backplane::grpc::Ticket* temp = _impl_.console_id_; - _impl_.console_id_ = nullptr; - return temp; -} -inline ::io::deephaven::proto::backplane::grpc::Ticket* GetCompletionItemsRequest::_internal_mutable_console_id() { - ::google::protobuf::internal::TSanWrite(&_impl_); - if (_impl_.console_id_ == nullptr) { - 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(); - ::google::protobuf::internal::TSanWrite(&_impl_); - if (message_arena == nullptr) { - delete reinterpret_cast<::google::protobuf::MessageLite*>(_impl_.console_id_); - } - - if (value != nullptr) { - ::google::protobuf::Arena* submessage_arena = reinterpret_cast<::google::protobuf::MessageLite*>(value)->GetArena(); - if (message_arena != submessage_arena) { - value = ::google::protobuf::internal::GetOwnedMessage(message_arena, value, submessage_arena); - } - _impl_._has_bits_[0] |= 0x00000001u; - } else { - _impl_._has_bits_[0] &= ~0x00000001u; - } - - _impl_.console_id_ = reinterpret_cast<::io::deephaven::proto::backplane::grpc::Ticket*>(value); - // @@protoc_insertion_point(field_set_allocated:io.deephaven.proto.backplane.script.grpc.GetCompletionItemsRequest.console_id) -} - -// .io.deephaven.proto.backplane.script.grpc.CompletionContext context = 2; -inline bool GetCompletionItemsRequest::has_context() const { - bool value = (_impl_._has_bits_[0] & 0x00000002u) != 0; - PROTOBUF_ASSUME(!value || _impl_.context_ != nullptr); - return value; -} -inline void GetCompletionItemsRequest::clear_context() { - ::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 { - ::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_); -} -inline const ::io::deephaven::proto::backplane::script::grpc::CompletionContext& GetCompletionItemsRequest::context() const ABSL_ATTRIBUTE_LIFETIME_BOUND { - // @@protoc_insertion_point(field_get:io.deephaven.proto.backplane.script.grpc.GetCompletionItemsRequest.context) - return _internal_context(); -} -inline void GetCompletionItemsRequest::unsafe_arena_set_allocated_context(::io::deephaven::proto::backplane::script::grpc::CompletionContext* value) { - ::google::protobuf::internal::TSanWrite(&_impl_); - if (GetArena() == nullptr) { - delete reinterpret_cast<::google::protobuf::MessageLite*>(_impl_.context_); - } - _impl_.context_ = reinterpret_cast<::io::deephaven::proto::backplane::script::grpc::CompletionContext*>(value); - if (value != nullptr) { - _impl_._has_bits_[0] |= 0x00000002u; - } else { - _impl_._has_bits_[0] &= ~0x00000002u; - } - // @@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() { - ::google::protobuf::internal::TSanWrite(&_impl_); - - _impl_._has_bits_[0] &= ~0x00000002u; - ::io::deephaven::proto::backplane::script::grpc::CompletionContext* released = _impl_.context_; - _impl_.context_ = nullptr; -#ifdef PROTOBUF_FORCE_COPY_IN_RELEASE - auto* old = reinterpret_cast<::google::protobuf::MessageLite*>(released); - released = ::google::protobuf::internal::DuplicateIfNonNull(released); - if (GetArena() == nullptr) { - delete old; - } -#else // PROTOBUF_FORCE_COPY_IN_RELEASE - if (GetArena() != nullptr) { - released = ::google::protobuf::internal::DuplicateIfNonNull(released); - } -#endif // !PROTOBUF_FORCE_COPY_IN_RELEASE - return released; -} -inline ::io::deephaven::proto::backplane::script::grpc::CompletionContext* GetCompletionItemsRequest::unsafe_arena_release_context() { - ::google::protobuf::internal::TSanWrite(&_impl_); - // @@protoc_insertion_point(field_release:io.deephaven.proto.backplane.script.grpc.GetCompletionItemsRequest.context) - - _impl_._has_bits_[0] &= ~0x00000002u; - ::io::deephaven::proto::backplane::script::grpc::CompletionContext* temp = _impl_.context_; - _impl_.context_ = nullptr; - return temp; -} -inline ::io::deephaven::proto::backplane::script::grpc::CompletionContext* GetCompletionItemsRequest::_internal_mutable_context() { - ::google::protobuf::internal::TSanWrite(&_impl_); - if (_impl_.context_ == nullptr) { - 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(); - ::google::protobuf::internal::TSanWrite(&_impl_); - if (message_arena == nullptr) { - delete (_impl_.context_); - } - - if (value != nullptr) { - ::google::protobuf::Arena* submessage_arena = (value)->GetArena(); - if (message_arena != submessage_arena) { - value = ::google::protobuf::internal::GetOwnedMessage(message_arena, value, submessage_arena); - } - _impl_._has_bits_[0] |= 0x00000002u; - } else { - _impl_._has_bits_[0] &= ~0x00000002u; - } - - _impl_.context_ = reinterpret_cast<::io::deephaven::proto::backplane::script::grpc::CompletionContext*>(value); - // @@protoc_insertion_point(field_set_allocated:io.deephaven.proto.backplane.script.grpc.GetCompletionItemsRequest.context) -} - -// .io.deephaven.proto.backplane.script.grpc.VersionedTextDocumentIdentifier text_document = 3; -inline bool GetCompletionItemsRequest::has_text_document() const { - bool value = (_impl_._has_bits_[0] & 0x00000004u) != 0; - PROTOBUF_ASSUME(!value || _impl_.text_document_ != nullptr); - return value; -} -inline void GetCompletionItemsRequest::clear_text_document() { - ::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 { - ::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_); -} -inline const ::io::deephaven::proto::backplane::script::grpc::VersionedTextDocumentIdentifier& GetCompletionItemsRequest::text_document() const ABSL_ATTRIBUTE_LIFETIME_BOUND { - // @@protoc_insertion_point(field_get:io.deephaven.proto.backplane.script.grpc.GetCompletionItemsRequest.text_document) - return _internal_text_document(); -} -inline void GetCompletionItemsRequest::unsafe_arena_set_allocated_text_document(::io::deephaven::proto::backplane::script::grpc::VersionedTextDocumentIdentifier* value) { - ::google::protobuf::internal::TSanWrite(&_impl_); - if (GetArena() == nullptr) { - delete reinterpret_cast<::google::protobuf::MessageLite*>(_impl_.text_document_); - } - _impl_.text_document_ = reinterpret_cast<::io::deephaven::proto::backplane::script::grpc::VersionedTextDocumentIdentifier*>(value); - if (value != nullptr) { - _impl_._has_bits_[0] |= 0x00000004u; - } else { - _impl_._has_bits_[0] &= ~0x00000004u; - } - // @@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() { - ::google::protobuf::internal::TSanWrite(&_impl_); - - _impl_._has_bits_[0] &= ~0x00000004u; - ::io::deephaven::proto::backplane::script::grpc::VersionedTextDocumentIdentifier* released = _impl_.text_document_; - _impl_.text_document_ = nullptr; -#ifdef PROTOBUF_FORCE_COPY_IN_RELEASE - auto* old = reinterpret_cast<::google::protobuf::MessageLite*>(released); - released = ::google::protobuf::internal::DuplicateIfNonNull(released); - if (GetArena() == nullptr) { - delete old; - } -#else // PROTOBUF_FORCE_COPY_IN_RELEASE - if (GetArena() != nullptr) { - released = ::google::protobuf::internal::DuplicateIfNonNull(released); - } -#endif // !PROTOBUF_FORCE_COPY_IN_RELEASE - return released; -} -inline ::io::deephaven::proto::backplane::script::grpc::VersionedTextDocumentIdentifier* GetCompletionItemsRequest::unsafe_arena_release_text_document() { - ::google::protobuf::internal::TSanWrite(&_impl_); - // @@protoc_insertion_point(field_release:io.deephaven.proto.backplane.script.grpc.GetCompletionItemsRequest.text_document) - - _impl_._has_bits_[0] &= ~0x00000004u; - ::io::deephaven::proto::backplane::script::grpc::VersionedTextDocumentIdentifier* temp = _impl_.text_document_; - _impl_.text_document_ = nullptr; - return temp; -} -inline ::io::deephaven::proto::backplane::script::grpc::VersionedTextDocumentIdentifier* GetCompletionItemsRequest::_internal_mutable_text_document() { - ::google::protobuf::internal::TSanWrite(&_impl_); - if (_impl_.text_document_ == nullptr) { - 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(); - ::google::protobuf::internal::TSanWrite(&_impl_); - if (message_arena == nullptr) { - delete (_impl_.text_document_); - } - - if (value != nullptr) { - ::google::protobuf::Arena* submessage_arena = (value)->GetArena(); - if (message_arena != submessage_arena) { - value = ::google::protobuf::internal::GetOwnedMessage(message_arena, value, submessage_arena); - } - _impl_._has_bits_[0] |= 0x00000004u; - } else { - _impl_._has_bits_[0] &= ~0x00000004u; - } - - _impl_.text_document_ = reinterpret_cast<::io::deephaven::proto::backplane::script::grpc::VersionedTextDocumentIdentifier*>(value); - // @@protoc_insertion_point(field_set_allocated:io.deephaven.proto.backplane.script.grpc.GetCompletionItemsRequest.text_document) -} - -// .io.deephaven.proto.backplane.script.grpc.Position position = 4; -inline bool GetCompletionItemsRequest::has_position() const { - bool value = (_impl_._has_bits_[0] & 0x00000008u) != 0; - PROTOBUF_ASSUME(!value || _impl_.position_ != nullptr); - return value; -} -inline void GetCompletionItemsRequest::clear_position() { - ::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 { - ::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_); -} -inline const ::io::deephaven::proto::backplane::script::grpc::Position& GetCompletionItemsRequest::position() const ABSL_ATTRIBUTE_LIFETIME_BOUND { - // @@protoc_insertion_point(field_get:io.deephaven.proto.backplane.script.grpc.GetCompletionItemsRequest.position) - return _internal_position(); -} -inline void GetCompletionItemsRequest::unsafe_arena_set_allocated_position(::io::deephaven::proto::backplane::script::grpc::Position* value) { - ::google::protobuf::internal::TSanWrite(&_impl_); - if (GetArena() == nullptr) { - delete reinterpret_cast<::google::protobuf::MessageLite*>(_impl_.position_); - } - _impl_.position_ = reinterpret_cast<::io::deephaven::proto::backplane::script::grpc::Position*>(value); - if (value != nullptr) { - _impl_._has_bits_[0] |= 0x00000008u; - } else { - _impl_._has_bits_[0] &= ~0x00000008u; - } - // @@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() { - ::google::protobuf::internal::TSanWrite(&_impl_); - - _impl_._has_bits_[0] &= ~0x00000008u; - ::io::deephaven::proto::backplane::script::grpc::Position* released = _impl_.position_; - _impl_.position_ = nullptr; -#ifdef PROTOBUF_FORCE_COPY_IN_RELEASE - auto* old = reinterpret_cast<::google::protobuf::MessageLite*>(released); - released = ::google::protobuf::internal::DuplicateIfNonNull(released); - if (GetArena() == nullptr) { - delete old; - } -#else // PROTOBUF_FORCE_COPY_IN_RELEASE - if (GetArena() != nullptr) { - released = ::google::protobuf::internal::DuplicateIfNonNull(released); - } -#endif // !PROTOBUF_FORCE_COPY_IN_RELEASE - return released; -} -inline ::io::deephaven::proto::backplane::script::grpc::Position* GetCompletionItemsRequest::unsafe_arena_release_position() { - ::google::protobuf::internal::TSanWrite(&_impl_); - // @@protoc_insertion_point(field_release:io.deephaven.proto.backplane.script.grpc.GetCompletionItemsRequest.position) - - _impl_._has_bits_[0] &= ~0x00000008u; - ::io::deephaven::proto::backplane::script::grpc::Position* temp = _impl_.position_; - _impl_.position_ = nullptr; - return temp; -} -inline ::io::deephaven::proto::backplane::script::grpc::Position* GetCompletionItemsRequest::_internal_mutable_position() { - ::google::protobuf::internal::TSanWrite(&_impl_); - if (_impl_.position_ == nullptr) { - 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(); - ::google::protobuf::internal::TSanWrite(&_impl_); - if (message_arena == nullptr) { - delete (_impl_.position_); - } - - if (value != nullptr) { - ::google::protobuf::Arena* submessage_arena = (value)->GetArena(); - if (message_arena != submessage_arena) { - value = ::google::protobuf::internal::GetOwnedMessage(message_arena, value, submessage_arena); - } - _impl_._has_bits_[0] |= 0x00000008u; - } else { - _impl_._has_bits_[0] &= ~0x00000008u; - } - - _impl_.position_ = reinterpret_cast<::io::deephaven::proto::backplane::script::grpc::Position*>(value); - // @@protoc_insertion_point(field_set_allocated:io.deephaven.proto.backplane.script.grpc.GetCompletionItemsRequest.position) -} - -// int32 request_id = 5 [deprecated = true]; -inline void GetCompletionItemsRequest::clear_request_id() { - ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.request_id_ = 0; -} -inline ::int32_t GetCompletionItemsRequest::request_id() const { - // @@protoc_insertion_point(field_get:io.deephaven.proto.backplane.script.grpc.GetCompletionItemsRequest.request_id) - return _internal_request_id(); -} -inline void GetCompletionItemsRequest::set_request_id(::int32_t value) { - _internal_set_request_id(value); - // @@protoc_insertion_point(field_set:io.deephaven.proto.backplane.script.grpc.GetCompletionItemsRequest.request_id) -} -inline ::int32_t GetCompletionItemsRequest::_internal_request_id() const { - ::google::protobuf::internal::TSanRead(&_impl_); - return _impl_.request_id_; -} -inline void GetCompletionItemsRequest::_internal_set_request_id(::int32_t value) { - ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.request_id_ = value; -} - -// ------------------------------------------------------------------- - -// CompletionContext - -// int32 trigger_kind = 1; -inline void CompletionContext::clear_trigger_kind() { - ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.trigger_kind_ = 0; -} -inline ::int32_t CompletionContext::trigger_kind() const { - // @@protoc_insertion_point(field_get:io.deephaven.proto.backplane.script.grpc.CompletionContext.trigger_kind) - return _internal_trigger_kind(); -} -inline void CompletionContext::set_trigger_kind(::int32_t value) { - _internal_set_trigger_kind(value); - // @@protoc_insertion_point(field_set:io.deephaven.proto.backplane.script.grpc.CompletionContext.trigger_kind) -} -inline ::int32_t CompletionContext::_internal_trigger_kind() const { - ::google::protobuf::internal::TSanRead(&_impl_); - return _impl_.trigger_kind_; -} -inline void CompletionContext::_internal_set_trigger_kind(::int32_t value) { - ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.trigger_kind_ = value; -} - -// string trigger_character = 2; -inline void CompletionContext::clear_trigger_character() { - ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.trigger_character_.ClearToEmpty(); -} -inline const std::string& CompletionContext::trigger_character() const - ABSL_ATTRIBUTE_LIFETIME_BOUND { - // @@protoc_insertion_point(field_get:io.deephaven.proto.backplane.script.grpc.CompletionContext.trigger_character) - return _internal_trigger_character(); -} -template -inline PROTOBUF_ALWAYS_INLINE void CompletionContext::set_trigger_character(Arg_&& arg, - Args_... args) { - ::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) -} -inline std::string* CompletionContext::mutable_trigger_character() ABSL_ATTRIBUTE_LIFETIME_BOUND { - std::string* _s = _internal_mutable_trigger_character(); - // @@protoc_insertion_point(field_mutable:io.deephaven.proto.backplane.script.grpc.CompletionContext.trigger_character) - return _s; -} -inline const std::string& CompletionContext::_internal_trigger_character() const { - ::google::protobuf::internal::TSanRead(&_impl_); - return _impl_.trigger_character_.Get(); -} -inline void CompletionContext::_internal_set_trigger_character(const std::string& value) { - ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.trigger_character_.Set(value, GetArena()); -} -inline std::string* CompletionContext::_internal_mutable_trigger_character() { - ::google::protobuf::internal::TSanWrite(&_impl_); - return _impl_.trigger_character_.Mutable( GetArena()); -} -inline std::string* CompletionContext::release_trigger_character() { - ::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) { - ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.trigger_character_.SetAllocated(value, GetArena()); - #ifdef PROTOBUF_FORCE_COPY_DEFAULT_STRING - if (_impl_.trigger_character_.IsDefault()) { - _impl_.trigger_character_.Set("", GetArena()); - } - #endif // PROTOBUF_FORCE_COPY_DEFAULT_STRING - // @@protoc_insertion_point(field_set_allocated:io.deephaven.proto.backplane.script.grpc.CompletionContext.trigger_character) -} - -// ------------------------------------------------------------------- - -// GetCompletionItemsResponse - -// repeated .io.deephaven.proto.backplane.script.grpc.CompletionItem items = 1; -inline int GetCompletionItemsResponse::_internal_items_size() const { - return _internal_items().size(); -} -inline int GetCompletionItemsResponse::items_size() const { - return _internal_items_size(); -} -inline void GetCompletionItemsResponse::clear_items() { - ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.items_.Clear(); -} -inline ::io::deephaven::proto::backplane::script::grpc::CompletionItem* GetCompletionItemsResponse::mutable_items(int index) - ABSL_ATTRIBUTE_LIFETIME_BOUND { - // @@protoc_insertion_point(field_mutable:io.deephaven.proto.backplane.script.grpc.GetCompletionItemsResponse.items) - return _internal_mutable_items()->Mutable(index); -} -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) - ::google::protobuf::internal::TSanWrite(&_impl_); - return _internal_mutable_items(); -} -inline const ::io::deephaven::proto::backplane::script::grpc::CompletionItem& GetCompletionItemsResponse::items(int index) const - ABSL_ATTRIBUTE_LIFETIME_BOUND { - // @@protoc_insertion_point(field_get:io.deephaven.proto.backplane.script.grpc.GetCompletionItemsResponse.items) - return _internal_items().Get(index); -} -inline ::io::deephaven::proto::backplane::script::grpc::CompletionItem* GetCompletionItemsResponse::add_items() ABSL_ATTRIBUTE_LIFETIME_BOUND { - ::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; -} -inline const ::google::protobuf::RepeatedPtrField<::io::deephaven::proto::backplane::script::grpc::CompletionItem>& GetCompletionItemsResponse::items() const - ABSL_ATTRIBUTE_LIFETIME_BOUND { - // @@protoc_insertion_point(field_list:io.deephaven.proto.backplane.script.grpc.GetCompletionItemsResponse.items) - return _internal_items(); -} -inline const ::google::protobuf::RepeatedPtrField<::io::deephaven::proto::backplane::script::grpc::CompletionItem>& -GetCompletionItemsResponse::_internal_items() const { - ::google::protobuf::internal::TSanRead(&_impl_); - return _impl_.items_; -} -inline ::google::protobuf::RepeatedPtrField<::io::deephaven::proto::backplane::script::grpc::CompletionItem>* -GetCompletionItemsResponse::_internal_mutable_items() { - ::google::protobuf::internal::TSanRead(&_impl_); - return &_impl_.items_; -} - -// int32 request_id = 2 [deprecated = true]; -inline void GetCompletionItemsResponse::clear_request_id() { - ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.request_id_ = 0; -} -inline ::int32_t GetCompletionItemsResponse::request_id() const { - // @@protoc_insertion_point(field_get:io.deephaven.proto.backplane.script.grpc.GetCompletionItemsResponse.request_id) - return _internal_request_id(); -} -inline void GetCompletionItemsResponse::set_request_id(::int32_t value) { - _internal_set_request_id(value); - // @@protoc_insertion_point(field_set:io.deephaven.proto.backplane.script.grpc.GetCompletionItemsResponse.request_id) -} -inline ::int32_t GetCompletionItemsResponse::_internal_request_id() const { - ::google::protobuf::internal::TSanRead(&_impl_); - return _impl_.request_id_; -} -inline void GetCompletionItemsResponse::_internal_set_request_id(::int32_t value) { - ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.request_id_ = value; -} - -// bool success = 3 [deprecated = true]; -inline void GetCompletionItemsResponse::clear_success() { - ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.success_ = false; -} -inline bool GetCompletionItemsResponse::success() const { - // @@protoc_insertion_point(field_get:io.deephaven.proto.backplane.script.grpc.GetCompletionItemsResponse.success) - return _internal_success(); -} -inline void GetCompletionItemsResponse::set_success(bool value) { - _internal_set_success(value); - // @@protoc_insertion_point(field_set:io.deephaven.proto.backplane.script.grpc.GetCompletionItemsResponse.success) -} -inline bool GetCompletionItemsResponse::_internal_success() const { - ::google::protobuf::internal::TSanRead(&_impl_); - return _impl_.success_; -} -inline void GetCompletionItemsResponse::_internal_set_success(bool value) { - ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.success_ = value; -} - -// ------------------------------------------------------------------- - -// CompletionItem - -// int32 start = 1; -inline void CompletionItem::clear_start() { - ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.start_ = 0; -} -inline ::int32_t CompletionItem::start() const { - // @@protoc_insertion_point(field_get:io.deephaven.proto.backplane.script.grpc.CompletionItem.start) - return _internal_start(); -} -inline void CompletionItem::set_start(::int32_t value) { - _internal_set_start(value); - // @@protoc_insertion_point(field_set:io.deephaven.proto.backplane.script.grpc.CompletionItem.start) -} -inline ::int32_t CompletionItem::_internal_start() const { - ::google::protobuf::internal::TSanRead(&_impl_); - return _impl_.start_; -} -inline void CompletionItem::_internal_set_start(::int32_t value) { - ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.start_ = value; -} - -// int32 length = 2; -inline void CompletionItem::clear_length() { - ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.length_ = 0; -} -inline ::int32_t CompletionItem::length() const { - // @@protoc_insertion_point(field_get:io.deephaven.proto.backplane.script.grpc.CompletionItem.length) - return _internal_length(); -} -inline void CompletionItem::set_length(::int32_t value) { - _internal_set_length(value); - // @@protoc_insertion_point(field_set:io.deephaven.proto.backplane.script.grpc.CompletionItem.length) -} -inline ::int32_t CompletionItem::_internal_length() const { - ::google::protobuf::internal::TSanRead(&_impl_); - return _impl_.length_; -} -inline void CompletionItem::_internal_set_length(::int32_t value) { - ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.length_ = value; -} - -// string label = 3; -inline void CompletionItem::clear_label() { - ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.label_.ClearToEmpty(); -} -inline const std::string& CompletionItem::label() const - ABSL_ATTRIBUTE_LIFETIME_BOUND { - // @@protoc_insertion_point(field_get:io.deephaven.proto.backplane.script.grpc.CompletionItem.label) - return _internal_label(); -} -template -inline PROTOBUF_ALWAYS_INLINE void CompletionItem::set_label(Arg_&& arg, - Args_... args) { - ::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) -} -inline std::string* CompletionItem::mutable_label() ABSL_ATTRIBUTE_LIFETIME_BOUND { - std::string* _s = _internal_mutable_label(); - // @@protoc_insertion_point(field_mutable:io.deephaven.proto.backplane.script.grpc.CompletionItem.label) - return _s; -} -inline const std::string& CompletionItem::_internal_label() const { - ::google::protobuf::internal::TSanRead(&_impl_); - return _impl_.label_.Get(); -} -inline void CompletionItem::_internal_set_label(const std::string& value) { - ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.label_.Set(value, GetArena()); -} -inline std::string* CompletionItem::_internal_mutable_label() { - ::google::protobuf::internal::TSanWrite(&_impl_); - return _impl_.label_.Mutable( GetArena()); -} -inline std::string* CompletionItem::release_label() { - ::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) { - ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.label_.SetAllocated(value, GetArena()); - #ifdef PROTOBUF_FORCE_COPY_DEFAULT_STRING - if (_impl_.label_.IsDefault()) { - _impl_.label_.Set("", GetArena()); - } - #endif // PROTOBUF_FORCE_COPY_DEFAULT_STRING - // @@protoc_insertion_point(field_set_allocated:io.deephaven.proto.backplane.script.grpc.CompletionItem.label) -} - -// int32 kind = 4; -inline void CompletionItem::clear_kind() { - ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.kind_ = 0; -} -inline ::int32_t CompletionItem::kind() const { - // @@protoc_insertion_point(field_get:io.deephaven.proto.backplane.script.grpc.CompletionItem.kind) - return _internal_kind(); -} -inline void CompletionItem::set_kind(::int32_t value) { - _internal_set_kind(value); - // @@protoc_insertion_point(field_set:io.deephaven.proto.backplane.script.grpc.CompletionItem.kind) -} -inline ::int32_t CompletionItem::_internal_kind() const { - ::google::protobuf::internal::TSanRead(&_impl_); - return _impl_.kind_; -} -inline void CompletionItem::_internal_set_kind(::int32_t value) { - ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.kind_ = value; -} - -// string detail = 5; -inline void CompletionItem::clear_detail() { - ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.detail_.ClearToEmpty(); -} -inline const std::string& CompletionItem::detail() const - ABSL_ATTRIBUTE_LIFETIME_BOUND { - // @@protoc_insertion_point(field_get:io.deephaven.proto.backplane.script.grpc.CompletionItem.detail) - return _internal_detail(); -} -template -inline PROTOBUF_ALWAYS_INLINE void CompletionItem::set_detail(Arg_&& arg, - Args_... args) { - ::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) -} -inline std::string* CompletionItem::mutable_detail() ABSL_ATTRIBUTE_LIFETIME_BOUND { - std::string* _s = _internal_mutable_detail(); - // @@protoc_insertion_point(field_mutable:io.deephaven.proto.backplane.script.grpc.CompletionItem.detail) - return _s; -} -inline const std::string& CompletionItem::_internal_detail() const { - ::google::protobuf::internal::TSanRead(&_impl_); - return _impl_.detail_.Get(); -} -inline void CompletionItem::_internal_set_detail(const std::string& value) { - ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.detail_.Set(value, GetArena()); -} -inline std::string* CompletionItem::_internal_mutable_detail() { - ::google::protobuf::internal::TSanWrite(&_impl_); - return _impl_.detail_.Mutable( GetArena()); -} -inline std::string* CompletionItem::release_detail() { - ::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) { - ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.detail_.SetAllocated(value, GetArena()); - #ifdef PROTOBUF_FORCE_COPY_DEFAULT_STRING - if (_impl_.detail_.IsDefault()) { - _impl_.detail_.Set("", GetArena()); - } - #endif // PROTOBUF_FORCE_COPY_DEFAULT_STRING - // @@protoc_insertion_point(field_set_allocated:io.deephaven.proto.backplane.script.grpc.CompletionItem.detail) -} - -// bool deprecated = 7; -inline void CompletionItem::clear_deprecated() { - ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.deprecated_ = false; -} -inline bool CompletionItem::deprecated() const { - // @@protoc_insertion_point(field_get:io.deephaven.proto.backplane.script.grpc.CompletionItem.deprecated) - return _internal_deprecated(); -} -inline void CompletionItem::set_deprecated(bool value) { - _internal_set_deprecated(value); - // @@protoc_insertion_point(field_set:io.deephaven.proto.backplane.script.grpc.CompletionItem.deprecated) -} -inline bool CompletionItem::_internal_deprecated() const { - ::google::protobuf::internal::TSanRead(&_impl_); - return _impl_.deprecated_; -} -inline void CompletionItem::_internal_set_deprecated(bool value) { - ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.deprecated_ = value; -} - -// bool preselect = 8; -inline void CompletionItem::clear_preselect() { - ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.preselect_ = false; -} -inline bool CompletionItem::preselect() const { - // @@protoc_insertion_point(field_get:io.deephaven.proto.backplane.script.grpc.CompletionItem.preselect) - return _internal_preselect(); -} -inline void CompletionItem::set_preselect(bool value) { - _internal_set_preselect(value); - // @@protoc_insertion_point(field_set:io.deephaven.proto.backplane.script.grpc.CompletionItem.preselect) -} -inline bool CompletionItem::_internal_preselect() const { - ::google::protobuf::internal::TSanRead(&_impl_); - return _impl_.preselect_; -} -inline void CompletionItem::_internal_set_preselect(bool value) { - ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.preselect_ = value; -} - -// .io.deephaven.proto.backplane.script.grpc.TextEdit text_edit = 9; -inline bool CompletionItem::has_text_edit() const { - bool value = (_impl_._has_bits_[0] & 0x00000001u) != 0; - PROTOBUF_ASSUME(!value || _impl_.text_edit_ != nullptr); - return value; -} -inline void CompletionItem::clear_text_edit() { - ::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 { - ::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_); -} -inline const ::io::deephaven::proto::backplane::script::grpc::TextEdit& CompletionItem::text_edit() const ABSL_ATTRIBUTE_LIFETIME_BOUND { - // @@protoc_insertion_point(field_get:io.deephaven.proto.backplane.script.grpc.CompletionItem.text_edit) - return _internal_text_edit(); -} -inline void CompletionItem::unsafe_arena_set_allocated_text_edit(::io::deephaven::proto::backplane::script::grpc::TextEdit* value) { - ::google::protobuf::internal::TSanWrite(&_impl_); - if (GetArena() == nullptr) { - delete reinterpret_cast<::google::protobuf::MessageLite*>(_impl_.text_edit_); - } - _impl_.text_edit_ = reinterpret_cast<::io::deephaven::proto::backplane::script::grpc::TextEdit*>(value); - if (value != nullptr) { - _impl_._has_bits_[0] |= 0x00000001u; - } else { - _impl_._has_bits_[0] &= ~0x00000001u; - } - // @@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() { - ::google::protobuf::internal::TSanWrite(&_impl_); - - _impl_._has_bits_[0] &= ~0x00000001u; - ::io::deephaven::proto::backplane::script::grpc::TextEdit* released = _impl_.text_edit_; - _impl_.text_edit_ = nullptr; -#ifdef PROTOBUF_FORCE_COPY_IN_RELEASE - auto* old = reinterpret_cast<::google::protobuf::MessageLite*>(released); - released = ::google::protobuf::internal::DuplicateIfNonNull(released); - if (GetArena() == nullptr) { - delete old; - } -#else // PROTOBUF_FORCE_COPY_IN_RELEASE - if (GetArena() != nullptr) { - released = ::google::protobuf::internal::DuplicateIfNonNull(released); - } -#endif // !PROTOBUF_FORCE_COPY_IN_RELEASE - return released; -} -inline ::io::deephaven::proto::backplane::script::grpc::TextEdit* CompletionItem::unsafe_arena_release_text_edit() { - ::google::protobuf::internal::TSanWrite(&_impl_); - // @@protoc_insertion_point(field_release:io.deephaven.proto.backplane.script.grpc.CompletionItem.text_edit) - - _impl_._has_bits_[0] &= ~0x00000001u; - ::io::deephaven::proto::backplane::script::grpc::TextEdit* temp = _impl_.text_edit_; - _impl_.text_edit_ = nullptr; - return temp; -} -inline ::io::deephaven::proto::backplane::script::grpc::TextEdit* CompletionItem::_internal_mutable_text_edit() { - ::google::protobuf::internal::TSanWrite(&_impl_); - if (_impl_.text_edit_ == nullptr) { - 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(); - ::google::protobuf::internal::TSanWrite(&_impl_); - if (message_arena == nullptr) { - delete (_impl_.text_edit_); - } - - if (value != nullptr) { - ::google::protobuf::Arena* submessage_arena = (value)->GetArena(); - if (message_arena != submessage_arena) { - value = ::google::protobuf::internal::GetOwnedMessage(message_arena, value, submessage_arena); - } - _impl_._has_bits_[0] |= 0x00000001u; - } else { - _impl_._has_bits_[0] &= ~0x00000001u; - } - - _impl_.text_edit_ = reinterpret_cast<::io::deephaven::proto::backplane::script::grpc::TextEdit*>(value); - // @@protoc_insertion_point(field_set_allocated:io.deephaven.proto.backplane.script.grpc.CompletionItem.text_edit) -} - -// string sort_text = 10; -inline void CompletionItem::clear_sort_text() { - ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.sort_text_.ClearToEmpty(); -} -inline const std::string& CompletionItem::sort_text() const - ABSL_ATTRIBUTE_LIFETIME_BOUND { - // @@protoc_insertion_point(field_get:io.deephaven.proto.backplane.script.grpc.CompletionItem.sort_text) - return _internal_sort_text(); -} -template -inline PROTOBUF_ALWAYS_INLINE void CompletionItem::set_sort_text(Arg_&& arg, - Args_... args) { - ::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) -} -inline std::string* CompletionItem::mutable_sort_text() ABSL_ATTRIBUTE_LIFETIME_BOUND { - std::string* _s = _internal_mutable_sort_text(); - // @@protoc_insertion_point(field_mutable:io.deephaven.proto.backplane.script.grpc.CompletionItem.sort_text) - return _s; -} -inline const std::string& CompletionItem::_internal_sort_text() const { - ::google::protobuf::internal::TSanRead(&_impl_); - return _impl_.sort_text_.Get(); -} -inline void CompletionItem::_internal_set_sort_text(const std::string& value) { - ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.sort_text_.Set(value, GetArena()); -} -inline std::string* CompletionItem::_internal_mutable_sort_text() { - ::google::protobuf::internal::TSanWrite(&_impl_); - return _impl_.sort_text_.Mutable( GetArena()); -} -inline std::string* CompletionItem::release_sort_text() { - ::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) { - ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.sort_text_.SetAllocated(value, GetArena()); - #ifdef PROTOBUF_FORCE_COPY_DEFAULT_STRING - if (_impl_.sort_text_.IsDefault()) { - _impl_.sort_text_.Set("", GetArena()); - } - #endif // PROTOBUF_FORCE_COPY_DEFAULT_STRING - // @@protoc_insertion_point(field_set_allocated:io.deephaven.proto.backplane.script.grpc.CompletionItem.sort_text) -} - -// string filter_text = 11; -inline void CompletionItem::clear_filter_text() { - ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.filter_text_.ClearToEmpty(); -} -inline const std::string& CompletionItem::filter_text() const - ABSL_ATTRIBUTE_LIFETIME_BOUND { - // @@protoc_insertion_point(field_get:io.deephaven.proto.backplane.script.grpc.CompletionItem.filter_text) - return _internal_filter_text(); -} -template -inline PROTOBUF_ALWAYS_INLINE void CompletionItem::set_filter_text(Arg_&& arg, - Args_... args) { - ::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) -} -inline std::string* CompletionItem::mutable_filter_text() ABSL_ATTRIBUTE_LIFETIME_BOUND { - std::string* _s = _internal_mutable_filter_text(); - // @@protoc_insertion_point(field_mutable:io.deephaven.proto.backplane.script.grpc.CompletionItem.filter_text) - return _s; -} -inline const std::string& CompletionItem::_internal_filter_text() const { - ::google::protobuf::internal::TSanRead(&_impl_); - return _impl_.filter_text_.Get(); -} -inline void CompletionItem::_internal_set_filter_text(const std::string& value) { - ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.filter_text_.Set(value, GetArena()); -} -inline std::string* CompletionItem::_internal_mutable_filter_text() { - ::google::protobuf::internal::TSanWrite(&_impl_); - return _impl_.filter_text_.Mutable( GetArena()); -} -inline std::string* CompletionItem::release_filter_text() { - ::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) { - ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.filter_text_.SetAllocated(value, GetArena()); - #ifdef PROTOBUF_FORCE_COPY_DEFAULT_STRING - if (_impl_.filter_text_.IsDefault()) { - _impl_.filter_text_.Set("", GetArena()); - } - #endif // PROTOBUF_FORCE_COPY_DEFAULT_STRING - // @@protoc_insertion_point(field_set_allocated:io.deephaven.proto.backplane.script.grpc.CompletionItem.filter_text) -} - -// int32 insert_text_format = 12; -inline void CompletionItem::clear_insert_text_format() { - ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.insert_text_format_ = 0; -} -inline ::int32_t CompletionItem::insert_text_format() const { - // @@protoc_insertion_point(field_get:io.deephaven.proto.backplane.script.grpc.CompletionItem.insert_text_format) - return _internal_insert_text_format(); -} -inline void CompletionItem::set_insert_text_format(::int32_t value) { - _internal_set_insert_text_format(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 { - ::google::protobuf::internal::TSanRead(&_impl_); - return _impl_.insert_text_format_; -} -inline void CompletionItem::_internal_set_insert_text_format(::int32_t value) { - ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.insert_text_format_ = value; -} - -// repeated .io.deephaven.proto.backplane.script.grpc.TextEdit additional_text_edits = 13; -inline int CompletionItem::_internal_additional_text_edits_size() const { - return _internal_additional_text_edits().size(); -} -inline int CompletionItem::additional_text_edits_size() const { - return _internal_additional_text_edits_size(); -} -inline void CompletionItem::clear_additional_text_edits() { - ::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) - ABSL_ATTRIBUTE_LIFETIME_BOUND { - // @@protoc_insertion_point(field_mutable:io.deephaven.proto.backplane.script.grpc.CompletionItem.additional_text_edits) - return _internal_mutable_additional_text_edits()->Mutable(index); -} -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) - ::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 - ABSL_ATTRIBUTE_LIFETIME_BOUND { - // @@protoc_insertion_point(field_get:io.deephaven.proto.backplane.script.grpc.CompletionItem.additional_text_edits) - return _internal_additional_text_edits().Get(index); -} -inline ::io::deephaven::proto::backplane::script::grpc::TextEdit* CompletionItem::add_additional_text_edits() ABSL_ATTRIBUTE_LIFETIME_BOUND { - ::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; -} -inline const ::google::protobuf::RepeatedPtrField<::io::deephaven::proto::backplane::script::grpc::TextEdit>& CompletionItem::additional_text_edits() const - ABSL_ATTRIBUTE_LIFETIME_BOUND { - // @@protoc_insertion_point(field_list:io.deephaven.proto.backplane.script.grpc.CompletionItem.additional_text_edits) - return _internal_additional_text_edits(); -} -inline const ::google::protobuf::RepeatedPtrField<::io::deephaven::proto::backplane::script::grpc::TextEdit>& -CompletionItem::_internal_additional_text_edits() const { - ::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() { - ::google::protobuf::internal::TSanRead(&_impl_); - return &_impl_.additional_text_edits_; -} - -// repeated string commit_characters = 14; -inline int CompletionItem::_internal_commit_characters_size() const { - return _internal_commit_characters().size(); -} -inline int CompletionItem::commit_characters_size() const { - return _internal_commit_characters_size(); -} -inline void CompletionItem::clear_commit_characters() { - ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.commit_characters_.Clear(); -} -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; -} -inline const std::string& CompletionItem::commit_characters(int index) const - ABSL_ATTRIBUTE_LIFETIME_BOUND { - // @@protoc_insertion_point(field_get:io.deephaven.proto.backplane.script.grpc.CompletionItem.commit_characters) - return _internal_commit_characters().Get(index); -} -inline std::string* CompletionItem::mutable_commit_characters(int index) - ABSL_ATTRIBUTE_LIFETIME_BOUND { - // @@protoc_insertion_point(field_mutable:io.deephaven.proto.backplane.script.grpc.CompletionItem.commit_characters) - return _internal_mutable_commit_characters()->Mutable(index); -} -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) -} -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 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) - return _internal_commit_characters(); -} -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) - ::google::protobuf::internal::TSanWrite(&_impl_); - return _internal_mutable_commit_characters(); -} -inline const ::google::protobuf::RepeatedPtrField& -CompletionItem::_internal_commit_characters() const { - ::google::protobuf::internal::TSanRead(&_impl_); - return _impl_.commit_characters_; -} -inline ::google::protobuf::RepeatedPtrField* -CompletionItem::_internal_mutable_commit_characters() { - ::google::protobuf::internal::TSanRead(&_impl_); - return &_impl_.commit_characters_; -} - -// .io.deephaven.proto.backplane.script.grpc.MarkupContent documentation = 15; -inline bool CompletionItem::has_documentation() const { - bool value = (_impl_._has_bits_[0] & 0x00000002u) != 0; - PROTOBUF_ASSUME(!value || _impl_.documentation_ != nullptr); - return value; -} -inline void CompletionItem::clear_documentation() { - ::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 { - ::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_); -} -inline const ::io::deephaven::proto::backplane::script::grpc::MarkupContent& CompletionItem::documentation() const ABSL_ATTRIBUTE_LIFETIME_BOUND { - // @@protoc_insertion_point(field_get:io.deephaven.proto.backplane.script.grpc.CompletionItem.documentation) - return _internal_documentation(); -} -inline void CompletionItem::unsafe_arena_set_allocated_documentation(::io::deephaven::proto::backplane::script::grpc::MarkupContent* value) { - ::google::protobuf::internal::TSanWrite(&_impl_); - if (GetArena() == nullptr) { - delete reinterpret_cast<::google::protobuf::MessageLite*>(_impl_.documentation_); - } - _impl_.documentation_ = reinterpret_cast<::io::deephaven::proto::backplane::script::grpc::MarkupContent*>(value); - if (value != nullptr) { - _impl_._has_bits_[0] |= 0x00000002u; - } else { - _impl_._has_bits_[0] &= ~0x00000002u; - } - // @@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() { - ::google::protobuf::internal::TSanWrite(&_impl_); - - _impl_._has_bits_[0] &= ~0x00000002u; - ::io::deephaven::proto::backplane::script::grpc::MarkupContent* released = _impl_.documentation_; - _impl_.documentation_ = nullptr; -#ifdef PROTOBUF_FORCE_COPY_IN_RELEASE - auto* old = reinterpret_cast<::google::protobuf::MessageLite*>(released); - released = ::google::protobuf::internal::DuplicateIfNonNull(released); - if (GetArena() == nullptr) { - delete old; - } -#else // PROTOBUF_FORCE_COPY_IN_RELEASE - if (GetArena() != nullptr) { - released = ::google::protobuf::internal::DuplicateIfNonNull(released); - } -#endif // !PROTOBUF_FORCE_COPY_IN_RELEASE - return released; -} -inline ::io::deephaven::proto::backplane::script::grpc::MarkupContent* CompletionItem::unsafe_arena_release_documentation() { - ::google::protobuf::internal::TSanWrite(&_impl_); - // @@protoc_insertion_point(field_release:io.deephaven.proto.backplane.script.grpc.CompletionItem.documentation) - - _impl_._has_bits_[0] &= ~0x00000002u; - ::io::deephaven::proto::backplane::script::grpc::MarkupContent* temp = _impl_.documentation_; - _impl_.documentation_ = nullptr; - return temp; -} -inline ::io::deephaven::proto::backplane::script::grpc::MarkupContent* CompletionItem::_internal_mutable_documentation() { - ::google::protobuf::internal::TSanWrite(&_impl_); - if (_impl_.documentation_ == nullptr) { - 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(); - ::google::protobuf::internal::TSanWrite(&_impl_); - if (message_arena == nullptr) { - delete (_impl_.documentation_); - } - - if (value != nullptr) { - ::google::protobuf::Arena* submessage_arena = (value)->GetArena(); - if (message_arena != submessage_arena) { - value = ::google::protobuf::internal::GetOwnedMessage(message_arena, value, submessage_arena); - } - _impl_._has_bits_[0] |= 0x00000002u; - } else { - _impl_._has_bits_[0] &= ~0x00000002u; - } - - _impl_.documentation_ = reinterpret_cast<::io::deephaven::proto::backplane::script::grpc::MarkupContent*>(value); - // @@protoc_insertion_point(field_set_allocated:io.deephaven.proto.backplane.script.grpc.CompletionItem.documentation) -} - -// ------------------------------------------------------------------- - -// TextEdit - -// .io.deephaven.proto.backplane.script.grpc.DocumentRange range = 1; -inline bool TextEdit::has_range() const { - bool value = (_impl_._has_bits_[0] & 0x00000001u) != 0; - PROTOBUF_ASSUME(!value || _impl_.range_ != nullptr); - return value; -} -inline void TextEdit::clear_range() { - ::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 { - ::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_); -} -inline const ::io::deephaven::proto::backplane::script::grpc::DocumentRange& TextEdit::range() const ABSL_ATTRIBUTE_LIFETIME_BOUND { - // @@protoc_insertion_point(field_get:io.deephaven.proto.backplane.script.grpc.TextEdit.range) - return _internal_range(); -} -inline void TextEdit::unsafe_arena_set_allocated_range(::io::deephaven::proto::backplane::script::grpc::DocumentRange* value) { - ::google::protobuf::internal::TSanWrite(&_impl_); - if (GetArena() == nullptr) { - delete reinterpret_cast<::google::protobuf::MessageLite*>(_impl_.range_); - } - _impl_.range_ = reinterpret_cast<::io::deephaven::proto::backplane::script::grpc::DocumentRange*>(value); - if (value != nullptr) { - _impl_._has_bits_[0] |= 0x00000001u; - } else { - _impl_._has_bits_[0] &= ~0x00000001u; - } - // @@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() { - ::google::protobuf::internal::TSanWrite(&_impl_); - - _impl_._has_bits_[0] &= ~0x00000001u; - ::io::deephaven::proto::backplane::script::grpc::DocumentRange* released = _impl_.range_; - _impl_.range_ = nullptr; -#ifdef PROTOBUF_FORCE_COPY_IN_RELEASE - auto* old = reinterpret_cast<::google::protobuf::MessageLite*>(released); - released = ::google::protobuf::internal::DuplicateIfNonNull(released); - if (GetArena() == nullptr) { - delete old; - } -#else // PROTOBUF_FORCE_COPY_IN_RELEASE - if (GetArena() != nullptr) { - released = ::google::protobuf::internal::DuplicateIfNonNull(released); - } -#endif // !PROTOBUF_FORCE_COPY_IN_RELEASE - return released; -} -inline ::io::deephaven::proto::backplane::script::grpc::DocumentRange* TextEdit::unsafe_arena_release_range() { - ::google::protobuf::internal::TSanWrite(&_impl_); - // @@protoc_insertion_point(field_release:io.deephaven.proto.backplane.script.grpc.TextEdit.range) - - _impl_._has_bits_[0] &= ~0x00000001u; - ::io::deephaven::proto::backplane::script::grpc::DocumentRange* temp = _impl_.range_; - _impl_.range_ = nullptr; - return temp; -} -inline ::io::deephaven::proto::backplane::script::grpc::DocumentRange* TextEdit::_internal_mutable_range() { - ::google::protobuf::internal::TSanWrite(&_impl_); - if (_impl_.range_ == nullptr) { - 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(); - ::google::protobuf::internal::TSanWrite(&_impl_); - if (message_arena == nullptr) { - delete (_impl_.range_); - } - - if (value != nullptr) { - ::google::protobuf::Arena* submessage_arena = (value)->GetArena(); - if (message_arena != submessage_arena) { - value = ::google::protobuf::internal::GetOwnedMessage(message_arena, value, submessage_arena); - } - _impl_._has_bits_[0] |= 0x00000001u; - } else { - _impl_._has_bits_[0] &= ~0x00000001u; - } - - _impl_.range_ = reinterpret_cast<::io::deephaven::proto::backplane::script::grpc::DocumentRange*>(value); - // @@protoc_insertion_point(field_set_allocated:io.deephaven.proto.backplane.script.grpc.TextEdit.range) -} - -// string text = 2; -inline void TextEdit::clear_text() { - ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.text_.ClearToEmpty(); -} -inline const std::string& TextEdit::text() const - ABSL_ATTRIBUTE_LIFETIME_BOUND { - // @@protoc_insertion_point(field_get:io.deephaven.proto.backplane.script.grpc.TextEdit.text) - return _internal_text(); -} -template -inline PROTOBUF_ALWAYS_INLINE void TextEdit::set_text(Arg_&& arg, - Args_... args) { - ::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) -} -inline std::string* TextEdit::mutable_text() ABSL_ATTRIBUTE_LIFETIME_BOUND { - std::string* _s = _internal_mutable_text(); - // @@protoc_insertion_point(field_mutable:io.deephaven.proto.backplane.script.grpc.TextEdit.text) - return _s; -} -inline const std::string& TextEdit::_internal_text() const { - ::google::protobuf::internal::TSanRead(&_impl_); - return _impl_.text_.Get(); -} -inline void TextEdit::_internal_set_text(const std::string& value) { - ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.text_.Set(value, GetArena()); -} -inline std::string* TextEdit::_internal_mutable_text() { - ::google::protobuf::internal::TSanWrite(&_impl_); - return _impl_.text_.Mutable( GetArena()); -} -inline std::string* TextEdit::release_text() { - ::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) { - ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.text_.SetAllocated(value, GetArena()); - #ifdef PROTOBUF_FORCE_COPY_DEFAULT_STRING - if (_impl_.text_.IsDefault()) { - _impl_.text_.Set("", GetArena()); - } - #endif // PROTOBUF_FORCE_COPY_DEFAULT_STRING - // @@protoc_insertion_point(field_set_allocated:io.deephaven.proto.backplane.script.grpc.TextEdit.text) -} - -// ------------------------------------------------------------------- - -// GetSignatureHelpRequest - -// .io.deephaven.proto.backplane.script.grpc.SignatureHelpContext context = 1; -inline bool GetSignatureHelpRequest::has_context() const { - bool value = (_impl_._has_bits_[0] & 0x00000001u) != 0; - PROTOBUF_ASSUME(!value || _impl_.context_ != nullptr); - return value; -} -inline void GetSignatureHelpRequest::clear_context() { - ::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 { - ::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_); -} -inline const ::io::deephaven::proto::backplane::script::grpc::SignatureHelpContext& GetSignatureHelpRequest::context() const ABSL_ATTRIBUTE_LIFETIME_BOUND { - // @@protoc_insertion_point(field_get:io.deephaven.proto.backplane.script.grpc.GetSignatureHelpRequest.context) - return _internal_context(); -} -inline void GetSignatureHelpRequest::unsafe_arena_set_allocated_context(::io::deephaven::proto::backplane::script::grpc::SignatureHelpContext* value) { - ::google::protobuf::internal::TSanWrite(&_impl_); - if (GetArena() == nullptr) { - delete reinterpret_cast<::google::protobuf::MessageLite*>(_impl_.context_); - } - _impl_.context_ = reinterpret_cast<::io::deephaven::proto::backplane::script::grpc::SignatureHelpContext*>(value); - if (value != nullptr) { - _impl_._has_bits_[0] |= 0x00000001u; - } else { - _impl_._has_bits_[0] &= ~0x00000001u; - } - // @@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() { - ::google::protobuf::internal::TSanWrite(&_impl_); - - _impl_._has_bits_[0] &= ~0x00000001u; - ::io::deephaven::proto::backplane::script::grpc::SignatureHelpContext* released = _impl_.context_; - _impl_.context_ = nullptr; -#ifdef PROTOBUF_FORCE_COPY_IN_RELEASE - auto* old = reinterpret_cast<::google::protobuf::MessageLite*>(released); - released = ::google::protobuf::internal::DuplicateIfNonNull(released); - if (GetArena() == nullptr) { - delete old; - } -#else // PROTOBUF_FORCE_COPY_IN_RELEASE - if (GetArena() != nullptr) { - released = ::google::protobuf::internal::DuplicateIfNonNull(released); - } -#endif // !PROTOBUF_FORCE_COPY_IN_RELEASE - return released; -} -inline ::io::deephaven::proto::backplane::script::grpc::SignatureHelpContext* GetSignatureHelpRequest::unsafe_arena_release_context() { - ::google::protobuf::internal::TSanWrite(&_impl_); - // @@protoc_insertion_point(field_release:io.deephaven.proto.backplane.script.grpc.GetSignatureHelpRequest.context) - - _impl_._has_bits_[0] &= ~0x00000001u; - ::io::deephaven::proto::backplane::script::grpc::SignatureHelpContext* temp = _impl_.context_; - _impl_.context_ = nullptr; - return temp; -} -inline ::io::deephaven::proto::backplane::script::grpc::SignatureHelpContext* GetSignatureHelpRequest::_internal_mutable_context() { - ::google::protobuf::internal::TSanWrite(&_impl_); - if (_impl_.context_ == nullptr) { - 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(); - ::google::protobuf::internal::TSanWrite(&_impl_); - if (message_arena == nullptr) { - delete (_impl_.context_); - } - - if (value != nullptr) { - ::google::protobuf::Arena* submessage_arena = (value)->GetArena(); - if (message_arena != submessage_arena) { - value = ::google::protobuf::internal::GetOwnedMessage(message_arena, value, submessage_arena); - } - _impl_._has_bits_[0] |= 0x00000001u; - } else { - _impl_._has_bits_[0] &= ~0x00000001u; - } - - _impl_.context_ = reinterpret_cast<::io::deephaven::proto::backplane::script::grpc::SignatureHelpContext*>(value); - // @@protoc_insertion_point(field_set_allocated:io.deephaven.proto.backplane.script.grpc.GetSignatureHelpRequest.context) -} - -// .io.deephaven.proto.backplane.script.grpc.VersionedTextDocumentIdentifier text_document = 2; -inline bool GetSignatureHelpRequest::has_text_document() const { - bool value = (_impl_._has_bits_[0] & 0x00000002u) != 0; - PROTOBUF_ASSUME(!value || _impl_.text_document_ != nullptr); - return value; -} -inline void GetSignatureHelpRequest::clear_text_document() { - ::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 { - ::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_); -} -inline const ::io::deephaven::proto::backplane::script::grpc::VersionedTextDocumentIdentifier& GetSignatureHelpRequest::text_document() const ABSL_ATTRIBUTE_LIFETIME_BOUND { - // @@protoc_insertion_point(field_get:io.deephaven.proto.backplane.script.grpc.GetSignatureHelpRequest.text_document) - return _internal_text_document(); -} -inline void GetSignatureHelpRequest::unsafe_arena_set_allocated_text_document(::io::deephaven::proto::backplane::script::grpc::VersionedTextDocumentIdentifier* value) { - ::google::protobuf::internal::TSanWrite(&_impl_); - if (GetArena() == nullptr) { - delete reinterpret_cast<::google::protobuf::MessageLite*>(_impl_.text_document_); - } - _impl_.text_document_ = reinterpret_cast<::io::deephaven::proto::backplane::script::grpc::VersionedTextDocumentIdentifier*>(value); - if (value != nullptr) { - _impl_._has_bits_[0] |= 0x00000002u; - } else { - _impl_._has_bits_[0] &= ~0x00000002u; - } - // @@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() { - ::google::protobuf::internal::TSanWrite(&_impl_); - - _impl_._has_bits_[0] &= ~0x00000002u; - ::io::deephaven::proto::backplane::script::grpc::VersionedTextDocumentIdentifier* released = _impl_.text_document_; - _impl_.text_document_ = nullptr; -#ifdef PROTOBUF_FORCE_COPY_IN_RELEASE - auto* old = reinterpret_cast<::google::protobuf::MessageLite*>(released); - released = ::google::protobuf::internal::DuplicateIfNonNull(released); - if (GetArena() == nullptr) { - delete old; - } -#else // PROTOBUF_FORCE_COPY_IN_RELEASE - if (GetArena() != nullptr) { - released = ::google::protobuf::internal::DuplicateIfNonNull(released); - } -#endif // !PROTOBUF_FORCE_COPY_IN_RELEASE - return released; -} -inline ::io::deephaven::proto::backplane::script::grpc::VersionedTextDocumentIdentifier* GetSignatureHelpRequest::unsafe_arena_release_text_document() { - ::google::protobuf::internal::TSanWrite(&_impl_); - // @@protoc_insertion_point(field_release:io.deephaven.proto.backplane.script.grpc.GetSignatureHelpRequest.text_document) - - _impl_._has_bits_[0] &= ~0x00000002u; - ::io::deephaven::proto::backplane::script::grpc::VersionedTextDocumentIdentifier* temp = _impl_.text_document_; - _impl_.text_document_ = nullptr; - return temp; -} -inline ::io::deephaven::proto::backplane::script::grpc::VersionedTextDocumentIdentifier* GetSignatureHelpRequest::_internal_mutable_text_document() { - ::google::protobuf::internal::TSanWrite(&_impl_); - if (_impl_.text_document_ == nullptr) { - 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(); - ::google::protobuf::internal::TSanWrite(&_impl_); - if (message_arena == nullptr) { - delete (_impl_.text_document_); - } - - if (value != nullptr) { - ::google::protobuf::Arena* submessage_arena = (value)->GetArena(); - if (message_arena != submessage_arena) { - value = ::google::protobuf::internal::GetOwnedMessage(message_arena, value, submessage_arena); - } - _impl_._has_bits_[0] |= 0x00000002u; - } else { - _impl_._has_bits_[0] &= ~0x00000002u; - } - - _impl_.text_document_ = reinterpret_cast<::io::deephaven::proto::backplane::script::grpc::VersionedTextDocumentIdentifier*>(value); - // @@protoc_insertion_point(field_set_allocated:io.deephaven.proto.backplane.script.grpc.GetSignatureHelpRequest.text_document) -} - -// .io.deephaven.proto.backplane.script.grpc.Position position = 3; -inline bool GetSignatureHelpRequest::has_position() const { - bool value = (_impl_._has_bits_[0] & 0x00000004u) != 0; - PROTOBUF_ASSUME(!value || _impl_.position_ != nullptr); - return value; -} -inline void GetSignatureHelpRequest::clear_position() { - ::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 { - ::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_); -} -inline const ::io::deephaven::proto::backplane::script::grpc::Position& GetSignatureHelpRequest::position() const ABSL_ATTRIBUTE_LIFETIME_BOUND { - // @@protoc_insertion_point(field_get:io.deephaven.proto.backplane.script.grpc.GetSignatureHelpRequest.position) - return _internal_position(); -} -inline void GetSignatureHelpRequest::unsafe_arena_set_allocated_position(::io::deephaven::proto::backplane::script::grpc::Position* value) { - ::google::protobuf::internal::TSanWrite(&_impl_); - if (GetArena() == nullptr) { - delete reinterpret_cast<::google::protobuf::MessageLite*>(_impl_.position_); - } - _impl_.position_ = reinterpret_cast<::io::deephaven::proto::backplane::script::grpc::Position*>(value); - if (value != nullptr) { - _impl_._has_bits_[0] |= 0x00000004u; - } else { - _impl_._has_bits_[0] &= ~0x00000004u; - } - // @@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() { - ::google::protobuf::internal::TSanWrite(&_impl_); - - _impl_._has_bits_[0] &= ~0x00000004u; - ::io::deephaven::proto::backplane::script::grpc::Position* released = _impl_.position_; - _impl_.position_ = nullptr; -#ifdef PROTOBUF_FORCE_COPY_IN_RELEASE - auto* old = reinterpret_cast<::google::protobuf::MessageLite*>(released); - released = ::google::protobuf::internal::DuplicateIfNonNull(released); - if (GetArena() == nullptr) { - delete old; - } -#else // PROTOBUF_FORCE_COPY_IN_RELEASE - if (GetArena() != nullptr) { - released = ::google::protobuf::internal::DuplicateIfNonNull(released); - } -#endif // !PROTOBUF_FORCE_COPY_IN_RELEASE - return released; -} -inline ::io::deephaven::proto::backplane::script::grpc::Position* GetSignatureHelpRequest::unsafe_arena_release_position() { - ::google::protobuf::internal::TSanWrite(&_impl_); - // @@protoc_insertion_point(field_release:io.deephaven.proto.backplane.script.grpc.GetSignatureHelpRequest.position) - - _impl_._has_bits_[0] &= ~0x00000004u; - ::io::deephaven::proto::backplane::script::grpc::Position* temp = _impl_.position_; - _impl_.position_ = nullptr; - return temp; -} -inline ::io::deephaven::proto::backplane::script::grpc::Position* GetSignatureHelpRequest::_internal_mutable_position() { - ::google::protobuf::internal::TSanWrite(&_impl_); - if (_impl_.position_ == nullptr) { - 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(); - ::google::protobuf::internal::TSanWrite(&_impl_); - if (message_arena == nullptr) { - delete (_impl_.position_); - } - - if (value != nullptr) { - ::google::protobuf::Arena* submessage_arena = (value)->GetArena(); - if (message_arena != submessage_arena) { - value = ::google::protobuf::internal::GetOwnedMessage(message_arena, value, submessage_arena); - } - _impl_._has_bits_[0] |= 0x00000004u; - } else { - _impl_._has_bits_[0] &= ~0x00000004u; - } - - _impl_.position_ = reinterpret_cast<::io::deephaven::proto::backplane::script::grpc::Position*>(value); - // @@protoc_insertion_point(field_set_allocated:io.deephaven.proto.backplane.script.grpc.GetSignatureHelpRequest.position) -} - -// ------------------------------------------------------------------- - -// SignatureHelpContext - -// int32 trigger_kind = 1; -inline void SignatureHelpContext::clear_trigger_kind() { - ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.trigger_kind_ = 0; -} -inline ::int32_t SignatureHelpContext::trigger_kind() const { - // @@protoc_insertion_point(field_get:io.deephaven.proto.backplane.script.grpc.SignatureHelpContext.trigger_kind) - return _internal_trigger_kind(); -} -inline void SignatureHelpContext::set_trigger_kind(::int32_t value) { - _internal_set_trigger_kind(value); - // @@protoc_insertion_point(field_set:io.deephaven.proto.backplane.script.grpc.SignatureHelpContext.trigger_kind) -} -inline ::int32_t SignatureHelpContext::_internal_trigger_kind() const { - ::google::protobuf::internal::TSanRead(&_impl_); - return _impl_.trigger_kind_; -} -inline void SignatureHelpContext::_internal_set_trigger_kind(::int32_t value) { - ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.trigger_kind_ = value; -} - -// optional string trigger_character = 2; -inline bool SignatureHelpContext::has_trigger_character() const { - bool value = (_impl_._has_bits_[0] & 0x00000001u) != 0; - return value; -} -inline void SignatureHelpContext::clear_trigger_character() { - ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.trigger_character_.ClearToEmpty(); - _impl_._has_bits_[0] &= ~0x00000001u; -} -inline const std::string& SignatureHelpContext::trigger_character() const - ABSL_ATTRIBUTE_LIFETIME_BOUND { - // @@protoc_insertion_point(field_get:io.deephaven.proto.backplane.script.grpc.SignatureHelpContext.trigger_character) - return _internal_trigger_character(); -} -template -inline PROTOBUF_ALWAYS_INLINE void SignatureHelpContext::set_trigger_character(Arg_&& arg, - Args_... args) { - ::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) -} -inline std::string* SignatureHelpContext::mutable_trigger_character() ABSL_ATTRIBUTE_LIFETIME_BOUND { - std::string* _s = _internal_mutable_trigger_character(); - // @@protoc_insertion_point(field_mutable:io.deephaven.proto.backplane.script.grpc.SignatureHelpContext.trigger_character) - return _s; -} -inline const std::string& SignatureHelpContext::_internal_trigger_character() const { - ::google::protobuf::internal::TSanRead(&_impl_); - return _impl_.trigger_character_.Get(); -} -inline void SignatureHelpContext::_internal_set_trigger_character(const std::string& value) { - ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_._has_bits_[0] |= 0x00000001u; - _impl_.trigger_character_.Set(value, GetArena()); -} -inline std::string* SignatureHelpContext::_internal_mutable_trigger_character() { - ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_._has_bits_[0] |= 0x00000001u; - return _impl_.trigger_character_.Mutable( GetArena()); -} -inline std::string* SignatureHelpContext::release_trigger_character() { - ::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; - } - _impl_._has_bits_[0] &= ~0x00000001u; - auto* released = _impl_.trigger_character_.Release(); - #ifdef PROTOBUF_FORCE_COPY_DEFAULT_STRING - _impl_.trigger_character_.Set("", GetArena()); - #endif // PROTOBUF_FORCE_COPY_DEFAULT_STRING - return released; -} -inline void SignatureHelpContext::set_allocated_trigger_character(std::string* value) { - ::google::protobuf::internal::TSanWrite(&_impl_); - if (value != nullptr) { - _impl_._has_bits_[0] |= 0x00000001u; - } else { - _impl_._has_bits_[0] &= ~0x00000001u; - } - _impl_.trigger_character_.SetAllocated(value, GetArena()); - #ifdef PROTOBUF_FORCE_COPY_DEFAULT_STRING - if (_impl_.trigger_character_.IsDefault()) { - _impl_.trigger_character_.Set("", GetArena()); - } - #endif // PROTOBUF_FORCE_COPY_DEFAULT_STRING - // @@protoc_insertion_point(field_set_allocated:io.deephaven.proto.backplane.script.grpc.SignatureHelpContext.trigger_character) -} - -// bool is_retrigger = 3; -inline void SignatureHelpContext::clear_is_retrigger() { - ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.is_retrigger_ = false; -} -inline bool SignatureHelpContext::is_retrigger() const { - // @@protoc_insertion_point(field_get:io.deephaven.proto.backplane.script.grpc.SignatureHelpContext.is_retrigger) - return _internal_is_retrigger(); -} -inline void SignatureHelpContext::set_is_retrigger(bool value) { - _internal_set_is_retrigger(value); - // @@protoc_insertion_point(field_set:io.deephaven.proto.backplane.script.grpc.SignatureHelpContext.is_retrigger) -} -inline bool SignatureHelpContext::_internal_is_retrigger() const { - ::google::protobuf::internal::TSanRead(&_impl_); - return _impl_.is_retrigger_; -} -inline void SignatureHelpContext::_internal_set_is_retrigger(bool value) { - ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.is_retrigger_ = value; -} - -// .io.deephaven.proto.backplane.script.grpc.GetSignatureHelpResponse active_signature_help = 4; -inline bool SignatureHelpContext::has_active_signature_help() const { - bool value = (_impl_._has_bits_[0] & 0x00000002u) != 0; - PROTOBUF_ASSUME(!value || _impl_.active_signature_help_ != nullptr); - return value; -} -inline void SignatureHelpContext::clear_active_signature_help() { - ::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 { - ::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_); -} -inline const ::io::deephaven::proto::backplane::script::grpc::GetSignatureHelpResponse& SignatureHelpContext::active_signature_help() const ABSL_ATTRIBUTE_LIFETIME_BOUND { - // @@protoc_insertion_point(field_get:io.deephaven.proto.backplane.script.grpc.SignatureHelpContext.active_signature_help) - return _internal_active_signature_help(); -} -inline void SignatureHelpContext::unsafe_arena_set_allocated_active_signature_help(::io::deephaven::proto::backplane::script::grpc::GetSignatureHelpResponse* value) { - ::google::protobuf::internal::TSanWrite(&_impl_); - if (GetArena() == nullptr) { - delete reinterpret_cast<::google::protobuf::MessageLite*>(_impl_.active_signature_help_); - } - _impl_.active_signature_help_ = reinterpret_cast<::io::deephaven::proto::backplane::script::grpc::GetSignatureHelpResponse*>(value); - if (value != nullptr) { - _impl_._has_bits_[0] |= 0x00000002u; - } else { - _impl_._has_bits_[0] &= ~0x00000002u; - } - // @@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() { - ::google::protobuf::internal::TSanWrite(&_impl_); - - _impl_._has_bits_[0] &= ~0x00000002u; - ::io::deephaven::proto::backplane::script::grpc::GetSignatureHelpResponse* released = _impl_.active_signature_help_; - _impl_.active_signature_help_ = nullptr; -#ifdef PROTOBUF_FORCE_COPY_IN_RELEASE - auto* old = reinterpret_cast<::google::protobuf::MessageLite*>(released); - released = ::google::protobuf::internal::DuplicateIfNonNull(released); - if (GetArena() == nullptr) { - delete old; - } -#else // PROTOBUF_FORCE_COPY_IN_RELEASE - if (GetArena() != nullptr) { - released = ::google::protobuf::internal::DuplicateIfNonNull(released); - } -#endif // !PROTOBUF_FORCE_COPY_IN_RELEASE - return released; -} -inline ::io::deephaven::proto::backplane::script::grpc::GetSignatureHelpResponse* SignatureHelpContext::unsafe_arena_release_active_signature_help() { - ::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; - ::io::deephaven::proto::backplane::script::grpc::GetSignatureHelpResponse* temp = _impl_.active_signature_help_; - _impl_.active_signature_help_ = nullptr; - return temp; -} -inline ::io::deephaven::proto::backplane::script::grpc::GetSignatureHelpResponse* SignatureHelpContext::_internal_mutable_active_signature_help() { - ::google::protobuf::internal::TSanWrite(&_impl_); - if (_impl_.active_signature_help_ == nullptr) { - 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(); - ::google::protobuf::internal::TSanWrite(&_impl_); - if (message_arena == nullptr) { - delete (_impl_.active_signature_help_); - } - - if (value != nullptr) { - ::google::protobuf::Arena* submessage_arena = (value)->GetArena(); - if (message_arena != submessage_arena) { - value = ::google::protobuf::internal::GetOwnedMessage(message_arena, value, submessage_arena); - } - _impl_._has_bits_[0] |= 0x00000002u; - } else { - _impl_._has_bits_[0] &= ~0x00000002u; - } - - _impl_.active_signature_help_ = reinterpret_cast<::io::deephaven::proto::backplane::script::grpc::GetSignatureHelpResponse*>(value); - // @@protoc_insertion_point(field_set_allocated:io.deephaven.proto.backplane.script.grpc.SignatureHelpContext.active_signature_help) -} - -// ------------------------------------------------------------------- - -// GetSignatureHelpResponse - -// repeated .io.deephaven.proto.backplane.script.grpc.SignatureInformation signatures = 1; -inline int GetSignatureHelpResponse::_internal_signatures_size() const { - return _internal_signatures().size(); -} -inline int GetSignatureHelpResponse::signatures_size() const { - return _internal_signatures_size(); -} -inline void GetSignatureHelpResponse::clear_signatures() { - ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.signatures_.Clear(); -} -inline ::io::deephaven::proto::backplane::script::grpc::SignatureInformation* GetSignatureHelpResponse::mutable_signatures(int index) - ABSL_ATTRIBUTE_LIFETIME_BOUND { - // @@protoc_insertion_point(field_mutable:io.deephaven.proto.backplane.script.grpc.GetSignatureHelpResponse.signatures) - return _internal_mutable_signatures()->Mutable(index); -} -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) - ::google::protobuf::internal::TSanWrite(&_impl_); - return _internal_mutable_signatures(); -} -inline const ::io::deephaven::proto::backplane::script::grpc::SignatureInformation& GetSignatureHelpResponse::signatures(int index) const - ABSL_ATTRIBUTE_LIFETIME_BOUND { - // @@protoc_insertion_point(field_get:io.deephaven.proto.backplane.script.grpc.GetSignatureHelpResponse.signatures) - return _internal_signatures().Get(index); -} -inline ::io::deephaven::proto::backplane::script::grpc::SignatureInformation* GetSignatureHelpResponse::add_signatures() ABSL_ATTRIBUTE_LIFETIME_BOUND { - ::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; -} -inline const ::google::protobuf::RepeatedPtrField<::io::deephaven::proto::backplane::script::grpc::SignatureInformation>& GetSignatureHelpResponse::signatures() const - ABSL_ATTRIBUTE_LIFETIME_BOUND { - // @@protoc_insertion_point(field_list:io.deephaven.proto.backplane.script.grpc.GetSignatureHelpResponse.signatures) - return _internal_signatures(); -} -inline const ::google::protobuf::RepeatedPtrField<::io::deephaven::proto::backplane::script::grpc::SignatureInformation>& -GetSignatureHelpResponse::_internal_signatures() const { - ::google::protobuf::internal::TSanRead(&_impl_); - return _impl_.signatures_; -} -inline ::google::protobuf::RepeatedPtrField<::io::deephaven::proto::backplane::script::grpc::SignatureInformation>* -GetSignatureHelpResponse::_internal_mutable_signatures() { - ::google::protobuf::internal::TSanRead(&_impl_); - return &_impl_.signatures_; -} - -// optional int32 active_signature = 2; -inline bool GetSignatureHelpResponse::has_active_signature() const { - bool value = (_impl_._has_bits_[0] & 0x00000001u) != 0; - return value; -} -inline void GetSignatureHelpResponse::clear_active_signature() { - ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.active_signature_ = 0; - _impl_._has_bits_[0] &= ~0x00000001u; -} -inline ::int32_t GetSignatureHelpResponse::active_signature() const { - // @@protoc_insertion_point(field_get:io.deephaven.proto.backplane.script.grpc.GetSignatureHelpResponse.active_signature) - return _internal_active_signature(); -} -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 { - ::google::protobuf::internal::TSanRead(&_impl_); - return _impl_.active_signature_; -} -inline void GetSignatureHelpResponse::_internal_set_active_signature(::int32_t value) { - ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.active_signature_ = value; -} - -// optional int32 active_parameter = 3; -inline bool GetSignatureHelpResponse::has_active_parameter() const { - bool value = (_impl_._has_bits_[0] & 0x00000002u) != 0; - return value; -} -inline void GetSignatureHelpResponse::clear_active_parameter() { - ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.active_parameter_ = 0; - _impl_._has_bits_[0] &= ~0x00000002u; -} -inline ::int32_t GetSignatureHelpResponse::active_parameter() const { - // @@protoc_insertion_point(field_get:io.deephaven.proto.backplane.script.grpc.GetSignatureHelpResponse.active_parameter) - return _internal_active_parameter(); -} -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 { - ::google::protobuf::internal::TSanRead(&_impl_); - return _impl_.active_parameter_; -} -inline void GetSignatureHelpResponse::_internal_set_active_parameter(::int32_t value) { - ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.active_parameter_ = value; -} - -// ------------------------------------------------------------------- - -// SignatureInformation - -// string label = 1; -inline void SignatureInformation::clear_label() { - ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.label_.ClearToEmpty(); -} -inline const std::string& SignatureInformation::label() const - ABSL_ATTRIBUTE_LIFETIME_BOUND { - // @@protoc_insertion_point(field_get:io.deephaven.proto.backplane.script.grpc.SignatureInformation.label) - return _internal_label(); -} -template -inline PROTOBUF_ALWAYS_INLINE void SignatureInformation::set_label(Arg_&& arg, - Args_... args) { - ::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) -} -inline std::string* SignatureInformation::mutable_label() ABSL_ATTRIBUTE_LIFETIME_BOUND { - std::string* _s = _internal_mutable_label(); - // @@protoc_insertion_point(field_mutable:io.deephaven.proto.backplane.script.grpc.SignatureInformation.label) - return _s; -} -inline const std::string& SignatureInformation::_internal_label() const { - ::google::protobuf::internal::TSanRead(&_impl_); - return _impl_.label_.Get(); -} -inline void SignatureInformation::_internal_set_label(const std::string& value) { - ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.label_.Set(value, GetArena()); -} -inline std::string* SignatureInformation::_internal_mutable_label() { - ::google::protobuf::internal::TSanWrite(&_impl_); - return _impl_.label_.Mutable( GetArena()); -} -inline std::string* SignatureInformation::release_label() { - ::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) { - ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.label_.SetAllocated(value, GetArena()); - #ifdef PROTOBUF_FORCE_COPY_DEFAULT_STRING - if (_impl_.label_.IsDefault()) { - _impl_.label_.Set("", GetArena()); - } - #endif // PROTOBUF_FORCE_COPY_DEFAULT_STRING - // @@protoc_insertion_point(field_set_allocated:io.deephaven.proto.backplane.script.grpc.SignatureInformation.label) -} - -// .io.deephaven.proto.backplane.script.grpc.MarkupContent documentation = 2; -inline bool SignatureInformation::has_documentation() const { - bool value = (_impl_._has_bits_[0] & 0x00000001u) != 0; - PROTOBUF_ASSUME(!value || _impl_.documentation_ != nullptr); - return value; -} -inline void SignatureInformation::clear_documentation() { - ::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 { - ::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_); -} -inline const ::io::deephaven::proto::backplane::script::grpc::MarkupContent& SignatureInformation::documentation() const ABSL_ATTRIBUTE_LIFETIME_BOUND { - // @@protoc_insertion_point(field_get:io.deephaven.proto.backplane.script.grpc.SignatureInformation.documentation) - return _internal_documentation(); -} -inline void SignatureInformation::unsafe_arena_set_allocated_documentation(::io::deephaven::proto::backplane::script::grpc::MarkupContent* value) { - ::google::protobuf::internal::TSanWrite(&_impl_); - if (GetArena() == nullptr) { - delete reinterpret_cast<::google::protobuf::MessageLite*>(_impl_.documentation_); - } - _impl_.documentation_ = reinterpret_cast<::io::deephaven::proto::backplane::script::grpc::MarkupContent*>(value); - if (value != nullptr) { - _impl_._has_bits_[0] |= 0x00000001u; - } else { - _impl_._has_bits_[0] &= ~0x00000001u; - } - // @@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() { - ::google::protobuf::internal::TSanWrite(&_impl_); - - _impl_._has_bits_[0] &= ~0x00000001u; - ::io::deephaven::proto::backplane::script::grpc::MarkupContent* released = _impl_.documentation_; - _impl_.documentation_ = nullptr; -#ifdef PROTOBUF_FORCE_COPY_IN_RELEASE - auto* old = reinterpret_cast<::google::protobuf::MessageLite*>(released); - released = ::google::protobuf::internal::DuplicateIfNonNull(released); - if (GetArena() == nullptr) { - delete old; - } -#else // PROTOBUF_FORCE_COPY_IN_RELEASE - if (GetArena() != nullptr) { - released = ::google::protobuf::internal::DuplicateIfNonNull(released); - } -#endif // !PROTOBUF_FORCE_COPY_IN_RELEASE - return released; -} -inline ::io::deephaven::proto::backplane::script::grpc::MarkupContent* SignatureInformation::unsafe_arena_release_documentation() { - ::google::protobuf::internal::TSanWrite(&_impl_); - // @@protoc_insertion_point(field_release:io.deephaven.proto.backplane.script.grpc.SignatureInformation.documentation) - - _impl_._has_bits_[0] &= ~0x00000001u; - ::io::deephaven::proto::backplane::script::grpc::MarkupContent* temp = _impl_.documentation_; - _impl_.documentation_ = nullptr; - return temp; -} -inline ::io::deephaven::proto::backplane::script::grpc::MarkupContent* SignatureInformation::_internal_mutable_documentation() { - ::google::protobuf::internal::TSanWrite(&_impl_); - if (_impl_.documentation_ == nullptr) { - 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(); - ::google::protobuf::internal::TSanWrite(&_impl_); - if (message_arena == nullptr) { - delete (_impl_.documentation_); - } - - if (value != nullptr) { - ::google::protobuf::Arena* submessage_arena = (value)->GetArena(); - if (message_arena != submessage_arena) { - value = ::google::protobuf::internal::GetOwnedMessage(message_arena, value, submessage_arena); - } - _impl_._has_bits_[0] |= 0x00000001u; - } else { - _impl_._has_bits_[0] &= ~0x00000001u; - } - - _impl_.documentation_ = reinterpret_cast<::io::deephaven::proto::backplane::script::grpc::MarkupContent*>(value); - // @@protoc_insertion_point(field_set_allocated:io.deephaven.proto.backplane.script.grpc.SignatureInformation.documentation) -} - -// repeated .io.deephaven.proto.backplane.script.grpc.ParameterInformation parameters = 3; -inline int SignatureInformation::_internal_parameters_size() const { - return _internal_parameters().size(); -} -inline int SignatureInformation::parameters_size() const { - return _internal_parameters_size(); -} -inline void SignatureInformation::clear_parameters() { - ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.parameters_.Clear(); -} -inline ::io::deephaven::proto::backplane::script::grpc::ParameterInformation* SignatureInformation::mutable_parameters(int index) - ABSL_ATTRIBUTE_LIFETIME_BOUND { - // @@protoc_insertion_point(field_mutable:io.deephaven.proto.backplane.script.grpc.SignatureInformation.parameters) - return _internal_mutable_parameters()->Mutable(index); -} -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) - ::google::protobuf::internal::TSanWrite(&_impl_); - return _internal_mutable_parameters(); -} -inline const ::io::deephaven::proto::backplane::script::grpc::ParameterInformation& SignatureInformation::parameters(int index) const - ABSL_ATTRIBUTE_LIFETIME_BOUND { - // @@protoc_insertion_point(field_get:io.deephaven.proto.backplane.script.grpc.SignatureInformation.parameters) - return _internal_parameters().Get(index); -} -inline ::io::deephaven::proto::backplane::script::grpc::ParameterInformation* SignatureInformation::add_parameters() ABSL_ATTRIBUTE_LIFETIME_BOUND { - ::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; -} -inline const ::google::protobuf::RepeatedPtrField<::io::deephaven::proto::backplane::script::grpc::ParameterInformation>& SignatureInformation::parameters() const - ABSL_ATTRIBUTE_LIFETIME_BOUND { - // @@protoc_insertion_point(field_list:io.deephaven.proto.backplane.script.grpc.SignatureInformation.parameters) - return _internal_parameters(); -} -inline const ::google::protobuf::RepeatedPtrField<::io::deephaven::proto::backplane::script::grpc::ParameterInformation>& -SignatureInformation::_internal_parameters() const { - ::google::protobuf::internal::TSanRead(&_impl_); - return _impl_.parameters_; -} -inline ::google::protobuf::RepeatedPtrField<::io::deephaven::proto::backplane::script::grpc::ParameterInformation>* -SignatureInformation::_internal_mutable_parameters() { - ::google::protobuf::internal::TSanRead(&_impl_); - return &_impl_.parameters_; -} - -// optional int32 active_parameter = 4; -inline bool SignatureInformation::has_active_parameter() const { - bool value = (_impl_._has_bits_[0] & 0x00000002u) != 0; - return value; -} -inline void SignatureInformation::clear_active_parameter() { - ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.active_parameter_ = 0; - _impl_._has_bits_[0] &= ~0x00000002u; -} -inline ::int32_t SignatureInformation::active_parameter() const { - // @@protoc_insertion_point(field_get:io.deephaven.proto.backplane.script.grpc.SignatureInformation.active_parameter) - return _internal_active_parameter(); -} -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 { - ::google::protobuf::internal::TSanRead(&_impl_); - return _impl_.active_parameter_; -} -inline void SignatureInformation::_internal_set_active_parameter(::int32_t value) { - ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.active_parameter_ = value; -} - -// ------------------------------------------------------------------- - -// ParameterInformation - -// string label = 1; -inline void ParameterInformation::clear_label() { - ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.label_.ClearToEmpty(); -} -inline const std::string& ParameterInformation::label() const - ABSL_ATTRIBUTE_LIFETIME_BOUND { - // @@protoc_insertion_point(field_get:io.deephaven.proto.backplane.script.grpc.ParameterInformation.label) - return _internal_label(); -} -template -inline PROTOBUF_ALWAYS_INLINE void ParameterInformation::set_label(Arg_&& arg, - Args_... args) { - ::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) -} -inline std::string* ParameterInformation::mutable_label() ABSL_ATTRIBUTE_LIFETIME_BOUND { - std::string* _s = _internal_mutable_label(); - // @@protoc_insertion_point(field_mutable:io.deephaven.proto.backplane.script.grpc.ParameterInformation.label) - return _s; -} -inline const std::string& ParameterInformation::_internal_label() const { - ::google::protobuf::internal::TSanRead(&_impl_); - return _impl_.label_.Get(); -} -inline void ParameterInformation::_internal_set_label(const std::string& value) { - ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.label_.Set(value, GetArena()); -} -inline std::string* ParameterInformation::_internal_mutable_label() { - ::google::protobuf::internal::TSanWrite(&_impl_); - return _impl_.label_.Mutable( GetArena()); -} -inline std::string* ParameterInformation::release_label() { - ::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) { - ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.label_.SetAllocated(value, GetArena()); - #ifdef PROTOBUF_FORCE_COPY_DEFAULT_STRING - if (_impl_.label_.IsDefault()) { - _impl_.label_.Set("", GetArena()); - } - #endif // PROTOBUF_FORCE_COPY_DEFAULT_STRING - // @@protoc_insertion_point(field_set_allocated:io.deephaven.proto.backplane.script.grpc.ParameterInformation.label) -} - -// .io.deephaven.proto.backplane.script.grpc.MarkupContent documentation = 2; -inline bool ParameterInformation::has_documentation() const { - bool value = (_impl_._has_bits_[0] & 0x00000001u) != 0; - PROTOBUF_ASSUME(!value || _impl_.documentation_ != nullptr); - return value; -} -inline void ParameterInformation::clear_documentation() { - ::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 { - ::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_); -} -inline const ::io::deephaven::proto::backplane::script::grpc::MarkupContent& ParameterInformation::documentation() const ABSL_ATTRIBUTE_LIFETIME_BOUND { - // @@protoc_insertion_point(field_get:io.deephaven.proto.backplane.script.grpc.ParameterInformation.documentation) - return _internal_documentation(); -} -inline void ParameterInformation::unsafe_arena_set_allocated_documentation(::io::deephaven::proto::backplane::script::grpc::MarkupContent* value) { - ::google::protobuf::internal::TSanWrite(&_impl_); - if (GetArena() == nullptr) { - delete reinterpret_cast<::google::protobuf::MessageLite*>(_impl_.documentation_); - } - _impl_.documentation_ = reinterpret_cast<::io::deephaven::proto::backplane::script::grpc::MarkupContent*>(value); - if (value != nullptr) { - _impl_._has_bits_[0] |= 0x00000001u; - } else { - _impl_._has_bits_[0] &= ~0x00000001u; - } - // @@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() { - ::google::protobuf::internal::TSanWrite(&_impl_); - - _impl_._has_bits_[0] &= ~0x00000001u; - ::io::deephaven::proto::backplane::script::grpc::MarkupContent* released = _impl_.documentation_; - _impl_.documentation_ = nullptr; -#ifdef PROTOBUF_FORCE_COPY_IN_RELEASE - auto* old = reinterpret_cast<::google::protobuf::MessageLite*>(released); - released = ::google::protobuf::internal::DuplicateIfNonNull(released); - if (GetArena() == nullptr) { - delete old; - } -#else // PROTOBUF_FORCE_COPY_IN_RELEASE - if (GetArena() != nullptr) { - released = ::google::protobuf::internal::DuplicateIfNonNull(released); - } -#endif // !PROTOBUF_FORCE_COPY_IN_RELEASE - return released; -} -inline ::io::deephaven::proto::backplane::script::grpc::MarkupContent* ParameterInformation::unsafe_arena_release_documentation() { - ::google::protobuf::internal::TSanWrite(&_impl_); - // @@protoc_insertion_point(field_release:io.deephaven.proto.backplane.script.grpc.ParameterInformation.documentation) - - _impl_._has_bits_[0] &= ~0x00000001u; - ::io::deephaven::proto::backplane::script::grpc::MarkupContent* temp = _impl_.documentation_; - _impl_.documentation_ = nullptr; - return temp; -} -inline ::io::deephaven::proto::backplane::script::grpc::MarkupContent* ParameterInformation::_internal_mutable_documentation() { - ::google::protobuf::internal::TSanWrite(&_impl_); - if (_impl_.documentation_ == nullptr) { - 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(); - ::google::protobuf::internal::TSanWrite(&_impl_); - if (message_arena == nullptr) { - delete (_impl_.documentation_); - } - - if (value != nullptr) { - ::google::protobuf::Arena* submessage_arena = (value)->GetArena(); - if (message_arena != submessage_arena) { - value = ::google::protobuf::internal::GetOwnedMessage(message_arena, value, submessage_arena); - } - _impl_._has_bits_[0] |= 0x00000001u; - } else { - _impl_._has_bits_[0] &= ~0x00000001u; - } - - _impl_.documentation_ = reinterpret_cast<::io::deephaven::proto::backplane::script::grpc::MarkupContent*>(value); - // @@protoc_insertion_point(field_set_allocated:io.deephaven.proto.backplane.script.grpc.ParameterInformation.documentation) -} - -// ------------------------------------------------------------------- - -// GetHoverRequest - -// .io.deephaven.proto.backplane.script.grpc.VersionedTextDocumentIdentifier text_document = 1; -inline bool GetHoverRequest::has_text_document() const { - bool value = (_impl_._has_bits_[0] & 0x00000001u) != 0; - PROTOBUF_ASSUME(!value || _impl_.text_document_ != nullptr); - return value; -} -inline void GetHoverRequest::clear_text_document() { - ::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 { - ::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_); -} -inline const ::io::deephaven::proto::backplane::script::grpc::VersionedTextDocumentIdentifier& GetHoverRequest::text_document() const ABSL_ATTRIBUTE_LIFETIME_BOUND { - // @@protoc_insertion_point(field_get:io.deephaven.proto.backplane.script.grpc.GetHoverRequest.text_document) - return _internal_text_document(); -} -inline void GetHoverRequest::unsafe_arena_set_allocated_text_document(::io::deephaven::proto::backplane::script::grpc::VersionedTextDocumentIdentifier* value) { - ::google::protobuf::internal::TSanWrite(&_impl_); - if (GetArena() == nullptr) { - delete reinterpret_cast<::google::protobuf::MessageLite*>(_impl_.text_document_); - } - _impl_.text_document_ = reinterpret_cast<::io::deephaven::proto::backplane::script::grpc::VersionedTextDocumentIdentifier*>(value); - if (value != nullptr) { - _impl_._has_bits_[0] |= 0x00000001u; - } else { - _impl_._has_bits_[0] &= ~0x00000001u; - } - // @@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() { - ::google::protobuf::internal::TSanWrite(&_impl_); - - _impl_._has_bits_[0] &= ~0x00000001u; - ::io::deephaven::proto::backplane::script::grpc::VersionedTextDocumentIdentifier* released = _impl_.text_document_; - _impl_.text_document_ = nullptr; -#ifdef PROTOBUF_FORCE_COPY_IN_RELEASE - auto* old = reinterpret_cast<::google::protobuf::MessageLite*>(released); - released = ::google::protobuf::internal::DuplicateIfNonNull(released); - if (GetArena() == nullptr) { - delete old; - } -#else // PROTOBUF_FORCE_COPY_IN_RELEASE - if (GetArena() != nullptr) { - released = ::google::protobuf::internal::DuplicateIfNonNull(released); - } -#endif // !PROTOBUF_FORCE_COPY_IN_RELEASE - return released; -} -inline ::io::deephaven::proto::backplane::script::grpc::VersionedTextDocumentIdentifier* GetHoverRequest::unsafe_arena_release_text_document() { - ::google::protobuf::internal::TSanWrite(&_impl_); - // @@protoc_insertion_point(field_release:io.deephaven.proto.backplane.script.grpc.GetHoverRequest.text_document) - - _impl_._has_bits_[0] &= ~0x00000001u; - ::io::deephaven::proto::backplane::script::grpc::VersionedTextDocumentIdentifier* temp = _impl_.text_document_; - _impl_.text_document_ = nullptr; - return temp; -} -inline ::io::deephaven::proto::backplane::script::grpc::VersionedTextDocumentIdentifier* GetHoverRequest::_internal_mutable_text_document() { - ::google::protobuf::internal::TSanWrite(&_impl_); - if (_impl_.text_document_ == nullptr) { - 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(); - ::google::protobuf::internal::TSanWrite(&_impl_); - if (message_arena == nullptr) { - delete (_impl_.text_document_); - } - - if (value != nullptr) { - ::google::protobuf::Arena* submessage_arena = (value)->GetArena(); - if (message_arena != submessage_arena) { - value = ::google::protobuf::internal::GetOwnedMessage(message_arena, value, submessage_arena); - } - _impl_._has_bits_[0] |= 0x00000001u; - } else { - _impl_._has_bits_[0] &= ~0x00000001u; - } - - _impl_.text_document_ = reinterpret_cast<::io::deephaven::proto::backplane::script::grpc::VersionedTextDocumentIdentifier*>(value); - // @@protoc_insertion_point(field_set_allocated:io.deephaven.proto.backplane.script.grpc.GetHoverRequest.text_document) -} - -// .io.deephaven.proto.backplane.script.grpc.Position position = 2; -inline bool GetHoverRequest::has_position() const { - bool value = (_impl_._has_bits_[0] & 0x00000002u) != 0; - PROTOBUF_ASSUME(!value || _impl_.position_ != nullptr); - return value; -} -inline void GetHoverRequest::clear_position() { - ::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 { - ::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_); -} -inline const ::io::deephaven::proto::backplane::script::grpc::Position& GetHoverRequest::position() const ABSL_ATTRIBUTE_LIFETIME_BOUND { - // @@protoc_insertion_point(field_get:io.deephaven.proto.backplane.script.grpc.GetHoverRequest.position) - return _internal_position(); -} -inline void GetHoverRequest::unsafe_arena_set_allocated_position(::io::deephaven::proto::backplane::script::grpc::Position* value) { - ::google::protobuf::internal::TSanWrite(&_impl_); - if (GetArena() == nullptr) { - delete reinterpret_cast<::google::protobuf::MessageLite*>(_impl_.position_); - } - _impl_.position_ = reinterpret_cast<::io::deephaven::proto::backplane::script::grpc::Position*>(value); - if (value != nullptr) { - _impl_._has_bits_[0] |= 0x00000002u; - } else { - _impl_._has_bits_[0] &= ~0x00000002u; - } - // @@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() { - ::google::protobuf::internal::TSanWrite(&_impl_); - - _impl_._has_bits_[0] &= ~0x00000002u; - ::io::deephaven::proto::backplane::script::grpc::Position* released = _impl_.position_; - _impl_.position_ = nullptr; -#ifdef PROTOBUF_FORCE_COPY_IN_RELEASE - auto* old = reinterpret_cast<::google::protobuf::MessageLite*>(released); - released = ::google::protobuf::internal::DuplicateIfNonNull(released); - if (GetArena() == nullptr) { - delete old; - } -#else // PROTOBUF_FORCE_COPY_IN_RELEASE - if (GetArena() != nullptr) { - released = ::google::protobuf::internal::DuplicateIfNonNull(released); - } -#endif // !PROTOBUF_FORCE_COPY_IN_RELEASE - return released; -} -inline ::io::deephaven::proto::backplane::script::grpc::Position* GetHoverRequest::unsafe_arena_release_position() { - ::google::protobuf::internal::TSanWrite(&_impl_); - // @@protoc_insertion_point(field_release:io.deephaven.proto.backplane.script.grpc.GetHoverRequest.position) - - _impl_._has_bits_[0] &= ~0x00000002u; - ::io::deephaven::proto::backplane::script::grpc::Position* temp = _impl_.position_; - _impl_.position_ = nullptr; - return temp; -} -inline ::io::deephaven::proto::backplane::script::grpc::Position* GetHoverRequest::_internal_mutable_position() { - ::google::protobuf::internal::TSanWrite(&_impl_); - if (_impl_.position_ == nullptr) { - 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(); - ::google::protobuf::internal::TSanWrite(&_impl_); - if (message_arena == nullptr) { - delete (_impl_.position_); - } - - if (value != nullptr) { - ::google::protobuf::Arena* submessage_arena = (value)->GetArena(); - if (message_arena != submessage_arena) { - value = ::google::protobuf::internal::GetOwnedMessage(message_arena, value, submessage_arena); - } - _impl_._has_bits_[0] |= 0x00000002u; - } else { - _impl_._has_bits_[0] &= ~0x00000002u; - } - - _impl_.position_ = reinterpret_cast<::io::deephaven::proto::backplane::script::grpc::Position*>(value); - // @@protoc_insertion_point(field_set_allocated:io.deephaven.proto.backplane.script.grpc.GetHoverRequest.position) -} - -// ------------------------------------------------------------------- - -// GetHoverResponse - -// .io.deephaven.proto.backplane.script.grpc.MarkupContent contents = 1; -inline bool GetHoverResponse::has_contents() const { - bool value = (_impl_._has_bits_[0] & 0x00000001u) != 0; - PROTOBUF_ASSUME(!value || _impl_.contents_ != nullptr); - return value; -} -inline void GetHoverResponse::clear_contents() { - ::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 { - ::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_); -} -inline const ::io::deephaven::proto::backplane::script::grpc::MarkupContent& GetHoverResponse::contents() const ABSL_ATTRIBUTE_LIFETIME_BOUND { - // @@protoc_insertion_point(field_get:io.deephaven.proto.backplane.script.grpc.GetHoverResponse.contents) - return _internal_contents(); -} -inline void GetHoverResponse::unsafe_arena_set_allocated_contents(::io::deephaven::proto::backplane::script::grpc::MarkupContent* value) { - ::google::protobuf::internal::TSanWrite(&_impl_); - if (GetArena() == nullptr) { - delete reinterpret_cast<::google::protobuf::MessageLite*>(_impl_.contents_); - } - _impl_.contents_ = reinterpret_cast<::io::deephaven::proto::backplane::script::grpc::MarkupContent*>(value); - if (value != nullptr) { - _impl_._has_bits_[0] |= 0x00000001u; - } else { - _impl_._has_bits_[0] &= ~0x00000001u; - } - // @@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() { - ::google::protobuf::internal::TSanWrite(&_impl_); - - _impl_._has_bits_[0] &= ~0x00000001u; - ::io::deephaven::proto::backplane::script::grpc::MarkupContent* released = _impl_.contents_; - _impl_.contents_ = nullptr; -#ifdef PROTOBUF_FORCE_COPY_IN_RELEASE - auto* old = reinterpret_cast<::google::protobuf::MessageLite*>(released); - released = ::google::protobuf::internal::DuplicateIfNonNull(released); - if (GetArena() == nullptr) { - delete old; - } -#else // PROTOBUF_FORCE_COPY_IN_RELEASE - if (GetArena() != nullptr) { - released = ::google::protobuf::internal::DuplicateIfNonNull(released); - } -#endif // !PROTOBUF_FORCE_COPY_IN_RELEASE - return released; -} -inline ::io::deephaven::proto::backplane::script::grpc::MarkupContent* GetHoverResponse::unsafe_arena_release_contents() { - ::google::protobuf::internal::TSanWrite(&_impl_); - // @@protoc_insertion_point(field_release:io.deephaven.proto.backplane.script.grpc.GetHoverResponse.contents) - - _impl_._has_bits_[0] &= ~0x00000001u; - ::io::deephaven::proto::backplane::script::grpc::MarkupContent* temp = _impl_.contents_; - _impl_.contents_ = nullptr; - return temp; -} -inline ::io::deephaven::proto::backplane::script::grpc::MarkupContent* GetHoverResponse::_internal_mutable_contents() { - ::google::protobuf::internal::TSanWrite(&_impl_); - if (_impl_.contents_ == nullptr) { - 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(); - ::google::protobuf::internal::TSanWrite(&_impl_); - if (message_arena == nullptr) { - delete (_impl_.contents_); - } - - if (value != nullptr) { - ::google::protobuf::Arena* submessage_arena = (value)->GetArena(); - if (message_arena != submessage_arena) { - value = ::google::protobuf::internal::GetOwnedMessage(message_arena, value, submessage_arena); - } - _impl_._has_bits_[0] |= 0x00000001u; - } else { - _impl_._has_bits_[0] &= ~0x00000001u; - } - - _impl_.contents_ = reinterpret_cast<::io::deephaven::proto::backplane::script::grpc::MarkupContent*>(value); - // @@protoc_insertion_point(field_set_allocated:io.deephaven.proto.backplane.script.grpc.GetHoverResponse.contents) -} - -// .io.deephaven.proto.backplane.script.grpc.DocumentRange range = 2; -inline bool GetHoverResponse::has_range() const { - bool value = (_impl_._has_bits_[0] & 0x00000002u) != 0; - PROTOBUF_ASSUME(!value || _impl_.range_ != nullptr); - return value; -} -inline void GetHoverResponse::clear_range() { - ::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 { - ::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_); -} -inline const ::io::deephaven::proto::backplane::script::grpc::DocumentRange& GetHoverResponse::range() const ABSL_ATTRIBUTE_LIFETIME_BOUND { - // @@protoc_insertion_point(field_get:io.deephaven.proto.backplane.script.grpc.GetHoverResponse.range) - return _internal_range(); -} -inline void GetHoverResponse::unsafe_arena_set_allocated_range(::io::deephaven::proto::backplane::script::grpc::DocumentRange* value) { - ::google::protobuf::internal::TSanWrite(&_impl_); - if (GetArena() == nullptr) { - delete reinterpret_cast<::google::protobuf::MessageLite*>(_impl_.range_); - } - _impl_.range_ = reinterpret_cast<::io::deephaven::proto::backplane::script::grpc::DocumentRange*>(value); - if (value != nullptr) { - _impl_._has_bits_[0] |= 0x00000002u; - } else { - _impl_._has_bits_[0] &= ~0x00000002u; - } - // @@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() { - ::google::protobuf::internal::TSanWrite(&_impl_); - - _impl_._has_bits_[0] &= ~0x00000002u; - ::io::deephaven::proto::backplane::script::grpc::DocumentRange* released = _impl_.range_; - _impl_.range_ = nullptr; -#ifdef PROTOBUF_FORCE_COPY_IN_RELEASE - auto* old = reinterpret_cast<::google::protobuf::MessageLite*>(released); - released = ::google::protobuf::internal::DuplicateIfNonNull(released); - if (GetArena() == nullptr) { - delete old; - } -#else // PROTOBUF_FORCE_COPY_IN_RELEASE - if (GetArena() != nullptr) { - released = ::google::protobuf::internal::DuplicateIfNonNull(released); - } -#endif // !PROTOBUF_FORCE_COPY_IN_RELEASE - return released; -} -inline ::io::deephaven::proto::backplane::script::grpc::DocumentRange* GetHoverResponse::unsafe_arena_release_range() { - ::google::protobuf::internal::TSanWrite(&_impl_); - // @@protoc_insertion_point(field_release:io.deephaven.proto.backplane.script.grpc.GetHoverResponse.range) - - _impl_._has_bits_[0] &= ~0x00000002u; - ::io::deephaven::proto::backplane::script::grpc::DocumentRange* temp = _impl_.range_; - _impl_.range_ = nullptr; - return temp; -} -inline ::io::deephaven::proto::backplane::script::grpc::DocumentRange* GetHoverResponse::_internal_mutable_range() { - ::google::protobuf::internal::TSanWrite(&_impl_); - if (_impl_.range_ == nullptr) { - 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(); - ::google::protobuf::internal::TSanWrite(&_impl_); - if (message_arena == nullptr) { - delete (_impl_.range_); - } - - if (value != nullptr) { - ::google::protobuf::Arena* submessage_arena = (value)->GetArena(); - if (message_arena != submessage_arena) { - value = ::google::protobuf::internal::GetOwnedMessage(message_arena, value, submessage_arena); - } - _impl_._has_bits_[0] |= 0x00000002u; - } else { - _impl_._has_bits_[0] &= ~0x00000002u; - } - - _impl_.range_ = reinterpret_cast<::io::deephaven::proto::backplane::script::grpc::DocumentRange*>(value); - // @@protoc_insertion_point(field_set_allocated:io.deephaven.proto.backplane.script.grpc.GetHoverResponse.range) -} - -// ------------------------------------------------------------------- - -// GetDiagnosticRequest - -// .io.deephaven.proto.backplane.script.grpc.VersionedTextDocumentIdentifier text_document = 1; -inline bool GetDiagnosticRequest::has_text_document() const { - bool value = (_impl_._has_bits_[0] & 0x00000004u) != 0; - PROTOBUF_ASSUME(!value || _impl_.text_document_ != nullptr); - return value; -} -inline void GetDiagnosticRequest::clear_text_document() { - ::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 { - ::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_); -} -inline const ::io::deephaven::proto::backplane::script::grpc::VersionedTextDocumentIdentifier& GetDiagnosticRequest::text_document() const ABSL_ATTRIBUTE_LIFETIME_BOUND { - // @@protoc_insertion_point(field_get:io.deephaven.proto.backplane.script.grpc.GetDiagnosticRequest.text_document) - return _internal_text_document(); -} -inline void GetDiagnosticRequest::unsafe_arena_set_allocated_text_document(::io::deephaven::proto::backplane::script::grpc::VersionedTextDocumentIdentifier* value) { - ::google::protobuf::internal::TSanWrite(&_impl_); - if (GetArena() == nullptr) { - delete reinterpret_cast<::google::protobuf::MessageLite*>(_impl_.text_document_); - } - _impl_.text_document_ = reinterpret_cast<::io::deephaven::proto::backplane::script::grpc::VersionedTextDocumentIdentifier*>(value); - if (value != nullptr) { - _impl_._has_bits_[0] |= 0x00000004u; - } else { - _impl_._has_bits_[0] &= ~0x00000004u; - } - // @@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() { - ::google::protobuf::internal::TSanWrite(&_impl_); - - _impl_._has_bits_[0] &= ~0x00000004u; - ::io::deephaven::proto::backplane::script::grpc::VersionedTextDocumentIdentifier* released = _impl_.text_document_; - _impl_.text_document_ = nullptr; -#ifdef PROTOBUF_FORCE_COPY_IN_RELEASE - auto* old = reinterpret_cast<::google::protobuf::MessageLite*>(released); - released = ::google::protobuf::internal::DuplicateIfNonNull(released); - if (GetArena() == nullptr) { - delete old; - } -#else // PROTOBUF_FORCE_COPY_IN_RELEASE - if (GetArena() != nullptr) { - released = ::google::protobuf::internal::DuplicateIfNonNull(released); - } -#endif // !PROTOBUF_FORCE_COPY_IN_RELEASE - return released; -} -inline ::io::deephaven::proto::backplane::script::grpc::VersionedTextDocumentIdentifier* GetDiagnosticRequest::unsafe_arena_release_text_document() { - ::google::protobuf::internal::TSanWrite(&_impl_); - // @@protoc_insertion_point(field_release:io.deephaven.proto.backplane.script.grpc.GetDiagnosticRequest.text_document) - - _impl_._has_bits_[0] &= ~0x00000004u; - ::io::deephaven::proto::backplane::script::grpc::VersionedTextDocumentIdentifier* temp = _impl_.text_document_; - _impl_.text_document_ = nullptr; - return temp; -} -inline ::io::deephaven::proto::backplane::script::grpc::VersionedTextDocumentIdentifier* GetDiagnosticRequest::_internal_mutable_text_document() { - ::google::protobuf::internal::TSanWrite(&_impl_); - if (_impl_.text_document_ == nullptr) { - 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(); - ::google::protobuf::internal::TSanWrite(&_impl_); - if (message_arena == nullptr) { - delete (_impl_.text_document_); - } - - if (value != nullptr) { - ::google::protobuf::Arena* submessage_arena = (value)->GetArena(); - if (message_arena != submessage_arena) { - value = ::google::protobuf::internal::GetOwnedMessage(message_arena, value, submessage_arena); - } - _impl_._has_bits_[0] |= 0x00000004u; - } else { - _impl_._has_bits_[0] &= ~0x00000004u; - } - - _impl_.text_document_ = reinterpret_cast<::io::deephaven::proto::backplane::script::grpc::VersionedTextDocumentIdentifier*>(value); - // @@protoc_insertion_point(field_set_allocated:io.deephaven.proto.backplane.script.grpc.GetDiagnosticRequest.text_document) -} - -// optional string identifier = 2; -inline bool GetDiagnosticRequest::has_identifier() const { - bool value = (_impl_._has_bits_[0] & 0x00000001u) != 0; - return value; -} -inline void GetDiagnosticRequest::clear_identifier() { - ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.identifier_.ClearToEmpty(); - _impl_._has_bits_[0] &= ~0x00000001u; -} -inline const std::string& GetDiagnosticRequest::identifier() const - ABSL_ATTRIBUTE_LIFETIME_BOUND { - // @@protoc_insertion_point(field_get:io.deephaven.proto.backplane.script.grpc.GetDiagnosticRequest.identifier) - return _internal_identifier(); -} -template -inline PROTOBUF_ALWAYS_INLINE void GetDiagnosticRequest::set_identifier(Arg_&& arg, - Args_... args) { - ::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) -} -inline std::string* GetDiagnosticRequest::mutable_identifier() ABSL_ATTRIBUTE_LIFETIME_BOUND { - std::string* _s = _internal_mutable_identifier(); - // @@protoc_insertion_point(field_mutable:io.deephaven.proto.backplane.script.grpc.GetDiagnosticRequest.identifier) - return _s; -} -inline const std::string& GetDiagnosticRequest::_internal_identifier() const { - ::google::protobuf::internal::TSanRead(&_impl_); - return _impl_.identifier_.Get(); -} -inline void GetDiagnosticRequest::_internal_set_identifier(const std::string& value) { - ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_._has_bits_[0] |= 0x00000001u; - _impl_.identifier_.Set(value, GetArena()); -} -inline std::string* GetDiagnosticRequest::_internal_mutable_identifier() { - ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_._has_bits_[0] |= 0x00000001u; - return _impl_.identifier_.Mutable( GetArena()); -} -inline std::string* GetDiagnosticRequest::release_identifier() { - ::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; - } - _impl_._has_bits_[0] &= ~0x00000001u; - auto* released = _impl_.identifier_.Release(); - #ifdef PROTOBUF_FORCE_COPY_DEFAULT_STRING - _impl_.identifier_.Set("", GetArena()); - #endif // PROTOBUF_FORCE_COPY_DEFAULT_STRING - return released; -} -inline void GetDiagnosticRequest::set_allocated_identifier(std::string* value) { - ::google::protobuf::internal::TSanWrite(&_impl_); - if (value != nullptr) { - _impl_._has_bits_[0] |= 0x00000001u; - } else { - _impl_._has_bits_[0] &= ~0x00000001u; - } - _impl_.identifier_.SetAllocated(value, GetArena()); - #ifdef PROTOBUF_FORCE_COPY_DEFAULT_STRING - if (_impl_.identifier_.IsDefault()) { - _impl_.identifier_.Set("", GetArena()); - } - #endif // PROTOBUF_FORCE_COPY_DEFAULT_STRING - // @@protoc_insertion_point(field_set_allocated:io.deephaven.proto.backplane.script.grpc.GetDiagnosticRequest.identifier) -} - -// optional string previous_result_id = 3; -inline bool GetDiagnosticRequest::has_previous_result_id() const { - bool value = (_impl_._has_bits_[0] & 0x00000002u) != 0; - return value; -} -inline void GetDiagnosticRequest::clear_previous_result_id() { - ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.previous_result_id_.ClearToEmpty(); - _impl_._has_bits_[0] &= ~0x00000002u; -} -inline const std::string& GetDiagnosticRequest::previous_result_id() const - ABSL_ATTRIBUTE_LIFETIME_BOUND { - // @@protoc_insertion_point(field_get:io.deephaven.proto.backplane.script.grpc.GetDiagnosticRequest.previous_result_id) - return _internal_previous_result_id(); -} -template -inline PROTOBUF_ALWAYS_INLINE void GetDiagnosticRequest::set_previous_result_id(Arg_&& arg, - Args_... args) { - ::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) -} -inline std::string* GetDiagnosticRequest::mutable_previous_result_id() ABSL_ATTRIBUTE_LIFETIME_BOUND { - std::string* _s = _internal_mutable_previous_result_id(); - // @@protoc_insertion_point(field_mutable:io.deephaven.proto.backplane.script.grpc.GetDiagnosticRequest.previous_result_id) - return _s; -} -inline const std::string& GetDiagnosticRequest::_internal_previous_result_id() const { - ::google::protobuf::internal::TSanRead(&_impl_); - return _impl_.previous_result_id_.Get(); -} -inline void GetDiagnosticRequest::_internal_set_previous_result_id(const std::string& value) { - ::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() { - ::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() { - ::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; - } - _impl_._has_bits_[0] &= ~0x00000002u; - auto* released = _impl_.previous_result_id_.Release(); - #ifdef PROTOBUF_FORCE_COPY_DEFAULT_STRING - _impl_.previous_result_id_.Set("", GetArena()); - #endif // PROTOBUF_FORCE_COPY_DEFAULT_STRING - return released; -} -inline void GetDiagnosticRequest::set_allocated_previous_result_id(std::string* value) { - ::google::protobuf::internal::TSanWrite(&_impl_); - if (value != nullptr) { - _impl_._has_bits_[0] |= 0x00000002u; - } else { - _impl_._has_bits_[0] &= ~0x00000002u; - } - _impl_.previous_result_id_.SetAllocated(value, GetArena()); - #ifdef PROTOBUF_FORCE_COPY_DEFAULT_STRING - if (_impl_.previous_result_id_.IsDefault()) { - _impl_.previous_result_id_.Set("", GetArena()); - } - #endif // PROTOBUF_FORCE_COPY_DEFAULT_STRING - // @@protoc_insertion_point(field_set_allocated:io.deephaven.proto.backplane.script.grpc.GetDiagnosticRequest.previous_result_id) -} - -// ------------------------------------------------------------------- - -// GetPullDiagnosticResponse - -// string kind = 1; -inline void GetPullDiagnosticResponse::clear_kind() { - ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.kind_.ClearToEmpty(); -} -inline const std::string& GetPullDiagnosticResponse::kind() const - ABSL_ATTRIBUTE_LIFETIME_BOUND { - // @@protoc_insertion_point(field_get:io.deephaven.proto.backplane.script.grpc.GetPullDiagnosticResponse.kind) - return _internal_kind(); -} -template -inline PROTOBUF_ALWAYS_INLINE void GetPullDiagnosticResponse::set_kind(Arg_&& arg, - Args_... args) { - ::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) -} -inline std::string* GetPullDiagnosticResponse::mutable_kind() ABSL_ATTRIBUTE_LIFETIME_BOUND { - std::string* _s = _internal_mutable_kind(); - // @@protoc_insertion_point(field_mutable:io.deephaven.proto.backplane.script.grpc.GetPullDiagnosticResponse.kind) - return _s; -} -inline const std::string& GetPullDiagnosticResponse::_internal_kind() const { - ::google::protobuf::internal::TSanRead(&_impl_); - return _impl_.kind_.Get(); -} -inline void GetPullDiagnosticResponse::_internal_set_kind(const std::string& value) { - ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.kind_.Set(value, GetArena()); -} -inline std::string* GetPullDiagnosticResponse::_internal_mutable_kind() { - ::google::protobuf::internal::TSanWrite(&_impl_); - return _impl_.kind_.Mutable( GetArena()); -} -inline std::string* GetPullDiagnosticResponse::release_kind() { - ::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) { - ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.kind_.SetAllocated(value, GetArena()); - #ifdef PROTOBUF_FORCE_COPY_DEFAULT_STRING - if (_impl_.kind_.IsDefault()) { - _impl_.kind_.Set("", GetArena()); - } - #endif // PROTOBUF_FORCE_COPY_DEFAULT_STRING - // @@protoc_insertion_point(field_set_allocated:io.deephaven.proto.backplane.script.grpc.GetPullDiagnosticResponse.kind) -} - -// optional string result_id = 2; -inline bool GetPullDiagnosticResponse::has_result_id() const { - bool value = (_impl_._has_bits_[0] & 0x00000001u) != 0; - return value; -} -inline void GetPullDiagnosticResponse::clear_result_id() { - ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.result_id_.ClearToEmpty(); - _impl_._has_bits_[0] &= ~0x00000001u; -} -inline const std::string& GetPullDiagnosticResponse::result_id() const - ABSL_ATTRIBUTE_LIFETIME_BOUND { - // @@protoc_insertion_point(field_get:io.deephaven.proto.backplane.script.grpc.GetPullDiagnosticResponse.result_id) - return _internal_result_id(); -} -template -inline PROTOBUF_ALWAYS_INLINE void GetPullDiagnosticResponse::set_result_id(Arg_&& arg, - Args_... args) { - ::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) -} -inline std::string* GetPullDiagnosticResponse::mutable_result_id() ABSL_ATTRIBUTE_LIFETIME_BOUND { - std::string* _s = _internal_mutable_result_id(); - // @@protoc_insertion_point(field_mutable:io.deephaven.proto.backplane.script.grpc.GetPullDiagnosticResponse.result_id) - return _s; -} -inline const std::string& GetPullDiagnosticResponse::_internal_result_id() const { - ::google::protobuf::internal::TSanRead(&_impl_); - return _impl_.result_id_.Get(); -} -inline void GetPullDiagnosticResponse::_internal_set_result_id(const std::string& value) { - ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_._has_bits_[0] |= 0x00000001u; - _impl_.result_id_.Set(value, GetArena()); -} -inline std::string* GetPullDiagnosticResponse::_internal_mutable_result_id() { - ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_._has_bits_[0] |= 0x00000001u; - return _impl_.result_id_.Mutable( GetArena()); -} -inline std::string* GetPullDiagnosticResponse::release_result_id() { - ::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; - } - _impl_._has_bits_[0] &= ~0x00000001u; - auto* released = _impl_.result_id_.Release(); - #ifdef PROTOBUF_FORCE_COPY_DEFAULT_STRING - _impl_.result_id_.Set("", GetArena()); - #endif // PROTOBUF_FORCE_COPY_DEFAULT_STRING - return released; -} -inline void GetPullDiagnosticResponse::set_allocated_result_id(std::string* value) { - ::google::protobuf::internal::TSanWrite(&_impl_); - if (value != nullptr) { - _impl_._has_bits_[0] |= 0x00000001u; - } else { - _impl_._has_bits_[0] &= ~0x00000001u; - } - _impl_.result_id_.SetAllocated(value, GetArena()); - #ifdef PROTOBUF_FORCE_COPY_DEFAULT_STRING - if (_impl_.result_id_.IsDefault()) { - _impl_.result_id_.Set("", GetArena()); - } - #endif // PROTOBUF_FORCE_COPY_DEFAULT_STRING - // @@protoc_insertion_point(field_set_allocated:io.deephaven.proto.backplane.script.grpc.GetPullDiagnosticResponse.result_id) -} - -// repeated .io.deephaven.proto.backplane.script.grpc.Diagnostic items = 3; -inline int GetPullDiagnosticResponse::_internal_items_size() const { - return _internal_items().size(); -} -inline int GetPullDiagnosticResponse::items_size() const { - return _internal_items_size(); -} -inline void GetPullDiagnosticResponse::clear_items() { - ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.items_.Clear(); -} -inline ::io::deephaven::proto::backplane::script::grpc::Diagnostic* GetPullDiagnosticResponse::mutable_items(int index) - ABSL_ATTRIBUTE_LIFETIME_BOUND { - // @@protoc_insertion_point(field_mutable:io.deephaven.proto.backplane.script.grpc.GetPullDiagnosticResponse.items) - return _internal_mutable_items()->Mutable(index); -} -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) - ::google::protobuf::internal::TSanWrite(&_impl_); - return _internal_mutable_items(); -} -inline const ::io::deephaven::proto::backplane::script::grpc::Diagnostic& GetPullDiagnosticResponse::items(int index) const - ABSL_ATTRIBUTE_LIFETIME_BOUND { - // @@protoc_insertion_point(field_get:io.deephaven.proto.backplane.script.grpc.GetPullDiagnosticResponse.items) - return _internal_items().Get(index); -} -inline ::io::deephaven::proto::backplane::script::grpc::Diagnostic* GetPullDiagnosticResponse::add_items() ABSL_ATTRIBUTE_LIFETIME_BOUND { - ::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; -} -inline const ::google::protobuf::RepeatedPtrField<::io::deephaven::proto::backplane::script::grpc::Diagnostic>& GetPullDiagnosticResponse::items() const - ABSL_ATTRIBUTE_LIFETIME_BOUND { - // @@protoc_insertion_point(field_list:io.deephaven.proto.backplane.script.grpc.GetPullDiagnosticResponse.items) - return _internal_items(); -} -inline const ::google::protobuf::RepeatedPtrField<::io::deephaven::proto::backplane::script::grpc::Diagnostic>& -GetPullDiagnosticResponse::_internal_items() const { - ::google::protobuf::internal::TSanRead(&_impl_); - return _impl_.items_; -} -inline ::google::protobuf::RepeatedPtrField<::io::deephaven::proto::backplane::script::grpc::Diagnostic>* -GetPullDiagnosticResponse::_internal_mutable_items() { - ::google::protobuf::internal::TSanRead(&_impl_); - return &_impl_.items_; -} - -// ------------------------------------------------------------------- - -// GetPublishDiagnosticResponse - -// string uri = 1; -inline void GetPublishDiagnosticResponse::clear_uri() { - ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.uri_.ClearToEmpty(); -} -inline const std::string& GetPublishDiagnosticResponse::uri() const - ABSL_ATTRIBUTE_LIFETIME_BOUND { - // @@protoc_insertion_point(field_get:io.deephaven.proto.backplane.script.grpc.GetPublishDiagnosticResponse.uri) - return _internal_uri(); -} -template -inline PROTOBUF_ALWAYS_INLINE void GetPublishDiagnosticResponse::set_uri(Arg_&& arg, - Args_... args) { - ::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) -} -inline std::string* GetPublishDiagnosticResponse::mutable_uri() ABSL_ATTRIBUTE_LIFETIME_BOUND { - std::string* _s = _internal_mutable_uri(); - // @@protoc_insertion_point(field_mutable:io.deephaven.proto.backplane.script.grpc.GetPublishDiagnosticResponse.uri) - return _s; -} -inline const std::string& GetPublishDiagnosticResponse::_internal_uri() const { - ::google::protobuf::internal::TSanRead(&_impl_); - return _impl_.uri_.Get(); -} -inline void GetPublishDiagnosticResponse::_internal_set_uri(const std::string& value) { - ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.uri_.Set(value, GetArena()); -} -inline std::string* GetPublishDiagnosticResponse::_internal_mutable_uri() { - ::google::protobuf::internal::TSanWrite(&_impl_); - return _impl_.uri_.Mutable( GetArena()); -} -inline std::string* GetPublishDiagnosticResponse::release_uri() { - ::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) { - ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.uri_.SetAllocated(value, GetArena()); - #ifdef PROTOBUF_FORCE_COPY_DEFAULT_STRING - if (_impl_.uri_.IsDefault()) { - _impl_.uri_.Set("", GetArena()); - } - #endif // PROTOBUF_FORCE_COPY_DEFAULT_STRING - // @@protoc_insertion_point(field_set_allocated:io.deephaven.proto.backplane.script.grpc.GetPublishDiagnosticResponse.uri) -} - -// optional int32 version = 2; -inline bool GetPublishDiagnosticResponse::has_version() const { - bool value = (_impl_._has_bits_[0] & 0x00000001u) != 0; - return value; -} -inline void GetPublishDiagnosticResponse::clear_version() { - ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.version_ = 0; - _impl_._has_bits_[0] &= ~0x00000001u; -} -inline ::int32_t GetPublishDiagnosticResponse::version() const { - // @@protoc_insertion_point(field_get:io.deephaven.proto.backplane.script.grpc.GetPublishDiagnosticResponse.version) - return _internal_version(); -} -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 { - ::google::protobuf::internal::TSanRead(&_impl_); - return _impl_.version_; -} -inline void GetPublishDiagnosticResponse::_internal_set_version(::int32_t value) { - ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.version_ = value; -} - -// repeated .io.deephaven.proto.backplane.script.grpc.Diagnostic diagnostics = 3; -inline int GetPublishDiagnosticResponse::_internal_diagnostics_size() const { - return _internal_diagnostics().size(); -} -inline int GetPublishDiagnosticResponse::diagnostics_size() const { - return _internal_diagnostics_size(); -} -inline void GetPublishDiagnosticResponse::clear_diagnostics() { - ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.diagnostics_.Clear(); -} -inline ::io::deephaven::proto::backplane::script::grpc::Diagnostic* GetPublishDiagnosticResponse::mutable_diagnostics(int index) - ABSL_ATTRIBUTE_LIFETIME_BOUND { - // @@protoc_insertion_point(field_mutable:io.deephaven.proto.backplane.script.grpc.GetPublishDiagnosticResponse.diagnostics) - return _internal_mutable_diagnostics()->Mutable(index); -} -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) - ::google::protobuf::internal::TSanWrite(&_impl_); - return _internal_mutable_diagnostics(); -} -inline const ::io::deephaven::proto::backplane::script::grpc::Diagnostic& GetPublishDiagnosticResponse::diagnostics(int index) const - ABSL_ATTRIBUTE_LIFETIME_BOUND { - // @@protoc_insertion_point(field_get:io.deephaven.proto.backplane.script.grpc.GetPublishDiagnosticResponse.diagnostics) - return _internal_diagnostics().Get(index); -} -inline ::io::deephaven::proto::backplane::script::grpc::Diagnostic* GetPublishDiagnosticResponse::add_diagnostics() ABSL_ATTRIBUTE_LIFETIME_BOUND { - ::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; -} -inline const ::google::protobuf::RepeatedPtrField<::io::deephaven::proto::backplane::script::grpc::Diagnostic>& GetPublishDiagnosticResponse::diagnostics() const - ABSL_ATTRIBUTE_LIFETIME_BOUND { - // @@protoc_insertion_point(field_list:io.deephaven.proto.backplane.script.grpc.GetPublishDiagnosticResponse.diagnostics) - return _internal_diagnostics(); -} -inline const ::google::protobuf::RepeatedPtrField<::io::deephaven::proto::backplane::script::grpc::Diagnostic>& -GetPublishDiagnosticResponse::_internal_diagnostics() const { - ::google::protobuf::internal::TSanRead(&_impl_); - return _impl_.diagnostics_; -} -inline ::google::protobuf::RepeatedPtrField<::io::deephaven::proto::backplane::script::grpc::Diagnostic>* -GetPublishDiagnosticResponse::_internal_mutable_diagnostics() { - ::google::protobuf::internal::TSanRead(&_impl_); - return &_impl_.diagnostics_; -} - -// ------------------------------------------------------------------- - -// Diagnostic_CodeDescription - -// string href = 1; -inline void Diagnostic_CodeDescription::clear_href() { - ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.href_.ClearToEmpty(); -} -inline const std::string& Diagnostic_CodeDescription::href() const - ABSL_ATTRIBUTE_LIFETIME_BOUND { - // @@protoc_insertion_point(field_get:io.deephaven.proto.backplane.script.grpc.Diagnostic.CodeDescription.href) - return _internal_href(); -} -template -inline PROTOBUF_ALWAYS_INLINE void Diagnostic_CodeDescription::set_href(Arg_&& arg, - Args_... args) { - ::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) -} -inline std::string* Diagnostic_CodeDescription::mutable_href() ABSL_ATTRIBUTE_LIFETIME_BOUND { - std::string* _s = _internal_mutable_href(); - // @@protoc_insertion_point(field_mutable:io.deephaven.proto.backplane.script.grpc.Diagnostic.CodeDescription.href) - return _s; -} -inline const std::string& Diagnostic_CodeDescription::_internal_href() const { - ::google::protobuf::internal::TSanRead(&_impl_); - return _impl_.href_.Get(); -} -inline void Diagnostic_CodeDescription::_internal_set_href(const std::string& value) { - ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.href_.Set(value, GetArena()); -} -inline std::string* Diagnostic_CodeDescription::_internal_mutable_href() { - ::google::protobuf::internal::TSanWrite(&_impl_); - return _impl_.href_.Mutable( GetArena()); -} -inline std::string* Diagnostic_CodeDescription::release_href() { - ::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) { - ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.href_.SetAllocated(value, GetArena()); - #ifdef PROTOBUF_FORCE_COPY_DEFAULT_STRING - if (_impl_.href_.IsDefault()) { - _impl_.href_.Set("", GetArena()); - } - #endif // PROTOBUF_FORCE_COPY_DEFAULT_STRING - // @@protoc_insertion_point(field_set_allocated:io.deephaven.proto.backplane.script.grpc.Diagnostic.CodeDescription.href) -} - -// ------------------------------------------------------------------- - -// Diagnostic - -// .io.deephaven.proto.backplane.script.grpc.DocumentRange range = 1; -inline bool Diagnostic::has_range() const { - bool value = (_impl_._has_bits_[0] & 0x00000008u) != 0; - PROTOBUF_ASSUME(!value || _impl_.range_ != nullptr); - return value; -} -inline void Diagnostic::clear_range() { - ::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 { - ::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_); -} -inline const ::io::deephaven::proto::backplane::script::grpc::DocumentRange& Diagnostic::range() const ABSL_ATTRIBUTE_LIFETIME_BOUND { - // @@protoc_insertion_point(field_get:io.deephaven.proto.backplane.script.grpc.Diagnostic.range) - return _internal_range(); -} -inline void Diagnostic::unsafe_arena_set_allocated_range(::io::deephaven::proto::backplane::script::grpc::DocumentRange* value) { - ::google::protobuf::internal::TSanWrite(&_impl_); - if (GetArena() == nullptr) { - delete reinterpret_cast<::google::protobuf::MessageLite*>(_impl_.range_); - } - _impl_.range_ = reinterpret_cast<::io::deephaven::proto::backplane::script::grpc::DocumentRange*>(value); - if (value != nullptr) { - _impl_._has_bits_[0] |= 0x00000008u; - } else { - _impl_._has_bits_[0] &= ~0x00000008u; - } - // @@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() { - ::google::protobuf::internal::TSanWrite(&_impl_); - - _impl_._has_bits_[0] &= ~0x00000008u; - ::io::deephaven::proto::backplane::script::grpc::DocumentRange* released = _impl_.range_; - _impl_.range_ = nullptr; -#ifdef PROTOBUF_FORCE_COPY_IN_RELEASE - auto* old = reinterpret_cast<::google::protobuf::MessageLite*>(released); - released = ::google::protobuf::internal::DuplicateIfNonNull(released); - if (GetArena() == nullptr) { - delete old; - } -#else // PROTOBUF_FORCE_COPY_IN_RELEASE - if (GetArena() != nullptr) { - released = ::google::protobuf::internal::DuplicateIfNonNull(released); - } -#endif // !PROTOBUF_FORCE_COPY_IN_RELEASE - return released; -} -inline ::io::deephaven::proto::backplane::script::grpc::DocumentRange* Diagnostic::unsafe_arena_release_range() { - ::google::protobuf::internal::TSanWrite(&_impl_); - // @@protoc_insertion_point(field_release:io.deephaven.proto.backplane.script.grpc.Diagnostic.range) - - _impl_._has_bits_[0] &= ~0x00000008u; - ::io::deephaven::proto::backplane::script::grpc::DocumentRange* temp = _impl_.range_; - _impl_.range_ = nullptr; - return temp; -} -inline ::io::deephaven::proto::backplane::script::grpc::DocumentRange* Diagnostic::_internal_mutable_range() { - ::google::protobuf::internal::TSanWrite(&_impl_); - if (_impl_.range_ == nullptr) { - 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(); - ::google::protobuf::internal::TSanWrite(&_impl_); - if (message_arena == nullptr) { - delete (_impl_.range_); - } - - if (value != nullptr) { - ::google::protobuf::Arena* submessage_arena = (value)->GetArena(); - if (message_arena != submessage_arena) { - value = ::google::protobuf::internal::GetOwnedMessage(message_arena, value, submessage_arena); - } - _impl_._has_bits_[0] |= 0x00000008u; - } else { - _impl_._has_bits_[0] &= ~0x00000008u; - } - - _impl_.range_ = reinterpret_cast<::io::deephaven::proto::backplane::script::grpc::DocumentRange*>(value); - // @@protoc_insertion_point(field_set_allocated:io.deephaven.proto.backplane.script.grpc.Diagnostic.range) -} - -// .io.deephaven.proto.backplane.script.grpc.Diagnostic.DiagnosticSeverity severity = 2; -inline void Diagnostic::clear_severity() { - ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.severity_ = 0; -} -inline ::io::deephaven::proto::backplane::script::grpc::Diagnostic_DiagnosticSeverity Diagnostic::severity() const { - // @@protoc_insertion_point(field_get:io.deephaven.proto.backplane.script.grpc.Diagnostic.severity) - return _internal_severity(); -} -inline void Diagnostic::set_severity(::io::deephaven::proto::backplane::script::grpc::Diagnostic_DiagnosticSeverity value) { - _internal_set_severity(value); - // @@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 { - ::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) { - ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.severity_ = value; -} - -// optional string code = 3; -inline bool Diagnostic::has_code() const { - bool value = (_impl_._has_bits_[0] & 0x00000001u) != 0; - return value; -} -inline void Diagnostic::clear_code() { - ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.code_.ClearToEmpty(); - _impl_._has_bits_[0] &= ~0x00000001u; -} -inline const std::string& Diagnostic::code() const - ABSL_ATTRIBUTE_LIFETIME_BOUND { - // @@protoc_insertion_point(field_get:io.deephaven.proto.backplane.script.grpc.Diagnostic.code) - return _internal_code(); -} -template -inline PROTOBUF_ALWAYS_INLINE void Diagnostic::set_code(Arg_&& arg, - Args_... args) { - ::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) -} -inline std::string* Diagnostic::mutable_code() ABSL_ATTRIBUTE_LIFETIME_BOUND { - std::string* _s = _internal_mutable_code(); - // @@protoc_insertion_point(field_mutable:io.deephaven.proto.backplane.script.grpc.Diagnostic.code) - return _s; -} -inline const std::string& Diagnostic::_internal_code() const { - ::google::protobuf::internal::TSanRead(&_impl_); - return _impl_.code_.Get(); -} -inline void Diagnostic::_internal_set_code(const std::string& value) { - ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_._has_bits_[0] |= 0x00000001u; - _impl_.code_.Set(value, GetArena()); -} -inline std::string* Diagnostic::_internal_mutable_code() { - ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_._has_bits_[0] |= 0x00000001u; - return _impl_.code_.Mutable( GetArena()); -} -inline std::string* Diagnostic::release_code() { - ::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; - } - _impl_._has_bits_[0] &= ~0x00000001u; - auto* released = _impl_.code_.Release(); - #ifdef PROTOBUF_FORCE_COPY_DEFAULT_STRING - _impl_.code_.Set("", GetArena()); - #endif // PROTOBUF_FORCE_COPY_DEFAULT_STRING - return released; -} -inline void Diagnostic::set_allocated_code(std::string* value) { - ::google::protobuf::internal::TSanWrite(&_impl_); - if (value != nullptr) { - _impl_._has_bits_[0] |= 0x00000001u; - } else { - _impl_._has_bits_[0] &= ~0x00000001u; - } - _impl_.code_.SetAllocated(value, GetArena()); - #ifdef PROTOBUF_FORCE_COPY_DEFAULT_STRING - if (_impl_.code_.IsDefault()) { - _impl_.code_.Set("", GetArena()); - } - #endif // PROTOBUF_FORCE_COPY_DEFAULT_STRING - // @@protoc_insertion_point(field_set_allocated:io.deephaven.proto.backplane.script.grpc.Diagnostic.code) -} - -// optional .io.deephaven.proto.backplane.script.grpc.Diagnostic.CodeDescription code_description = 4; -inline bool Diagnostic::has_code_description() const { - bool value = (_impl_._has_bits_[0] & 0x00000010u) != 0; - PROTOBUF_ASSUME(!value || _impl_.code_description_ != nullptr); - return value; -} -inline void Diagnostic::clear_code_description() { - ::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 { - ::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_); -} -inline const ::io::deephaven::proto::backplane::script::grpc::Diagnostic_CodeDescription& Diagnostic::code_description() const ABSL_ATTRIBUTE_LIFETIME_BOUND { - // @@protoc_insertion_point(field_get:io.deephaven.proto.backplane.script.grpc.Diagnostic.code_description) - return _internal_code_description(); -} -inline void Diagnostic::unsafe_arena_set_allocated_code_description(::io::deephaven::proto::backplane::script::grpc::Diagnostic_CodeDescription* value) { - ::google::protobuf::internal::TSanWrite(&_impl_); - if (GetArena() == nullptr) { - delete reinterpret_cast<::google::protobuf::MessageLite*>(_impl_.code_description_); - } - _impl_.code_description_ = reinterpret_cast<::io::deephaven::proto::backplane::script::grpc::Diagnostic_CodeDescription*>(value); - if (value != nullptr) { - _impl_._has_bits_[0] |= 0x00000010u; - } else { - _impl_._has_bits_[0] &= ~0x00000010u; - } - // @@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() { - ::google::protobuf::internal::TSanWrite(&_impl_); - - _impl_._has_bits_[0] &= ~0x00000010u; - ::io::deephaven::proto::backplane::script::grpc::Diagnostic_CodeDescription* released = _impl_.code_description_; - _impl_.code_description_ = nullptr; -#ifdef PROTOBUF_FORCE_COPY_IN_RELEASE - auto* old = reinterpret_cast<::google::protobuf::MessageLite*>(released); - released = ::google::protobuf::internal::DuplicateIfNonNull(released); - if (GetArena() == nullptr) { - delete old; - } -#else // PROTOBUF_FORCE_COPY_IN_RELEASE - if (GetArena() != nullptr) { - released = ::google::protobuf::internal::DuplicateIfNonNull(released); - } -#endif // !PROTOBUF_FORCE_COPY_IN_RELEASE - return released; -} -inline ::io::deephaven::proto::backplane::script::grpc::Diagnostic_CodeDescription* Diagnostic::unsafe_arena_release_code_description() { - ::google::protobuf::internal::TSanWrite(&_impl_); - // @@protoc_insertion_point(field_release:io.deephaven.proto.backplane.script.grpc.Diagnostic.code_description) - - _impl_._has_bits_[0] &= ~0x00000010u; - ::io::deephaven::proto::backplane::script::grpc::Diagnostic_CodeDescription* temp = _impl_.code_description_; - _impl_.code_description_ = nullptr; - return temp; -} -inline ::io::deephaven::proto::backplane::script::grpc::Diagnostic_CodeDescription* Diagnostic::_internal_mutable_code_description() { - ::google::protobuf::internal::TSanWrite(&_impl_); - if (_impl_.code_description_ == nullptr) { - 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(); - ::google::protobuf::internal::TSanWrite(&_impl_); - if (message_arena == nullptr) { - delete (_impl_.code_description_); - } - - if (value != nullptr) { - ::google::protobuf::Arena* submessage_arena = (value)->GetArena(); - if (message_arena != submessage_arena) { - value = ::google::protobuf::internal::GetOwnedMessage(message_arena, value, submessage_arena); - } - _impl_._has_bits_[0] |= 0x00000010u; - } else { - _impl_._has_bits_[0] &= ~0x00000010u; - } - - _impl_.code_description_ = reinterpret_cast<::io::deephaven::proto::backplane::script::grpc::Diagnostic_CodeDescription*>(value); - // @@protoc_insertion_point(field_set_allocated:io.deephaven.proto.backplane.script.grpc.Diagnostic.code_description) -} - -// optional string source = 5; -inline bool Diagnostic::has_source() const { - bool value = (_impl_._has_bits_[0] & 0x00000002u) != 0; - return value; -} -inline void Diagnostic::clear_source() { - ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.source_.ClearToEmpty(); - _impl_._has_bits_[0] &= ~0x00000002u; -} -inline const std::string& Diagnostic::source() const - ABSL_ATTRIBUTE_LIFETIME_BOUND { - // @@protoc_insertion_point(field_get:io.deephaven.proto.backplane.script.grpc.Diagnostic.source) - return _internal_source(); -} -template -inline PROTOBUF_ALWAYS_INLINE void Diagnostic::set_source(Arg_&& arg, - Args_... args) { - ::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) -} -inline std::string* Diagnostic::mutable_source() ABSL_ATTRIBUTE_LIFETIME_BOUND { - std::string* _s = _internal_mutable_source(); - // @@protoc_insertion_point(field_mutable:io.deephaven.proto.backplane.script.grpc.Diagnostic.source) - return _s; -} -inline const std::string& Diagnostic::_internal_source() const { - ::google::protobuf::internal::TSanRead(&_impl_); - return _impl_.source_.Get(); -} -inline void Diagnostic::_internal_set_source(const std::string& value) { - ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_._has_bits_[0] |= 0x00000002u; - _impl_.source_.Set(value, GetArena()); -} -inline std::string* Diagnostic::_internal_mutable_source() { - ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_._has_bits_[0] |= 0x00000002u; - return _impl_.source_.Mutable( GetArena()); -} -inline std::string* Diagnostic::release_source() { - ::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; - } - _impl_._has_bits_[0] &= ~0x00000002u; - auto* released = _impl_.source_.Release(); - #ifdef PROTOBUF_FORCE_COPY_DEFAULT_STRING - _impl_.source_.Set("", GetArena()); - #endif // PROTOBUF_FORCE_COPY_DEFAULT_STRING - return released; -} -inline void Diagnostic::set_allocated_source(std::string* value) { - ::google::protobuf::internal::TSanWrite(&_impl_); - if (value != nullptr) { - _impl_._has_bits_[0] |= 0x00000002u; - } else { - _impl_._has_bits_[0] &= ~0x00000002u; - } - _impl_.source_.SetAllocated(value, GetArena()); - #ifdef PROTOBUF_FORCE_COPY_DEFAULT_STRING - if (_impl_.source_.IsDefault()) { - _impl_.source_.Set("", GetArena()); - } - #endif // PROTOBUF_FORCE_COPY_DEFAULT_STRING - // @@protoc_insertion_point(field_set_allocated:io.deephaven.proto.backplane.script.grpc.Diagnostic.source) -} - -// string message = 6; -inline void Diagnostic::clear_message() { - ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.message_.ClearToEmpty(); -} -inline const std::string& Diagnostic::message() const - ABSL_ATTRIBUTE_LIFETIME_BOUND { - // @@protoc_insertion_point(field_get:io.deephaven.proto.backplane.script.grpc.Diagnostic.message) - return _internal_message(); -} -template -inline PROTOBUF_ALWAYS_INLINE void Diagnostic::set_message(Arg_&& arg, - Args_... args) { - ::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) -} -inline std::string* Diagnostic::mutable_message() ABSL_ATTRIBUTE_LIFETIME_BOUND { - std::string* _s = _internal_mutable_message(); - // @@protoc_insertion_point(field_mutable:io.deephaven.proto.backplane.script.grpc.Diagnostic.message) - return _s; -} -inline const std::string& Diagnostic::_internal_message() const { - ::google::protobuf::internal::TSanRead(&_impl_); - return _impl_.message_.Get(); -} -inline void Diagnostic::_internal_set_message(const std::string& value) { - ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.message_.Set(value, GetArena()); -} -inline std::string* Diagnostic::_internal_mutable_message() { - ::google::protobuf::internal::TSanWrite(&_impl_); - return _impl_.message_.Mutable( GetArena()); -} -inline std::string* Diagnostic::release_message() { - ::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) { - ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.message_.SetAllocated(value, GetArena()); - #ifdef PROTOBUF_FORCE_COPY_DEFAULT_STRING - if (_impl_.message_.IsDefault()) { - _impl_.message_.Set("", GetArena()); - } - #endif // PROTOBUF_FORCE_COPY_DEFAULT_STRING - // @@protoc_insertion_point(field_set_allocated:io.deephaven.proto.backplane.script.grpc.Diagnostic.message) -} - -// repeated .io.deephaven.proto.backplane.script.grpc.Diagnostic.DiagnosticTag tags = 7; -inline int Diagnostic::_internal_tags_size() const { - return _internal_tags().size(); -} -inline int Diagnostic::tags_size() const { - return _internal_tags_size(); -} -inline void Diagnostic::clear_tags() { - ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.tags_.Clear(); -} -inline ::io::deephaven::proto::backplane::script::grpc::Diagnostic_DiagnosticTag Diagnostic::tags(int index) const { - // @@protoc_insertion_point(field_get:io.deephaven.proto.backplane.script.grpc.Diagnostic.tags) - return static_cast<::io::deephaven::proto::backplane::script::grpc::Diagnostic_DiagnosticTag>(_internal_tags().Get(index)); -} -inline void Diagnostic::set_tags(int index, ::io::deephaven::proto::backplane::script::grpc::Diagnostic_DiagnosticTag value) { - _internal_mutable_tags()->Set(index, value); - // @@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) { - ::google::protobuf::internal::TSanWrite(&_impl_); - _internal_mutable_tags()->Add(value); - // @@protoc_insertion_point(field_add:io.deephaven.proto.backplane.script.grpc.Diagnostic.tags) -} -inline const ::google::protobuf::RepeatedField& Diagnostic::tags() const - ABSL_ATTRIBUTE_LIFETIME_BOUND { - // @@protoc_insertion_point(field_list:io.deephaven.proto.backplane.script.grpc.Diagnostic.tags) - return _internal_tags(); -} -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) - ::google::protobuf::internal::TSanWrite(&_impl_); - return _internal_mutable_tags(); -} -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() { - ::google::protobuf::internal::TSanRead(&_impl_); - return &_impl_.tags_; -} - -// optional bytes data = 9; -inline bool Diagnostic::has_data() const { - bool value = (_impl_._has_bits_[0] & 0x00000004u) != 0; - return value; -} -inline void Diagnostic::clear_data() { - ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.data_.ClearToEmpty(); - _impl_._has_bits_[0] &= ~0x00000004u; -} -inline const std::string& Diagnostic::data() const - ABSL_ATTRIBUTE_LIFETIME_BOUND { - // @@protoc_insertion_point(field_get:io.deephaven.proto.backplane.script.grpc.Diagnostic.data) - return _internal_data(); -} -template -inline PROTOBUF_ALWAYS_INLINE void Diagnostic::set_data(Arg_&& arg, - Args_... args) { - ::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) -} -inline std::string* Diagnostic::mutable_data() ABSL_ATTRIBUTE_LIFETIME_BOUND { - std::string* _s = _internal_mutable_data(); - // @@protoc_insertion_point(field_mutable:io.deephaven.proto.backplane.script.grpc.Diagnostic.data) - return _s; -} -inline const std::string& Diagnostic::_internal_data() const { - ::google::protobuf::internal::TSanRead(&_impl_); - return _impl_.data_.Get(); -} -inline void Diagnostic::_internal_set_data(const std::string& value) { - ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_._has_bits_[0] |= 0x00000004u; - _impl_.data_.Set(value, GetArena()); -} -inline std::string* Diagnostic::_internal_mutable_data() { - ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_._has_bits_[0] |= 0x00000004u; - return _impl_.data_.Mutable( GetArena()); -} -inline std::string* Diagnostic::release_data() { - ::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; - } - _impl_._has_bits_[0] &= ~0x00000004u; - auto* released = _impl_.data_.Release(); - #ifdef PROTOBUF_FORCE_COPY_DEFAULT_STRING - _impl_.data_.Set("", GetArena()); - #endif // PROTOBUF_FORCE_COPY_DEFAULT_STRING - return released; -} -inline void Diagnostic::set_allocated_data(std::string* value) { - ::google::protobuf::internal::TSanWrite(&_impl_); - if (value != nullptr) { - _impl_._has_bits_[0] |= 0x00000004u; - } else { - _impl_._has_bits_[0] &= ~0x00000004u; - } - _impl_.data_.SetAllocated(value, GetArena()); - #ifdef PROTOBUF_FORCE_COPY_DEFAULT_STRING - if (_impl_.data_.IsDefault()) { - _impl_.data_.Set("", GetArena()); - } - #endif // PROTOBUF_FORCE_COPY_DEFAULT_STRING - // @@protoc_insertion_point(field_set_allocated:io.deephaven.proto.backplane.script.grpc.Diagnostic.data) -} - -// ------------------------------------------------------------------- - -// FigureDescriptor_ChartDescriptor - -// int32 colspan = 1; -inline void FigureDescriptor_ChartDescriptor::clear_colspan() { - ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.colspan_ = 0; -} -inline ::int32_t FigureDescriptor_ChartDescriptor::colspan() const { - // @@protoc_insertion_point(field_get:io.deephaven.proto.backplane.script.grpc.FigureDescriptor.ChartDescriptor.colspan) - return _internal_colspan(); -} -inline void FigureDescriptor_ChartDescriptor::set_colspan(::int32_t value) { - _internal_set_colspan(value); - // @@protoc_insertion_point(field_set:io.deephaven.proto.backplane.script.grpc.FigureDescriptor.ChartDescriptor.colspan) -} -inline ::int32_t FigureDescriptor_ChartDescriptor::_internal_colspan() const { - ::google::protobuf::internal::TSanRead(&_impl_); - return _impl_.colspan_; -} -inline void FigureDescriptor_ChartDescriptor::_internal_set_colspan(::int32_t value) { - ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.colspan_ = value; -} - -// int32 rowspan = 2; -inline void FigureDescriptor_ChartDescriptor::clear_rowspan() { - ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.rowspan_ = 0; -} -inline ::int32_t FigureDescriptor_ChartDescriptor::rowspan() const { - // @@protoc_insertion_point(field_get:io.deephaven.proto.backplane.script.grpc.FigureDescriptor.ChartDescriptor.rowspan) - return _internal_rowspan(); -} -inline void FigureDescriptor_ChartDescriptor::set_rowspan(::int32_t value) { - _internal_set_rowspan(value); - // @@protoc_insertion_point(field_set:io.deephaven.proto.backplane.script.grpc.FigureDescriptor.ChartDescriptor.rowspan) -} -inline ::int32_t FigureDescriptor_ChartDescriptor::_internal_rowspan() const { - ::google::protobuf::internal::TSanRead(&_impl_); - return _impl_.rowspan_; -} -inline void FigureDescriptor_ChartDescriptor::_internal_set_rowspan(::int32_t value) { - ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.rowspan_ = value; -} - -// repeated .io.deephaven.proto.backplane.script.grpc.FigureDescriptor.SeriesDescriptor series = 3; -inline int FigureDescriptor_ChartDescriptor::_internal_series_size() const { - return _internal_series().size(); -} -inline int FigureDescriptor_ChartDescriptor::series_size() const { - return _internal_series_size(); -} -inline void FigureDescriptor_ChartDescriptor::clear_series() { - ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.series_.Clear(); -} -inline ::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_SeriesDescriptor* FigureDescriptor_ChartDescriptor::mutable_series(int index) - ABSL_ATTRIBUTE_LIFETIME_BOUND { - // @@protoc_insertion_point(field_mutable:io.deephaven.proto.backplane.script.grpc.FigureDescriptor.ChartDescriptor.series) - return _internal_mutable_series()->Mutable(index); -} -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) - ::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 - ABSL_ATTRIBUTE_LIFETIME_BOUND { - // @@protoc_insertion_point(field_get:io.deephaven.proto.backplane.script.grpc.FigureDescriptor.ChartDescriptor.series) - return _internal_series().Get(index); -} -inline ::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_SeriesDescriptor* FigureDescriptor_ChartDescriptor::add_series() ABSL_ATTRIBUTE_LIFETIME_BOUND { - ::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; -} -inline const ::google::protobuf::RepeatedPtrField<::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_SeriesDescriptor>& FigureDescriptor_ChartDescriptor::series() const - ABSL_ATTRIBUTE_LIFETIME_BOUND { - // @@protoc_insertion_point(field_list:io.deephaven.proto.backplane.script.grpc.FigureDescriptor.ChartDescriptor.series) - return _internal_series(); -} -inline const ::google::protobuf::RepeatedPtrField<::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_SeriesDescriptor>& -FigureDescriptor_ChartDescriptor::_internal_series() const { - ::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() { - ::google::protobuf::internal::TSanRead(&_impl_); - return &_impl_.series_; -} - -// repeated .io.deephaven.proto.backplane.script.grpc.FigureDescriptor.MultiSeriesDescriptor multi_series = 4; -inline int FigureDescriptor_ChartDescriptor::_internal_multi_series_size() const { - return _internal_multi_series().size(); -} -inline int FigureDescriptor_ChartDescriptor::multi_series_size() const { - return _internal_multi_series_size(); -} -inline void FigureDescriptor_ChartDescriptor::clear_multi_series() { - ::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) - ABSL_ATTRIBUTE_LIFETIME_BOUND { - // @@protoc_insertion_point(field_mutable:io.deephaven.proto.backplane.script.grpc.FigureDescriptor.ChartDescriptor.multi_series) - return _internal_mutable_multi_series()->Mutable(index); -} -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) - ::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 - ABSL_ATTRIBUTE_LIFETIME_BOUND { - // @@protoc_insertion_point(field_get:io.deephaven.proto.backplane.script.grpc.FigureDescriptor.ChartDescriptor.multi_series) - return _internal_multi_series().Get(index); -} -inline ::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_MultiSeriesDescriptor* FigureDescriptor_ChartDescriptor::add_multi_series() ABSL_ATTRIBUTE_LIFETIME_BOUND { - ::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; -} -inline const ::google::protobuf::RepeatedPtrField<::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_MultiSeriesDescriptor>& FigureDescriptor_ChartDescriptor::multi_series() const - ABSL_ATTRIBUTE_LIFETIME_BOUND { - // @@protoc_insertion_point(field_list:io.deephaven.proto.backplane.script.grpc.FigureDescriptor.ChartDescriptor.multi_series) - return _internal_multi_series(); -} -inline const ::google::protobuf::RepeatedPtrField<::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_MultiSeriesDescriptor>& -FigureDescriptor_ChartDescriptor::_internal_multi_series() const { - ::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() { - ::google::protobuf::internal::TSanRead(&_impl_); - return &_impl_.multi_series_; -} - -// repeated .io.deephaven.proto.backplane.script.grpc.FigureDescriptor.AxisDescriptor axes = 5; -inline int FigureDescriptor_ChartDescriptor::_internal_axes_size() const { - return _internal_axes().size(); -} -inline int FigureDescriptor_ChartDescriptor::axes_size() const { - return _internal_axes_size(); -} -inline void FigureDescriptor_ChartDescriptor::clear_axes() { - ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.axes_.Clear(); -} -inline ::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_AxisDescriptor* FigureDescriptor_ChartDescriptor::mutable_axes(int index) - ABSL_ATTRIBUTE_LIFETIME_BOUND { - // @@protoc_insertion_point(field_mutable:io.deephaven.proto.backplane.script.grpc.FigureDescriptor.ChartDescriptor.axes) - return _internal_mutable_axes()->Mutable(index); -} -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) - ::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 - ABSL_ATTRIBUTE_LIFETIME_BOUND { - // @@protoc_insertion_point(field_get:io.deephaven.proto.backplane.script.grpc.FigureDescriptor.ChartDescriptor.axes) - return _internal_axes().Get(index); -} -inline ::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_AxisDescriptor* FigureDescriptor_ChartDescriptor::add_axes() ABSL_ATTRIBUTE_LIFETIME_BOUND { - ::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; -} -inline const ::google::protobuf::RepeatedPtrField<::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_AxisDescriptor>& FigureDescriptor_ChartDescriptor::axes() const - ABSL_ATTRIBUTE_LIFETIME_BOUND { - // @@protoc_insertion_point(field_list:io.deephaven.proto.backplane.script.grpc.FigureDescriptor.ChartDescriptor.axes) - return _internal_axes(); -} -inline const ::google::protobuf::RepeatedPtrField<::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_AxisDescriptor>& -FigureDescriptor_ChartDescriptor::_internal_axes() const { - ::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() { - ::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() { - ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.chart_type_ = 0; -} -inline ::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_ChartDescriptor_ChartType FigureDescriptor_ChartDescriptor::chart_type() const { - // @@protoc_insertion_point(field_get:io.deephaven.proto.backplane.script.grpc.FigureDescriptor.ChartDescriptor.chart_type) - return _internal_chart_type(); -} -inline void FigureDescriptor_ChartDescriptor::set_chart_type(::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_ChartDescriptor_ChartType value) { - _internal_set_chart_type(value); - // @@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 { - ::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) { - ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.chart_type_ = value; -} - -// optional string title = 7; -inline bool FigureDescriptor_ChartDescriptor::has_title() const { - bool value = (_impl_._has_bits_[0] & 0x00000001u) != 0; - return value; -} -inline void FigureDescriptor_ChartDescriptor::clear_title() { - ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.title_.ClearToEmpty(); - _impl_._has_bits_[0] &= ~0x00000001u; -} -inline const std::string& FigureDescriptor_ChartDescriptor::title() const - ABSL_ATTRIBUTE_LIFETIME_BOUND { - // @@protoc_insertion_point(field_get:io.deephaven.proto.backplane.script.grpc.FigureDescriptor.ChartDescriptor.title) - return _internal_title(); -} -template -inline PROTOBUF_ALWAYS_INLINE void FigureDescriptor_ChartDescriptor::set_title(Arg_&& arg, - Args_... args) { - ::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) -} -inline std::string* FigureDescriptor_ChartDescriptor::mutable_title() ABSL_ATTRIBUTE_LIFETIME_BOUND { - std::string* _s = _internal_mutable_title(); - // @@protoc_insertion_point(field_mutable:io.deephaven.proto.backplane.script.grpc.FigureDescriptor.ChartDescriptor.title) - return _s; -} -inline const std::string& FigureDescriptor_ChartDescriptor::_internal_title() const { - ::google::protobuf::internal::TSanRead(&_impl_); - return _impl_.title_.Get(); -} -inline void FigureDescriptor_ChartDescriptor::_internal_set_title(const std::string& value) { - ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_._has_bits_[0] |= 0x00000001u; - _impl_.title_.Set(value, GetArena()); -} -inline std::string* FigureDescriptor_ChartDescriptor::_internal_mutable_title() { - ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_._has_bits_[0] |= 0x00000001u; - return _impl_.title_.Mutable( GetArena()); -} -inline std::string* FigureDescriptor_ChartDescriptor::release_title() { - ::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; - } - _impl_._has_bits_[0] &= ~0x00000001u; - auto* released = _impl_.title_.Release(); - #ifdef PROTOBUF_FORCE_COPY_DEFAULT_STRING - _impl_.title_.Set("", GetArena()); - #endif // PROTOBUF_FORCE_COPY_DEFAULT_STRING - return released; -} -inline void FigureDescriptor_ChartDescriptor::set_allocated_title(std::string* value) { - ::google::protobuf::internal::TSanWrite(&_impl_); - if (value != nullptr) { - _impl_._has_bits_[0] |= 0x00000001u; - } else { - _impl_._has_bits_[0] &= ~0x00000001u; - } - _impl_.title_.SetAllocated(value, GetArena()); - #ifdef PROTOBUF_FORCE_COPY_DEFAULT_STRING - if (_impl_.title_.IsDefault()) { - _impl_.title_.Set("", GetArena()); - } - #endif // PROTOBUF_FORCE_COPY_DEFAULT_STRING - // @@protoc_insertion_point(field_set_allocated:io.deephaven.proto.backplane.script.grpc.FigureDescriptor.ChartDescriptor.title) -} - -// string title_font = 8; -inline void FigureDescriptor_ChartDescriptor::clear_title_font() { - ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.title_font_.ClearToEmpty(); -} -inline const std::string& FigureDescriptor_ChartDescriptor::title_font() const - ABSL_ATTRIBUTE_LIFETIME_BOUND { - // @@protoc_insertion_point(field_get:io.deephaven.proto.backplane.script.grpc.FigureDescriptor.ChartDescriptor.title_font) - return _internal_title_font(); -} -template -inline PROTOBUF_ALWAYS_INLINE void FigureDescriptor_ChartDescriptor::set_title_font(Arg_&& arg, - Args_... args) { - ::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) -} -inline std::string* FigureDescriptor_ChartDescriptor::mutable_title_font() ABSL_ATTRIBUTE_LIFETIME_BOUND { - std::string* _s = _internal_mutable_title_font(); - // @@protoc_insertion_point(field_mutable:io.deephaven.proto.backplane.script.grpc.FigureDescriptor.ChartDescriptor.title_font) - return _s; -} -inline const std::string& FigureDescriptor_ChartDescriptor::_internal_title_font() const { - ::google::protobuf::internal::TSanRead(&_impl_); - return _impl_.title_font_.Get(); -} -inline void FigureDescriptor_ChartDescriptor::_internal_set_title_font(const std::string& value) { - ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.title_font_.Set(value, GetArena()); -} -inline std::string* FigureDescriptor_ChartDescriptor::_internal_mutable_title_font() { - ::google::protobuf::internal::TSanWrite(&_impl_); - return _impl_.title_font_.Mutable( GetArena()); -} -inline std::string* FigureDescriptor_ChartDescriptor::release_title_font() { - ::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) { - ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.title_font_.SetAllocated(value, GetArena()); - #ifdef PROTOBUF_FORCE_COPY_DEFAULT_STRING - if (_impl_.title_font_.IsDefault()) { - _impl_.title_font_.Set("", GetArena()); - } - #endif // PROTOBUF_FORCE_COPY_DEFAULT_STRING - // @@protoc_insertion_point(field_set_allocated:io.deephaven.proto.backplane.script.grpc.FigureDescriptor.ChartDescriptor.title_font) -} - -// string title_color = 9; -inline void FigureDescriptor_ChartDescriptor::clear_title_color() { - ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.title_color_.ClearToEmpty(); -} -inline const std::string& FigureDescriptor_ChartDescriptor::title_color() const - ABSL_ATTRIBUTE_LIFETIME_BOUND { - // @@protoc_insertion_point(field_get:io.deephaven.proto.backplane.script.grpc.FigureDescriptor.ChartDescriptor.title_color) - return _internal_title_color(); -} -template -inline PROTOBUF_ALWAYS_INLINE void FigureDescriptor_ChartDescriptor::set_title_color(Arg_&& arg, - Args_... args) { - ::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) -} -inline std::string* FigureDescriptor_ChartDescriptor::mutable_title_color() ABSL_ATTRIBUTE_LIFETIME_BOUND { - std::string* _s = _internal_mutable_title_color(); - // @@protoc_insertion_point(field_mutable:io.deephaven.proto.backplane.script.grpc.FigureDescriptor.ChartDescriptor.title_color) - return _s; -} -inline const std::string& FigureDescriptor_ChartDescriptor::_internal_title_color() const { - ::google::protobuf::internal::TSanRead(&_impl_); - return _impl_.title_color_.Get(); -} -inline void FigureDescriptor_ChartDescriptor::_internal_set_title_color(const std::string& value) { - ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.title_color_.Set(value, GetArena()); -} -inline std::string* FigureDescriptor_ChartDescriptor::_internal_mutable_title_color() { - ::google::protobuf::internal::TSanWrite(&_impl_); - return _impl_.title_color_.Mutable( GetArena()); -} -inline std::string* FigureDescriptor_ChartDescriptor::release_title_color() { - ::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) { - ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.title_color_.SetAllocated(value, GetArena()); - #ifdef PROTOBUF_FORCE_COPY_DEFAULT_STRING - if (_impl_.title_color_.IsDefault()) { - _impl_.title_color_.Set("", GetArena()); - } - #endif // PROTOBUF_FORCE_COPY_DEFAULT_STRING - // @@protoc_insertion_point(field_set_allocated:io.deephaven.proto.backplane.script.grpc.FigureDescriptor.ChartDescriptor.title_color) -} - -// bool show_legend = 10; -inline void FigureDescriptor_ChartDescriptor::clear_show_legend() { - ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.show_legend_ = false; -} -inline bool FigureDescriptor_ChartDescriptor::show_legend() const { - // @@protoc_insertion_point(field_get:io.deephaven.proto.backplane.script.grpc.FigureDescriptor.ChartDescriptor.show_legend) - return _internal_show_legend(); -} -inline void FigureDescriptor_ChartDescriptor::set_show_legend(bool value) { - _internal_set_show_legend(value); - // @@protoc_insertion_point(field_set:io.deephaven.proto.backplane.script.grpc.FigureDescriptor.ChartDescriptor.show_legend) -} -inline bool FigureDescriptor_ChartDescriptor::_internal_show_legend() const { - ::google::protobuf::internal::TSanRead(&_impl_); - return _impl_.show_legend_; -} -inline void FigureDescriptor_ChartDescriptor::_internal_set_show_legend(bool value) { - ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.show_legend_ = value; -} - -// string legend_font = 11; -inline void FigureDescriptor_ChartDescriptor::clear_legend_font() { - ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.legend_font_.ClearToEmpty(); -} -inline const std::string& FigureDescriptor_ChartDescriptor::legend_font() const - ABSL_ATTRIBUTE_LIFETIME_BOUND { - // @@protoc_insertion_point(field_get:io.deephaven.proto.backplane.script.grpc.FigureDescriptor.ChartDescriptor.legend_font) - return _internal_legend_font(); -} -template -inline PROTOBUF_ALWAYS_INLINE void FigureDescriptor_ChartDescriptor::set_legend_font(Arg_&& arg, - Args_... args) { - ::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) -} -inline std::string* FigureDescriptor_ChartDescriptor::mutable_legend_font() ABSL_ATTRIBUTE_LIFETIME_BOUND { - std::string* _s = _internal_mutable_legend_font(); - // @@protoc_insertion_point(field_mutable:io.deephaven.proto.backplane.script.grpc.FigureDescriptor.ChartDescriptor.legend_font) - return _s; -} -inline const std::string& FigureDescriptor_ChartDescriptor::_internal_legend_font() const { - ::google::protobuf::internal::TSanRead(&_impl_); - return _impl_.legend_font_.Get(); -} -inline void FigureDescriptor_ChartDescriptor::_internal_set_legend_font(const std::string& value) { - ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.legend_font_.Set(value, GetArena()); -} -inline std::string* FigureDescriptor_ChartDescriptor::_internal_mutable_legend_font() { - ::google::protobuf::internal::TSanWrite(&_impl_); - return _impl_.legend_font_.Mutable( GetArena()); -} -inline std::string* FigureDescriptor_ChartDescriptor::release_legend_font() { - ::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) { - ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.legend_font_.SetAllocated(value, GetArena()); - #ifdef PROTOBUF_FORCE_COPY_DEFAULT_STRING - if (_impl_.legend_font_.IsDefault()) { - _impl_.legend_font_.Set("", GetArena()); - } - #endif // PROTOBUF_FORCE_COPY_DEFAULT_STRING - // @@protoc_insertion_point(field_set_allocated:io.deephaven.proto.backplane.script.grpc.FigureDescriptor.ChartDescriptor.legend_font) -} - -// string legend_color = 12; -inline void FigureDescriptor_ChartDescriptor::clear_legend_color() { - ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.legend_color_.ClearToEmpty(); -} -inline const std::string& FigureDescriptor_ChartDescriptor::legend_color() const - ABSL_ATTRIBUTE_LIFETIME_BOUND { - // @@protoc_insertion_point(field_get:io.deephaven.proto.backplane.script.grpc.FigureDescriptor.ChartDescriptor.legend_color) - return _internal_legend_color(); -} -template -inline PROTOBUF_ALWAYS_INLINE void FigureDescriptor_ChartDescriptor::set_legend_color(Arg_&& arg, - Args_... args) { - ::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) -} -inline std::string* FigureDescriptor_ChartDescriptor::mutable_legend_color() ABSL_ATTRIBUTE_LIFETIME_BOUND { - std::string* _s = _internal_mutable_legend_color(); - // @@protoc_insertion_point(field_mutable:io.deephaven.proto.backplane.script.grpc.FigureDescriptor.ChartDescriptor.legend_color) - return _s; -} -inline const std::string& FigureDescriptor_ChartDescriptor::_internal_legend_color() const { - ::google::protobuf::internal::TSanRead(&_impl_); - return _impl_.legend_color_.Get(); -} -inline void FigureDescriptor_ChartDescriptor::_internal_set_legend_color(const std::string& value) { - ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.legend_color_.Set(value, GetArena()); -} -inline std::string* FigureDescriptor_ChartDescriptor::_internal_mutable_legend_color() { - ::google::protobuf::internal::TSanWrite(&_impl_); - return _impl_.legend_color_.Mutable( GetArena()); -} -inline std::string* FigureDescriptor_ChartDescriptor::release_legend_color() { - ::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) { - ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.legend_color_.SetAllocated(value, GetArena()); - #ifdef PROTOBUF_FORCE_COPY_DEFAULT_STRING - if (_impl_.legend_color_.IsDefault()) { - _impl_.legend_color_.Set("", GetArena()); - } - #endif // PROTOBUF_FORCE_COPY_DEFAULT_STRING - // @@protoc_insertion_point(field_set_allocated:io.deephaven.proto.backplane.script.grpc.FigureDescriptor.ChartDescriptor.legend_color) -} - -// bool is3d = 13; -inline void FigureDescriptor_ChartDescriptor::clear_is3d() { - ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.is3d_ = false; -} -inline bool FigureDescriptor_ChartDescriptor::is3d() const { - // @@protoc_insertion_point(field_get:io.deephaven.proto.backplane.script.grpc.FigureDescriptor.ChartDescriptor.is3d) - return _internal_is3d(); -} -inline void FigureDescriptor_ChartDescriptor::set_is3d(bool value) { - _internal_set_is3d(value); - // @@protoc_insertion_point(field_set:io.deephaven.proto.backplane.script.grpc.FigureDescriptor.ChartDescriptor.is3d) -} -inline bool FigureDescriptor_ChartDescriptor::_internal_is3d() const { - ::google::protobuf::internal::TSanRead(&_impl_); - return _impl_.is3d_; -} -inline void FigureDescriptor_ChartDescriptor::_internal_set_is3d(bool value) { - ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.is3d_ = value; -} - -// int32 column = 14; -inline void FigureDescriptor_ChartDescriptor::clear_column() { - ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.column_ = 0; -} -inline ::int32_t FigureDescriptor_ChartDescriptor::column() const { - // @@protoc_insertion_point(field_get:io.deephaven.proto.backplane.script.grpc.FigureDescriptor.ChartDescriptor.column) - return _internal_column(); -} -inline void FigureDescriptor_ChartDescriptor::set_column(::int32_t value) { - _internal_set_column(value); - // @@protoc_insertion_point(field_set:io.deephaven.proto.backplane.script.grpc.FigureDescriptor.ChartDescriptor.column) -} -inline ::int32_t FigureDescriptor_ChartDescriptor::_internal_column() const { - ::google::protobuf::internal::TSanRead(&_impl_); - return _impl_.column_; -} -inline void FigureDescriptor_ChartDescriptor::_internal_set_column(::int32_t value) { - ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.column_ = value; -} - -// int32 row = 15; -inline void FigureDescriptor_ChartDescriptor::clear_row() { - ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.row_ = 0; -} -inline ::int32_t FigureDescriptor_ChartDescriptor::row() const { - // @@protoc_insertion_point(field_get:io.deephaven.proto.backplane.script.grpc.FigureDescriptor.ChartDescriptor.row) - return _internal_row(); -} -inline void FigureDescriptor_ChartDescriptor::set_row(::int32_t value) { - _internal_set_row(value); - // @@protoc_insertion_point(field_set:io.deephaven.proto.backplane.script.grpc.FigureDescriptor.ChartDescriptor.row) -} -inline ::int32_t FigureDescriptor_ChartDescriptor::_internal_row() const { - ::google::protobuf::internal::TSanRead(&_impl_); - return _impl_.row_; -} -inline void FigureDescriptor_ChartDescriptor::_internal_set_row(::int32_t value) { - ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.row_ = value; -} - -// ------------------------------------------------------------------- - -// FigureDescriptor_SeriesDescriptor - -// .io.deephaven.proto.backplane.script.grpc.FigureDescriptor.SeriesPlotStyle plot_style = 1; -inline void FigureDescriptor_SeriesDescriptor::clear_plot_style() { - ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.plot_style_ = 0; -} -inline ::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_SeriesPlotStyle FigureDescriptor_SeriesDescriptor::plot_style() const { - // @@protoc_insertion_point(field_get:io.deephaven.proto.backplane.script.grpc.FigureDescriptor.SeriesDescriptor.plot_style) - return _internal_plot_style(); -} -inline void FigureDescriptor_SeriesDescriptor::set_plot_style(::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_SeriesPlotStyle value) { - _internal_set_plot_style(value); - // @@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 { - ::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) { - ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.plot_style_ = value; -} - -// string name = 2; -inline void FigureDescriptor_SeriesDescriptor::clear_name() { - ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.name_.ClearToEmpty(); -} -inline const std::string& FigureDescriptor_SeriesDescriptor::name() const - ABSL_ATTRIBUTE_LIFETIME_BOUND { - // @@protoc_insertion_point(field_get:io.deephaven.proto.backplane.script.grpc.FigureDescriptor.SeriesDescriptor.name) - return _internal_name(); -} -template -inline PROTOBUF_ALWAYS_INLINE void FigureDescriptor_SeriesDescriptor::set_name(Arg_&& arg, - Args_... args) { - ::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) -} -inline std::string* FigureDescriptor_SeriesDescriptor::mutable_name() ABSL_ATTRIBUTE_LIFETIME_BOUND { - std::string* _s = _internal_mutable_name(); - // @@protoc_insertion_point(field_mutable:io.deephaven.proto.backplane.script.grpc.FigureDescriptor.SeriesDescriptor.name) - return _s; -} -inline const std::string& FigureDescriptor_SeriesDescriptor::_internal_name() const { - ::google::protobuf::internal::TSanRead(&_impl_); - return _impl_.name_.Get(); -} -inline void FigureDescriptor_SeriesDescriptor::_internal_set_name(const std::string& value) { - ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.name_.Set(value, GetArena()); -} -inline std::string* FigureDescriptor_SeriesDescriptor::_internal_mutable_name() { - ::google::protobuf::internal::TSanWrite(&_impl_); - return _impl_.name_.Mutable( GetArena()); -} -inline std::string* FigureDescriptor_SeriesDescriptor::release_name() { - ::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) { - ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.name_.SetAllocated(value, GetArena()); - #ifdef PROTOBUF_FORCE_COPY_DEFAULT_STRING - if (_impl_.name_.IsDefault()) { - _impl_.name_.Set("", GetArena()); - } - #endif // PROTOBUF_FORCE_COPY_DEFAULT_STRING - // @@protoc_insertion_point(field_set_allocated:io.deephaven.proto.backplane.script.grpc.FigureDescriptor.SeriesDescriptor.name) -} - -// optional bool lines_visible = 3; -inline bool FigureDescriptor_SeriesDescriptor::has_lines_visible() const { - bool value = (_impl_._has_bits_[0] & 0x00000008u) != 0; - return value; -} -inline void FigureDescriptor_SeriesDescriptor::clear_lines_visible() { - ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.lines_visible_ = false; - _impl_._has_bits_[0] &= ~0x00000008u; -} -inline bool FigureDescriptor_SeriesDescriptor::lines_visible() const { - // @@protoc_insertion_point(field_get:io.deephaven.proto.backplane.script.grpc.FigureDescriptor.SeriesDescriptor.lines_visible) - return _internal_lines_visible(); -} -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 { - ::google::protobuf::internal::TSanRead(&_impl_); - return _impl_.lines_visible_; -} -inline void FigureDescriptor_SeriesDescriptor::_internal_set_lines_visible(bool value) { - ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.lines_visible_ = value; -} - -// optional bool shapes_visible = 4; -inline bool FigureDescriptor_SeriesDescriptor::has_shapes_visible() const { - bool value = (_impl_._has_bits_[0] & 0x00000010u) != 0; - return value; -} -inline void FigureDescriptor_SeriesDescriptor::clear_shapes_visible() { - ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.shapes_visible_ = false; - _impl_._has_bits_[0] &= ~0x00000010u; -} -inline bool FigureDescriptor_SeriesDescriptor::shapes_visible() const { - // @@protoc_insertion_point(field_get:io.deephaven.proto.backplane.script.grpc.FigureDescriptor.SeriesDescriptor.shapes_visible) - return _internal_shapes_visible(); -} -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 { - ::google::protobuf::internal::TSanRead(&_impl_); - return _impl_.shapes_visible_; -} -inline void FigureDescriptor_SeriesDescriptor::_internal_set_shapes_visible(bool value) { - ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.shapes_visible_ = value; -} - -// bool gradient_visible = 5; -inline void FigureDescriptor_SeriesDescriptor::clear_gradient_visible() { - ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.gradient_visible_ = false; -} -inline bool FigureDescriptor_SeriesDescriptor::gradient_visible() const { - // @@protoc_insertion_point(field_get:io.deephaven.proto.backplane.script.grpc.FigureDescriptor.SeriesDescriptor.gradient_visible) - return _internal_gradient_visible(); -} -inline void FigureDescriptor_SeriesDescriptor::set_gradient_visible(bool value) { - _internal_set_gradient_visible(value); - // @@protoc_insertion_point(field_set:io.deephaven.proto.backplane.script.grpc.FigureDescriptor.SeriesDescriptor.gradient_visible) -} -inline bool FigureDescriptor_SeriesDescriptor::_internal_gradient_visible() const { - ::google::protobuf::internal::TSanRead(&_impl_); - return _impl_.gradient_visible_; -} -inline void FigureDescriptor_SeriesDescriptor::_internal_set_gradient_visible(bool value) { - ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.gradient_visible_ = value; -} - -// string line_color = 6; -inline void FigureDescriptor_SeriesDescriptor::clear_line_color() { - ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.line_color_.ClearToEmpty(); -} -inline const std::string& FigureDescriptor_SeriesDescriptor::line_color() const - ABSL_ATTRIBUTE_LIFETIME_BOUND { - // @@protoc_insertion_point(field_get:io.deephaven.proto.backplane.script.grpc.FigureDescriptor.SeriesDescriptor.line_color) - return _internal_line_color(); -} -template -inline PROTOBUF_ALWAYS_INLINE void FigureDescriptor_SeriesDescriptor::set_line_color(Arg_&& arg, - Args_... args) { - ::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) -} -inline std::string* FigureDescriptor_SeriesDescriptor::mutable_line_color() ABSL_ATTRIBUTE_LIFETIME_BOUND { - std::string* _s = _internal_mutable_line_color(); - // @@protoc_insertion_point(field_mutable:io.deephaven.proto.backplane.script.grpc.FigureDescriptor.SeriesDescriptor.line_color) - return _s; -} -inline const std::string& FigureDescriptor_SeriesDescriptor::_internal_line_color() const { - ::google::protobuf::internal::TSanRead(&_impl_); - return _impl_.line_color_.Get(); -} -inline void FigureDescriptor_SeriesDescriptor::_internal_set_line_color(const std::string& value) { - ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.line_color_.Set(value, GetArena()); -} -inline std::string* FigureDescriptor_SeriesDescriptor::_internal_mutable_line_color() { - ::google::protobuf::internal::TSanWrite(&_impl_); - return _impl_.line_color_.Mutable( GetArena()); -} -inline std::string* FigureDescriptor_SeriesDescriptor::release_line_color() { - ::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) { - ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.line_color_.SetAllocated(value, GetArena()); - #ifdef PROTOBUF_FORCE_COPY_DEFAULT_STRING - if (_impl_.line_color_.IsDefault()) { - _impl_.line_color_.Set("", GetArena()); - } - #endif // PROTOBUF_FORCE_COPY_DEFAULT_STRING - // @@protoc_insertion_point(field_set_allocated:io.deephaven.proto.backplane.script.grpc.FigureDescriptor.SeriesDescriptor.line_color) -} - -// optional string point_label_format = 8; -inline bool FigureDescriptor_SeriesDescriptor::has_point_label_format() const { - bool value = (_impl_._has_bits_[0] & 0x00000001u) != 0; - return value; -} -inline void FigureDescriptor_SeriesDescriptor::clear_point_label_format() { - ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.point_label_format_.ClearToEmpty(); - _impl_._has_bits_[0] &= ~0x00000001u; -} -inline const std::string& FigureDescriptor_SeriesDescriptor::point_label_format() const - ABSL_ATTRIBUTE_LIFETIME_BOUND { - // @@protoc_insertion_point(field_get:io.deephaven.proto.backplane.script.grpc.FigureDescriptor.SeriesDescriptor.point_label_format) - return _internal_point_label_format(); -} -template -inline PROTOBUF_ALWAYS_INLINE void FigureDescriptor_SeriesDescriptor::set_point_label_format(Arg_&& arg, - Args_... args) { - ::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) -} -inline std::string* FigureDescriptor_SeriesDescriptor::mutable_point_label_format() ABSL_ATTRIBUTE_LIFETIME_BOUND { - std::string* _s = _internal_mutable_point_label_format(); - // @@protoc_insertion_point(field_mutable:io.deephaven.proto.backplane.script.grpc.FigureDescriptor.SeriesDescriptor.point_label_format) - return _s; -} -inline const std::string& FigureDescriptor_SeriesDescriptor::_internal_point_label_format() const { - ::google::protobuf::internal::TSanRead(&_impl_); - return _impl_.point_label_format_.Get(); -} -inline void FigureDescriptor_SeriesDescriptor::_internal_set_point_label_format(const std::string& value) { - ::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() { - ::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() { - ::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; - } - _impl_._has_bits_[0] &= ~0x00000001u; - auto* released = _impl_.point_label_format_.Release(); - #ifdef PROTOBUF_FORCE_COPY_DEFAULT_STRING - _impl_.point_label_format_.Set("", GetArena()); - #endif // PROTOBUF_FORCE_COPY_DEFAULT_STRING - return released; -} -inline void FigureDescriptor_SeriesDescriptor::set_allocated_point_label_format(std::string* value) { - ::google::protobuf::internal::TSanWrite(&_impl_); - if (value != nullptr) { - _impl_._has_bits_[0] |= 0x00000001u; - } else { - _impl_._has_bits_[0] &= ~0x00000001u; - } - _impl_.point_label_format_.SetAllocated(value, GetArena()); - #ifdef PROTOBUF_FORCE_COPY_DEFAULT_STRING - if (_impl_.point_label_format_.IsDefault()) { - _impl_.point_label_format_.Set("", GetArena()); - } - #endif // PROTOBUF_FORCE_COPY_DEFAULT_STRING - // @@protoc_insertion_point(field_set_allocated:io.deephaven.proto.backplane.script.grpc.FigureDescriptor.SeriesDescriptor.point_label_format) -} - -// optional string x_tool_tip_pattern = 9; -inline bool FigureDescriptor_SeriesDescriptor::has_x_tool_tip_pattern() const { - bool value = (_impl_._has_bits_[0] & 0x00000002u) != 0; - return value; -} -inline void FigureDescriptor_SeriesDescriptor::clear_x_tool_tip_pattern() { - ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.x_tool_tip_pattern_.ClearToEmpty(); - _impl_._has_bits_[0] &= ~0x00000002u; -} -inline const std::string& FigureDescriptor_SeriesDescriptor::x_tool_tip_pattern() const - ABSL_ATTRIBUTE_LIFETIME_BOUND { - // @@protoc_insertion_point(field_get:io.deephaven.proto.backplane.script.grpc.FigureDescriptor.SeriesDescriptor.x_tool_tip_pattern) - return _internal_x_tool_tip_pattern(); -} -template -inline PROTOBUF_ALWAYS_INLINE void FigureDescriptor_SeriesDescriptor::set_x_tool_tip_pattern(Arg_&& arg, - Args_... args) { - ::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) -} -inline std::string* FigureDescriptor_SeriesDescriptor::mutable_x_tool_tip_pattern() ABSL_ATTRIBUTE_LIFETIME_BOUND { - std::string* _s = _internal_mutable_x_tool_tip_pattern(); - // @@protoc_insertion_point(field_mutable:io.deephaven.proto.backplane.script.grpc.FigureDescriptor.SeriesDescriptor.x_tool_tip_pattern) - return _s; -} -inline const std::string& FigureDescriptor_SeriesDescriptor::_internal_x_tool_tip_pattern() const { - ::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) { - ::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() { - ::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() { - ::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; - } - _impl_._has_bits_[0] &= ~0x00000002u; - auto* released = _impl_.x_tool_tip_pattern_.Release(); - #ifdef PROTOBUF_FORCE_COPY_DEFAULT_STRING - _impl_.x_tool_tip_pattern_.Set("", GetArena()); - #endif // PROTOBUF_FORCE_COPY_DEFAULT_STRING - return released; -} -inline void FigureDescriptor_SeriesDescriptor::set_allocated_x_tool_tip_pattern(std::string* value) { - ::google::protobuf::internal::TSanWrite(&_impl_); - if (value != nullptr) { - _impl_._has_bits_[0] |= 0x00000002u; - } else { - _impl_._has_bits_[0] &= ~0x00000002u; - } - _impl_.x_tool_tip_pattern_.SetAllocated(value, GetArena()); - #ifdef PROTOBUF_FORCE_COPY_DEFAULT_STRING - if (_impl_.x_tool_tip_pattern_.IsDefault()) { - _impl_.x_tool_tip_pattern_.Set("", GetArena()); - } - #endif // PROTOBUF_FORCE_COPY_DEFAULT_STRING - // @@protoc_insertion_point(field_set_allocated:io.deephaven.proto.backplane.script.grpc.FigureDescriptor.SeriesDescriptor.x_tool_tip_pattern) -} - -// optional string y_tool_tip_pattern = 10; -inline bool FigureDescriptor_SeriesDescriptor::has_y_tool_tip_pattern() const { - bool value = (_impl_._has_bits_[0] & 0x00000004u) != 0; - return value; -} -inline void FigureDescriptor_SeriesDescriptor::clear_y_tool_tip_pattern() { - ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.y_tool_tip_pattern_.ClearToEmpty(); - _impl_._has_bits_[0] &= ~0x00000004u; -} -inline const std::string& FigureDescriptor_SeriesDescriptor::y_tool_tip_pattern() const - ABSL_ATTRIBUTE_LIFETIME_BOUND { - // @@protoc_insertion_point(field_get:io.deephaven.proto.backplane.script.grpc.FigureDescriptor.SeriesDescriptor.y_tool_tip_pattern) - return _internal_y_tool_tip_pattern(); -} -template -inline PROTOBUF_ALWAYS_INLINE void FigureDescriptor_SeriesDescriptor::set_y_tool_tip_pattern(Arg_&& arg, - Args_... args) { - ::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) -} -inline std::string* FigureDescriptor_SeriesDescriptor::mutable_y_tool_tip_pattern() ABSL_ATTRIBUTE_LIFETIME_BOUND { - std::string* _s = _internal_mutable_y_tool_tip_pattern(); - // @@protoc_insertion_point(field_mutable:io.deephaven.proto.backplane.script.grpc.FigureDescriptor.SeriesDescriptor.y_tool_tip_pattern) - return _s; -} -inline const std::string& FigureDescriptor_SeriesDescriptor::_internal_y_tool_tip_pattern() const { - ::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) { - ::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() { - ::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() { - ::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; - } - _impl_._has_bits_[0] &= ~0x00000004u; - auto* released = _impl_.y_tool_tip_pattern_.Release(); - #ifdef PROTOBUF_FORCE_COPY_DEFAULT_STRING - _impl_.y_tool_tip_pattern_.Set("", GetArena()); - #endif // PROTOBUF_FORCE_COPY_DEFAULT_STRING - return released; -} -inline void FigureDescriptor_SeriesDescriptor::set_allocated_y_tool_tip_pattern(std::string* value) { - ::google::protobuf::internal::TSanWrite(&_impl_); - if (value != nullptr) { - _impl_._has_bits_[0] |= 0x00000004u; - } else { - _impl_._has_bits_[0] &= ~0x00000004u; - } - _impl_.y_tool_tip_pattern_.SetAllocated(value, GetArena()); - #ifdef PROTOBUF_FORCE_COPY_DEFAULT_STRING - if (_impl_.y_tool_tip_pattern_.IsDefault()) { - _impl_.y_tool_tip_pattern_.Set("", GetArena()); - } - #endif // PROTOBUF_FORCE_COPY_DEFAULT_STRING - // @@protoc_insertion_point(field_set_allocated:io.deephaven.proto.backplane.script.grpc.FigureDescriptor.SeriesDescriptor.y_tool_tip_pattern) -} - -// string shape_label = 11; -inline void FigureDescriptor_SeriesDescriptor::clear_shape_label() { - ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.shape_label_.ClearToEmpty(); -} -inline const std::string& FigureDescriptor_SeriesDescriptor::shape_label() const - ABSL_ATTRIBUTE_LIFETIME_BOUND { - // @@protoc_insertion_point(field_get:io.deephaven.proto.backplane.script.grpc.FigureDescriptor.SeriesDescriptor.shape_label) - return _internal_shape_label(); -} -template -inline PROTOBUF_ALWAYS_INLINE void FigureDescriptor_SeriesDescriptor::set_shape_label(Arg_&& arg, - Args_... args) { - ::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) -} -inline std::string* FigureDescriptor_SeriesDescriptor::mutable_shape_label() ABSL_ATTRIBUTE_LIFETIME_BOUND { - std::string* _s = _internal_mutable_shape_label(); - // @@protoc_insertion_point(field_mutable:io.deephaven.proto.backplane.script.grpc.FigureDescriptor.SeriesDescriptor.shape_label) - return _s; -} -inline const std::string& FigureDescriptor_SeriesDescriptor::_internal_shape_label() const { - ::google::protobuf::internal::TSanRead(&_impl_); - return _impl_.shape_label_.Get(); -} -inline void FigureDescriptor_SeriesDescriptor::_internal_set_shape_label(const std::string& value) { - ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.shape_label_.Set(value, GetArena()); -} -inline std::string* FigureDescriptor_SeriesDescriptor::_internal_mutable_shape_label() { - ::google::protobuf::internal::TSanWrite(&_impl_); - return _impl_.shape_label_.Mutable( GetArena()); -} -inline std::string* FigureDescriptor_SeriesDescriptor::release_shape_label() { - ::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) { - ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.shape_label_.SetAllocated(value, GetArena()); - #ifdef PROTOBUF_FORCE_COPY_DEFAULT_STRING - if (_impl_.shape_label_.IsDefault()) { - _impl_.shape_label_.Set("", GetArena()); - } - #endif // PROTOBUF_FORCE_COPY_DEFAULT_STRING - // @@protoc_insertion_point(field_set_allocated:io.deephaven.proto.backplane.script.grpc.FigureDescriptor.SeriesDescriptor.shape_label) -} - -// optional double shape_size = 12; -inline bool FigureDescriptor_SeriesDescriptor::has_shape_size() const { - bool value = (_impl_._has_bits_[0] & 0x00000020u) != 0; - return value; -} -inline void FigureDescriptor_SeriesDescriptor::clear_shape_size() { - ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.shape_size_ = 0; - _impl_._has_bits_[0] &= ~0x00000020u; -} -inline double FigureDescriptor_SeriesDescriptor::shape_size() const { - // @@protoc_insertion_point(field_get:io.deephaven.proto.backplane.script.grpc.FigureDescriptor.SeriesDescriptor.shape_size) - return _internal_shape_size(); -} -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 { - ::google::protobuf::internal::TSanRead(&_impl_); - return _impl_.shape_size_; -} -inline void FigureDescriptor_SeriesDescriptor::_internal_set_shape_size(double value) { - ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.shape_size_ = value; -} - -// string shape_color = 13; -inline void FigureDescriptor_SeriesDescriptor::clear_shape_color() { - ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.shape_color_.ClearToEmpty(); -} -inline const std::string& FigureDescriptor_SeriesDescriptor::shape_color() const - ABSL_ATTRIBUTE_LIFETIME_BOUND { - // @@protoc_insertion_point(field_get:io.deephaven.proto.backplane.script.grpc.FigureDescriptor.SeriesDescriptor.shape_color) - return _internal_shape_color(); -} -template -inline PROTOBUF_ALWAYS_INLINE void FigureDescriptor_SeriesDescriptor::set_shape_color(Arg_&& arg, - Args_... args) { - ::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) -} -inline std::string* FigureDescriptor_SeriesDescriptor::mutable_shape_color() ABSL_ATTRIBUTE_LIFETIME_BOUND { - std::string* _s = _internal_mutable_shape_color(); - // @@protoc_insertion_point(field_mutable:io.deephaven.proto.backplane.script.grpc.FigureDescriptor.SeriesDescriptor.shape_color) - return _s; -} -inline const std::string& FigureDescriptor_SeriesDescriptor::_internal_shape_color() const { - ::google::protobuf::internal::TSanRead(&_impl_); - return _impl_.shape_color_.Get(); -} -inline void FigureDescriptor_SeriesDescriptor::_internal_set_shape_color(const std::string& value) { - ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.shape_color_.Set(value, GetArena()); -} -inline std::string* FigureDescriptor_SeriesDescriptor::_internal_mutable_shape_color() { - ::google::protobuf::internal::TSanWrite(&_impl_); - return _impl_.shape_color_.Mutable( GetArena()); -} -inline std::string* FigureDescriptor_SeriesDescriptor::release_shape_color() { - ::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) { - ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.shape_color_.SetAllocated(value, GetArena()); - #ifdef PROTOBUF_FORCE_COPY_DEFAULT_STRING - if (_impl_.shape_color_.IsDefault()) { - _impl_.shape_color_.Set("", GetArena()); - } - #endif // PROTOBUF_FORCE_COPY_DEFAULT_STRING - // @@protoc_insertion_point(field_set_allocated:io.deephaven.proto.backplane.script.grpc.FigureDescriptor.SeriesDescriptor.shape_color) -} - -// string shape = 14; -inline void FigureDescriptor_SeriesDescriptor::clear_shape() { - ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.shape_.ClearToEmpty(); -} -inline const std::string& FigureDescriptor_SeriesDescriptor::shape() const - ABSL_ATTRIBUTE_LIFETIME_BOUND { - // @@protoc_insertion_point(field_get:io.deephaven.proto.backplane.script.grpc.FigureDescriptor.SeriesDescriptor.shape) - return _internal_shape(); -} -template -inline PROTOBUF_ALWAYS_INLINE void FigureDescriptor_SeriesDescriptor::set_shape(Arg_&& arg, - Args_... args) { - ::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) -} -inline std::string* FigureDescriptor_SeriesDescriptor::mutable_shape() ABSL_ATTRIBUTE_LIFETIME_BOUND { - std::string* _s = _internal_mutable_shape(); - // @@protoc_insertion_point(field_mutable:io.deephaven.proto.backplane.script.grpc.FigureDescriptor.SeriesDescriptor.shape) - return _s; -} -inline const std::string& FigureDescriptor_SeriesDescriptor::_internal_shape() const { - ::google::protobuf::internal::TSanRead(&_impl_); - return _impl_.shape_.Get(); -} -inline void FigureDescriptor_SeriesDescriptor::_internal_set_shape(const std::string& value) { - ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.shape_.Set(value, GetArena()); -} -inline std::string* FigureDescriptor_SeriesDescriptor::_internal_mutable_shape() { - ::google::protobuf::internal::TSanWrite(&_impl_); - return _impl_.shape_.Mutable( GetArena()); -} -inline std::string* FigureDescriptor_SeriesDescriptor::release_shape() { - ::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) { - ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.shape_.SetAllocated(value, GetArena()); - #ifdef PROTOBUF_FORCE_COPY_DEFAULT_STRING - if (_impl_.shape_.IsDefault()) { - _impl_.shape_.Set("", GetArena()); - } - #endif // PROTOBUF_FORCE_COPY_DEFAULT_STRING - // @@protoc_insertion_point(field_set_allocated:io.deephaven.proto.backplane.script.grpc.FigureDescriptor.SeriesDescriptor.shape) -} - -// repeated .io.deephaven.proto.backplane.script.grpc.FigureDescriptor.SourceDescriptor data_sources = 15; -inline int FigureDescriptor_SeriesDescriptor::_internal_data_sources_size() const { - return _internal_data_sources().size(); -} -inline int FigureDescriptor_SeriesDescriptor::data_sources_size() const { - return _internal_data_sources_size(); -} -inline void FigureDescriptor_SeriesDescriptor::clear_data_sources() { - ::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) - ABSL_ATTRIBUTE_LIFETIME_BOUND { - // @@protoc_insertion_point(field_mutable:io.deephaven.proto.backplane.script.grpc.FigureDescriptor.SeriesDescriptor.data_sources) - return _internal_mutable_data_sources()->Mutable(index); -} -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) - ::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 - ABSL_ATTRIBUTE_LIFETIME_BOUND { - // @@protoc_insertion_point(field_get:io.deephaven.proto.backplane.script.grpc.FigureDescriptor.SeriesDescriptor.data_sources) - return _internal_data_sources().Get(index); -} -inline ::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_SourceDescriptor* FigureDescriptor_SeriesDescriptor::add_data_sources() ABSL_ATTRIBUTE_LIFETIME_BOUND { - ::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; -} -inline const ::google::protobuf::RepeatedPtrField<::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_SourceDescriptor>& FigureDescriptor_SeriesDescriptor::data_sources() const - ABSL_ATTRIBUTE_LIFETIME_BOUND { - // @@protoc_insertion_point(field_list:io.deephaven.proto.backplane.script.grpc.FigureDescriptor.SeriesDescriptor.data_sources) - return _internal_data_sources(); -} -inline const ::google::protobuf::RepeatedPtrField<::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_SourceDescriptor>& -FigureDescriptor_SeriesDescriptor::_internal_data_sources() const { - ::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() { - ::google::protobuf::internal::TSanRead(&_impl_); - return &_impl_.data_sources_; -} - -// ------------------------------------------------------------------- - -// FigureDescriptor_MultiSeriesDescriptor - -// .io.deephaven.proto.backplane.script.grpc.FigureDescriptor.SeriesPlotStyle plot_style = 1; -inline void FigureDescriptor_MultiSeriesDescriptor::clear_plot_style() { - ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.plot_style_ = 0; -} -inline ::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_SeriesPlotStyle FigureDescriptor_MultiSeriesDescriptor::plot_style() const { - // @@protoc_insertion_point(field_get:io.deephaven.proto.backplane.script.grpc.FigureDescriptor.MultiSeriesDescriptor.plot_style) - return _internal_plot_style(); -} -inline void FigureDescriptor_MultiSeriesDescriptor::set_plot_style(::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_SeriesPlotStyle value) { - _internal_set_plot_style(value); - // @@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 { - ::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) { - ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.plot_style_ = value; -} - -// string name = 2; -inline void FigureDescriptor_MultiSeriesDescriptor::clear_name() { - ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.name_.ClearToEmpty(); -} -inline const std::string& FigureDescriptor_MultiSeriesDescriptor::name() const - ABSL_ATTRIBUTE_LIFETIME_BOUND { - // @@protoc_insertion_point(field_get:io.deephaven.proto.backplane.script.grpc.FigureDescriptor.MultiSeriesDescriptor.name) - return _internal_name(); -} -template -inline PROTOBUF_ALWAYS_INLINE void FigureDescriptor_MultiSeriesDescriptor::set_name(Arg_&& arg, - Args_... args) { - ::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) -} -inline std::string* FigureDescriptor_MultiSeriesDescriptor::mutable_name() ABSL_ATTRIBUTE_LIFETIME_BOUND { - std::string* _s = _internal_mutable_name(); - // @@protoc_insertion_point(field_mutable:io.deephaven.proto.backplane.script.grpc.FigureDescriptor.MultiSeriesDescriptor.name) - return _s; -} -inline const std::string& FigureDescriptor_MultiSeriesDescriptor::_internal_name() const { - ::google::protobuf::internal::TSanRead(&_impl_); - return _impl_.name_.Get(); -} -inline void FigureDescriptor_MultiSeriesDescriptor::_internal_set_name(const std::string& value) { - ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.name_.Set(value, GetArena()); -} -inline std::string* FigureDescriptor_MultiSeriesDescriptor::_internal_mutable_name() { - ::google::protobuf::internal::TSanWrite(&_impl_); - return _impl_.name_.Mutable( GetArena()); -} -inline std::string* FigureDescriptor_MultiSeriesDescriptor::release_name() { - ::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) { - ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.name_.SetAllocated(value, GetArena()); - #ifdef PROTOBUF_FORCE_COPY_DEFAULT_STRING - if (_impl_.name_.IsDefault()) { - _impl_.name_.Set("", GetArena()); - } - #endif // PROTOBUF_FORCE_COPY_DEFAULT_STRING - // @@protoc_insertion_point(field_set_allocated:io.deephaven.proto.backplane.script.grpc.FigureDescriptor.MultiSeriesDescriptor.name) -} - -// .io.deephaven.proto.backplane.script.grpc.FigureDescriptor.StringMapWithDefault line_color = 3; -inline bool FigureDescriptor_MultiSeriesDescriptor::has_line_color() const { - bool value = (_impl_._has_bits_[0] & 0x00000001u) != 0; - PROTOBUF_ASSUME(!value || _impl_.line_color_ != nullptr); - return value; -} -inline void FigureDescriptor_MultiSeriesDescriptor::clear_line_color() { - ::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 { - ::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_); -} -inline const ::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_StringMapWithDefault& FigureDescriptor_MultiSeriesDescriptor::line_color() const ABSL_ATTRIBUTE_LIFETIME_BOUND { - // @@protoc_insertion_point(field_get:io.deephaven.proto.backplane.script.grpc.FigureDescriptor.MultiSeriesDescriptor.line_color) - return _internal_line_color(); -} -inline void FigureDescriptor_MultiSeriesDescriptor::unsafe_arena_set_allocated_line_color(::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_StringMapWithDefault* value) { - ::google::protobuf::internal::TSanWrite(&_impl_); - if (GetArena() == nullptr) { - delete reinterpret_cast<::google::protobuf::MessageLite*>(_impl_.line_color_); - } - _impl_.line_color_ = reinterpret_cast<::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_StringMapWithDefault*>(value); - if (value != nullptr) { - _impl_._has_bits_[0] |= 0x00000001u; - } else { - _impl_._has_bits_[0] &= ~0x00000001u; - } - // @@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() { - ::google::protobuf::internal::TSanWrite(&_impl_); - - _impl_._has_bits_[0] &= ~0x00000001u; - ::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_StringMapWithDefault* released = _impl_.line_color_; - _impl_.line_color_ = nullptr; -#ifdef PROTOBUF_FORCE_COPY_IN_RELEASE - auto* old = reinterpret_cast<::google::protobuf::MessageLite*>(released); - released = ::google::protobuf::internal::DuplicateIfNonNull(released); - if (GetArena() == nullptr) { - delete old; - } -#else // PROTOBUF_FORCE_COPY_IN_RELEASE - if (GetArena() != nullptr) { - released = ::google::protobuf::internal::DuplicateIfNonNull(released); - } -#endif // !PROTOBUF_FORCE_COPY_IN_RELEASE - return released; -} -inline ::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_StringMapWithDefault* FigureDescriptor_MultiSeriesDescriptor::unsafe_arena_release_line_color() { - ::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; - ::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_StringMapWithDefault* temp = _impl_.line_color_; - _impl_.line_color_ = nullptr; - return temp; -} -inline ::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_StringMapWithDefault* FigureDescriptor_MultiSeriesDescriptor::_internal_mutable_line_color() { - ::google::protobuf::internal::TSanWrite(&_impl_); - if (_impl_.line_color_ == nullptr) { - 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(); - ::google::protobuf::internal::TSanWrite(&_impl_); - if (message_arena == nullptr) { - delete (_impl_.line_color_); - } - - if (value != nullptr) { - ::google::protobuf::Arena* submessage_arena = (value)->GetArena(); - if (message_arena != submessage_arena) { - value = ::google::protobuf::internal::GetOwnedMessage(message_arena, value, submessage_arena); - } - _impl_._has_bits_[0] |= 0x00000001u; - } else { - _impl_._has_bits_[0] &= ~0x00000001u; - } - - _impl_.line_color_ = reinterpret_cast<::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_StringMapWithDefault*>(value); - // @@protoc_insertion_point(field_set_allocated:io.deephaven.proto.backplane.script.grpc.FigureDescriptor.MultiSeriesDescriptor.line_color) -} - -// .io.deephaven.proto.backplane.script.grpc.FigureDescriptor.StringMapWithDefault point_color = 4; -inline bool FigureDescriptor_MultiSeriesDescriptor::has_point_color() const { - bool value = (_impl_._has_bits_[0] & 0x00000002u) != 0; - PROTOBUF_ASSUME(!value || _impl_.point_color_ != nullptr); - return value; -} -inline void FigureDescriptor_MultiSeriesDescriptor::clear_point_color() { - ::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 { - ::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_); -} -inline const ::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_StringMapWithDefault& FigureDescriptor_MultiSeriesDescriptor::point_color() const ABSL_ATTRIBUTE_LIFETIME_BOUND { - // @@protoc_insertion_point(field_get:io.deephaven.proto.backplane.script.grpc.FigureDescriptor.MultiSeriesDescriptor.point_color) - return _internal_point_color(); -} -inline void FigureDescriptor_MultiSeriesDescriptor::unsafe_arena_set_allocated_point_color(::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_StringMapWithDefault* value) { - ::google::protobuf::internal::TSanWrite(&_impl_); - if (GetArena() == nullptr) { - delete reinterpret_cast<::google::protobuf::MessageLite*>(_impl_.point_color_); - } - _impl_.point_color_ = reinterpret_cast<::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_StringMapWithDefault*>(value); - if (value != nullptr) { - _impl_._has_bits_[0] |= 0x00000002u; - } else { - _impl_._has_bits_[0] &= ~0x00000002u; - } - // @@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() { - ::google::protobuf::internal::TSanWrite(&_impl_); - - _impl_._has_bits_[0] &= ~0x00000002u; - ::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_StringMapWithDefault* released = _impl_.point_color_; - _impl_.point_color_ = nullptr; -#ifdef PROTOBUF_FORCE_COPY_IN_RELEASE - auto* old = reinterpret_cast<::google::protobuf::MessageLite*>(released); - released = ::google::protobuf::internal::DuplicateIfNonNull(released); - if (GetArena() == nullptr) { - delete old; - } -#else // PROTOBUF_FORCE_COPY_IN_RELEASE - if (GetArena() != nullptr) { - released = ::google::protobuf::internal::DuplicateIfNonNull(released); - } -#endif // !PROTOBUF_FORCE_COPY_IN_RELEASE - return released; -} -inline ::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_StringMapWithDefault* FigureDescriptor_MultiSeriesDescriptor::unsafe_arena_release_point_color() { - ::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; - ::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_StringMapWithDefault* temp = _impl_.point_color_; - _impl_.point_color_ = nullptr; - return temp; -} -inline ::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_StringMapWithDefault* FigureDescriptor_MultiSeriesDescriptor::_internal_mutable_point_color() { - ::google::protobuf::internal::TSanWrite(&_impl_); - if (_impl_.point_color_ == nullptr) { - 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(); - ::google::protobuf::internal::TSanWrite(&_impl_); - if (message_arena == nullptr) { - delete (_impl_.point_color_); - } - - if (value != nullptr) { - ::google::protobuf::Arena* submessage_arena = (value)->GetArena(); - if (message_arena != submessage_arena) { - value = ::google::protobuf::internal::GetOwnedMessage(message_arena, value, submessage_arena); - } - _impl_._has_bits_[0] |= 0x00000002u; - } else { - _impl_._has_bits_[0] &= ~0x00000002u; - } - - _impl_.point_color_ = reinterpret_cast<::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_StringMapWithDefault*>(value); - // @@protoc_insertion_point(field_set_allocated:io.deephaven.proto.backplane.script.grpc.FigureDescriptor.MultiSeriesDescriptor.point_color) -} - -// .io.deephaven.proto.backplane.script.grpc.FigureDescriptor.BoolMapWithDefault lines_visible = 5; -inline bool FigureDescriptor_MultiSeriesDescriptor::has_lines_visible() const { - bool value = (_impl_._has_bits_[0] & 0x00000004u) != 0; - PROTOBUF_ASSUME(!value || _impl_.lines_visible_ != nullptr); - return value; -} -inline void FigureDescriptor_MultiSeriesDescriptor::clear_lines_visible() { - ::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 { - ::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_); -} -inline const ::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_BoolMapWithDefault& FigureDescriptor_MultiSeriesDescriptor::lines_visible() const ABSL_ATTRIBUTE_LIFETIME_BOUND { - // @@protoc_insertion_point(field_get:io.deephaven.proto.backplane.script.grpc.FigureDescriptor.MultiSeriesDescriptor.lines_visible) - return _internal_lines_visible(); -} -inline void FigureDescriptor_MultiSeriesDescriptor::unsafe_arena_set_allocated_lines_visible(::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_BoolMapWithDefault* value) { - ::google::protobuf::internal::TSanWrite(&_impl_); - if (GetArena() == nullptr) { - delete reinterpret_cast<::google::protobuf::MessageLite*>(_impl_.lines_visible_); - } - _impl_.lines_visible_ = reinterpret_cast<::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_BoolMapWithDefault*>(value); - if (value != nullptr) { - _impl_._has_bits_[0] |= 0x00000004u; - } else { - _impl_._has_bits_[0] &= ~0x00000004u; - } - // @@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() { - ::google::protobuf::internal::TSanWrite(&_impl_); - - _impl_._has_bits_[0] &= ~0x00000004u; - ::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_BoolMapWithDefault* released = _impl_.lines_visible_; - _impl_.lines_visible_ = nullptr; -#ifdef PROTOBUF_FORCE_COPY_IN_RELEASE - auto* old = reinterpret_cast<::google::protobuf::MessageLite*>(released); - released = ::google::protobuf::internal::DuplicateIfNonNull(released); - if (GetArena() == nullptr) { - delete old; - } -#else // PROTOBUF_FORCE_COPY_IN_RELEASE - if (GetArena() != nullptr) { - released = ::google::protobuf::internal::DuplicateIfNonNull(released); - } -#endif // !PROTOBUF_FORCE_COPY_IN_RELEASE - return released; -} -inline ::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_BoolMapWithDefault* FigureDescriptor_MultiSeriesDescriptor::unsafe_arena_release_lines_visible() { - ::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; - ::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_BoolMapWithDefault* temp = _impl_.lines_visible_; - _impl_.lines_visible_ = nullptr; - return temp; -} -inline ::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_BoolMapWithDefault* FigureDescriptor_MultiSeriesDescriptor::_internal_mutable_lines_visible() { - ::google::protobuf::internal::TSanWrite(&_impl_); - if (_impl_.lines_visible_ == nullptr) { - 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(); - ::google::protobuf::internal::TSanWrite(&_impl_); - if (message_arena == nullptr) { - delete (_impl_.lines_visible_); - } - - if (value != nullptr) { - ::google::protobuf::Arena* submessage_arena = (value)->GetArena(); - if (message_arena != submessage_arena) { - value = ::google::protobuf::internal::GetOwnedMessage(message_arena, value, submessage_arena); - } - _impl_._has_bits_[0] |= 0x00000004u; - } else { - _impl_._has_bits_[0] &= ~0x00000004u; - } - - _impl_.lines_visible_ = reinterpret_cast<::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_BoolMapWithDefault*>(value); - // @@protoc_insertion_point(field_set_allocated:io.deephaven.proto.backplane.script.grpc.FigureDescriptor.MultiSeriesDescriptor.lines_visible) -} - -// .io.deephaven.proto.backplane.script.grpc.FigureDescriptor.BoolMapWithDefault points_visible = 6; -inline bool FigureDescriptor_MultiSeriesDescriptor::has_points_visible() const { - bool value = (_impl_._has_bits_[0] & 0x00000008u) != 0; - PROTOBUF_ASSUME(!value || _impl_.points_visible_ != nullptr); - return value; -} -inline void FigureDescriptor_MultiSeriesDescriptor::clear_points_visible() { - ::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 { - ::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_); -} -inline const ::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_BoolMapWithDefault& FigureDescriptor_MultiSeriesDescriptor::points_visible() const ABSL_ATTRIBUTE_LIFETIME_BOUND { - // @@protoc_insertion_point(field_get:io.deephaven.proto.backplane.script.grpc.FigureDescriptor.MultiSeriesDescriptor.points_visible) - return _internal_points_visible(); -} -inline void FigureDescriptor_MultiSeriesDescriptor::unsafe_arena_set_allocated_points_visible(::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_BoolMapWithDefault* value) { - ::google::protobuf::internal::TSanWrite(&_impl_); - if (GetArena() == nullptr) { - delete reinterpret_cast<::google::protobuf::MessageLite*>(_impl_.points_visible_); - } - _impl_.points_visible_ = reinterpret_cast<::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_BoolMapWithDefault*>(value); - if (value != nullptr) { - _impl_._has_bits_[0] |= 0x00000008u; - } else { - _impl_._has_bits_[0] &= ~0x00000008u; - } - // @@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() { - ::google::protobuf::internal::TSanWrite(&_impl_); - - _impl_._has_bits_[0] &= ~0x00000008u; - ::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_BoolMapWithDefault* released = _impl_.points_visible_; - _impl_.points_visible_ = nullptr; -#ifdef PROTOBUF_FORCE_COPY_IN_RELEASE - auto* old = reinterpret_cast<::google::protobuf::MessageLite*>(released); - released = ::google::protobuf::internal::DuplicateIfNonNull(released); - if (GetArena() == nullptr) { - delete old; - } -#else // PROTOBUF_FORCE_COPY_IN_RELEASE - if (GetArena() != nullptr) { - released = ::google::protobuf::internal::DuplicateIfNonNull(released); - } -#endif // !PROTOBUF_FORCE_COPY_IN_RELEASE - return released; -} -inline ::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_BoolMapWithDefault* FigureDescriptor_MultiSeriesDescriptor::unsafe_arena_release_points_visible() { - ::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; - ::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_BoolMapWithDefault* temp = _impl_.points_visible_; - _impl_.points_visible_ = nullptr; - return temp; -} -inline ::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_BoolMapWithDefault* FigureDescriptor_MultiSeriesDescriptor::_internal_mutable_points_visible() { - ::google::protobuf::internal::TSanWrite(&_impl_); - if (_impl_.points_visible_ == nullptr) { - 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(); - ::google::protobuf::internal::TSanWrite(&_impl_); - if (message_arena == nullptr) { - delete (_impl_.points_visible_); - } - - if (value != nullptr) { - ::google::protobuf::Arena* submessage_arena = (value)->GetArena(); - if (message_arena != submessage_arena) { - value = ::google::protobuf::internal::GetOwnedMessage(message_arena, value, submessage_arena); - } - _impl_._has_bits_[0] |= 0x00000008u; - } else { - _impl_._has_bits_[0] &= ~0x00000008u; - } - - _impl_.points_visible_ = reinterpret_cast<::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_BoolMapWithDefault*>(value); - // @@protoc_insertion_point(field_set_allocated:io.deephaven.proto.backplane.script.grpc.FigureDescriptor.MultiSeriesDescriptor.points_visible) -} - -// .io.deephaven.proto.backplane.script.grpc.FigureDescriptor.BoolMapWithDefault gradient_visible = 7; -inline bool FigureDescriptor_MultiSeriesDescriptor::has_gradient_visible() const { - bool value = (_impl_._has_bits_[0] & 0x00000010u) != 0; - PROTOBUF_ASSUME(!value || _impl_.gradient_visible_ != nullptr); - return value; -} -inline void FigureDescriptor_MultiSeriesDescriptor::clear_gradient_visible() { - ::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 { - ::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_); -} -inline const ::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_BoolMapWithDefault& FigureDescriptor_MultiSeriesDescriptor::gradient_visible() const ABSL_ATTRIBUTE_LIFETIME_BOUND { - // @@protoc_insertion_point(field_get:io.deephaven.proto.backplane.script.grpc.FigureDescriptor.MultiSeriesDescriptor.gradient_visible) - return _internal_gradient_visible(); -} -inline void FigureDescriptor_MultiSeriesDescriptor::unsafe_arena_set_allocated_gradient_visible(::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_BoolMapWithDefault* value) { - ::google::protobuf::internal::TSanWrite(&_impl_); - if (GetArena() == nullptr) { - delete reinterpret_cast<::google::protobuf::MessageLite*>(_impl_.gradient_visible_); - } - _impl_.gradient_visible_ = reinterpret_cast<::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_BoolMapWithDefault*>(value); - if (value != nullptr) { - _impl_._has_bits_[0] |= 0x00000010u; - } else { - _impl_._has_bits_[0] &= ~0x00000010u; - } - // @@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() { - ::google::protobuf::internal::TSanWrite(&_impl_); - - _impl_._has_bits_[0] &= ~0x00000010u; - ::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_BoolMapWithDefault* released = _impl_.gradient_visible_; - _impl_.gradient_visible_ = nullptr; -#ifdef PROTOBUF_FORCE_COPY_IN_RELEASE - auto* old = reinterpret_cast<::google::protobuf::MessageLite*>(released); - released = ::google::protobuf::internal::DuplicateIfNonNull(released); - if (GetArena() == nullptr) { - delete old; - } -#else // PROTOBUF_FORCE_COPY_IN_RELEASE - if (GetArena() != nullptr) { - released = ::google::protobuf::internal::DuplicateIfNonNull(released); - } -#endif // !PROTOBUF_FORCE_COPY_IN_RELEASE - return released; -} -inline ::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_BoolMapWithDefault* FigureDescriptor_MultiSeriesDescriptor::unsafe_arena_release_gradient_visible() { - ::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; - ::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_BoolMapWithDefault* temp = _impl_.gradient_visible_; - _impl_.gradient_visible_ = nullptr; - return temp; -} -inline ::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_BoolMapWithDefault* FigureDescriptor_MultiSeriesDescriptor::_internal_mutable_gradient_visible() { - ::google::protobuf::internal::TSanWrite(&_impl_); - if (_impl_.gradient_visible_ == nullptr) { - 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(); - ::google::protobuf::internal::TSanWrite(&_impl_); - if (message_arena == nullptr) { - delete (_impl_.gradient_visible_); - } - - if (value != nullptr) { - ::google::protobuf::Arena* submessage_arena = (value)->GetArena(); - if (message_arena != submessage_arena) { - value = ::google::protobuf::internal::GetOwnedMessage(message_arena, value, submessage_arena); - } - _impl_._has_bits_[0] |= 0x00000010u; - } else { - _impl_._has_bits_[0] &= ~0x00000010u; - } - - _impl_.gradient_visible_ = reinterpret_cast<::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_BoolMapWithDefault*>(value); - // @@protoc_insertion_point(field_set_allocated:io.deephaven.proto.backplane.script.grpc.FigureDescriptor.MultiSeriesDescriptor.gradient_visible) -} - -// .io.deephaven.proto.backplane.script.grpc.FigureDescriptor.StringMapWithDefault point_label_format = 8; -inline bool FigureDescriptor_MultiSeriesDescriptor::has_point_label_format() const { - bool value = (_impl_._has_bits_[0] & 0x00000020u) != 0; - PROTOBUF_ASSUME(!value || _impl_.point_label_format_ != nullptr); - return value; -} -inline void FigureDescriptor_MultiSeriesDescriptor::clear_point_label_format() { - ::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 { - ::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_); -} -inline const ::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_StringMapWithDefault& FigureDescriptor_MultiSeriesDescriptor::point_label_format() const ABSL_ATTRIBUTE_LIFETIME_BOUND { - // @@protoc_insertion_point(field_get:io.deephaven.proto.backplane.script.grpc.FigureDescriptor.MultiSeriesDescriptor.point_label_format) - 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) { - ::google::protobuf::internal::TSanWrite(&_impl_); - if (GetArena() == nullptr) { - delete reinterpret_cast<::google::protobuf::MessageLite*>(_impl_.point_label_format_); - } - _impl_.point_label_format_ = reinterpret_cast<::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_StringMapWithDefault*>(value); - if (value != nullptr) { - _impl_._has_bits_[0] |= 0x00000020u; - } else { - _impl_._has_bits_[0] &= ~0x00000020u; - } - // @@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() { - ::google::protobuf::internal::TSanWrite(&_impl_); - - _impl_._has_bits_[0] &= ~0x00000020u; - ::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_StringMapWithDefault* released = _impl_.point_label_format_; - _impl_.point_label_format_ = nullptr; -#ifdef PROTOBUF_FORCE_COPY_IN_RELEASE - auto* old = reinterpret_cast<::google::protobuf::MessageLite*>(released); - released = ::google::protobuf::internal::DuplicateIfNonNull(released); - if (GetArena() == nullptr) { - delete old; - } -#else // PROTOBUF_FORCE_COPY_IN_RELEASE - if (GetArena() != nullptr) { - released = ::google::protobuf::internal::DuplicateIfNonNull(released); - } -#endif // !PROTOBUF_FORCE_COPY_IN_RELEASE - return released; -} -inline ::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_StringMapWithDefault* FigureDescriptor_MultiSeriesDescriptor::unsafe_arena_release_point_label_format() { - ::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; - ::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_StringMapWithDefault* temp = _impl_.point_label_format_; - _impl_.point_label_format_ = nullptr; - return temp; -} -inline ::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_StringMapWithDefault* FigureDescriptor_MultiSeriesDescriptor::_internal_mutable_point_label_format() { - ::google::protobuf::internal::TSanWrite(&_impl_); - if (_impl_.point_label_format_ == nullptr) { - 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(); - ::google::protobuf::internal::TSanWrite(&_impl_); - if (message_arena == nullptr) { - delete (_impl_.point_label_format_); - } - - if (value != nullptr) { - ::google::protobuf::Arena* submessage_arena = (value)->GetArena(); - if (message_arena != submessage_arena) { - value = ::google::protobuf::internal::GetOwnedMessage(message_arena, value, submessage_arena); - } - _impl_._has_bits_[0] |= 0x00000020u; - } else { - _impl_._has_bits_[0] &= ~0x00000020u; - } - - _impl_.point_label_format_ = reinterpret_cast<::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_StringMapWithDefault*>(value); - // @@protoc_insertion_point(field_set_allocated:io.deephaven.proto.backplane.script.grpc.FigureDescriptor.MultiSeriesDescriptor.point_label_format) -} - -// .io.deephaven.proto.backplane.script.grpc.FigureDescriptor.StringMapWithDefault x_tool_tip_pattern = 9; -inline bool FigureDescriptor_MultiSeriesDescriptor::has_x_tool_tip_pattern() const { - bool value = (_impl_._has_bits_[0] & 0x00000040u) != 0; - PROTOBUF_ASSUME(!value || _impl_.x_tool_tip_pattern_ != nullptr); - return value; -} -inline void FigureDescriptor_MultiSeriesDescriptor::clear_x_tool_tip_pattern() { - ::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 { - ::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_); -} -inline const ::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_StringMapWithDefault& FigureDescriptor_MultiSeriesDescriptor::x_tool_tip_pattern() const ABSL_ATTRIBUTE_LIFETIME_BOUND { - // @@protoc_insertion_point(field_get:io.deephaven.proto.backplane.script.grpc.FigureDescriptor.MultiSeriesDescriptor.x_tool_tip_pattern) - 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) { - ::google::protobuf::internal::TSanWrite(&_impl_); - if (GetArena() == nullptr) { - delete reinterpret_cast<::google::protobuf::MessageLite*>(_impl_.x_tool_tip_pattern_); - } - _impl_.x_tool_tip_pattern_ = reinterpret_cast<::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_StringMapWithDefault*>(value); - if (value != nullptr) { - _impl_._has_bits_[0] |= 0x00000040u; - } else { - _impl_._has_bits_[0] &= ~0x00000040u; - } - // @@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() { - ::google::protobuf::internal::TSanWrite(&_impl_); - - _impl_._has_bits_[0] &= ~0x00000040u; - ::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_StringMapWithDefault* released = _impl_.x_tool_tip_pattern_; - _impl_.x_tool_tip_pattern_ = nullptr; -#ifdef PROTOBUF_FORCE_COPY_IN_RELEASE - auto* old = reinterpret_cast<::google::protobuf::MessageLite*>(released); - released = ::google::protobuf::internal::DuplicateIfNonNull(released); - if (GetArena() == nullptr) { - delete old; - } -#else // PROTOBUF_FORCE_COPY_IN_RELEASE - if (GetArena() != nullptr) { - released = ::google::protobuf::internal::DuplicateIfNonNull(released); - } -#endif // !PROTOBUF_FORCE_COPY_IN_RELEASE - return released; -} -inline ::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_StringMapWithDefault* FigureDescriptor_MultiSeriesDescriptor::unsafe_arena_release_x_tool_tip_pattern() { - ::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; - ::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_StringMapWithDefault* temp = _impl_.x_tool_tip_pattern_; - _impl_.x_tool_tip_pattern_ = nullptr; - return temp; -} -inline ::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_StringMapWithDefault* FigureDescriptor_MultiSeriesDescriptor::_internal_mutable_x_tool_tip_pattern() { - ::google::protobuf::internal::TSanWrite(&_impl_); - if (_impl_.x_tool_tip_pattern_ == nullptr) { - 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(); - ::google::protobuf::internal::TSanWrite(&_impl_); - if (message_arena == nullptr) { - delete (_impl_.x_tool_tip_pattern_); - } - - if (value != nullptr) { - ::google::protobuf::Arena* submessage_arena = (value)->GetArena(); - if (message_arena != submessage_arena) { - value = ::google::protobuf::internal::GetOwnedMessage(message_arena, value, submessage_arena); - } - _impl_._has_bits_[0] |= 0x00000040u; - } else { - _impl_._has_bits_[0] &= ~0x00000040u; - } - - _impl_.x_tool_tip_pattern_ = reinterpret_cast<::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_StringMapWithDefault*>(value); - // @@protoc_insertion_point(field_set_allocated:io.deephaven.proto.backplane.script.grpc.FigureDescriptor.MultiSeriesDescriptor.x_tool_tip_pattern) -} - -// .io.deephaven.proto.backplane.script.grpc.FigureDescriptor.StringMapWithDefault y_tool_tip_pattern = 10; -inline bool FigureDescriptor_MultiSeriesDescriptor::has_y_tool_tip_pattern() const { - bool value = (_impl_._has_bits_[0] & 0x00000080u) != 0; - PROTOBUF_ASSUME(!value || _impl_.y_tool_tip_pattern_ != nullptr); - return value; -} -inline void FigureDescriptor_MultiSeriesDescriptor::clear_y_tool_tip_pattern() { - ::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 { - ::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_); -} -inline const ::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_StringMapWithDefault& FigureDescriptor_MultiSeriesDescriptor::y_tool_tip_pattern() const ABSL_ATTRIBUTE_LIFETIME_BOUND { - // @@protoc_insertion_point(field_get:io.deephaven.proto.backplane.script.grpc.FigureDescriptor.MultiSeriesDescriptor.y_tool_tip_pattern) - 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) { - ::google::protobuf::internal::TSanWrite(&_impl_); - if (GetArena() == nullptr) { - delete reinterpret_cast<::google::protobuf::MessageLite*>(_impl_.y_tool_tip_pattern_); - } - _impl_.y_tool_tip_pattern_ = reinterpret_cast<::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_StringMapWithDefault*>(value); - if (value != nullptr) { - _impl_._has_bits_[0] |= 0x00000080u; - } else { - _impl_._has_bits_[0] &= ~0x00000080u; - } - // @@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() { - ::google::protobuf::internal::TSanWrite(&_impl_); - - _impl_._has_bits_[0] &= ~0x00000080u; - ::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_StringMapWithDefault* released = _impl_.y_tool_tip_pattern_; - _impl_.y_tool_tip_pattern_ = nullptr; -#ifdef PROTOBUF_FORCE_COPY_IN_RELEASE - auto* old = reinterpret_cast<::google::protobuf::MessageLite*>(released); - released = ::google::protobuf::internal::DuplicateIfNonNull(released); - if (GetArena() == nullptr) { - delete old; - } -#else // PROTOBUF_FORCE_COPY_IN_RELEASE - if (GetArena() != nullptr) { - released = ::google::protobuf::internal::DuplicateIfNonNull(released); - } -#endif // !PROTOBUF_FORCE_COPY_IN_RELEASE - return released; -} -inline ::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_StringMapWithDefault* FigureDescriptor_MultiSeriesDescriptor::unsafe_arena_release_y_tool_tip_pattern() { - ::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; - ::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_StringMapWithDefault* temp = _impl_.y_tool_tip_pattern_; - _impl_.y_tool_tip_pattern_ = nullptr; - return temp; -} -inline ::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_StringMapWithDefault* FigureDescriptor_MultiSeriesDescriptor::_internal_mutable_y_tool_tip_pattern() { - ::google::protobuf::internal::TSanWrite(&_impl_); - if (_impl_.y_tool_tip_pattern_ == nullptr) { - 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(); - ::google::protobuf::internal::TSanWrite(&_impl_); - if (message_arena == nullptr) { - delete (_impl_.y_tool_tip_pattern_); - } - - if (value != nullptr) { - ::google::protobuf::Arena* submessage_arena = (value)->GetArena(); - if (message_arena != submessage_arena) { - value = ::google::protobuf::internal::GetOwnedMessage(message_arena, value, submessage_arena); - } - _impl_._has_bits_[0] |= 0x00000080u; - } else { - _impl_._has_bits_[0] &= ~0x00000080u; - } - - _impl_.y_tool_tip_pattern_ = reinterpret_cast<::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_StringMapWithDefault*>(value); - // @@protoc_insertion_point(field_set_allocated:io.deephaven.proto.backplane.script.grpc.FigureDescriptor.MultiSeriesDescriptor.y_tool_tip_pattern) -} - -// .io.deephaven.proto.backplane.script.grpc.FigureDescriptor.StringMapWithDefault point_label = 11; -inline bool FigureDescriptor_MultiSeriesDescriptor::has_point_label() const { - bool value = (_impl_._has_bits_[0] & 0x00000100u) != 0; - PROTOBUF_ASSUME(!value || _impl_.point_label_ != nullptr); - return value; -} -inline void FigureDescriptor_MultiSeriesDescriptor::clear_point_label() { - ::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 { - ::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_); -} -inline const ::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_StringMapWithDefault& FigureDescriptor_MultiSeriesDescriptor::point_label() const ABSL_ATTRIBUTE_LIFETIME_BOUND { - // @@protoc_insertion_point(field_get:io.deephaven.proto.backplane.script.grpc.FigureDescriptor.MultiSeriesDescriptor.point_label) - return _internal_point_label(); -} -inline void FigureDescriptor_MultiSeriesDescriptor::unsafe_arena_set_allocated_point_label(::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_StringMapWithDefault* value) { - ::google::protobuf::internal::TSanWrite(&_impl_); - if (GetArena() == nullptr) { - delete reinterpret_cast<::google::protobuf::MessageLite*>(_impl_.point_label_); - } - _impl_.point_label_ = reinterpret_cast<::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_StringMapWithDefault*>(value); - if (value != nullptr) { - _impl_._has_bits_[0] |= 0x00000100u; - } else { - _impl_._has_bits_[0] &= ~0x00000100u; - } - // @@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() { - ::google::protobuf::internal::TSanWrite(&_impl_); - - _impl_._has_bits_[0] &= ~0x00000100u; - ::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_StringMapWithDefault* released = _impl_.point_label_; - _impl_.point_label_ = nullptr; -#ifdef PROTOBUF_FORCE_COPY_IN_RELEASE - auto* old = reinterpret_cast<::google::protobuf::MessageLite*>(released); - released = ::google::protobuf::internal::DuplicateIfNonNull(released); - if (GetArena() == nullptr) { - delete old; - } -#else // PROTOBUF_FORCE_COPY_IN_RELEASE - if (GetArena() != nullptr) { - released = ::google::protobuf::internal::DuplicateIfNonNull(released); - } -#endif // !PROTOBUF_FORCE_COPY_IN_RELEASE - return released; -} -inline ::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_StringMapWithDefault* FigureDescriptor_MultiSeriesDescriptor::unsafe_arena_release_point_label() { - ::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; - ::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_StringMapWithDefault* temp = _impl_.point_label_; - _impl_.point_label_ = nullptr; - return temp; -} -inline ::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_StringMapWithDefault* FigureDescriptor_MultiSeriesDescriptor::_internal_mutable_point_label() { - ::google::protobuf::internal::TSanWrite(&_impl_); - if (_impl_.point_label_ == nullptr) { - 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(); - ::google::protobuf::internal::TSanWrite(&_impl_); - if (message_arena == nullptr) { - delete (_impl_.point_label_); - } - - if (value != nullptr) { - ::google::protobuf::Arena* submessage_arena = (value)->GetArena(); - if (message_arena != submessage_arena) { - value = ::google::protobuf::internal::GetOwnedMessage(message_arena, value, submessage_arena); - } - _impl_._has_bits_[0] |= 0x00000100u; - } else { - _impl_._has_bits_[0] &= ~0x00000100u; - } - - _impl_.point_label_ = reinterpret_cast<::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_StringMapWithDefault*>(value); - // @@protoc_insertion_point(field_set_allocated:io.deephaven.proto.backplane.script.grpc.FigureDescriptor.MultiSeriesDescriptor.point_label) -} - -// .io.deephaven.proto.backplane.script.grpc.FigureDescriptor.DoubleMapWithDefault point_size = 12; -inline bool FigureDescriptor_MultiSeriesDescriptor::has_point_size() const { - bool value = (_impl_._has_bits_[0] & 0x00000200u) != 0; - PROTOBUF_ASSUME(!value || _impl_.point_size_ != nullptr); - return value; -} -inline void FigureDescriptor_MultiSeriesDescriptor::clear_point_size() { - ::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 { - ::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_); -} -inline const ::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_DoubleMapWithDefault& FigureDescriptor_MultiSeriesDescriptor::point_size() const ABSL_ATTRIBUTE_LIFETIME_BOUND { - // @@protoc_insertion_point(field_get:io.deephaven.proto.backplane.script.grpc.FigureDescriptor.MultiSeriesDescriptor.point_size) - return _internal_point_size(); -} -inline void FigureDescriptor_MultiSeriesDescriptor::unsafe_arena_set_allocated_point_size(::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_DoubleMapWithDefault* value) { - ::google::protobuf::internal::TSanWrite(&_impl_); - if (GetArena() == nullptr) { - delete reinterpret_cast<::google::protobuf::MessageLite*>(_impl_.point_size_); - } - _impl_.point_size_ = reinterpret_cast<::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_DoubleMapWithDefault*>(value); - if (value != nullptr) { - _impl_._has_bits_[0] |= 0x00000200u; - } else { - _impl_._has_bits_[0] &= ~0x00000200u; - } - // @@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() { - ::google::protobuf::internal::TSanWrite(&_impl_); - - _impl_._has_bits_[0] &= ~0x00000200u; - ::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_DoubleMapWithDefault* released = _impl_.point_size_; - _impl_.point_size_ = nullptr; -#ifdef PROTOBUF_FORCE_COPY_IN_RELEASE - auto* old = reinterpret_cast<::google::protobuf::MessageLite*>(released); - released = ::google::protobuf::internal::DuplicateIfNonNull(released); - if (GetArena() == nullptr) { - delete old; - } -#else // PROTOBUF_FORCE_COPY_IN_RELEASE - if (GetArena() != nullptr) { - released = ::google::protobuf::internal::DuplicateIfNonNull(released); - } -#endif // !PROTOBUF_FORCE_COPY_IN_RELEASE - return released; -} -inline ::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_DoubleMapWithDefault* FigureDescriptor_MultiSeriesDescriptor::unsafe_arena_release_point_size() { - ::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; - ::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_DoubleMapWithDefault* temp = _impl_.point_size_; - _impl_.point_size_ = nullptr; - return temp; -} -inline ::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_DoubleMapWithDefault* FigureDescriptor_MultiSeriesDescriptor::_internal_mutable_point_size() { - ::google::protobuf::internal::TSanWrite(&_impl_); - if (_impl_.point_size_ == nullptr) { - 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(); - ::google::protobuf::internal::TSanWrite(&_impl_); - if (message_arena == nullptr) { - delete (_impl_.point_size_); - } - - if (value != nullptr) { - ::google::protobuf::Arena* submessage_arena = (value)->GetArena(); - if (message_arena != submessage_arena) { - value = ::google::protobuf::internal::GetOwnedMessage(message_arena, value, submessage_arena); - } - _impl_._has_bits_[0] |= 0x00000200u; - } else { - _impl_._has_bits_[0] &= ~0x00000200u; - } - - _impl_.point_size_ = reinterpret_cast<::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_DoubleMapWithDefault*>(value); - // @@protoc_insertion_point(field_set_allocated:io.deephaven.proto.backplane.script.grpc.FigureDescriptor.MultiSeriesDescriptor.point_size) -} - -// .io.deephaven.proto.backplane.script.grpc.FigureDescriptor.StringMapWithDefault point_shape = 13; -inline bool FigureDescriptor_MultiSeriesDescriptor::has_point_shape() const { - bool value = (_impl_._has_bits_[0] & 0x00000400u) != 0; - PROTOBUF_ASSUME(!value || _impl_.point_shape_ != nullptr); - return value; -} -inline void FigureDescriptor_MultiSeriesDescriptor::clear_point_shape() { - ::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 { - ::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_); -} -inline const ::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_StringMapWithDefault& FigureDescriptor_MultiSeriesDescriptor::point_shape() const ABSL_ATTRIBUTE_LIFETIME_BOUND { - // @@protoc_insertion_point(field_get:io.deephaven.proto.backplane.script.grpc.FigureDescriptor.MultiSeriesDescriptor.point_shape) - return _internal_point_shape(); -} -inline void FigureDescriptor_MultiSeriesDescriptor::unsafe_arena_set_allocated_point_shape(::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_StringMapWithDefault* value) { - ::google::protobuf::internal::TSanWrite(&_impl_); - if (GetArena() == nullptr) { - delete reinterpret_cast<::google::protobuf::MessageLite*>(_impl_.point_shape_); - } - _impl_.point_shape_ = reinterpret_cast<::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_StringMapWithDefault*>(value); - if (value != nullptr) { - _impl_._has_bits_[0] |= 0x00000400u; - } else { - _impl_._has_bits_[0] &= ~0x00000400u; - } - // @@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() { - ::google::protobuf::internal::TSanWrite(&_impl_); - - _impl_._has_bits_[0] &= ~0x00000400u; - ::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_StringMapWithDefault* released = _impl_.point_shape_; - _impl_.point_shape_ = nullptr; -#ifdef PROTOBUF_FORCE_COPY_IN_RELEASE - auto* old = reinterpret_cast<::google::protobuf::MessageLite*>(released); - released = ::google::protobuf::internal::DuplicateIfNonNull(released); - if (GetArena() == nullptr) { - delete old; - } -#else // PROTOBUF_FORCE_COPY_IN_RELEASE - if (GetArena() != nullptr) { - released = ::google::protobuf::internal::DuplicateIfNonNull(released); - } -#endif // !PROTOBUF_FORCE_COPY_IN_RELEASE - return released; -} -inline ::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_StringMapWithDefault* FigureDescriptor_MultiSeriesDescriptor::unsafe_arena_release_point_shape() { - ::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; - ::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_StringMapWithDefault* temp = _impl_.point_shape_; - _impl_.point_shape_ = nullptr; - return temp; -} -inline ::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_StringMapWithDefault* FigureDescriptor_MultiSeriesDescriptor::_internal_mutable_point_shape() { - ::google::protobuf::internal::TSanWrite(&_impl_); - if (_impl_.point_shape_ == nullptr) { - 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(); - ::google::protobuf::internal::TSanWrite(&_impl_); - if (message_arena == nullptr) { - delete (_impl_.point_shape_); - } - - if (value != nullptr) { - ::google::protobuf::Arena* submessage_arena = (value)->GetArena(); - if (message_arena != submessage_arena) { - value = ::google::protobuf::internal::GetOwnedMessage(message_arena, value, submessage_arena); - } - _impl_._has_bits_[0] |= 0x00000400u; - } else { - _impl_._has_bits_[0] &= ~0x00000400u; - } - - _impl_.point_shape_ = reinterpret_cast<::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_StringMapWithDefault*>(value); - // @@protoc_insertion_point(field_set_allocated:io.deephaven.proto.backplane.script.grpc.FigureDescriptor.MultiSeriesDescriptor.point_shape) -} - -// repeated .io.deephaven.proto.backplane.script.grpc.FigureDescriptor.MultiSeriesSourceDescriptor data_sources = 14; -inline int FigureDescriptor_MultiSeriesDescriptor::_internal_data_sources_size() const { - return _internal_data_sources().size(); -} -inline int FigureDescriptor_MultiSeriesDescriptor::data_sources_size() const { - return _internal_data_sources_size(); -} -inline void FigureDescriptor_MultiSeriesDescriptor::clear_data_sources() { - ::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) - ABSL_ATTRIBUTE_LIFETIME_BOUND { - // @@protoc_insertion_point(field_mutable:io.deephaven.proto.backplane.script.grpc.FigureDescriptor.MultiSeriesDescriptor.data_sources) - return _internal_mutable_data_sources()->Mutable(index); -} -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) - ::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 - ABSL_ATTRIBUTE_LIFETIME_BOUND { - // @@protoc_insertion_point(field_get:io.deephaven.proto.backplane.script.grpc.FigureDescriptor.MultiSeriesDescriptor.data_sources) - return _internal_data_sources().Get(index); -} -inline ::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_MultiSeriesSourceDescriptor* FigureDescriptor_MultiSeriesDescriptor::add_data_sources() ABSL_ATTRIBUTE_LIFETIME_BOUND { - ::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; -} -inline const ::google::protobuf::RepeatedPtrField<::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_MultiSeriesSourceDescriptor>& FigureDescriptor_MultiSeriesDescriptor::data_sources() const - ABSL_ATTRIBUTE_LIFETIME_BOUND { - // @@protoc_insertion_point(field_list:io.deephaven.proto.backplane.script.grpc.FigureDescriptor.MultiSeriesDescriptor.data_sources) - return _internal_data_sources(); -} -inline const ::google::protobuf::RepeatedPtrField<::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_MultiSeriesSourceDescriptor>& -FigureDescriptor_MultiSeriesDescriptor::_internal_data_sources() const { - ::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() { - ::google::protobuf::internal::TSanRead(&_impl_); - return &_impl_.data_sources_; -} - -// ------------------------------------------------------------------- - -// FigureDescriptor_StringMapWithDefault - -// optional string default_string = 1; -inline bool FigureDescriptor_StringMapWithDefault::has_default_string() const { - bool value = (_impl_._has_bits_[0] & 0x00000001u) != 0; - return value; -} -inline void FigureDescriptor_StringMapWithDefault::clear_default_string() { - ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.default_string_.ClearToEmpty(); - _impl_._has_bits_[0] &= ~0x00000001u; -} -inline const std::string& FigureDescriptor_StringMapWithDefault::default_string() const - ABSL_ATTRIBUTE_LIFETIME_BOUND { - // @@protoc_insertion_point(field_get:io.deephaven.proto.backplane.script.grpc.FigureDescriptor.StringMapWithDefault.default_string) - return _internal_default_string(); -} -template -inline PROTOBUF_ALWAYS_INLINE void FigureDescriptor_StringMapWithDefault::set_default_string(Arg_&& arg, - Args_... args) { - ::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) -} -inline std::string* FigureDescriptor_StringMapWithDefault::mutable_default_string() ABSL_ATTRIBUTE_LIFETIME_BOUND { - std::string* _s = _internal_mutable_default_string(); - // @@protoc_insertion_point(field_mutable:io.deephaven.proto.backplane.script.grpc.FigureDescriptor.StringMapWithDefault.default_string) - return _s; -} -inline const std::string& FigureDescriptor_StringMapWithDefault::_internal_default_string() const { - ::google::protobuf::internal::TSanRead(&_impl_); - return _impl_.default_string_.Get(); -} -inline void FigureDescriptor_StringMapWithDefault::_internal_set_default_string(const std::string& value) { - ::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() { - ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_._has_bits_[0] |= 0x00000001u; - return _impl_.default_string_.Mutable( GetArena()); -} -inline std::string* FigureDescriptor_StringMapWithDefault::release_default_string() { - ::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; - } - _impl_._has_bits_[0] &= ~0x00000001u; - auto* released = _impl_.default_string_.Release(); - #ifdef PROTOBUF_FORCE_COPY_DEFAULT_STRING - _impl_.default_string_.Set("", GetArena()); - #endif // PROTOBUF_FORCE_COPY_DEFAULT_STRING - return released; -} -inline void FigureDescriptor_StringMapWithDefault::set_allocated_default_string(std::string* value) { - ::google::protobuf::internal::TSanWrite(&_impl_); - if (value != nullptr) { - _impl_._has_bits_[0] |= 0x00000001u; - } else { - _impl_._has_bits_[0] &= ~0x00000001u; - } - _impl_.default_string_.SetAllocated(value, GetArena()); - #ifdef PROTOBUF_FORCE_COPY_DEFAULT_STRING - if (_impl_.default_string_.IsDefault()) { - _impl_.default_string_.Set("", GetArena()); - } - #endif // PROTOBUF_FORCE_COPY_DEFAULT_STRING - // @@protoc_insertion_point(field_set_allocated:io.deephaven.proto.backplane.script.grpc.FigureDescriptor.StringMapWithDefault.default_string) -} - -// repeated string keys = 2; -inline int FigureDescriptor_StringMapWithDefault::_internal_keys_size() const { - return _internal_keys().size(); -} -inline int FigureDescriptor_StringMapWithDefault::keys_size() const { - return _internal_keys_size(); -} -inline void FigureDescriptor_StringMapWithDefault::clear_keys() { - ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.keys_.Clear(); -} -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; -} -inline const std::string& FigureDescriptor_StringMapWithDefault::keys(int index) const - ABSL_ATTRIBUTE_LIFETIME_BOUND { - // @@protoc_insertion_point(field_get:io.deephaven.proto.backplane.script.grpc.FigureDescriptor.StringMapWithDefault.keys) - return _internal_keys().Get(index); -} -inline std::string* FigureDescriptor_StringMapWithDefault::mutable_keys(int index) - ABSL_ATTRIBUTE_LIFETIME_BOUND { - // @@protoc_insertion_point(field_mutable:io.deephaven.proto.backplane.script.grpc.FigureDescriptor.StringMapWithDefault.keys) - return _internal_mutable_keys()->Mutable(index); -} -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) -} -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 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) - return _internal_keys(); -} -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) - ::google::protobuf::internal::TSanWrite(&_impl_); - return _internal_mutable_keys(); -} -inline const ::google::protobuf::RepeatedPtrField& -FigureDescriptor_StringMapWithDefault::_internal_keys() const { - ::google::protobuf::internal::TSanRead(&_impl_); - return _impl_.keys_; -} -inline ::google::protobuf::RepeatedPtrField* -FigureDescriptor_StringMapWithDefault::_internal_mutable_keys() { - ::google::protobuf::internal::TSanRead(&_impl_); - return &_impl_.keys_; -} - -// repeated string values = 3; -inline int FigureDescriptor_StringMapWithDefault::_internal_values_size() const { - return _internal_values().size(); -} -inline int FigureDescriptor_StringMapWithDefault::values_size() const { - return _internal_values_size(); -} -inline void FigureDescriptor_StringMapWithDefault::clear_values() { - ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.values_.Clear(); -} -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; -} -inline const std::string& FigureDescriptor_StringMapWithDefault::values(int index) const - ABSL_ATTRIBUTE_LIFETIME_BOUND { - // @@protoc_insertion_point(field_get:io.deephaven.proto.backplane.script.grpc.FigureDescriptor.StringMapWithDefault.values) - return _internal_values().Get(index); -} -inline std::string* FigureDescriptor_StringMapWithDefault::mutable_values(int index) - ABSL_ATTRIBUTE_LIFETIME_BOUND { - // @@protoc_insertion_point(field_mutable:io.deephaven.proto.backplane.script.grpc.FigureDescriptor.StringMapWithDefault.values) - return _internal_mutable_values()->Mutable(index); -} -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) -} -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 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) - return _internal_values(); -} -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) - ::google::protobuf::internal::TSanWrite(&_impl_); - return _internal_mutable_values(); -} -inline const ::google::protobuf::RepeatedPtrField& -FigureDescriptor_StringMapWithDefault::_internal_values() const { - ::google::protobuf::internal::TSanRead(&_impl_); - return _impl_.values_; -} -inline ::google::protobuf::RepeatedPtrField* -FigureDescriptor_StringMapWithDefault::_internal_mutable_values() { - ::google::protobuf::internal::TSanRead(&_impl_); - return &_impl_.values_; -} - -// ------------------------------------------------------------------- - -// FigureDescriptor_DoubleMapWithDefault - -// optional double default_double = 1; -inline bool FigureDescriptor_DoubleMapWithDefault::has_default_double() const { - bool value = (_impl_._has_bits_[0] & 0x00000001u) != 0; - return value; -} -inline void FigureDescriptor_DoubleMapWithDefault::clear_default_double() { - ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.default_double_ = 0; - _impl_._has_bits_[0] &= ~0x00000001u; -} -inline double FigureDescriptor_DoubleMapWithDefault::default_double() const { - // @@protoc_insertion_point(field_get:io.deephaven.proto.backplane.script.grpc.FigureDescriptor.DoubleMapWithDefault.default_double) - return _internal_default_double(); -} -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 { - ::google::protobuf::internal::TSanRead(&_impl_); - return _impl_.default_double_; -} -inline void FigureDescriptor_DoubleMapWithDefault::_internal_set_default_double(double value) { - ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.default_double_ = value; -} - -// repeated string keys = 2; -inline int FigureDescriptor_DoubleMapWithDefault::_internal_keys_size() const { - return _internal_keys().size(); -} -inline int FigureDescriptor_DoubleMapWithDefault::keys_size() const { - return _internal_keys_size(); -} -inline void FigureDescriptor_DoubleMapWithDefault::clear_keys() { - ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.keys_.Clear(); -} -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; -} -inline const std::string& FigureDescriptor_DoubleMapWithDefault::keys(int index) const - ABSL_ATTRIBUTE_LIFETIME_BOUND { - // @@protoc_insertion_point(field_get:io.deephaven.proto.backplane.script.grpc.FigureDescriptor.DoubleMapWithDefault.keys) - return _internal_keys().Get(index); -} -inline std::string* FigureDescriptor_DoubleMapWithDefault::mutable_keys(int index) - ABSL_ATTRIBUTE_LIFETIME_BOUND { - // @@protoc_insertion_point(field_mutable:io.deephaven.proto.backplane.script.grpc.FigureDescriptor.DoubleMapWithDefault.keys) - return _internal_mutable_keys()->Mutable(index); -} -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) -} -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 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) - return _internal_keys(); -} -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) - ::google::protobuf::internal::TSanWrite(&_impl_); - return _internal_mutable_keys(); -} -inline const ::google::protobuf::RepeatedPtrField& -FigureDescriptor_DoubleMapWithDefault::_internal_keys() const { - ::google::protobuf::internal::TSanRead(&_impl_); - return _impl_.keys_; -} -inline ::google::protobuf::RepeatedPtrField* -FigureDescriptor_DoubleMapWithDefault::_internal_mutable_keys() { - ::google::protobuf::internal::TSanRead(&_impl_); - return &_impl_.keys_; -} - -// repeated double values = 3; -inline int FigureDescriptor_DoubleMapWithDefault::_internal_values_size() const { - return _internal_values().size(); -} -inline int FigureDescriptor_DoubleMapWithDefault::values_size() const { - return _internal_values_size(); -} -inline void FigureDescriptor_DoubleMapWithDefault::clear_values() { - ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.values_.Clear(); -} -inline double FigureDescriptor_DoubleMapWithDefault::values(int index) const { - // @@protoc_insertion_point(field_get:io.deephaven.proto.backplane.script.grpc.FigureDescriptor.DoubleMapWithDefault.values) - return _internal_values().Get(index); -} -inline void FigureDescriptor_DoubleMapWithDefault::set_values(int index, double value) { - _internal_mutable_values()->Set(index, value); - // @@protoc_insertion_point(field_set:io.deephaven.proto.backplane.script.grpc.FigureDescriptor.DoubleMapWithDefault.values) -} -inline void FigureDescriptor_DoubleMapWithDefault::add_values(double value) { - ::google::protobuf::internal::TSanWrite(&_impl_); - _internal_mutable_values()->Add(value); - // @@protoc_insertion_point(field_add:io.deephaven.proto.backplane.script.grpc.FigureDescriptor.DoubleMapWithDefault.values) -} -inline const ::google::protobuf::RepeatedField& FigureDescriptor_DoubleMapWithDefault::values() const - ABSL_ATTRIBUTE_LIFETIME_BOUND { - // @@protoc_insertion_point(field_list:io.deephaven.proto.backplane.script.grpc.FigureDescriptor.DoubleMapWithDefault.values) - return _internal_values(); -} -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) - ::google::protobuf::internal::TSanWrite(&_impl_); - return _internal_mutable_values(); -} -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() { - ::google::protobuf::internal::TSanRead(&_impl_); - return &_impl_.values_; -} - -// ------------------------------------------------------------------- - -// FigureDescriptor_BoolMapWithDefault - -// optional bool default_bool = 1; -inline bool FigureDescriptor_BoolMapWithDefault::has_default_bool() const { - bool value = (_impl_._has_bits_[0] & 0x00000001u) != 0; - return value; -} -inline void FigureDescriptor_BoolMapWithDefault::clear_default_bool() { - ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.default_bool_ = false; - _impl_._has_bits_[0] &= ~0x00000001u; -} -inline bool FigureDescriptor_BoolMapWithDefault::default_bool() const { - // @@protoc_insertion_point(field_get:io.deephaven.proto.backplane.script.grpc.FigureDescriptor.BoolMapWithDefault.default_bool) - return _internal_default_bool(); -} -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 { - ::google::protobuf::internal::TSanRead(&_impl_); - return _impl_.default_bool_; -} -inline void FigureDescriptor_BoolMapWithDefault::_internal_set_default_bool(bool value) { - ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.default_bool_ = value; -} - -// repeated string keys = 2; -inline int FigureDescriptor_BoolMapWithDefault::_internal_keys_size() const { - return _internal_keys().size(); -} -inline int FigureDescriptor_BoolMapWithDefault::keys_size() const { - return _internal_keys_size(); -} -inline void FigureDescriptor_BoolMapWithDefault::clear_keys() { - ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.keys_.Clear(); -} -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; -} -inline const std::string& FigureDescriptor_BoolMapWithDefault::keys(int index) const - ABSL_ATTRIBUTE_LIFETIME_BOUND { - // @@protoc_insertion_point(field_get:io.deephaven.proto.backplane.script.grpc.FigureDescriptor.BoolMapWithDefault.keys) - return _internal_keys().Get(index); -} -inline std::string* FigureDescriptor_BoolMapWithDefault::mutable_keys(int index) - ABSL_ATTRIBUTE_LIFETIME_BOUND { - // @@protoc_insertion_point(field_mutable:io.deephaven.proto.backplane.script.grpc.FigureDescriptor.BoolMapWithDefault.keys) - return _internal_mutable_keys()->Mutable(index); -} -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) -} -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 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) - return _internal_keys(); -} -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) - ::google::protobuf::internal::TSanWrite(&_impl_); - return _internal_mutable_keys(); -} -inline const ::google::protobuf::RepeatedPtrField& -FigureDescriptor_BoolMapWithDefault::_internal_keys() const { - ::google::protobuf::internal::TSanRead(&_impl_); - return _impl_.keys_; -} -inline ::google::protobuf::RepeatedPtrField* -FigureDescriptor_BoolMapWithDefault::_internal_mutable_keys() { - ::google::protobuf::internal::TSanRead(&_impl_); - return &_impl_.keys_; -} - -// repeated bool values = 3; -inline int FigureDescriptor_BoolMapWithDefault::_internal_values_size() const { - return _internal_values().size(); -} -inline int FigureDescriptor_BoolMapWithDefault::values_size() const { - return _internal_values_size(); -} -inline void FigureDescriptor_BoolMapWithDefault::clear_values() { - ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.values_.Clear(); -} -inline bool FigureDescriptor_BoolMapWithDefault::values(int index) const { - // @@protoc_insertion_point(field_get:io.deephaven.proto.backplane.script.grpc.FigureDescriptor.BoolMapWithDefault.values) - return _internal_values().Get(index); -} -inline void FigureDescriptor_BoolMapWithDefault::set_values(int index, bool value) { - _internal_mutable_values()->Set(index, value); - // @@protoc_insertion_point(field_set:io.deephaven.proto.backplane.script.grpc.FigureDescriptor.BoolMapWithDefault.values) -} -inline void FigureDescriptor_BoolMapWithDefault::add_values(bool value) { - ::google::protobuf::internal::TSanWrite(&_impl_); - _internal_mutable_values()->Add(value); - // @@protoc_insertion_point(field_add:io.deephaven.proto.backplane.script.grpc.FigureDescriptor.BoolMapWithDefault.values) -} -inline const ::google::protobuf::RepeatedField& FigureDescriptor_BoolMapWithDefault::values() const - ABSL_ATTRIBUTE_LIFETIME_BOUND { - // @@protoc_insertion_point(field_list:io.deephaven.proto.backplane.script.grpc.FigureDescriptor.BoolMapWithDefault.values) - return _internal_values(); -} -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) - ::google::protobuf::internal::TSanWrite(&_impl_); - return _internal_mutable_values(); -} -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() { - ::google::protobuf::internal::TSanRead(&_impl_); - return &_impl_.values_; -} - -// ------------------------------------------------------------------- - -// FigureDescriptor_AxisDescriptor - -// string id = 1; -inline void FigureDescriptor_AxisDescriptor::clear_id() { - ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.id_.ClearToEmpty(); -} -inline const std::string& FigureDescriptor_AxisDescriptor::id() const - ABSL_ATTRIBUTE_LIFETIME_BOUND { - // @@protoc_insertion_point(field_get:io.deephaven.proto.backplane.script.grpc.FigureDescriptor.AxisDescriptor.id) - return _internal_id(); -} -template -inline PROTOBUF_ALWAYS_INLINE void FigureDescriptor_AxisDescriptor::set_id(Arg_&& arg, - Args_... args) { - ::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) -} -inline std::string* FigureDescriptor_AxisDescriptor::mutable_id() ABSL_ATTRIBUTE_LIFETIME_BOUND { - std::string* _s = _internal_mutable_id(); - // @@protoc_insertion_point(field_mutable:io.deephaven.proto.backplane.script.grpc.FigureDescriptor.AxisDescriptor.id) - return _s; -} -inline const std::string& FigureDescriptor_AxisDescriptor::_internal_id() const { - ::google::protobuf::internal::TSanRead(&_impl_); - return _impl_.id_.Get(); -} -inline void FigureDescriptor_AxisDescriptor::_internal_set_id(const std::string& value) { - ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.id_.Set(value, GetArena()); -} -inline std::string* FigureDescriptor_AxisDescriptor::_internal_mutable_id() { - ::google::protobuf::internal::TSanWrite(&_impl_); - return _impl_.id_.Mutable( GetArena()); -} -inline std::string* FigureDescriptor_AxisDescriptor::release_id() { - ::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) { - ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.id_.SetAllocated(value, GetArena()); - #ifdef PROTOBUF_FORCE_COPY_DEFAULT_STRING - if (_impl_.id_.IsDefault()) { - _impl_.id_.Set("", GetArena()); - } - #endif // PROTOBUF_FORCE_COPY_DEFAULT_STRING - // @@protoc_insertion_point(field_set_allocated:io.deephaven.proto.backplane.script.grpc.FigureDescriptor.AxisDescriptor.id) -} - -// .io.deephaven.proto.backplane.script.grpc.FigureDescriptor.AxisDescriptor.AxisFormatType format_type = 2; -inline void FigureDescriptor_AxisDescriptor::clear_format_type() { - ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.format_type_ = 0; -} -inline ::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_AxisDescriptor_AxisFormatType FigureDescriptor_AxisDescriptor::format_type() const { - // @@protoc_insertion_point(field_get:io.deephaven.proto.backplane.script.grpc.FigureDescriptor.AxisDescriptor.format_type) - return _internal_format_type(); -} -inline void FigureDescriptor_AxisDescriptor::set_format_type(::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_AxisDescriptor_AxisFormatType value) { - _internal_set_format_type(value); - // @@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 { - ::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) { - ::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() { - ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.type_ = 0; -} -inline ::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_AxisDescriptor_AxisType FigureDescriptor_AxisDescriptor::type() const { - // @@protoc_insertion_point(field_get:io.deephaven.proto.backplane.script.grpc.FigureDescriptor.AxisDescriptor.type) - return _internal_type(); -} -inline void FigureDescriptor_AxisDescriptor::set_type(::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_AxisDescriptor_AxisType value) { - _internal_set_type(value); - // @@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 { - ::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) { - ::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() { - ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.position_ = 0; -} -inline ::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_AxisDescriptor_AxisPosition FigureDescriptor_AxisDescriptor::position() const { - // @@protoc_insertion_point(field_get:io.deephaven.proto.backplane.script.grpc.FigureDescriptor.AxisDescriptor.position) - return _internal_position(); -} -inline void FigureDescriptor_AxisDescriptor::set_position(::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_AxisDescriptor_AxisPosition value) { - _internal_set_position(value); - // @@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 { - ::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) { - ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.position_ = value; -} - -// bool log = 5; -inline void FigureDescriptor_AxisDescriptor::clear_log() { - ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.log_ = false; -} -inline bool FigureDescriptor_AxisDescriptor::log() const { - // @@protoc_insertion_point(field_get:io.deephaven.proto.backplane.script.grpc.FigureDescriptor.AxisDescriptor.log) - return _internal_log(); -} -inline void FigureDescriptor_AxisDescriptor::set_log(bool value) { - _internal_set_log(value); - // @@protoc_insertion_point(field_set:io.deephaven.proto.backplane.script.grpc.FigureDescriptor.AxisDescriptor.log) -} -inline bool FigureDescriptor_AxisDescriptor::_internal_log() const { - ::google::protobuf::internal::TSanRead(&_impl_); - return _impl_.log_; -} -inline void FigureDescriptor_AxisDescriptor::_internal_set_log(bool value) { - ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.log_ = value; -} - -// string label = 6; -inline void FigureDescriptor_AxisDescriptor::clear_label() { - ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.label_.ClearToEmpty(); -} -inline const std::string& FigureDescriptor_AxisDescriptor::label() const - ABSL_ATTRIBUTE_LIFETIME_BOUND { - // @@protoc_insertion_point(field_get:io.deephaven.proto.backplane.script.grpc.FigureDescriptor.AxisDescriptor.label) - return _internal_label(); -} -template -inline PROTOBUF_ALWAYS_INLINE void FigureDescriptor_AxisDescriptor::set_label(Arg_&& arg, - Args_... args) { - ::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) -} -inline std::string* FigureDescriptor_AxisDescriptor::mutable_label() ABSL_ATTRIBUTE_LIFETIME_BOUND { - std::string* _s = _internal_mutable_label(); - // @@protoc_insertion_point(field_mutable:io.deephaven.proto.backplane.script.grpc.FigureDescriptor.AxisDescriptor.label) - return _s; -} -inline const std::string& FigureDescriptor_AxisDescriptor::_internal_label() const { - ::google::protobuf::internal::TSanRead(&_impl_); - return _impl_.label_.Get(); -} -inline void FigureDescriptor_AxisDescriptor::_internal_set_label(const std::string& value) { - ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.label_.Set(value, GetArena()); -} -inline std::string* FigureDescriptor_AxisDescriptor::_internal_mutable_label() { - ::google::protobuf::internal::TSanWrite(&_impl_); - return _impl_.label_.Mutable( GetArena()); -} -inline std::string* FigureDescriptor_AxisDescriptor::release_label() { - ::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) { - ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.label_.SetAllocated(value, GetArena()); - #ifdef PROTOBUF_FORCE_COPY_DEFAULT_STRING - if (_impl_.label_.IsDefault()) { - _impl_.label_.Set("", GetArena()); - } - #endif // PROTOBUF_FORCE_COPY_DEFAULT_STRING - // @@protoc_insertion_point(field_set_allocated:io.deephaven.proto.backplane.script.grpc.FigureDescriptor.AxisDescriptor.label) -} - -// string label_font = 7; -inline void FigureDescriptor_AxisDescriptor::clear_label_font() { - ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.label_font_.ClearToEmpty(); -} -inline const std::string& FigureDescriptor_AxisDescriptor::label_font() const - ABSL_ATTRIBUTE_LIFETIME_BOUND { - // @@protoc_insertion_point(field_get:io.deephaven.proto.backplane.script.grpc.FigureDescriptor.AxisDescriptor.label_font) - return _internal_label_font(); -} -template -inline PROTOBUF_ALWAYS_INLINE void FigureDescriptor_AxisDescriptor::set_label_font(Arg_&& arg, - Args_... args) { - ::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) -} -inline std::string* FigureDescriptor_AxisDescriptor::mutable_label_font() ABSL_ATTRIBUTE_LIFETIME_BOUND { - std::string* _s = _internal_mutable_label_font(); - // @@protoc_insertion_point(field_mutable:io.deephaven.proto.backplane.script.grpc.FigureDescriptor.AxisDescriptor.label_font) - return _s; -} -inline const std::string& FigureDescriptor_AxisDescriptor::_internal_label_font() const { - ::google::protobuf::internal::TSanRead(&_impl_); - return _impl_.label_font_.Get(); -} -inline void FigureDescriptor_AxisDescriptor::_internal_set_label_font(const std::string& value) { - ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.label_font_.Set(value, GetArena()); -} -inline std::string* FigureDescriptor_AxisDescriptor::_internal_mutable_label_font() { - ::google::protobuf::internal::TSanWrite(&_impl_); - return _impl_.label_font_.Mutable( GetArena()); -} -inline std::string* FigureDescriptor_AxisDescriptor::release_label_font() { - ::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) { - ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.label_font_.SetAllocated(value, GetArena()); - #ifdef PROTOBUF_FORCE_COPY_DEFAULT_STRING - if (_impl_.label_font_.IsDefault()) { - _impl_.label_font_.Set("", GetArena()); - } - #endif // PROTOBUF_FORCE_COPY_DEFAULT_STRING - // @@protoc_insertion_point(field_set_allocated:io.deephaven.proto.backplane.script.grpc.FigureDescriptor.AxisDescriptor.label_font) -} - -// string ticks_font = 8; -inline void FigureDescriptor_AxisDescriptor::clear_ticks_font() { - ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.ticks_font_.ClearToEmpty(); -} -inline const std::string& FigureDescriptor_AxisDescriptor::ticks_font() const - ABSL_ATTRIBUTE_LIFETIME_BOUND { - // @@protoc_insertion_point(field_get:io.deephaven.proto.backplane.script.grpc.FigureDescriptor.AxisDescriptor.ticks_font) - return _internal_ticks_font(); -} -template -inline PROTOBUF_ALWAYS_INLINE void FigureDescriptor_AxisDescriptor::set_ticks_font(Arg_&& arg, - Args_... args) { - ::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) -} -inline std::string* FigureDescriptor_AxisDescriptor::mutable_ticks_font() ABSL_ATTRIBUTE_LIFETIME_BOUND { - std::string* _s = _internal_mutable_ticks_font(); - // @@protoc_insertion_point(field_mutable:io.deephaven.proto.backplane.script.grpc.FigureDescriptor.AxisDescriptor.ticks_font) - return _s; -} -inline const std::string& FigureDescriptor_AxisDescriptor::_internal_ticks_font() const { - ::google::protobuf::internal::TSanRead(&_impl_); - return _impl_.ticks_font_.Get(); -} -inline void FigureDescriptor_AxisDescriptor::_internal_set_ticks_font(const std::string& value) { - ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.ticks_font_.Set(value, GetArena()); -} -inline std::string* FigureDescriptor_AxisDescriptor::_internal_mutable_ticks_font() { - ::google::protobuf::internal::TSanWrite(&_impl_); - return _impl_.ticks_font_.Mutable( GetArena()); -} -inline std::string* FigureDescriptor_AxisDescriptor::release_ticks_font() { - ::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) { - ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.ticks_font_.SetAllocated(value, GetArena()); - #ifdef PROTOBUF_FORCE_COPY_DEFAULT_STRING - if (_impl_.ticks_font_.IsDefault()) { - _impl_.ticks_font_.Set("", GetArena()); - } - #endif // PROTOBUF_FORCE_COPY_DEFAULT_STRING - // @@protoc_insertion_point(field_set_allocated:io.deephaven.proto.backplane.script.grpc.FigureDescriptor.AxisDescriptor.ticks_font) -} - -// optional string format_pattern = 9; -inline bool FigureDescriptor_AxisDescriptor::has_format_pattern() const { - bool value = (_impl_._has_bits_[0] & 0x00000001u) != 0; - return value; -} -inline void FigureDescriptor_AxisDescriptor::clear_format_pattern() { - ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.format_pattern_.ClearToEmpty(); - _impl_._has_bits_[0] &= ~0x00000001u; -} -inline const std::string& FigureDescriptor_AxisDescriptor::format_pattern() const - ABSL_ATTRIBUTE_LIFETIME_BOUND { - // @@protoc_insertion_point(field_get:io.deephaven.proto.backplane.script.grpc.FigureDescriptor.AxisDescriptor.format_pattern) - return _internal_format_pattern(); -} -template -inline PROTOBUF_ALWAYS_INLINE void FigureDescriptor_AxisDescriptor::set_format_pattern(Arg_&& arg, - Args_... args) { - ::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) -} -inline std::string* FigureDescriptor_AxisDescriptor::mutable_format_pattern() ABSL_ATTRIBUTE_LIFETIME_BOUND { - std::string* _s = _internal_mutable_format_pattern(); - // @@protoc_insertion_point(field_mutable:io.deephaven.proto.backplane.script.grpc.FigureDescriptor.AxisDescriptor.format_pattern) - return _s; -} -inline const std::string& FigureDescriptor_AxisDescriptor::_internal_format_pattern() const { - ::google::protobuf::internal::TSanRead(&_impl_); - return _impl_.format_pattern_.Get(); -} -inline void FigureDescriptor_AxisDescriptor::_internal_set_format_pattern(const std::string& value) { - ::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() { - ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_._has_bits_[0] |= 0x00000001u; - return _impl_.format_pattern_.Mutable( GetArena()); -} -inline std::string* FigureDescriptor_AxisDescriptor::release_format_pattern() { - ::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; - } - _impl_._has_bits_[0] &= ~0x00000001u; - auto* released = _impl_.format_pattern_.Release(); - #ifdef PROTOBUF_FORCE_COPY_DEFAULT_STRING - _impl_.format_pattern_.Set("", GetArena()); - #endif // PROTOBUF_FORCE_COPY_DEFAULT_STRING - return released; -} -inline void FigureDescriptor_AxisDescriptor::set_allocated_format_pattern(std::string* value) { - ::google::protobuf::internal::TSanWrite(&_impl_); - if (value != nullptr) { - _impl_._has_bits_[0] |= 0x00000001u; - } else { - _impl_._has_bits_[0] &= ~0x00000001u; - } - _impl_.format_pattern_.SetAllocated(value, GetArena()); - #ifdef PROTOBUF_FORCE_COPY_DEFAULT_STRING - if (_impl_.format_pattern_.IsDefault()) { - _impl_.format_pattern_.Set("", GetArena()); - } - #endif // PROTOBUF_FORCE_COPY_DEFAULT_STRING - // @@protoc_insertion_point(field_set_allocated:io.deephaven.proto.backplane.script.grpc.FigureDescriptor.AxisDescriptor.format_pattern) -} - -// string color = 10; -inline void FigureDescriptor_AxisDescriptor::clear_color() { - ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.color_.ClearToEmpty(); -} -inline const std::string& FigureDescriptor_AxisDescriptor::color() const - ABSL_ATTRIBUTE_LIFETIME_BOUND { - // @@protoc_insertion_point(field_get:io.deephaven.proto.backplane.script.grpc.FigureDescriptor.AxisDescriptor.color) - return _internal_color(); -} -template -inline PROTOBUF_ALWAYS_INLINE void FigureDescriptor_AxisDescriptor::set_color(Arg_&& arg, - Args_... args) { - ::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) -} -inline std::string* FigureDescriptor_AxisDescriptor::mutable_color() ABSL_ATTRIBUTE_LIFETIME_BOUND { - std::string* _s = _internal_mutable_color(); - // @@protoc_insertion_point(field_mutable:io.deephaven.proto.backplane.script.grpc.FigureDescriptor.AxisDescriptor.color) - return _s; -} -inline const std::string& FigureDescriptor_AxisDescriptor::_internal_color() const { - ::google::protobuf::internal::TSanRead(&_impl_); - return _impl_.color_.Get(); -} -inline void FigureDescriptor_AxisDescriptor::_internal_set_color(const std::string& value) { - ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.color_.Set(value, GetArena()); -} -inline std::string* FigureDescriptor_AxisDescriptor::_internal_mutable_color() { - ::google::protobuf::internal::TSanWrite(&_impl_); - return _impl_.color_.Mutable( GetArena()); -} -inline std::string* FigureDescriptor_AxisDescriptor::release_color() { - ::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) { - ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.color_.SetAllocated(value, GetArena()); - #ifdef PROTOBUF_FORCE_COPY_DEFAULT_STRING - if (_impl_.color_.IsDefault()) { - _impl_.color_.Set("", GetArena()); - } - #endif // PROTOBUF_FORCE_COPY_DEFAULT_STRING - // @@protoc_insertion_point(field_set_allocated:io.deephaven.proto.backplane.script.grpc.FigureDescriptor.AxisDescriptor.color) -} - -// double min_range = 11; -inline void FigureDescriptor_AxisDescriptor::clear_min_range() { - ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.min_range_ = 0; -} -inline double FigureDescriptor_AxisDescriptor::min_range() const { - // @@protoc_insertion_point(field_get:io.deephaven.proto.backplane.script.grpc.FigureDescriptor.AxisDescriptor.min_range) - return _internal_min_range(); -} -inline void FigureDescriptor_AxisDescriptor::set_min_range(double value) { - _internal_set_min_range(value); - // @@protoc_insertion_point(field_set:io.deephaven.proto.backplane.script.grpc.FigureDescriptor.AxisDescriptor.min_range) -} -inline double FigureDescriptor_AxisDescriptor::_internal_min_range() const { - ::google::protobuf::internal::TSanRead(&_impl_); - return _impl_.min_range_; -} -inline void FigureDescriptor_AxisDescriptor::_internal_set_min_range(double value) { - ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.min_range_ = value; -} - -// double max_range = 12; -inline void FigureDescriptor_AxisDescriptor::clear_max_range() { - ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.max_range_ = 0; -} -inline double FigureDescriptor_AxisDescriptor::max_range() const { - // @@protoc_insertion_point(field_get:io.deephaven.proto.backplane.script.grpc.FigureDescriptor.AxisDescriptor.max_range) - return _internal_max_range(); -} -inline void FigureDescriptor_AxisDescriptor::set_max_range(double value) { - _internal_set_max_range(value); - // @@protoc_insertion_point(field_set:io.deephaven.proto.backplane.script.grpc.FigureDescriptor.AxisDescriptor.max_range) -} -inline double FigureDescriptor_AxisDescriptor::_internal_max_range() const { - ::google::protobuf::internal::TSanRead(&_impl_); - return _impl_.max_range_; -} -inline void FigureDescriptor_AxisDescriptor::_internal_set_max_range(double value) { - ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.max_range_ = value; -} - -// bool minor_ticks_visible = 13; -inline void FigureDescriptor_AxisDescriptor::clear_minor_ticks_visible() { - ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.minor_ticks_visible_ = false; -} -inline bool FigureDescriptor_AxisDescriptor::minor_ticks_visible() const { - // @@protoc_insertion_point(field_get:io.deephaven.proto.backplane.script.grpc.FigureDescriptor.AxisDescriptor.minor_ticks_visible) - return _internal_minor_ticks_visible(); -} -inline void FigureDescriptor_AxisDescriptor::set_minor_ticks_visible(bool value) { - _internal_set_minor_ticks_visible(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 { - ::google::protobuf::internal::TSanRead(&_impl_); - return _impl_.minor_ticks_visible_; -} -inline void FigureDescriptor_AxisDescriptor::_internal_set_minor_ticks_visible(bool value) { - ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.minor_ticks_visible_ = value; -} - -// bool major_ticks_visible = 14; -inline void FigureDescriptor_AxisDescriptor::clear_major_ticks_visible() { - ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.major_ticks_visible_ = false; -} -inline bool FigureDescriptor_AxisDescriptor::major_ticks_visible() const { - // @@protoc_insertion_point(field_get:io.deephaven.proto.backplane.script.grpc.FigureDescriptor.AxisDescriptor.major_ticks_visible) - return _internal_major_ticks_visible(); -} -inline void FigureDescriptor_AxisDescriptor::set_major_ticks_visible(bool value) { - _internal_set_major_ticks_visible(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 { - ::google::protobuf::internal::TSanRead(&_impl_); - return _impl_.major_ticks_visible_; -} -inline void FigureDescriptor_AxisDescriptor::_internal_set_major_ticks_visible(bool value) { - ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.major_ticks_visible_ = value; -} - -// int32 minor_tick_count = 15; -inline void FigureDescriptor_AxisDescriptor::clear_minor_tick_count() { - ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.minor_tick_count_ = 0; -} -inline ::int32_t FigureDescriptor_AxisDescriptor::minor_tick_count() const { - // @@protoc_insertion_point(field_get:io.deephaven.proto.backplane.script.grpc.FigureDescriptor.AxisDescriptor.minor_tick_count) - return _internal_minor_tick_count(); -} -inline void FigureDescriptor_AxisDescriptor::set_minor_tick_count(::int32_t value) { - _internal_set_minor_tick_count(value); - // @@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 { - ::google::protobuf::internal::TSanRead(&_impl_); - return _impl_.minor_tick_count_; -} -inline void FigureDescriptor_AxisDescriptor::_internal_set_minor_tick_count(::int32_t value) { - ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.minor_tick_count_ = value; -} - -// optional double gap_between_major_ticks = 16; -inline bool FigureDescriptor_AxisDescriptor::has_gap_between_major_ticks() const { - bool value = (_impl_._has_bits_[0] & 0x00000004u) != 0; - return value; -} -inline void FigureDescriptor_AxisDescriptor::clear_gap_between_major_ticks() { - ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.gap_between_major_ticks_ = 0; - _impl_._has_bits_[0] &= ~0x00000004u; -} -inline double FigureDescriptor_AxisDescriptor::gap_between_major_ticks() const { - // @@protoc_insertion_point(field_get:io.deephaven.proto.backplane.script.grpc.FigureDescriptor.AxisDescriptor.gap_between_major_ticks) - return _internal_gap_between_major_ticks(); -} -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 { - ::google::protobuf::internal::TSanRead(&_impl_); - return _impl_.gap_between_major_ticks_; -} -inline void FigureDescriptor_AxisDescriptor::_internal_set_gap_between_major_ticks(double value) { - ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.gap_between_major_ticks_ = value; -} - -// repeated double major_tick_locations = 17; -inline int FigureDescriptor_AxisDescriptor::_internal_major_tick_locations_size() const { - return _internal_major_tick_locations().size(); -} -inline int FigureDescriptor_AxisDescriptor::major_tick_locations_size() const { - return _internal_major_tick_locations_size(); -} -inline void FigureDescriptor_AxisDescriptor::clear_major_tick_locations() { - ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.major_tick_locations_.Clear(); -} -inline double FigureDescriptor_AxisDescriptor::major_tick_locations(int index) const { - // @@protoc_insertion_point(field_get:io.deephaven.proto.backplane.script.grpc.FigureDescriptor.AxisDescriptor.major_tick_locations) - return _internal_major_tick_locations().Get(index); -} -inline void FigureDescriptor_AxisDescriptor::set_major_tick_locations(int index, double value) { - _internal_mutable_major_tick_locations()->Set(index, value); - // @@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) { - ::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) -} -inline const ::google::protobuf::RepeatedField& FigureDescriptor_AxisDescriptor::major_tick_locations() const - ABSL_ATTRIBUTE_LIFETIME_BOUND { - // @@protoc_insertion_point(field_list:io.deephaven.proto.backplane.script.grpc.FigureDescriptor.AxisDescriptor.major_tick_locations) - return _internal_major_tick_locations(); -} -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) - ::google::protobuf::internal::TSanWrite(&_impl_); - return _internal_mutable_major_tick_locations(); -} -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() { - ::google::protobuf::internal::TSanRead(&_impl_); - return &_impl_.major_tick_locations_; -} - -// double tick_label_angle = 18; -inline void FigureDescriptor_AxisDescriptor::clear_tick_label_angle() { - ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.tick_label_angle_ = 0; -} -inline double FigureDescriptor_AxisDescriptor::tick_label_angle() const { - // @@protoc_insertion_point(field_get:io.deephaven.proto.backplane.script.grpc.FigureDescriptor.AxisDescriptor.tick_label_angle) - return _internal_tick_label_angle(); -} -inline void FigureDescriptor_AxisDescriptor::set_tick_label_angle(double value) { - _internal_set_tick_label_angle(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 { - ::google::protobuf::internal::TSanRead(&_impl_); - return _impl_.tick_label_angle_; -} -inline void FigureDescriptor_AxisDescriptor::_internal_set_tick_label_angle(double value) { - ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.tick_label_angle_ = value; -} - -// bool invert = 19; -inline void FigureDescriptor_AxisDescriptor::clear_invert() { - ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.invert_ = false; -} -inline bool FigureDescriptor_AxisDescriptor::invert() const { - // @@protoc_insertion_point(field_get:io.deephaven.proto.backplane.script.grpc.FigureDescriptor.AxisDescriptor.invert) - return _internal_invert(); -} -inline void FigureDescriptor_AxisDescriptor::set_invert(bool value) { - _internal_set_invert(value); - // @@protoc_insertion_point(field_set:io.deephaven.proto.backplane.script.grpc.FigureDescriptor.AxisDescriptor.invert) -} -inline bool FigureDescriptor_AxisDescriptor::_internal_invert() const { - ::google::protobuf::internal::TSanRead(&_impl_); - return _impl_.invert_; -} -inline void FigureDescriptor_AxisDescriptor::_internal_set_invert(bool value) { - ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.invert_ = value; -} - -// bool is_time_axis = 20; -inline void FigureDescriptor_AxisDescriptor::clear_is_time_axis() { - ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.is_time_axis_ = false; -} -inline bool FigureDescriptor_AxisDescriptor::is_time_axis() const { - // @@protoc_insertion_point(field_get:io.deephaven.proto.backplane.script.grpc.FigureDescriptor.AxisDescriptor.is_time_axis) - return _internal_is_time_axis(); -} -inline void FigureDescriptor_AxisDescriptor::set_is_time_axis(bool value) { - _internal_set_is_time_axis(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 { - ::google::protobuf::internal::TSanRead(&_impl_); - return _impl_.is_time_axis_; -} -inline void FigureDescriptor_AxisDescriptor::_internal_set_is_time_axis(bool value) { - ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.is_time_axis_ = value; -} - -// .io.deephaven.proto.backplane.script.grpc.FigureDescriptor.BusinessCalendarDescriptor business_calendar_descriptor = 21; -inline bool FigureDescriptor_AxisDescriptor::has_business_calendar_descriptor() const { - bool value = (_impl_._has_bits_[0] & 0x00000002u) != 0; - PROTOBUF_ASSUME(!value || _impl_.business_calendar_descriptor_ != nullptr); - return value; -} -inline void FigureDescriptor_AxisDescriptor::clear_business_calendar_descriptor() { - ::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 { - ::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_); -} -inline const ::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_BusinessCalendarDescriptor& FigureDescriptor_AxisDescriptor::business_calendar_descriptor() const ABSL_ATTRIBUTE_LIFETIME_BOUND { - // @@protoc_insertion_point(field_get:io.deephaven.proto.backplane.script.grpc.FigureDescriptor.AxisDescriptor.business_calendar_descriptor) - 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) { - ::google::protobuf::internal::TSanWrite(&_impl_); - if (GetArena() == nullptr) { - delete reinterpret_cast<::google::protobuf::MessageLite*>(_impl_.business_calendar_descriptor_); - } - _impl_.business_calendar_descriptor_ = reinterpret_cast<::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_BusinessCalendarDescriptor*>(value); - if (value != nullptr) { - _impl_._has_bits_[0] |= 0x00000002u; - } else { - _impl_._has_bits_[0] &= ~0x00000002u; - } - // @@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() { - ::google::protobuf::internal::TSanWrite(&_impl_); - - _impl_._has_bits_[0] &= ~0x00000002u; - ::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_BusinessCalendarDescriptor* released = _impl_.business_calendar_descriptor_; - _impl_.business_calendar_descriptor_ = nullptr; -#ifdef PROTOBUF_FORCE_COPY_IN_RELEASE - auto* old = reinterpret_cast<::google::protobuf::MessageLite*>(released); - released = ::google::protobuf::internal::DuplicateIfNonNull(released); - if (GetArena() == nullptr) { - delete old; - } -#else // PROTOBUF_FORCE_COPY_IN_RELEASE - if (GetArena() != nullptr) { - released = ::google::protobuf::internal::DuplicateIfNonNull(released); - } -#endif // !PROTOBUF_FORCE_COPY_IN_RELEASE - return released; -} -inline ::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_BusinessCalendarDescriptor* FigureDescriptor_AxisDescriptor::unsafe_arena_release_business_calendar_descriptor() { - ::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; - ::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_BusinessCalendarDescriptor* temp = _impl_.business_calendar_descriptor_; - _impl_.business_calendar_descriptor_ = nullptr; - return temp; -} -inline ::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_BusinessCalendarDescriptor* FigureDescriptor_AxisDescriptor::_internal_mutable_business_calendar_descriptor() { - ::google::protobuf::internal::TSanWrite(&_impl_); - if (_impl_.business_calendar_descriptor_ == nullptr) { - 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(); - ::google::protobuf::internal::TSanWrite(&_impl_); - if (message_arena == nullptr) { - delete (_impl_.business_calendar_descriptor_); - } - - if (value != nullptr) { - ::google::protobuf::Arena* submessage_arena = (value)->GetArena(); - if (message_arena != submessage_arena) { - value = ::google::protobuf::internal::GetOwnedMessage(message_arena, value, submessage_arena); - } - _impl_._has_bits_[0] |= 0x00000002u; - } else { - _impl_._has_bits_[0] &= ~0x00000002u; - } - - _impl_.business_calendar_descriptor_ = reinterpret_cast<::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_BusinessCalendarDescriptor*>(value); - // @@protoc_insertion_point(field_set_allocated:io.deephaven.proto.backplane.script.grpc.FigureDescriptor.AxisDescriptor.business_calendar_descriptor) -} - -// ------------------------------------------------------------------- - -// FigureDescriptor_BusinessCalendarDescriptor_BusinessPeriod - -// string open = 1; -inline void FigureDescriptor_BusinessCalendarDescriptor_BusinessPeriod::clear_open() { - ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.open_.ClearToEmpty(); -} -inline const std::string& FigureDescriptor_BusinessCalendarDescriptor_BusinessPeriod::open() const - ABSL_ATTRIBUTE_LIFETIME_BOUND { - // @@protoc_insertion_point(field_get:io.deephaven.proto.backplane.script.grpc.FigureDescriptor.BusinessCalendarDescriptor.BusinessPeriod.open) - return _internal_open(); -} -template -inline PROTOBUF_ALWAYS_INLINE void FigureDescriptor_BusinessCalendarDescriptor_BusinessPeriod::set_open(Arg_&& arg, - Args_... args) { - ::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) -} -inline std::string* FigureDescriptor_BusinessCalendarDescriptor_BusinessPeriod::mutable_open() ABSL_ATTRIBUTE_LIFETIME_BOUND { - std::string* _s = _internal_mutable_open(); - // @@protoc_insertion_point(field_mutable:io.deephaven.proto.backplane.script.grpc.FigureDescriptor.BusinessCalendarDescriptor.BusinessPeriod.open) - return _s; -} -inline const std::string& FigureDescriptor_BusinessCalendarDescriptor_BusinessPeriod::_internal_open() const { - ::google::protobuf::internal::TSanRead(&_impl_); - return _impl_.open_.Get(); -} -inline void FigureDescriptor_BusinessCalendarDescriptor_BusinessPeriod::_internal_set_open(const std::string& value) { - ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.open_.Set(value, GetArena()); -} -inline std::string* FigureDescriptor_BusinessCalendarDescriptor_BusinessPeriod::_internal_mutable_open() { - ::google::protobuf::internal::TSanWrite(&_impl_); - return _impl_.open_.Mutable( GetArena()); -} -inline std::string* FigureDescriptor_BusinessCalendarDescriptor_BusinessPeriod::release_open() { - ::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) { - ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.open_.SetAllocated(value, GetArena()); - #ifdef PROTOBUF_FORCE_COPY_DEFAULT_STRING - if (_impl_.open_.IsDefault()) { - _impl_.open_.Set("", GetArena()); - } - #endif // PROTOBUF_FORCE_COPY_DEFAULT_STRING - // @@protoc_insertion_point(field_set_allocated:io.deephaven.proto.backplane.script.grpc.FigureDescriptor.BusinessCalendarDescriptor.BusinessPeriod.open) -} - -// string close = 2; -inline void FigureDescriptor_BusinessCalendarDescriptor_BusinessPeriod::clear_close() { - ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.close_.ClearToEmpty(); -} -inline const std::string& FigureDescriptor_BusinessCalendarDescriptor_BusinessPeriod::close() const - ABSL_ATTRIBUTE_LIFETIME_BOUND { - // @@protoc_insertion_point(field_get:io.deephaven.proto.backplane.script.grpc.FigureDescriptor.BusinessCalendarDescriptor.BusinessPeriod.close) - return _internal_close(); -} -template -inline PROTOBUF_ALWAYS_INLINE void FigureDescriptor_BusinessCalendarDescriptor_BusinessPeriod::set_close(Arg_&& arg, - Args_... args) { - ::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) -} -inline std::string* FigureDescriptor_BusinessCalendarDescriptor_BusinessPeriod::mutable_close() ABSL_ATTRIBUTE_LIFETIME_BOUND { - std::string* _s = _internal_mutable_close(); - // @@protoc_insertion_point(field_mutable:io.deephaven.proto.backplane.script.grpc.FigureDescriptor.BusinessCalendarDescriptor.BusinessPeriod.close) - return _s; -} -inline const std::string& FigureDescriptor_BusinessCalendarDescriptor_BusinessPeriod::_internal_close() const { - ::google::protobuf::internal::TSanRead(&_impl_); - return _impl_.close_.Get(); -} -inline void FigureDescriptor_BusinessCalendarDescriptor_BusinessPeriod::_internal_set_close(const std::string& value) { - ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.close_.Set(value, GetArena()); -} -inline std::string* FigureDescriptor_BusinessCalendarDescriptor_BusinessPeriod::_internal_mutable_close() { - ::google::protobuf::internal::TSanWrite(&_impl_); - return _impl_.close_.Mutable( GetArena()); -} -inline std::string* FigureDescriptor_BusinessCalendarDescriptor_BusinessPeriod::release_close() { - ::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) { - ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.close_.SetAllocated(value, GetArena()); - #ifdef PROTOBUF_FORCE_COPY_DEFAULT_STRING - if (_impl_.close_.IsDefault()) { - _impl_.close_.Set("", GetArena()); - } - #endif // PROTOBUF_FORCE_COPY_DEFAULT_STRING - // @@protoc_insertion_point(field_set_allocated:io.deephaven.proto.backplane.script.grpc.FigureDescriptor.BusinessCalendarDescriptor.BusinessPeriod.close) -} - -// ------------------------------------------------------------------- - -// FigureDescriptor_BusinessCalendarDescriptor_Holiday - -// .io.deephaven.proto.backplane.script.grpc.FigureDescriptor.BusinessCalendarDescriptor.LocalDate date = 1; -inline bool FigureDescriptor_BusinessCalendarDescriptor_Holiday::has_date() const { - bool value = (_impl_._has_bits_[0] & 0x00000001u) != 0; - PROTOBUF_ASSUME(!value || _impl_.date_ != nullptr); - return value; -} -inline void FigureDescriptor_BusinessCalendarDescriptor_Holiday::clear_date() { - ::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 { - ::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_); -} -inline const ::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_BusinessCalendarDescriptor_LocalDate& FigureDescriptor_BusinessCalendarDescriptor_Holiday::date() const ABSL_ATTRIBUTE_LIFETIME_BOUND { - // @@protoc_insertion_point(field_get:io.deephaven.proto.backplane.script.grpc.FigureDescriptor.BusinessCalendarDescriptor.Holiday.date) - return _internal_date(); -} -inline void FigureDescriptor_BusinessCalendarDescriptor_Holiday::unsafe_arena_set_allocated_date(::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_BusinessCalendarDescriptor_LocalDate* value) { - ::google::protobuf::internal::TSanWrite(&_impl_); - if (GetArena() == nullptr) { - delete reinterpret_cast<::google::protobuf::MessageLite*>(_impl_.date_); - } - _impl_.date_ = reinterpret_cast<::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_BusinessCalendarDescriptor_LocalDate*>(value); - if (value != nullptr) { - _impl_._has_bits_[0] |= 0x00000001u; - } else { - _impl_._has_bits_[0] &= ~0x00000001u; - } - // @@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() { - ::google::protobuf::internal::TSanWrite(&_impl_); - - _impl_._has_bits_[0] &= ~0x00000001u; - ::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_BusinessCalendarDescriptor_LocalDate* released = _impl_.date_; - _impl_.date_ = nullptr; -#ifdef PROTOBUF_FORCE_COPY_IN_RELEASE - auto* old = reinterpret_cast<::google::protobuf::MessageLite*>(released); - released = ::google::protobuf::internal::DuplicateIfNonNull(released); - if (GetArena() == nullptr) { - delete old; - } -#else // PROTOBUF_FORCE_COPY_IN_RELEASE - if (GetArena() != nullptr) { - released = ::google::protobuf::internal::DuplicateIfNonNull(released); - } -#endif // !PROTOBUF_FORCE_COPY_IN_RELEASE - return released; -} -inline ::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_BusinessCalendarDescriptor_LocalDate* FigureDescriptor_BusinessCalendarDescriptor_Holiday::unsafe_arena_release_date() { - ::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; - ::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_BusinessCalendarDescriptor_LocalDate* temp = _impl_.date_; - _impl_.date_ = nullptr; - return temp; -} -inline ::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_BusinessCalendarDescriptor_LocalDate* FigureDescriptor_BusinessCalendarDescriptor_Holiday::_internal_mutable_date() { - ::google::protobuf::internal::TSanWrite(&_impl_); - if (_impl_.date_ == nullptr) { - 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(); - ::google::protobuf::internal::TSanWrite(&_impl_); - if (message_arena == nullptr) { - delete (_impl_.date_); - } - - if (value != nullptr) { - ::google::protobuf::Arena* submessage_arena = (value)->GetArena(); - if (message_arena != submessage_arena) { - value = ::google::protobuf::internal::GetOwnedMessage(message_arena, value, submessage_arena); - } - _impl_._has_bits_[0] |= 0x00000001u; - } else { - _impl_._has_bits_[0] &= ~0x00000001u; - } - - _impl_.date_ = reinterpret_cast<::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_BusinessCalendarDescriptor_LocalDate*>(value); - // @@protoc_insertion_point(field_set_allocated:io.deephaven.proto.backplane.script.grpc.FigureDescriptor.BusinessCalendarDescriptor.Holiday.date) -} - -// repeated .io.deephaven.proto.backplane.script.grpc.FigureDescriptor.BusinessCalendarDescriptor.BusinessPeriod business_periods = 2; -inline int FigureDescriptor_BusinessCalendarDescriptor_Holiday::_internal_business_periods_size() const { - return _internal_business_periods().size(); -} -inline int FigureDescriptor_BusinessCalendarDescriptor_Holiday::business_periods_size() const { - return _internal_business_periods_size(); -} -inline void FigureDescriptor_BusinessCalendarDescriptor_Holiday::clear_business_periods() { - ::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) - ABSL_ATTRIBUTE_LIFETIME_BOUND { - // @@protoc_insertion_point(field_mutable:io.deephaven.proto.backplane.script.grpc.FigureDescriptor.BusinessCalendarDescriptor.Holiday.business_periods) - return _internal_mutable_business_periods()->Mutable(index); -} -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) - ::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 - ABSL_ATTRIBUTE_LIFETIME_BOUND { - // @@protoc_insertion_point(field_get:io.deephaven.proto.backplane.script.grpc.FigureDescriptor.BusinessCalendarDescriptor.Holiday.business_periods) - 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 { - ::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; -} -inline const ::google::protobuf::RepeatedPtrField<::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_BusinessCalendarDescriptor_BusinessPeriod>& FigureDescriptor_BusinessCalendarDescriptor_Holiday::business_periods() const - ABSL_ATTRIBUTE_LIFETIME_BOUND { - // @@protoc_insertion_point(field_list:io.deephaven.proto.backplane.script.grpc.FigureDescriptor.BusinessCalendarDescriptor.Holiday.business_periods) - return _internal_business_periods(); -} -inline const ::google::protobuf::RepeatedPtrField<::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_BusinessCalendarDescriptor_BusinessPeriod>& -FigureDescriptor_BusinessCalendarDescriptor_Holiday::_internal_business_periods() const { - ::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() { - ::google::protobuf::internal::TSanRead(&_impl_); - return &_impl_.business_periods_; -} - -// ------------------------------------------------------------------- - -// FigureDescriptor_BusinessCalendarDescriptor_LocalDate - -// int32 year = 1; -inline void FigureDescriptor_BusinessCalendarDescriptor_LocalDate::clear_year() { - ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.year_ = 0; -} -inline ::int32_t FigureDescriptor_BusinessCalendarDescriptor_LocalDate::year() const { - // @@protoc_insertion_point(field_get:io.deephaven.proto.backplane.script.grpc.FigureDescriptor.BusinessCalendarDescriptor.LocalDate.year) - return _internal_year(); -} -inline void FigureDescriptor_BusinessCalendarDescriptor_LocalDate::set_year(::int32_t value) { - _internal_set_year(value); - // @@protoc_insertion_point(field_set:io.deephaven.proto.backplane.script.grpc.FigureDescriptor.BusinessCalendarDescriptor.LocalDate.year) -} -inline ::int32_t FigureDescriptor_BusinessCalendarDescriptor_LocalDate::_internal_year() const { - ::google::protobuf::internal::TSanRead(&_impl_); - return _impl_.year_; -} -inline void FigureDescriptor_BusinessCalendarDescriptor_LocalDate::_internal_set_year(::int32_t value) { - ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.year_ = value; -} - -// int32 month = 2; -inline void FigureDescriptor_BusinessCalendarDescriptor_LocalDate::clear_month() { - ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.month_ = 0; -} -inline ::int32_t FigureDescriptor_BusinessCalendarDescriptor_LocalDate::month() const { - // @@protoc_insertion_point(field_get:io.deephaven.proto.backplane.script.grpc.FigureDescriptor.BusinessCalendarDescriptor.LocalDate.month) - return _internal_month(); -} -inline void FigureDescriptor_BusinessCalendarDescriptor_LocalDate::set_month(::int32_t value) { - _internal_set_month(value); - // @@protoc_insertion_point(field_set:io.deephaven.proto.backplane.script.grpc.FigureDescriptor.BusinessCalendarDescriptor.LocalDate.month) -} -inline ::int32_t FigureDescriptor_BusinessCalendarDescriptor_LocalDate::_internal_month() const { - ::google::protobuf::internal::TSanRead(&_impl_); - return _impl_.month_; -} -inline void FigureDescriptor_BusinessCalendarDescriptor_LocalDate::_internal_set_month(::int32_t value) { - ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.month_ = value; -} - -// int32 day = 3; -inline void FigureDescriptor_BusinessCalendarDescriptor_LocalDate::clear_day() { - ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.day_ = 0; -} -inline ::int32_t FigureDescriptor_BusinessCalendarDescriptor_LocalDate::day() const { - // @@protoc_insertion_point(field_get:io.deephaven.proto.backplane.script.grpc.FigureDescriptor.BusinessCalendarDescriptor.LocalDate.day) - return _internal_day(); -} -inline void FigureDescriptor_BusinessCalendarDescriptor_LocalDate::set_day(::int32_t value) { - _internal_set_day(value); - // @@protoc_insertion_point(field_set:io.deephaven.proto.backplane.script.grpc.FigureDescriptor.BusinessCalendarDescriptor.LocalDate.day) -} -inline ::int32_t FigureDescriptor_BusinessCalendarDescriptor_LocalDate::_internal_day() const { - ::google::protobuf::internal::TSanRead(&_impl_); - return _impl_.day_; -} -inline void FigureDescriptor_BusinessCalendarDescriptor_LocalDate::_internal_set_day(::int32_t value) { - ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.day_ = value; -} - -// ------------------------------------------------------------------- - -// FigureDescriptor_BusinessCalendarDescriptor - -// string name = 1; -inline void FigureDescriptor_BusinessCalendarDescriptor::clear_name() { - ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.name_.ClearToEmpty(); -} -inline const std::string& FigureDescriptor_BusinessCalendarDescriptor::name() const - ABSL_ATTRIBUTE_LIFETIME_BOUND { - // @@protoc_insertion_point(field_get:io.deephaven.proto.backplane.script.grpc.FigureDescriptor.BusinessCalendarDescriptor.name) - return _internal_name(); -} -template -inline PROTOBUF_ALWAYS_INLINE void FigureDescriptor_BusinessCalendarDescriptor::set_name(Arg_&& arg, - Args_... args) { - ::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) -} -inline std::string* FigureDescriptor_BusinessCalendarDescriptor::mutable_name() ABSL_ATTRIBUTE_LIFETIME_BOUND { - std::string* _s = _internal_mutable_name(); - // @@protoc_insertion_point(field_mutable:io.deephaven.proto.backplane.script.grpc.FigureDescriptor.BusinessCalendarDescriptor.name) - return _s; -} -inline const std::string& FigureDescriptor_BusinessCalendarDescriptor::_internal_name() const { - ::google::protobuf::internal::TSanRead(&_impl_); - return _impl_.name_.Get(); -} -inline void FigureDescriptor_BusinessCalendarDescriptor::_internal_set_name(const std::string& value) { - ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.name_.Set(value, GetArena()); -} -inline std::string* FigureDescriptor_BusinessCalendarDescriptor::_internal_mutable_name() { - ::google::protobuf::internal::TSanWrite(&_impl_); - return _impl_.name_.Mutable( GetArena()); -} -inline std::string* FigureDescriptor_BusinessCalendarDescriptor::release_name() { - ::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) { - ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.name_.SetAllocated(value, GetArena()); - #ifdef PROTOBUF_FORCE_COPY_DEFAULT_STRING - if (_impl_.name_.IsDefault()) { - _impl_.name_.Set("", GetArena()); - } - #endif // PROTOBUF_FORCE_COPY_DEFAULT_STRING - // @@protoc_insertion_point(field_set_allocated:io.deephaven.proto.backplane.script.grpc.FigureDescriptor.BusinessCalendarDescriptor.name) -} - -// string time_zone = 2; -inline void FigureDescriptor_BusinessCalendarDescriptor::clear_time_zone() { - ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.time_zone_.ClearToEmpty(); -} -inline const std::string& FigureDescriptor_BusinessCalendarDescriptor::time_zone() const - ABSL_ATTRIBUTE_LIFETIME_BOUND { - // @@protoc_insertion_point(field_get:io.deephaven.proto.backplane.script.grpc.FigureDescriptor.BusinessCalendarDescriptor.time_zone) - return _internal_time_zone(); -} -template -inline PROTOBUF_ALWAYS_INLINE void FigureDescriptor_BusinessCalendarDescriptor::set_time_zone(Arg_&& arg, - Args_... args) { - ::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) -} -inline std::string* FigureDescriptor_BusinessCalendarDescriptor::mutable_time_zone() ABSL_ATTRIBUTE_LIFETIME_BOUND { - std::string* _s = _internal_mutable_time_zone(); - // @@protoc_insertion_point(field_mutable:io.deephaven.proto.backplane.script.grpc.FigureDescriptor.BusinessCalendarDescriptor.time_zone) - return _s; -} -inline const std::string& FigureDescriptor_BusinessCalendarDescriptor::_internal_time_zone() const { - ::google::protobuf::internal::TSanRead(&_impl_); - return _impl_.time_zone_.Get(); -} -inline void FigureDescriptor_BusinessCalendarDescriptor::_internal_set_time_zone(const std::string& value) { - ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.time_zone_.Set(value, GetArena()); -} -inline std::string* FigureDescriptor_BusinessCalendarDescriptor::_internal_mutable_time_zone() { - ::google::protobuf::internal::TSanWrite(&_impl_); - return _impl_.time_zone_.Mutable( GetArena()); -} -inline std::string* FigureDescriptor_BusinessCalendarDescriptor::release_time_zone() { - ::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) { - ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.time_zone_.SetAllocated(value, GetArena()); - #ifdef PROTOBUF_FORCE_COPY_DEFAULT_STRING - if (_impl_.time_zone_.IsDefault()) { - _impl_.time_zone_.Set("", GetArena()); - } - #endif // PROTOBUF_FORCE_COPY_DEFAULT_STRING - // @@protoc_insertion_point(field_set_allocated:io.deephaven.proto.backplane.script.grpc.FigureDescriptor.BusinessCalendarDescriptor.time_zone) -} - -// repeated .io.deephaven.proto.backplane.script.grpc.FigureDescriptor.BusinessCalendarDescriptor.DayOfWeek business_days = 3; -inline int FigureDescriptor_BusinessCalendarDescriptor::_internal_business_days_size() const { - return _internal_business_days().size(); -} -inline int FigureDescriptor_BusinessCalendarDescriptor::business_days_size() const { - return _internal_business_days_size(); -} -inline void FigureDescriptor_BusinessCalendarDescriptor::clear_business_days() { - ::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 { - // @@protoc_insertion_point(field_get:io.deephaven.proto.backplane.script.grpc.FigureDescriptor.BusinessCalendarDescriptor.business_days) - return static_cast<::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_BusinessCalendarDescriptor_DayOfWeek>(_internal_business_days().Get(index)); -} -inline void FigureDescriptor_BusinessCalendarDescriptor::set_business_days(int index, ::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_BusinessCalendarDescriptor_DayOfWeek value) { - _internal_mutable_business_days()->Set(index, value); - // @@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) { - ::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) -} -inline const ::google::protobuf::RepeatedField& FigureDescriptor_BusinessCalendarDescriptor::business_days() const - ABSL_ATTRIBUTE_LIFETIME_BOUND { - // @@protoc_insertion_point(field_list:io.deephaven.proto.backplane.script.grpc.FigureDescriptor.BusinessCalendarDescriptor.business_days) - return _internal_business_days(); -} -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) - ::google::protobuf::internal::TSanWrite(&_impl_); - return _internal_mutable_business_days(); -} -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() { - ::google::protobuf::internal::TSanRead(&_impl_); - return &_impl_.business_days_; -} - -// repeated .io.deephaven.proto.backplane.script.grpc.FigureDescriptor.BusinessCalendarDescriptor.BusinessPeriod business_periods = 4; -inline int FigureDescriptor_BusinessCalendarDescriptor::_internal_business_periods_size() const { - return _internal_business_periods().size(); -} -inline int FigureDescriptor_BusinessCalendarDescriptor::business_periods_size() const { - return _internal_business_periods_size(); -} -inline void FigureDescriptor_BusinessCalendarDescriptor::clear_business_periods() { - ::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) - ABSL_ATTRIBUTE_LIFETIME_BOUND { - // @@protoc_insertion_point(field_mutable:io.deephaven.proto.backplane.script.grpc.FigureDescriptor.BusinessCalendarDescriptor.business_periods) - return _internal_mutable_business_periods()->Mutable(index); -} -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) - ::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 - ABSL_ATTRIBUTE_LIFETIME_BOUND { - // @@protoc_insertion_point(field_get:io.deephaven.proto.backplane.script.grpc.FigureDescriptor.BusinessCalendarDescriptor.business_periods) - 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 { - ::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; -} -inline const ::google::protobuf::RepeatedPtrField<::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_BusinessCalendarDescriptor_BusinessPeriod>& FigureDescriptor_BusinessCalendarDescriptor::business_periods() const - ABSL_ATTRIBUTE_LIFETIME_BOUND { - // @@protoc_insertion_point(field_list:io.deephaven.proto.backplane.script.grpc.FigureDescriptor.BusinessCalendarDescriptor.business_periods) - return _internal_business_periods(); -} -inline const ::google::protobuf::RepeatedPtrField<::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_BusinessCalendarDescriptor_BusinessPeriod>& -FigureDescriptor_BusinessCalendarDescriptor::_internal_business_periods() const { - ::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() { - ::google::protobuf::internal::TSanRead(&_impl_); - return &_impl_.business_periods_; -} - -// repeated .io.deephaven.proto.backplane.script.grpc.FigureDescriptor.BusinessCalendarDescriptor.Holiday holidays = 5; -inline int FigureDescriptor_BusinessCalendarDescriptor::_internal_holidays_size() const { - return _internal_holidays().size(); -} -inline int FigureDescriptor_BusinessCalendarDescriptor::holidays_size() const { - return _internal_holidays_size(); -} -inline void FigureDescriptor_BusinessCalendarDescriptor::clear_holidays() { - ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.holidays_.Clear(); -} -inline ::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_BusinessCalendarDescriptor_Holiday* FigureDescriptor_BusinessCalendarDescriptor::mutable_holidays(int index) - ABSL_ATTRIBUTE_LIFETIME_BOUND { - // @@protoc_insertion_point(field_mutable:io.deephaven.proto.backplane.script.grpc.FigureDescriptor.BusinessCalendarDescriptor.holidays) - return _internal_mutable_holidays()->Mutable(index); -} -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) - ::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 - ABSL_ATTRIBUTE_LIFETIME_BOUND { - // @@protoc_insertion_point(field_get:io.deephaven.proto.backplane.script.grpc.FigureDescriptor.BusinessCalendarDescriptor.holidays) - return _internal_holidays().Get(index); -} -inline ::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_BusinessCalendarDescriptor_Holiday* FigureDescriptor_BusinessCalendarDescriptor::add_holidays() ABSL_ATTRIBUTE_LIFETIME_BOUND { - ::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; -} -inline const ::google::protobuf::RepeatedPtrField<::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_BusinessCalendarDescriptor_Holiday>& FigureDescriptor_BusinessCalendarDescriptor::holidays() const - ABSL_ATTRIBUTE_LIFETIME_BOUND { - // @@protoc_insertion_point(field_list:io.deephaven.proto.backplane.script.grpc.FigureDescriptor.BusinessCalendarDescriptor.holidays) - return _internal_holidays(); -} -inline const ::google::protobuf::RepeatedPtrField<::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_BusinessCalendarDescriptor_Holiday>& -FigureDescriptor_BusinessCalendarDescriptor::_internal_holidays() const { - ::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() { - ::google::protobuf::internal::TSanRead(&_impl_); - return &_impl_.holidays_; -} - -// ------------------------------------------------------------------- - -// FigureDescriptor_MultiSeriesSourceDescriptor - -// string axis_id = 1; -inline void FigureDescriptor_MultiSeriesSourceDescriptor::clear_axis_id() { - ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.axis_id_.ClearToEmpty(); -} -inline const std::string& FigureDescriptor_MultiSeriesSourceDescriptor::axis_id() const - ABSL_ATTRIBUTE_LIFETIME_BOUND { - // @@protoc_insertion_point(field_get:io.deephaven.proto.backplane.script.grpc.FigureDescriptor.MultiSeriesSourceDescriptor.axis_id) - return _internal_axis_id(); -} -template -inline PROTOBUF_ALWAYS_INLINE void FigureDescriptor_MultiSeriesSourceDescriptor::set_axis_id(Arg_&& arg, - Args_... args) { - ::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) -} -inline std::string* FigureDescriptor_MultiSeriesSourceDescriptor::mutable_axis_id() ABSL_ATTRIBUTE_LIFETIME_BOUND { - std::string* _s = _internal_mutable_axis_id(); - // @@protoc_insertion_point(field_mutable:io.deephaven.proto.backplane.script.grpc.FigureDescriptor.MultiSeriesSourceDescriptor.axis_id) - return _s; -} -inline const std::string& FigureDescriptor_MultiSeriesSourceDescriptor::_internal_axis_id() const { - ::google::protobuf::internal::TSanRead(&_impl_); - return _impl_.axis_id_.Get(); -} -inline void FigureDescriptor_MultiSeriesSourceDescriptor::_internal_set_axis_id(const std::string& value) { - ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.axis_id_.Set(value, GetArena()); -} -inline std::string* FigureDescriptor_MultiSeriesSourceDescriptor::_internal_mutable_axis_id() { - ::google::protobuf::internal::TSanWrite(&_impl_); - return _impl_.axis_id_.Mutable( GetArena()); -} -inline std::string* FigureDescriptor_MultiSeriesSourceDescriptor::release_axis_id() { - ::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) { - ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.axis_id_.SetAllocated(value, GetArena()); - #ifdef PROTOBUF_FORCE_COPY_DEFAULT_STRING - if (_impl_.axis_id_.IsDefault()) { - _impl_.axis_id_.Set("", GetArena()); - } - #endif // PROTOBUF_FORCE_COPY_DEFAULT_STRING - // @@protoc_insertion_point(field_set_allocated:io.deephaven.proto.backplane.script.grpc.FigureDescriptor.MultiSeriesSourceDescriptor.axis_id) -} - -// .io.deephaven.proto.backplane.script.grpc.FigureDescriptor.SourceType type = 2; -inline void FigureDescriptor_MultiSeriesSourceDescriptor::clear_type() { - ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.type_ = 0; -} -inline ::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_SourceType FigureDescriptor_MultiSeriesSourceDescriptor::type() const { - // @@protoc_insertion_point(field_get:io.deephaven.proto.backplane.script.grpc.FigureDescriptor.MultiSeriesSourceDescriptor.type) - return _internal_type(); -} -inline void FigureDescriptor_MultiSeriesSourceDescriptor::set_type(::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_SourceType value) { - _internal_set_type(value); - // @@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 { - ::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) { - ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.type_ = value; -} - -// int32 partitioned_table_id = 3; -inline void FigureDescriptor_MultiSeriesSourceDescriptor::clear_partitioned_table_id() { - ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.partitioned_table_id_ = 0; -} -inline ::int32_t FigureDescriptor_MultiSeriesSourceDescriptor::partitioned_table_id() const { - // @@protoc_insertion_point(field_get:io.deephaven.proto.backplane.script.grpc.FigureDescriptor.MultiSeriesSourceDescriptor.partitioned_table_id) - return _internal_partitioned_table_id(); -} -inline void FigureDescriptor_MultiSeriesSourceDescriptor::set_partitioned_table_id(::int32_t value) { - _internal_set_partitioned_table_id(value); - // @@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 { - ::google::protobuf::internal::TSanRead(&_impl_); - return _impl_.partitioned_table_id_; -} -inline void FigureDescriptor_MultiSeriesSourceDescriptor::_internal_set_partitioned_table_id(::int32_t value) { - ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.partitioned_table_id_ = value; -} - -// string column_name = 4; -inline void FigureDescriptor_MultiSeriesSourceDescriptor::clear_column_name() { - ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.column_name_.ClearToEmpty(); -} -inline const std::string& FigureDescriptor_MultiSeriesSourceDescriptor::column_name() const - ABSL_ATTRIBUTE_LIFETIME_BOUND { - // @@protoc_insertion_point(field_get:io.deephaven.proto.backplane.script.grpc.FigureDescriptor.MultiSeriesSourceDescriptor.column_name) - return _internal_column_name(); -} -template -inline PROTOBUF_ALWAYS_INLINE void FigureDescriptor_MultiSeriesSourceDescriptor::set_column_name(Arg_&& arg, - Args_... args) { - ::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) -} -inline std::string* FigureDescriptor_MultiSeriesSourceDescriptor::mutable_column_name() ABSL_ATTRIBUTE_LIFETIME_BOUND { - std::string* _s = _internal_mutable_column_name(); - // @@protoc_insertion_point(field_mutable:io.deephaven.proto.backplane.script.grpc.FigureDescriptor.MultiSeriesSourceDescriptor.column_name) - return _s; -} -inline const std::string& FigureDescriptor_MultiSeriesSourceDescriptor::_internal_column_name() const { - ::google::protobuf::internal::TSanRead(&_impl_); - return _impl_.column_name_.Get(); -} -inline void FigureDescriptor_MultiSeriesSourceDescriptor::_internal_set_column_name(const std::string& value) { - ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.column_name_.Set(value, GetArena()); -} -inline std::string* FigureDescriptor_MultiSeriesSourceDescriptor::_internal_mutable_column_name() { - ::google::protobuf::internal::TSanWrite(&_impl_); - return _impl_.column_name_.Mutable( GetArena()); -} -inline std::string* FigureDescriptor_MultiSeriesSourceDescriptor::release_column_name() { - ::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) { - ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.column_name_.SetAllocated(value, GetArena()); - #ifdef PROTOBUF_FORCE_COPY_DEFAULT_STRING - if (_impl_.column_name_.IsDefault()) { - _impl_.column_name_.Set("", GetArena()); - } - #endif // PROTOBUF_FORCE_COPY_DEFAULT_STRING - // @@protoc_insertion_point(field_set_allocated:io.deephaven.proto.backplane.script.grpc.FigureDescriptor.MultiSeriesSourceDescriptor.column_name) -} - -// ------------------------------------------------------------------- - -// FigureDescriptor_SourceDescriptor - -// string axis_id = 1; -inline void FigureDescriptor_SourceDescriptor::clear_axis_id() { - ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.axis_id_.ClearToEmpty(); -} -inline const std::string& FigureDescriptor_SourceDescriptor::axis_id() const - ABSL_ATTRIBUTE_LIFETIME_BOUND { - // @@protoc_insertion_point(field_get:io.deephaven.proto.backplane.script.grpc.FigureDescriptor.SourceDescriptor.axis_id) - return _internal_axis_id(); -} -template -inline PROTOBUF_ALWAYS_INLINE void FigureDescriptor_SourceDescriptor::set_axis_id(Arg_&& arg, - Args_... args) { - ::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) -} -inline std::string* FigureDescriptor_SourceDescriptor::mutable_axis_id() ABSL_ATTRIBUTE_LIFETIME_BOUND { - std::string* _s = _internal_mutable_axis_id(); - // @@protoc_insertion_point(field_mutable:io.deephaven.proto.backplane.script.grpc.FigureDescriptor.SourceDescriptor.axis_id) - return _s; -} -inline const std::string& FigureDescriptor_SourceDescriptor::_internal_axis_id() const { - ::google::protobuf::internal::TSanRead(&_impl_); - return _impl_.axis_id_.Get(); -} -inline void FigureDescriptor_SourceDescriptor::_internal_set_axis_id(const std::string& value) { - ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.axis_id_.Set(value, GetArena()); -} -inline std::string* FigureDescriptor_SourceDescriptor::_internal_mutable_axis_id() { - ::google::protobuf::internal::TSanWrite(&_impl_); - return _impl_.axis_id_.Mutable( GetArena()); -} -inline std::string* FigureDescriptor_SourceDescriptor::release_axis_id() { - ::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) { - ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.axis_id_.SetAllocated(value, GetArena()); - #ifdef PROTOBUF_FORCE_COPY_DEFAULT_STRING - if (_impl_.axis_id_.IsDefault()) { - _impl_.axis_id_.Set("", GetArena()); - } - #endif // PROTOBUF_FORCE_COPY_DEFAULT_STRING - // @@protoc_insertion_point(field_set_allocated:io.deephaven.proto.backplane.script.grpc.FigureDescriptor.SourceDescriptor.axis_id) -} - -// .io.deephaven.proto.backplane.script.grpc.FigureDescriptor.SourceType type = 2; -inline void FigureDescriptor_SourceDescriptor::clear_type() { - ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.type_ = 0; -} -inline ::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_SourceType FigureDescriptor_SourceDescriptor::type() const { - // @@protoc_insertion_point(field_get:io.deephaven.proto.backplane.script.grpc.FigureDescriptor.SourceDescriptor.type) - return _internal_type(); -} -inline void FigureDescriptor_SourceDescriptor::set_type(::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_SourceType value) { - _internal_set_type(value); - // @@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 { - ::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) { - ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.type_ = value; -} - -// int32 table_id = 3; -inline void FigureDescriptor_SourceDescriptor::clear_table_id() { - ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.table_id_ = 0; -} -inline ::int32_t FigureDescriptor_SourceDescriptor::table_id() const { - // @@protoc_insertion_point(field_get:io.deephaven.proto.backplane.script.grpc.FigureDescriptor.SourceDescriptor.table_id) - return _internal_table_id(); -} -inline void FigureDescriptor_SourceDescriptor::set_table_id(::int32_t value) { - _internal_set_table_id(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 { - ::google::protobuf::internal::TSanRead(&_impl_); - return _impl_.table_id_; -} -inline void FigureDescriptor_SourceDescriptor::_internal_set_table_id(::int32_t value) { - ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.table_id_ = value; -} - -// int32 partitioned_table_id = 4; -inline void FigureDescriptor_SourceDescriptor::clear_partitioned_table_id() { - ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.partitioned_table_id_ = 0; -} -inline ::int32_t FigureDescriptor_SourceDescriptor::partitioned_table_id() const { - // @@protoc_insertion_point(field_get:io.deephaven.proto.backplane.script.grpc.FigureDescriptor.SourceDescriptor.partitioned_table_id) - return _internal_partitioned_table_id(); -} -inline void FigureDescriptor_SourceDescriptor::set_partitioned_table_id(::int32_t value) { - _internal_set_partitioned_table_id(value); - // @@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 { - ::google::protobuf::internal::TSanRead(&_impl_); - return _impl_.partitioned_table_id_; -} -inline void FigureDescriptor_SourceDescriptor::_internal_set_partitioned_table_id(::int32_t value) { - ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.partitioned_table_id_ = value; -} - -// string column_name = 5; -inline void FigureDescriptor_SourceDescriptor::clear_column_name() { - ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.column_name_.ClearToEmpty(); -} -inline const std::string& FigureDescriptor_SourceDescriptor::column_name() const - ABSL_ATTRIBUTE_LIFETIME_BOUND { - // @@protoc_insertion_point(field_get:io.deephaven.proto.backplane.script.grpc.FigureDescriptor.SourceDescriptor.column_name) - return _internal_column_name(); -} -template -inline PROTOBUF_ALWAYS_INLINE void FigureDescriptor_SourceDescriptor::set_column_name(Arg_&& arg, - Args_... args) { - ::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) -} -inline std::string* FigureDescriptor_SourceDescriptor::mutable_column_name() ABSL_ATTRIBUTE_LIFETIME_BOUND { - std::string* _s = _internal_mutable_column_name(); - // @@protoc_insertion_point(field_mutable:io.deephaven.proto.backplane.script.grpc.FigureDescriptor.SourceDescriptor.column_name) - return _s; -} -inline const std::string& FigureDescriptor_SourceDescriptor::_internal_column_name() const { - ::google::protobuf::internal::TSanRead(&_impl_); - return _impl_.column_name_.Get(); -} -inline void FigureDescriptor_SourceDescriptor::_internal_set_column_name(const std::string& value) { - ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.column_name_.Set(value, GetArena()); -} -inline std::string* FigureDescriptor_SourceDescriptor::_internal_mutable_column_name() { - ::google::protobuf::internal::TSanWrite(&_impl_); - return _impl_.column_name_.Mutable( GetArena()); -} -inline std::string* FigureDescriptor_SourceDescriptor::release_column_name() { - ::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) { - ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.column_name_.SetAllocated(value, GetArena()); - #ifdef PROTOBUF_FORCE_COPY_DEFAULT_STRING - if (_impl_.column_name_.IsDefault()) { - _impl_.column_name_.Set("", GetArena()); - } - #endif // PROTOBUF_FORCE_COPY_DEFAULT_STRING - // @@protoc_insertion_point(field_set_allocated:io.deephaven.proto.backplane.script.grpc.FigureDescriptor.SourceDescriptor.column_name) -} - -// string column_type = 6; -inline void FigureDescriptor_SourceDescriptor::clear_column_type() { - ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.column_type_.ClearToEmpty(); -} -inline const std::string& FigureDescriptor_SourceDescriptor::column_type() const - ABSL_ATTRIBUTE_LIFETIME_BOUND { - // @@protoc_insertion_point(field_get:io.deephaven.proto.backplane.script.grpc.FigureDescriptor.SourceDescriptor.column_type) - return _internal_column_type(); -} -template -inline PROTOBUF_ALWAYS_INLINE void FigureDescriptor_SourceDescriptor::set_column_type(Arg_&& arg, - Args_... args) { - ::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) -} -inline std::string* FigureDescriptor_SourceDescriptor::mutable_column_type() ABSL_ATTRIBUTE_LIFETIME_BOUND { - std::string* _s = _internal_mutable_column_type(); - // @@protoc_insertion_point(field_mutable:io.deephaven.proto.backplane.script.grpc.FigureDescriptor.SourceDescriptor.column_type) - return _s; -} -inline const std::string& FigureDescriptor_SourceDescriptor::_internal_column_type() const { - ::google::protobuf::internal::TSanRead(&_impl_); - return _impl_.column_type_.Get(); -} -inline void FigureDescriptor_SourceDescriptor::_internal_set_column_type(const std::string& value) { - ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.column_type_.Set(value, GetArena()); -} -inline std::string* FigureDescriptor_SourceDescriptor::_internal_mutable_column_type() { - ::google::protobuf::internal::TSanWrite(&_impl_); - return _impl_.column_type_.Mutable( GetArena()); -} -inline std::string* FigureDescriptor_SourceDescriptor::release_column_type() { - ::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) { - ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.column_type_.SetAllocated(value, GetArena()); - #ifdef PROTOBUF_FORCE_COPY_DEFAULT_STRING - if (_impl_.column_type_.IsDefault()) { - _impl_.column_type_.Set("", GetArena()); - } - #endif // PROTOBUF_FORCE_COPY_DEFAULT_STRING - // @@protoc_insertion_point(field_set_allocated:io.deephaven.proto.backplane.script.grpc.FigureDescriptor.SourceDescriptor.column_type) -} - -// .io.deephaven.proto.backplane.script.grpc.FigureDescriptor.OneClickDescriptor one_click = 7; -inline bool FigureDescriptor_SourceDescriptor::has_one_click() const { - bool value = (_impl_._has_bits_[0] & 0x00000001u) != 0; - PROTOBUF_ASSUME(!value || _impl_.one_click_ != nullptr); - return value; -} -inline void FigureDescriptor_SourceDescriptor::clear_one_click() { - ::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 { - ::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_); -} -inline const ::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_OneClickDescriptor& FigureDescriptor_SourceDescriptor::one_click() const ABSL_ATTRIBUTE_LIFETIME_BOUND { - // @@protoc_insertion_point(field_get:io.deephaven.proto.backplane.script.grpc.FigureDescriptor.SourceDescriptor.one_click) - return _internal_one_click(); -} -inline void FigureDescriptor_SourceDescriptor::unsafe_arena_set_allocated_one_click(::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_OneClickDescriptor* value) { - ::google::protobuf::internal::TSanWrite(&_impl_); - if (GetArena() == nullptr) { - delete reinterpret_cast<::google::protobuf::MessageLite*>(_impl_.one_click_); - } - _impl_.one_click_ = reinterpret_cast<::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_OneClickDescriptor*>(value); - if (value != nullptr) { - _impl_._has_bits_[0] |= 0x00000001u; - } else { - _impl_._has_bits_[0] &= ~0x00000001u; - } - // @@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() { - ::google::protobuf::internal::TSanWrite(&_impl_); - - _impl_._has_bits_[0] &= ~0x00000001u; - ::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_OneClickDescriptor* released = _impl_.one_click_; - _impl_.one_click_ = nullptr; -#ifdef PROTOBUF_FORCE_COPY_IN_RELEASE - auto* old = reinterpret_cast<::google::protobuf::MessageLite*>(released); - released = ::google::protobuf::internal::DuplicateIfNonNull(released); - if (GetArena() == nullptr) { - delete old; - } -#else // PROTOBUF_FORCE_COPY_IN_RELEASE - if (GetArena() != nullptr) { - released = ::google::protobuf::internal::DuplicateIfNonNull(released); - } -#endif // !PROTOBUF_FORCE_COPY_IN_RELEASE - return released; -} -inline ::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_OneClickDescriptor* FigureDescriptor_SourceDescriptor::unsafe_arena_release_one_click() { - ::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; - ::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_OneClickDescriptor* temp = _impl_.one_click_; - _impl_.one_click_ = nullptr; - return temp; -} -inline ::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_OneClickDescriptor* FigureDescriptor_SourceDescriptor::_internal_mutable_one_click() { - ::google::protobuf::internal::TSanWrite(&_impl_); - if (_impl_.one_click_ == nullptr) { - 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(); - ::google::protobuf::internal::TSanWrite(&_impl_); - if (message_arena == nullptr) { - delete (_impl_.one_click_); - } - - if (value != nullptr) { - ::google::protobuf::Arena* submessage_arena = (value)->GetArena(); - if (message_arena != submessage_arena) { - value = ::google::protobuf::internal::GetOwnedMessage(message_arena, value, submessage_arena); - } - _impl_._has_bits_[0] |= 0x00000001u; - } else { - _impl_._has_bits_[0] &= ~0x00000001u; - } - - _impl_.one_click_ = reinterpret_cast<::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_OneClickDescriptor*>(value); - // @@protoc_insertion_point(field_set_allocated:io.deephaven.proto.backplane.script.grpc.FigureDescriptor.SourceDescriptor.one_click) -} - -// ------------------------------------------------------------------- - -// FigureDescriptor_OneClickDescriptor - -// repeated string columns = 1; -inline int FigureDescriptor_OneClickDescriptor::_internal_columns_size() const { - return _internal_columns().size(); -} -inline int FigureDescriptor_OneClickDescriptor::columns_size() const { - return _internal_columns_size(); -} -inline void FigureDescriptor_OneClickDescriptor::clear_columns() { - ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.columns_.Clear(); -} -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; -} -inline const std::string& FigureDescriptor_OneClickDescriptor::columns(int index) const - ABSL_ATTRIBUTE_LIFETIME_BOUND { - // @@protoc_insertion_point(field_get:io.deephaven.proto.backplane.script.grpc.FigureDescriptor.OneClickDescriptor.columns) - return _internal_columns().Get(index); -} -inline std::string* FigureDescriptor_OneClickDescriptor::mutable_columns(int index) - ABSL_ATTRIBUTE_LIFETIME_BOUND { - // @@protoc_insertion_point(field_mutable:io.deephaven.proto.backplane.script.grpc.FigureDescriptor.OneClickDescriptor.columns) - return _internal_mutable_columns()->Mutable(index); -} -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) -} -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 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) - return _internal_columns(); -} -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) - ::google::protobuf::internal::TSanWrite(&_impl_); - return _internal_mutable_columns(); -} -inline const ::google::protobuf::RepeatedPtrField& -FigureDescriptor_OneClickDescriptor::_internal_columns() const { - ::google::protobuf::internal::TSanRead(&_impl_); - return _impl_.columns_; -} -inline ::google::protobuf::RepeatedPtrField* -FigureDescriptor_OneClickDescriptor::_internal_mutable_columns() { - ::google::protobuf::internal::TSanRead(&_impl_); - return &_impl_.columns_; -} - -// repeated string column_types = 2; -inline int FigureDescriptor_OneClickDescriptor::_internal_column_types_size() const { - return _internal_column_types().size(); -} -inline int FigureDescriptor_OneClickDescriptor::column_types_size() const { - return _internal_column_types_size(); -} -inline void FigureDescriptor_OneClickDescriptor::clear_column_types() { - ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.column_types_.Clear(); -} -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; -} -inline const std::string& FigureDescriptor_OneClickDescriptor::column_types(int index) const - ABSL_ATTRIBUTE_LIFETIME_BOUND { - // @@protoc_insertion_point(field_get:io.deephaven.proto.backplane.script.grpc.FigureDescriptor.OneClickDescriptor.column_types) - return _internal_column_types().Get(index); -} -inline std::string* FigureDescriptor_OneClickDescriptor::mutable_column_types(int index) - ABSL_ATTRIBUTE_LIFETIME_BOUND { - // @@protoc_insertion_point(field_mutable:io.deephaven.proto.backplane.script.grpc.FigureDescriptor.OneClickDescriptor.column_types) - return _internal_mutable_column_types()->Mutable(index); -} -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) -} -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 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) - return _internal_column_types(); -} -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) - ::google::protobuf::internal::TSanWrite(&_impl_); - return _internal_mutable_column_types(); -} -inline const ::google::protobuf::RepeatedPtrField& -FigureDescriptor_OneClickDescriptor::_internal_column_types() const { - ::google::protobuf::internal::TSanRead(&_impl_); - return _impl_.column_types_; -} -inline ::google::protobuf::RepeatedPtrField* -FigureDescriptor_OneClickDescriptor::_internal_mutable_column_types() { - ::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() { - ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.require_all_filters_to_display_ = false; -} -inline bool FigureDescriptor_OneClickDescriptor::require_all_filters_to_display() const { - // @@protoc_insertion_point(field_get:io.deephaven.proto.backplane.script.grpc.FigureDescriptor.OneClickDescriptor.require_all_filters_to_display) - return _internal_require_all_filters_to_display(); -} -inline void FigureDescriptor_OneClickDescriptor::set_require_all_filters_to_display(bool value) { - _internal_set_require_all_filters_to_display(value); - // @@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 { - ::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) { - ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.require_all_filters_to_display_ = value; -} - -// ------------------------------------------------------------------- - -// FigureDescriptor - -// optional string title = 1; -inline bool FigureDescriptor::has_title() const { - bool value = (_impl_._has_bits_[0] & 0x00000001u) != 0; - return value; -} -inline void FigureDescriptor::clear_title() { - ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.title_.ClearToEmpty(); - _impl_._has_bits_[0] &= ~0x00000001u; -} -inline const std::string& FigureDescriptor::title() const - ABSL_ATTRIBUTE_LIFETIME_BOUND { - // @@protoc_insertion_point(field_get:io.deephaven.proto.backplane.script.grpc.FigureDescriptor.title) - return _internal_title(); -} -template -inline PROTOBUF_ALWAYS_INLINE void FigureDescriptor::set_title(Arg_&& arg, - Args_... args) { - ::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) -} -inline std::string* FigureDescriptor::mutable_title() ABSL_ATTRIBUTE_LIFETIME_BOUND { - std::string* _s = _internal_mutable_title(); - // @@protoc_insertion_point(field_mutable:io.deephaven.proto.backplane.script.grpc.FigureDescriptor.title) - return _s; -} -inline const std::string& FigureDescriptor::_internal_title() const { - ::google::protobuf::internal::TSanRead(&_impl_); - return _impl_.title_.Get(); -} -inline void FigureDescriptor::_internal_set_title(const std::string& value) { - ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_._has_bits_[0] |= 0x00000001u; - _impl_.title_.Set(value, GetArena()); -} -inline std::string* FigureDescriptor::_internal_mutable_title() { - ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_._has_bits_[0] |= 0x00000001u; - return _impl_.title_.Mutable( GetArena()); -} -inline std::string* FigureDescriptor::release_title() { - ::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; - } - _impl_._has_bits_[0] &= ~0x00000001u; - auto* released = _impl_.title_.Release(); - #ifdef PROTOBUF_FORCE_COPY_DEFAULT_STRING - _impl_.title_.Set("", GetArena()); - #endif // PROTOBUF_FORCE_COPY_DEFAULT_STRING - return released; -} -inline void FigureDescriptor::set_allocated_title(std::string* value) { - ::google::protobuf::internal::TSanWrite(&_impl_); - if (value != nullptr) { - _impl_._has_bits_[0] |= 0x00000001u; - } else { - _impl_._has_bits_[0] &= ~0x00000001u; - } - _impl_.title_.SetAllocated(value, GetArena()); - #ifdef PROTOBUF_FORCE_COPY_DEFAULT_STRING - if (_impl_.title_.IsDefault()) { - _impl_.title_.Set("", GetArena()); - } - #endif // PROTOBUF_FORCE_COPY_DEFAULT_STRING - // @@protoc_insertion_point(field_set_allocated:io.deephaven.proto.backplane.script.grpc.FigureDescriptor.title) -} - -// string title_font = 2; -inline void FigureDescriptor::clear_title_font() { - ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.title_font_.ClearToEmpty(); -} -inline const std::string& FigureDescriptor::title_font() const - ABSL_ATTRIBUTE_LIFETIME_BOUND { - // @@protoc_insertion_point(field_get:io.deephaven.proto.backplane.script.grpc.FigureDescriptor.title_font) - return _internal_title_font(); -} -template -inline PROTOBUF_ALWAYS_INLINE void FigureDescriptor::set_title_font(Arg_&& arg, - Args_... args) { - ::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) -} -inline std::string* FigureDescriptor::mutable_title_font() ABSL_ATTRIBUTE_LIFETIME_BOUND { - std::string* _s = _internal_mutable_title_font(); - // @@protoc_insertion_point(field_mutable:io.deephaven.proto.backplane.script.grpc.FigureDescriptor.title_font) - return _s; -} -inline const std::string& FigureDescriptor::_internal_title_font() const { - ::google::protobuf::internal::TSanRead(&_impl_); - return _impl_.title_font_.Get(); -} -inline void FigureDescriptor::_internal_set_title_font(const std::string& value) { - ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.title_font_.Set(value, GetArena()); -} -inline std::string* FigureDescriptor::_internal_mutable_title_font() { - ::google::protobuf::internal::TSanWrite(&_impl_); - return _impl_.title_font_.Mutable( GetArena()); -} -inline std::string* FigureDescriptor::release_title_font() { - ::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) { - ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.title_font_.SetAllocated(value, GetArena()); - #ifdef PROTOBUF_FORCE_COPY_DEFAULT_STRING - if (_impl_.title_font_.IsDefault()) { - _impl_.title_font_.Set("", GetArena()); - } - #endif // PROTOBUF_FORCE_COPY_DEFAULT_STRING - // @@protoc_insertion_point(field_set_allocated:io.deephaven.proto.backplane.script.grpc.FigureDescriptor.title_font) -} - -// string title_color = 3; -inline void FigureDescriptor::clear_title_color() { - ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.title_color_.ClearToEmpty(); -} -inline const std::string& FigureDescriptor::title_color() const - ABSL_ATTRIBUTE_LIFETIME_BOUND { - // @@protoc_insertion_point(field_get:io.deephaven.proto.backplane.script.grpc.FigureDescriptor.title_color) - return _internal_title_color(); -} -template -inline PROTOBUF_ALWAYS_INLINE void FigureDescriptor::set_title_color(Arg_&& arg, - Args_... args) { - ::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) -} -inline std::string* FigureDescriptor::mutable_title_color() ABSL_ATTRIBUTE_LIFETIME_BOUND { - std::string* _s = _internal_mutable_title_color(); - // @@protoc_insertion_point(field_mutable:io.deephaven.proto.backplane.script.grpc.FigureDescriptor.title_color) - return _s; -} -inline const std::string& FigureDescriptor::_internal_title_color() const { - ::google::protobuf::internal::TSanRead(&_impl_); - return _impl_.title_color_.Get(); -} -inline void FigureDescriptor::_internal_set_title_color(const std::string& value) { - ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.title_color_.Set(value, GetArena()); -} -inline std::string* FigureDescriptor::_internal_mutable_title_color() { - ::google::protobuf::internal::TSanWrite(&_impl_); - return _impl_.title_color_.Mutable( GetArena()); -} -inline std::string* FigureDescriptor::release_title_color() { - ::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) { - ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.title_color_.SetAllocated(value, GetArena()); - #ifdef PROTOBUF_FORCE_COPY_DEFAULT_STRING - if (_impl_.title_color_.IsDefault()) { - _impl_.title_color_.Set("", GetArena()); - } - #endif // PROTOBUF_FORCE_COPY_DEFAULT_STRING - // @@protoc_insertion_point(field_set_allocated:io.deephaven.proto.backplane.script.grpc.FigureDescriptor.title_color) -} - -// int64 update_interval = 7 [jstype = JS_STRING]; -inline void FigureDescriptor::clear_update_interval() { - ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.update_interval_ = ::int64_t{0}; -} -inline ::int64_t FigureDescriptor::update_interval() const { - // @@protoc_insertion_point(field_get:io.deephaven.proto.backplane.script.grpc.FigureDescriptor.update_interval) - return _internal_update_interval(); -} -inline void FigureDescriptor::set_update_interval(::int64_t value) { - _internal_set_update_interval(value); - // @@protoc_insertion_point(field_set:io.deephaven.proto.backplane.script.grpc.FigureDescriptor.update_interval) -} -inline ::int64_t FigureDescriptor::_internal_update_interval() const { - ::google::protobuf::internal::TSanRead(&_impl_); - return _impl_.update_interval_; -} -inline void FigureDescriptor::_internal_set_update_interval(::int64_t value) { - ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.update_interval_ = value; -} - -// int32 cols = 8; -inline void FigureDescriptor::clear_cols() { - ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.cols_ = 0; -} -inline ::int32_t FigureDescriptor::cols() const { - // @@protoc_insertion_point(field_get:io.deephaven.proto.backplane.script.grpc.FigureDescriptor.cols) - return _internal_cols(); -} -inline void FigureDescriptor::set_cols(::int32_t value) { - _internal_set_cols(value); - // @@protoc_insertion_point(field_set:io.deephaven.proto.backplane.script.grpc.FigureDescriptor.cols) -} -inline ::int32_t FigureDescriptor::_internal_cols() const { - ::google::protobuf::internal::TSanRead(&_impl_); - return _impl_.cols_; -} -inline void FigureDescriptor::_internal_set_cols(::int32_t value) { - ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.cols_ = value; -} - -// int32 rows = 9; -inline void FigureDescriptor::clear_rows() { - ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.rows_ = 0; -} -inline ::int32_t FigureDescriptor::rows() const { - // @@protoc_insertion_point(field_get:io.deephaven.proto.backplane.script.grpc.FigureDescriptor.rows) - return _internal_rows(); -} -inline void FigureDescriptor::set_rows(::int32_t value) { - _internal_set_rows(value); - // @@protoc_insertion_point(field_set:io.deephaven.proto.backplane.script.grpc.FigureDescriptor.rows) -} -inline ::int32_t FigureDescriptor::_internal_rows() const { - ::google::protobuf::internal::TSanRead(&_impl_); - return _impl_.rows_; -} -inline void FigureDescriptor::_internal_set_rows(::int32_t value) { - ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.rows_ = value; -} - -// repeated .io.deephaven.proto.backplane.script.grpc.FigureDescriptor.ChartDescriptor charts = 10; -inline int FigureDescriptor::_internal_charts_size() const { - return _internal_charts().size(); -} -inline int FigureDescriptor::charts_size() const { - return _internal_charts_size(); -} -inline void FigureDescriptor::clear_charts() { - ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.charts_.Clear(); -} -inline ::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_ChartDescriptor* FigureDescriptor::mutable_charts(int index) - ABSL_ATTRIBUTE_LIFETIME_BOUND { - // @@protoc_insertion_point(field_mutable:io.deephaven.proto.backplane.script.grpc.FigureDescriptor.charts) - return _internal_mutable_charts()->Mutable(index); -} -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) - ::google::protobuf::internal::TSanWrite(&_impl_); - return _internal_mutable_charts(); -} -inline const ::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_ChartDescriptor& FigureDescriptor::charts(int index) const - ABSL_ATTRIBUTE_LIFETIME_BOUND { - // @@protoc_insertion_point(field_get:io.deephaven.proto.backplane.script.grpc.FigureDescriptor.charts) - return _internal_charts().Get(index); -} -inline ::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_ChartDescriptor* FigureDescriptor::add_charts() ABSL_ATTRIBUTE_LIFETIME_BOUND { - ::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; -} -inline const ::google::protobuf::RepeatedPtrField<::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_ChartDescriptor>& FigureDescriptor::charts() const - ABSL_ATTRIBUTE_LIFETIME_BOUND { - // @@protoc_insertion_point(field_list:io.deephaven.proto.backplane.script.grpc.FigureDescriptor.charts) - return _internal_charts(); -} -inline const ::google::protobuf::RepeatedPtrField<::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_ChartDescriptor>& -FigureDescriptor::_internal_charts() const { - ::google::protobuf::internal::TSanRead(&_impl_); - return _impl_.charts_; -} -inline ::google::protobuf::RepeatedPtrField<::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_ChartDescriptor>* -FigureDescriptor::_internal_mutable_charts() { - ::google::protobuf::internal::TSanRead(&_impl_); - return &_impl_.charts_; -} - -// repeated string errors = 13; -inline int FigureDescriptor::_internal_errors_size() const { - return _internal_errors().size(); -} -inline int FigureDescriptor::errors_size() const { - return _internal_errors_size(); -} -inline void FigureDescriptor::clear_errors() { - ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.errors_.Clear(); -} -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; -} -inline const std::string& FigureDescriptor::errors(int index) const - ABSL_ATTRIBUTE_LIFETIME_BOUND { - // @@protoc_insertion_point(field_get:io.deephaven.proto.backplane.script.grpc.FigureDescriptor.errors) - return _internal_errors().Get(index); -} -inline std::string* FigureDescriptor::mutable_errors(int index) - ABSL_ATTRIBUTE_LIFETIME_BOUND { - // @@protoc_insertion_point(field_mutable:io.deephaven.proto.backplane.script.grpc.FigureDescriptor.errors) - return _internal_mutable_errors()->Mutable(index); -} -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) -} -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 const ::google::protobuf::RepeatedPtrField& -FigureDescriptor::errors() const ABSL_ATTRIBUTE_LIFETIME_BOUND { - // @@protoc_insertion_point(field_list:io.deephaven.proto.backplane.script.grpc.FigureDescriptor.errors) - return _internal_errors(); -} -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) - ::google::protobuf::internal::TSanWrite(&_impl_); - return _internal_mutable_errors(); -} -inline const ::google::protobuf::RepeatedPtrField& -FigureDescriptor::_internal_errors() const { - ::google::protobuf::internal::TSanRead(&_impl_); - return _impl_.errors_; -} -inline ::google::protobuf::RepeatedPtrField* -FigureDescriptor::_internal_mutable_errors() { - ::google::protobuf::internal::TSanRead(&_impl_); - return &_impl_.errors_; -} - -#ifdef __GNUC__ -#pragma GCC diagnostic pop -#endif // __GNUC__ - -// @@protoc_insertion_point(namespace_scope) -} // namespace grpc -} // namespace script -} // namespace backplane -} // namespace proto -} // namespace deephaven -} // namespace io - - -namespace google { -namespace protobuf { - -template <> -struct is_proto_enum<::io::deephaven::proto::backplane::script::grpc::Diagnostic_DiagnosticSeverity> : std::true_type {}; -template <> -inline const EnumDescriptor* GetEnumDescriptor<::io::deephaven::proto::backplane::script::grpc::Diagnostic_DiagnosticSeverity>() { - return ::io::deephaven::proto::backplane::script::grpc::Diagnostic_DiagnosticSeverity_descriptor(); -} -template <> -struct is_proto_enum<::io::deephaven::proto::backplane::script::grpc::Diagnostic_DiagnosticTag> : std::true_type {}; -template <> -inline const EnumDescriptor* GetEnumDescriptor<::io::deephaven::proto::backplane::script::grpc::Diagnostic_DiagnosticTag>() { - return ::io::deephaven::proto::backplane::script::grpc::Diagnostic_DiagnosticTag_descriptor(); -} -template <> -struct is_proto_enum<::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_ChartDescriptor_ChartType> : std::true_type {}; -template <> -inline const EnumDescriptor* GetEnumDescriptor<::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_ChartDescriptor_ChartType>() { - return ::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_ChartDescriptor_ChartType_descriptor(); -} -template <> -struct is_proto_enum<::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_AxisDescriptor_AxisFormatType> : std::true_type {}; -template <> -inline const EnumDescriptor* GetEnumDescriptor<::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_AxisDescriptor_AxisFormatType>() { - return ::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_AxisDescriptor_AxisFormatType_descriptor(); -} -template <> -struct is_proto_enum<::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_AxisDescriptor_AxisType> : std::true_type {}; -template <> -inline const EnumDescriptor* GetEnumDescriptor<::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_AxisDescriptor_AxisType>() { - return ::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_AxisDescriptor_AxisType_descriptor(); -} -template <> -struct is_proto_enum<::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_AxisDescriptor_AxisPosition> : std::true_type {}; -template <> -inline const EnumDescriptor* GetEnumDescriptor<::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_AxisDescriptor_AxisPosition>() { - return ::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_AxisDescriptor_AxisPosition_descriptor(); -} -template <> -struct is_proto_enum<::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_BusinessCalendarDescriptor_DayOfWeek> : std::true_type {}; -template <> -inline const EnumDescriptor* GetEnumDescriptor<::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_BusinessCalendarDescriptor_DayOfWeek>() { - return ::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_BusinessCalendarDescriptor_DayOfWeek_descriptor(); -} -template <> -struct is_proto_enum<::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_SeriesPlotStyle> : std::true_type {}; -template <> -inline const EnumDescriptor* GetEnumDescriptor<::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_SeriesPlotStyle>() { - return ::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_SeriesPlotStyle_descriptor(); -} -template <> -struct is_proto_enum<::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_SourceType> : std::true_type {}; -template <> -inline const EnumDescriptor* GetEnumDescriptor<::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_SourceType>() { - return ::io::deephaven::proto::backplane::script::grpc::FigureDescriptor_SourceType_descriptor(); -} - -} // namespace protobuf -} // namespace google - -// @@protoc_insertion_point(global_scope) - -#include "google/protobuf/port_undef.inc" - -#endif // GOOGLE_PROTOBUF_INCLUDED_deephaven_2fproto_2fconsole_2eproto_2epb_2eh diff --git a/cpp-client/deephaven/dhclient/proto/deephaven/proto/hierarchicaltable.grpc.pb.cc b/cpp-client/deephaven/dhclient/proto/deephaven/proto/hierarchicaltable.grpc.pb.cc deleted file mode 100644 index a59789d3ceb..00000000000 --- a/cpp-client/deephaven/dhclient/proto/deephaven/proto/hierarchicaltable.grpc.pb.cc +++ /dev/null @@ -1,262 +0,0 @@ -// Generated by the gRPC C++ plugin. -// If you make any local change, they will be lost. -// source: deephaven/proto/hierarchicaltable.proto - -#include "deephaven/proto/hierarchicaltable.pb.h" -#include "deephaven/proto/hierarchicaltable.grpc.pb.h" - -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -namespace io { -namespace deephaven { -namespace proto { -namespace backplane { -namespace grpc { - -static const char* HierarchicalTableService_method_names[] = { - "/io.deephaven.proto.backplane.grpc.HierarchicalTableService/Rollup", - "/io.deephaven.proto.backplane.grpc.HierarchicalTableService/Tree", - "/io.deephaven.proto.backplane.grpc.HierarchicalTableService/Apply", - "/io.deephaven.proto.backplane.grpc.HierarchicalTableService/View", - "/io.deephaven.proto.backplane.grpc.HierarchicalTableService/ExportSource", -}; - -std::unique_ptr< HierarchicalTableService::Stub> HierarchicalTableService::NewStub(const std::shared_ptr< ::grpc::ChannelInterface>& channel, const ::grpc::StubOptions& options) { - (void)options; - std::unique_ptr< HierarchicalTableService::Stub> stub(new HierarchicalTableService::Stub(channel, options)); - return stub; -} - -HierarchicalTableService::Stub::Stub(const std::shared_ptr< ::grpc::ChannelInterface>& channel, const ::grpc::StubOptions& options) - : channel_(channel), rpcmethod_Rollup_(HierarchicalTableService_method_names[0], options.suffix_for_stats(),::grpc::internal::RpcMethod::NORMAL_RPC, channel) - , rpcmethod_Tree_(HierarchicalTableService_method_names[1], options.suffix_for_stats(),::grpc::internal::RpcMethod::NORMAL_RPC, channel) - , rpcmethod_Apply_(HierarchicalTableService_method_names[2], options.suffix_for_stats(),::grpc::internal::RpcMethod::NORMAL_RPC, channel) - , rpcmethod_View_(HierarchicalTableService_method_names[3], options.suffix_for_stats(),::grpc::internal::RpcMethod::NORMAL_RPC, channel) - , rpcmethod_ExportSource_(HierarchicalTableService_method_names[4], options.suffix_for_stats(),::grpc::internal::RpcMethod::NORMAL_RPC, channel) - {} - -::grpc::Status HierarchicalTableService::Stub::Rollup(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::RollupRequest& request, ::io::deephaven::proto::backplane::grpc::RollupResponse* response) { - return ::grpc::internal::BlockingUnaryCall< ::io::deephaven::proto::backplane::grpc::RollupRequest, ::io::deephaven::proto::backplane::grpc::RollupResponse, ::grpc::protobuf::MessageLite, ::grpc::protobuf::MessageLite>(channel_.get(), rpcmethod_Rollup_, context, request, response); -} - -void HierarchicalTableService::Stub::async::Rollup(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::RollupRequest* request, ::io::deephaven::proto::backplane::grpc::RollupResponse* response, std::function f) { - ::grpc::internal::CallbackUnaryCall< ::io::deephaven::proto::backplane::grpc::RollupRequest, ::io::deephaven::proto::backplane::grpc::RollupResponse, ::grpc::protobuf::MessageLite, ::grpc::protobuf::MessageLite>(stub_->channel_.get(), stub_->rpcmethod_Rollup_, context, request, response, std::move(f)); -} - -void HierarchicalTableService::Stub::async::Rollup(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::RollupRequest* request, ::io::deephaven::proto::backplane::grpc::RollupResponse* response, ::grpc::ClientUnaryReactor* reactor) { - ::grpc::internal::ClientCallbackUnaryFactory::Create< ::grpc::protobuf::MessageLite, ::grpc::protobuf::MessageLite>(stub_->channel_.get(), stub_->rpcmethod_Rollup_, context, request, response, reactor); -} - -::grpc::ClientAsyncResponseReader< ::io::deephaven::proto::backplane::grpc::RollupResponse>* HierarchicalTableService::Stub::PrepareAsyncRollupRaw(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::RollupRequest& request, ::grpc::CompletionQueue* cq) { - return ::grpc::internal::ClientAsyncResponseReaderHelper::Create< ::io::deephaven::proto::backplane::grpc::RollupResponse, ::io::deephaven::proto::backplane::grpc::RollupRequest, ::grpc::protobuf::MessageLite, ::grpc::protobuf::MessageLite>(channel_.get(), cq, rpcmethod_Rollup_, context, request); -} - -::grpc::ClientAsyncResponseReader< ::io::deephaven::proto::backplane::grpc::RollupResponse>* HierarchicalTableService::Stub::AsyncRollupRaw(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::RollupRequest& request, ::grpc::CompletionQueue* cq) { - auto* result = - this->PrepareAsyncRollupRaw(context, request, cq); - result->StartCall(); - return result; -} - -::grpc::Status HierarchicalTableService::Stub::Tree(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::TreeRequest& request, ::io::deephaven::proto::backplane::grpc::TreeResponse* response) { - return ::grpc::internal::BlockingUnaryCall< ::io::deephaven::proto::backplane::grpc::TreeRequest, ::io::deephaven::proto::backplane::grpc::TreeResponse, ::grpc::protobuf::MessageLite, ::grpc::protobuf::MessageLite>(channel_.get(), rpcmethod_Tree_, context, request, response); -} - -void HierarchicalTableService::Stub::async::Tree(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::TreeRequest* request, ::io::deephaven::proto::backplane::grpc::TreeResponse* response, std::function f) { - ::grpc::internal::CallbackUnaryCall< ::io::deephaven::proto::backplane::grpc::TreeRequest, ::io::deephaven::proto::backplane::grpc::TreeResponse, ::grpc::protobuf::MessageLite, ::grpc::protobuf::MessageLite>(stub_->channel_.get(), stub_->rpcmethod_Tree_, context, request, response, std::move(f)); -} - -void HierarchicalTableService::Stub::async::Tree(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::TreeRequest* request, ::io::deephaven::proto::backplane::grpc::TreeResponse* response, ::grpc::ClientUnaryReactor* reactor) { - ::grpc::internal::ClientCallbackUnaryFactory::Create< ::grpc::protobuf::MessageLite, ::grpc::protobuf::MessageLite>(stub_->channel_.get(), stub_->rpcmethod_Tree_, context, request, response, reactor); -} - -::grpc::ClientAsyncResponseReader< ::io::deephaven::proto::backplane::grpc::TreeResponse>* HierarchicalTableService::Stub::PrepareAsyncTreeRaw(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::TreeRequest& request, ::grpc::CompletionQueue* cq) { - return ::grpc::internal::ClientAsyncResponseReaderHelper::Create< ::io::deephaven::proto::backplane::grpc::TreeResponse, ::io::deephaven::proto::backplane::grpc::TreeRequest, ::grpc::protobuf::MessageLite, ::grpc::protobuf::MessageLite>(channel_.get(), cq, rpcmethod_Tree_, context, request); -} - -::grpc::ClientAsyncResponseReader< ::io::deephaven::proto::backplane::grpc::TreeResponse>* HierarchicalTableService::Stub::AsyncTreeRaw(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::TreeRequest& request, ::grpc::CompletionQueue* cq) { - auto* result = - this->PrepareAsyncTreeRaw(context, request, cq); - result->StartCall(); - return result; -} - -::grpc::Status HierarchicalTableService::Stub::Apply(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::HierarchicalTableApplyRequest& request, ::io::deephaven::proto::backplane::grpc::HierarchicalTableApplyResponse* response) { - return ::grpc::internal::BlockingUnaryCall< ::io::deephaven::proto::backplane::grpc::HierarchicalTableApplyRequest, ::io::deephaven::proto::backplane::grpc::HierarchicalTableApplyResponse, ::grpc::protobuf::MessageLite, ::grpc::protobuf::MessageLite>(channel_.get(), rpcmethod_Apply_, context, request, response); -} - -void HierarchicalTableService::Stub::async::Apply(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::HierarchicalTableApplyRequest* request, ::io::deephaven::proto::backplane::grpc::HierarchicalTableApplyResponse* response, std::function f) { - ::grpc::internal::CallbackUnaryCall< ::io::deephaven::proto::backplane::grpc::HierarchicalTableApplyRequest, ::io::deephaven::proto::backplane::grpc::HierarchicalTableApplyResponse, ::grpc::protobuf::MessageLite, ::grpc::protobuf::MessageLite>(stub_->channel_.get(), stub_->rpcmethod_Apply_, context, request, response, std::move(f)); -} - -void HierarchicalTableService::Stub::async::Apply(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::HierarchicalTableApplyRequest* request, ::io::deephaven::proto::backplane::grpc::HierarchicalTableApplyResponse* response, ::grpc::ClientUnaryReactor* reactor) { - ::grpc::internal::ClientCallbackUnaryFactory::Create< ::grpc::protobuf::MessageLite, ::grpc::protobuf::MessageLite>(stub_->channel_.get(), stub_->rpcmethod_Apply_, context, request, response, reactor); -} - -::grpc::ClientAsyncResponseReader< ::io::deephaven::proto::backplane::grpc::HierarchicalTableApplyResponse>* HierarchicalTableService::Stub::PrepareAsyncApplyRaw(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::HierarchicalTableApplyRequest& request, ::grpc::CompletionQueue* cq) { - return ::grpc::internal::ClientAsyncResponseReaderHelper::Create< ::io::deephaven::proto::backplane::grpc::HierarchicalTableApplyResponse, ::io::deephaven::proto::backplane::grpc::HierarchicalTableApplyRequest, ::grpc::protobuf::MessageLite, ::grpc::protobuf::MessageLite>(channel_.get(), cq, rpcmethod_Apply_, context, request); -} - -::grpc::ClientAsyncResponseReader< ::io::deephaven::proto::backplane::grpc::HierarchicalTableApplyResponse>* HierarchicalTableService::Stub::AsyncApplyRaw(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::HierarchicalTableApplyRequest& request, ::grpc::CompletionQueue* cq) { - auto* result = - this->PrepareAsyncApplyRaw(context, request, cq); - result->StartCall(); - return result; -} - -::grpc::Status HierarchicalTableService::Stub::View(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::HierarchicalTableViewRequest& request, ::io::deephaven::proto::backplane::grpc::HierarchicalTableViewResponse* response) { - return ::grpc::internal::BlockingUnaryCall< ::io::deephaven::proto::backplane::grpc::HierarchicalTableViewRequest, ::io::deephaven::proto::backplane::grpc::HierarchicalTableViewResponse, ::grpc::protobuf::MessageLite, ::grpc::protobuf::MessageLite>(channel_.get(), rpcmethod_View_, context, request, response); -} - -void HierarchicalTableService::Stub::async::View(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::HierarchicalTableViewRequest* request, ::io::deephaven::proto::backplane::grpc::HierarchicalTableViewResponse* response, std::function f) { - ::grpc::internal::CallbackUnaryCall< ::io::deephaven::proto::backplane::grpc::HierarchicalTableViewRequest, ::io::deephaven::proto::backplane::grpc::HierarchicalTableViewResponse, ::grpc::protobuf::MessageLite, ::grpc::protobuf::MessageLite>(stub_->channel_.get(), stub_->rpcmethod_View_, context, request, response, std::move(f)); -} - -void HierarchicalTableService::Stub::async::View(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::HierarchicalTableViewRequest* request, ::io::deephaven::proto::backplane::grpc::HierarchicalTableViewResponse* response, ::grpc::ClientUnaryReactor* reactor) { - ::grpc::internal::ClientCallbackUnaryFactory::Create< ::grpc::protobuf::MessageLite, ::grpc::protobuf::MessageLite>(stub_->channel_.get(), stub_->rpcmethod_View_, context, request, response, reactor); -} - -::grpc::ClientAsyncResponseReader< ::io::deephaven::proto::backplane::grpc::HierarchicalTableViewResponse>* HierarchicalTableService::Stub::PrepareAsyncViewRaw(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::HierarchicalTableViewRequest& request, ::grpc::CompletionQueue* cq) { - return ::grpc::internal::ClientAsyncResponseReaderHelper::Create< ::io::deephaven::proto::backplane::grpc::HierarchicalTableViewResponse, ::io::deephaven::proto::backplane::grpc::HierarchicalTableViewRequest, ::grpc::protobuf::MessageLite, ::grpc::protobuf::MessageLite>(channel_.get(), cq, rpcmethod_View_, context, request); -} - -::grpc::ClientAsyncResponseReader< ::io::deephaven::proto::backplane::grpc::HierarchicalTableViewResponse>* HierarchicalTableService::Stub::AsyncViewRaw(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::HierarchicalTableViewRequest& request, ::grpc::CompletionQueue* cq) { - auto* result = - this->PrepareAsyncViewRaw(context, request, cq); - result->StartCall(); - return result; -} - -::grpc::Status HierarchicalTableService::Stub::ExportSource(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::HierarchicalTableSourceExportRequest& request, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse* response) { - return ::grpc::internal::BlockingUnaryCall< ::io::deephaven::proto::backplane::grpc::HierarchicalTableSourceExportRequest, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse, ::grpc::protobuf::MessageLite, ::grpc::protobuf::MessageLite>(channel_.get(), rpcmethod_ExportSource_, context, request, response); -} - -void HierarchicalTableService::Stub::async::ExportSource(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::HierarchicalTableSourceExportRequest* request, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse* response, std::function f) { - ::grpc::internal::CallbackUnaryCall< ::io::deephaven::proto::backplane::grpc::HierarchicalTableSourceExportRequest, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse, ::grpc::protobuf::MessageLite, ::grpc::protobuf::MessageLite>(stub_->channel_.get(), stub_->rpcmethod_ExportSource_, context, request, response, std::move(f)); -} - -void HierarchicalTableService::Stub::async::ExportSource(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::HierarchicalTableSourceExportRequest* request, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse* response, ::grpc::ClientUnaryReactor* reactor) { - ::grpc::internal::ClientCallbackUnaryFactory::Create< ::grpc::protobuf::MessageLite, ::grpc::protobuf::MessageLite>(stub_->channel_.get(), stub_->rpcmethod_ExportSource_, context, request, response, reactor); -} - -::grpc::ClientAsyncResponseReader< ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse>* HierarchicalTableService::Stub::PrepareAsyncExportSourceRaw(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::HierarchicalTableSourceExportRequest& request, ::grpc::CompletionQueue* cq) { - return ::grpc::internal::ClientAsyncResponseReaderHelper::Create< ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse, ::io::deephaven::proto::backplane::grpc::HierarchicalTableSourceExportRequest, ::grpc::protobuf::MessageLite, ::grpc::protobuf::MessageLite>(channel_.get(), cq, rpcmethod_ExportSource_, context, request); -} - -::grpc::ClientAsyncResponseReader< ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse>* HierarchicalTableService::Stub::AsyncExportSourceRaw(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::HierarchicalTableSourceExportRequest& request, ::grpc::CompletionQueue* cq) { - auto* result = - this->PrepareAsyncExportSourceRaw(context, request, cq); - result->StartCall(); - return result; -} - -HierarchicalTableService::Service::Service() { - AddMethod(new ::grpc::internal::RpcServiceMethod( - HierarchicalTableService_method_names[0], - ::grpc::internal::RpcMethod::NORMAL_RPC, - new ::grpc::internal::RpcMethodHandler< HierarchicalTableService::Service, ::io::deephaven::proto::backplane::grpc::RollupRequest, ::io::deephaven::proto::backplane::grpc::RollupResponse, ::grpc::protobuf::MessageLite, ::grpc::protobuf::MessageLite>( - [](HierarchicalTableService::Service* service, - ::grpc::ServerContext* ctx, - const ::io::deephaven::proto::backplane::grpc::RollupRequest* req, - ::io::deephaven::proto::backplane::grpc::RollupResponse* resp) { - return service->Rollup(ctx, req, resp); - }, this))); - AddMethod(new ::grpc::internal::RpcServiceMethod( - HierarchicalTableService_method_names[1], - ::grpc::internal::RpcMethod::NORMAL_RPC, - new ::grpc::internal::RpcMethodHandler< HierarchicalTableService::Service, ::io::deephaven::proto::backplane::grpc::TreeRequest, ::io::deephaven::proto::backplane::grpc::TreeResponse, ::grpc::protobuf::MessageLite, ::grpc::protobuf::MessageLite>( - [](HierarchicalTableService::Service* service, - ::grpc::ServerContext* ctx, - const ::io::deephaven::proto::backplane::grpc::TreeRequest* req, - ::io::deephaven::proto::backplane::grpc::TreeResponse* resp) { - return service->Tree(ctx, req, resp); - }, this))); - AddMethod(new ::grpc::internal::RpcServiceMethod( - HierarchicalTableService_method_names[2], - ::grpc::internal::RpcMethod::NORMAL_RPC, - new ::grpc::internal::RpcMethodHandler< HierarchicalTableService::Service, ::io::deephaven::proto::backplane::grpc::HierarchicalTableApplyRequest, ::io::deephaven::proto::backplane::grpc::HierarchicalTableApplyResponse, ::grpc::protobuf::MessageLite, ::grpc::protobuf::MessageLite>( - [](HierarchicalTableService::Service* service, - ::grpc::ServerContext* ctx, - const ::io::deephaven::proto::backplane::grpc::HierarchicalTableApplyRequest* req, - ::io::deephaven::proto::backplane::grpc::HierarchicalTableApplyResponse* resp) { - return service->Apply(ctx, req, resp); - }, this))); - AddMethod(new ::grpc::internal::RpcServiceMethod( - HierarchicalTableService_method_names[3], - ::grpc::internal::RpcMethod::NORMAL_RPC, - new ::grpc::internal::RpcMethodHandler< HierarchicalTableService::Service, ::io::deephaven::proto::backplane::grpc::HierarchicalTableViewRequest, ::io::deephaven::proto::backplane::grpc::HierarchicalTableViewResponse, ::grpc::protobuf::MessageLite, ::grpc::protobuf::MessageLite>( - [](HierarchicalTableService::Service* service, - ::grpc::ServerContext* ctx, - const ::io::deephaven::proto::backplane::grpc::HierarchicalTableViewRequest* req, - ::io::deephaven::proto::backplane::grpc::HierarchicalTableViewResponse* resp) { - return service->View(ctx, req, resp); - }, this))); - AddMethod(new ::grpc::internal::RpcServiceMethod( - HierarchicalTableService_method_names[4], - ::grpc::internal::RpcMethod::NORMAL_RPC, - new ::grpc::internal::RpcMethodHandler< HierarchicalTableService::Service, ::io::deephaven::proto::backplane::grpc::HierarchicalTableSourceExportRequest, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse, ::grpc::protobuf::MessageLite, ::grpc::protobuf::MessageLite>( - [](HierarchicalTableService::Service* service, - ::grpc::ServerContext* ctx, - const ::io::deephaven::proto::backplane::grpc::HierarchicalTableSourceExportRequest* req, - ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse* resp) { - return service->ExportSource(ctx, req, resp); - }, this))); -} - -HierarchicalTableService::Service::~Service() { -} - -::grpc::Status HierarchicalTableService::Service::Rollup(::grpc::ServerContext* context, const ::io::deephaven::proto::backplane::grpc::RollupRequest* request, ::io::deephaven::proto::backplane::grpc::RollupResponse* response) { - (void) context; - (void) request; - (void) response; - return ::grpc::Status(::grpc::StatusCode::UNIMPLEMENTED, ""); -} - -::grpc::Status HierarchicalTableService::Service::Tree(::grpc::ServerContext* context, const ::io::deephaven::proto::backplane::grpc::TreeRequest* request, ::io::deephaven::proto::backplane::grpc::TreeResponse* response) { - (void) context; - (void) request; - (void) response; - return ::grpc::Status(::grpc::StatusCode::UNIMPLEMENTED, ""); -} - -::grpc::Status HierarchicalTableService::Service::Apply(::grpc::ServerContext* context, const ::io::deephaven::proto::backplane::grpc::HierarchicalTableApplyRequest* request, ::io::deephaven::proto::backplane::grpc::HierarchicalTableApplyResponse* response) { - (void) context; - (void) request; - (void) response; - return ::grpc::Status(::grpc::StatusCode::UNIMPLEMENTED, ""); -} - -::grpc::Status HierarchicalTableService::Service::View(::grpc::ServerContext* context, const ::io::deephaven::proto::backplane::grpc::HierarchicalTableViewRequest* request, ::io::deephaven::proto::backplane::grpc::HierarchicalTableViewResponse* response) { - (void) context; - (void) request; - (void) response; - return ::grpc::Status(::grpc::StatusCode::UNIMPLEMENTED, ""); -} - -::grpc::Status HierarchicalTableService::Service::ExportSource(::grpc::ServerContext* context, const ::io::deephaven::proto::backplane::grpc::HierarchicalTableSourceExportRequest* request, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse* response) { - (void) context; - (void) request; - (void) response; - return ::grpc::Status(::grpc::StatusCode::UNIMPLEMENTED, ""); -} - - -} // namespace io -} // namespace deephaven -} // namespace proto -} // namespace backplane -} // namespace grpc - diff --git a/cpp-client/deephaven/dhclient/proto/deephaven/proto/hierarchicaltable.grpc.pb.h b/cpp-client/deephaven/dhclient/proto/deephaven/proto/hierarchicaltable.grpc.pb.h deleted file mode 100644 index ea1c9d65936..00000000000 --- a/cpp-client/deephaven/dhclient/proto/deephaven/proto/hierarchicaltable.grpc.pb.h +++ /dev/null @@ -1,902 +0,0 @@ -// Generated by the gRPC C++ plugin. -// If you make any local change, they will be lost. -// source: deephaven/proto/hierarchicaltable.proto -// Original file comments: -// -// Copyright (c) 2016-2021 Deephaven Data Labs and Patent Pending -// -#ifndef GRPC_deephaven_2fproto_2fhierarchicaltable_2eproto__INCLUDED -#define GRPC_deephaven_2fproto_2fhierarchicaltable_2eproto__INCLUDED - -#include "deephaven/proto/hierarchicaltable.pb.h" - -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include - -namespace io { -namespace deephaven { -namespace proto { -namespace backplane { -namespace grpc { - -// This service provides tools to create and view hierarchical tables (rollups and trees). -class HierarchicalTableService final { - public: - static constexpr char const* service_full_name() { - return "io.deephaven.proto.backplane.grpc.HierarchicalTableService"; - } - class StubInterface { - public: - virtual ~StubInterface() {} - // Applies a rollup operation to a Table and exports the resulting RollupTable - virtual ::grpc::Status Rollup(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::RollupRequest& request, ::io::deephaven::proto::backplane::grpc::RollupResponse* response) = 0; - std::unique_ptr< ::grpc::ClientAsyncResponseReaderInterface< ::io::deephaven::proto::backplane::grpc::RollupResponse>> AsyncRollup(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::RollupRequest& request, ::grpc::CompletionQueue* cq) { - return std::unique_ptr< ::grpc::ClientAsyncResponseReaderInterface< ::io::deephaven::proto::backplane::grpc::RollupResponse>>(AsyncRollupRaw(context, request, cq)); - } - std::unique_ptr< ::grpc::ClientAsyncResponseReaderInterface< ::io::deephaven::proto::backplane::grpc::RollupResponse>> PrepareAsyncRollup(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::RollupRequest& request, ::grpc::CompletionQueue* cq) { - return std::unique_ptr< ::grpc::ClientAsyncResponseReaderInterface< ::io::deephaven::proto::backplane::grpc::RollupResponse>>(PrepareAsyncRollupRaw(context, request, cq)); - } - // Applies a tree operation to a Table and exports the resulting TreeTable - virtual ::grpc::Status Tree(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::TreeRequest& request, ::io::deephaven::proto::backplane::grpc::TreeResponse* response) = 0; - std::unique_ptr< ::grpc::ClientAsyncResponseReaderInterface< ::io::deephaven::proto::backplane::grpc::TreeResponse>> AsyncTree(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::TreeRequest& request, ::grpc::CompletionQueue* cq) { - return std::unique_ptr< ::grpc::ClientAsyncResponseReaderInterface< ::io::deephaven::proto::backplane::grpc::TreeResponse>>(AsyncTreeRaw(context, request, cq)); - } - std::unique_ptr< ::grpc::ClientAsyncResponseReaderInterface< ::io::deephaven::proto::backplane::grpc::TreeResponse>> PrepareAsyncTree(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::TreeRequest& request, ::grpc::CompletionQueue* cq) { - return std::unique_ptr< ::grpc::ClientAsyncResponseReaderInterface< ::io::deephaven::proto::backplane::grpc::TreeResponse>>(PrepareAsyncTreeRaw(context, request, cq)); - } - // Applies operations to an existing HierarchicalTable (RollupTable or TreeTable) and exports the resulting - // HierarchicalTable - virtual ::grpc::Status Apply(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::HierarchicalTableApplyRequest& request, ::io::deephaven::proto::backplane::grpc::HierarchicalTableApplyResponse* response) = 0; - std::unique_ptr< ::grpc::ClientAsyncResponseReaderInterface< ::io::deephaven::proto::backplane::grpc::HierarchicalTableApplyResponse>> AsyncApply(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::HierarchicalTableApplyRequest& request, ::grpc::CompletionQueue* cq) { - return std::unique_ptr< ::grpc::ClientAsyncResponseReaderInterface< ::io::deephaven::proto::backplane::grpc::HierarchicalTableApplyResponse>>(AsyncApplyRaw(context, request, cq)); - } - std::unique_ptr< ::grpc::ClientAsyncResponseReaderInterface< ::io::deephaven::proto::backplane::grpc::HierarchicalTableApplyResponse>> PrepareAsyncApply(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::HierarchicalTableApplyRequest& request, ::grpc::CompletionQueue* cq) { - return std::unique_ptr< ::grpc::ClientAsyncResponseReaderInterface< ::io::deephaven::proto::backplane::grpc::HierarchicalTableApplyResponse>>(PrepareAsyncApplyRaw(context, request, cq)); - } - // Creates a view associating a Table of expansion keys and actions with an existing HierarchicalTable and exports - // the resulting HierarchicalTableView for subsequent snapshot or subscription requests - virtual ::grpc::Status View(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::HierarchicalTableViewRequest& request, ::io::deephaven::proto::backplane::grpc::HierarchicalTableViewResponse* response) = 0; - std::unique_ptr< ::grpc::ClientAsyncResponseReaderInterface< ::io::deephaven::proto::backplane::grpc::HierarchicalTableViewResponse>> AsyncView(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::HierarchicalTableViewRequest& request, ::grpc::CompletionQueue* cq) { - return std::unique_ptr< ::grpc::ClientAsyncResponseReaderInterface< ::io::deephaven::proto::backplane::grpc::HierarchicalTableViewResponse>>(AsyncViewRaw(context, request, cq)); - } - std::unique_ptr< ::grpc::ClientAsyncResponseReaderInterface< ::io::deephaven::proto::backplane::grpc::HierarchicalTableViewResponse>> PrepareAsyncView(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::HierarchicalTableViewRequest& request, ::grpc::CompletionQueue* cq) { - return std::unique_ptr< ::grpc::ClientAsyncResponseReaderInterface< ::io::deephaven::proto::backplane::grpc::HierarchicalTableViewResponse>>(PrepareAsyncViewRaw(context, request, cq)); - } - // Exports the source Table for a HierarchicalTable (Rollup or TreeTable) - virtual ::grpc::Status ExportSource(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::HierarchicalTableSourceExportRequest& request, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse* response) = 0; - std::unique_ptr< ::grpc::ClientAsyncResponseReaderInterface< ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse>> AsyncExportSource(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::HierarchicalTableSourceExportRequest& request, ::grpc::CompletionQueue* cq) { - return std::unique_ptr< ::grpc::ClientAsyncResponseReaderInterface< ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse>>(AsyncExportSourceRaw(context, request, cq)); - } - std::unique_ptr< ::grpc::ClientAsyncResponseReaderInterface< ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse>> PrepareAsyncExportSource(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::HierarchicalTableSourceExportRequest& request, ::grpc::CompletionQueue* cq) { - return std::unique_ptr< ::grpc::ClientAsyncResponseReaderInterface< ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse>>(PrepareAsyncExportSourceRaw(context, request, cq)); - } - class async_interface { - public: - virtual ~async_interface() {} - // Applies a rollup operation to a Table and exports the resulting RollupTable - virtual void Rollup(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::RollupRequest* request, ::io::deephaven::proto::backplane::grpc::RollupResponse* response, std::function) = 0; - virtual void Rollup(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::RollupRequest* request, ::io::deephaven::proto::backplane::grpc::RollupResponse* response, ::grpc::ClientUnaryReactor* reactor) = 0; - // Applies a tree operation to a Table and exports the resulting TreeTable - virtual void Tree(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::TreeRequest* request, ::io::deephaven::proto::backplane::grpc::TreeResponse* response, std::function) = 0; - virtual void Tree(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::TreeRequest* request, ::io::deephaven::proto::backplane::grpc::TreeResponse* response, ::grpc::ClientUnaryReactor* reactor) = 0; - // Applies operations to an existing HierarchicalTable (RollupTable or TreeTable) and exports the resulting - // HierarchicalTable - virtual void Apply(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::HierarchicalTableApplyRequest* request, ::io::deephaven::proto::backplane::grpc::HierarchicalTableApplyResponse* response, std::function) = 0; - virtual void Apply(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::HierarchicalTableApplyRequest* request, ::io::deephaven::proto::backplane::grpc::HierarchicalTableApplyResponse* response, ::grpc::ClientUnaryReactor* reactor) = 0; - // Creates a view associating a Table of expansion keys and actions with an existing HierarchicalTable and exports - // the resulting HierarchicalTableView for subsequent snapshot or subscription requests - virtual void View(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::HierarchicalTableViewRequest* request, ::io::deephaven::proto::backplane::grpc::HierarchicalTableViewResponse* response, std::function) = 0; - virtual void View(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::HierarchicalTableViewRequest* request, ::io::deephaven::proto::backplane::grpc::HierarchicalTableViewResponse* response, ::grpc::ClientUnaryReactor* reactor) = 0; - // Exports the source Table for a HierarchicalTable (Rollup or TreeTable) - virtual void ExportSource(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::HierarchicalTableSourceExportRequest* request, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse* response, std::function) = 0; - virtual void ExportSource(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::HierarchicalTableSourceExportRequest* request, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse* response, ::grpc::ClientUnaryReactor* reactor) = 0; - }; - typedef class async_interface experimental_async_interface; - virtual class async_interface* async() { return nullptr; } - class async_interface* experimental_async() { return async(); } - private: - virtual ::grpc::ClientAsyncResponseReaderInterface< ::io::deephaven::proto::backplane::grpc::RollupResponse>* AsyncRollupRaw(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::RollupRequest& request, ::grpc::CompletionQueue* cq) = 0; - virtual ::grpc::ClientAsyncResponseReaderInterface< ::io::deephaven::proto::backplane::grpc::RollupResponse>* PrepareAsyncRollupRaw(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::RollupRequest& request, ::grpc::CompletionQueue* cq) = 0; - virtual ::grpc::ClientAsyncResponseReaderInterface< ::io::deephaven::proto::backplane::grpc::TreeResponse>* AsyncTreeRaw(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::TreeRequest& request, ::grpc::CompletionQueue* cq) = 0; - virtual ::grpc::ClientAsyncResponseReaderInterface< ::io::deephaven::proto::backplane::grpc::TreeResponse>* PrepareAsyncTreeRaw(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::TreeRequest& request, ::grpc::CompletionQueue* cq) = 0; - virtual ::grpc::ClientAsyncResponseReaderInterface< ::io::deephaven::proto::backplane::grpc::HierarchicalTableApplyResponse>* AsyncApplyRaw(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::HierarchicalTableApplyRequest& request, ::grpc::CompletionQueue* cq) = 0; - virtual ::grpc::ClientAsyncResponseReaderInterface< ::io::deephaven::proto::backplane::grpc::HierarchicalTableApplyResponse>* PrepareAsyncApplyRaw(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::HierarchicalTableApplyRequest& request, ::grpc::CompletionQueue* cq) = 0; - virtual ::grpc::ClientAsyncResponseReaderInterface< ::io::deephaven::proto::backplane::grpc::HierarchicalTableViewResponse>* AsyncViewRaw(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::HierarchicalTableViewRequest& request, ::grpc::CompletionQueue* cq) = 0; - virtual ::grpc::ClientAsyncResponseReaderInterface< ::io::deephaven::proto::backplane::grpc::HierarchicalTableViewResponse>* PrepareAsyncViewRaw(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::HierarchicalTableViewRequest& request, ::grpc::CompletionQueue* cq) = 0; - virtual ::grpc::ClientAsyncResponseReaderInterface< ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse>* AsyncExportSourceRaw(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::HierarchicalTableSourceExportRequest& request, ::grpc::CompletionQueue* cq) = 0; - virtual ::grpc::ClientAsyncResponseReaderInterface< ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse>* PrepareAsyncExportSourceRaw(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::HierarchicalTableSourceExportRequest& request, ::grpc::CompletionQueue* cq) = 0; - }; - class Stub final : public StubInterface { - public: - Stub(const std::shared_ptr< ::grpc::ChannelInterface>& channel, const ::grpc::StubOptions& options = ::grpc::StubOptions()); - ::grpc::Status Rollup(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::RollupRequest& request, ::io::deephaven::proto::backplane::grpc::RollupResponse* response) override; - std::unique_ptr< ::grpc::ClientAsyncResponseReader< ::io::deephaven::proto::backplane::grpc::RollupResponse>> AsyncRollup(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::RollupRequest& request, ::grpc::CompletionQueue* cq) { - return std::unique_ptr< ::grpc::ClientAsyncResponseReader< ::io::deephaven::proto::backplane::grpc::RollupResponse>>(AsyncRollupRaw(context, request, cq)); - } - std::unique_ptr< ::grpc::ClientAsyncResponseReader< ::io::deephaven::proto::backplane::grpc::RollupResponse>> PrepareAsyncRollup(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::RollupRequest& request, ::grpc::CompletionQueue* cq) { - return std::unique_ptr< ::grpc::ClientAsyncResponseReader< ::io::deephaven::proto::backplane::grpc::RollupResponse>>(PrepareAsyncRollupRaw(context, request, cq)); - } - ::grpc::Status Tree(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::TreeRequest& request, ::io::deephaven::proto::backplane::grpc::TreeResponse* response) override; - std::unique_ptr< ::grpc::ClientAsyncResponseReader< ::io::deephaven::proto::backplane::grpc::TreeResponse>> AsyncTree(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::TreeRequest& request, ::grpc::CompletionQueue* cq) { - return std::unique_ptr< ::grpc::ClientAsyncResponseReader< ::io::deephaven::proto::backplane::grpc::TreeResponse>>(AsyncTreeRaw(context, request, cq)); - } - std::unique_ptr< ::grpc::ClientAsyncResponseReader< ::io::deephaven::proto::backplane::grpc::TreeResponse>> PrepareAsyncTree(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::TreeRequest& request, ::grpc::CompletionQueue* cq) { - return std::unique_ptr< ::grpc::ClientAsyncResponseReader< ::io::deephaven::proto::backplane::grpc::TreeResponse>>(PrepareAsyncTreeRaw(context, request, cq)); - } - ::grpc::Status Apply(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::HierarchicalTableApplyRequest& request, ::io::deephaven::proto::backplane::grpc::HierarchicalTableApplyResponse* response) override; - std::unique_ptr< ::grpc::ClientAsyncResponseReader< ::io::deephaven::proto::backplane::grpc::HierarchicalTableApplyResponse>> AsyncApply(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::HierarchicalTableApplyRequest& request, ::grpc::CompletionQueue* cq) { - return std::unique_ptr< ::grpc::ClientAsyncResponseReader< ::io::deephaven::proto::backplane::grpc::HierarchicalTableApplyResponse>>(AsyncApplyRaw(context, request, cq)); - } - std::unique_ptr< ::grpc::ClientAsyncResponseReader< ::io::deephaven::proto::backplane::grpc::HierarchicalTableApplyResponse>> PrepareAsyncApply(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::HierarchicalTableApplyRequest& request, ::grpc::CompletionQueue* cq) { - return std::unique_ptr< ::grpc::ClientAsyncResponseReader< ::io::deephaven::proto::backplane::grpc::HierarchicalTableApplyResponse>>(PrepareAsyncApplyRaw(context, request, cq)); - } - ::grpc::Status View(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::HierarchicalTableViewRequest& request, ::io::deephaven::proto::backplane::grpc::HierarchicalTableViewResponse* response) override; - std::unique_ptr< ::grpc::ClientAsyncResponseReader< ::io::deephaven::proto::backplane::grpc::HierarchicalTableViewResponse>> AsyncView(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::HierarchicalTableViewRequest& request, ::grpc::CompletionQueue* cq) { - return std::unique_ptr< ::grpc::ClientAsyncResponseReader< ::io::deephaven::proto::backplane::grpc::HierarchicalTableViewResponse>>(AsyncViewRaw(context, request, cq)); - } - std::unique_ptr< ::grpc::ClientAsyncResponseReader< ::io::deephaven::proto::backplane::grpc::HierarchicalTableViewResponse>> PrepareAsyncView(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::HierarchicalTableViewRequest& request, ::grpc::CompletionQueue* cq) { - return std::unique_ptr< ::grpc::ClientAsyncResponseReader< ::io::deephaven::proto::backplane::grpc::HierarchicalTableViewResponse>>(PrepareAsyncViewRaw(context, request, cq)); - } - ::grpc::Status ExportSource(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::HierarchicalTableSourceExportRequest& request, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse* response) override; - std::unique_ptr< ::grpc::ClientAsyncResponseReader< ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse>> AsyncExportSource(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::HierarchicalTableSourceExportRequest& request, ::grpc::CompletionQueue* cq) { - return std::unique_ptr< ::grpc::ClientAsyncResponseReader< ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse>>(AsyncExportSourceRaw(context, request, cq)); - } - std::unique_ptr< ::grpc::ClientAsyncResponseReader< ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse>> PrepareAsyncExportSource(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::HierarchicalTableSourceExportRequest& request, ::grpc::CompletionQueue* cq) { - return std::unique_ptr< ::grpc::ClientAsyncResponseReader< ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse>>(PrepareAsyncExportSourceRaw(context, request, cq)); - } - class async final : - public StubInterface::async_interface { - public: - void Rollup(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::RollupRequest* request, ::io::deephaven::proto::backplane::grpc::RollupResponse* response, std::function) override; - void Rollup(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::RollupRequest* request, ::io::deephaven::proto::backplane::grpc::RollupResponse* response, ::grpc::ClientUnaryReactor* reactor) override; - void Tree(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::TreeRequest* request, ::io::deephaven::proto::backplane::grpc::TreeResponse* response, std::function) override; - void Tree(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::TreeRequest* request, ::io::deephaven::proto::backplane::grpc::TreeResponse* response, ::grpc::ClientUnaryReactor* reactor) override; - void Apply(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::HierarchicalTableApplyRequest* request, ::io::deephaven::proto::backplane::grpc::HierarchicalTableApplyResponse* response, std::function) override; - void Apply(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::HierarchicalTableApplyRequest* request, ::io::deephaven::proto::backplane::grpc::HierarchicalTableApplyResponse* response, ::grpc::ClientUnaryReactor* reactor) override; - void View(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::HierarchicalTableViewRequest* request, ::io::deephaven::proto::backplane::grpc::HierarchicalTableViewResponse* response, std::function) override; - void View(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::HierarchicalTableViewRequest* request, ::io::deephaven::proto::backplane::grpc::HierarchicalTableViewResponse* response, ::grpc::ClientUnaryReactor* reactor) override; - void ExportSource(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::HierarchicalTableSourceExportRequest* request, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse* response, std::function) override; - void ExportSource(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::HierarchicalTableSourceExportRequest* request, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse* response, ::grpc::ClientUnaryReactor* reactor) override; - private: - friend class Stub; - explicit async(Stub* stub): stub_(stub) { } - Stub* stub() { return stub_; } - Stub* stub_; - }; - class async* async() override { return &async_stub_; } - - private: - std::shared_ptr< ::grpc::ChannelInterface> channel_; - class async async_stub_{this}; - ::grpc::ClientAsyncResponseReader< ::io::deephaven::proto::backplane::grpc::RollupResponse>* AsyncRollupRaw(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::RollupRequest& request, ::grpc::CompletionQueue* cq) override; - ::grpc::ClientAsyncResponseReader< ::io::deephaven::proto::backplane::grpc::RollupResponse>* PrepareAsyncRollupRaw(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::RollupRequest& request, ::grpc::CompletionQueue* cq) override; - ::grpc::ClientAsyncResponseReader< ::io::deephaven::proto::backplane::grpc::TreeResponse>* AsyncTreeRaw(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::TreeRequest& request, ::grpc::CompletionQueue* cq) override; - ::grpc::ClientAsyncResponseReader< ::io::deephaven::proto::backplane::grpc::TreeResponse>* PrepareAsyncTreeRaw(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::TreeRequest& request, ::grpc::CompletionQueue* cq) override; - ::grpc::ClientAsyncResponseReader< ::io::deephaven::proto::backplane::grpc::HierarchicalTableApplyResponse>* AsyncApplyRaw(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::HierarchicalTableApplyRequest& request, ::grpc::CompletionQueue* cq) override; - ::grpc::ClientAsyncResponseReader< ::io::deephaven::proto::backplane::grpc::HierarchicalTableApplyResponse>* PrepareAsyncApplyRaw(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::HierarchicalTableApplyRequest& request, ::grpc::CompletionQueue* cq) override; - ::grpc::ClientAsyncResponseReader< ::io::deephaven::proto::backplane::grpc::HierarchicalTableViewResponse>* AsyncViewRaw(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::HierarchicalTableViewRequest& request, ::grpc::CompletionQueue* cq) override; - ::grpc::ClientAsyncResponseReader< ::io::deephaven::proto::backplane::grpc::HierarchicalTableViewResponse>* PrepareAsyncViewRaw(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::HierarchicalTableViewRequest& request, ::grpc::CompletionQueue* cq) override; - ::grpc::ClientAsyncResponseReader< ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse>* AsyncExportSourceRaw(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::HierarchicalTableSourceExportRequest& request, ::grpc::CompletionQueue* cq) override; - ::grpc::ClientAsyncResponseReader< ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse>* PrepareAsyncExportSourceRaw(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::HierarchicalTableSourceExportRequest& request, ::grpc::CompletionQueue* cq) override; - const ::grpc::internal::RpcMethod rpcmethod_Rollup_; - const ::grpc::internal::RpcMethod rpcmethod_Tree_; - const ::grpc::internal::RpcMethod rpcmethod_Apply_; - const ::grpc::internal::RpcMethod rpcmethod_View_; - const ::grpc::internal::RpcMethod rpcmethod_ExportSource_; - }; - static std::unique_ptr NewStub(const std::shared_ptr< ::grpc::ChannelInterface>& channel, const ::grpc::StubOptions& options = ::grpc::StubOptions()); - - class Service : public ::grpc::Service { - public: - Service(); - virtual ~Service(); - // Applies a rollup operation to a Table and exports the resulting RollupTable - virtual ::grpc::Status Rollup(::grpc::ServerContext* context, const ::io::deephaven::proto::backplane::grpc::RollupRequest* request, ::io::deephaven::proto::backplane::grpc::RollupResponse* response); - // Applies a tree operation to a Table and exports the resulting TreeTable - virtual ::grpc::Status Tree(::grpc::ServerContext* context, const ::io::deephaven::proto::backplane::grpc::TreeRequest* request, ::io::deephaven::proto::backplane::grpc::TreeResponse* response); - // Applies operations to an existing HierarchicalTable (RollupTable or TreeTable) and exports the resulting - // HierarchicalTable - virtual ::grpc::Status Apply(::grpc::ServerContext* context, const ::io::deephaven::proto::backplane::grpc::HierarchicalTableApplyRequest* request, ::io::deephaven::proto::backplane::grpc::HierarchicalTableApplyResponse* response); - // Creates a view associating a Table of expansion keys and actions with an existing HierarchicalTable and exports - // the resulting HierarchicalTableView for subsequent snapshot or subscription requests - virtual ::grpc::Status View(::grpc::ServerContext* context, const ::io::deephaven::proto::backplane::grpc::HierarchicalTableViewRequest* request, ::io::deephaven::proto::backplane::grpc::HierarchicalTableViewResponse* response); - // Exports the source Table for a HierarchicalTable (Rollup or TreeTable) - virtual ::grpc::Status ExportSource(::grpc::ServerContext* context, const ::io::deephaven::proto::backplane::grpc::HierarchicalTableSourceExportRequest* request, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse* response); - }; - template - class WithAsyncMethod_Rollup : public BaseClass { - private: - void BaseClassMustBeDerivedFromService(const Service* /*service*/) {} - public: - WithAsyncMethod_Rollup() { - ::grpc::Service::MarkMethodAsync(0); - } - ~WithAsyncMethod_Rollup() override { - BaseClassMustBeDerivedFromService(this); - } - // disable synchronous version of this method - ::grpc::Status Rollup(::grpc::ServerContext* /*context*/, const ::io::deephaven::proto::backplane::grpc::RollupRequest* /*request*/, ::io::deephaven::proto::backplane::grpc::RollupResponse* /*response*/) override { - abort(); - return ::grpc::Status(::grpc::StatusCode::UNIMPLEMENTED, ""); - } - void RequestRollup(::grpc::ServerContext* context, ::io::deephaven::proto::backplane::grpc::RollupRequest* request, ::grpc::ServerAsyncResponseWriter< ::io::deephaven::proto::backplane::grpc::RollupResponse>* response, ::grpc::CompletionQueue* new_call_cq, ::grpc::ServerCompletionQueue* notification_cq, void *tag) { - ::grpc::Service::RequestAsyncUnary(0, context, request, response, new_call_cq, notification_cq, tag); - } - }; - template - class WithAsyncMethod_Tree : public BaseClass { - private: - void BaseClassMustBeDerivedFromService(const Service* /*service*/) {} - public: - WithAsyncMethod_Tree() { - ::grpc::Service::MarkMethodAsync(1); - } - ~WithAsyncMethod_Tree() override { - BaseClassMustBeDerivedFromService(this); - } - // disable synchronous version of this method - ::grpc::Status Tree(::grpc::ServerContext* /*context*/, const ::io::deephaven::proto::backplane::grpc::TreeRequest* /*request*/, ::io::deephaven::proto::backplane::grpc::TreeResponse* /*response*/) override { - abort(); - return ::grpc::Status(::grpc::StatusCode::UNIMPLEMENTED, ""); - } - void RequestTree(::grpc::ServerContext* context, ::io::deephaven::proto::backplane::grpc::TreeRequest* request, ::grpc::ServerAsyncResponseWriter< ::io::deephaven::proto::backplane::grpc::TreeResponse>* response, ::grpc::CompletionQueue* new_call_cq, ::grpc::ServerCompletionQueue* notification_cq, void *tag) { - ::grpc::Service::RequestAsyncUnary(1, context, request, response, new_call_cq, notification_cq, tag); - } - }; - template - class WithAsyncMethod_Apply : public BaseClass { - private: - void BaseClassMustBeDerivedFromService(const Service* /*service*/) {} - public: - WithAsyncMethod_Apply() { - ::grpc::Service::MarkMethodAsync(2); - } - ~WithAsyncMethod_Apply() override { - BaseClassMustBeDerivedFromService(this); - } - // disable synchronous version of this method - ::grpc::Status Apply(::grpc::ServerContext* /*context*/, const ::io::deephaven::proto::backplane::grpc::HierarchicalTableApplyRequest* /*request*/, ::io::deephaven::proto::backplane::grpc::HierarchicalTableApplyResponse* /*response*/) override { - abort(); - return ::grpc::Status(::grpc::StatusCode::UNIMPLEMENTED, ""); - } - void RequestApply(::grpc::ServerContext* context, ::io::deephaven::proto::backplane::grpc::HierarchicalTableApplyRequest* request, ::grpc::ServerAsyncResponseWriter< ::io::deephaven::proto::backplane::grpc::HierarchicalTableApplyResponse>* response, ::grpc::CompletionQueue* new_call_cq, ::grpc::ServerCompletionQueue* notification_cq, void *tag) { - ::grpc::Service::RequestAsyncUnary(2, context, request, response, new_call_cq, notification_cq, tag); - } - }; - template - class WithAsyncMethod_View : public BaseClass { - private: - void BaseClassMustBeDerivedFromService(const Service* /*service*/) {} - public: - WithAsyncMethod_View() { - ::grpc::Service::MarkMethodAsync(3); - } - ~WithAsyncMethod_View() override { - BaseClassMustBeDerivedFromService(this); - } - // disable synchronous version of this method - ::grpc::Status View(::grpc::ServerContext* /*context*/, const ::io::deephaven::proto::backplane::grpc::HierarchicalTableViewRequest* /*request*/, ::io::deephaven::proto::backplane::grpc::HierarchicalTableViewResponse* /*response*/) override { - abort(); - return ::grpc::Status(::grpc::StatusCode::UNIMPLEMENTED, ""); - } - void RequestView(::grpc::ServerContext* context, ::io::deephaven::proto::backplane::grpc::HierarchicalTableViewRequest* request, ::grpc::ServerAsyncResponseWriter< ::io::deephaven::proto::backplane::grpc::HierarchicalTableViewResponse>* response, ::grpc::CompletionQueue* new_call_cq, ::grpc::ServerCompletionQueue* notification_cq, void *tag) { - ::grpc::Service::RequestAsyncUnary(3, context, request, response, new_call_cq, notification_cq, tag); - } - }; - template - class WithAsyncMethod_ExportSource : public BaseClass { - private: - void BaseClassMustBeDerivedFromService(const Service* /*service*/) {} - public: - WithAsyncMethod_ExportSource() { - ::grpc::Service::MarkMethodAsync(4); - } - ~WithAsyncMethod_ExportSource() override { - BaseClassMustBeDerivedFromService(this); - } - // disable synchronous version of this method - ::grpc::Status ExportSource(::grpc::ServerContext* /*context*/, const ::io::deephaven::proto::backplane::grpc::HierarchicalTableSourceExportRequest* /*request*/, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse* /*response*/) override { - abort(); - return ::grpc::Status(::grpc::StatusCode::UNIMPLEMENTED, ""); - } - void RequestExportSource(::grpc::ServerContext* context, ::io::deephaven::proto::backplane::grpc::HierarchicalTableSourceExportRequest* request, ::grpc::ServerAsyncResponseWriter< ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse>* response, ::grpc::CompletionQueue* new_call_cq, ::grpc::ServerCompletionQueue* notification_cq, void *tag) { - ::grpc::Service::RequestAsyncUnary(4, context, request, response, new_call_cq, notification_cq, tag); - } - }; - typedef WithAsyncMethod_Rollup > > > > AsyncService; - template - class WithCallbackMethod_Rollup : public BaseClass { - private: - void BaseClassMustBeDerivedFromService(const Service* /*service*/) {} - public: - WithCallbackMethod_Rollup() { - ::grpc::Service::MarkMethodCallback(0, - new ::grpc::internal::CallbackUnaryHandler< ::io::deephaven::proto::backplane::grpc::RollupRequest, ::io::deephaven::proto::backplane::grpc::RollupResponse>( - [this]( - ::grpc::CallbackServerContext* context, const ::io::deephaven::proto::backplane::grpc::RollupRequest* request, ::io::deephaven::proto::backplane::grpc::RollupResponse* response) { return this->Rollup(context, request, response); }));} - void SetMessageAllocatorFor_Rollup( - ::grpc::MessageAllocator< ::io::deephaven::proto::backplane::grpc::RollupRequest, ::io::deephaven::proto::backplane::grpc::RollupResponse>* allocator) { - ::grpc::internal::MethodHandler* const handler = ::grpc::Service::GetHandler(0); - static_cast<::grpc::internal::CallbackUnaryHandler< ::io::deephaven::proto::backplane::grpc::RollupRequest, ::io::deephaven::proto::backplane::grpc::RollupResponse>*>(handler) - ->SetMessageAllocator(allocator); - } - ~WithCallbackMethod_Rollup() override { - BaseClassMustBeDerivedFromService(this); - } - // disable synchronous version of this method - ::grpc::Status Rollup(::grpc::ServerContext* /*context*/, const ::io::deephaven::proto::backplane::grpc::RollupRequest* /*request*/, ::io::deephaven::proto::backplane::grpc::RollupResponse* /*response*/) override { - abort(); - return ::grpc::Status(::grpc::StatusCode::UNIMPLEMENTED, ""); - } - virtual ::grpc::ServerUnaryReactor* Rollup( - ::grpc::CallbackServerContext* /*context*/, const ::io::deephaven::proto::backplane::grpc::RollupRequest* /*request*/, ::io::deephaven::proto::backplane::grpc::RollupResponse* /*response*/) { return nullptr; } - }; - template - class WithCallbackMethod_Tree : public BaseClass { - private: - void BaseClassMustBeDerivedFromService(const Service* /*service*/) {} - public: - WithCallbackMethod_Tree() { - ::grpc::Service::MarkMethodCallback(1, - new ::grpc::internal::CallbackUnaryHandler< ::io::deephaven::proto::backplane::grpc::TreeRequest, ::io::deephaven::proto::backplane::grpc::TreeResponse>( - [this]( - ::grpc::CallbackServerContext* context, const ::io::deephaven::proto::backplane::grpc::TreeRequest* request, ::io::deephaven::proto::backplane::grpc::TreeResponse* response) { return this->Tree(context, request, response); }));} - void SetMessageAllocatorFor_Tree( - ::grpc::MessageAllocator< ::io::deephaven::proto::backplane::grpc::TreeRequest, ::io::deephaven::proto::backplane::grpc::TreeResponse>* allocator) { - ::grpc::internal::MethodHandler* const handler = ::grpc::Service::GetHandler(1); - static_cast<::grpc::internal::CallbackUnaryHandler< ::io::deephaven::proto::backplane::grpc::TreeRequest, ::io::deephaven::proto::backplane::grpc::TreeResponse>*>(handler) - ->SetMessageAllocator(allocator); - } - ~WithCallbackMethod_Tree() override { - BaseClassMustBeDerivedFromService(this); - } - // disable synchronous version of this method - ::grpc::Status Tree(::grpc::ServerContext* /*context*/, const ::io::deephaven::proto::backplane::grpc::TreeRequest* /*request*/, ::io::deephaven::proto::backplane::grpc::TreeResponse* /*response*/) override { - abort(); - return ::grpc::Status(::grpc::StatusCode::UNIMPLEMENTED, ""); - } - virtual ::grpc::ServerUnaryReactor* Tree( - ::grpc::CallbackServerContext* /*context*/, const ::io::deephaven::proto::backplane::grpc::TreeRequest* /*request*/, ::io::deephaven::proto::backplane::grpc::TreeResponse* /*response*/) { return nullptr; } - }; - template - class WithCallbackMethod_Apply : public BaseClass { - private: - void BaseClassMustBeDerivedFromService(const Service* /*service*/) {} - public: - WithCallbackMethod_Apply() { - ::grpc::Service::MarkMethodCallback(2, - new ::grpc::internal::CallbackUnaryHandler< ::io::deephaven::proto::backplane::grpc::HierarchicalTableApplyRequest, ::io::deephaven::proto::backplane::grpc::HierarchicalTableApplyResponse>( - [this]( - ::grpc::CallbackServerContext* context, const ::io::deephaven::proto::backplane::grpc::HierarchicalTableApplyRequest* request, ::io::deephaven::proto::backplane::grpc::HierarchicalTableApplyResponse* response) { return this->Apply(context, request, response); }));} - void SetMessageAllocatorFor_Apply( - ::grpc::MessageAllocator< ::io::deephaven::proto::backplane::grpc::HierarchicalTableApplyRequest, ::io::deephaven::proto::backplane::grpc::HierarchicalTableApplyResponse>* allocator) { - ::grpc::internal::MethodHandler* const handler = ::grpc::Service::GetHandler(2); - static_cast<::grpc::internal::CallbackUnaryHandler< ::io::deephaven::proto::backplane::grpc::HierarchicalTableApplyRequest, ::io::deephaven::proto::backplane::grpc::HierarchicalTableApplyResponse>*>(handler) - ->SetMessageAllocator(allocator); - } - ~WithCallbackMethod_Apply() override { - BaseClassMustBeDerivedFromService(this); - } - // disable synchronous version of this method - ::grpc::Status Apply(::grpc::ServerContext* /*context*/, const ::io::deephaven::proto::backplane::grpc::HierarchicalTableApplyRequest* /*request*/, ::io::deephaven::proto::backplane::grpc::HierarchicalTableApplyResponse* /*response*/) override { - abort(); - return ::grpc::Status(::grpc::StatusCode::UNIMPLEMENTED, ""); - } - virtual ::grpc::ServerUnaryReactor* Apply( - ::grpc::CallbackServerContext* /*context*/, const ::io::deephaven::proto::backplane::grpc::HierarchicalTableApplyRequest* /*request*/, ::io::deephaven::proto::backplane::grpc::HierarchicalTableApplyResponse* /*response*/) { return nullptr; } - }; - template - class WithCallbackMethod_View : public BaseClass { - private: - void BaseClassMustBeDerivedFromService(const Service* /*service*/) {} - public: - WithCallbackMethod_View() { - ::grpc::Service::MarkMethodCallback(3, - new ::grpc::internal::CallbackUnaryHandler< ::io::deephaven::proto::backplane::grpc::HierarchicalTableViewRequest, ::io::deephaven::proto::backplane::grpc::HierarchicalTableViewResponse>( - [this]( - ::grpc::CallbackServerContext* context, const ::io::deephaven::proto::backplane::grpc::HierarchicalTableViewRequest* request, ::io::deephaven::proto::backplane::grpc::HierarchicalTableViewResponse* response) { return this->View(context, request, response); }));} - void SetMessageAllocatorFor_View( - ::grpc::MessageAllocator< ::io::deephaven::proto::backplane::grpc::HierarchicalTableViewRequest, ::io::deephaven::proto::backplane::grpc::HierarchicalTableViewResponse>* allocator) { - ::grpc::internal::MethodHandler* const handler = ::grpc::Service::GetHandler(3); - static_cast<::grpc::internal::CallbackUnaryHandler< ::io::deephaven::proto::backplane::grpc::HierarchicalTableViewRequest, ::io::deephaven::proto::backplane::grpc::HierarchicalTableViewResponse>*>(handler) - ->SetMessageAllocator(allocator); - } - ~WithCallbackMethod_View() override { - BaseClassMustBeDerivedFromService(this); - } - // disable synchronous version of this method - ::grpc::Status View(::grpc::ServerContext* /*context*/, const ::io::deephaven::proto::backplane::grpc::HierarchicalTableViewRequest* /*request*/, ::io::deephaven::proto::backplane::grpc::HierarchicalTableViewResponse* /*response*/) override { - abort(); - return ::grpc::Status(::grpc::StatusCode::UNIMPLEMENTED, ""); - } - virtual ::grpc::ServerUnaryReactor* View( - ::grpc::CallbackServerContext* /*context*/, const ::io::deephaven::proto::backplane::grpc::HierarchicalTableViewRequest* /*request*/, ::io::deephaven::proto::backplane::grpc::HierarchicalTableViewResponse* /*response*/) { return nullptr; } - }; - template - class WithCallbackMethod_ExportSource : public BaseClass { - private: - void BaseClassMustBeDerivedFromService(const Service* /*service*/) {} - public: - WithCallbackMethod_ExportSource() { - ::grpc::Service::MarkMethodCallback(4, - new ::grpc::internal::CallbackUnaryHandler< ::io::deephaven::proto::backplane::grpc::HierarchicalTableSourceExportRequest, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse>( - [this]( - ::grpc::CallbackServerContext* context, const ::io::deephaven::proto::backplane::grpc::HierarchicalTableSourceExportRequest* request, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse* response) { return this->ExportSource(context, request, response); }));} - void SetMessageAllocatorFor_ExportSource( - ::grpc::MessageAllocator< ::io::deephaven::proto::backplane::grpc::HierarchicalTableSourceExportRequest, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse>* allocator) { - ::grpc::internal::MethodHandler* const handler = ::grpc::Service::GetHandler(4); - static_cast<::grpc::internal::CallbackUnaryHandler< ::io::deephaven::proto::backplane::grpc::HierarchicalTableSourceExportRequest, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse>*>(handler) - ->SetMessageAllocator(allocator); - } - ~WithCallbackMethod_ExportSource() override { - BaseClassMustBeDerivedFromService(this); - } - // disable synchronous version of this method - ::grpc::Status ExportSource(::grpc::ServerContext* /*context*/, const ::io::deephaven::proto::backplane::grpc::HierarchicalTableSourceExportRequest* /*request*/, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse* /*response*/) override { - abort(); - return ::grpc::Status(::grpc::StatusCode::UNIMPLEMENTED, ""); - } - virtual ::grpc::ServerUnaryReactor* ExportSource( - ::grpc::CallbackServerContext* /*context*/, const ::io::deephaven::proto::backplane::grpc::HierarchicalTableSourceExportRequest* /*request*/, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse* /*response*/) { return nullptr; } - }; - typedef WithCallbackMethod_Rollup > > > > CallbackService; - typedef CallbackService ExperimentalCallbackService; - template - class WithGenericMethod_Rollup : public BaseClass { - private: - void BaseClassMustBeDerivedFromService(const Service* /*service*/) {} - public: - WithGenericMethod_Rollup() { - ::grpc::Service::MarkMethodGeneric(0); - } - ~WithGenericMethod_Rollup() override { - BaseClassMustBeDerivedFromService(this); - } - // disable synchronous version of this method - ::grpc::Status Rollup(::grpc::ServerContext* /*context*/, const ::io::deephaven::proto::backplane::grpc::RollupRequest* /*request*/, ::io::deephaven::proto::backplane::grpc::RollupResponse* /*response*/) override { - abort(); - return ::grpc::Status(::grpc::StatusCode::UNIMPLEMENTED, ""); - } - }; - template - class WithGenericMethod_Tree : public BaseClass { - private: - void BaseClassMustBeDerivedFromService(const Service* /*service*/) {} - public: - WithGenericMethod_Tree() { - ::grpc::Service::MarkMethodGeneric(1); - } - ~WithGenericMethod_Tree() override { - BaseClassMustBeDerivedFromService(this); - } - // disable synchronous version of this method - ::grpc::Status Tree(::grpc::ServerContext* /*context*/, const ::io::deephaven::proto::backplane::grpc::TreeRequest* /*request*/, ::io::deephaven::proto::backplane::grpc::TreeResponse* /*response*/) override { - abort(); - return ::grpc::Status(::grpc::StatusCode::UNIMPLEMENTED, ""); - } - }; - template - class WithGenericMethod_Apply : public BaseClass { - private: - void BaseClassMustBeDerivedFromService(const Service* /*service*/) {} - public: - WithGenericMethod_Apply() { - ::grpc::Service::MarkMethodGeneric(2); - } - ~WithGenericMethod_Apply() override { - BaseClassMustBeDerivedFromService(this); - } - // disable synchronous version of this method - ::grpc::Status Apply(::grpc::ServerContext* /*context*/, const ::io::deephaven::proto::backplane::grpc::HierarchicalTableApplyRequest* /*request*/, ::io::deephaven::proto::backplane::grpc::HierarchicalTableApplyResponse* /*response*/) override { - abort(); - return ::grpc::Status(::grpc::StatusCode::UNIMPLEMENTED, ""); - } - }; - template - class WithGenericMethod_View : public BaseClass { - private: - void BaseClassMustBeDerivedFromService(const Service* /*service*/) {} - public: - WithGenericMethod_View() { - ::grpc::Service::MarkMethodGeneric(3); - } - ~WithGenericMethod_View() override { - BaseClassMustBeDerivedFromService(this); - } - // disable synchronous version of this method - ::grpc::Status View(::grpc::ServerContext* /*context*/, const ::io::deephaven::proto::backplane::grpc::HierarchicalTableViewRequest* /*request*/, ::io::deephaven::proto::backplane::grpc::HierarchicalTableViewResponse* /*response*/) override { - abort(); - return ::grpc::Status(::grpc::StatusCode::UNIMPLEMENTED, ""); - } - }; - template - class WithGenericMethod_ExportSource : public BaseClass { - private: - void BaseClassMustBeDerivedFromService(const Service* /*service*/) {} - public: - WithGenericMethod_ExportSource() { - ::grpc::Service::MarkMethodGeneric(4); - } - ~WithGenericMethod_ExportSource() override { - BaseClassMustBeDerivedFromService(this); - } - // disable synchronous version of this method - ::grpc::Status ExportSource(::grpc::ServerContext* /*context*/, const ::io::deephaven::proto::backplane::grpc::HierarchicalTableSourceExportRequest* /*request*/, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse* /*response*/) override { - abort(); - return ::grpc::Status(::grpc::StatusCode::UNIMPLEMENTED, ""); - } - }; - template - class WithRawMethod_Rollup : public BaseClass { - private: - void BaseClassMustBeDerivedFromService(const Service* /*service*/) {} - public: - WithRawMethod_Rollup() { - ::grpc::Service::MarkMethodRaw(0); - } - ~WithRawMethod_Rollup() override { - BaseClassMustBeDerivedFromService(this); - } - // disable synchronous version of this method - ::grpc::Status Rollup(::grpc::ServerContext* /*context*/, const ::io::deephaven::proto::backplane::grpc::RollupRequest* /*request*/, ::io::deephaven::proto::backplane::grpc::RollupResponse* /*response*/) override { - abort(); - return ::grpc::Status(::grpc::StatusCode::UNIMPLEMENTED, ""); - } - void RequestRollup(::grpc::ServerContext* context, ::grpc::ByteBuffer* request, ::grpc::ServerAsyncResponseWriter< ::grpc::ByteBuffer>* response, ::grpc::CompletionQueue* new_call_cq, ::grpc::ServerCompletionQueue* notification_cq, void *tag) { - ::grpc::Service::RequestAsyncUnary(0, context, request, response, new_call_cq, notification_cq, tag); - } - }; - template - class WithRawMethod_Tree : public BaseClass { - private: - void BaseClassMustBeDerivedFromService(const Service* /*service*/) {} - public: - WithRawMethod_Tree() { - ::grpc::Service::MarkMethodRaw(1); - } - ~WithRawMethod_Tree() override { - BaseClassMustBeDerivedFromService(this); - } - // disable synchronous version of this method - ::grpc::Status Tree(::grpc::ServerContext* /*context*/, const ::io::deephaven::proto::backplane::grpc::TreeRequest* /*request*/, ::io::deephaven::proto::backplane::grpc::TreeResponse* /*response*/) override { - abort(); - return ::grpc::Status(::grpc::StatusCode::UNIMPLEMENTED, ""); - } - void RequestTree(::grpc::ServerContext* context, ::grpc::ByteBuffer* request, ::grpc::ServerAsyncResponseWriter< ::grpc::ByteBuffer>* response, ::grpc::CompletionQueue* new_call_cq, ::grpc::ServerCompletionQueue* notification_cq, void *tag) { - ::grpc::Service::RequestAsyncUnary(1, context, request, response, new_call_cq, notification_cq, tag); - } - }; - template - class WithRawMethod_Apply : public BaseClass { - private: - void BaseClassMustBeDerivedFromService(const Service* /*service*/) {} - public: - WithRawMethod_Apply() { - ::grpc::Service::MarkMethodRaw(2); - } - ~WithRawMethod_Apply() override { - BaseClassMustBeDerivedFromService(this); - } - // disable synchronous version of this method - ::grpc::Status Apply(::grpc::ServerContext* /*context*/, const ::io::deephaven::proto::backplane::grpc::HierarchicalTableApplyRequest* /*request*/, ::io::deephaven::proto::backplane::grpc::HierarchicalTableApplyResponse* /*response*/) override { - abort(); - return ::grpc::Status(::grpc::StatusCode::UNIMPLEMENTED, ""); - } - void RequestApply(::grpc::ServerContext* context, ::grpc::ByteBuffer* request, ::grpc::ServerAsyncResponseWriter< ::grpc::ByteBuffer>* response, ::grpc::CompletionQueue* new_call_cq, ::grpc::ServerCompletionQueue* notification_cq, void *tag) { - ::grpc::Service::RequestAsyncUnary(2, context, request, response, new_call_cq, notification_cq, tag); - } - }; - template - class WithRawMethod_View : public BaseClass { - private: - void BaseClassMustBeDerivedFromService(const Service* /*service*/) {} - public: - WithRawMethod_View() { - ::grpc::Service::MarkMethodRaw(3); - } - ~WithRawMethod_View() override { - BaseClassMustBeDerivedFromService(this); - } - // disable synchronous version of this method - ::grpc::Status View(::grpc::ServerContext* /*context*/, const ::io::deephaven::proto::backplane::grpc::HierarchicalTableViewRequest* /*request*/, ::io::deephaven::proto::backplane::grpc::HierarchicalTableViewResponse* /*response*/) override { - abort(); - return ::grpc::Status(::grpc::StatusCode::UNIMPLEMENTED, ""); - } - void RequestView(::grpc::ServerContext* context, ::grpc::ByteBuffer* request, ::grpc::ServerAsyncResponseWriter< ::grpc::ByteBuffer>* response, ::grpc::CompletionQueue* new_call_cq, ::grpc::ServerCompletionQueue* notification_cq, void *tag) { - ::grpc::Service::RequestAsyncUnary(3, context, request, response, new_call_cq, notification_cq, tag); - } - }; - template - class WithRawMethod_ExportSource : public BaseClass { - private: - void BaseClassMustBeDerivedFromService(const Service* /*service*/) {} - public: - WithRawMethod_ExportSource() { - ::grpc::Service::MarkMethodRaw(4); - } - ~WithRawMethod_ExportSource() override { - BaseClassMustBeDerivedFromService(this); - } - // disable synchronous version of this method - ::grpc::Status ExportSource(::grpc::ServerContext* /*context*/, const ::io::deephaven::proto::backplane::grpc::HierarchicalTableSourceExportRequest* /*request*/, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse* /*response*/) override { - abort(); - return ::grpc::Status(::grpc::StatusCode::UNIMPLEMENTED, ""); - } - void RequestExportSource(::grpc::ServerContext* context, ::grpc::ByteBuffer* request, ::grpc::ServerAsyncResponseWriter< ::grpc::ByteBuffer>* response, ::grpc::CompletionQueue* new_call_cq, ::grpc::ServerCompletionQueue* notification_cq, void *tag) { - ::grpc::Service::RequestAsyncUnary(4, context, request, response, new_call_cq, notification_cq, tag); - } - }; - template - class WithRawCallbackMethod_Rollup : public BaseClass { - private: - void BaseClassMustBeDerivedFromService(const Service* /*service*/) {} - public: - WithRawCallbackMethod_Rollup() { - ::grpc::Service::MarkMethodRawCallback(0, - new ::grpc::internal::CallbackUnaryHandler< ::grpc::ByteBuffer, ::grpc::ByteBuffer>( - [this]( - ::grpc::CallbackServerContext* context, const ::grpc::ByteBuffer* request, ::grpc::ByteBuffer* response) { return this->Rollup(context, request, response); })); - } - ~WithRawCallbackMethod_Rollup() override { - BaseClassMustBeDerivedFromService(this); - } - // disable synchronous version of this method - ::grpc::Status Rollup(::grpc::ServerContext* /*context*/, const ::io::deephaven::proto::backplane::grpc::RollupRequest* /*request*/, ::io::deephaven::proto::backplane::grpc::RollupResponse* /*response*/) override { - abort(); - return ::grpc::Status(::grpc::StatusCode::UNIMPLEMENTED, ""); - } - virtual ::grpc::ServerUnaryReactor* Rollup( - ::grpc::CallbackServerContext* /*context*/, const ::grpc::ByteBuffer* /*request*/, ::grpc::ByteBuffer* /*response*/) { return nullptr; } - }; - template - class WithRawCallbackMethod_Tree : public BaseClass { - private: - void BaseClassMustBeDerivedFromService(const Service* /*service*/) {} - public: - WithRawCallbackMethod_Tree() { - ::grpc::Service::MarkMethodRawCallback(1, - new ::grpc::internal::CallbackUnaryHandler< ::grpc::ByteBuffer, ::grpc::ByteBuffer>( - [this]( - ::grpc::CallbackServerContext* context, const ::grpc::ByteBuffer* request, ::grpc::ByteBuffer* response) { return this->Tree(context, request, response); })); - } - ~WithRawCallbackMethod_Tree() override { - BaseClassMustBeDerivedFromService(this); - } - // disable synchronous version of this method - ::grpc::Status Tree(::grpc::ServerContext* /*context*/, const ::io::deephaven::proto::backplane::grpc::TreeRequest* /*request*/, ::io::deephaven::proto::backplane::grpc::TreeResponse* /*response*/) override { - abort(); - return ::grpc::Status(::grpc::StatusCode::UNIMPLEMENTED, ""); - } - virtual ::grpc::ServerUnaryReactor* Tree( - ::grpc::CallbackServerContext* /*context*/, const ::grpc::ByteBuffer* /*request*/, ::grpc::ByteBuffer* /*response*/) { return nullptr; } - }; - template - class WithRawCallbackMethod_Apply : public BaseClass { - private: - void BaseClassMustBeDerivedFromService(const Service* /*service*/) {} - public: - WithRawCallbackMethod_Apply() { - ::grpc::Service::MarkMethodRawCallback(2, - new ::grpc::internal::CallbackUnaryHandler< ::grpc::ByteBuffer, ::grpc::ByteBuffer>( - [this]( - ::grpc::CallbackServerContext* context, const ::grpc::ByteBuffer* request, ::grpc::ByteBuffer* response) { return this->Apply(context, request, response); })); - } - ~WithRawCallbackMethod_Apply() override { - BaseClassMustBeDerivedFromService(this); - } - // disable synchronous version of this method - ::grpc::Status Apply(::grpc::ServerContext* /*context*/, const ::io::deephaven::proto::backplane::grpc::HierarchicalTableApplyRequest* /*request*/, ::io::deephaven::proto::backplane::grpc::HierarchicalTableApplyResponse* /*response*/) override { - abort(); - return ::grpc::Status(::grpc::StatusCode::UNIMPLEMENTED, ""); - } - virtual ::grpc::ServerUnaryReactor* Apply( - ::grpc::CallbackServerContext* /*context*/, const ::grpc::ByteBuffer* /*request*/, ::grpc::ByteBuffer* /*response*/) { return nullptr; } - }; - template - class WithRawCallbackMethod_View : public BaseClass { - private: - void BaseClassMustBeDerivedFromService(const Service* /*service*/) {} - public: - WithRawCallbackMethod_View() { - ::grpc::Service::MarkMethodRawCallback(3, - new ::grpc::internal::CallbackUnaryHandler< ::grpc::ByteBuffer, ::grpc::ByteBuffer>( - [this]( - ::grpc::CallbackServerContext* context, const ::grpc::ByteBuffer* request, ::grpc::ByteBuffer* response) { return this->View(context, request, response); })); - } - ~WithRawCallbackMethod_View() override { - BaseClassMustBeDerivedFromService(this); - } - // disable synchronous version of this method - ::grpc::Status View(::grpc::ServerContext* /*context*/, const ::io::deephaven::proto::backplane::grpc::HierarchicalTableViewRequest* /*request*/, ::io::deephaven::proto::backplane::grpc::HierarchicalTableViewResponse* /*response*/) override { - abort(); - return ::grpc::Status(::grpc::StatusCode::UNIMPLEMENTED, ""); - } - virtual ::grpc::ServerUnaryReactor* View( - ::grpc::CallbackServerContext* /*context*/, const ::grpc::ByteBuffer* /*request*/, ::grpc::ByteBuffer* /*response*/) { return nullptr; } - }; - template - class WithRawCallbackMethod_ExportSource : public BaseClass { - private: - void BaseClassMustBeDerivedFromService(const Service* /*service*/) {} - public: - WithRawCallbackMethod_ExportSource() { - ::grpc::Service::MarkMethodRawCallback(4, - new ::grpc::internal::CallbackUnaryHandler< ::grpc::ByteBuffer, ::grpc::ByteBuffer>( - [this]( - ::grpc::CallbackServerContext* context, const ::grpc::ByteBuffer* request, ::grpc::ByteBuffer* response) { return this->ExportSource(context, request, response); })); - } - ~WithRawCallbackMethod_ExportSource() override { - BaseClassMustBeDerivedFromService(this); - } - // disable synchronous version of this method - ::grpc::Status ExportSource(::grpc::ServerContext* /*context*/, const ::io::deephaven::proto::backplane::grpc::HierarchicalTableSourceExportRequest* /*request*/, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse* /*response*/) override { - abort(); - return ::grpc::Status(::grpc::StatusCode::UNIMPLEMENTED, ""); - } - virtual ::grpc::ServerUnaryReactor* ExportSource( - ::grpc::CallbackServerContext* /*context*/, const ::grpc::ByteBuffer* /*request*/, ::grpc::ByteBuffer* /*response*/) { return nullptr; } - }; - template - class WithStreamedUnaryMethod_Rollup : public BaseClass { - private: - void BaseClassMustBeDerivedFromService(const Service* /*service*/) {} - public: - WithStreamedUnaryMethod_Rollup() { - ::grpc::Service::MarkMethodStreamed(0, - new ::grpc::internal::StreamedUnaryHandler< - ::io::deephaven::proto::backplane::grpc::RollupRequest, ::io::deephaven::proto::backplane::grpc::RollupResponse>( - [this](::grpc::ServerContext* context, - ::grpc::ServerUnaryStreamer< - ::io::deephaven::proto::backplane::grpc::RollupRequest, ::io::deephaven::proto::backplane::grpc::RollupResponse>* streamer) { - return this->StreamedRollup(context, - streamer); - })); - } - ~WithStreamedUnaryMethod_Rollup() override { - BaseClassMustBeDerivedFromService(this); - } - // disable regular version of this method - ::grpc::Status Rollup(::grpc::ServerContext* /*context*/, const ::io::deephaven::proto::backplane::grpc::RollupRequest* /*request*/, ::io::deephaven::proto::backplane::grpc::RollupResponse* /*response*/) override { - abort(); - return ::grpc::Status(::grpc::StatusCode::UNIMPLEMENTED, ""); - } - // replace default version of method with streamed unary - virtual ::grpc::Status StreamedRollup(::grpc::ServerContext* context, ::grpc::ServerUnaryStreamer< ::io::deephaven::proto::backplane::grpc::RollupRequest,::io::deephaven::proto::backplane::grpc::RollupResponse>* server_unary_streamer) = 0; - }; - template - class WithStreamedUnaryMethod_Tree : public BaseClass { - private: - void BaseClassMustBeDerivedFromService(const Service* /*service*/) {} - public: - WithStreamedUnaryMethod_Tree() { - ::grpc::Service::MarkMethodStreamed(1, - new ::grpc::internal::StreamedUnaryHandler< - ::io::deephaven::proto::backplane::grpc::TreeRequest, ::io::deephaven::proto::backplane::grpc::TreeResponse>( - [this](::grpc::ServerContext* context, - ::grpc::ServerUnaryStreamer< - ::io::deephaven::proto::backplane::grpc::TreeRequest, ::io::deephaven::proto::backplane::grpc::TreeResponse>* streamer) { - return this->StreamedTree(context, - streamer); - })); - } - ~WithStreamedUnaryMethod_Tree() override { - BaseClassMustBeDerivedFromService(this); - } - // disable regular version of this method - ::grpc::Status Tree(::grpc::ServerContext* /*context*/, const ::io::deephaven::proto::backplane::grpc::TreeRequest* /*request*/, ::io::deephaven::proto::backplane::grpc::TreeResponse* /*response*/) override { - abort(); - return ::grpc::Status(::grpc::StatusCode::UNIMPLEMENTED, ""); - } - // replace default version of method with streamed unary - virtual ::grpc::Status StreamedTree(::grpc::ServerContext* context, ::grpc::ServerUnaryStreamer< ::io::deephaven::proto::backplane::grpc::TreeRequest,::io::deephaven::proto::backplane::grpc::TreeResponse>* server_unary_streamer) = 0; - }; - template - class WithStreamedUnaryMethod_Apply : public BaseClass { - private: - void BaseClassMustBeDerivedFromService(const Service* /*service*/) {} - public: - WithStreamedUnaryMethod_Apply() { - ::grpc::Service::MarkMethodStreamed(2, - new ::grpc::internal::StreamedUnaryHandler< - ::io::deephaven::proto::backplane::grpc::HierarchicalTableApplyRequest, ::io::deephaven::proto::backplane::grpc::HierarchicalTableApplyResponse>( - [this](::grpc::ServerContext* context, - ::grpc::ServerUnaryStreamer< - ::io::deephaven::proto::backplane::grpc::HierarchicalTableApplyRequest, ::io::deephaven::proto::backplane::grpc::HierarchicalTableApplyResponse>* streamer) { - return this->StreamedApply(context, - streamer); - })); - } - ~WithStreamedUnaryMethod_Apply() override { - BaseClassMustBeDerivedFromService(this); - } - // disable regular version of this method - ::grpc::Status Apply(::grpc::ServerContext* /*context*/, const ::io::deephaven::proto::backplane::grpc::HierarchicalTableApplyRequest* /*request*/, ::io::deephaven::proto::backplane::grpc::HierarchicalTableApplyResponse* /*response*/) override { - abort(); - return ::grpc::Status(::grpc::StatusCode::UNIMPLEMENTED, ""); - } - // replace default version of method with streamed unary - virtual ::grpc::Status StreamedApply(::grpc::ServerContext* context, ::grpc::ServerUnaryStreamer< ::io::deephaven::proto::backplane::grpc::HierarchicalTableApplyRequest,::io::deephaven::proto::backplane::grpc::HierarchicalTableApplyResponse>* server_unary_streamer) = 0; - }; - template - class WithStreamedUnaryMethod_View : public BaseClass { - private: - void BaseClassMustBeDerivedFromService(const Service* /*service*/) {} - public: - WithStreamedUnaryMethod_View() { - ::grpc::Service::MarkMethodStreamed(3, - new ::grpc::internal::StreamedUnaryHandler< - ::io::deephaven::proto::backplane::grpc::HierarchicalTableViewRequest, ::io::deephaven::proto::backplane::grpc::HierarchicalTableViewResponse>( - [this](::grpc::ServerContext* context, - ::grpc::ServerUnaryStreamer< - ::io::deephaven::proto::backplane::grpc::HierarchicalTableViewRequest, ::io::deephaven::proto::backplane::grpc::HierarchicalTableViewResponse>* streamer) { - return this->StreamedView(context, - streamer); - })); - } - ~WithStreamedUnaryMethod_View() override { - BaseClassMustBeDerivedFromService(this); - } - // disable regular version of this method - ::grpc::Status View(::grpc::ServerContext* /*context*/, const ::io::deephaven::proto::backplane::grpc::HierarchicalTableViewRequest* /*request*/, ::io::deephaven::proto::backplane::grpc::HierarchicalTableViewResponse* /*response*/) override { - abort(); - return ::grpc::Status(::grpc::StatusCode::UNIMPLEMENTED, ""); - } - // replace default version of method with streamed unary - virtual ::grpc::Status StreamedView(::grpc::ServerContext* context, ::grpc::ServerUnaryStreamer< ::io::deephaven::proto::backplane::grpc::HierarchicalTableViewRequest,::io::deephaven::proto::backplane::grpc::HierarchicalTableViewResponse>* server_unary_streamer) = 0; - }; - template - class WithStreamedUnaryMethod_ExportSource : public BaseClass { - private: - void BaseClassMustBeDerivedFromService(const Service* /*service*/) {} - public: - WithStreamedUnaryMethod_ExportSource() { - ::grpc::Service::MarkMethodStreamed(4, - new ::grpc::internal::StreamedUnaryHandler< - ::io::deephaven::proto::backplane::grpc::HierarchicalTableSourceExportRequest, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse>( - [this](::grpc::ServerContext* context, - ::grpc::ServerUnaryStreamer< - ::io::deephaven::proto::backplane::grpc::HierarchicalTableSourceExportRequest, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse>* streamer) { - return this->StreamedExportSource(context, - streamer); - })); - } - ~WithStreamedUnaryMethod_ExportSource() override { - BaseClassMustBeDerivedFromService(this); - } - // disable regular version of this method - ::grpc::Status ExportSource(::grpc::ServerContext* /*context*/, const ::io::deephaven::proto::backplane::grpc::HierarchicalTableSourceExportRequest* /*request*/, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse* /*response*/) override { - abort(); - return ::grpc::Status(::grpc::StatusCode::UNIMPLEMENTED, ""); - } - // replace default version of method with streamed unary - virtual ::grpc::Status StreamedExportSource(::grpc::ServerContext* context, ::grpc::ServerUnaryStreamer< ::io::deephaven::proto::backplane::grpc::HierarchicalTableSourceExportRequest,::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse>* server_unary_streamer) = 0; - }; - typedef WithStreamedUnaryMethod_Rollup > > > > StreamedUnaryService; - typedef Service SplitStreamedService; - typedef WithStreamedUnaryMethod_Rollup > > > > StreamedService; -}; - -} // namespace grpc -} // namespace backplane -} // namespace proto -} // namespace deephaven -} // namespace io - - -#endif // GRPC_deephaven_2fproto_2fhierarchicaltable_2eproto__INCLUDED diff --git a/cpp-client/deephaven/dhclient/proto/deephaven/proto/hierarchicaltable.pb.cc b/cpp-client/deephaven/dhclient/proto/deephaven/proto/hierarchicaltable.pb.cc deleted file mode 100644 index 756c910842a..00000000000 --- a/cpp-client/deephaven/dhclient/proto/deephaven/proto/hierarchicaltable.pb.cc +++ /dev/null @@ -1,3442 +0,0 @@ -// 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" -// @@protoc_insertion_point(includes) - -// Must be included last. -#include "google/protobuf/port_def.inc" -PROTOBUF_PRAGMA_INIT_SEG -namespace _pb = ::google::protobuf; -namespace _pbi = ::google::protobuf::internal; -namespace _fl = ::google::protobuf::internal::field_layout; -namespace io { -namespace deephaven { -namespace proto { -namespace backplane { -namespace grpc { - 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() {} - union { - TreeResponse _instance; - }; -}; - -PROTOBUF_ATTRIBUTE_NO_DESTROY PROTOBUF_CONSTINIT - PROTOBUF_ATTRIBUTE_INIT_PRIORITY1 TreeResponseDefaultTypeInternal _TreeResponse_default_instance_; - 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() {} - union { - RollupResponse _instance; - }; -}; - -PROTOBUF_ATTRIBUTE_NO_DESTROY PROTOBUF_CONSTINIT - PROTOBUF_ATTRIBUTE_INIT_PRIORITY1 RollupResponseDefaultTypeInternal _RollupResponse_default_instance_; - 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() {} - union { - HierarchicalTableViewResponse _instance; - }; -}; - -PROTOBUF_ATTRIBUTE_NO_DESTROY PROTOBUF_CONSTINIT - PROTOBUF_ATTRIBUTE_INIT_PRIORITY1 HierarchicalTableViewResponseDefaultTypeInternal _HierarchicalTableViewResponse_default_instance_; - -inline constexpr HierarchicalTableDescriptor::Impl_::Impl_( - ::_pbi::ConstantInitialized) noexcept - : snapshot_schema_( - &::google::protobuf::internal::fixed_address_empty_string, - ::_pbi::ConstantInitialized()), - is_static_{false}, - _cached_size_{0} {} - -template -PROTOBUF_CONSTEXPR HierarchicalTableDescriptor::HierarchicalTableDescriptor(::_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() {} - union { - HierarchicalTableDescriptor _instance; - }; -}; - -PROTOBUF_ATTRIBUTE_NO_DESTROY PROTOBUF_CONSTINIT - PROTOBUF_ATTRIBUTE_INIT_PRIORITY1 HierarchicalTableDescriptorDefaultTypeInternal _HierarchicalTableDescriptor_default_instance_; - 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() {} - union { - HierarchicalTableApplyResponse _instance; - }; -}; - -PROTOBUF_ATTRIBUTE_NO_DESTROY PROTOBUF_CONSTINIT - PROTOBUF_ATTRIBUTE_INIT_PRIORITY1 HierarchicalTableApplyResponseDefaultTypeInternal _HierarchicalTableApplyResponse_default_instance_; - -inline constexpr TreeRequest::Impl_::Impl_( - ::_pbi::ConstantInitialized) noexcept - : _cached_size_{0}, - identifier_column_( - &::google::protobuf::internal::fixed_address_empty_string, - ::_pbi::ConstantInitialized()), - parent_identifier_column_( - &::google::protobuf::internal::fixed_address_empty_string, - ::_pbi::ConstantInitialized()), - result_tree_table_id_{nullptr}, - source_table_id_{nullptr}, - promote_orphans_{false} {} - -template -PROTOBUF_CONSTEXPR TreeRequest::TreeRequest(::_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() {} - union { - TreeRequest _instance; - }; -}; - -PROTOBUF_ATTRIBUTE_NO_DESTROY PROTOBUF_CONSTINIT - PROTOBUF_ATTRIBUTE_INIT_PRIORITY1 TreeRequestDefaultTypeInternal _TreeRequest_default_instance_; - -inline constexpr HierarchicalTableViewKeyTableDescriptor::Impl_::Impl_( - ::_pbi::ConstantInitialized) noexcept - : _cached_size_{0}, - key_table_action_column_( - &::google::protobuf::internal::fixed_address_empty_string, - ::_pbi::ConstantInitialized()), - key_table_id_{nullptr} {} - -template -PROTOBUF_CONSTEXPR HierarchicalTableViewKeyTableDescriptor::HierarchicalTableViewKeyTableDescriptor(::_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() {} - union { - HierarchicalTableViewKeyTableDescriptor _instance; - }; -}; - -PROTOBUF_ATTRIBUTE_NO_DESTROY PROTOBUF_CONSTINIT - PROTOBUF_ATTRIBUTE_INIT_PRIORITY1 HierarchicalTableViewKeyTableDescriptorDefaultTypeInternal _HierarchicalTableViewKeyTableDescriptor_default_instance_; - -inline constexpr HierarchicalTableSourceExportRequest::Impl_::Impl_( - ::_pbi::ConstantInitialized) noexcept - : _cached_size_{0}, - result_table_id_{nullptr}, - hierarchical_table_id_{nullptr} {} - -template -PROTOBUF_CONSTEXPR HierarchicalTableSourceExportRequest::HierarchicalTableSourceExportRequest(::_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() {} - union { - HierarchicalTableSourceExportRequest _instance; - }; -}; - -PROTOBUF_ATTRIBUTE_NO_DESTROY PROTOBUF_CONSTINIT - PROTOBUF_ATTRIBUTE_INIT_PRIORITY1 HierarchicalTableSourceExportRequestDefaultTypeInternal _HierarchicalTableSourceExportRequest_default_instance_; - -inline constexpr HierarchicalTableViewRequest::Impl_::Impl_( - ::_pbi::ConstantInitialized) noexcept - : _cached_size_{0}, - result_view_id_{nullptr}, - expansions_{nullptr}, - target_{}, - _oneof_case_{} {} - -template -PROTOBUF_CONSTEXPR HierarchicalTableViewRequest::HierarchicalTableViewRequest(::_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() {} - union { - HierarchicalTableViewRequest _instance; - }; -}; - -PROTOBUF_ATTRIBUTE_NO_DESTROY PROTOBUF_CONSTINIT - PROTOBUF_ATTRIBUTE_INIT_PRIORITY1 HierarchicalTableViewRequestDefaultTypeInternal _HierarchicalTableViewRequest_default_instance_; - -inline constexpr HierarchicalTableApplyRequest::Impl_::Impl_( - ::_pbi::ConstantInitialized) noexcept - : _cached_size_{0}, - filters_{}, - sorts_{}, - result_hierarchical_table_id_{nullptr}, - input_hierarchical_table_id_{nullptr} {} - -template -PROTOBUF_CONSTEXPR HierarchicalTableApplyRequest::HierarchicalTableApplyRequest(::_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() {} - union { - HierarchicalTableApplyRequest _instance; - }; -}; - -PROTOBUF_ATTRIBUTE_NO_DESTROY PROTOBUF_CONSTINIT - PROTOBUF_ATTRIBUTE_INIT_PRIORITY1 HierarchicalTableApplyRequestDefaultTypeInternal _HierarchicalTableApplyRequest_default_instance_; - -inline constexpr RollupRequest::Impl_::Impl_( - ::_pbi::ConstantInitialized) noexcept - : _cached_size_{0}, - aggregations_{}, - group_by_columns_{}, - result_rollup_table_id_{nullptr}, - source_table_id_{nullptr}, - include_constituents_{false} {} - -template -PROTOBUF_CONSTEXPR RollupRequest::RollupRequest(::_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() {} - union { - RollupRequest _instance; - }; -}; - -PROTOBUF_ATTRIBUTE_NO_DESTROY PROTOBUF_CONSTINIT - PROTOBUF_ATTRIBUTE_INIT_PRIORITY1 RollupRequestDefaultTypeInternal _RollupRequest_default_instance_; -} // namespace grpc -} // namespace backplane -} // namespace proto -} // namespace deephaven -} // namespace io -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[] 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[] 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)}, - {44, -1, -1, sizeof(::io::deephaven::proto::backplane::grpc::TreeResponse)}, - {52, 64, -1, sizeof(::io::deephaven::proto::backplane::grpc::HierarchicalTableApplyRequest)}, - {68, -1, -1, sizeof(::io::deephaven::proto::backplane::grpc::HierarchicalTableApplyResponse)}, - {76, -1, -1, sizeof(::io::deephaven::proto::backplane::grpc::HierarchicalTableDescriptor)}, - {86, 99, -1, sizeof(::io::deephaven::proto::backplane::grpc::HierarchicalTableViewRequest)}, - {103, 113, -1, sizeof(::io::deephaven::proto::backplane::grpc::HierarchicalTableViewKeyTableDescriptor)}, - {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, - &::io::deephaven::proto::backplane::grpc::_TreeRequest_default_instance_._instance, - &::io::deephaven::proto::backplane::grpc::_TreeResponse_default_instance_._instance, - &::io::deephaven::proto::backplane::grpc::_HierarchicalTableApplyRequest_default_instance_._instance, - &::io::deephaven::proto::backplane::grpc::_HierarchicalTableApplyResponse_default_instance_._instance, - &::io::deephaven::proto::backplane::grpc::_HierarchicalTableDescriptor_default_instance_._instance, - &::io::deephaven::proto::backplane::grpc::_HierarchicalTableViewRequest_default_instance_._instance, - &::io::deephaven::proto::backplane::grpc::_HierarchicalTableViewKeyTableDescriptor_default_instance_._instance, - &::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[] 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" - "to/ticket.proto\"\234\002\n\rRollupRequest\022I\n\026res" - "ult_rollup_table_id\030\001 \001(\0132).io.deephaven" - ".proto.backplane.grpc.Ticket\022B\n\017source_t" - "able_id\030\002 \001(\0132).io.deephaven.proto.backp" - "lane.grpc.Ticket\022D\n\014aggregations\030\003 \003(\0132." - ".io.deephaven.proto.backplane.grpc.Aggre" - "gation\022\034\n\024include_constituents\030\004 \001(\010\022\030\n\020" - "group_by_columns\030\005 \003(\t\"\020\n\016RollupResponse" - "\"\360\001\n\013TreeRequest\022G\n\024result_tree_table_id" - "\030\001 \001(\0132).io.deephaven.proto.backplane.gr" - "pc.Ticket\022B\n\017source_table_id\030\002 \001(\0132).io." - "deephaven.proto.backplane.grpc.Ticket\022\031\n" - "\021identifier_column\030\003 \001(\t\022 \n\030parent_ident" - "ifier_column\030\004 \001(\t\022\027\n\017promote_orphans\030\005 " - "\001(\010\"\016\n\014TreeResponse\"\301\002\n\035HierarchicalTabl" - "eApplyRequest\022O\n\034result_hierarchical_tab" - "le_id\030\001 \001(\0132).io.deephaven.proto.backpla" - "ne.grpc.Ticket\022N\n\033input_hierarchical_tab" - "le_id\030\002 \001(\0132).io.deephaven.proto.backpla" - "ne.grpc.Ticket\022=\n\007filters\030\003 \003(\0132,.io.dee" - "phaven.proto.backplane.grpc.Condition\022@\n" - "\005sorts\030\004 \003(\01321.io.deephaven.proto.backpl" - "ane.grpc.SortDescriptor\" \n\036HierarchicalT" - "ableApplyResponse\"I\n\033HierarchicalTableDe" - "scriptor\022\027\n\017snapshot_schema\030\001 \001(\014\022\021\n\tis_" - "static\030\002 \001(\010\"\336\002\n\034HierarchicalTableViewRe" - "quest\022A\n\016result_view_id\030\001 \001(\0132).io.deeph" - "aven.proto.backplane.grpc.Ticket\022J\n\025hier" - "archical_table_id\030\002 \001(\0132).io.deephaven.p" - "roto.backplane.grpc.TicketH\000\022E\n\020existing" - "_view_id\030\003 \001(\0132).io.deephaven.proto.back" - "plane.grpc.TicketH\000\022^\n\nexpansions\030\004 \001(\0132" - "J.io.deephaven.proto.backplane.grpc.Hier" - "archicalTableViewKeyTableDescriptorB\010\n\006t" - "arget\"\254\001\n\'HierarchicalTableViewKeyTableD" - "escriptor\022\?\n\014key_table_id\030\001 \001(\0132).io.dee" - "phaven.proto.backplane.grpc.Ticket\022$\n\027ke" - "y_table_action_column\030\002 \001(\tH\000\210\001\001B\032\n\030_key" - "_table_action_column\"\037\n\035HierarchicalTabl" - "eViewResponse\"\264\001\n$HierarchicalTableSourc" - "eExportRequest\022B\n\017result_table_id\030\001 \001(\0132" - ").io.deephaven.proto.backplane.grpc.Tick" - "et\022H\n\025hierarchical_table_id\030\002 \001(\0132).io.d" - "eephaven.proto.backplane.grpc.Ticket2\251\005\n" - "\030HierarchicalTableService\022m\n\006Rollup\0220.io" - ".deephaven.proto.backplane.grpc.RollupRe" - "quest\0321.io.deephaven.proto.backplane.grp" - "c.RollupResponse\022g\n\004Tree\022..io.deephaven." - "proto.backplane.grpc.TreeRequest\032/.io.de" - "ephaven.proto.backplane.grpc.TreeRespons" - "e\022\214\001\n\005Apply\022@.io.deephaven.proto.backpla" - "ne.grpc.HierarchicalTableApplyRequest\032A." - "io.deephaven.proto.backplane.grpc.Hierar" - "chicalTableApplyResponse\022\211\001\n\004View\022\?.io.d" - "eephaven.proto.backplane.grpc.Hierarchic" - "alTableViewRequest\032@.io.deephaven.proto." - "backplane.grpc.HierarchicalTableViewResp" - "onse\022\231\001\n\014ExportSource\022G.io.deephaven.pro" - "to.backplane.grpc.HierarchicalTableSourc" - "eExportRequest\032@.io.deephaven.proto.back" - "plane.grpc.ExportedTableCreationResponse" - "BMH\001P\001ZGgithub.com/deephaven/deephaven-c" - "ore/go/internal/proto/hierarchicaltableb" - "\006proto3" -}; -static const ::_pbi::DescriptorTable* const descriptor_table_deephaven_2fproto_2fhierarchicaltable_2eproto_deps[2] = - { - &::descriptor_table_deephaven_2fproto_2ftable_2eproto, - &::descriptor_table_deephaven_2fproto_2fticket_2eproto, -}; -static ::absl::once_flag descriptor_table_deephaven_2fproto_2fhierarchicaltable_2eproto_once; -PROTOBUF_CONSTINIT const ::_pbi::DescriptorTable descriptor_table_deephaven_2fproto_2fhierarchicaltable_2eproto = { - false, - false, - 2647, - descriptor_table_protodef_deephaven_2fproto_2fhierarchicaltable_2eproto, - "deephaven/proto/hierarchicaltable.proto", - &descriptor_table_deephaven_2fproto_2fhierarchicaltable_2eproto_once, - descriptor_table_deephaven_2fproto_2fhierarchicaltable_2eproto_deps, - 2, - 11, - schemas, - file_default_instances, - TableStruct_deephaven_2fproto_2fhierarchicaltable_2eproto::offsets, - file_level_enum_descriptors_deephaven_2fproto_2fhierarchicaltable_2eproto, - file_level_service_descriptors_deephaven_2fproto_2fhierarchicaltable_2eproto, -}; -namespace io { -namespace deephaven { -namespace proto { -namespace backplane { -namespace grpc { -// =================================================================== - -class RollupRequest::_Internal { - public: - using HasBits = - decltype(std::declval()._impl_._has_bits_); - static constexpr ::int32_t kHasBitsOffset = - 8 * PROTOBUF_FIELD_OFFSET(RollupRequest, _impl_._has_bits_); -}; - -void RollupRequest::clear_result_rollup_table_id() { - ::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() { - ::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() { - ::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 ::io::deephaven::proto::backplane::grpc::RollupRequest& from_msg) - : _has_bits_{from._has_bits_}, - _cached_size_{0}, - aggregations_{visibility, arena, from.aggregations_}, - group_by_columns_{visibility, arena, from.group_by_columns_} {} - -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_, from); - ::uint32_t cached_has_bits = _impl_._has_bits_[0]; - _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) -} -inline PROTOBUF_NDEBUG_INLINE RollupRequest::Impl_::Impl_( - ::google::protobuf::internal::InternalVisibility visibility, - ::google::protobuf::Arena* arena) - : _cached_size_{0}, - aggregations_{visibility, arena}, - group_by_columns_{visibility, arena} {} - -inline void RollupRequest::SharedCtor(::_pb::Arena* arena) { - new (&_impl_) Impl_(internal_visibility(), arena); - ::memset(reinterpret_cast(&_impl_) + - offsetof(Impl_, result_rollup_table_id_), - 0, - offsetof(Impl_, include_constituents_) - - offsetof(Impl_, result_rollup_table_id_) + - sizeof(Impl_::include_constituents_)); -} -RollupRequest::~RollupRequest() { - // @@protoc_insertion_point(destructor:io.deephaven.proto.backplane.grpc.RollupRequest) - _internal_metadata_.Delete<::google::protobuf::UnknownFieldSet>(); - SharedDtor(); -} -inline void RollupRequest::SharedDtor() { - ABSL_DCHECK(GetArena() == nullptr); - delete _impl_.result_rollup_table_id_; - delete _impl_.source_table_id_; - _impl_.~Impl_(); -} - -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_ = { - { - PROTOBUF_FIELD_OFFSET(RollupRequest, _impl_._has_bits_), - 0, // no _extensions_ - 5, 56, // max_field_number, fast_idx_mask - offsetof(decltype(_table_), field_lookup_table), - 4294967264, // skipmap - offsetof(decltype(_table_), field_entries), - 5, // num_field_entries - 3, // num_aux_entries - offsetof(decltype(_table_), 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::RollupRequest>(), // to_prefetch - #endif // PROTOBUF_PREFETCH_PARSE_TABLE - }, {{ - {::_pbi::TcParser::MiniParse, {}}, - // .io.deephaven.proto.backplane.grpc.Ticket result_rollup_table_id = 1; - {::_pbi::TcParser::FastMtS1, - {10, 0, 0, PROTOBUF_FIELD_OFFSET(RollupRequest, _impl_.result_rollup_table_id_)}}, - // .io.deephaven.proto.backplane.grpc.Ticket source_table_id = 2; - {::_pbi::TcParser::FastMtS1, - {18, 1, 1, PROTOBUF_FIELD_OFFSET(RollupRequest, _impl_.source_table_id_)}}, - // repeated .io.deephaven.proto.backplane.grpc.Aggregation aggregations = 3; - {::_pbi::TcParser::FastMtR1, - {26, 63, 2, PROTOBUF_FIELD_OFFSET(RollupRequest, _impl_.aggregations_)}}, - // bool include_constituents = 4; - {::_pbi::TcParser::SingularVarintNoZag1(), - {32, 63, 0, PROTOBUF_FIELD_OFFSET(RollupRequest, _impl_.include_constituents_)}}, - // repeated string group_by_columns = 5; - {::_pbi::TcParser::FastUR1, - {42, 63, 0, PROTOBUF_FIELD_OFFSET(RollupRequest, _impl_.group_by_columns_)}}, - {::_pbi::TcParser::MiniParse, {}}, - {::_pbi::TcParser::MiniParse, {}}, - }}, {{ - 65535, 65535 - }}, {{ - // .io.deephaven.proto.backplane.grpc.Ticket result_rollup_table_id = 1; - {PROTOBUF_FIELD_OFFSET(RollupRequest, _impl_.result_rollup_table_id_), _Internal::kHasBitsOffset + 0, 0, - (0 | ::_fl::kFcOptional | ::_fl::kMessage | ::_fl::kTvTable)}, - // .io.deephaven.proto.backplane.grpc.Ticket source_table_id = 2; - {PROTOBUF_FIELD_OFFSET(RollupRequest, _impl_.source_table_id_), _Internal::kHasBitsOffset + 1, 1, - (0 | ::_fl::kFcOptional | ::_fl::kMessage | ::_fl::kTvTable)}, - // repeated .io.deephaven.proto.backplane.grpc.Aggregation aggregations = 3; - {PROTOBUF_FIELD_OFFSET(RollupRequest, _impl_.aggregations_), -1, 2, - (0 | ::_fl::kFcRepeated | ::_fl::kMessage | ::_fl::kTvTable)}, - // bool include_constituents = 4; - {PROTOBUF_FIELD_OFFSET(RollupRequest, _impl_.include_constituents_), -1, 0, - (0 | ::_fl::kFcSingular | ::_fl::kBool)}, - // repeated string group_by_columns = 5; - {PROTOBUF_FIELD_OFFSET(RollupRequest, _impl_.group_by_columns_), -1, 0, - (0 | ::_fl::kFcRepeated | ::_fl::kUtf8String | ::_fl::kRepSString)}, - }}, {{ - {::_pbi::TcParser::GetTable<::io::deephaven::proto::backplane::grpc::Ticket>()}, - {::_pbi::TcParser::GetTable<::io::deephaven::proto::backplane::grpc::Ticket>()}, - {::_pbi::TcParser::GetTable<::io::deephaven::proto::backplane::grpc::Aggregation>()}, - }}, {{ - "\57\0\0\0\0\20\0\0" - "io.deephaven.proto.backplane.grpc.RollupRequest" - "group_by_columns" - }}, -}; - -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; - - _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>(); -} - -#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; - (void) cached_has_bits; - - _this->_internal_mutable_aggregations()->MergeFrom( - from._internal_aggregations()); - _this->_internal_mutable_group_by_columns()->MergeFrom(from._internal_group_by_columns()); - cached_has_bits = from._impl_._has_bits_[0]; - if (cached_has_bits & 0x00000003u) { - if (cached_has_bits & 0x00000001u) { - 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) { - 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->_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_); -} - -void RollupRequest::CopyFrom(const RollupRequest& from) { -// @@protoc_insertion_point(class_specific_copy_from_start:io.deephaven.proto.backplane.grpc.RollupRequest) - if (&from == this) return; - Clear(); - MergeFrom(from); -} - - -void RollupRequest::InternalSwap(RollupRequest* PROTOBUF_RESTRICT other) { - using std::swap; - _internal_metadata_.InternalSwap(&other->_internal_metadata_); - swap(_impl_._has_bits_[0], other->_impl_._has_bits_[0]); - _impl_.aggregations_.InternalSwap(&other->_impl_.aggregations_); - _impl_.group_by_columns_.InternalSwap(&other->_impl_.group_by_columns_); - ::google::protobuf::internal::memswap< - PROTOBUF_FIELD_OFFSET(RollupRequest, _impl_.include_constituents_) - + sizeof(RollupRequest::_impl_.include_constituents_) - - PROTOBUF_FIELD_OFFSET(RollupRequest, _impl_.result_rollup_table_id_)>( - reinterpret_cast(&_impl_.result_rollup_table_id_), - reinterpret_cast(&other->_impl_.result_rollup_table_id_)); -} - -::google::protobuf::Metadata RollupRequest::GetMetadata() const { - return ::google::protobuf::Message::GetMetadataImpl(GetClassData()->full()); -} -// =================================================================== - -class RollupResponse::_Internal { - public: -}; - -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>( - from._internal_metadata_); - - // @@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 - {{ - }}, -}; - - - - - - - - -::google::protobuf::Metadata RollupResponse::GetMetadata() const { - return ::google::protobuf::internal::ZeroFieldsBase::GetMetadataImpl(GetClassData()->full()); -} -// =================================================================== - -class TreeRequest::_Internal { - public: - using HasBits = - decltype(std::declval()._impl_._has_bits_); - static constexpr ::int32_t kHasBitsOffset = - 8 * PROTOBUF_FIELD_OFFSET(TreeRequest, _impl_._has_bits_); -}; - -void TreeRequest::clear_result_tree_table_id() { - ::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() { - ::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 ::io::deephaven::proto::backplane::grpc::TreeRequest& from_msg) - : _has_bits_{from._has_bits_}, - _cached_size_{0}, - identifier_column_(arena, from.identifier_column_), - parent_identifier_column_(arena, from.parent_identifier_column_) {} - -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_, from); - ::uint32_t cached_has_bits = _impl_._has_bits_[0]; - _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) -} -inline PROTOBUF_NDEBUG_INLINE TreeRequest::Impl_::Impl_( - ::google::protobuf::internal::InternalVisibility visibility, - ::google::protobuf::Arena* arena) - : _cached_size_{0}, - identifier_column_(arena), - parent_identifier_column_(arena) {} - -inline void TreeRequest::SharedCtor(::_pb::Arena* arena) { - new (&_impl_) Impl_(internal_visibility(), arena); - ::memset(reinterpret_cast(&_impl_) + - offsetof(Impl_, result_tree_table_id_), - 0, - offsetof(Impl_, promote_orphans_) - - offsetof(Impl_, result_tree_table_id_) + - sizeof(Impl_::promote_orphans_)); -} -TreeRequest::~TreeRequest() { - // @@protoc_insertion_point(destructor:io.deephaven.proto.backplane.grpc.TreeRequest) - _internal_metadata_.Delete<::google::protobuf::UnknownFieldSet>(); - SharedDtor(); -} -inline void TreeRequest::SharedDtor() { - ABSL_DCHECK(GetArena() == nullptr); - _impl_.identifier_column_.Destroy(); - _impl_.parent_identifier_column_.Destroy(); - delete _impl_.result_tree_table_id_; - delete _impl_.source_table_id_; - _impl_.~Impl_(); -} - -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_ = { - { - PROTOBUF_FIELD_OFFSET(TreeRequest, _impl_._has_bits_), - 0, // no _extensions_ - 5, 56, // max_field_number, fast_idx_mask - offsetof(decltype(_table_), field_lookup_table), - 4294967264, // skipmap - offsetof(decltype(_table_), field_entries), - 5, // num_field_entries - 2, // num_aux_entries - offsetof(decltype(_table_), 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::TreeRequest>(), // to_prefetch - #endif // PROTOBUF_PREFETCH_PARSE_TABLE - }, {{ - {::_pbi::TcParser::MiniParse, {}}, - // .io.deephaven.proto.backplane.grpc.Ticket result_tree_table_id = 1; - {::_pbi::TcParser::FastMtS1, - {10, 0, 0, PROTOBUF_FIELD_OFFSET(TreeRequest, _impl_.result_tree_table_id_)}}, - // .io.deephaven.proto.backplane.grpc.Ticket source_table_id = 2; - {::_pbi::TcParser::FastMtS1, - {18, 1, 1, PROTOBUF_FIELD_OFFSET(TreeRequest, _impl_.source_table_id_)}}, - // string identifier_column = 3; - {::_pbi::TcParser::FastUS1, - {26, 63, 0, PROTOBUF_FIELD_OFFSET(TreeRequest, _impl_.identifier_column_)}}, - // string parent_identifier_column = 4; - {::_pbi::TcParser::FastUS1, - {34, 63, 0, PROTOBUF_FIELD_OFFSET(TreeRequest, _impl_.parent_identifier_column_)}}, - // bool promote_orphans = 5; - {::_pbi::TcParser::SingularVarintNoZag1(), - {40, 63, 0, PROTOBUF_FIELD_OFFSET(TreeRequest, _impl_.promote_orphans_)}}, - {::_pbi::TcParser::MiniParse, {}}, - {::_pbi::TcParser::MiniParse, {}}, - }}, {{ - 65535, 65535 - }}, {{ - // .io.deephaven.proto.backplane.grpc.Ticket result_tree_table_id = 1; - {PROTOBUF_FIELD_OFFSET(TreeRequest, _impl_.result_tree_table_id_), _Internal::kHasBitsOffset + 0, 0, - (0 | ::_fl::kFcOptional | ::_fl::kMessage | ::_fl::kTvTable)}, - // .io.deephaven.proto.backplane.grpc.Ticket source_table_id = 2; - {PROTOBUF_FIELD_OFFSET(TreeRequest, _impl_.source_table_id_), _Internal::kHasBitsOffset + 1, 1, - (0 | ::_fl::kFcOptional | ::_fl::kMessage | ::_fl::kTvTable)}, - // string identifier_column = 3; - {PROTOBUF_FIELD_OFFSET(TreeRequest, _impl_.identifier_column_), -1, 0, - (0 | ::_fl::kFcSingular | ::_fl::kUtf8String | ::_fl::kRepAString)}, - // string parent_identifier_column = 4; - {PROTOBUF_FIELD_OFFSET(TreeRequest, _impl_.parent_identifier_column_), -1, 0, - (0 | ::_fl::kFcSingular | ::_fl::kUtf8String | ::_fl::kRepAString)}, - // bool promote_orphans = 5; - {PROTOBUF_FIELD_OFFSET(TreeRequest, _impl_.promote_orphans_), -1, 0, - (0 | ::_fl::kFcSingular | ::_fl::kBool)}, - }}, {{ - {::_pbi::TcParser::GetTable<::io::deephaven::proto::backplane::grpc::Ticket>()}, - {::_pbi::TcParser::GetTable<::io::deephaven::proto::backplane::grpc::Ticket>()}, - }}, {{ - "\55\0\0\21\30\0\0\0" - "io.deephaven.proto.backplane.grpc.TreeRequest" - "identifier_column" - "parent_identifier_column" - }}, -}; - -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; - - _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>(); -} - -#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; - (void) cached_has_bits; - - if (!from._internal_identifier_column().empty()) { - _this->_internal_set_identifier_column(from._internal_identifier_column()); - } - if (!from._internal_parent_identifier_column().empty()) { - _this->_internal_set_parent_identifier_column(from._internal_parent_identifier_column()); - } - cached_has_bits = from._impl_._has_bits_[0]; - if (cached_has_bits & 0x00000003u) { - if (cached_has_bits & 0x00000001u) { - 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) { - 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->_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_); -} - -void TreeRequest::CopyFrom(const TreeRequest& from) { -// @@protoc_insertion_point(class_specific_copy_from_start:io.deephaven.proto.backplane.grpc.TreeRequest) - if (&from == this) return; - Clear(); - MergeFrom(from); -} - - -void TreeRequest::InternalSwap(TreeRequest* PROTOBUF_RESTRICT other) { - using std::swap; - auto* arena = GetArena(); - ABSL_DCHECK_EQ(arena, other->GetArena()); - _internal_metadata_.InternalSwap(&other->_internal_metadata_); - swap(_impl_._has_bits_[0], other->_impl_._has_bits_[0]); - ::_pbi::ArenaStringPtr::InternalSwap(&_impl_.identifier_column_, &other->_impl_.identifier_column_, arena); - ::_pbi::ArenaStringPtr::InternalSwap(&_impl_.parent_identifier_column_, &other->_impl_.parent_identifier_column_, arena); - ::google::protobuf::internal::memswap< - PROTOBUF_FIELD_OFFSET(TreeRequest, _impl_.promote_orphans_) - + sizeof(TreeRequest::_impl_.promote_orphans_) - - PROTOBUF_FIELD_OFFSET(TreeRequest, _impl_.result_tree_table_id_)>( - reinterpret_cast(&_impl_.result_tree_table_id_), - reinterpret_cast(&other->_impl_.result_tree_table_id_)); -} - -::google::protobuf::Metadata TreeRequest::GetMetadata() const { - return ::google::protobuf::Message::GetMetadataImpl(GetClassData()->full()); -} -// =================================================================== - -class TreeResponse::_Internal { - public: -}; - -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>( - from._internal_metadata_); - - // @@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 - {{ - }}, -}; - - - - - - - - -::google::protobuf::Metadata TreeResponse::GetMetadata() const { - return ::google::protobuf::internal::ZeroFieldsBase::GetMetadataImpl(GetClassData()->full()); -} -// =================================================================== - -class HierarchicalTableApplyRequest::_Internal { - public: - using HasBits = - decltype(std::declval()._impl_._has_bits_); - static constexpr ::int32_t kHasBitsOffset = - 8 * PROTOBUF_FIELD_OFFSET(HierarchicalTableApplyRequest, _impl_._has_bits_); -}; - -void HierarchicalTableApplyRequest::clear_result_hierarchical_table_id() { - ::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() { - ::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() { - ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.filters_.Clear(); -} -void HierarchicalTableApplyRequest::clear_sorts() { - ::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 ::io::deephaven::proto::backplane::grpc::HierarchicalTableApplyRequest& from_msg) - : _has_bits_{from._has_bits_}, - _cached_size_{0}, - filters_{visibility, arena, from.filters_}, - sorts_{visibility, arena, from.sorts_} {} - -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_, from); - ::uint32_t cached_has_bits = _impl_._has_bits_[0]; - _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) -} -inline PROTOBUF_NDEBUG_INLINE HierarchicalTableApplyRequest::Impl_::Impl_( - ::google::protobuf::internal::InternalVisibility visibility, - ::google::protobuf::Arena* arena) - : _cached_size_{0}, - filters_{visibility, arena}, - sorts_{visibility, arena} {} - -inline void HierarchicalTableApplyRequest::SharedCtor(::_pb::Arena* arena) { - new (&_impl_) Impl_(internal_visibility(), arena); - ::memset(reinterpret_cast(&_impl_) + - offsetof(Impl_, result_hierarchical_table_id_), - 0, - offsetof(Impl_, input_hierarchical_table_id_) - - offsetof(Impl_, result_hierarchical_table_id_) + - sizeof(Impl_::input_hierarchical_table_id_)); -} -HierarchicalTableApplyRequest::~HierarchicalTableApplyRequest() { - // @@protoc_insertion_point(destructor:io.deephaven.proto.backplane.grpc.HierarchicalTableApplyRequest) - _internal_metadata_.Delete<::google::protobuf::UnknownFieldSet>(); - SharedDtor(); -} -inline void HierarchicalTableApplyRequest::SharedDtor() { - ABSL_DCHECK(GetArena() == nullptr); - delete _impl_.result_hierarchical_table_id_; - delete _impl_.input_hierarchical_table_id_; - _impl_.~Impl_(); -} - -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_ = { - { - PROTOBUF_FIELD_OFFSET(HierarchicalTableApplyRequest, _impl_._has_bits_), - 0, // no _extensions_ - 4, 24, // max_field_number, fast_idx_mask - offsetof(decltype(_table_), field_lookup_table), - 4294967280, // skipmap - offsetof(decltype(_table_), field_entries), - 4, // num_field_entries - 4, // num_aux_entries - offsetof(decltype(_table_), 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::HierarchicalTableApplyRequest>(), // to_prefetch - #endif // PROTOBUF_PREFETCH_PARSE_TABLE - }, {{ - // repeated .io.deephaven.proto.backplane.grpc.SortDescriptor sorts = 4; - {::_pbi::TcParser::FastMtR1, - {34, 63, 3, PROTOBUF_FIELD_OFFSET(HierarchicalTableApplyRequest, _impl_.sorts_)}}, - // .io.deephaven.proto.backplane.grpc.Ticket result_hierarchical_table_id = 1; - {::_pbi::TcParser::FastMtS1, - {10, 0, 0, PROTOBUF_FIELD_OFFSET(HierarchicalTableApplyRequest, _impl_.result_hierarchical_table_id_)}}, - // .io.deephaven.proto.backplane.grpc.Ticket input_hierarchical_table_id = 2; - {::_pbi::TcParser::FastMtS1, - {18, 1, 1, PROTOBUF_FIELD_OFFSET(HierarchicalTableApplyRequest, _impl_.input_hierarchical_table_id_)}}, - // repeated .io.deephaven.proto.backplane.grpc.Condition filters = 3; - {::_pbi::TcParser::FastMtR1, - {26, 63, 2, PROTOBUF_FIELD_OFFSET(HierarchicalTableApplyRequest, _impl_.filters_)}}, - }}, {{ - 65535, 65535 - }}, {{ - // .io.deephaven.proto.backplane.grpc.Ticket result_hierarchical_table_id = 1; - {PROTOBUF_FIELD_OFFSET(HierarchicalTableApplyRequest, _impl_.result_hierarchical_table_id_), _Internal::kHasBitsOffset + 0, 0, - (0 | ::_fl::kFcOptional | ::_fl::kMessage | ::_fl::kTvTable)}, - // .io.deephaven.proto.backplane.grpc.Ticket input_hierarchical_table_id = 2; - {PROTOBUF_FIELD_OFFSET(HierarchicalTableApplyRequest, _impl_.input_hierarchical_table_id_), _Internal::kHasBitsOffset + 1, 1, - (0 | ::_fl::kFcOptional | ::_fl::kMessage | ::_fl::kTvTable)}, - // repeated .io.deephaven.proto.backplane.grpc.Condition filters = 3; - {PROTOBUF_FIELD_OFFSET(HierarchicalTableApplyRequest, _impl_.filters_), -1, 2, - (0 | ::_fl::kFcRepeated | ::_fl::kMessage | ::_fl::kTvTable)}, - // repeated .io.deephaven.proto.backplane.grpc.SortDescriptor sorts = 4; - {PROTOBUF_FIELD_OFFSET(HierarchicalTableApplyRequest, _impl_.sorts_), -1, 3, - (0 | ::_fl::kFcRepeated | ::_fl::kMessage | ::_fl::kTvTable)}, - }}, {{ - {::_pbi::TcParser::GetTable<::io::deephaven::proto::backplane::grpc::Ticket>()}, - {::_pbi::TcParser::GetTable<::io::deephaven::proto::backplane::grpc::Ticket>()}, - {::_pbi::TcParser::GetTable<::io::deephaven::proto::backplane::grpc::Condition>()}, - {::_pbi::TcParser::GetTable<::io::deephaven::proto::backplane::grpc::SortDescriptor>()}, - }}, {{ - }}, -}; - -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; - - _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>(); -} - -#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; - (void) cached_has_bits; - - _this->_internal_mutable_filters()->MergeFrom( - from._internal_filters()); - _this->_internal_mutable_sorts()->MergeFrom( - from._internal_sorts()); - cached_has_bits = from._impl_._has_bits_[0]; - if (cached_has_bits & 0x00000003u) { - if (cached_has_bits & 0x00000001u) { - 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) { - 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_); -} - -void HierarchicalTableApplyRequest::CopyFrom(const HierarchicalTableApplyRequest& from) { -// @@protoc_insertion_point(class_specific_copy_from_start:io.deephaven.proto.backplane.grpc.HierarchicalTableApplyRequest) - if (&from == this) return; - Clear(); - MergeFrom(from); -} - - -void HierarchicalTableApplyRequest::InternalSwap(HierarchicalTableApplyRequest* PROTOBUF_RESTRICT other) { - using std::swap; - _internal_metadata_.InternalSwap(&other->_internal_metadata_); - swap(_impl_._has_bits_[0], other->_impl_._has_bits_[0]); - _impl_.filters_.InternalSwap(&other->_impl_.filters_); - _impl_.sorts_.InternalSwap(&other->_impl_.sorts_); - ::google::protobuf::internal::memswap< - PROTOBUF_FIELD_OFFSET(HierarchicalTableApplyRequest, _impl_.input_hierarchical_table_id_) - + sizeof(HierarchicalTableApplyRequest::_impl_.input_hierarchical_table_id_) - - PROTOBUF_FIELD_OFFSET(HierarchicalTableApplyRequest, _impl_.result_hierarchical_table_id_)>( - reinterpret_cast(&_impl_.result_hierarchical_table_id_), - reinterpret_cast(&other->_impl_.result_hierarchical_table_id_)); -} - -::google::protobuf::Metadata HierarchicalTableApplyRequest::GetMetadata() const { - return ::google::protobuf::Message::GetMetadataImpl(GetClassData()->full()); -} -// =================================================================== - -class HierarchicalTableApplyResponse::_Internal { - public: -}; - -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>( - from._internal_metadata_); - - // @@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 - {{ - }}, -}; - - - - - - - - -::google::protobuf::Metadata HierarchicalTableApplyResponse::GetMetadata() const { - return ::google::protobuf::internal::ZeroFieldsBase::GetMetadataImpl(GetClassData()->full()); -} -// =================================================================== - -class HierarchicalTableDescriptor::_Internal { - public: -}; - -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 ::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_, from); - _impl_.is_static_ = from._impl_.is_static_; - - // @@protoc_insertion_point(copy_constructor:io.deephaven.proto.backplane.grpc.HierarchicalTableDescriptor) -} -inline PROTOBUF_NDEBUG_INLINE HierarchicalTableDescriptor::Impl_::Impl_( - ::google::protobuf::internal::InternalVisibility visibility, - ::google::protobuf::Arena* arena) - : snapshot_schema_(arena), - _cached_size_{0} {} - -inline void HierarchicalTableDescriptor::SharedCtor(::_pb::Arena* arena) { - new (&_impl_) Impl_(internal_visibility(), arena); - _impl_.is_static_ = {}; -} -HierarchicalTableDescriptor::~HierarchicalTableDescriptor() { - // @@protoc_insertion_point(destructor:io.deephaven.proto.backplane.grpc.HierarchicalTableDescriptor) - _internal_metadata_.Delete<::google::protobuf::UnknownFieldSet>(); - SharedDtor(); -} -inline void HierarchicalTableDescriptor::SharedDtor() { - ABSL_DCHECK(GetArena() == nullptr); - _impl_.snapshot_schema_.Destroy(); - _impl_.~Impl_(); -} - -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_ = { - { - 0, // no _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 - 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::HierarchicalTableDescriptor>(), // to_prefetch - #endif // PROTOBUF_PREFETCH_PARSE_TABLE - }, {{ - // bool is_static = 2; - {::_pbi::TcParser::SingularVarintNoZag1(), - {16, 63, 0, PROTOBUF_FIELD_OFFSET(HierarchicalTableDescriptor, _impl_.is_static_)}}, - // bytes snapshot_schema = 1; - {::_pbi::TcParser::FastBS1, - {10, 63, 0, PROTOBUF_FIELD_OFFSET(HierarchicalTableDescriptor, _impl_.snapshot_schema_)}}, - }}, {{ - 65535, 65535 - }}, {{ - // bytes snapshot_schema = 1; - {PROTOBUF_FIELD_OFFSET(HierarchicalTableDescriptor, _impl_.snapshot_schema_), 0, 0, - (0 | ::_fl::kFcSingular | ::_fl::kBytes | ::_fl::kRepAString)}, - // bool is_static = 2; - {PROTOBUF_FIELD_OFFSET(HierarchicalTableDescriptor, _impl_.is_static_), 0, 0, - (0 | ::_fl::kFcSingular | ::_fl::kBool)}, - }}, - // no aux_entries - {{ - }}, -}; - -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; - - _impl_.snapshot_schema_.ClearToEmpty(); - _impl_.is_static_ = false; - _internal_metadata_.Clear<::google::protobuf::UnknownFieldSet>(); -} - -#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) - ABSL_DCHECK_NE(&from, _this); - ::uint32_t cached_has_bits = 0; - (void) cached_has_bits; - - if (!from._internal_snapshot_schema().empty()) { - _this->_internal_set_snapshot_schema(from._internal_snapshot_schema()); - } - if (from._internal_is_static() != 0) { - _this->_impl_.is_static_ = from._impl_.is_static_; - } - _this->_internal_metadata_.MergeFrom<::google::protobuf::UnknownFieldSet>(from._internal_metadata_); -} - -void HierarchicalTableDescriptor::CopyFrom(const HierarchicalTableDescriptor& from) { -// @@protoc_insertion_point(class_specific_copy_from_start:io.deephaven.proto.backplane.grpc.HierarchicalTableDescriptor) - if (&from == this) return; - Clear(); - MergeFrom(from); -} - - -void HierarchicalTableDescriptor::InternalSwap(HierarchicalTableDescriptor* PROTOBUF_RESTRICT other) { - using std::swap; - auto* arena = GetArena(); - ABSL_DCHECK_EQ(arena, other->GetArena()); - _internal_metadata_.InternalSwap(&other->_internal_metadata_); - ::_pbi::ArenaStringPtr::InternalSwap(&_impl_.snapshot_schema_, &other->_impl_.snapshot_schema_, arena); - swap(_impl_.is_static_, other->_impl_.is_static_); -} - -::google::protobuf::Metadata HierarchicalTableDescriptor::GetMetadata() const { - return ::google::protobuf::Message::GetMetadataImpl(GetClassData()->full()); -} -// =================================================================== - -class HierarchicalTableViewRequest::_Internal { - public: - using HasBits = - decltype(std::declval()._impl_._has_bits_); - static constexpr ::int32_t kHasBitsOffset = - 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_); -}; - -void HierarchicalTableViewRequest::clear_result_view_id() { - ::google::protobuf::internal::TSanWrite(&_impl_); - if (_impl_.result_view_id_ != nullptr) _impl_.result_view_id_->Clear(); - _impl_._has_bits_[0] &= ~0x00000001u; -} -void HierarchicalTableViewRequest::set_allocated_hierarchical_table_id(::io::deephaven::proto::backplane::grpc::Ticket* hierarchical_table_id) { - ::google::protobuf::Arena* message_arena = GetArena(); - clear_target(); - if (hierarchical_table_id) { - ::google::protobuf::Arena* submessage_arena = reinterpret_cast<::google::protobuf::MessageLite*>(hierarchical_table_id)->GetArena(); - if (message_arena != submessage_arena) { - hierarchical_table_id = ::google::protobuf::internal::GetOwnedMessage(message_arena, hierarchical_table_id, submessage_arena); - } - set_has_hierarchical_table_id(); - _impl_.target_.hierarchical_table_id_ = hierarchical_table_id; - } - // @@protoc_insertion_point(field_set_allocated:io.deephaven.proto.backplane.grpc.HierarchicalTableViewRequest.hierarchical_table_id) -} -void HierarchicalTableViewRequest::clear_hierarchical_table_id() { - ::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(); - } -} -void HierarchicalTableViewRequest::set_allocated_existing_view_id(::io::deephaven::proto::backplane::grpc::Ticket* existing_view_id) { - ::google::protobuf::Arena* message_arena = GetArena(); - clear_target(); - if (existing_view_id) { - ::google::protobuf::Arena* submessage_arena = reinterpret_cast<::google::protobuf::MessageLite*>(existing_view_id)->GetArena(); - if (message_arena != submessage_arena) { - existing_view_id = ::google::protobuf::internal::GetOwnedMessage(message_arena, existing_view_id, submessage_arena); - } - set_has_existing_view_id(); - _impl_.target_.existing_view_id_ = existing_view_id; - } - // @@protoc_insertion_point(field_set_allocated:io.deephaven.proto.backplane.grpc.HierarchicalTableViewRequest.existing_view_id) -} -void HierarchicalTableViewRequest::clear_existing_view_id() { - ::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 ::io::deephaven::proto::backplane::grpc::HierarchicalTableViewRequest& from_msg) - : _has_bits_{from._has_bits_}, - _cached_size_{0}, - target_{}, - _oneof_case_{from._oneof_case_[0]} {} - -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_, from); - ::uint32_t cached_has_bits = _impl_._has_bits_[0]; - _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_ = ::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_ = ::google::protobuf::Message::CopyConstruct<::io::deephaven::proto::backplane::grpc::Ticket>(arena, *from._impl_.target_.existing_view_id_); - break; - } - - // @@protoc_insertion_point(copy_constructor:io.deephaven.proto.backplane.grpc.HierarchicalTableViewRequest) -} -inline PROTOBUF_NDEBUG_INLINE HierarchicalTableViewRequest::Impl_::Impl_( - ::google::protobuf::internal::InternalVisibility visibility, - ::google::protobuf::Arena* arena) - : _cached_size_{0}, - target_{}, - _oneof_case_{} {} - -inline void HierarchicalTableViewRequest::SharedCtor(::_pb::Arena* arena) { - new (&_impl_) Impl_(internal_visibility(), arena); - ::memset(reinterpret_cast(&_impl_) + - offsetof(Impl_, result_view_id_), - 0, - offsetof(Impl_, expansions_) - - offsetof(Impl_, result_view_id_) + - sizeof(Impl_::expansions_)); -} -HierarchicalTableViewRequest::~HierarchicalTableViewRequest() { - // @@protoc_insertion_point(destructor:io.deephaven.proto.backplane.grpc.HierarchicalTableViewRequest) - _internal_metadata_.Delete<::google::protobuf::UnknownFieldSet>(); - SharedDtor(); -} -inline void HierarchicalTableViewRequest::SharedDtor() { - ABSL_DCHECK(GetArena() == nullptr); - delete _impl_.result_view_id_; - delete _impl_.expansions_; - if (has_target()) { - clear_target(); - } - _impl_.~Impl_(); -} - -void HierarchicalTableViewRequest::clear_target() { -// @@protoc_insertion_point(one_of_clear_start:io.deephaven.proto.backplane.grpc.HierarchicalTableViewRequest) - ::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; - } - case TARGET_NOT_SET: { - break; - } - } - _impl_._oneof_case_[0] = TARGET_NOT_SET; -} - - -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_ = { - { - PROTOBUF_FIELD_OFFSET(HierarchicalTableViewRequest, _impl_._has_bits_), - 0, // no _extensions_ - 4, 8, // max_field_number, fast_idx_mask - offsetof(decltype(_table_), field_lookup_table), - 4294967280, // skipmap - offsetof(decltype(_table_), field_entries), - 4, // num_field_entries - 4, // num_aux_entries - offsetof(decltype(_table_), 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::HierarchicalTableViewRequest>(), // to_prefetch - #endif // PROTOBUF_PREFETCH_PARSE_TABLE - }, {{ - // .io.deephaven.proto.backplane.grpc.HierarchicalTableViewKeyTableDescriptor expansions = 4; - {::_pbi::TcParser::FastMtS1, - {34, 1, 3, PROTOBUF_FIELD_OFFSET(HierarchicalTableViewRequest, _impl_.expansions_)}}, - // .io.deephaven.proto.backplane.grpc.Ticket result_view_id = 1; - {::_pbi::TcParser::FastMtS1, - {10, 0, 0, PROTOBUF_FIELD_OFFSET(HierarchicalTableViewRequest, _impl_.result_view_id_)}}, - }}, {{ - 65535, 65535 - }}, {{ - // .io.deephaven.proto.backplane.grpc.Ticket result_view_id = 1; - {PROTOBUF_FIELD_OFFSET(HierarchicalTableViewRequest, _impl_.result_view_id_), _Internal::kHasBitsOffset + 0, 0, - (0 | ::_fl::kFcOptional | ::_fl::kMessage | ::_fl::kTvTable)}, - // .io.deephaven.proto.backplane.grpc.Ticket hierarchical_table_id = 2; - {PROTOBUF_FIELD_OFFSET(HierarchicalTableViewRequest, _impl_.target_.hierarchical_table_id_), _Internal::kOneofCaseOffset + 0, 1, - (0 | ::_fl::kFcOneof | ::_fl::kMessage | ::_fl::kTvTable)}, - // .io.deephaven.proto.backplane.grpc.Ticket existing_view_id = 3; - {PROTOBUF_FIELD_OFFSET(HierarchicalTableViewRequest, _impl_.target_.existing_view_id_), _Internal::kOneofCaseOffset + 0, 2, - (0 | ::_fl::kFcOneof | ::_fl::kMessage | ::_fl::kTvTable)}, - // .io.deephaven.proto.backplane.grpc.HierarchicalTableViewKeyTableDescriptor expansions = 4; - {PROTOBUF_FIELD_OFFSET(HierarchicalTableViewRequest, _impl_.expansions_), _Internal::kHasBitsOffset + 1, 3, - (0 | ::_fl::kFcOptional | ::_fl::kMessage | ::_fl::kTvTable)}, - }}, {{ - {::_pbi::TcParser::GetTable<::io::deephaven::proto::backplane::grpc::Ticket>()}, - {::_pbi::TcParser::GetTable<::io::deephaven::proto::backplane::grpc::Ticket>()}, - {::_pbi::TcParser::GetTable<::io::deephaven::proto::backplane::grpc::Ticket>()}, - {::_pbi::TcParser::GetTable<::io::deephaven::proto::backplane::grpc::HierarchicalTableViewKeyTableDescriptor>()}, - }}, {{ - }}, -}; - -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) { - 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>(); -} - -#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; - (void) cached_has_bits; - - cached_has_bits = from._impl_._has_bits_[0]; - if (cached_has_bits & 0x00000003u) { - if (cached_has_bits & 0x00000001u) { - 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) { - 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_); - } - } - } - _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; - } - - 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_); -} - -void HierarchicalTableViewRequest::CopyFrom(const HierarchicalTableViewRequest& from) { -// @@protoc_insertion_point(class_specific_copy_from_start:io.deephaven.proto.backplane.grpc.HierarchicalTableViewRequest) - if (&from == this) return; - Clear(); - MergeFrom(from); -} - - -void HierarchicalTableViewRequest::InternalSwap(HierarchicalTableViewRequest* PROTOBUF_RESTRICT other) { - using std::swap; - _internal_metadata_.InternalSwap(&other->_internal_metadata_); - swap(_impl_._has_bits_[0], other->_impl_._has_bits_[0]); - ::google::protobuf::internal::memswap< - PROTOBUF_FIELD_OFFSET(HierarchicalTableViewRequest, _impl_.expansions_) - + sizeof(HierarchicalTableViewRequest::_impl_.expansions_) - - PROTOBUF_FIELD_OFFSET(HierarchicalTableViewRequest, _impl_.result_view_id_)>( - reinterpret_cast(&_impl_.result_view_id_), - reinterpret_cast(&other->_impl_.result_view_id_)); - swap(_impl_.target_, other->_impl_.target_); - swap(_impl_._oneof_case_[0], other->_impl_._oneof_case_[0]); -} - -::google::protobuf::Metadata HierarchicalTableViewRequest::GetMetadata() const { - return ::google::protobuf::Message::GetMetadataImpl(GetClassData()->full()); -} -// =================================================================== - -class HierarchicalTableViewKeyTableDescriptor::_Internal { - public: - using HasBits = - decltype(std::declval()._impl_._has_bits_); - static constexpr ::int32_t kHasBitsOffset = - 8 * PROTOBUF_FIELD_OFFSET(HierarchicalTableViewKeyTableDescriptor, _impl_._has_bits_); -}; - -void HierarchicalTableViewKeyTableDescriptor::clear_key_table_id() { - ::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 ::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_) {} - -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_, from); - ::uint32_t cached_has_bits = _impl_._has_bits_[0]; - _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) -} -inline PROTOBUF_NDEBUG_INLINE HierarchicalTableViewKeyTableDescriptor::Impl_::Impl_( - ::google::protobuf::internal::InternalVisibility visibility, - ::google::protobuf::Arena* arena) - : _cached_size_{0}, - key_table_action_column_(arena) {} - -inline void HierarchicalTableViewKeyTableDescriptor::SharedCtor(::_pb::Arena* arena) { - new (&_impl_) Impl_(internal_visibility(), arena); - _impl_.key_table_id_ = {}; -} -HierarchicalTableViewKeyTableDescriptor::~HierarchicalTableViewKeyTableDescriptor() { - // @@protoc_insertion_point(destructor:io.deephaven.proto.backplane.grpc.HierarchicalTableViewKeyTableDescriptor) - _internal_metadata_.Delete<::google::protobuf::UnknownFieldSet>(); - SharedDtor(); -} -inline void HierarchicalTableViewKeyTableDescriptor::SharedDtor() { - ABSL_DCHECK(GetArena() == nullptr); - _impl_.key_table_action_column_.Destroy(); - delete _impl_.key_table_id_; - _impl_.~Impl_(); -} - -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_ = { - { - PROTOBUF_FIELD_OFFSET(HierarchicalTableViewKeyTableDescriptor, _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::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, - {18, 0, 0, PROTOBUF_FIELD_OFFSET(HierarchicalTableViewKeyTableDescriptor, _impl_.key_table_action_column_)}}, - // .io.deephaven.proto.backplane.grpc.Ticket key_table_id = 1; - {::_pbi::TcParser::FastMtS1, - {10, 1, 0, PROTOBUF_FIELD_OFFSET(HierarchicalTableViewKeyTableDescriptor, _impl_.key_table_id_)}}, - }}, {{ - 65535, 65535 - }}, {{ - // .io.deephaven.proto.backplane.grpc.Ticket key_table_id = 1; - {PROTOBUF_FIELD_OFFSET(HierarchicalTableViewKeyTableDescriptor, _impl_.key_table_id_), _Internal::kHasBitsOffset + 1, 0, - (0 | ::_fl::kFcOptional | ::_fl::kMessage | ::_fl::kTvTable)}, - // optional string key_table_action_column = 2; - {PROTOBUF_FIELD_OFFSET(HierarchicalTableViewKeyTableDescriptor, _impl_.key_table_action_column_), _Internal::kHasBitsOffset + 0, 0, - (0 | ::_fl::kFcOptional | ::_fl::kUtf8String | ::_fl::kRepAString)}, - }}, {{ - {::_pbi::TcParser::GetTable<::io::deephaven::proto::backplane::grpc::Ticket>()}, - }}, {{ - "\111\0\27\0\0\0\0\0" - "io.deephaven.proto.backplane.grpc.HierarchicalTableViewKeyTableDescriptor" - "key_table_action_column" - }}, -}; - -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) { - 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>(); -} - -#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; - (void) cached_has_bits; - - cached_has_bits = from._impl_._has_bits_[0]; - if (cached_has_bits & 0x00000003u) { - if (cached_has_bits & 0x00000001u) { - _this->_internal_set_key_table_action_column(from._internal_key_table_action_column()); - } - if (cached_has_bits & 0x00000002u) { - 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_); -} - -void HierarchicalTableViewKeyTableDescriptor::CopyFrom(const HierarchicalTableViewKeyTableDescriptor& from) { -// @@protoc_insertion_point(class_specific_copy_from_start:io.deephaven.proto.backplane.grpc.HierarchicalTableViewKeyTableDescriptor) - if (&from == this) return; - Clear(); - MergeFrom(from); -} - - -void HierarchicalTableViewKeyTableDescriptor::InternalSwap(HierarchicalTableViewKeyTableDescriptor* PROTOBUF_RESTRICT other) { - using std::swap; - auto* arena = GetArena(); - ABSL_DCHECK_EQ(arena, other->GetArena()); - _internal_metadata_.InternalSwap(&other->_internal_metadata_); - swap(_impl_._has_bits_[0], other->_impl_._has_bits_[0]); - ::_pbi::ArenaStringPtr::InternalSwap(&_impl_.key_table_action_column_, &other->_impl_.key_table_action_column_, arena); - swap(_impl_.key_table_id_, other->_impl_.key_table_id_); -} - -::google::protobuf::Metadata HierarchicalTableViewKeyTableDescriptor::GetMetadata() const { - return ::google::protobuf::Message::GetMetadataImpl(GetClassData()->full()); -} -// =================================================================== - -class HierarchicalTableViewResponse::_Internal { - public: -}; - -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>( - from._internal_metadata_); - - // @@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 - {{ - }}, -}; - - - - - - - - -::google::protobuf::Metadata HierarchicalTableViewResponse::GetMetadata() const { - return ::google::protobuf::internal::ZeroFieldsBase::GetMetadataImpl(GetClassData()->full()); -} -// =================================================================== - -class HierarchicalTableSourceExportRequest::_Internal { - public: - using HasBits = - decltype(std::declval()._impl_._has_bits_); - static constexpr ::int32_t kHasBitsOffset = - 8 * PROTOBUF_FIELD_OFFSET(HierarchicalTableSourceExportRequest, _impl_._has_bits_); -}; - -void HierarchicalTableSourceExportRequest::clear_result_table_id() { - ::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() { - ::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 ::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_, from); - ::uint32_t cached_has_bits = _impl_._has_bits_[0]; - _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) -} -inline PROTOBUF_NDEBUG_INLINE HierarchicalTableSourceExportRequest::Impl_::Impl_( - ::google::protobuf::internal::InternalVisibility visibility, - ::google::protobuf::Arena* arena) - : _cached_size_{0} {} - -inline void HierarchicalTableSourceExportRequest::SharedCtor(::_pb::Arena* arena) { - new (&_impl_) Impl_(internal_visibility(), arena); - ::memset(reinterpret_cast(&_impl_) + - offsetof(Impl_, result_table_id_), - 0, - offsetof(Impl_, hierarchical_table_id_) - - offsetof(Impl_, result_table_id_) + - sizeof(Impl_::hierarchical_table_id_)); -} -HierarchicalTableSourceExportRequest::~HierarchicalTableSourceExportRequest() { - // @@protoc_insertion_point(destructor:io.deephaven.proto.backplane.grpc.HierarchicalTableSourceExportRequest) - _internal_metadata_.Delete<::google::protobuf::UnknownFieldSet>(); - SharedDtor(); -} -inline void HierarchicalTableSourceExportRequest::SharedDtor() { - ABSL_DCHECK(GetArena() == nullptr); - delete _impl_.result_table_id_; - delete _impl_.hierarchical_table_id_; - _impl_.~Impl_(); -} - -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_ = { - { - PROTOBUF_FIELD_OFFSET(HierarchicalTableSourceExportRequest, _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 - 2, // num_aux_entries - offsetof(decltype(_table_), 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::HierarchicalTableSourceExportRequest>(), // to_prefetch - #endif // PROTOBUF_PREFETCH_PARSE_TABLE - }, {{ - // .io.deephaven.proto.backplane.grpc.Ticket hierarchical_table_id = 2; - {::_pbi::TcParser::FastMtS1, - {18, 1, 1, PROTOBUF_FIELD_OFFSET(HierarchicalTableSourceExportRequest, _impl_.hierarchical_table_id_)}}, - // .io.deephaven.proto.backplane.grpc.Ticket result_table_id = 1; - {::_pbi::TcParser::FastMtS1, - {10, 0, 0, PROTOBUF_FIELD_OFFSET(HierarchicalTableSourceExportRequest, _impl_.result_table_id_)}}, - }}, {{ - 65535, 65535 - }}, {{ - // .io.deephaven.proto.backplane.grpc.Ticket result_table_id = 1; - {PROTOBUF_FIELD_OFFSET(HierarchicalTableSourceExportRequest, _impl_.result_table_id_), _Internal::kHasBitsOffset + 0, 0, - (0 | ::_fl::kFcOptional | ::_fl::kMessage | ::_fl::kTvTable)}, - // .io.deephaven.proto.backplane.grpc.Ticket hierarchical_table_id = 2; - {PROTOBUF_FIELD_OFFSET(HierarchicalTableSourceExportRequest, _impl_.hierarchical_table_id_), _Internal::kHasBitsOffset + 1, 1, - (0 | ::_fl::kFcOptional | ::_fl::kMessage | ::_fl::kTvTable)}, - }}, {{ - {::_pbi::TcParser::GetTable<::io::deephaven::proto::backplane::grpc::Ticket>()}, - {::_pbi::TcParser::GetTable<::io::deephaven::proto::backplane::grpc::Ticket>()}, - }}, {{ - }}, -}; - -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) { - 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>(); -} - -#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; - (void) cached_has_bits; - - cached_has_bits = from._impl_._has_bits_[0]; - if (cached_has_bits & 0x00000003u) { - if (cached_has_bits & 0x00000001u) { - 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) { - 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_); -} - -void HierarchicalTableSourceExportRequest::CopyFrom(const HierarchicalTableSourceExportRequest& from) { -// @@protoc_insertion_point(class_specific_copy_from_start:io.deephaven.proto.backplane.grpc.HierarchicalTableSourceExportRequest) - if (&from == this) return; - Clear(); - MergeFrom(from); -} - - -void HierarchicalTableSourceExportRequest::InternalSwap(HierarchicalTableSourceExportRequest* PROTOBUF_RESTRICT other) { - using std::swap; - _internal_metadata_.InternalSwap(&other->_internal_metadata_); - swap(_impl_._has_bits_[0], other->_impl_._has_bits_[0]); - ::google::protobuf::internal::memswap< - PROTOBUF_FIELD_OFFSET(HierarchicalTableSourceExportRequest, _impl_.hierarchical_table_id_) - + sizeof(HierarchicalTableSourceExportRequest::_impl_.hierarchical_table_id_) - - PROTOBUF_FIELD_OFFSET(HierarchicalTableSourceExportRequest, _impl_.result_table_id_)>( - reinterpret_cast(&_impl_.result_table_id_), - reinterpret_cast(&other->_impl_.result_table_id_)); -} - -::google::protobuf::Metadata HierarchicalTableSourceExportRequest::GetMetadata() const { - return ::google::protobuf::Message::GetMetadataImpl(GetClassData()->full()); -} -// @@protoc_insertion_point(namespace_scope) -} // namespace grpc -} // namespace backplane -} // namespace proto -} // namespace deephaven -} // namespace io -namespace google { -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 deleted file mode 100644 index 234e4f3c4e7..00000000000 --- a/cpp-client/deephaven/dhclient/proto/deephaven/proto/hierarchicaltable.pb.h +++ /dev/null @@ -1,4067 +0,0 @@ -// 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 - -#ifndef GOOGLE_PROTOBUF_INCLUDED_deephaven_2fproto_2fhierarchicaltable_2eproto_2epb_2eh -#define GOOGLE_PROTOBUF_INCLUDED_deephaven_2fproto_2fhierarchicaltable_2eproto_2epb_2eh - -#include -#include -#include -#include - -#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" -#include "google/protobuf/generated_message_bases.h" -#include "google/protobuf/generated_message_tctable_decl.h" -#include "google/protobuf/generated_message_util.h" -#include "google/protobuf/metadata_lite.h" -#include "google/protobuf/generated_message_reflection.h" -#include "google/protobuf/message.h" -#include "google/protobuf/repeated_field.h" // IWYU pragma: export -#include "google/protobuf/extension_set.h" // IWYU pragma: export -#include "google/protobuf/unknown_field_set.h" -#include "deephaven/proto/table.pb.h" -#include "deephaven/proto/ticket.pb.h" -// @@protoc_insertion_point(includes) - -// Must be included last. -#include "google/protobuf/port_def.inc" - -#define PROTOBUF_INTERNAL_EXPORT_deephaven_2fproto_2fhierarchicaltable_2eproto - -namespace google { -namespace protobuf { -namespace internal { -class AnyMetadata; -} // namespace internal -} // namespace protobuf -} // namespace google - -// Internal implementation detail -- do not use these members. -struct TableStruct_deephaven_2fproto_2fhierarchicaltable_2eproto { - static const ::uint32_t offsets[]; -}; -extern const ::google::protobuf::internal::DescriptorTable - descriptor_table_deephaven_2fproto_2fhierarchicaltable_2eproto; -namespace io { -namespace deephaven { -namespace proto { -namespace backplane { -namespace grpc { -class HierarchicalTableApplyRequest; -struct HierarchicalTableApplyRequestDefaultTypeInternal; -extern HierarchicalTableApplyRequestDefaultTypeInternal _HierarchicalTableApplyRequest_default_instance_; -class HierarchicalTableApplyResponse; -struct HierarchicalTableApplyResponseDefaultTypeInternal; -extern HierarchicalTableApplyResponseDefaultTypeInternal _HierarchicalTableApplyResponse_default_instance_; -class HierarchicalTableDescriptor; -struct HierarchicalTableDescriptorDefaultTypeInternal; -extern HierarchicalTableDescriptorDefaultTypeInternal _HierarchicalTableDescriptor_default_instance_; -class HierarchicalTableSourceExportRequest; -struct HierarchicalTableSourceExportRequestDefaultTypeInternal; -extern HierarchicalTableSourceExportRequestDefaultTypeInternal _HierarchicalTableSourceExportRequest_default_instance_; -class HierarchicalTableViewKeyTableDescriptor; -struct HierarchicalTableViewKeyTableDescriptorDefaultTypeInternal; -extern HierarchicalTableViewKeyTableDescriptorDefaultTypeInternal _HierarchicalTableViewKeyTableDescriptor_default_instance_; -class HierarchicalTableViewRequest; -struct HierarchicalTableViewRequestDefaultTypeInternal; -extern HierarchicalTableViewRequestDefaultTypeInternal _HierarchicalTableViewRequest_default_instance_; -class HierarchicalTableViewResponse; -struct HierarchicalTableViewResponseDefaultTypeInternal; -extern HierarchicalTableViewResponseDefaultTypeInternal _HierarchicalTableViewResponse_default_instance_; -class RollupRequest; -struct RollupRequestDefaultTypeInternal; -extern RollupRequestDefaultTypeInternal _RollupRequest_default_instance_; -class RollupResponse; -struct RollupResponseDefaultTypeInternal; -extern RollupResponseDefaultTypeInternal _RollupResponse_default_instance_; -class TreeRequest; -struct TreeRequestDefaultTypeInternal; -extern TreeRequestDefaultTypeInternal _TreeRequest_default_instance_; -class TreeResponse; -struct TreeResponseDefaultTypeInternal; -extern TreeResponseDefaultTypeInternal _TreeResponse_default_instance_; -} // namespace grpc -} // namespace backplane -} // namespace proto -} // namespace deephaven -} // namespace io -namespace google { -namespace protobuf { -} // namespace protobuf -} // namespace google - -namespace io { -namespace deephaven { -namespace proto { -namespace backplane { -namespace grpc { - -// =================================================================== - - -// ------------------------------------------------------------------- - -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) {} - inline TreeResponse(TreeResponse&& from) noexcept - : TreeResponse(nullptr, std::move(from)) {} - inline TreeResponse& operator=(const TreeResponse& from) { - CopyFrom(from); - return *this; - } - inline TreeResponse& operator=(TreeResponse&& 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 TreeResponse& default_instance() { - return *internal_default_instance(); - } - 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); } - 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 - if (GetArena() == other->GetArena()) { -#endif // !PROTOBUF_FORCE_COPY_IN_SWAP - InternalSwap(other); - } else { - ::google::protobuf::internal::GenericSwap(this, other); - } - } - void UnsafeArenaSwap(TreeResponse* other) { - if (other == this) return; - ABSL_DCHECK(GetArena() == other->GetArena()); - InternalSwap(other); - } - - // implements Message ---------------------------------------------- - - 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) { - ::google::protobuf::internal::ZeroFieldsBase::CopyImpl(*this, from); - } - using ::google::protobuf::internal::ZeroFieldsBase::MergeFrom; - void MergeFrom(const TreeResponse& 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.TreeResponse"; } - - protected: - explicit TreeResponse(::google::protobuf::Arena* arena); - TreeResponse(::google::protobuf::Arena* arena, const TreeResponse& from); - 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; - 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 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) */ { - public: - inline RollupResponse() : RollupResponse(nullptr) {} - 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; - } - inline RollupResponse& operator=(RollupResponse&& 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 RollupResponse& default_instance() { - return *internal_default_instance(); - } - 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); } - 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 - if (GetArena() == other->GetArena()) { -#endif // !PROTOBUF_FORCE_COPY_IN_SWAP - InternalSwap(other); - } else { - ::google::protobuf::internal::GenericSwap(this, other); - } - } - void UnsafeArenaSwap(RollupResponse* other) { - if (other == this) return; - ABSL_DCHECK(GetArena() == other->GetArena()); - InternalSwap(other); - } - - // implements Message ---------------------------------------------- - - 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) { - ::google::protobuf::internal::ZeroFieldsBase::CopyImpl(*this, from); - } - using ::google::protobuf::internal::ZeroFieldsBase::MergeFrom; - void MergeFrom(const RollupResponse& 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.RollupResponse"; } - - protected: - explicit RollupResponse(::google::protobuf::Arena* arena); - RollupResponse(::google::protobuf::Arena* arena, const RollupResponse& from); - 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; - 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 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) */ { - public: - inline HierarchicalTableViewResponse() : HierarchicalTableViewResponse(nullptr) {} - 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; - } - inline HierarchicalTableViewResponse& operator=(HierarchicalTableViewResponse&& 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 HierarchicalTableViewResponse& default_instance() { - return *internal_default_instance(); - } - 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); } - 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 - if (GetArena() == other->GetArena()) { -#endif // !PROTOBUF_FORCE_COPY_IN_SWAP - InternalSwap(other); - } else { - ::google::protobuf::internal::GenericSwap(this, other); - } - } - void UnsafeArenaSwap(HierarchicalTableViewResponse* other) { - if (other == this) return; - ABSL_DCHECK(GetArena() == other->GetArena()); - InternalSwap(other); - } - - // implements Message ---------------------------------------------- - - 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) { - ::google::protobuf::internal::ZeroFieldsBase::CopyImpl(*this, from); - } - using ::google::protobuf::internal::ZeroFieldsBase::MergeFrom; - void MergeFrom(const HierarchicalTableViewResponse& 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.HierarchicalTableViewResponse"; } - - protected: - explicit HierarchicalTableViewResponse(::google::protobuf::Arena* arena); - HierarchicalTableViewResponse(::google::protobuf::Arena* arena, const HierarchicalTableViewResponse& from); - 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; - 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 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) */ { - public: - inline HierarchicalTableDescriptor() : HierarchicalTableDescriptor(nullptr) {} - ~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; - } - inline HierarchicalTableDescriptor& operator=(HierarchicalTableDescriptor&& 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 HierarchicalTableDescriptor& default_instance() { - return *internal_default_instance(); - } - 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); } - 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 - if (GetArena() == other->GetArena()) { -#endif // !PROTOBUF_FORCE_COPY_IN_SWAP - InternalSwap(other); - } else { - ::google::protobuf::internal::GenericSwap(this, other); - } - } - void UnsafeArenaSwap(HierarchicalTableDescriptor* other) { - if (other == this) return; - ABSL_DCHECK(GetArena() == other->GetArena()); - InternalSwap(other); - } - - // implements Message ---------------------------------------------- - - 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); } - - private: - static void MergeImpl( - ::google::protobuf::MessageLite& to_msg, - const ::google::protobuf::MessageLite& from_msg); - - 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; - #endif // PROTOBUF_CUSTOM_VTABLE - int GetCachedSize() const { return _impl_._cached_size_.Get(); } - - private: - void SharedCtor(::google::protobuf::Arena* arena); - void SharedDtor(); - void InternalSwap(HierarchicalTableDescriptor* other); - private: - friend class ::google::protobuf::internal::AnyMetadata; - 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); - 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, - }; - // bytes snapshot_schema = 1; - void clear_snapshot_schema() ; - const std::string& snapshot_schema() const; - template - void set_snapshot_schema(Arg_&& arg, Args_... args); - std::string* mutable_snapshot_schema(); - PROTOBUF_NODISCARD std::string* release_snapshot_schema(); - void set_allocated_snapshot_schema(std::string* value); - - private: - const std::string& _internal_snapshot_schema() const; - inline PROTOBUF_ALWAYS_INLINE void _internal_set_snapshot_schema( - const std::string& value); - std::string* _internal_mutable_snapshot_schema(); - - public: - // bool is_static = 2; - void clear_is_static() ; - bool is_static() const; - void set_is_static(bool value); - - private: - bool _internal_is_static() const; - void _internal_set_is_static(bool value); - - public: - // @@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 - 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 HierarchicalTableDescriptor& from_msg); - ::google::protobuf::internal::ArenaStringPtr snapshot_schema_; - bool is_static_; - mutable ::google::protobuf::internal::CachedSize _cached_size_; - PROTOBUF_TSAN_DECLARE_MEMBER - }; - 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) */ { - public: - inline HierarchicalTableApplyResponse() : HierarchicalTableApplyResponse(nullptr) {} - 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; - } - inline HierarchicalTableApplyResponse& operator=(HierarchicalTableApplyResponse&& 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 HierarchicalTableApplyResponse& default_instance() { - return *internal_default_instance(); - } - 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); } - 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 - if (GetArena() == other->GetArena()) { -#endif // !PROTOBUF_FORCE_COPY_IN_SWAP - InternalSwap(other); - } else { - ::google::protobuf::internal::GenericSwap(this, other); - } - } - void UnsafeArenaSwap(HierarchicalTableApplyResponse* other) { - if (other == this) return; - ABSL_DCHECK(GetArena() == other->GetArena()); - InternalSwap(other); - } - - // implements Message ---------------------------------------------- - - 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) { - ::google::protobuf::internal::ZeroFieldsBase::CopyImpl(*this, from); - } - using ::google::protobuf::internal::ZeroFieldsBase::MergeFrom; - void MergeFrom(const HierarchicalTableApplyResponse& 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.HierarchicalTableApplyResponse"; } - - protected: - explicit HierarchicalTableApplyResponse(::google::protobuf::Arena* arena); - HierarchicalTableApplyResponse(::google::protobuf::Arena* arena, const HierarchicalTableApplyResponse& from); - 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; - 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 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) */ { - public: - inline TreeRequest() : TreeRequest(nullptr) {} - ~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; - } - inline TreeRequest& operator=(TreeRequest&& 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 TreeRequest& default_instance() { - return *internal_default_instance(); - } - 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); } - 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 - if (GetArena() == other->GetArena()) { -#endif // !PROTOBUF_FORCE_COPY_IN_SWAP - InternalSwap(other); - } else { - ::google::protobuf::internal::GenericSwap(this, other); - } - } - void UnsafeArenaSwap(TreeRequest* other) { - if (other == this) return; - ABSL_DCHECK(GetArena() == other->GetArena()); - InternalSwap(other); - } - - // implements Message ---------------------------------------------- - - 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); } - - private: - static void MergeImpl( - ::google::protobuf::MessageLite& to_msg, - const ::google::protobuf::MessageLite& from_msg); - - 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; - #endif // PROTOBUF_CUSTOM_VTABLE - int GetCachedSize() const { return _impl_._cached_size_.Get(); } - - private: - void SharedCtor(::google::protobuf::Arena* arena); - void SharedDtor(); - void InternalSwap(TreeRequest* other); - private: - friend class ::google::protobuf::internal::AnyMetadata; - 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); - 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, - kResultTreeTableIdFieldNumber = 1, - kSourceTableIdFieldNumber = 2, - kPromoteOrphansFieldNumber = 5, - }; - // string identifier_column = 3; - void clear_identifier_column() ; - const std::string& identifier_column() const; - template - void set_identifier_column(Arg_&& arg, Args_... args); - std::string* mutable_identifier_column(); - PROTOBUF_NODISCARD std::string* release_identifier_column(); - void set_allocated_identifier_column(std::string* value); - - private: - const std::string& _internal_identifier_column() const; - inline PROTOBUF_ALWAYS_INLINE void _internal_set_identifier_column( - const std::string& value); - std::string* _internal_mutable_identifier_column(); - - public: - // string parent_identifier_column = 4; - void clear_parent_identifier_column() ; - const std::string& parent_identifier_column() const; - template - void set_parent_identifier_column(Arg_&& arg, Args_... args); - std::string* mutable_parent_identifier_column(); - PROTOBUF_NODISCARD std::string* release_parent_identifier_column(); - void set_allocated_parent_identifier_column(std::string* value); - - private: - const std::string& _internal_parent_identifier_column() const; - inline PROTOBUF_ALWAYS_INLINE void _internal_set_parent_identifier_column( - const std::string& value); - std::string* _internal_mutable_parent_identifier_column(); - - public: - // .io.deephaven.proto.backplane.grpc.Ticket result_tree_table_id = 1; - bool has_result_tree_table_id() const; - void clear_result_tree_table_id() ; - const ::io::deephaven::proto::backplane::grpc::Ticket& result_tree_table_id() const; - PROTOBUF_NODISCARD ::io::deephaven::proto::backplane::grpc::Ticket* release_result_tree_table_id(); - ::io::deephaven::proto::backplane::grpc::Ticket* mutable_result_tree_table_id(); - void set_allocated_result_tree_table_id(::io::deephaven::proto::backplane::grpc::Ticket* value); - void unsafe_arena_set_allocated_result_tree_table_id(::io::deephaven::proto::backplane::grpc::Ticket* value); - ::io::deephaven::proto::backplane::grpc::Ticket* unsafe_arena_release_result_tree_table_id(); - - private: - const ::io::deephaven::proto::backplane::grpc::Ticket& _internal_result_tree_table_id() const; - ::io::deephaven::proto::backplane::grpc::Ticket* _internal_mutable_result_tree_table_id(); - - public: - // .io.deephaven.proto.backplane.grpc.Ticket source_table_id = 2; - bool has_source_table_id() const; - void clear_source_table_id() ; - const ::io::deephaven::proto::backplane::grpc::Ticket& source_table_id() const; - PROTOBUF_NODISCARD ::io::deephaven::proto::backplane::grpc::Ticket* release_source_table_id(); - ::io::deephaven::proto::backplane::grpc::Ticket* mutable_source_table_id(); - void set_allocated_source_table_id(::io::deephaven::proto::backplane::grpc::Ticket* value); - void unsafe_arena_set_allocated_source_table_id(::io::deephaven::proto::backplane::grpc::Ticket* value); - ::io::deephaven::proto::backplane::grpc::Ticket* unsafe_arena_release_source_table_id(); - - private: - const ::io::deephaven::proto::backplane::grpc::Ticket& _internal_source_table_id() const; - ::io::deephaven::proto::backplane::grpc::Ticket* _internal_mutable_source_table_id(); - - public: - // bool promote_orphans = 5; - void clear_promote_orphans() ; - bool promote_orphans() const; - void set_promote_orphans(bool value); - - private: - bool _internal_promote_orphans() const; - void _internal_set_promote_orphans(bool value); - - public: - // @@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 - 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 TreeRequest& from_msg); - ::google::protobuf::internal::HasBits<1> _has_bits_; - mutable ::google::protobuf::internal::CachedSize _cached_size_; - ::google::protobuf::internal::ArenaStringPtr identifier_column_; - ::google::protobuf::internal::ArenaStringPtr parent_identifier_column_; - ::io::deephaven::proto::backplane::grpc::Ticket* result_tree_table_id_; - ::io::deephaven::proto::backplane::grpc::Ticket* source_table_id_; - bool promote_orphans_; - PROTOBUF_TSAN_DECLARE_MEMBER - }; - 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) */ { - public: - inline HierarchicalTableViewKeyTableDescriptor() : HierarchicalTableViewKeyTableDescriptor(nullptr) {} - ~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; - } - inline HierarchicalTableViewKeyTableDescriptor& operator=(HierarchicalTableViewKeyTableDescriptor&& 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 HierarchicalTableViewKeyTableDescriptor& default_instance() { - return *internal_default_instance(); - } - 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); } - 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 - if (GetArena() == other->GetArena()) { -#endif // !PROTOBUF_FORCE_COPY_IN_SWAP - InternalSwap(other); - } else { - ::google::protobuf::internal::GenericSwap(this, other); - } - } - void UnsafeArenaSwap(HierarchicalTableViewKeyTableDescriptor* other) { - if (other == this) return; - ABSL_DCHECK(GetArena() == other->GetArena()); - InternalSwap(other); - } - - // implements Message ---------------------------------------------- - - 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); } - - private: - static void MergeImpl( - ::google::protobuf::MessageLite& to_msg, - const ::google::protobuf::MessageLite& from_msg); - - 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; - #endif // PROTOBUF_CUSTOM_VTABLE - int GetCachedSize() const { return _impl_._cached_size_.Get(); } - - private: - void SharedCtor(::google::protobuf::Arena* arena); - void SharedDtor(); - void InternalSwap(HierarchicalTableViewKeyTableDescriptor* other); - private: - friend class ::google::protobuf::internal::AnyMetadata; - 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); - 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, - }; - // optional string key_table_action_column = 2; - bool has_key_table_action_column() const; - void clear_key_table_action_column() ; - const std::string& key_table_action_column() const; - template - void set_key_table_action_column(Arg_&& arg, Args_... args); - std::string* mutable_key_table_action_column(); - PROTOBUF_NODISCARD std::string* release_key_table_action_column(); - void set_allocated_key_table_action_column(std::string* value); - - private: - const std::string& _internal_key_table_action_column() const; - inline PROTOBUF_ALWAYS_INLINE void _internal_set_key_table_action_column( - const std::string& value); - std::string* _internal_mutable_key_table_action_column(); - - public: - // .io.deephaven.proto.backplane.grpc.Ticket key_table_id = 1; - bool has_key_table_id() const; - void clear_key_table_id() ; - const ::io::deephaven::proto::backplane::grpc::Ticket& key_table_id() const; - PROTOBUF_NODISCARD ::io::deephaven::proto::backplane::grpc::Ticket* release_key_table_id(); - ::io::deephaven::proto::backplane::grpc::Ticket* mutable_key_table_id(); - void set_allocated_key_table_id(::io::deephaven::proto::backplane::grpc::Ticket* value); - void unsafe_arena_set_allocated_key_table_id(::io::deephaven::proto::backplane::grpc::Ticket* value); - ::io::deephaven::proto::backplane::grpc::Ticket* unsafe_arena_release_key_table_id(); - - private: - const ::io::deephaven::proto::backplane::grpc::Ticket& _internal_key_table_id() const; - ::io::deephaven::proto::backplane::grpc::Ticket* _internal_mutable_key_table_id(); - - public: - // @@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 - 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 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_; - ::io::deephaven::proto::backplane::grpc::Ticket* key_table_id_; - PROTOBUF_TSAN_DECLARE_MEMBER - }; - 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) */ { - public: - inline HierarchicalTableSourceExportRequest() : HierarchicalTableSourceExportRequest(nullptr) {} - ~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; - } - inline HierarchicalTableSourceExportRequest& operator=(HierarchicalTableSourceExportRequest&& 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 HierarchicalTableSourceExportRequest& default_instance() { - return *internal_default_instance(); - } - 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); } - 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 - if (GetArena() == other->GetArena()) { -#endif // !PROTOBUF_FORCE_COPY_IN_SWAP - InternalSwap(other); - } else { - ::google::protobuf::internal::GenericSwap(this, other); - } - } - void UnsafeArenaSwap(HierarchicalTableSourceExportRequest* other) { - if (other == this) return; - ABSL_DCHECK(GetArena() == other->GetArena()); - InternalSwap(other); - } - - // implements Message ---------------------------------------------- - - 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); } - - private: - static void MergeImpl( - ::google::protobuf::MessageLite& to_msg, - const ::google::protobuf::MessageLite& from_msg); - - 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; - #endif // PROTOBUF_CUSTOM_VTABLE - int GetCachedSize() const { return _impl_._cached_size_.Get(); } - - private: - void SharedCtor(::google::protobuf::Arena* arena); - void SharedDtor(); - void InternalSwap(HierarchicalTableSourceExportRequest* other); - private: - friend class ::google::protobuf::internal::AnyMetadata; - 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); - 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, - }; - // .io.deephaven.proto.backplane.grpc.Ticket result_table_id = 1; - bool has_result_table_id() const; - void clear_result_table_id() ; - const ::io::deephaven::proto::backplane::grpc::Ticket& result_table_id() const; - PROTOBUF_NODISCARD ::io::deephaven::proto::backplane::grpc::Ticket* release_result_table_id(); - ::io::deephaven::proto::backplane::grpc::Ticket* mutable_result_table_id(); - void set_allocated_result_table_id(::io::deephaven::proto::backplane::grpc::Ticket* value); - void unsafe_arena_set_allocated_result_table_id(::io::deephaven::proto::backplane::grpc::Ticket* value); - ::io::deephaven::proto::backplane::grpc::Ticket* unsafe_arena_release_result_table_id(); - - private: - const ::io::deephaven::proto::backplane::grpc::Ticket& _internal_result_table_id() const; - ::io::deephaven::proto::backplane::grpc::Ticket* _internal_mutable_result_table_id(); - - public: - // .io.deephaven.proto.backplane.grpc.Ticket hierarchical_table_id = 2; - bool has_hierarchical_table_id() const; - void clear_hierarchical_table_id() ; - const ::io::deephaven::proto::backplane::grpc::Ticket& hierarchical_table_id() const; - PROTOBUF_NODISCARD ::io::deephaven::proto::backplane::grpc::Ticket* release_hierarchical_table_id(); - ::io::deephaven::proto::backplane::grpc::Ticket* mutable_hierarchical_table_id(); - void set_allocated_hierarchical_table_id(::io::deephaven::proto::backplane::grpc::Ticket* value); - void unsafe_arena_set_allocated_hierarchical_table_id(::io::deephaven::proto::backplane::grpc::Ticket* value); - ::io::deephaven::proto::backplane::grpc::Ticket* unsafe_arena_release_hierarchical_table_id(); - - private: - const ::io::deephaven::proto::backplane::grpc::Ticket& _internal_hierarchical_table_id() const; - ::io::deephaven::proto::backplane::grpc::Ticket* _internal_mutable_hierarchical_table_id(); - - public: - // @@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 - 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 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_; - ::io::deephaven::proto::backplane::grpc::Ticket* hierarchical_table_id_; - PROTOBUF_TSAN_DECLARE_MEMBER - }; - 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) */ { - public: - inline HierarchicalTableViewRequest() : HierarchicalTableViewRequest(nullptr) {} - ~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; - } - inline HierarchicalTableViewRequest& operator=(HierarchicalTableViewRequest&& 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 HierarchicalTableViewRequest& default_instance() { - return *internal_default_instance(); - } - enum TargetCase { - kHierarchicalTableId = 2, - 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); } - 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 - if (GetArena() == other->GetArena()) { -#endif // !PROTOBUF_FORCE_COPY_IN_SWAP - InternalSwap(other); - } else { - ::google::protobuf::internal::GenericSwap(this, other); - } - } - void UnsafeArenaSwap(HierarchicalTableViewRequest* other) { - if (other == this) return; - ABSL_DCHECK(GetArena() == other->GetArena()); - InternalSwap(other); - } - - // implements Message ---------------------------------------------- - - 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); } - - private: - static void MergeImpl( - ::google::protobuf::MessageLite& to_msg, - const ::google::protobuf::MessageLite& from_msg); - - 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; - #endif // PROTOBUF_CUSTOM_VTABLE - int GetCachedSize() const { return _impl_._cached_size_.Get(); } - - private: - void SharedCtor(::google::protobuf::Arena* arena); - void SharedDtor(); - void InternalSwap(HierarchicalTableViewRequest* other); - private: - friend class ::google::protobuf::internal::AnyMetadata; - 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); - 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, - kHierarchicalTableIdFieldNumber = 2, - kExistingViewIdFieldNumber = 3, - }; - // .io.deephaven.proto.backplane.grpc.Ticket result_view_id = 1; - bool has_result_view_id() const; - void clear_result_view_id() ; - const ::io::deephaven::proto::backplane::grpc::Ticket& result_view_id() const; - PROTOBUF_NODISCARD ::io::deephaven::proto::backplane::grpc::Ticket* release_result_view_id(); - ::io::deephaven::proto::backplane::grpc::Ticket* mutable_result_view_id(); - void set_allocated_result_view_id(::io::deephaven::proto::backplane::grpc::Ticket* value); - void unsafe_arena_set_allocated_result_view_id(::io::deephaven::proto::backplane::grpc::Ticket* value); - ::io::deephaven::proto::backplane::grpc::Ticket* unsafe_arena_release_result_view_id(); - - private: - const ::io::deephaven::proto::backplane::grpc::Ticket& _internal_result_view_id() const; - ::io::deephaven::proto::backplane::grpc::Ticket* _internal_mutable_result_view_id(); - - public: - // .io.deephaven.proto.backplane.grpc.HierarchicalTableViewKeyTableDescriptor expansions = 4; - bool has_expansions() const; - void clear_expansions() ; - const ::io::deephaven::proto::backplane::grpc::HierarchicalTableViewKeyTableDescriptor& expansions() const; - PROTOBUF_NODISCARD ::io::deephaven::proto::backplane::grpc::HierarchicalTableViewKeyTableDescriptor* release_expansions(); - ::io::deephaven::proto::backplane::grpc::HierarchicalTableViewKeyTableDescriptor* mutable_expansions(); - void set_allocated_expansions(::io::deephaven::proto::backplane::grpc::HierarchicalTableViewKeyTableDescriptor* value); - void unsafe_arena_set_allocated_expansions(::io::deephaven::proto::backplane::grpc::HierarchicalTableViewKeyTableDescriptor* value); - ::io::deephaven::proto::backplane::grpc::HierarchicalTableViewKeyTableDescriptor* unsafe_arena_release_expansions(); - - private: - const ::io::deephaven::proto::backplane::grpc::HierarchicalTableViewKeyTableDescriptor& _internal_expansions() const; - ::io::deephaven::proto::backplane::grpc::HierarchicalTableViewKeyTableDescriptor* _internal_mutable_expansions(); - - public: - // .io.deephaven.proto.backplane.grpc.Ticket hierarchical_table_id = 2; - bool has_hierarchical_table_id() const; - private: - bool _internal_has_hierarchical_table_id() const; - - public: - void clear_hierarchical_table_id() ; - const ::io::deephaven::proto::backplane::grpc::Ticket& hierarchical_table_id() const; - PROTOBUF_NODISCARD ::io::deephaven::proto::backplane::grpc::Ticket* release_hierarchical_table_id(); - ::io::deephaven::proto::backplane::grpc::Ticket* mutable_hierarchical_table_id(); - void set_allocated_hierarchical_table_id(::io::deephaven::proto::backplane::grpc::Ticket* value); - void unsafe_arena_set_allocated_hierarchical_table_id(::io::deephaven::proto::backplane::grpc::Ticket* value); - ::io::deephaven::proto::backplane::grpc::Ticket* unsafe_arena_release_hierarchical_table_id(); - - private: - const ::io::deephaven::proto::backplane::grpc::Ticket& _internal_hierarchical_table_id() const; - ::io::deephaven::proto::backplane::grpc::Ticket* _internal_mutable_hierarchical_table_id(); - - public: - // .io.deephaven.proto.backplane.grpc.Ticket existing_view_id = 3; - bool has_existing_view_id() const; - private: - bool _internal_has_existing_view_id() const; - - public: - void clear_existing_view_id() ; - const ::io::deephaven::proto::backplane::grpc::Ticket& existing_view_id() const; - PROTOBUF_NODISCARD ::io::deephaven::proto::backplane::grpc::Ticket* release_existing_view_id(); - ::io::deephaven::proto::backplane::grpc::Ticket* mutable_existing_view_id(); - void set_allocated_existing_view_id(::io::deephaven::proto::backplane::grpc::Ticket* value); - void unsafe_arena_set_allocated_existing_view_id(::io::deephaven::proto::backplane::grpc::Ticket* value); - ::io::deephaven::proto::backplane::grpc::Ticket* unsafe_arena_release_existing_view_id(); - - private: - const ::io::deephaven::proto::backplane::grpc::Ticket& _internal_existing_view_id() const; - ::io::deephaven::proto::backplane::grpc::Ticket* _internal_mutable_existing_view_id(); - - public: - void clear_target(); - TargetCase target_case() const; - // @@protoc_insertion_point(class_scope:io.deephaven.proto.backplane.grpc.HierarchicalTableViewRequest) - private: - 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 - 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 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_; - ::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) */ { - public: - inline HierarchicalTableApplyRequest() : HierarchicalTableApplyRequest(nullptr) {} - ~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; - } - inline HierarchicalTableApplyRequest& operator=(HierarchicalTableApplyRequest&& 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 HierarchicalTableApplyRequest& default_instance() { - return *internal_default_instance(); - } - 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); } - 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 - if (GetArena() == other->GetArena()) { -#endif // !PROTOBUF_FORCE_COPY_IN_SWAP - InternalSwap(other); - } else { - ::google::protobuf::internal::GenericSwap(this, other); - } - } - void UnsafeArenaSwap(HierarchicalTableApplyRequest* other) { - if (other == this) return; - ABSL_DCHECK(GetArena() == other->GetArena()); - InternalSwap(other); - } - - // implements Message ---------------------------------------------- - - 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); } - - private: - static void MergeImpl( - ::google::protobuf::MessageLite& to_msg, - const ::google::protobuf::MessageLite& from_msg); - - 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; - #endif // PROTOBUF_CUSTOM_VTABLE - int GetCachedSize() const { return _impl_._cached_size_.Get(); } - - private: - void SharedCtor(::google::protobuf::Arena* arena); - void SharedDtor(); - void InternalSwap(HierarchicalTableApplyRequest* other); - private: - friend class ::google::protobuf::internal::AnyMetadata; - 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); - 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, - kResultHierarchicalTableIdFieldNumber = 1, - kInputHierarchicalTableIdFieldNumber = 2, - }; - // repeated .io.deephaven.proto.backplane.grpc.Condition filters = 3; - int filters_size() const; - private: - int _internal_filters_size() const; - - 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(); - - 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; - // repeated .io.deephaven.proto.backplane.grpc.SortDescriptor sorts = 4; - int sorts_size() const; - private: - int _internal_sorts_size() const; - - 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(); - - 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; - // .io.deephaven.proto.backplane.grpc.Ticket result_hierarchical_table_id = 1; - bool has_result_hierarchical_table_id() const; - void clear_result_hierarchical_table_id() ; - const ::io::deephaven::proto::backplane::grpc::Ticket& result_hierarchical_table_id() const; - PROTOBUF_NODISCARD ::io::deephaven::proto::backplane::grpc::Ticket* release_result_hierarchical_table_id(); - ::io::deephaven::proto::backplane::grpc::Ticket* mutable_result_hierarchical_table_id(); - void set_allocated_result_hierarchical_table_id(::io::deephaven::proto::backplane::grpc::Ticket* value); - void unsafe_arena_set_allocated_result_hierarchical_table_id(::io::deephaven::proto::backplane::grpc::Ticket* value); - ::io::deephaven::proto::backplane::grpc::Ticket* unsafe_arena_release_result_hierarchical_table_id(); - - private: - const ::io::deephaven::proto::backplane::grpc::Ticket& _internal_result_hierarchical_table_id() const; - ::io::deephaven::proto::backplane::grpc::Ticket* _internal_mutable_result_hierarchical_table_id(); - - public: - // .io.deephaven.proto.backplane.grpc.Ticket input_hierarchical_table_id = 2; - bool has_input_hierarchical_table_id() const; - void clear_input_hierarchical_table_id() ; - const ::io::deephaven::proto::backplane::grpc::Ticket& input_hierarchical_table_id() const; - PROTOBUF_NODISCARD ::io::deephaven::proto::backplane::grpc::Ticket* release_input_hierarchical_table_id(); - ::io::deephaven::proto::backplane::grpc::Ticket* mutable_input_hierarchical_table_id(); - void set_allocated_input_hierarchical_table_id(::io::deephaven::proto::backplane::grpc::Ticket* value); - void unsafe_arena_set_allocated_input_hierarchical_table_id(::io::deephaven::proto::backplane::grpc::Ticket* value); - ::io::deephaven::proto::backplane::grpc::Ticket* unsafe_arena_release_input_hierarchical_table_id(); - - private: - const ::io::deephaven::proto::backplane::grpc::Ticket& _internal_input_hierarchical_table_id() const; - ::io::deephaven::proto::backplane::grpc::Ticket* _internal_mutable_input_hierarchical_table_id(); - - public: - // @@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 - 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 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_; - ::google::protobuf::RepeatedPtrField< ::io::deephaven::proto::backplane::grpc::SortDescriptor > sorts_; - ::io::deephaven::proto::backplane::grpc::Ticket* result_hierarchical_table_id_; - ::io::deephaven::proto::backplane::grpc::Ticket* input_hierarchical_table_id_; - PROTOBUF_TSAN_DECLARE_MEMBER - }; - 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) */ { - public: - inline RollupRequest() : RollupRequest(nullptr) {} - ~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; - } - inline RollupRequest& operator=(RollupRequest&& 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 RollupRequest& default_instance() { - return *internal_default_instance(); - } - 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); } - 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 - if (GetArena() == other->GetArena()) { -#endif // !PROTOBUF_FORCE_COPY_IN_SWAP - InternalSwap(other); - } else { - ::google::protobuf::internal::GenericSwap(this, other); - } - } - void UnsafeArenaSwap(RollupRequest* other) { - if (other == this) return; - ABSL_DCHECK(GetArena() == other->GetArena()); - InternalSwap(other); - } - - // implements Message ---------------------------------------------- - - 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); } - - private: - static void MergeImpl( - ::google::protobuf::MessageLite& to_msg, - const ::google::protobuf::MessageLite& from_msg); - - 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; - #endif // PROTOBUF_CUSTOM_VTABLE - int GetCachedSize() const { return _impl_._cached_size_.Get(); } - - private: - void SharedCtor(::google::protobuf::Arena* arena); - void SharedDtor(); - void InternalSwap(RollupRequest* other); - private: - friend class ::google::protobuf::internal::AnyMetadata; - 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); - 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, - kResultRollupTableIdFieldNumber = 1, - kSourceTableIdFieldNumber = 2, - kIncludeConstituentsFieldNumber = 4, - }; - // repeated .io.deephaven.proto.backplane.grpc.Aggregation aggregations = 3; - int aggregations_size() const; - private: - int _internal_aggregations_size() const; - - 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(); - - 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; - // repeated string group_by_columns = 5; - int group_by_columns_size() const; - private: - int _internal_group_by_columns_size() const; - - public: - void clear_group_by_columns() ; - const std::string& group_by_columns(int index) const; - std::string* mutable_group_by_columns(int index); - template - void set_group_by_columns(int index, Arg_&& value, Args_... args); - std::string* add_group_by_columns(); - 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(); - - private: - const ::google::protobuf::RepeatedPtrField& _internal_group_by_columns() const; - ::google::protobuf::RepeatedPtrField* _internal_mutable_group_by_columns(); - - public: - // .io.deephaven.proto.backplane.grpc.Ticket result_rollup_table_id = 1; - bool has_result_rollup_table_id() const; - void clear_result_rollup_table_id() ; - const ::io::deephaven::proto::backplane::grpc::Ticket& result_rollup_table_id() const; - PROTOBUF_NODISCARD ::io::deephaven::proto::backplane::grpc::Ticket* release_result_rollup_table_id(); - ::io::deephaven::proto::backplane::grpc::Ticket* mutable_result_rollup_table_id(); - void set_allocated_result_rollup_table_id(::io::deephaven::proto::backplane::grpc::Ticket* value); - void unsafe_arena_set_allocated_result_rollup_table_id(::io::deephaven::proto::backplane::grpc::Ticket* value); - ::io::deephaven::proto::backplane::grpc::Ticket* unsafe_arena_release_result_rollup_table_id(); - - private: - const ::io::deephaven::proto::backplane::grpc::Ticket& _internal_result_rollup_table_id() const; - ::io::deephaven::proto::backplane::grpc::Ticket* _internal_mutable_result_rollup_table_id(); - - public: - // .io.deephaven.proto.backplane.grpc.Ticket source_table_id = 2; - bool has_source_table_id() const; - void clear_source_table_id() ; - const ::io::deephaven::proto::backplane::grpc::Ticket& source_table_id() const; - PROTOBUF_NODISCARD ::io::deephaven::proto::backplane::grpc::Ticket* release_source_table_id(); - ::io::deephaven::proto::backplane::grpc::Ticket* mutable_source_table_id(); - void set_allocated_source_table_id(::io::deephaven::proto::backplane::grpc::Ticket* value); - void unsafe_arena_set_allocated_source_table_id(::io::deephaven::proto::backplane::grpc::Ticket* value); - ::io::deephaven::proto::backplane::grpc::Ticket* unsafe_arena_release_source_table_id(); - - private: - const ::io::deephaven::proto::backplane::grpc::Ticket& _internal_source_table_id() const; - ::io::deephaven::proto::backplane::grpc::Ticket* _internal_mutable_source_table_id(); - - public: - // bool include_constituents = 4; - void clear_include_constituents() ; - bool include_constituents() const; - void set_include_constituents(bool value); - - private: - bool _internal_include_constituents() const; - void _internal_set_include_constituents(bool value); - - public: - // @@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 - 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 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_; - ::google::protobuf::RepeatedPtrField group_by_columns_; - ::io::deephaven::proto::backplane::grpc::Ticket* result_rollup_table_id_; - ::io::deephaven::proto::backplane::grpc::Ticket* source_table_id_; - bool include_constituents_; - PROTOBUF_TSAN_DECLARE_MEMBER - }; - union { Impl_ _impl_; }; - friend struct ::TableStruct_deephaven_2fproto_2fhierarchicaltable_2eproto; -}; - -// =================================================================== - - - - -// =================================================================== - - -#ifdef __GNUC__ -#pragma GCC diagnostic push -#pragma GCC diagnostic ignored "-Wstrict-aliasing" -#endif // __GNUC__ -// ------------------------------------------------------------------- - -// RollupRequest - -// .io.deephaven.proto.backplane.grpc.Ticket result_rollup_table_id = 1; -inline bool RollupRequest::has_result_rollup_table_id() const { - bool value = (_impl_._has_bits_[0] & 0x00000001u) != 0; - PROTOBUF_ASSUME(!value || _impl_.result_rollup_table_id_ != nullptr); - return value; -} -inline const ::io::deephaven::proto::backplane::grpc::Ticket& RollupRequest::_internal_result_rollup_table_id() const { - ::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_); -} -inline const ::io::deephaven::proto::backplane::grpc::Ticket& RollupRequest::result_rollup_table_id() const ABSL_ATTRIBUTE_LIFETIME_BOUND { - // @@protoc_insertion_point(field_get:io.deephaven.proto.backplane.grpc.RollupRequest.result_rollup_table_id) - return _internal_result_rollup_table_id(); -} -inline void RollupRequest::unsafe_arena_set_allocated_result_rollup_table_id(::io::deephaven::proto::backplane::grpc::Ticket* value) { - ::google::protobuf::internal::TSanWrite(&_impl_); - if (GetArena() == nullptr) { - delete reinterpret_cast<::google::protobuf::MessageLite*>(_impl_.result_rollup_table_id_); - } - _impl_.result_rollup_table_id_ = reinterpret_cast<::io::deephaven::proto::backplane::grpc::Ticket*>(value); - if (value != nullptr) { - _impl_._has_bits_[0] |= 0x00000001u; - } else { - _impl_._has_bits_[0] &= ~0x00000001u; - } - // @@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() { - ::google::protobuf::internal::TSanWrite(&_impl_); - - _impl_._has_bits_[0] &= ~0x00000001u; - ::io::deephaven::proto::backplane::grpc::Ticket* released = _impl_.result_rollup_table_id_; - _impl_.result_rollup_table_id_ = nullptr; -#ifdef PROTOBUF_FORCE_COPY_IN_RELEASE - auto* old = reinterpret_cast<::google::protobuf::MessageLite*>(released); - released = ::google::protobuf::internal::DuplicateIfNonNull(released); - if (GetArena() == nullptr) { - delete old; - } -#else // PROTOBUF_FORCE_COPY_IN_RELEASE - if (GetArena() != nullptr) { - released = ::google::protobuf::internal::DuplicateIfNonNull(released); - } -#endif // !PROTOBUF_FORCE_COPY_IN_RELEASE - return released; -} -inline ::io::deephaven::proto::backplane::grpc::Ticket* RollupRequest::unsafe_arena_release_result_rollup_table_id() { - ::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; - ::io::deephaven::proto::backplane::grpc::Ticket* temp = _impl_.result_rollup_table_id_; - _impl_.result_rollup_table_id_ = nullptr; - return temp; -} -inline ::io::deephaven::proto::backplane::grpc::Ticket* RollupRequest::_internal_mutable_result_rollup_table_id() { - ::google::protobuf::internal::TSanWrite(&_impl_); - if (_impl_.result_rollup_table_id_ == nullptr) { - 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(); - ::google::protobuf::internal::TSanWrite(&_impl_); - if (message_arena == nullptr) { - delete reinterpret_cast<::google::protobuf::MessageLite*>(_impl_.result_rollup_table_id_); - } - - if (value != nullptr) { - ::google::protobuf::Arena* submessage_arena = reinterpret_cast<::google::protobuf::MessageLite*>(value)->GetArena(); - if (message_arena != submessage_arena) { - value = ::google::protobuf::internal::GetOwnedMessage(message_arena, value, submessage_arena); - } - _impl_._has_bits_[0] |= 0x00000001u; - } else { - _impl_._has_bits_[0] &= ~0x00000001u; - } - - _impl_.result_rollup_table_id_ = reinterpret_cast<::io::deephaven::proto::backplane::grpc::Ticket*>(value); - // @@protoc_insertion_point(field_set_allocated:io.deephaven.proto.backplane.grpc.RollupRequest.result_rollup_table_id) -} - -// .io.deephaven.proto.backplane.grpc.Ticket source_table_id = 2; -inline bool RollupRequest::has_source_table_id() const { - bool value = (_impl_._has_bits_[0] & 0x00000002u) != 0; - PROTOBUF_ASSUME(!value || _impl_.source_table_id_ != nullptr); - return value; -} -inline const ::io::deephaven::proto::backplane::grpc::Ticket& RollupRequest::_internal_source_table_id() const { - ::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_); -} -inline const ::io::deephaven::proto::backplane::grpc::Ticket& RollupRequest::source_table_id() const ABSL_ATTRIBUTE_LIFETIME_BOUND { - // @@protoc_insertion_point(field_get:io.deephaven.proto.backplane.grpc.RollupRequest.source_table_id) - return _internal_source_table_id(); -} -inline void RollupRequest::unsafe_arena_set_allocated_source_table_id(::io::deephaven::proto::backplane::grpc::Ticket* value) { - ::google::protobuf::internal::TSanWrite(&_impl_); - if (GetArena() == nullptr) { - delete reinterpret_cast<::google::protobuf::MessageLite*>(_impl_.source_table_id_); - } - _impl_.source_table_id_ = reinterpret_cast<::io::deephaven::proto::backplane::grpc::Ticket*>(value); - if (value != nullptr) { - _impl_._has_bits_[0] |= 0x00000002u; - } else { - _impl_._has_bits_[0] &= ~0x00000002u; - } - // @@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() { - ::google::protobuf::internal::TSanWrite(&_impl_); - - _impl_._has_bits_[0] &= ~0x00000002u; - ::io::deephaven::proto::backplane::grpc::Ticket* released = _impl_.source_table_id_; - _impl_.source_table_id_ = nullptr; -#ifdef PROTOBUF_FORCE_COPY_IN_RELEASE - auto* old = reinterpret_cast<::google::protobuf::MessageLite*>(released); - released = ::google::protobuf::internal::DuplicateIfNonNull(released); - if (GetArena() == nullptr) { - delete old; - } -#else // PROTOBUF_FORCE_COPY_IN_RELEASE - if (GetArena() != nullptr) { - released = ::google::protobuf::internal::DuplicateIfNonNull(released); - } -#endif // !PROTOBUF_FORCE_COPY_IN_RELEASE - return released; -} -inline ::io::deephaven::proto::backplane::grpc::Ticket* RollupRequest::unsafe_arena_release_source_table_id() { - ::google::protobuf::internal::TSanWrite(&_impl_); - // @@protoc_insertion_point(field_release:io.deephaven.proto.backplane.grpc.RollupRequest.source_table_id) - - _impl_._has_bits_[0] &= ~0x00000002u; - ::io::deephaven::proto::backplane::grpc::Ticket* temp = _impl_.source_table_id_; - _impl_.source_table_id_ = nullptr; - return temp; -} -inline ::io::deephaven::proto::backplane::grpc::Ticket* RollupRequest::_internal_mutable_source_table_id() { - ::google::protobuf::internal::TSanWrite(&_impl_); - if (_impl_.source_table_id_ == nullptr) { - 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(); - ::google::protobuf::internal::TSanWrite(&_impl_); - if (message_arena == nullptr) { - delete reinterpret_cast<::google::protobuf::MessageLite*>(_impl_.source_table_id_); - } - - if (value != nullptr) { - ::google::protobuf::Arena* submessage_arena = reinterpret_cast<::google::protobuf::MessageLite*>(value)->GetArena(); - if (message_arena != submessage_arena) { - value = ::google::protobuf::internal::GetOwnedMessage(message_arena, value, submessage_arena); - } - _impl_._has_bits_[0] |= 0x00000002u; - } else { - _impl_._has_bits_[0] &= ~0x00000002u; - } - - _impl_.source_table_id_ = reinterpret_cast<::io::deephaven::proto::backplane::grpc::Ticket*>(value); - // @@protoc_insertion_point(field_set_allocated:io.deephaven.proto.backplane.grpc.RollupRequest.source_table_id) -} - -// repeated .io.deephaven.proto.backplane.grpc.Aggregation aggregations = 3; -inline int RollupRequest::_internal_aggregations_size() const { - return _internal_aggregations().size(); -} -inline int RollupRequest::aggregations_size() const { - return _internal_aggregations_size(); -} -inline ::io::deephaven::proto::backplane::grpc::Aggregation* RollupRequest::mutable_aggregations(int index) - ABSL_ATTRIBUTE_LIFETIME_BOUND { - // @@protoc_insertion_point(field_mutable:io.deephaven.proto.backplane.grpc.RollupRequest.aggregations) - return _internal_mutable_aggregations()->Mutable(index); -} -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) - ::google::protobuf::internal::TSanWrite(&_impl_); - return _internal_mutable_aggregations(); -} -inline const ::io::deephaven::proto::backplane::grpc::Aggregation& RollupRequest::aggregations(int index) const - ABSL_ATTRIBUTE_LIFETIME_BOUND { - // @@protoc_insertion_point(field_get:io.deephaven.proto.backplane.grpc.RollupRequest.aggregations) - return _internal_aggregations().Get(index); -} -inline ::io::deephaven::proto::backplane::grpc::Aggregation* RollupRequest::add_aggregations() ABSL_ATTRIBUTE_LIFETIME_BOUND { - ::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; -} -inline const ::google::protobuf::RepeatedPtrField<::io::deephaven::proto::backplane::grpc::Aggregation>& RollupRequest::aggregations() const - ABSL_ATTRIBUTE_LIFETIME_BOUND { - // @@protoc_insertion_point(field_list:io.deephaven.proto.backplane.grpc.RollupRequest.aggregations) - return _internal_aggregations(); -} -inline const ::google::protobuf::RepeatedPtrField<::io::deephaven::proto::backplane::grpc::Aggregation>& -RollupRequest::_internal_aggregations() const { - ::google::protobuf::internal::TSanRead(&_impl_); - return _impl_.aggregations_; -} -inline ::google::protobuf::RepeatedPtrField<::io::deephaven::proto::backplane::grpc::Aggregation>* -RollupRequest::_internal_mutable_aggregations() { - ::google::protobuf::internal::TSanRead(&_impl_); - return &_impl_.aggregations_; -} - -// bool include_constituents = 4; -inline void RollupRequest::clear_include_constituents() { - ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.include_constituents_ = false; -} -inline bool RollupRequest::include_constituents() const { - // @@protoc_insertion_point(field_get:io.deephaven.proto.backplane.grpc.RollupRequest.include_constituents) - return _internal_include_constituents(); -} -inline void RollupRequest::set_include_constituents(bool value) { - _internal_set_include_constituents(value); - // @@protoc_insertion_point(field_set:io.deephaven.proto.backplane.grpc.RollupRequest.include_constituents) -} -inline bool RollupRequest::_internal_include_constituents() const { - ::google::protobuf::internal::TSanRead(&_impl_); - return _impl_.include_constituents_; -} -inline void RollupRequest::_internal_set_include_constituents(bool value) { - ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.include_constituents_ = value; -} - -// repeated string group_by_columns = 5; -inline int RollupRequest::_internal_group_by_columns_size() const { - return _internal_group_by_columns().size(); -} -inline int RollupRequest::group_by_columns_size() const { - return _internal_group_by_columns_size(); -} -inline void RollupRequest::clear_group_by_columns() { - ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.group_by_columns_.Clear(); -} -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; -} -inline const std::string& RollupRequest::group_by_columns(int index) const - ABSL_ATTRIBUTE_LIFETIME_BOUND { - // @@protoc_insertion_point(field_get:io.deephaven.proto.backplane.grpc.RollupRequest.group_by_columns) - return _internal_group_by_columns().Get(index); -} -inline std::string* RollupRequest::mutable_group_by_columns(int index) - ABSL_ATTRIBUTE_LIFETIME_BOUND { - // @@protoc_insertion_point(field_mutable:io.deephaven.proto.backplane.grpc.RollupRequest.group_by_columns) - return _internal_mutable_group_by_columns()->Mutable(index); -} -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) -} -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 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) - return _internal_group_by_columns(); -} -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) - ::google::protobuf::internal::TSanWrite(&_impl_); - return _internal_mutable_group_by_columns(); -} -inline const ::google::protobuf::RepeatedPtrField& -RollupRequest::_internal_group_by_columns() const { - ::google::protobuf::internal::TSanRead(&_impl_); - return _impl_.group_by_columns_; -} -inline ::google::protobuf::RepeatedPtrField* -RollupRequest::_internal_mutable_group_by_columns() { - ::google::protobuf::internal::TSanRead(&_impl_); - return &_impl_.group_by_columns_; -} - -// ------------------------------------------------------------------- - -// RollupResponse - -// ------------------------------------------------------------------- - -// TreeRequest - -// .io.deephaven.proto.backplane.grpc.Ticket result_tree_table_id = 1; -inline bool TreeRequest::has_result_tree_table_id() const { - bool value = (_impl_._has_bits_[0] & 0x00000001u) != 0; - PROTOBUF_ASSUME(!value || _impl_.result_tree_table_id_ != nullptr); - return value; -} -inline const ::io::deephaven::proto::backplane::grpc::Ticket& TreeRequest::_internal_result_tree_table_id() const { - ::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_); -} -inline const ::io::deephaven::proto::backplane::grpc::Ticket& TreeRequest::result_tree_table_id() const ABSL_ATTRIBUTE_LIFETIME_BOUND { - // @@protoc_insertion_point(field_get:io.deephaven.proto.backplane.grpc.TreeRequest.result_tree_table_id) - return _internal_result_tree_table_id(); -} -inline void TreeRequest::unsafe_arena_set_allocated_result_tree_table_id(::io::deephaven::proto::backplane::grpc::Ticket* value) { - ::google::protobuf::internal::TSanWrite(&_impl_); - if (GetArena() == nullptr) { - delete reinterpret_cast<::google::protobuf::MessageLite*>(_impl_.result_tree_table_id_); - } - _impl_.result_tree_table_id_ = reinterpret_cast<::io::deephaven::proto::backplane::grpc::Ticket*>(value); - if (value != nullptr) { - _impl_._has_bits_[0] |= 0x00000001u; - } else { - _impl_._has_bits_[0] &= ~0x00000001u; - } - // @@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() { - ::google::protobuf::internal::TSanWrite(&_impl_); - - _impl_._has_bits_[0] &= ~0x00000001u; - ::io::deephaven::proto::backplane::grpc::Ticket* released = _impl_.result_tree_table_id_; - _impl_.result_tree_table_id_ = nullptr; -#ifdef PROTOBUF_FORCE_COPY_IN_RELEASE - auto* old = reinterpret_cast<::google::protobuf::MessageLite*>(released); - released = ::google::protobuf::internal::DuplicateIfNonNull(released); - if (GetArena() == nullptr) { - delete old; - } -#else // PROTOBUF_FORCE_COPY_IN_RELEASE - if (GetArena() != nullptr) { - released = ::google::protobuf::internal::DuplicateIfNonNull(released); - } -#endif // !PROTOBUF_FORCE_COPY_IN_RELEASE - return released; -} -inline ::io::deephaven::proto::backplane::grpc::Ticket* TreeRequest::unsafe_arena_release_result_tree_table_id() { - ::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; - ::io::deephaven::proto::backplane::grpc::Ticket* temp = _impl_.result_tree_table_id_; - _impl_.result_tree_table_id_ = nullptr; - return temp; -} -inline ::io::deephaven::proto::backplane::grpc::Ticket* TreeRequest::_internal_mutable_result_tree_table_id() { - ::google::protobuf::internal::TSanWrite(&_impl_); - if (_impl_.result_tree_table_id_ == nullptr) { - 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(); - ::google::protobuf::internal::TSanWrite(&_impl_); - if (message_arena == nullptr) { - delete reinterpret_cast<::google::protobuf::MessageLite*>(_impl_.result_tree_table_id_); - } - - if (value != nullptr) { - ::google::protobuf::Arena* submessage_arena = reinterpret_cast<::google::protobuf::MessageLite*>(value)->GetArena(); - if (message_arena != submessage_arena) { - value = ::google::protobuf::internal::GetOwnedMessage(message_arena, value, submessage_arena); - } - _impl_._has_bits_[0] |= 0x00000001u; - } else { - _impl_._has_bits_[0] &= ~0x00000001u; - } - - _impl_.result_tree_table_id_ = reinterpret_cast<::io::deephaven::proto::backplane::grpc::Ticket*>(value); - // @@protoc_insertion_point(field_set_allocated:io.deephaven.proto.backplane.grpc.TreeRequest.result_tree_table_id) -} - -// .io.deephaven.proto.backplane.grpc.Ticket source_table_id = 2; -inline bool TreeRequest::has_source_table_id() const { - bool value = (_impl_._has_bits_[0] & 0x00000002u) != 0; - PROTOBUF_ASSUME(!value || _impl_.source_table_id_ != nullptr); - return value; -} -inline const ::io::deephaven::proto::backplane::grpc::Ticket& TreeRequest::_internal_source_table_id() const { - ::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_); -} -inline const ::io::deephaven::proto::backplane::grpc::Ticket& TreeRequest::source_table_id() const ABSL_ATTRIBUTE_LIFETIME_BOUND { - // @@protoc_insertion_point(field_get:io.deephaven.proto.backplane.grpc.TreeRequest.source_table_id) - return _internal_source_table_id(); -} -inline void TreeRequest::unsafe_arena_set_allocated_source_table_id(::io::deephaven::proto::backplane::grpc::Ticket* value) { - ::google::protobuf::internal::TSanWrite(&_impl_); - if (GetArena() == nullptr) { - delete reinterpret_cast<::google::protobuf::MessageLite*>(_impl_.source_table_id_); - } - _impl_.source_table_id_ = reinterpret_cast<::io::deephaven::proto::backplane::grpc::Ticket*>(value); - if (value != nullptr) { - _impl_._has_bits_[0] |= 0x00000002u; - } else { - _impl_._has_bits_[0] &= ~0x00000002u; - } - // @@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() { - ::google::protobuf::internal::TSanWrite(&_impl_); - - _impl_._has_bits_[0] &= ~0x00000002u; - ::io::deephaven::proto::backplane::grpc::Ticket* released = _impl_.source_table_id_; - _impl_.source_table_id_ = nullptr; -#ifdef PROTOBUF_FORCE_COPY_IN_RELEASE - auto* old = reinterpret_cast<::google::protobuf::MessageLite*>(released); - released = ::google::protobuf::internal::DuplicateIfNonNull(released); - if (GetArena() == nullptr) { - delete old; - } -#else // PROTOBUF_FORCE_COPY_IN_RELEASE - if (GetArena() != nullptr) { - released = ::google::protobuf::internal::DuplicateIfNonNull(released); - } -#endif // !PROTOBUF_FORCE_COPY_IN_RELEASE - return released; -} -inline ::io::deephaven::proto::backplane::grpc::Ticket* TreeRequest::unsafe_arena_release_source_table_id() { - ::google::protobuf::internal::TSanWrite(&_impl_); - // @@protoc_insertion_point(field_release:io.deephaven.proto.backplane.grpc.TreeRequest.source_table_id) - - _impl_._has_bits_[0] &= ~0x00000002u; - ::io::deephaven::proto::backplane::grpc::Ticket* temp = _impl_.source_table_id_; - _impl_.source_table_id_ = nullptr; - return temp; -} -inline ::io::deephaven::proto::backplane::grpc::Ticket* TreeRequest::_internal_mutable_source_table_id() { - ::google::protobuf::internal::TSanWrite(&_impl_); - if (_impl_.source_table_id_ == nullptr) { - 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(); - ::google::protobuf::internal::TSanWrite(&_impl_); - if (message_arena == nullptr) { - delete reinterpret_cast<::google::protobuf::MessageLite*>(_impl_.source_table_id_); - } - - if (value != nullptr) { - ::google::protobuf::Arena* submessage_arena = reinterpret_cast<::google::protobuf::MessageLite*>(value)->GetArena(); - if (message_arena != submessage_arena) { - value = ::google::protobuf::internal::GetOwnedMessage(message_arena, value, submessage_arena); - } - _impl_._has_bits_[0] |= 0x00000002u; - } else { - _impl_._has_bits_[0] &= ~0x00000002u; - } - - _impl_.source_table_id_ = reinterpret_cast<::io::deephaven::proto::backplane::grpc::Ticket*>(value); - // @@protoc_insertion_point(field_set_allocated:io.deephaven.proto.backplane.grpc.TreeRequest.source_table_id) -} - -// string identifier_column = 3; -inline void TreeRequest::clear_identifier_column() { - ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.identifier_column_.ClearToEmpty(); -} -inline const std::string& TreeRequest::identifier_column() const - ABSL_ATTRIBUTE_LIFETIME_BOUND { - // @@protoc_insertion_point(field_get:io.deephaven.proto.backplane.grpc.TreeRequest.identifier_column) - return _internal_identifier_column(); -} -template -inline PROTOBUF_ALWAYS_INLINE void TreeRequest::set_identifier_column(Arg_&& arg, - Args_... args) { - ::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) -} -inline std::string* TreeRequest::mutable_identifier_column() ABSL_ATTRIBUTE_LIFETIME_BOUND { - std::string* _s = _internal_mutable_identifier_column(); - // @@protoc_insertion_point(field_mutable:io.deephaven.proto.backplane.grpc.TreeRequest.identifier_column) - return _s; -} -inline const std::string& TreeRequest::_internal_identifier_column() const { - ::google::protobuf::internal::TSanRead(&_impl_); - return _impl_.identifier_column_.Get(); -} -inline void TreeRequest::_internal_set_identifier_column(const std::string& value) { - ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.identifier_column_.Set(value, GetArena()); -} -inline std::string* TreeRequest::_internal_mutable_identifier_column() { - ::google::protobuf::internal::TSanWrite(&_impl_); - return _impl_.identifier_column_.Mutable( GetArena()); -} -inline std::string* TreeRequest::release_identifier_column() { - ::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) { - ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.identifier_column_.SetAllocated(value, GetArena()); - #ifdef PROTOBUF_FORCE_COPY_DEFAULT_STRING - if (_impl_.identifier_column_.IsDefault()) { - _impl_.identifier_column_.Set("", GetArena()); - } - #endif // PROTOBUF_FORCE_COPY_DEFAULT_STRING - // @@protoc_insertion_point(field_set_allocated:io.deephaven.proto.backplane.grpc.TreeRequest.identifier_column) -} - -// string parent_identifier_column = 4; -inline void TreeRequest::clear_parent_identifier_column() { - ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.parent_identifier_column_.ClearToEmpty(); -} -inline const std::string& TreeRequest::parent_identifier_column() const - ABSL_ATTRIBUTE_LIFETIME_BOUND { - // @@protoc_insertion_point(field_get:io.deephaven.proto.backplane.grpc.TreeRequest.parent_identifier_column) - return _internal_parent_identifier_column(); -} -template -inline PROTOBUF_ALWAYS_INLINE void TreeRequest::set_parent_identifier_column(Arg_&& arg, - Args_... args) { - ::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) -} -inline std::string* TreeRequest::mutable_parent_identifier_column() ABSL_ATTRIBUTE_LIFETIME_BOUND { - std::string* _s = _internal_mutable_parent_identifier_column(); - // @@protoc_insertion_point(field_mutable:io.deephaven.proto.backplane.grpc.TreeRequest.parent_identifier_column) - return _s; -} -inline const std::string& TreeRequest::_internal_parent_identifier_column() const { - ::google::protobuf::internal::TSanRead(&_impl_); - return _impl_.parent_identifier_column_.Get(); -} -inline void TreeRequest::_internal_set_parent_identifier_column(const std::string& value) { - ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.parent_identifier_column_.Set(value, GetArena()); -} -inline std::string* TreeRequest::_internal_mutable_parent_identifier_column() { - ::google::protobuf::internal::TSanWrite(&_impl_); - return _impl_.parent_identifier_column_.Mutable( GetArena()); -} -inline std::string* TreeRequest::release_parent_identifier_column() { - ::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) { - ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.parent_identifier_column_.SetAllocated(value, GetArena()); - #ifdef PROTOBUF_FORCE_COPY_DEFAULT_STRING - if (_impl_.parent_identifier_column_.IsDefault()) { - _impl_.parent_identifier_column_.Set("", GetArena()); - } - #endif // PROTOBUF_FORCE_COPY_DEFAULT_STRING - // @@protoc_insertion_point(field_set_allocated:io.deephaven.proto.backplane.grpc.TreeRequest.parent_identifier_column) -} - -// bool promote_orphans = 5; -inline void TreeRequest::clear_promote_orphans() { - ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.promote_orphans_ = false; -} -inline bool TreeRequest::promote_orphans() const { - // @@protoc_insertion_point(field_get:io.deephaven.proto.backplane.grpc.TreeRequest.promote_orphans) - return _internal_promote_orphans(); -} -inline void TreeRequest::set_promote_orphans(bool value) { - _internal_set_promote_orphans(value); - // @@protoc_insertion_point(field_set:io.deephaven.proto.backplane.grpc.TreeRequest.promote_orphans) -} -inline bool TreeRequest::_internal_promote_orphans() const { - ::google::protobuf::internal::TSanRead(&_impl_); - return _impl_.promote_orphans_; -} -inline void TreeRequest::_internal_set_promote_orphans(bool value) { - ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.promote_orphans_ = value; -} - -// ------------------------------------------------------------------- - -// TreeResponse - -// ------------------------------------------------------------------- - -// HierarchicalTableApplyRequest - -// .io.deephaven.proto.backplane.grpc.Ticket result_hierarchical_table_id = 1; -inline bool HierarchicalTableApplyRequest::has_result_hierarchical_table_id() const { - bool value = (_impl_._has_bits_[0] & 0x00000001u) != 0; - PROTOBUF_ASSUME(!value || _impl_.result_hierarchical_table_id_ != nullptr); - return value; -} -inline const ::io::deephaven::proto::backplane::grpc::Ticket& HierarchicalTableApplyRequest::_internal_result_hierarchical_table_id() const { - ::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_); -} -inline const ::io::deephaven::proto::backplane::grpc::Ticket& HierarchicalTableApplyRequest::result_hierarchical_table_id() const ABSL_ATTRIBUTE_LIFETIME_BOUND { - // @@protoc_insertion_point(field_get:io.deephaven.proto.backplane.grpc.HierarchicalTableApplyRequest.result_hierarchical_table_id) - return _internal_result_hierarchical_table_id(); -} -inline void HierarchicalTableApplyRequest::unsafe_arena_set_allocated_result_hierarchical_table_id(::io::deephaven::proto::backplane::grpc::Ticket* value) { - ::google::protobuf::internal::TSanWrite(&_impl_); - if (GetArena() == nullptr) { - delete reinterpret_cast<::google::protobuf::MessageLite*>(_impl_.result_hierarchical_table_id_); - } - _impl_.result_hierarchical_table_id_ = reinterpret_cast<::io::deephaven::proto::backplane::grpc::Ticket*>(value); - if (value != nullptr) { - _impl_._has_bits_[0] |= 0x00000001u; - } else { - _impl_._has_bits_[0] &= ~0x00000001u; - } - // @@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() { - ::google::protobuf::internal::TSanWrite(&_impl_); - - _impl_._has_bits_[0] &= ~0x00000001u; - ::io::deephaven::proto::backplane::grpc::Ticket* released = _impl_.result_hierarchical_table_id_; - _impl_.result_hierarchical_table_id_ = nullptr; -#ifdef PROTOBUF_FORCE_COPY_IN_RELEASE - auto* old = reinterpret_cast<::google::protobuf::MessageLite*>(released); - released = ::google::protobuf::internal::DuplicateIfNonNull(released); - if (GetArena() == nullptr) { - delete old; - } -#else // PROTOBUF_FORCE_COPY_IN_RELEASE - if (GetArena() != nullptr) { - released = ::google::protobuf::internal::DuplicateIfNonNull(released); - } -#endif // !PROTOBUF_FORCE_COPY_IN_RELEASE - return released; -} -inline ::io::deephaven::proto::backplane::grpc::Ticket* HierarchicalTableApplyRequest::unsafe_arena_release_result_hierarchical_table_id() { - ::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; - ::io::deephaven::proto::backplane::grpc::Ticket* temp = _impl_.result_hierarchical_table_id_; - _impl_.result_hierarchical_table_id_ = nullptr; - return temp; -} -inline ::io::deephaven::proto::backplane::grpc::Ticket* HierarchicalTableApplyRequest::_internal_mutable_result_hierarchical_table_id() { - ::google::protobuf::internal::TSanWrite(&_impl_); - if (_impl_.result_hierarchical_table_id_ == nullptr) { - 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(); - ::google::protobuf::internal::TSanWrite(&_impl_); - if (message_arena == nullptr) { - delete reinterpret_cast<::google::protobuf::MessageLite*>(_impl_.result_hierarchical_table_id_); - } - - if (value != nullptr) { - ::google::protobuf::Arena* submessage_arena = reinterpret_cast<::google::protobuf::MessageLite*>(value)->GetArena(); - if (message_arena != submessage_arena) { - value = ::google::protobuf::internal::GetOwnedMessage(message_arena, value, submessage_arena); - } - _impl_._has_bits_[0] |= 0x00000001u; - } else { - _impl_._has_bits_[0] &= ~0x00000001u; - } - - _impl_.result_hierarchical_table_id_ = reinterpret_cast<::io::deephaven::proto::backplane::grpc::Ticket*>(value); - // @@protoc_insertion_point(field_set_allocated:io.deephaven.proto.backplane.grpc.HierarchicalTableApplyRequest.result_hierarchical_table_id) -} - -// .io.deephaven.proto.backplane.grpc.Ticket input_hierarchical_table_id = 2; -inline bool HierarchicalTableApplyRequest::has_input_hierarchical_table_id() const { - bool value = (_impl_._has_bits_[0] & 0x00000002u) != 0; - PROTOBUF_ASSUME(!value || _impl_.input_hierarchical_table_id_ != nullptr); - return value; -} -inline const ::io::deephaven::proto::backplane::grpc::Ticket& HierarchicalTableApplyRequest::_internal_input_hierarchical_table_id() const { - ::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_); -} -inline const ::io::deephaven::proto::backplane::grpc::Ticket& HierarchicalTableApplyRequest::input_hierarchical_table_id() const ABSL_ATTRIBUTE_LIFETIME_BOUND { - // @@protoc_insertion_point(field_get:io.deephaven.proto.backplane.grpc.HierarchicalTableApplyRequest.input_hierarchical_table_id) - return _internal_input_hierarchical_table_id(); -} -inline void HierarchicalTableApplyRequest::unsafe_arena_set_allocated_input_hierarchical_table_id(::io::deephaven::proto::backplane::grpc::Ticket* value) { - ::google::protobuf::internal::TSanWrite(&_impl_); - if (GetArena() == nullptr) { - delete reinterpret_cast<::google::protobuf::MessageLite*>(_impl_.input_hierarchical_table_id_); - } - _impl_.input_hierarchical_table_id_ = reinterpret_cast<::io::deephaven::proto::backplane::grpc::Ticket*>(value); - if (value != nullptr) { - _impl_._has_bits_[0] |= 0x00000002u; - } else { - _impl_._has_bits_[0] &= ~0x00000002u; - } - // @@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() { - ::google::protobuf::internal::TSanWrite(&_impl_); - - _impl_._has_bits_[0] &= ~0x00000002u; - ::io::deephaven::proto::backplane::grpc::Ticket* released = _impl_.input_hierarchical_table_id_; - _impl_.input_hierarchical_table_id_ = nullptr; -#ifdef PROTOBUF_FORCE_COPY_IN_RELEASE - auto* old = reinterpret_cast<::google::protobuf::MessageLite*>(released); - released = ::google::protobuf::internal::DuplicateIfNonNull(released); - if (GetArena() == nullptr) { - delete old; - } -#else // PROTOBUF_FORCE_COPY_IN_RELEASE - if (GetArena() != nullptr) { - released = ::google::protobuf::internal::DuplicateIfNonNull(released); - } -#endif // !PROTOBUF_FORCE_COPY_IN_RELEASE - return released; -} -inline ::io::deephaven::proto::backplane::grpc::Ticket* HierarchicalTableApplyRequest::unsafe_arena_release_input_hierarchical_table_id() { - ::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; - ::io::deephaven::proto::backplane::grpc::Ticket* temp = _impl_.input_hierarchical_table_id_; - _impl_.input_hierarchical_table_id_ = nullptr; - return temp; -} -inline ::io::deephaven::proto::backplane::grpc::Ticket* HierarchicalTableApplyRequest::_internal_mutable_input_hierarchical_table_id() { - ::google::protobuf::internal::TSanWrite(&_impl_); - if (_impl_.input_hierarchical_table_id_ == nullptr) { - 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(); - ::google::protobuf::internal::TSanWrite(&_impl_); - if (message_arena == nullptr) { - delete reinterpret_cast<::google::protobuf::MessageLite*>(_impl_.input_hierarchical_table_id_); - } - - if (value != nullptr) { - ::google::protobuf::Arena* submessage_arena = reinterpret_cast<::google::protobuf::MessageLite*>(value)->GetArena(); - if (message_arena != submessage_arena) { - value = ::google::protobuf::internal::GetOwnedMessage(message_arena, value, submessage_arena); - } - _impl_._has_bits_[0] |= 0x00000002u; - } else { - _impl_._has_bits_[0] &= ~0x00000002u; - } - - _impl_.input_hierarchical_table_id_ = reinterpret_cast<::io::deephaven::proto::backplane::grpc::Ticket*>(value); - // @@protoc_insertion_point(field_set_allocated:io.deephaven.proto.backplane.grpc.HierarchicalTableApplyRequest.input_hierarchical_table_id) -} - -// repeated .io.deephaven.proto.backplane.grpc.Condition filters = 3; -inline int HierarchicalTableApplyRequest::_internal_filters_size() const { - return _internal_filters().size(); -} -inline int HierarchicalTableApplyRequest::filters_size() const { - return _internal_filters_size(); -} -inline ::io::deephaven::proto::backplane::grpc::Condition* HierarchicalTableApplyRequest::mutable_filters(int index) - ABSL_ATTRIBUTE_LIFETIME_BOUND { - // @@protoc_insertion_point(field_mutable:io.deephaven.proto.backplane.grpc.HierarchicalTableApplyRequest.filters) - return _internal_mutable_filters()->Mutable(index); -} -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) - ::google::protobuf::internal::TSanWrite(&_impl_); - return _internal_mutable_filters(); -} -inline const ::io::deephaven::proto::backplane::grpc::Condition& HierarchicalTableApplyRequest::filters(int index) const - ABSL_ATTRIBUTE_LIFETIME_BOUND { - // @@protoc_insertion_point(field_get:io.deephaven.proto.backplane.grpc.HierarchicalTableApplyRequest.filters) - return _internal_filters().Get(index); -} -inline ::io::deephaven::proto::backplane::grpc::Condition* HierarchicalTableApplyRequest::add_filters() ABSL_ATTRIBUTE_LIFETIME_BOUND { - ::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; -} -inline const ::google::protobuf::RepeatedPtrField<::io::deephaven::proto::backplane::grpc::Condition>& HierarchicalTableApplyRequest::filters() const - ABSL_ATTRIBUTE_LIFETIME_BOUND { - // @@protoc_insertion_point(field_list:io.deephaven.proto.backplane.grpc.HierarchicalTableApplyRequest.filters) - return _internal_filters(); -} -inline const ::google::protobuf::RepeatedPtrField<::io::deephaven::proto::backplane::grpc::Condition>& -HierarchicalTableApplyRequest::_internal_filters() const { - ::google::protobuf::internal::TSanRead(&_impl_); - return _impl_.filters_; -} -inline ::google::protobuf::RepeatedPtrField<::io::deephaven::proto::backplane::grpc::Condition>* -HierarchicalTableApplyRequest::_internal_mutable_filters() { - ::google::protobuf::internal::TSanRead(&_impl_); - return &_impl_.filters_; -} - -// repeated .io.deephaven.proto.backplane.grpc.SortDescriptor sorts = 4; -inline int HierarchicalTableApplyRequest::_internal_sorts_size() const { - return _internal_sorts().size(); -} -inline int HierarchicalTableApplyRequest::sorts_size() const { - return _internal_sorts_size(); -} -inline ::io::deephaven::proto::backplane::grpc::SortDescriptor* HierarchicalTableApplyRequest::mutable_sorts(int index) - ABSL_ATTRIBUTE_LIFETIME_BOUND { - // @@protoc_insertion_point(field_mutable:io.deephaven.proto.backplane.grpc.HierarchicalTableApplyRequest.sorts) - return _internal_mutable_sorts()->Mutable(index); -} -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) - ::google::protobuf::internal::TSanWrite(&_impl_); - return _internal_mutable_sorts(); -} -inline const ::io::deephaven::proto::backplane::grpc::SortDescriptor& HierarchicalTableApplyRequest::sorts(int index) const - ABSL_ATTRIBUTE_LIFETIME_BOUND { - // @@protoc_insertion_point(field_get:io.deephaven.proto.backplane.grpc.HierarchicalTableApplyRequest.sorts) - return _internal_sorts().Get(index); -} -inline ::io::deephaven::proto::backplane::grpc::SortDescriptor* HierarchicalTableApplyRequest::add_sorts() ABSL_ATTRIBUTE_LIFETIME_BOUND { - ::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; -} -inline const ::google::protobuf::RepeatedPtrField<::io::deephaven::proto::backplane::grpc::SortDescriptor>& HierarchicalTableApplyRequest::sorts() const - ABSL_ATTRIBUTE_LIFETIME_BOUND { - // @@protoc_insertion_point(field_list:io.deephaven.proto.backplane.grpc.HierarchicalTableApplyRequest.sorts) - return _internal_sorts(); -} -inline const ::google::protobuf::RepeatedPtrField<::io::deephaven::proto::backplane::grpc::SortDescriptor>& -HierarchicalTableApplyRequest::_internal_sorts() const { - ::google::protobuf::internal::TSanRead(&_impl_); - return _impl_.sorts_; -} -inline ::google::protobuf::RepeatedPtrField<::io::deephaven::proto::backplane::grpc::SortDescriptor>* -HierarchicalTableApplyRequest::_internal_mutable_sorts() { - ::google::protobuf::internal::TSanRead(&_impl_); - return &_impl_.sorts_; -} - -// ------------------------------------------------------------------- - -// HierarchicalTableApplyResponse - -// ------------------------------------------------------------------- - -// HierarchicalTableDescriptor - -// bytes snapshot_schema = 1; -inline void HierarchicalTableDescriptor::clear_snapshot_schema() { - ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.snapshot_schema_.ClearToEmpty(); -} -inline const std::string& HierarchicalTableDescriptor::snapshot_schema() const - ABSL_ATTRIBUTE_LIFETIME_BOUND { - // @@protoc_insertion_point(field_get:io.deephaven.proto.backplane.grpc.HierarchicalTableDescriptor.snapshot_schema) - return _internal_snapshot_schema(); -} -template -inline PROTOBUF_ALWAYS_INLINE void HierarchicalTableDescriptor::set_snapshot_schema(Arg_&& arg, - Args_... args) { - ::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) -} -inline std::string* HierarchicalTableDescriptor::mutable_snapshot_schema() ABSL_ATTRIBUTE_LIFETIME_BOUND { - std::string* _s = _internal_mutable_snapshot_schema(); - // @@protoc_insertion_point(field_mutable:io.deephaven.proto.backplane.grpc.HierarchicalTableDescriptor.snapshot_schema) - return _s; -} -inline const std::string& HierarchicalTableDescriptor::_internal_snapshot_schema() const { - ::google::protobuf::internal::TSanRead(&_impl_); - return _impl_.snapshot_schema_.Get(); -} -inline void HierarchicalTableDescriptor::_internal_set_snapshot_schema(const std::string& value) { - ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.snapshot_schema_.Set(value, GetArena()); -} -inline std::string* HierarchicalTableDescriptor::_internal_mutable_snapshot_schema() { - ::google::protobuf::internal::TSanWrite(&_impl_); - return _impl_.snapshot_schema_.Mutable( GetArena()); -} -inline std::string* HierarchicalTableDescriptor::release_snapshot_schema() { - ::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) { - ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.snapshot_schema_.SetAllocated(value, GetArena()); - #ifdef PROTOBUF_FORCE_COPY_DEFAULT_STRING - if (_impl_.snapshot_schema_.IsDefault()) { - _impl_.snapshot_schema_.Set("", GetArena()); - } - #endif // PROTOBUF_FORCE_COPY_DEFAULT_STRING - // @@protoc_insertion_point(field_set_allocated:io.deephaven.proto.backplane.grpc.HierarchicalTableDescriptor.snapshot_schema) -} - -// bool is_static = 2; -inline void HierarchicalTableDescriptor::clear_is_static() { - ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.is_static_ = false; -} -inline bool HierarchicalTableDescriptor::is_static() const { - // @@protoc_insertion_point(field_get:io.deephaven.proto.backplane.grpc.HierarchicalTableDescriptor.is_static) - return _internal_is_static(); -} -inline void HierarchicalTableDescriptor::set_is_static(bool value) { - _internal_set_is_static(value); - // @@protoc_insertion_point(field_set:io.deephaven.proto.backplane.grpc.HierarchicalTableDescriptor.is_static) -} -inline bool HierarchicalTableDescriptor::_internal_is_static() const { - ::google::protobuf::internal::TSanRead(&_impl_); - return _impl_.is_static_; -} -inline void HierarchicalTableDescriptor::_internal_set_is_static(bool value) { - ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.is_static_ = value; -} - -// ------------------------------------------------------------------- - -// HierarchicalTableViewRequest - -// .io.deephaven.proto.backplane.grpc.Ticket result_view_id = 1; -inline bool HierarchicalTableViewRequest::has_result_view_id() const { - bool value = (_impl_._has_bits_[0] & 0x00000001u) != 0; - PROTOBUF_ASSUME(!value || _impl_.result_view_id_ != nullptr); - return value; -} -inline const ::io::deephaven::proto::backplane::grpc::Ticket& HierarchicalTableViewRequest::_internal_result_view_id() const { - ::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_); -} -inline const ::io::deephaven::proto::backplane::grpc::Ticket& HierarchicalTableViewRequest::result_view_id() const ABSL_ATTRIBUTE_LIFETIME_BOUND { - // @@protoc_insertion_point(field_get:io.deephaven.proto.backplane.grpc.HierarchicalTableViewRequest.result_view_id) - return _internal_result_view_id(); -} -inline void HierarchicalTableViewRequest::unsafe_arena_set_allocated_result_view_id(::io::deephaven::proto::backplane::grpc::Ticket* value) { - ::google::protobuf::internal::TSanWrite(&_impl_); - if (GetArena() == nullptr) { - delete reinterpret_cast<::google::protobuf::MessageLite*>(_impl_.result_view_id_); - } - _impl_.result_view_id_ = reinterpret_cast<::io::deephaven::proto::backplane::grpc::Ticket*>(value); - if (value != nullptr) { - _impl_._has_bits_[0] |= 0x00000001u; - } else { - _impl_._has_bits_[0] &= ~0x00000001u; - } - // @@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() { - ::google::protobuf::internal::TSanWrite(&_impl_); - - _impl_._has_bits_[0] &= ~0x00000001u; - ::io::deephaven::proto::backplane::grpc::Ticket* released = _impl_.result_view_id_; - _impl_.result_view_id_ = nullptr; -#ifdef PROTOBUF_FORCE_COPY_IN_RELEASE - auto* old = reinterpret_cast<::google::protobuf::MessageLite*>(released); - released = ::google::protobuf::internal::DuplicateIfNonNull(released); - if (GetArena() == nullptr) { - delete old; - } -#else // PROTOBUF_FORCE_COPY_IN_RELEASE - if (GetArena() != nullptr) { - released = ::google::protobuf::internal::DuplicateIfNonNull(released); - } -#endif // !PROTOBUF_FORCE_COPY_IN_RELEASE - return released; -} -inline ::io::deephaven::proto::backplane::grpc::Ticket* HierarchicalTableViewRequest::unsafe_arena_release_result_view_id() { - ::google::protobuf::internal::TSanWrite(&_impl_); - // @@protoc_insertion_point(field_release:io.deephaven.proto.backplane.grpc.HierarchicalTableViewRequest.result_view_id) - - _impl_._has_bits_[0] &= ~0x00000001u; - ::io::deephaven::proto::backplane::grpc::Ticket* temp = _impl_.result_view_id_; - _impl_.result_view_id_ = nullptr; - return temp; -} -inline ::io::deephaven::proto::backplane::grpc::Ticket* HierarchicalTableViewRequest::_internal_mutable_result_view_id() { - ::google::protobuf::internal::TSanWrite(&_impl_); - if (_impl_.result_view_id_ == nullptr) { - 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(); - ::google::protobuf::internal::TSanWrite(&_impl_); - if (message_arena == nullptr) { - delete reinterpret_cast<::google::protobuf::MessageLite*>(_impl_.result_view_id_); - } - - if (value != nullptr) { - ::google::protobuf::Arena* submessage_arena = reinterpret_cast<::google::protobuf::MessageLite*>(value)->GetArena(); - if (message_arena != submessage_arena) { - value = ::google::protobuf::internal::GetOwnedMessage(message_arena, value, submessage_arena); - } - _impl_._has_bits_[0] |= 0x00000001u; - } else { - _impl_._has_bits_[0] &= ~0x00000001u; - } - - _impl_.result_view_id_ = reinterpret_cast<::io::deephaven::proto::backplane::grpc::Ticket*>(value); - // @@protoc_insertion_point(field_set_allocated:io.deephaven.proto.backplane.grpc.HierarchicalTableViewRequest.result_view_id) -} - -// .io.deephaven.proto.backplane.grpc.Ticket hierarchical_table_id = 2; -inline bool HierarchicalTableViewRequest::has_hierarchical_table_id() const { - return target_case() == kHierarchicalTableId; -} -inline bool HierarchicalTableViewRequest::_internal_has_hierarchical_table_id() const { - return target_case() == kHierarchicalTableId; -} -inline void HierarchicalTableViewRequest::set_has_hierarchical_table_id() { - _impl_._oneof_case_[0] = kHierarchicalTableId; -} -inline ::io::deephaven::proto::backplane::grpc::Ticket* HierarchicalTableViewRequest::release_hierarchical_table_id() { - // @@protoc_insertion_point(field_release:io.deephaven.proto.backplane.grpc.HierarchicalTableViewRequest.hierarchical_table_id) - if (target_case() == kHierarchicalTableId) { - clear_has_target(); - auto* temp = _impl_.target_.hierarchical_table_id_; - if (GetArena() != nullptr) { - temp = ::google::protobuf::internal::DuplicateIfNonNull(temp); - } - _impl_.target_.hierarchical_table_id_ = nullptr; - return temp; - } else { - return nullptr; - } -} -inline const ::io::deephaven::proto::backplane::grpc::Ticket& HierarchicalTableViewRequest::_internal_hierarchical_table_id() const { - return target_case() == kHierarchicalTableId ? *_impl_.target_.hierarchical_table_id_ : reinterpret_cast<::io::deephaven::proto::backplane::grpc::Ticket&>(::io::deephaven::proto::backplane::grpc::_Ticket_default_instance_); -} -inline const ::io::deephaven::proto::backplane::grpc::Ticket& HierarchicalTableViewRequest::hierarchical_table_id() const ABSL_ATTRIBUTE_LIFETIME_BOUND { - // @@protoc_insertion_point(field_get:io.deephaven.proto.backplane.grpc.HierarchicalTableViewRequest.hierarchical_table_id) - return _internal_hierarchical_table_id(); -} -inline ::io::deephaven::proto::backplane::grpc::Ticket* HierarchicalTableViewRequest::unsafe_arena_release_hierarchical_table_id() { - // @@protoc_insertion_point(field_unsafe_arena_release:io.deephaven.proto.backplane.grpc.HierarchicalTableViewRequest.hierarchical_table_id) - if (target_case() == kHierarchicalTableId) { - clear_has_target(); - auto* temp = _impl_.target_.hierarchical_table_id_; - _impl_.target_.hierarchical_table_id_ = nullptr; - return temp; - } else { - return nullptr; - } -} -inline void HierarchicalTableViewRequest::unsafe_arena_set_allocated_hierarchical_table_id(::io::deephaven::proto::backplane::grpc::Ticket* value) { - // We rely on the oneof clear method to free the earlier contents - // of this oneof. We can directly use the pointer we're given to - // set the new value. - clear_target(); - if (value) { - set_has_hierarchical_table_id(); - _impl_.target_.hierarchical_table_id_ = value; - } - // @@protoc_insertion_point(field_unsafe_arena_set_allocated:io.deephaven.proto.backplane.grpc.HierarchicalTableViewRequest.hierarchical_table_id) -} -inline ::io::deephaven::proto::backplane::grpc::Ticket* HierarchicalTableViewRequest::_internal_mutable_hierarchical_table_id() { - if (target_case() != kHierarchicalTableId) { - clear_target(); - set_has_hierarchical_table_id(); - _impl_.target_.hierarchical_table_id_ = - ::google::protobuf::Message::DefaultConstruct<::io::deephaven::proto::backplane::grpc::Ticket>(GetArena()); - } - return _impl_.target_.hierarchical_table_id_; -} -inline ::io::deephaven::proto::backplane::grpc::Ticket* HierarchicalTableViewRequest::mutable_hierarchical_table_id() ABSL_ATTRIBUTE_LIFETIME_BOUND { - ::io::deephaven::proto::backplane::grpc::Ticket* _msg = _internal_mutable_hierarchical_table_id(); - // @@protoc_insertion_point(field_mutable:io.deephaven.proto.backplane.grpc.HierarchicalTableViewRequest.hierarchical_table_id) - return _msg; -} - -// .io.deephaven.proto.backplane.grpc.Ticket existing_view_id = 3; -inline bool HierarchicalTableViewRequest::has_existing_view_id() const { - return target_case() == kExistingViewId; -} -inline bool HierarchicalTableViewRequest::_internal_has_existing_view_id() const { - return target_case() == kExistingViewId; -} -inline void HierarchicalTableViewRequest::set_has_existing_view_id() { - _impl_._oneof_case_[0] = kExistingViewId; -} -inline ::io::deephaven::proto::backplane::grpc::Ticket* HierarchicalTableViewRequest::release_existing_view_id() { - // @@protoc_insertion_point(field_release:io.deephaven.proto.backplane.grpc.HierarchicalTableViewRequest.existing_view_id) - if (target_case() == kExistingViewId) { - clear_has_target(); - auto* temp = _impl_.target_.existing_view_id_; - if (GetArena() != nullptr) { - temp = ::google::protobuf::internal::DuplicateIfNonNull(temp); - } - _impl_.target_.existing_view_id_ = nullptr; - return temp; - } else { - return nullptr; - } -} -inline const ::io::deephaven::proto::backplane::grpc::Ticket& HierarchicalTableViewRequest::_internal_existing_view_id() const { - return target_case() == kExistingViewId ? *_impl_.target_.existing_view_id_ : reinterpret_cast<::io::deephaven::proto::backplane::grpc::Ticket&>(::io::deephaven::proto::backplane::grpc::_Ticket_default_instance_); -} -inline const ::io::deephaven::proto::backplane::grpc::Ticket& HierarchicalTableViewRequest::existing_view_id() const ABSL_ATTRIBUTE_LIFETIME_BOUND { - // @@protoc_insertion_point(field_get:io.deephaven.proto.backplane.grpc.HierarchicalTableViewRequest.existing_view_id) - return _internal_existing_view_id(); -} -inline ::io::deephaven::proto::backplane::grpc::Ticket* HierarchicalTableViewRequest::unsafe_arena_release_existing_view_id() { - // @@protoc_insertion_point(field_unsafe_arena_release:io.deephaven.proto.backplane.grpc.HierarchicalTableViewRequest.existing_view_id) - if (target_case() == kExistingViewId) { - clear_has_target(); - auto* temp = _impl_.target_.existing_view_id_; - _impl_.target_.existing_view_id_ = nullptr; - return temp; - } else { - return nullptr; - } -} -inline void HierarchicalTableViewRequest::unsafe_arena_set_allocated_existing_view_id(::io::deephaven::proto::backplane::grpc::Ticket* value) { - // We rely on the oneof clear method to free the earlier contents - // of this oneof. We can directly use the pointer we're given to - // set the new value. - clear_target(); - if (value) { - set_has_existing_view_id(); - _impl_.target_.existing_view_id_ = value; - } - // @@protoc_insertion_point(field_unsafe_arena_set_allocated:io.deephaven.proto.backplane.grpc.HierarchicalTableViewRequest.existing_view_id) -} -inline ::io::deephaven::proto::backplane::grpc::Ticket* HierarchicalTableViewRequest::_internal_mutable_existing_view_id() { - if (target_case() != kExistingViewId) { - clear_target(); - set_has_existing_view_id(); - _impl_.target_.existing_view_id_ = - ::google::protobuf::Message::DefaultConstruct<::io::deephaven::proto::backplane::grpc::Ticket>(GetArena()); - } - return _impl_.target_.existing_view_id_; -} -inline ::io::deephaven::proto::backplane::grpc::Ticket* HierarchicalTableViewRequest::mutable_existing_view_id() ABSL_ATTRIBUTE_LIFETIME_BOUND { - ::io::deephaven::proto::backplane::grpc::Ticket* _msg = _internal_mutable_existing_view_id(); - // @@protoc_insertion_point(field_mutable:io.deephaven.proto.backplane.grpc.HierarchicalTableViewRequest.existing_view_id) - return _msg; -} - -// .io.deephaven.proto.backplane.grpc.HierarchicalTableViewKeyTableDescriptor expansions = 4; -inline bool HierarchicalTableViewRequest::has_expansions() const { - bool value = (_impl_._has_bits_[0] & 0x00000002u) != 0; - PROTOBUF_ASSUME(!value || _impl_.expansions_ != nullptr); - return value; -} -inline void HierarchicalTableViewRequest::clear_expansions() { - ::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 { - ::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_); -} -inline const ::io::deephaven::proto::backplane::grpc::HierarchicalTableViewKeyTableDescriptor& HierarchicalTableViewRequest::expansions() const ABSL_ATTRIBUTE_LIFETIME_BOUND { - // @@protoc_insertion_point(field_get:io.deephaven.proto.backplane.grpc.HierarchicalTableViewRequest.expansions) - return _internal_expansions(); -} -inline void HierarchicalTableViewRequest::unsafe_arena_set_allocated_expansions(::io::deephaven::proto::backplane::grpc::HierarchicalTableViewKeyTableDescriptor* value) { - ::google::protobuf::internal::TSanWrite(&_impl_); - if (GetArena() == nullptr) { - delete reinterpret_cast<::google::protobuf::MessageLite*>(_impl_.expansions_); - } - _impl_.expansions_ = reinterpret_cast<::io::deephaven::proto::backplane::grpc::HierarchicalTableViewKeyTableDescriptor*>(value); - if (value != nullptr) { - _impl_._has_bits_[0] |= 0x00000002u; - } else { - _impl_._has_bits_[0] &= ~0x00000002u; - } - // @@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() { - ::google::protobuf::internal::TSanWrite(&_impl_); - - _impl_._has_bits_[0] &= ~0x00000002u; - ::io::deephaven::proto::backplane::grpc::HierarchicalTableViewKeyTableDescriptor* released = _impl_.expansions_; - _impl_.expansions_ = nullptr; -#ifdef PROTOBUF_FORCE_COPY_IN_RELEASE - auto* old = reinterpret_cast<::google::protobuf::MessageLite*>(released); - released = ::google::protobuf::internal::DuplicateIfNonNull(released); - if (GetArena() == nullptr) { - delete old; - } -#else // PROTOBUF_FORCE_COPY_IN_RELEASE - if (GetArena() != nullptr) { - released = ::google::protobuf::internal::DuplicateIfNonNull(released); - } -#endif // !PROTOBUF_FORCE_COPY_IN_RELEASE - return released; -} -inline ::io::deephaven::proto::backplane::grpc::HierarchicalTableViewKeyTableDescriptor* HierarchicalTableViewRequest::unsafe_arena_release_expansions() { - ::google::protobuf::internal::TSanWrite(&_impl_); - // @@protoc_insertion_point(field_release:io.deephaven.proto.backplane.grpc.HierarchicalTableViewRequest.expansions) - - _impl_._has_bits_[0] &= ~0x00000002u; - ::io::deephaven::proto::backplane::grpc::HierarchicalTableViewKeyTableDescriptor* temp = _impl_.expansions_; - _impl_.expansions_ = nullptr; - return temp; -} -inline ::io::deephaven::proto::backplane::grpc::HierarchicalTableViewKeyTableDescriptor* HierarchicalTableViewRequest::_internal_mutable_expansions() { - ::google::protobuf::internal::TSanWrite(&_impl_); - if (_impl_.expansions_ == nullptr) { - 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(); - ::google::protobuf::internal::TSanWrite(&_impl_); - if (message_arena == nullptr) { - delete (_impl_.expansions_); - } - - if (value != nullptr) { - ::google::protobuf::Arena* submessage_arena = (value)->GetArena(); - if (message_arena != submessage_arena) { - value = ::google::protobuf::internal::GetOwnedMessage(message_arena, value, submessage_arena); - } - _impl_._has_bits_[0] |= 0x00000002u; - } else { - _impl_._has_bits_[0] &= ~0x00000002u; - } - - _impl_.expansions_ = reinterpret_cast<::io::deephaven::proto::backplane::grpc::HierarchicalTableViewKeyTableDescriptor*>(value); - // @@protoc_insertion_point(field_set_allocated:io.deephaven.proto.backplane.grpc.HierarchicalTableViewRequest.expansions) -} - -inline bool HierarchicalTableViewRequest::has_target() const { - return target_case() != TARGET_NOT_SET; -} -inline void HierarchicalTableViewRequest::clear_has_target() { - _impl_._oneof_case_[0] = TARGET_NOT_SET; -} -inline HierarchicalTableViewRequest::TargetCase HierarchicalTableViewRequest::target_case() const { - return HierarchicalTableViewRequest::TargetCase(_impl_._oneof_case_[0]); -} -// ------------------------------------------------------------------- - -// HierarchicalTableViewKeyTableDescriptor - -// .io.deephaven.proto.backplane.grpc.Ticket key_table_id = 1; -inline bool HierarchicalTableViewKeyTableDescriptor::has_key_table_id() const { - bool value = (_impl_._has_bits_[0] & 0x00000002u) != 0; - PROTOBUF_ASSUME(!value || _impl_.key_table_id_ != nullptr); - return value; -} -inline const ::io::deephaven::proto::backplane::grpc::Ticket& HierarchicalTableViewKeyTableDescriptor::_internal_key_table_id() const { - ::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_); -} -inline const ::io::deephaven::proto::backplane::grpc::Ticket& HierarchicalTableViewKeyTableDescriptor::key_table_id() const ABSL_ATTRIBUTE_LIFETIME_BOUND { - // @@protoc_insertion_point(field_get:io.deephaven.proto.backplane.grpc.HierarchicalTableViewKeyTableDescriptor.key_table_id) - return _internal_key_table_id(); -} -inline void HierarchicalTableViewKeyTableDescriptor::unsafe_arena_set_allocated_key_table_id(::io::deephaven::proto::backplane::grpc::Ticket* value) { - ::google::protobuf::internal::TSanWrite(&_impl_); - if (GetArena() == nullptr) { - delete reinterpret_cast<::google::protobuf::MessageLite*>(_impl_.key_table_id_); - } - _impl_.key_table_id_ = reinterpret_cast<::io::deephaven::proto::backplane::grpc::Ticket*>(value); - if (value != nullptr) { - _impl_._has_bits_[0] |= 0x00000002u; - } else { - _impl_._has_bits_[0] &= ~0x00000002u; - } - // @@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() { - ::google::protobuf::internal::TSanWrite(&_impl_); - - _impl_._has_bits_[0] &= ~0x00000002u; - ::io::deephaven::proto::backplane::grpc::Ticket* released = _impl_.key_table_id_; - _impl_.key_table_id_ = nullptr; -#ifdef PROTOBUF_FORCE_COPY_IN_RELEASE - auto* old = reinterpret_cast<::google::protobuf::MessageLite*>(released); - released = ::google::protobuf::internal::DuplicateIfNonNull(released); - if (GetArena() == nullptr) { - delete old; - } -#else // PROTOBUF_FORCE_COPY_IN_RELEASE - if (GetArena() != nullptr) { - released = ::google::protobuf::internal::DuplicateIfNonNull(released); - } -#endif // !PROTOBUF_FORCE_COPY_IN_RELEASE - return released; -} -inline ::io::deephaven::proto::backplane::grpc::Ticket* HierarchicalTableViewKeyTableDescriptor::unsafe_arena_release_key_table_id() { - ::google::protobuf::internal::TSanWrite(&_impl_); - // @@protoc_insertion_point(field_release:io.deephaven.proto.backplane.grpc.HierarchicalTableViewKeyTableDescriptor.key_table_id) - - _impl_._has_bits_[0] &= ~0x00000002u; - ::io::deephaven::proto::backplane::grpc::Ticket* temp = _impl_.key_table_id_; - _impl_.key_table_id_ = nullptr; - return temp; -} -inline ::io::deephaven::proto::backplane::grpc::Ticket* HierarchicalTableViewKeyTableDescriptor::_internal_mutable_key_table_id() { - ::google::protobuf::internal::TSanWrite(&_impl_); - if (_impl_.key_table_id_ == nullptr) { - 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(); - ::google::protobuf::internal::TSanWrite(&_impl_); - if (message_arena == nullptr) { - delete reinterpret_cast<::google::protobuf::MessageLite*>(_impl_.key_table_id_); - } - - if (value != nullptr) { - ::google::protobuf::Arena* submessage_arena = reinterpret_cast<::google::protobuf::MessageLite*>(value)->GetArena(); - if (message_arena != submessage_arena) { - value = ::google::protobuf::internal::GetOwnedMessage(message_arena, value, submessage_arena); - } - _impl_._has_bits_[0] |= 0x00000002u; - } else { - _impl_._has_bits_[0] &= ~0x00000002u; - } - - _impl_.key_table_id_ = reinterpret_cast<::io::deephaven::proto::backplane::grpc::Ticket*>(value); - // @@protoc_insertion_point(field_set_allocated:io.deephaven.proto.backplane.grpc.HierarchicalTableViewKeyTableDescriptor.key_table_id) -} - -// optional string key_table_action_column = 2; -inline bool HierarchicalTableViewKeyTableDescriptor::has_key_table_action_column() const { - bool value = (_impl_._has_bits_[0] & 0x00000001u) != 0; - return value; -} -inline void HierarchicalTableViewKeyTableDescriptor::clear_key_table_action_column() { - ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.key_table_action_column_.ClearToEmpty(); - _impl_._has_bits_[0] &= ~0x00000001u; -} -inline const std::string& HierarchicalTableViewKeyTableDescriptor::key_table_action_column() const - ABSL_ATTRIBUTE_LIFETIME_BOUND { - // @@protoc_insertion_point(field_get:io.deephaven.proto.backplane.grpc.HierarchicalTableViewKeyTableDescriptor.key_table_action_column) - return _internal_key_table_action_column(); -} -template -inline PROTOBUF_ALWAYS_INLINE void HierarchicalTableViewKeyTableDescriptor::set_key_table_action_column(Arg_&& arg, - Args_... args) { - ::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) -} -inline std::string* HierarchicalTableViewKeyTableDescriptor::mutable_key_table_action_column() ABSL_ATTRIBUTE_LIFETIME_BOUND { - std::string* _s = _internal_mutable_key_table_action_column(); - // @@protoc_insertion_point(field_mutable:io.deephaven.proto.backplane.grpc.HierarchicalTableViewKeyTableDescriptor.key_table_action_column) - return _s; -} -inline const std::string& HierarchicalTableViewKeyTableDescriptor::_internal_key_table_action_column() const { - ::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) { - ::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() { - ::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() { - ::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; - } - _impl_._has_bits_[0] &= ~0x00000001u; - auto* released = _impl_.key_table_action_column_.Release(); - #ifdef PROTOBUF_FORCE_COPY_DEFAULT_STRING - _impl_.key_table_action_column_.Set("", GetArena()); - #endif // PROTOBUF_FORCE_COPY_DEFAULT_STRING - return released; -} -inline void HierarchicalTableViewKeyTableDescriptor::set_allocated_key_table_action_column(std::string* value) { - ::google::protobuf::internal::TSanWrite(&_impl_); - if (value != nullptr) { - _impl_._has_bits_[0] |= 0x00000001u; - } else { - _impl_._has_bits_[0] &= ~0x00000001u; - } - _impl_.key_table_action_column_.SetAllocated(value, GetArena()); - #ifdef PROTOBUF_FORCE_COPY_DEFAULT_STRING - if (_impl_.key_table_action_column_.IsDefault()) { - _impl_.key_table_action_column_.Set("", GetArena()); - } - #endif // PROTOBUF_FORCE_COPY_DEFAULT_STRING - // @@protoc_insertion_point(field_set_allocated:io.deephaven.proto.backplane.grpc.HierarchicalTableViewKeyTableDescriptor.key_table_action_column) -} - -// ------------------------------------------------------------------- - -// HierarchicalTableViewResponse - -// ------------------------------------------------------------------- - -// HierarchicalTableSourceExportRequest - -// .io.deephaven.proto.backplane.grpc.Ticket result_table_id = 1; -inline bool HierarchicalTableSourceExportRequest::has_result_table_id() const { - bool value = (_impl_._has_bits_[0] & 0x00000001u) != 0; - PROTOBUF_ASSUME(!value || _impl_.result_table_id_ != nullptr); - return value; -} -inline const ::io::deephaven::proto::backplane::grpc::Ticket& HierarchicalTableSourceExportRequest::_internal_result_table_id() const { - ::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_); -} -inline const ::io::deephaven::proto::backplane::grpc::Ticket& HierarchicalTableSourceExportRequest::result_table_id() const ABSL_ATTRIBUTE_LIFETIME_BOUND { - // @@protoc_insertion_point(field_get:io.deephaven.proto.backplane.grpc.HierarchicalTableSourceExportRequest.result_table_id) - return _internal_result_table_id(); -} -inline void HierarchicalTableSourceExportRequest::unsafe_arena_set_allocated_result_table_id(::io::deephaven::proto::backplane::grpc::Ticket* value) { - ::google::protobuf::internal::TSanWrite(&_impl_); - if (GetArena() == nullptr) { - delete reinterpret_cast<::google::protobuf::MessageLite*>(_impl_.result_table_id_); - } - _impl_.result_table_id_ = reinterpret_cast<::io::deephaven::proto::backplane::grpc::Ticket*>(value); - if (value != nullptr) { - _impl_._has_bits_[0] |= 0x00000001u; - } else { - _impl_._has_bits_[0] &= ~0x00000001u; - } - // @@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() { - ::google::protobuf::internal::TSanWrite(&_impl_); - - _impl_._has_bits_[0] &= ~0x00000001u; - ::io::deephaven::proto::backplane::grpc::Ticket* released = _impl_.result_table_id_; - _impl_.result_table_id_ = nullptr; -#ifdef PROTOBUF_FORCE_COPY_IN_RELEASE - auto* old = reinterpret_cast<::google::protobuf::MessageLite*>(released); - released = ::google::protobuf::internal::DuplicateIfNonNull(released); - if (GetArena() == nullptr) { - delete old; - } -#else // PROTOBUF_FORCE_COPY_IN_RELEASE - if (GetArena() != nullptr) { - released = ::google::protobuf::internal::DuplicateIfNonNull(released); - } -#endif // !PROTOBUF_FORCE_COPY_IN_RELEASE - return released; -} -inline ::io::deephaven::proto::backplane::grpc::Ticket* HierarchicalTableSourceExportRequest::unsafe_arena_release_result_table_id() { - ::google::protobuf::internal::TSanWrite(&_impl_); - // @@protoc_insertion_point(field_release:io.deephaven.proto.backplane.grpc.HierarchicalTableSourceExportRequest.result_table_id) - - _impl_._has_bits_[0] &= ~0x00000001u; - ::io::deephaven::proto::backplane::grpc::Ticket* temp = _impl_.result_table_id_; - _impl_.result_table_id_ = nullptr; - return temp; -} -inline ::io::deephaven::proto::backplane::grpc::Ticket* HierarchicalTableSourceExportRequest::_internal_mutable_result_table_id() { - ::google::protobuf::internal::TSanWrite(&_impl_); - if (_impl_.result_table_id_ == nullptr) { - 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(); - ::google::protobuf::internal::TSanWrite(&_impl_); - if (message_arena == nullptr) { - delete reinterpret_cast<::google::protobuf::MessageLite*>(_impl_.result_table_id_); - } - - if (value != nullptr) { - ::google::protobuf::Arena* submessage_arena = reinterpret_cast<::google::protobuf::MessageLite*>(value)->GetArena(); - if (message_arena != submessage_arena) { - value = ::google::protobuf::internal::GetOwnedMessage(message_arena, value, submessage_arena); - } - _impl_._has_bits_[0] |= 0x00000001u; - } else { - _impl_._has_bits_[0] &= ~0x00000001u; - } - - _impl_.result_table_id_ = reinterpret_cast<::io::deephaven::proto::backplane::grpc::Ticket*>(value); - // @@protoc_insertion_point(field_set_allocated:io.deephaven.proto.backplane.grpc.HierarchicalTableSourceExportRequest.result_table_id) -} - -// .io.deephaven.proto.backplane.grpc.Ticket hierarchical_table_id = 2; -inline bool HierarchicalTableSourceExportRequest::has_hierarchical_table_id() const { - bool value = (_impl_._has_bits_[0] & 0x00000002u) != 0; - PROTOBUF_ASSUME(!value || _impl_.hierarchical_table_id_ != nullptr); - return value; -} -inline const ::io::deephaven::proto::backplane::grpc::Ticket& HierarchicalTableSourceExportRequest::_internal_hierarchical_table_id() const { - ::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_); -} -inline const ::io::deephaven::proto::backplane::grpc::Ticket& HierarchicalTableSourceExportRequest::hierarchical_table_id() const ABSL_ATTRIBUTE_LIFETIME_BOUND { - // @@protoc_insertion_point(field_get:io.deephaven.proto.backplane.grpc.HierarchicalTableSourceExportRequest.hierarchical_table_id) - return _internal_hierarchical_table_id(); -} -inline void HierarchicalTableSourceExportRequest::unsafe_arena_set_allocated_hierarchical_table_id(::io::deephaven::proto::backplane::grpc::Ticket* value) { - ::google::protobuf::internal::TSanWrite(&_impl_); - if (GetArena() == nullptr) { - delete reinterpret_cast<::google::protobuf::MessageLite*>(_impl_.hierarchical_table_id_); - } - _impl_.hierarchical_table_id_ = reinterpret_cast<::io::deephaven::proto::backplane::grpc::Ticket*>(value); - if (value != nullptr) { - _impl_._has_bits_[0] |= 0x00000002u; - } else { - _impl_._has_bits_[0] &= ~0x00000002u; - } - // @@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() { - ::google::protobuf::internal::TSanWrite(&_impl_); - - _impl_._has_bits_[0] &= ~0x00000002u; - ::io::deephaven::proto::backplane::grpc::Ticket* released = _impl_.hierarchical_table_id_; - _impl_.hierarchical_table_id_ = nullptr; -#ifdef PROTOBUF_FORCE_COPY_IN_RELEASE - auto* old = reinterpret_cast<::google::protobuf::MessageLite*>(released); - released = ::google::protobuf::internal::DuplicateIfNonNull(released); - if (GetArena() == nullptr) { - delete old; - } -#else // PROTOBUF_FORCE_COPY_IN_RELEASE - if (GetArena() != nullptr) { - released = ::google::protobuf::internal::DuplicateIfNonNull(released); - } -#endif // !PROTOBUF_FORCE_COPY_IN_RELEASE - return released; -} -inline ::io::deephaven::proto::backplane::grpc::Ticket* HierarchicalTableSourceExportRequest::unsafe_arena_release_hierarchical_table_id() { - ::google::protobuf::internal::TSanWrite(&_impl_); - // @@protoc_insertion_point(field_release:io.deephaven.proto.backplane.grpc.HierarchicalTableSourceExportRequest.hierarchical_table_id) - - _impl_._has_bits_[0] &= ~0x00000002u; - ::io::deephaven::proto::backplane::grpc::Ticket* temp = _impl_.hierarchical_table_id_; - _impl_.hierarchical_table_id_ = nullptr; - return temp; -} -inline ::io::deephaven::proto::backplane::grpc::Ticket* HierarchicalTableSourceExportRequest::_internal_mutable_hierarchical_table_id() { - ::google::protobuf::internal::TSanWrite(&_impl_); - if (_impl_.hierarchical_table_id_ == nullptr) { - 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(); - ::google::protobuf::internal::TSanWrite(&_impl_); - if (message_arena == nullptr) { - delete reinterpret_cast<::google::protobuf::MessageLite*>(_impl_.hierarchical_table_id_); - } - - if (value != nullptr) { - ::google::protobuf::Arena* submessage_arena = reinterpret_cast<::google::protobuf::MessageLite*>(value)->GetArena(); - if (message_arena != submessage_arena) { - value = ::google::protobuf::internal::GetOwnedMessage(message_arena, value, submessage_arena); - } - _impl_._has_bits_[0] |= 0x00000002u; - } else { - _impl_._has_bits_[0] &= ~0x00000002u; - } - - _impl_.hierarchical_table_id_ = reinterpret_cast<::io::deephaven::proto::backplane::grpc::Ticket*>(value); - // @@protoc_insertion_point(field_set_allocated:io.deephaven.proto.backplane.grpc.HierarchicalTableSourceExportRequest.hierarchical_table_id) -} - -#ifdef __GNUC__ -#pragma GCC diagnostic pop -#endif // __GNUC__ - -// @@protoc_insertion_point(namespace_scope) -} // namespace grpc -} // namespace backplane -} // namespace proto -} // namespace deephaven -} // namespace io - - -// @@protoc_insertion_point(global_scope) - -#include "google/protobuf/port_undef.inc" - -#endif // GOOGLE_PROTOBUF_INCLUDED_deephaven_2fproto_2fhierarchicaltable_2eproto_2epb_2eh diff --git a/cpp-client/deephaven/dhclient/proto/deephaven/proto/inputtable.grpc.pb.cc b/cpp-client/deephaven/dhclient/proto/deephaven/proto/inputtable.grpc.pb.cc deleted file mode 100644 index acdea85ab7c..00000000000 --- a/cpp-client/deephaven/dhclient/proto/deephaven/proto/inputtable.grpc.pb.cc +++ /dev/null @@ -1,136 +0,0 @@ -// Generated by the gRPC C++ plugin. -// If you make any local change, they will be lost. -// source: deephaven/proto/inputtable.proto - -#include "deephaven/proto/inputtable.pb.h" -#include "deephaven/proto/inputtable.grpc.pb.h" - -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -namespace io { -namespace deephaven { -namespace proto { -namespace backplane { -namespace grpc { - -static const char* InputTableService_method_names[] = { - "/io.deephaven.proto.backplane.grpc.InputTableService/AddTableToInputTable", - "/io.deephaven.proto.backplane.grpc.InputTableService/DeleteTableFromInputTable", -}; - -std::unique_ptr< InputTableService::Stub> InputTableService::NewStub(const std::shared_ptr< ::grpc::ChannelInterface>& channel, const ::grpc::StubOptions& options) { - (void)options; - std::unique_ptr< InputTableService::Stub> stub(new InputTableService::Stub(channel, options)); - return stub; -} - -InputTableService::Stub::Stub(const std::shared_ptr< ::grpc::ChannelInterface>& channel, const ::grpc::StubOptions& options) - : channel_(channel), rpcmethod_AddTableToInputTable_(InputTableService_method_names[0], options.suffix_for_stats(),::grpc::internal::RpcMethod::NORMAL_RPC, channel) - , rpcmethod_DeleteTableFromInputTable_(InputTableService_method_names[1], options.suffix_for_stats(),::grpc::internal::RpcMethod::NORMAL_RPC, channel) - {} - -::grpc::Status InputTableService::Stub::AddTableToInputTable(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::AddTableRequest& request, ::io::deephaven::proto::backplane::grpc::AddTableResponse* response) { - return ::grpc::internal::BlockingUnaryCall< ::io::deephaven::proto::backplane::grpc::AddTableRequest, ::io::deephaven::proto::backplane::grpc::AddTableResponse, ::grpc::protobuf::MessageLite, ::grpc::protobuf::MessageLite>(channel_.get(), rpcmethod_AddTableToInputTable_, context, request, response); -} - -void InputTableService::Stub::async::AddTableToInputTable(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::AddTableRequest* request, ::io::deephaven::proto::backplane::grpc::AddTableResponse* response, std::function f) { - ::grpc::internal::CallbackUnaryCall< ::io::deephaven::proto::backplane::grpc::AddTableRequest, ::io::deephaven::proto::backplane::grpc::AddTableResponse, ::grpc::protobuf::MessageLite, ::grpc::protobuf::MessageLite>(stub_->channel_.get(), stub_->rpcmethod_AddTableToInputTable_, context, request, response, std::move(f)); -} - -void InputTableService::Stub::async::AddTableToInputTable(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::AddTableRequest* request, ::io::deephaven::proto::backplane::grpc::AddTableResponse* response, ::grpc::ClientUnaryReactor* reactor) { - ::grpc::internal::ClientCallbackUnaryFactory::Create< ::grpc::protobuf::MessageLite, ::grpc::protobuf::MessageLite>(stub_->channel_.get(), stub_->rpcmethod_AddTableToInputTable_, context, request, response, reactor); -} - -::grpc::ClientAsyncResponseReader< ::io::deephaven::proto::backplane::grpc::AddTableResponse>* InputTableService::Stub::PrepareAsyncAddTableToInputTableRaw(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::AddTableRequest& request, ::grpc::CompletionQueue* cq) { - return ::grpc::internal::ClientAsyncResponseReaderHelper::Create< ::io::deephaven::proto::backplane::grpc::AddTableResponse, ::io::deephaven::proto::backplane::grpc::AddTableRequest, ::grpc::protobuf::MessageLite, ::grpc::protobuf::MessageLite>(channel_.get(), cq, rpcmethod_AddTableToInputTable_, context, request); -} - -::grpc::ClientAsyncResponseReader< ::io::deephaven::proto::backplane::grpc::AddTableResponse>* InputTableService::Stub::AsyncAddTableToInputTableRaw(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::AddTableRequest& request, ::grpc::CompletionQueue* cq) { - auto* result = - this->PrepareAsyncAddTableToInputTableRaw(context, request, cq); - result->StartCall(); - return result; -} - -::grpc::Status InputTableService::Stub::DeleteTableFromInputTable(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::DeleteTableRequest& request, ::io::deephaven::proto::backplane::grpc::DeleteTableResponse* response) { - return ::grpc::internal::BlockingUnaryCall< ::io::deephaven::proto::backplane::grpc::DeleteTableRequest, ::io::deephaven::proto::backplane::grpc::DeleteTableResponse, ::grpc::protobuf::MessageLite, ::grpc::protobuf::MessageLite>(channel_.get(), rpcmethod_DeleteTableFromInputTable_, context, request, response); -} - -void InputTableService::Stub::async::DeleteTableFromInputTable(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::DeleteTableRequest* request, ::io::deephaven::proto::backplane::grpc::DeleteTableResponse* response, std::function f) { - ::grpc::internal::CallbackUnaryCall< ::io::deephaven::proto::backplane::grpc::DeleteTableRequest, ::io::deephaven::proto::backplane::grpc::DeleteTableResponse, ::grpc::protobuf::MessageLite, ::grpc::protobuf::MessageLite>(stub_->channel_.get(), stub_->rpcmethod_DeleteTableFromInputTable_, context, request, response, std::move(f)); -} - -void InputTableService::Stub::async::DeleteTableFromInputTable(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::DeleteTableRequest* request, ::io::deephaven::proto::backplane::grpc::DeleteTableResponse* response, ::grpc::ClientUnaryReactor* reactor) { - ::grpc::internal::ClientCallbackUnaryFactory::Create< ::grpc::protobuf::MessageLite, ::grpc::protobuf::MessageLite>(stub_->channel_.get(), stub_->rpcmethod_DeleteTableFromInputTable_, context, request, response, reactor); -} - -::grpc::ClientAsyncResponseReader< ::io::deephaven::proto::backplane::grpc::DeleteTableResponse>* InputTableService::Stub::PrepareAsyncDeleteTableFromInputTableRaw(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::DeleteTableRequest& request, ::grpc::CompletionQueue* cq) { - return ::grpc::internal::ClientAsyncResponseReaderHelper::Create< ::io::deephaven::proto::backplane::grpc::DeleteTableResponse, ::io::deephaven::proto::backplane::grpc::DeleteTableRequest, ::grpc::protobuf::MessageLite, ::grpc::protobuf::MessageLite>(channel_.get(), cq, rpcmethod_DeleteTableFromInputTable_, context, request); -} - -::grpc::ClientAsyncResponseReader< ::io::deephaven::proto::backplane::grpc::DeleteTableResponse>* InputTableService::Stub::AsyncDeleteTableFromInputTableRaw(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::DeleteTableRequest& request, ::grpc::CompletionQueue* cq) { - auto* result = - this->PrepareAsyncDeleteTableFromInputTableRaw(context, request, cq); - result->StartCall(); - return result; -} - -InputTableService::Service::Service() { - AddMethod(new ::grpc::internal::RpcServiceMethod( - InputTableService_method_names[0], - ::grpc::internal::RpcMethod::NORMAL_RPC, - new ::grpc::internal::RpcMethodHandler< InputTableService::Service, ::io::deephaven::proto::backplane::grpc::AddTableRequest, ::io::deephaven::proto::backplane::grpc::AddTableResponse, ::grpc::protobuf::MessageLite, ::grpc::protobuf::MessageLite>( - [](InputTableService::Service* service, - ::grpc::ServerContext* ctx, - const ::io::deephaven::proto::backplane::grpc::AddTableRequest* req, - ::io::deephaven::proto::backplane::grpc::AddTableResponse* resp) { - return service->AddTableToInputTable(ctx, req, resp); - }, this))); - AddMethod(new ::grpc::internal::RpcServiceMethod( - InputTableService_method_names[1], - ::grpc::internal::RpcMethod::NORMAL_RPC, - new ::grpc::internal::RpcMethodHandler< InputTableService::Service, ::io::deephaven::proto::backplane::grpc::DeleteTableRequest, ::io::deephaven::proto::backplane::grpc::DeleteTableResponse, ::grpc::protobuf::MessageLite, ::grpc::protobuf::MessageLite>( - [](InputTableService::Service* service, - ::grpc::ServerContext* ctx, - const ::io::deephaven::proto::backplane::grpc::DeleteTableRequest* req, - ::io::deephaven::proto::backplane::grpc::DeleteTableResponse* resp) { - return service->DeleteTableFromInputTable(ctx, req, resp); - }, this))); -} - -InputTableService::Service::~Service() { -} - -::grpc::Status InputTableService::Service::AddTableToInputTable(::grpc::ServerContext* context, const ::io::deephaven::proto::backplane::grpc::AddTableRequest* request, ::io::deephaven::proto::backplane::grpc::AddTableResponse* response) { - (void) context; - (void) request; - (void) response; - return ::grpc::Status(::grpc::StatusCode::UNIMPLEMENTED, ""); -} - -::grpc::Status InputTableService::Service::DeleteTableFromInputTable(::grpc::ServerContext* context, const ::io::deephaven::proto::backplane::grpc::DeleteTableRequest* request, ::io::deephaven::proto::backplane::grpc::DeleteTableResponse* response) { - (void) context; - (void) request; - (void) response; - return ::grpc::Status(::grpc::StatusCode::UNIMPLEMENTED, ""); -} - - -} // namespace io -} // namespace deephaven -} // namespace proto -} // namespace backplane -} // namespace grpc - diff --git a/cpp-client/deephaven/dhclient/proto/deephaven/proto/inputtable.grpc.pb.h b/cpp-client/deephaven/dhclient/proto/deephaven/proto/inputtable.grpc.pb.h deleted file mode 100644 index 07655594b55..00000000000 --- a/cpp-client/deephaven/dhclient/proto/deephaven/proto/inputtable.grpc.pb.h +++ /dev/null @@ -1,428 +0,0 @@ -// Generated by the gRPC C++ plugin. -// If you make any local change, they will be lost. -// source: deephaven/proto/inputtable.proto -// Original file comments: -// -// Copyright (c) 2016-2022 Deephaven Data Labs and Patent Pending -#ifndef GRPC_deephaven_2fproto_2finputtable_2eproto__INCLUDED -#define GRPC_deephaven_2fproto_2finputtable_2eproto__INCLUDED - -#include "deephaven/proto/inputtable.pb.h" - -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include - -namespace io { -namespace deephaven { -namespace proto { -namespace backplane { -namespace grpc { - -// -// This service offers methods to manipulate the contents of input tables. -class InputTableService final { - public: - static constexpr char const* service_full_name() { - return "io.deephaven.proto.backplane.grpc.InputTableService"; - } - class StubInterface { - public: - virtual ~StubInterface() {} - // - // Adds the provided table to the specified input table. The new data to add must only have - // columns (name, types, and order) which match the given input table's columns. - virtual ::grpc::Status AddTableToInputTable(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::AddTableRequest& request, ::io::deephaven::proto::backplane::grpc::AddTableResponse* response) = 0; - std::unique_ptr< ::grpc::ClientAsyncResponseReaderInterface< ::io::deephaven::proto::backplane::grpc::AddTableResponse>> AsyncAddTableToInputTable(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::AddTableRequest& request, ::grpc::CompletionQueue* cq) { - return std::unique_ptr< ::grpc::ClientAsyncResponseReaderInterface< ::io::deephaven::proto::backplane::grpc::AddTableResponse>>(AsyncAddTableToInputTableRaw(context, request, cq)); - } - std::unique_ptr< ::grpc::ClientAsyncResponseReaderInterface< ::io::deephaven::proto::backplane::grpc::AddTableResponse>> PrepareAsyncAddTableToInputTable(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::AddTableRequest& request, ::grpc::CompletionQueue* cq) { - return std::unique_ptr< ::grpc::ClientAsyncResponseReaderInterface< ::io::deephaven::proto::backplane::grpc::AddTableResponse>>(PrepareAsyncAddTableToInputTableRaw(context, request, cq)); - } - // - // Removes the provided table from the specified input tables. The tables indicating which rows - // to remove are expected to only have columns that match the key columns of the input table. - virtual ::grpc::Status DeleteTableFromInputTable(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::DeleteTableRequest& request, ::io::deephaven::proto::backplane::grpc::DeleteTableResponse* response) = 0; - std::unique_ptr< ::grpc::ClientAsyncResponseReaderInterface< ::io::deephaven::proto::backplane::grpc::DeleteTableResponse>> AsyncDeleteTableFromInputTable(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::DeleteTableRequest& request, ::grpc::CompletionQueue* cq) { - return std::unique_ptr< ::grpc::ClientAsyncResponseReaderInterface< ::io::deephaven::proto::backplane::grpc::DeleteTableResponse>>(AsyncDeleteTableFromInputTableRaw(context, request, cq)); - } - std::unique_ptr< ::grpc::ClientAsyncResponseReaderInterface< ::io::deephaven::proto::backplane::grpc::DeleteTableResponse>> PrepareAsyncDeleteTableFromInputTable(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::DeleteTableRequest& request, ::grpc::CompletionQueue* cq) { - return std::unique_ptr< ::grpc::ClientAsyncResponseReaderInterface< ::io::deephaven::proto::backplane::grpc::DeleteTableResponse>>(PrepareAsyncDeleteTableFromInputTableRaw(context, request, cq)); - } - class async_interface { - public: - virtual ~async_interface() {} - // - // Adds the provided table to the specified input table. The new data to add must only have - // columns (name, types, and order) which match the given input table's columns. - virtual void AddTableToInputTable(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::AddTableRequest* request, ::io::deephaven::proto::backplane::grpc::AddTableResponse* response, std::function) = 0; - virtual void AddTableToInputTable(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::AddTableRequest* request, ::io::deephaven::proto::backplane::grpc::AddTableResponse* response, ::grpc::ClientUnaryReactor* reactor) = 0; - // - // Removes the provided table from the specified input tables. The tables indicating which rows - // to remove are expected to only have columns that match the key columns of the input table. - virtual void DeleteTableFromInputTable(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::DeleteTableRequest* request, ::io::deephaven::proto::backplane::grpc::DeleteTableResponse* response, std::function) = 0; - virtual void DeleteTableFromInputTable(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::DeleteTableRequest* request, ::io::deephaven::proto::backplane::grpc::DeleteTableResponse* response, ::grpc::ClientUnaryReactor* reactor) = 0; - }; - typedef class async_interface experimental_async_interface; - virtual class async_interface* async() { return nullptr; } - class async_interface* experimental_async() { return async(); } - private: - virtual ::grpc::ClientAsyncResponseReaderInterface< ::io::deephaven::proto::backplane::grpc::AddTableResponse>* AsyncAddTableToInputTableRaw(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::AddTableRequest& request, ::grpc::CompletionQueue* cq) = 0; - virtual ::grpc::ClientAsyncResponseReaderInterface< ::io::deephaven::proto::backplane::grpc::AddTableResponse>* PrepareAsyncAddTableToInputTableRaw(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::AddTableRequest& request, ::grpc::CompletionQueue* cq) = 0; - virtual ::grpc::ClientAsyncResponseReaderInterface< ::io::deephaven::proto::backplane::grpc::DeleteTableResponse>* AsyncDeleteTableFromInputTableRaw(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::DeleteTableRequest& request, ::grpc::CompletionQueue* cq) = 0; - virtual ::grpc::ClientAsyncResponseReaderInterface< ::io::deephaven::proto::backplane::grpc::DeleteTableResponse>* PrepareAsyncDeleteTableFromInputTableRaw(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::DeleteTableRequest& request, ::grpc::CompletionQueue* cq) = 0; - }; - class Stub final : public StubInterface { - public: - Stub(const std::shared_ptr< ::grpc::ChannelInterface>& channel, const ::grpc::StubOptions& options = ::grpc::StubOptions()); - ::grpc::Status AddTableToInputTable(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::AddTableRequest& request, ::io::deephaven::proto::backplane::grpc::AddTableResponse* response) override; - std::unique_ptr< ::grpc::ClientAsyncResponseReader< ::io::deephaven::proto::backplane::grpc::AddTableResponse>> AsyncAddTableToInputTable(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::AddTableRequest& request, ::grpc::CompletionQueue* cq) { - return std::unique_ptr< ::grpc::ClientAsyncResponseReader< ::io::deephaven::proto::backplane::grpc::AddTableResponse>>(AsyncAddTableToInputTableRaw(context, request, cq)); - } - std::unique_ptr< ::grpc::ClientAsyncResponseReader< ::io::deephaven::proto::backplane::grpc::AddTableResponse>> PrepareAsyncAddTableToInputTable(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::AddTableRequest& request, ::grpc::CompletionQueue* cq) { - return std::unique_ptr< ::grpc::ClientAsyncResponseReader< ::io::deephaven::proto::backplane::grpc::AddTableResponse>>(PrepareAsyncAddTableToInputTableRaw(context, request, cq)); - } - ::grpc::Status DeleteTableFromInputTable(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::DeleteTableRequest& request, ::io::deephaven::proto::backplane::grpc::DeleteTableResponse* response) override; - std::unique_ptr< ::grpc::ClientAsyncResponseReader< ::io::deephaven::proto::backplane::grpc::DeleteTableResponse>> AsyncDeleteTableFromInputTable(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::DeleteTableRequest& request, ::grpc::CompletionQueue* cq) { - return std::unique_ptr< ::grpc::ClientAsyncResponseReader< ::io::deephaven::proto::backplane::grpc::DeleteTableResponse>>(AsyncDeleteTableFromInputTableRaw(context, request, cq)); - } - std::unique_ptr< ::grpc::ClientAsyncResponseReader< ::io::deephaven::proto::backplane::grpc::DeleteTableResponse>> PrepareAsyncDeleteTableFromInputTable(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::DeleteTableRequest& request, ::grpc::CompletionQueue* cq) { - return std::unique_ptr< ::grpc::ClientAsyncResponseReader< ::io::deephaven::proto::backplane::grpc::DeleteTableResponse>>(PrepareAsyncDeleteTableFromInputTableRaw(context, request, cq)); - } - class async final : - public StubInterface::async_interface { - public: - void AddTableToInputTable(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::AddTableRequest* request, ::io::deephaven::proto::backplane::grpc::AddTableResponse* response, std::function) override; - void AddTableToInputTable(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::AddTableRequest* request, ::io::deephaven::proto::backplane::grpc::AddTableResponse* response, ::grpc::ClientUnaryReactor* reactor) override; - void DeleteTableFromInputTable(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::DeleteTableRequest* request, ::io::deephaven::proto::backplane::grpc::DeleteTableResponse* response, std::function) override; - void DeleteTableFromInputTable(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::DeleteTableRequest* request, ::io::deephaven::proto::backplane::grpc::DeleteTableResponse* response, ::grpc::ClientUnaryReactor* reactor) override; - private: - friend class Stub; - explicit async(Stub* stub): stub_(stub) { } - Stub* stub() { return stub_; } - Stub* stub_; - }; - class async* async() override { return &async_stub_; } - - private: - std::shared_ptr< ::grpc::ChannelInterface> channel_; - class async async_stub_{this}; - ::grpc::ClientAsyncResponseReader< ::io::deephaven::proto::backplane::grpc::AddTableResponse>* AsyncAddTableToInputTableRaw(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::AddTableRequest& request, ::grpc::CompletionQueue* cq) override; - ::grpc::ClientAsyncResponseReader< ::io::deephaven::proto::backplane::grpc::AddTableResponse>* PrepareAsyncAddTableToInputTableRaw(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::AddTableRequest& request, ::grpc::CompletionQueue* cq) override; - ::grpc::ClientAsyncResponseReader< ::io::deephaven::proto::backplane::grpc::DeleteTableResponse>* AsyncDeleteTableFromInputTableRaw(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::DeleteTableRequest& request, ::grpc::CompletionQueue* cq) override; - ::grpc::ClientAsyncResponseReader< ::io::deephaven::proto::backplane::grpc::DeleteTableResponse>* PrepareAsyncDeleteTableFromInputTableRaw(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::DeleteTableRequest& request, ::grpc::CompletionQueue* cq) override; - const ::grpc::internal::RpcMethod rpcmethod_AddTableToInputTable_; - const ::grpc::internal::RpcMethod rpcmethod_DeleteTableFromInputTable_; - }; - static std::unique_ptr NewStub(const std::shared_ptr< ::grpc::ChannelInterface>& channel, const ::grpc::StubOptions& options = ::grpc::StubOptions()); - - class Service : public ::grpc::Service { - public: - Service(); - virtual ~Service(); - // - // Adds the provided table to the specified input table. The new data to add must only have - // columns (name, types, and order) which match the given input table's columns. - virtual ::grpc::Status AddTableToInputTable(::grpc::ServerContext* context, const ::io::deephaven::proto::backplane::grpc::AddTableRequest* request, ::io::deephaven::proto::backplane::grpc::AddTableResponse* response); - // - // Removes the provided table from the specified input tables. The tables indicating which rows - // to remove are expected to only have columns that match the key columns of the input table. - virtual ::grpc::Status DeleteTableFromInputTable(::grpc::ServerContext* context, const ::io::deephaven::proto::backplane::grpc::DeleteTableRequest* request, ::io::deephaven::proto::backplane::grpc::DeleteTableResponse* response); - }; - template - class WithAsyncMethod_AddTableToInputTable : public BaseClass { - private: - void BaseClassMustBeDerivedFromService(const Service* /*service*/) {} - public: - WithAsyncMethod_AddTableToInputTable() { - ::grpc::Service::MarkMethodAsync(0); - } - ~WithAsyncMethod_AddTableToInputTable() override { - BaseClassMustBeDerivedFromService(this); - } - // disable synchronous version of this method - ::grpc::Status AddTableToInputTable(::grpc::ServerContext* /*context*/, const ::io::deephaven::proto::backplane::grpc::AddTableRequest* /*request*/, ::io::deephaven::proto::backplane::grpc::AddTableResponse* /*response*/) override { - abort(); - return ::grpc::Status(::grpc::StatusCode::UNIMPLEMENTED, ""); - } - void RequestAddTableToInputTable(::grpc::ServerContext* context, ::io::deephaven::proto::backplane::grpc::AddTableRequest* request, ::grpc::ServerAsyncResponseWriter< ::io::deephaven::proto::backplane::grpc::AddTableResponse>* response, ::grpc::CompletionQueue* new_call_cq, ::grpc::ServerCompletionQueue* notification_cq, void *tag) { - ::grpc::Service::RequestAsyncUnary(0, context, request, response, new_call_cq, notification_cq, tag); - } - }; - template - class WithAsyncMethod_DeleteTableFromInputTable : public BaseClass { - private: - void BaseClassMustBeDerivedFromService(const Service* /*service*/) {} - public: - WithAsyncMethod_DeleteTableFromInputTable() { - ::grpc::Service::MarkMethodAsync(1); - } - ~WithAsyncMethod_DeleteTableFromInputTable() override { - BaseClassMustBeDerivedFromService(this); - } - // disable synchronous version of this method - ::grpc::Status DeleteTableFromInputTable(::grpc::ServerContext* /*context*/, const ::io::deephaven::proto::backplane::grpc::DeleteTableRequest* /*request*/, ::io::deephaven::proto::backplane::grpc::DeleteTableResponse* /*response*/) override { - abort(); - return ::grpc::Status(::grpc::StatusCode::UNIMPLEMENTED, ""); - } - void RequestDeleteTableFromInputTable(::grpc::ServerContext* context, ::io::deephaven::proto::backplane::grpc::DeleteTableRequest* request, ::grpc::ServerAsyncResponseWriter< ::io::deephaven::proto::backplane::grpc::DeleteTableResponse>* response, ::grpc::CompletionQueue* new_call_cq, ::grpc::ServerCompletionQueue* notification_cq, void *tag) { - ::grpc::Service::RequestAsyncUnary(1, context, request, response, new_call_cq, notification_cq, tag); - } - }; - typedef WithAsyncMethod_AddTableToInputTable > AsyncService; - template - class WithCallbackMethod_AddTableToInputTable : public BaseClass { - private: - void BaseClassMustBeDerivedFromService(const Service* /*service*/) {} - public: - WithCallbackMethod_AddTableToInputTable() { - ::grpc::Service::MarkMethodCallback(0, - new ::grpc::internal::CallbackUnaryHandler< ::io::deephaven::proto::backplane::grpc::AddTableRequest, ::io::deephaven::proto::backplane::grpc::AddTableResponse>( - [this]( - ::grpc::CallbackServerContext* context, const ::io::deephaven::proto::backplane::grpc::AddTableRequest* request, ::io::deephaven::proto::backplane::grpc::AddTableResponse* response) { return this->AddTableToInputTable(context, request, response); }));} - void SetMessageAllocatorFor_AddTableToInputTable( - ::grpc::MessageAllocator< ::io::deephaven::proto::backplane::grpc::AddTableRequest, ::io::deephaven::proto::backplane::grpc::AddTableResponse>* allocator) { - ::grpc::internal::MethodHandler* const handler = ::grpc::Service::GetHandler(0); - static_cast<::grpc::internal::CallbackUnaryHandler< ::io::deephaven::proto::backplane::grpc::AddTableRequest, ::io::deephaven::proto::backplane::grpc::AddTableResponse>*>(handler) - ->SetMessageAllocator(allocator); - } - ~WithCallbackMethod_AddTableToInputTable() override { - BaseClassMustBeDerivedFromService(this); - } - // disable synchronous version of this method - ::grpc::Status AddTableToInputTable(::grpc::ServerContext* /*context*/, const ::io::deephaven::proto::backplane::grpc::AddTableRequest* /*request*/, ::io::deephaven::proto::backplane::grpc::AddTableResponse* /*response*/) override { - abort(); - return ::grpc::Status(::grpc::StatusCode::UNIMPLEMENTED, ""); - } - virtual ::grpc::ServerUnaryReactor* AddTableToInputTable( - ::grpc::CallbackServerContext* /*context*/, const ::io::deephaven::proto::backplane::grpc::AddTableRequest* /*request*/, ::io::deephaven::proto::backplane::grpc::AddTableResponse* /*response*/) { return nullptr; } - }; - template - class WithCallbackMethod_DeleteTableFromInputTable : public BaseClass { - private: - void BaseClassMustBeDerivedFromService(const Service* /*service*/) {} - public: - WithCallbackMethod_DeleteTableFromInputTable() { - ::grpc::Service::MarkMethodCallback(1, - new ::grpc::internal::CallbackUnaryHandler< ::io::deephaven::proto::backplane::grpc::DeleteTableRequest, ::io::deephaven::proto::backplane::grpc::DeleteTableResponse>( - [this]( - ::grpc::CallbackServerContext* context, const ::io::deephaven::proto::backplane::grpc::DeleteTableRequest* request, ::io::deephaven::proto::backplane::grpc::DeleteTableResponse* response) { return this->DeleteTableFromInputTable(context, request, response); }));} - void SetMessageAllocatorFor_DeleteTableFromInputTable( - ::grpc::MessageAllocator< ::io::deephaven::proto::backplane::grpc::DeleteTableRequest, ::io::deephaven::proto::backplane::grpc::DeleteTableResponse>* allocator) { - ::grpc::internal::MethodHandler* const handler = ::grpc::Service::GetHandler(1); - static_cast<::grpc::internal::CallbackUnaryHandler< ::io::deephaven::proto::backplane::grpc::DeleteTableRequest, ::io::deephaven::proto::backplane::grpc::DeleteTableResponse>*>(handler) - ->SetMessageAllocator(allocator); - } - ~WithCallbackMethod_DeleteTableFromInputTable() override { - BaseClassMustBeDerivedFromService(this); - } - // disable synchronous version of this method - ::grpc::Status DeleteTableFromInputTable(::grpc::ServerContext* /*context*/, const ::io::deephaven::proto::backplane::grpc::DeleteTableRequest* /*request*/, ::io::deephaven::proto::backplane::grpc::DeleteTableResponse* /*response*/) override { - abort(); - return ::grpc::Status(::grpc::StatusCode::UNIMPLEMENTED, ""); - } - virtual ::grpc::ServerUnaryReactor* DeleteTableFromInputTable( - ::grpc::CallbackServerContext* /*context*/, const ::io::deephaven::proto::backplane::grpc::DeleteTableRequest* /*request*/, ::io::deephaven::proto::backplane::grpc::DeleteTableResponse* /*response*/) { return nullptr; } - }; - typedef WithCallbackMethod_AddTableToInputTable > CallbackService; - typedef CallbackService ExperimentalCallbackService; - template - class WithGenericMethod_AddTableToInputTable : public BaseClass { - private: - void BaseClassMustBeDerivedFromService(const Service* /*service*/) {} - public: - WithGenericMethod_AddTableToInputTable() { - ::grpc::Service::MarkMethodGeneric(0); - } - ~WithGenericMethod_AddTableToInputTable() override { - BaseClassMustBeDerivedFromService(this); - } - // disable synchronous version of this method - ::grpc::Status AddTableToInputTable(::grpc::ServerContext* /*context*/, const ::io::deephaven::proto::backplane::grpc::AddTableRequest* /*request*/, ::io::deephaven::proto::backplane::grpc::AddTableResponse* /*response*/) override { - abort(); - return ::grpc::Status(::grpc::StatusCode::UNIMPLEMENTED, ""); - } - }; - template - class WithGenericMethod_DeleteTableFromInputTable : public BaseClass { - private: - void BaseClassMustBeDerivedFromService(const Service* /*service*/) {} - public: - WithGenericMethod_DeleteTableFromInputTable() { - ::grpc::Service::MarkMethodGeneric(1); - } - ~WithGenericMethod_DeleteTableFromInputTable() override { - BaseClassMustBeDerivedFromService(this); - } - // disable synchronous version of this method - ::grpc::Status DeleteTableFromInputTable(::grpc::ServerContext* /*context*/, const ::io::deephaven::proto::backplane::grpc::DeleteTableRequest* /*request*/, ::io::deephaven::proto::backplane::grpc::DeleteTableResponse* /*response*/) override { - abort(); - return ::grpc::Status(::grpc::StatusCode::UNIMPLEMENTED, ""); - } - }; - template - class WithRawMethod_AddTableToInputTable : public BaseClass { - private: - void BaseClassMustBeDerivedFromService(const Service* /*service*/) {} - public: - WithRawMethod_AddTableToInputTable() { - ::grpc::Service::MarkMethodRaw(0); - } - ~WithRawMethod_AddTableToInputTable() override { - BaseClassMustBeDerivedFromService(this); - } - // disable synchronous version of this method - ::grpc::Status AddTableToInputTable(::grpc::ServerContext* /*context*/, const ::io::deephaven::proto::backplane::grpc::AddTableRequest* /*request*/, ::io::deephaven::proto::backplane::grpc::AddTableResponse* /*response*/) override { - abort(); - return ::grpc::Status(::grpc::StatusCode::UNIMPLEMENTED, ""); - } - void RequestAddTableToInputTable(::grpc::ServerContext* context, ::grpc::ByteBuffer* request, ::grpc::ServerAsyncResponseWriter< ::grpc::ByteBuffer>* response, ::grpc::CompletionQueue* new_call_cq, ::grpc::ServerCompletionQueue* notification_cq, void *tag) { - ::grpc::Service::RequestAsyncUnary(0, context, request, response, new_call_cq, notification_cq, tag); - } - }; - template - class WithRawMethod_DeleteTableFromInputTable : public BaseClass { - private: - void BaseClassMustBeDerivedFromService(const Service* /*service*/) {} - public: - WithRawMethod_DeleteTableFromInputTable() { - ::grpc::Service::MarkMethodRaw(1); - } - ~WithRawMethod_DeleteTableFromInputTable() override { - BaseClassMustBeDerivedFromService(this); - } - // disable synchronous version of this method - ::grpc::Status DeleteTableFromInputTable(::grpc::ServerContext* /*context*/, const ::io::deephaven::proto::backplane::grpc::DeleteTableRequest* /*request*/, ::io::deephaven::proto::backplane::grpc::DeleteTableResponse* /*response*/) override { - abort(); - return ::grpc::Status(::grpc::StatusCode::UNIMPLEMENTED, ""); - } - void RequestDeleteTableFromInputTable(::grpc::ServerContext* context, ::grpc::ByteBuffer* request, ::grpc::ServerAsyncResponseWriter< ::grpc::ByteBuffer>* response, ::grpc::CompletionQueue* new_call_cq, ::grpc::ServerCompletionQueue* notification_cq, void *tag) { - ::grpc::Service::RequestAsyncUnary(1, context, request, response, new_call_cq, notification_cq, tag); - } - }; - template - class WithRawCallbackMethod_AddTableToInputTable : public BaseClass { - private: - void BaseClassMustBeDerivedFromService(const Service* /*service*/) {} - public: - WithRawCallbackMethod_AddTableToInputTable() { - ::grpc::Service::MarkMethodRawCallback(0, - new ::grpc::internal::CallbackUnaryHandler< ::grpc::ByteBuffer, ::grpc::ByteBuffer>( - [this]( - ::grpc::CallbackServerContext* context, const ::grpc::ByteBuffer* request, ::grpc::ByteBuffer* response) { return this->AddTableToInputTable(context, request, response); })); - } - ~WithRawCallbackMethod_AddTableToInputTable() override { - BaseClassMustBeDerivedFromService(this); - } - // disable synchronous version of this method - ::grpc::Status AddTableToInputTable(::grpc::ServerContext* /*context*/, const ::io::deephaven::proto::backplane::grpc::AddTableRequest* /*request*/, ::io::deephaven::proto::backplane::grpc::AddTableResponse* /*response*/) override { - abort(); - return ::grpc::Status(::grpc::StatusCode::UNIMPLEMENTED, ""); - } - virtual ::grpc::ServerUnaryReactor* AddTableToInputTable( - ::grpc::CallbackServerContext* /*context*/, const ::grpc::ByteBuffer* /*request*/, ::grpc::ByteBuffer* /*response*/) { return nullptr; } - }; - template - class WithRawCallbackMethod_DeleteTableFromInputTable : public BaseClass { - private: - void BaseClassMustBeDerivedFromService(const Service* /*service*/) {} - public: - WithRawCallbackMethod_DeleteTableFromInputTable() { - ::grpc::Service::MarkMethodRawCallback(1, - new ::grpc::internal::CallbackUnaryHandler< ::grpc::ByteBuffer, ::grpc::ByteBuffer>( - [this]( - ::grpc::CallbackServerContext* context, const ::grpc::ByteBuffer* request, ::grpc::ByteBuffer* response) { return this->DeleteTableFromInputTable(context, request, response); })); - } - ~WithRawCallbackMethod_DeleteTableFromInputTable() override { - BaseClassMustBeDerivedFromService(this); - } - // disable synchronous version of this method - ::grpc::Status DeleteTableFromInputTable(::grpc::ServerContext* /*context*/, const ::io::deephaven::proto::backplane::grpc::DeleteTableRequest* /*request*/, ::io::deephaven::proto::backplane::grpc::DeleteTableResponse* /*response*/) override { - abort(); - return ::grpc::Status(::grpc::StatusCode::UNIMPLEMENTED, ""); - } - virtual ::grpc::ServerUnaryReactor* DeleteTableFromInputTable( - ::grpc::CallbackServerContext* /*context*/, const ::grpc::ByteBuffer* /*request*/, ::grpc::ByteBuffer* /*response*/) { return nullptr; } - }; - template - class WithStreamedUnaryMethod_AddTableToInputTable : public BaseClass { - private: - void BaseClassMustBeDerivedFromService(const Service* /*service*/) {} - public: - WithStreamedUnaryMethod_AddTableToInputTable() { - ::grpc::Service::MarkMethodStreamed(0, - new ::grpc::internal::StreamedUnaryHandler< - ::io::deephaven::proto::backplane::grpc::AddTableRequest, ::io::deephaven::proto::backplane::grpc::AddTableResponse>( - [this](::grpc::ServerContext* context, - ::grpc::ServerUnaryStreamer< - ::io::deephaven::proto::backplane::grpc::AddTableRequest, ::io::deephaven::proto::backplane::grpc::AddTableResponse>* streamer) { - return this->StreamedAddTableToInputTable(context, - streamer); - })); - } - ~WithStreamedUnaryMethod_AddTableToInputTable() override { - BaseClassMustBeDerivedFromService(this); - } - // disable regular version of this method - ::grpc::Status AddTableToInputTable(::grpc::ServerContext* /*context*/, const ::io::deephaven::proto::backplane::grpc::AddTableRequest* /*request*/, ::io::deephaven::proto::backplane::grpc::AddTableResponse* /*response*/) override { - abort(); - return ::grpc::Status(::grpc::StatusCode::UNIMPLEMENTED, ""); - } - // replace default version of method with streamed unary - virtual ::grpc::Status StreamedAddTableToInputTable(::grpc::ServerContext* context, ::grpc::ServerUnaryStreamer< ::io::deephaven::proto::backplane::grpc::AddTableRequest,::io::deephaven::proto::backplane::grpc::AddTableResponse>* server_unary_streamer) = 0; - }; - template - class WithStreamedUnaryMethod_DeleteTableFromInputTable : public BaseClass { - private: - void BaseClassMustBeDerivedFromService(const Service* /*service*/) {} - public: - WithStreamedUnaryMethod_DeleteTableFromInputTable() { - ::grpc::Service::MarkMethodStreamed(1, - new ::grpc::internal::StreamedUnaryHandler< - ::io::deephaven::proto::backplane::grpc::DeleteTableRequest, ::io::deephaven::proto::backplane::grpc::DeleteTableResponse>( - [this](::grpc::ServerContext* context, - ::grpc::ServerUnaryStreamer< - ::io::deephaven::proto::backplane::grpc::DeleteTableRequest, ::io::deephaven::proto::backplane::grpc::DeleteTableResponse>* streamer) { - return this->StreamedDeleteTableFromInputTable(context, - streamer); - })); - } - ~WithStreamedUnaryMethod_DeleteTableFromInputTable() override { - BaseClassMustBeDerivedFromService(this); - } - // disable regular version of this method - ::grpc::Status DeleteTableFromInputTable(::grpc::ServerContext* /*context*/, const ::io::deephaven::proto::backplane::grpc::DeleteTableRequest* /*request*/, ::io::deephaven::proto::backplane::grpc::DeleteTableResponse* /*response*/) override { - abort(); - return ::grpc::Status(::grpc::StatusCode::UNIMPLEMENTED, ""); - } - // replace default version of method with streamed unary - virtual ::grpc::Status StreamedDeleteTableFromInputTable(::grpc::ServerContext* context, ::grpc::ServerUnaryStreamer< ::io::deephaven::proto::backplane::grpc::DeleteTableRequest,::io::deephaven::proto::backplane::grpc::DeleteTableResponse>* server_unary_streamer) = 0; - }; - typedef WithStreamedUnaryMethod_AddTableToInputTable > StreamedUnaryService; - typedef Service SplitStreamedService; - typedef WithStreamedUnaryMethod_AddTableToInputTable > StreamedService; -}; - -} // namespace grpc -} // namespace backplane -} // namespace proto -} // namespace deephaven -} // namespace io - - -#endif // GRPC_deephaven_2fproto_2finputtable_2eproto__INCLUDED diff --git a/cpp-client/deephaven/dhclient/proto/deephaven/proto/inputtable.pb.cc b/cpp-client/deephaven/dhclient/proto/deephaven/proto/inputtable.pb.cc deleted file mode 100644 index 400bf8c6d8e..00000000000 --- a/cpp-client/deephaven/dhclient/proto/deephaven/proto/inputtable.pb.cc +++ /dev/null @@ -1,1049 +0,0 @@ -// 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" -// @@protoc_insertion_point(includes) - -// Must be included last. -#include "google/protobuf/port_def.inc" -PROTOBUF_PRAGMA_INIT_SEG -namespace _pb = ::google::protobuf; -namespace _pbi = ::google::protobuf::internal; -namespace _fl = ::google::protobuf::internal::field_layout; -namespace io { -namespace deephaven { -namespace proto { -namespace backplane { -namespace grpc { - 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() {} - union { - DeleteTableResponse _instance; - }; -}; - -PROTOBUF_ATTRIBUTE_NO_DESTROY PROTOBUF_CONSTINIT - PROTOBUF_ATTRIBUTE_INIT_PRIORITY1 DeleteTableResponseDefaultTypeInternal _DeleteTableResponse_default_instance_; - 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() {} - union { - AddTableResponse _instance; - }; -}; - -PROTOBUF_ATTRIBUTE_NO_DESTROY PROTOBUF_CONSTINIT - PROTOBUF_ATTRIBUTE_INIT_PRIORITY1 AddTableResponseDefaultTypeInternal _AddTableResponse_default_instance_; - -inline constexpr DeleteTableRequest::Impl_::Impl_( - ::_pbi::ConstantInitialized) noexcept - : _cached_size_{0}, - input_table_{nullptr}, - table_to_remove_{nullptr} {} - -template -PROTOBUF_CONSTEXPR DeleteTableRequest::DeleteTableRequest(::_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() {} - union { - DeleteTableRequest _instance; - }; -}; - -PROTOBUF_ATTRIBUTE_NO_DESTROY PROTOBUF_CONSTINIT - PROTOBUF_ATTRIBUTE_INIT_PRIORITY1 DeleteTableRequestDefaultTypeInternal _DeleteTableRequest_default_instance_; - -inline constexpr AddTableRequest::Impl_::Impl_( - ::_pbi::ConstantInitialized) noexcept - : _cached_size_{0}, - input_table_{nullptr}, - table_to_add_{nullptr} {} - -template -PROTOBUF_CONSTEXPR AddTableRequest::AddTableRequest(::_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() {} - union { - AddTableRequest _instance; - }; -}; - -PROTOBUF_ATTRIBUTE_NO_DESTROY PROTOBUF_CONSTINIT - PROTOBUF_ATTRIBUTE_INIT_PRIORITY1 AddTableRequestDefaultTypeInternal _AddTableRequest_default_instance_; -} // namespace grpc -} // namespace backplane -} // namespace proto -} // namespace deephaven -} // namespace io -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[] 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[] 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[] 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" - ">\n\013input_table\030\001 \001(\0132).io.deephaven.prot" - "o.backplane.grpc.Ticket\022\?\n\014table_to_add\030" - "\002 \001(\0132).io.deephaven.proto.backplane.grp" - "c.Ticket\"\022\n\020AddTableResponse\"\230\001\n\022DeleteT" - "ableRequest\022>\n\013input_table\030\001 \001(\0132).io.de" - "ephaven.proto.backplane.grpc.Ticket\022B\n\017t" - "able_to_remove\030\002 \001(\0132).io.deephaven.prot" - "o.backplane.grpc.Ticket\"\025\n\023DeleteTableRe" - "sponse2\246\002\n\021InputTableService\022\201\001\n\024AddTabl" - "eToInputTable\0222.io.deephaven.proto.backp" - "lane.grpc.AddTableRequest\0323.io.deephaven" - ".proto.backplane.grpc.AddTableResponse\"\000" - "\022\214\001\n\031DeleteTableFromInputTable\0225.io.deep" - "haven.proto.backplane.grpc.DeleteTableRe" - "quest\0326.io.deephaven.proto.backplane.grp" - "c.DeleteTableResponse\"\000BFH\001P\001Z@github.co" - "m/deephaven/deephaven-core/go/internal/p" - "roto/inputtableb\006proto3" -}; -static const ::_pbi::DescriptorTable* const descriptor_table_deephaven_2fproto_2finputtable_2eproto_deps[1] = - { - &::descriptor_table_deephaven_2fproto_2fticket_2eproto, -}; -static ::absl::once_flag descriptor_table_deephaven_2fproto_2finputtable_2eproto_once; -PROTOBUF_CONSTINIT const ::_pbi::DescriptorTable descriptor_table_deephaven_2fproto_2finputtable_2eproto = { - false, - false, - 823, - descriptor_table_protodef_deephaven_2fproto_2finputtable_2eproto, - "deephaven/proto/inputtable.proto", - &descriptor_table_deephaven_2fproto_2finputtable_2eproto_once, - descriptor_table_deephaven_2fproto_2finputtable_2eproto_deps, - 1, - 4, - schemas, - file_default_instances, - TableStruct_deephaven_2fproto_2finputtable_2eproto::offsets, - file_level_enum_descriptors_deephaven_2fproto_2finputtable_2eproto, - file_level_service_descriptors_deephaven_2fproto_2finputtable_2eproto, -}; -namespace io { -namespace deephaven { -namespace proto { -namespace backplane { -namespace grpc { -// =================================================================== - -class AddTableRequest::_Internal { - public: - using HasBits = - decltype(std::declval()._impl_._has_bits_); - static constexpr ::int32_t kHasBitsOffset = - 8 * PROTOBUF_FIELD_OFFSET(AddTableRequest, _impl_._has_bits_); -}; - -void AddTableRequest::clear_input_table() { - ::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() { - ::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 ::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_, from); - ::uint32_t cached_has_bits = _impl_._has_bits_[0]; - _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) -} -inline PROTOBUF_NDEBUG_INLINE AddTableRequest::Impl_::Impl_( - ::google::protobuf::internal::InternalVisibility visibility, - ::google::protobuf::Arena* arena) - : _cached_size_{0} {} - -inline void AddTableRequest::SharedCtor(::_pb::Arena* arena) { - new (&_impl_) Impl_(internal_visibility(), arena); - ::memset(reinterpret_cast(&_impl_) + - offsetof(Impl_, input_table_), - 0, - offsetof(Impl_, table_to_add_) - - offsetof(Impl_, input_table_) + - sizeof(Impl_::table_to_add_)); -} -AddTableRequest::~AddTableRequest() { - // @@protoc_insertion_point(destructor:io.deephaven.proto.backplane.grpc.AddTableRequest) - _internal_metadata_.Delete<::google::protobuf::UnknownFieldSet>(); - SharedDtor(); -} -inline void AddTableRequest::SharedDtor() { - ABSL_DCHECK(GetArena() == nullptr); - delete _impl_.input_table_; - delete _impl_.table_to_add_; - _impl_.~Impl_(); -} - -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_ = { - { - PROTOBUF_FIELD_OFFSET(AddTableRequest, _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 - 2, // num_aux_entries - offsetof(decltype(_table_), 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::AddTableRequest>(), // to_prefetch - #endif // PROTOBUF_PREFETCH_PARSE_TABLE - }, {{ - // .io.deephaven.proto.backplane.grpc.Ticket table_to_add = 2; - {::_pbi::TcParser::FastMtS1, - {18, 1, 1, PROTOBUF_FIELD_OFFSET(AddTableRequest, _impl_.table_to_add_)}}, - // .io.deephaven.proto.backplane.grpc.Ticket input_table = 1; - {::_pbi::TcParser::FastMtS1, - {10, 0, 0, PROTOBUF_FIELD_OFFSET(AddTableRequest, _impl_.input_table_)}}, - }}, {{ - 65535, 65535 - }}, {{ - // .io.deephaven.proto.backplane.grpc.Ticket input_table = 1; - {PROTOBUF_FIELD_OFFSET(AddTableRequest, _impl_.input_table_), _Internal::kHasBitsOffset + 0, 0, - (0 | ::_fl::kFcOptional | ::_fl::kMessage | ::_fl::kTvTable)}, - // .io.deephaven.proto.backplane.grpc.Ticket table_to_add = 2; - {PROTOBUF_FIELD_OFFSET(AddTableRequest, _impl_.table_to_add_), _Internal::kHasBitsOffset + 1, 1, - (0 | ::_fl::kFcOptional | ::_fl::kMessage | ::_fl::kTvTable)}, - }}, {{ - {::_pbi::TcParser::GetTable<::io::deephaven::proto::backplane::grpc::Ticket>()}, - {::_pbi::TcParser::GetTable<::io::deephaven::proto::backplane::grpc::Ticket>()}, - }}, {{ - }}, -}; - -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) { - 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>(); -} - -#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; - (void) cached_has_bits; - - cached_has_bits = from._impl_._has_bits_[0]; - if (cached_has_bits & 0x00000003u) { - if (cached_has_bits & 0x00000001u) { - 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) { - 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_); -} - -void AddTableRequest::CopyFrom(const AddTableRequest& from) { -// @@protoc_insertion_point(class_specific_copy_from_start:io.deephaven.proto.backplane.grpc.AddTableRequest) - if (&from == this) return; - Clear(); - MergeFrom(from); -} - - -void AddTableRequest::InternalSwap(AddTableRequest* PROTOBUF_RESTRICT other) { - using std::swap; - _internal_metadata_.InternalSwap(&other->_internal_metadata_); - swap(_impl_._has_bits_[0], other->_impl_._has_bits_[0]); - ::google::protobuf::internal::memswap< - PROTOBUF_FIELD_OFFSET(AddTableRequest, _impl_.table_to_add_) - + sizeof(AddTableRequest::_impl_.table_to_add_) - - PROTOBUF_FIELD_OFFSET(AddTableRequest, _impl_.input_table_)>( - reinterpret_cast(&_impl_.input_table_), - reinterpret_cast(&other->_impl_.input_table_)); -} - -::google::protobuf::Metadata AddTableRequest::GetMetadata() const { - return ::google::protobuf::Message::GetMetadataImpl(GetClassData()->full()); -} -// =================================================================== - -class AddTableResponse::_Internal { - public: -}; - -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>( - from._internal_metadata_); - - // @@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 - {{ - }}, -}; - - - - - - - - -::google::protobuf::Metadata AddTableResponse::GetMetadata() const { - return ::google::protobuf::internal::ZeroFieldsBase::GetMetadataImpl(GetClassData()->full()); -} -// =================================================================== - -class DeleteTableRequest::_Internal { - public: - using HasBits = - decltype(std::declval()._impl_._has_bits_); - static constexpr ::int32_t kHasBitsOffset = - 8 * PROTOBUF_FIELD_OFFSET(DeleteTableRequest, _impl_._has_bits_); -}; - -void DeleteTableRequest::clear_input_table() { - ::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() { - ::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 ::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_, from); - ::uint32_t cached_has_bits = _impl_._has_bits_[0]; - _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) -} -inline PROTOBUF_NDEBUG_INLINE DeleteTableRequest::Impl_::Impl_( - ::google::protobuf::internal::InternalVisibility visibility, - ::google::protobuf::Arena* arena) - : _cached_size_{0} {} - -inline void DeleteTableRequest::SharedCtor(::_pb::Arena* arena) { - new (&_impl_) Impl_(internal_visibility(), arena); - ::memset(reinterpret_cast(&_impl_) + - offsetof(Impl_, input_table_), - 0, - offsetof(Impl_, table_to_remove_) - - offsetof(Impl_, input_table_) + - sizeof(Impl_::table_to_remove_)); -} -DeleteTableRequest::~DeleteTableRequest() { - // @@protoc_insertion_point(destructor:io.deephaven.proto.backplane.grpc.DeleteTableRequest) - _internal_metadata_.Delete<::google::protobuf::UnknownFieldSet>(); - SharedDtor(); -} -inline void DeleteTableRequest::SharedDtor() { - ABSL_DCHECK(GetArena() == nullptr); - delete _impl_.input_table_; - delete _impl_.table_to_remove_; - _impl_.~Impl_(); -} - -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_ = { - { - PROTOBUF_FIELD_OFFSET(DeleteTableRequest, _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 - 2, // num_aux_entries - offsetof(decltype(_table_), 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::DeleteTableRequest>(), // to_prefetch - #endif // PROTOBUF_PREFETCH_PARSE_TABLE - }, {{ - // .io.deephaven.proto.backplane.grpc.Ticket table_to_remove = 2; - {::_pbi::TcParser::FastMtS1, - {18, 1, 1, PROTOBUF_FIELD_OFFSET(DeleteTableRequest, _impl_.table_to_remove_)}}, - // .io.deephaven.proto.backplane.grpc.Ticket input_table = 1; - {::_pbi::TcParser::FastMtS1, - {10, 0, 0, PROTOBUF_FIELD_OFFSET(DeleteTableRequest, _impl_.input_table_)}}, - }}, {{ - 65535, 65535 - }}, {{ - // .io.deephaven.proto.backplane.grpc.Ticket input_table = 1; - {PROTOBUF_FIELD_OFFSET(DeleteTableRequest, _impl_.input_table_), _Internal::kHasBitsOffset + 0, 0, - (0 | ::_fl::kFcOptional | ::_fl::kMessage | ::_fl::kTvTable)}, - // .io.deephaven.proto.backplane.grpc.Ticket table_to_remove = 2; - {PROTOBUF_FIELD_OFFSET(DeleteTableRequest, _impl_.table_to_remove_), _Internal::kHasBitsOffset + 1, 1, - (0 | ::_fl::kFcOptional | ::_fl::kMessage | ::_fl::kTvTable)}, - }}, {{ - {::_pbi::TcParser::GetTable<::io::deephaven::proto::backplane::grpc::Ticket>()}, - {::_pbi::TcParser::GetTable<::io::deephaven::proto::backplane::grpc::Ticket>()}, - }}, {{ - }}, -}; - -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) { - 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>(); -} - -#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; - (void) cached_has_bits; - - cached_has_bits = from._impl_._has_bits_[0]; - if (cached_has_bits & 0x00000003u) { - if (cached_has_bits & 0x00000001u) { - 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) { - 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_); -} - -void DeleteTableRequest::CopyFrom(const DeleteTableRequest& from) { -// @@protoc_insertion_point(class_specific_copy_from_start:io.deephaven.proto.backplane.grpc.DeleteTableRequest) - if (&from == this) return; - Clear(); - MergeFrom(from); -} - - -void DeleteTableRequest::InternalSwap(DeleteTableRequest* PROTOBUF_RESTRICT other) { - using std::swap; - _internal_metadata_.InternalSwap(&other->_internal_metadata_); - swap(_impl_._has_bits_[0], other->_impl_._has_bits_[0]); - ::google::protobuf::internal::memswap< - PROTOBUF_FIELD_OFFSET(DeleteTableRequest, _impl_.table_to_remove_) - + sizeof(DeleteTableRequest::_impl_.table_to_remove_) - - PROTOBUF_FIELD_OFFSET(DeleteTableRequest, _impl_.input_table_)>( - reinterpret_cast(&_impl_.input_table_), - reinterpret_cast(&other->_impl_.input_table_)); -} - -::google::protobuf::Metadata DeleteTableRequest::GetMetadata() const { - return ::google::protobuf::Message::GetMetadataImpl(GetClassData()->full()); -} -// =================================================================== - -class DeleteTableResponse::_Internal { - public: -}; - -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>( - from._internal_metadata_); - - // @@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 - {{ - }}, -}; - - - - - - - - -::google::protobuf::Metadata DeleteTableResponse::GetMetadata() const { - return ::google::protobuf::internal::ZeroFieldsBase::GetMetadataImpl(GetClassData()->full()); -} -// @@protoc_insertion_point(namespace_scope) -} // namespace grpc -} // namespace backplane -} // namespace proto -} // namespace deephaven -} // namespace io -namespace google { -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 deleted file mode 100644 index 154359cc611..00000000000 --- a/cpp-client/deephaven/dhclient/proto/deephaven/proto/inputtable.pb.h +++ /dev/null @@ -1,1207 +0,0 @@ -// 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 - -#ifndef GOOGLE_PROTOBUF_INCLUDED_deephaven_2fproto_2finputtable_2eproto_2epb_2eh -#define GOOGLE_PROTOBUF_INCLUDED_deephaven_2fproto_2finputtable_2eproto_2epb_2eh - -#include -#include -#include -#include - -#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" -#include "google/protobuf/generated_message_bases.h" -#include "google/protobuf/generated_message_tctable_decl.h" -#include "google/protobuf/generated_message_util.h" -#include "google/protobuf/metadata_lite.h" -#include "google/protobuf/generated_message_reflection.h" -#include "google/protobuf/message.h" -#include "google/protobuf/repeated_field.h" // IWYU pragma: export -#include "google/protobuf/extension_set.h" // IWYU pragma: export -#include "google/protobuf/unknown_field_set.h" -#include "deephaven/proto/ticket.pb.h" -// @@protoc_insertion_point(includes) - -// Must be included last. -#include "google/protobuf/port_def.inc" - -#define PROTOBUF_INTERNAL_EXPORT_deephaven_2fproto_2finputtable_2eproto - -namespace google { -namespace protobuf { -namespace internal { -class AnyMetadata; -} // namespace internal -} // namespace protobuf -} // namespace google - -// Internal implementation detail -- do not use these members. -struct TableStruct_deephaven_2fproto_2finputtable_2eproto { - static const ::uint32_t offsets[]; -}; -extern const ::google::protobuf::internal::DescriptorTable - descriptor_table_deephaven_2fproto_2finputtable_2eproto; -namespace io { -namespace deephaven { -namespace proto { -namespace backplane { -namespace grpc { -class AddTableRequest; -struct AddTableRequestDefaultTypeInternal; -extern AddTableRequestDefaultTypeInternal _AddTableRequest_default_instance_; -class AddTableResponse; -struct AddTableResponseDefaultTypeInternal; -extern AddTableResponseDefaultTypeInternal _AddTableResponse_default_instance_; -class DeleteTableRequest; -struct DeleteTableRequestDefaultTypeInternal; -extern DeleteTableRequestDefaultTypeInternal _DeleteTableRequest_default_instance_; -class DeleteTableResponse; -struct DeleteTableResponseDefaultTypeInternal; -extern DeleteTableResponseDefaultTypeInternal _DeleteTableResponse_default_instance_; -} // namespace grpc -} // namespace backplane -} // namespace proto -} // namespace deephaven -} // namespace io -namespace google { -namespace protobuf { -} // namespace protobuf -} // namespace google - -namespace io { -namespace deephaven { -namespace proto { -namespace backplane { -namespace grpc { - -// =================================================================== - - -// ------------------------------------------------------------------- - -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) {} - inline DeleteTableResponse(DeleteTableResponse&& from) noexcept - : DeleteTableResponse(nullptr, std::move(from)) {} - inline DeleteTableResponse& operator=(const DeleteTableResponse& from) { - CopyFrom(from); - return *this; - } - inline DeleteTableResponse& operator=(DeleteTableResponse&& 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 DeleteTableResponse& default_instance() { - return *internal_default_instance(); - } - 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); } - 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 - if (GetArena() == other->GetArena()) { -#endif // !PROTOBUF_FORCE_COPY_IN_SWAP - InternalSwap(other); - } else { - ::google::protobuf::internal::GenericSwap(this, other); - } - } - void UnsafeArenaSwap(DeleteTableResponse* other) { - if (other == this) return; - ABSL_DCHECK(GetArena() == other->GetArena()); - InternalSwap(other); - } - - // implements Message ---------------------------------------------- - - 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) { - ::google::protobuf::internal::ZeroFieldsBase::CopyImpl(*this, from); - } - using ::google::protobuf::internal::ZeroFieldsBase::MergeFrom; - void MergeFrom(const DeleteTableResponse& 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.DeleteTableResponse"; } - - protected: - explicit DeleteTableResponse(::google::protobuf::Arena* arena); - DeleteTableResponse(::google::protobuf::Arena* arena, const DeleteTableResponse& from); - 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; - 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 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) */ { - public: - inline AddTableResponse() : AddTableResponse(nullptr) {} - 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; - } - inline AddTableResponse& operator=(AddTableResponse&& 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 AddTableResponse& default_instance() { - return *internal_default_instance(); - } - 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); } - 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 - if (GetArena() == other->GetArena()) { -#endif // !PROTOBUF_FORCE_COPY_IN_SWAP - InternalSwap(other); - } else { - ::google::protobuf::internal::GenericSwap(this, other); - } - } - void UnsafeArenaSwap(AddTableResponse* other) { - if (other == this) return; - ABSL_DCHECK(GetArena() == other->GetArena()); - InternalSwap(other); - } - - // implements Message ---------------------------------------------- - - 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) { - ::google::protobuf::internal::ZeroFieldsBase::CopyImpl(*this, from); - } - using ::google::protobuf::internal::ZeroFieldsBase::MergeFrom; - void MergeFrom(const AddTableResponse& 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.AddTableResponse"; } - - protected: - explicit AddTableResponse(::google::protobuf::Arena* arena); - AddTableResponse(::google::protobuf::Arena* arena, const AddTableResponse& from); - 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; - 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 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) */ { - public: - inline DeleteTableRequest() : DeleteTableRequest(nullptr) {} - ~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; - } - inline DeleteTableRequest& operator=(DeleteTableRequest&& 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 DeleteTableRequest& default_instance() { - return *internal_default_instance(); - } - 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); } - 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 - if (GetArena() == other->GetArena()) { -#endif // !PROTOBUF_FORCE_COPY_IN_SWAP - InternalSwap(other); - } else { - ::google::protobuf::internal::GenericSwap(this, other); - } - } - void UnsafeArenaSwap(DeleteTableRequest* other) { - if (other == this) return; - ABSL_DCHECK(GetArena() == other->GetArena()); - InternalSwap(other); - } - - // implements Message ---------------------------------------------- - - 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); } - - private: - static void MergeImpl( - ::google::protobuf::MessageLite& to_msg, - const ::google::protobuf::MessageLite& from_msg); - - 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; - #endif // PROTOBUF_CUSTOM_VTABLE - int GetCachedSize() const { return _impl_._cached_size_.Get(); } - - private: - void SharedCtor(::google::protobuf::Arena* arena); - void SharedDtor(); - void InternalSwap(DeleteTableRequest* other); - private: - friend class ::google::protobuf::internal::AnyMetadata; - 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); - 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, - }; - // .io.deephaven.proto.backplane.grpc.Ticket input_table = 1; - bool has_input_table() const; - void clear_input_table() ; - const ::io::deephaven::proto::backplane::grpc::Ticket& input_table() const; - PROTOBUF_NODISCARD ::io::deephaven::proto::backplane::grpc::Ticket* release_input_table(); - ::io::deephaven::proto::backplane::grpc::Ticket* mutable_input_table(); - void set_allocated_input_table(::io::deephaven::proto::backplane::grpc::Ticket* value); - void unsafe_arena_set_allocated_input_table(::io::deephaven::proto::backplane::grpc::Ticket* value); - ::io::deephaven::proto::backplane::grpc::Ticket* unsafe_arena_release_input_table(); - - private: - const ::io::deephaven::proto::backplane::grpc::Ticket& _internal_input_table() const; - ::io::deephaven::proto::backplane::grpc::Ticket* _internal_mutable_input_table(); - - public: - // .io.deephaven.proto.backplane.grpc.Ticket table_to_remove = 2; - bool has_table_to_remove() const; - void clear_table_to_remove() ; - const ::io::deephaven::proto::backplane::grpc::Ticket& table_to_remove() const; - PROTOBUF_NODISCARD ::io::deephaven::proto::backplane::grpc::Ticket* release_table_to_remove(); - ::io::deephaven::proto::backplane::grpc::Ticket* mutable_table_to_remove(); - void set_allocated_table_to_remove(::io::deephaven::proto::backplane::grpc::Ticket* value); - void unsafe_arena_set_allocated_table_to_remove(::io::deephaven::proto::backplane::grpc::Ticket* value); - ::io::deephaven::proto::backplane::grpc::Ticket* unsafe_arena_release_table_to_remove(); - - private: - const ::io::deephaven::proto::backplane::grpc::Ticket& _internal_table_to_remove() const; - ::io::deephaven::proto::backplane::grpc::Ticket* _internal_mutable_table_to_remove(); - - public: - // @@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 - 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 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_; - ::io::deephaven::proto::backplane::grpc::Ticket* table_to_remove_; - PROTOBUF_TSAN_DECLARE_MEMBER - }; - 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) */ { - public: - inline AddTableRequest() : AddTableRequest(nullptr) {} - ~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; - } - inline AddTableRequest& operator=(AddTableRequest&& 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 AddTableRequest& default_instance() { - return *internal_default_instance(); - } - 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); } - 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 - if (GetArena() == other->GetArena()) { -#endif // !PROTOBUF_FORCE_COPY_IN_SWAP - InternalSwap(other); - } else { - ::google::protobuf::internal::GenericSwap(this, other); - } - } - void UnsafeArenaSwap(AddTableRequest* other) { - if (other == this) return; - ABSL_DCHECK(GetArena() == other->GetArena()); - InternalSwap(other); - } - - // implements Message ---------------------------------------------- - - 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); } - - private: - static void MergeImpl( - ::google::protobuf::MessageLite& to_msg, - const ::google::protobuf::MessageLite& from_msg); - - 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; - #endif // PROTOBUF_CUSTOM_VTABLE - int GetCachedSize() const { return _impl_._cached_size_.Get(); } - - private: - void SharedCtor(::google::protobuf::Arena* arena); - void SharedDtor(); - void InternalSwap(AddTableRequest* other); - private: - friend class ::google::protobuf::internal::AnyMetadata; - 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); - 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, - }; - // .io.deephaven.proto.backplane.grpc.Ticket input_table = 1; - bool has_input_table() const; - void clear_input_table() ; - const ::io::deephaven::proto::backplane::grpc::Ticket& input_table() const; - PROTOBUF_NODISCARD ::io::deephaven::proto::backplane::grpc::Ticket* release_input_table(); - ::io::deephaven::proto::backplane::grpc::Ticket* mutable_input_table(); - void set_allocated_input_table(::io::deephaven::proto::backplane::grpc::Ticket* value); - void unsafe_arena_set_allocated_input_table(::io::deephaven::proto::backplane::grpc::Ticket* value); - ::io::deephaven::proto::backplane::grpc::Ticket* unsafe_arena_release_input_table(); - - private: - const ::io::deephaven::proto::backplane::grpc::Ticket& _internal_input_table() const; - ::io::deephaven::proto::backplane::grpc::Ticket* _internal_mutable_input_table(); - - public: - // .io.deephaven.proto.backplane.grpc.Ticket table_to_add = 2; - bool has_table_to_add() const; - void clear_table_to_add() ; - const ::io::deephaven::proto::backplane::grpc::Ticket& table_to_add() const; - PROTOBUF_NODISCARD ::io::deephaven::proto::backplane::grpc::Ticket* release_table_to_add(); - ::io::deephaven::proto::backplane::grpc::Ticket* mutable_table_to_add(); - void set_allocated_table_to_add(::io::deephaven::proto::backplane::grpc::Ticket* value); - void unsafe_arena_set_allocated_table_to_add(::io::deephaven::proto::backplane::grpc::Ticket* value); - ::io::deephaven::proto::backplane::grpc::Ticket* unsafe_arena_release_table_to_add(); - - private: - const ::io::deephaven::proto::backplane::grpc::Ticket& _internal_table_to_add() const; - ::io::deephaven::proto::backplane::grpc::Ticket* _internal_mutable_table_to_add(); - - public: - // @@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 - 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 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_; - ::io::deephaven::proto::backplane::grpc::Ticket* table_to_add_; - PROTOBUF_TSAN_DECLARE_MEMBER - }; - union { Impl_ _impl_; }; - friend struct ::TableStruct_deephaven_2fproto_2finputtable_2eproto; -}; - -// =================================================================== - - - - -// =================================================================== - - -#ifdef __GNUC__ -#pragma GCC diagnostic push -#pragma GCC diagnostic ignored "-Wstrict-aliasing" -#endif // __GNUC__ -// ------------------------------------------------------------------- - -// AddTableRequest - -// .io.deephaven.proto.backplane.grpc.Ticket input_table = 1; -inline bool AddTableRequest::has_input_table() const { - bool value = (_impl_._has_bits_[0] & 0x00000001u) != 0; - PROTOBUF_ASSUME(!value || _impl_.input_table_ != nullptr); - return value; -} -inline const ::io::deephaven::proto::backplane::grpc::Ticket& AddTableRequest::_internal_input_table() const { - ::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_); -} -inline const ::io::deephaven::proto::backplane::grpc::Ticket& AddTableRequest::input_table() const ABSL_ATTRIBUTE_LIFETIME_BOUND { - // @@protoc_insertion_point(field_get:io.deephaven.proto.backplane.grpc.AddTableRequest.input_table) - return _internal_input_table(); -} -inline void AddTableRequest::unsafe_arena_set_allocated_input_table(::io::deephaven::proto::backplane::grpc::Ticket* value) { - ::google::protobuf::internal::TSanWrite(&_impl_); - if (GetArena() == nullptr) { - delete reinterpret_cast<::google::protobuf::MessageLite*>(_impl_.input_table_); - } - _impl_.input_table_ = reinterpret_cast<::io::deephaven::proto::backplane::grpc::Ticket*>(value); - if (value != nullptr) { - _impl_._has_bits_[0] |= 0x00000001u; - } else { - _impl_._has_bits_[0] &= ~0x00000001u; - } - // @@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() { - ::google::protobuf::internal::TSanWrite(&_impl_); - - _impl_._has_bits_[0] &= ~0x00000001u; - ::io::deephaven::proto::backplane::grpc::Ticket* released = _impl_.input_table_; - _impl_.input_table_ = nullptr; -#ifdef PROTOBUF_FORCE_COPY_IN_RELEASE - auto* old = reinterpret_cast<::google::protobuf::MessageLite*>(released); - released = ::google::protobuf::internal::DuplicateIfNonNull(released); - if (GetArena() == nullptr) { - delete old; - } -#else // PROTOBUF_FORCE_COPY_IN_RELEASE - if (GetArena() != nullptr) { - released = ::google::protobuf::internal::DuplicateIfNonNull(released); - } -#endif // !PROTOBUF_FORCE_COPY_IN_RELEASE - return released; -} -inline ::io::deephaven::proto::backplane::grpc::Ticket* AddTableRequest::unsafe_arena_release_input_table() { - ::google::protobuf::internal::TSanWrite(&_impl_); - // @@protoc_insertion_point(field_release:io.deephaven.proto.backplane.grpc.AddTableRequest.input_table) - - _impl_._has_bits_[0] &= ~0x00000001u; - ::io::deephaven::proto::backplane::grpc::Ticket* temp = _impl_.input_table_; - _impl_.input_table_ = nullptr; - return temp; -} -inline ::io::deephaven::proto::backplane::grpc::Ticket* AddTableRequest::_internal_mutable_input_table() { - ::google::protobuf::internal::TSanWrite(&_impl_); - if (_impl_.input_table_ == nullptr) { - 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(); - ::google::protobuf::internal::TSanWrite(&_impl_); - if (message_arena == nullptr) { - delete reinterpret_cast<::google::protobuf::MessageLite*>(_impl_.input_table_); - } - - if (value != nullptr) { - ::google::protobuf::Arena* submessage_arena = reinterpret_cast<::google::protobuf::MessageLite*>(value)->GetArena(); - if (message_arena != submessage_arena) { - value = ::google::protobuf::internal::GetOwnedMessage(message_arena, value, submessage_arena); - } - _impl_._has_bits_[0] |= 0x00000001u; - } else { - _impl_._has_bits_[0] &= ~0x00000001u; - } - - _impl_.input_table_ = reinterpret_cast<::io::deephaven::proto::backplane::grpc::Ticket*>(value); - // @@protoc_insertion_point(field_set_allocated:io.deephaven.proto.backplane.grpc.AddTableRequest.input_table) -} - -// .io.deephaven.proto.backplane.grpc.Ticket table_to_add = 2; -inline bool AddTableRequest::has_table_to_add() const { - bool value = (_impl_._has_bits_[0] & 0x00000002u) != 0; - PROTOBUF_ASSUME(!value || _impl_.table_to_add_ != nullptr); - return value; -} -inline const ::io::deephaven::proto::backplane::grpc::Ticket& AddTableRequest::_internal_table_to_add() const { - ::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_); -} -inline const ::io::deephaven::proto::backplane::grpc::Ticket& AddTableRequest::table_to_add() const ABSL_ATTRIBUTE_LIFETIME_BOUND { - // @@protoc_insertion_point(field_get:io.deephaven.proto.backplane.grpc.AddTableRequest.table_to_add) - return _internal_table_to_add(); -} -inline void AddTableRequest::unsafe_arena_set_allocated_table_to_add(::io::deephaven::proto::backplane::grpc::Ticket* value) { - ::google::protobuf::internal::TSanWrite(&_impl_); - if (GetArena() == nullptr) { - delete reinterpret_cast<::google::protobuf::MessageLite*>(_impl_.table_to_add_); - } - _impl_.table_to_add_ = reinterpret_cast<::io::deephaven::proto::backplane::grpc::Ticket*>(value); - if (value != nullptr) { - _impl_._has_bits_[0] |= 0x00000002u; - } else { - _impl_._has_bits_[0] &= ~0x00000002u; - } - // @@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() { - ::google::protobuf::internal::TSanWrite(&_impl_); - - _impl_._has_bits_[0] &= ~0x00000002u; - ::io::deephaven::proto::backplane::grpc::Ticket* released = _impl_.table_to_add_; - _impl_.table_to_add_ = nullptr; -#ifdef PROTOBUF_FORCE_COPY_IN_RELEASE - auto* old = reinterpret_cast<::google::protobuf::MessageLite*>(released); - released = ::google::protobuf::internal::DuplicateIfNonNull(released); - if (GetArena() == nullptr) { - delete old; - } -#else // PROTOBUF_FORCE_COPY_IN_RELEASE - if (GetArena() != nullptr) { - released = ::google::protobuf::internal::DuplicateIfNonNull(released); - } -#endif // !PROTOBUF_FORCE_COPY_IN_RELEASE - return released; -} -inline ::io::deephaven::proto::backplane::grpc::Ticket* AddTableRequest::unsafe_arena_release_table_to_add() { - ::google::protobuf::internal::TSanWrite(&_impl_); - // @@protoc_insertion_point(field_release:io.deephaven.proto.backplane.grpc.AddTableRequest.table_to_add) - - _impl_._has_bits_[0] &= ~0x00000002u; - ::io::deephaven::proto::backplane::grpc::Ticket* temp = _impl_.table_to_add_; - _impl_.table_to_add_ = nullptr; - return temp; -} -inline ::io::deephaven::proto::backplane::grpc::Ticket* AddTableRequest::_internal_mutable_table_to_add() { - ::google::protobuf::internal::TSanWrite(&_impl_); - if (_impl_.table_to_add_ == nullptr) { - 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(); - ::google::protobuf::internal::TSanWrite(&_impl_); - if (message_arena == nullptr) { - delete reinterpret_cast<::google::protobuf::MessageLite*>(_impl_.table_to_add_); - } - - if (value != nullptr) { - ::google::protobuf::Arena* submessage_arena = reinterpret_cast<::google::protobuf::MessageLite*>(value)->GetArena(); - if (message_arena != submessage_arena) { - value = ::google::protobuf::internal::GetOwnedMessage(message_arena, value, submessage_arena); - } - _impl_._has_bits_[0] |= 0x00000002u; - } else { - _impl_._has_bits_[0] &= ~0x00000002u; - } - - _impl_.table_to_add_ = reinterpret_cast<::io::deephaven::proto::backplane::grpc::Ticket*>(value); - // @@protoc_insertion_point(field_set_allocated:io.deephaven.proto.backplane.grpc.AddTableRequest.table_to_add) -} - -// ------------------------------------------------------------------- - -// AddTableResponse - -// ------------------------------------------------------------------- - -// DeleteTableRequest - -// .io.deephaven.proto.backplane.grpc.Ticket input_table = 1; -inline bool DeleteTableRequest::has_input_table() const { - bool value = (_impl_._has_bits_[0] & 0x00000001u) != 0; - PROTOBUF_ASSUME(!value || _impl_.input_table_ != nullptr); - return value; -} -inline const ::io::deephaven::proto::backplane::grpc::Ticket& DeleteTableRequest::_internal_input_table() const { - ::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_); -} -inline const ::io::deephaven::proto::backplane::grpc::Ticket& DeleteTableRequest::input_table() const ABSL_ATTRIBUTE_LIFETIME_BOUND { - // @@protoc_insertion_point(field_get:io.deephaven.proto.backplane.grpc.DeleteTableRequest.input_table) - return _internal_input_table(); -} -inline void DeleteTableRequest::unsafe_arena_set_allocated_input_table(::io::deephaven::proto::backplane::grpc::Ticket* value) { - ::google::protobuf::internal::TSanWrite(&_impl_); - if (GetArena() == nullptr) { - delete reinterpret_cast<::google::protobuf::MessageLite*>(_impl_.input_table_); - } - _impl_.input_table_ = reinterpret_cast<::io::deephaven::proto::backplane::grpc::Ticket*>(value); - if (value != nullptr) { - _impl_._has_bits_[0] |= 0x00000001u; - } else { - _impl_._has_bits_[0] &= ~0x00000001u; - } - // @@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() { - ::google::protobuf::internal::TSanWrite(&_impl_); - - _impl_._has_bits_[0] &= ~0x00000001u; - ::io::deephaven::proto::backplane::grpc::Ticket* released = _impl_.input_table_; - _impl_.input_table_ = nullptr; -#ifdef PROTOBUF_FORCE_COPY_IN_RELEASE - auto* old = reinterpret_cast<::google::protobuf::MessageLite*>(released); - released = ::google::protobuf::internal::DuplicateIfNonNull(released); - if (GetArena() == nullptr) { - delete old; - } -#else // PROTOBUF_FORCE_COPY_IN_RELEASE - if (GetArena() != nullptr) { - released = ::google::protobuf::internal::DuplicateIfNonNull(released); - } -#endif // !PROTOBUF_FORCE_COPY_IN_RELEASE - return released; -} -inline ::io::deephaven::proto::backplane::grpc::Ticket* DeleteTableRequest::unsafe_arena_release_input_table() { - ::google::protobuf::internal::TSanWrite(&_impl_); - // @@protoc_insertion_point(field_release:io.deephaven.proto.backplane.grpc.DeleteTableRequest.input_table) - - _impl_._has_bits_[0] &= ~0x00000001u; - ::io::deephaven::proto::backplane::grpc::Ticket* temp = _impl_.input_table_; - _impl_.input_table_ = nullptr; - return temp; -} -inline ::io::deephaven::proto::backplane::grpc::Ticket* DeleteTableRequest::_internal_mutable_input_table() { - ::google::protobuf::internal::TSanWrite(&_impl_); - if (_impl_.input_table_ == nullptr) { - 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(); - ::google::protobuf::internal::TSanWrite(&_impl_); - if (message_arena == nullptr) { - delete reinterpret_cast<::google::protobuf::MessageLite*>(_impl_.input_table_); - } - - if (value != nullptr) { - ::google::protobuf::Arena* submessage_arena = reinterpret_cast<::google::protobuf::MessageLite*>(value)->GetArena(); - if (message_arena != submessage_arena) { - value = ::google::protobuf::internal::GetOwnedMessage(message_arena, value, submessage_arena); - } - _impl_._has_bits_[0] |= 0x00000001u; - } else { - _impl_._has_bits_[0] &= ~0x00000001u; - } - - _impl_.input_table_ = reinterpret_cast<::io::deephaven::proto::backplane::grpc::Ticket*>(value); - // @@protoc_insertion_point(field_set_allocated:io.deephaven.proto.backplane.grpc.DeleteTableRequest.input_table) -} - -// .io.deephaven.proto.backplane.grpc.Ticket table_to_remove = 2; -inline bool DeleteTableRequest::has_table_to_remove() const { - bool value = (_impl_._has_bits_[0] & 0x00000002u) != 0; - PROTOBUF_ASSUME(!value || _impl_.table_to_remove_ != nullptr); - return value; -} -inline const ::io::deephaven::proto::backplane::grpc::Ticket& DeleteTableRequest::_internal_table_to_remove() const { - ::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_); -} -inline const ::io::deephaven::proto::backplane::grpc::Ticket& DeleteTableRequest::table_to_remove() const ABSL_ATTRIBUTE_LIFETIME_BOUND { - // @@protoc_insertion_point(field_get:io.deephaven.proto.backplane.grpc.DeleteTableRequest.table_to_remove) - return _internal_table_to_remove(); -} -inline void DeleteTableRequest::unsafe_arena_set_allocated_table_to_remove(::io::deephaven::proto::backplane::grpc::Ticket* value) { - ::google::protobuf::internal::TSanWrite(&_impl_); - if (GetArena() == nullptr) { - delete reinterpret_cast<::google::protobuf::MessageLite*>(_impl_.table_to_remove_); - } - _impl_.table_to_remove_ = reinterpret_cast<::io::deephaven::proto::backplane::grpc::Ticket*>(value); - if (value != nullptr) { - _impl_._has_bits_[0] |= 0x00000002u; - } else { - _impl_._has_bits_[0] &= ~0x00000002u; - } - // @@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() { - ::google::protobuf::internal::TSanWrite(&_impl_); - - _impl_._has_bits_[0] &= ~0x00000002u; - ::io::deephaven::proto::backplane::grpc::Ticket* released = _impl_.table_to_remove_; - _impl_.table_to_remove_ = nullptr; -#ifdef PROTOBUF_FORCE_COPY_IN_RELEASE - auto* old = reinterpret_cast<::google::protobuf::MessageLite*>(released); - released = ::google::protobuf::internal::DuplicateIfNonNull(released); - if (GetArena() == nullptr) { - delete old; - } -#else // PROTOBUF_FORCE_COPY_IN_RELEASE - if (GetArena() != nullptr) { - released = ::google::protobuf::internal::DuplicateIfNonNull(released); - } -#endif // !PROTOBUF_FORCE_COPY_IN_RELEASE - return released; -} -inline ::io::deephaven::proto::backplane::grpc::Ticket* DeleteTableRequest::unsafe_arena_release_table_to_remove() { - ::google::protobuf::internal::TSanWrite(&_impl_); - // @@protoc_insertion_point(field_release:io.deephaven.proto.backplane.grpc.DeleteTableRequest.table_to_remove) - - _impl_._has_bits_[0] &= ~0x00000002u; - ::io::deephaven::proto::backplane::grpc::Ticket* temp = _impl_.table_to_remove_; - _impl_.table_to_remove_ = nullptr; - return temp; -} -inline ::io::deephaven::proto::backplane::grpc::Ticket* DeleteTableRequest::_internal_mutable_table_to_remove() { - ::google::protobuf::internal::TSanWrite(&_impl_); - if (_impl_.table_to_remove_ == nullptr) { - 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(); - ::google::protobuf::internal::TSanWrite(&_impl_); - if (message_arena == nullptr) { - delete reinterpret_cast<::google::protobuf::MessageLite*>(_impl_.table_to_remove_); - } - - if (value != nullptr) { - ::google::protobuf::Arena* submessage_arena = reinterpret_cast<::google::protobuf::MessageLite*>(value)->GetArena(); - if (message_arena != submessage_arena) { - value = ::google::protobuf::internal::GetOwnedMessage(message_arena, value, submessage_arena); - } - _impl_._has_bits_[0] |= 0x00000002u; - } else { - _impl_._has_bits_[0] &= ~0x00000002u; - } - - _impl_.table_to_remove_ = reinterpret_cast<::io::deephaven::proto::backplane::grpc::Ticket*>(value); - // @@protoc_insertion_point(field_set_allocated:io.deephaven.proto.backplane.grpc.DeleteTableRequest.table_to_remove) -} - -// ------------------------------------------------------------------- - -// DeleteTableResponse - -#ifdef __GNUC__ -#pragma GCC diagnostic pop -#endif // __GNUC__ - -// @@protoc_insertion_point(namespace_scope) -} // namespace grpc -} // namespace backplane -} // namespace proto -} // namespace deephaven -} // namespace io - - -// @@protoc_insertion_point(global_scope) - -#include "google/protobuf/port_undef.inc" - -#endif // GOOGLE_PROTOBUF_INCLUDED_deephaven_2fproto_2finputtable_2eproto_2epb_2eh diff --git a/cpp-client/deephaven/dhclient/proto/deephaven/proto/object.grpc.pb.cc b/cpp-client/deephaven/dhclient/proto/deephaven/proto/object.grpc.pb.cc deleted file mode 100644 index 8f72aabe983..00000000000 --- a/cpp-client/deephaven/dhclient/proto/deephaven/proto/object.grpc.pb.cc +++ /dev/null @@ -1,205 +0,0 @@ -// Generated by the gRPC C++ plugin. -// If you make any local change, they will be lost. -// source: deephaven/proto/object.proto - -#include "deephaven/proto/object.pb.h" -#include "deephaven/proto/object.grpc.pb.h" - -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -namespace io { -namespace deephaven { -namespace proto { -namespace backplane { -namespace grpc { - -static const char* ObjectService_method_names[] = { - "/io.deephaven.proto.backplane.grpc.ObjectService/FetchObject", - "/io.deephaven.proto.backplane.grpc.ObjectService/MessageStream", - "/io.deephaven.proto.backplane.grpc.ObjectService/OpenMessageStream", - "/io.deephaven.proto.backplane.grpc.ObjectService/NextMessageStream", -}; - -std::unique_ptr< ObjectService::Stub> ObjectService::NewStub(const std::shared_ptr< ::grpc::ChannelInterface>& channel, const ::grpc::StubOptions& options) { - (void)options; - std::unique_ptr< ObjectService::Stub> stub(new ObjectService::Stub(channel, options)); - return stub; -} - -ObjectService::Stub::Stub(const std::shared_ptr< ::grpc::ChannelInterface>& channel, const ::grpc::StubOptions& options) - : channel_(channel), rpcmethod_FetchObject_(ObjectService_method_names[0], options.suffix_for_stats(),::grpc::internal::RpcMethod::NORMAL_RPC, channel) - , rpcmethod_MessageStream_(ObjectService_method_names[1], options.suffix_for_stats(),::grpc::internal::RpcMethod::BIDI_STREAMING, channel) - , rpcmethod_OpenMessageStream_(ObjectService_method_names[2], options.suffix_for_stats(),::grpc::internal::RpcMethod::SERVER_STREAMING, channel) - , rpcmethod_NextMessageStream_(ObjectService_method_names[3], options.suffix_for_stats(),::grpc::internal::RpcMethod::NORMAL_RPC, channel) - {} - -::grpc::Status ObjectService::Stub::FetchObject(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::FetchObjectRequest& request, ::io::deephaven::proto::backplane::grpc::FetchObjectResponse* response) { - return ::grpc::internal::BlockingUnaryCall< ::io::deephaven::proto::backplane::grpc::FetchObjectRequest, ::io::deephaven::proto::backplane::grpc::FetchObjectResponse, ::grpc::protobuf::MessageLite, ::grpc::protobuf::MessageLite>(channel_.get(), rpcmethod_FetchObject_, context, request, response); -} - -void ObjectService::Stub::async::FetchObject(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::FetchObjectRequest* request, ::io::deephaven::proto::backplane::grpc::FetchObjectResponse* response, std::function f) { - ::grpc::internal::CallbackUnaryCall< ::io::deephaven::proto::backplane::grpc::FetchObjectRequest, ::io::deephaven::proto::backplane::grpc::FetchObjectResponse, ::grpc::protobuf::MessageLite, ::grpc::protobuf::MessageLite>(stub_->channel_.get(), stub_->rpcmethod_FetchObject_, context, request, response, std::move(f)); -} - -void ObjectService::Stub::async::FetchObject(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::FetchObjectRequest* request, ::io::deephaven::proto::backplane::grpc::FetchObjectResponse* response, ::grpc::ClientUnaryReactor* reactor) { - ::grpc::internal::ClientCallbackUnaryFactory::Create< ::grpc::protobuf::MessageLite, ::grpc::protobuf::MessageLite>(stub_->channel_.get(), stub_->rpcmethod_FetchObject_, context, request, response, reactor); -} - -::grpc::ClientAsyncResponseReader< ::io::deephaven::proto::backplane::grpc::FetchObjectResponse>* ObjectService::Stub::PrepareAsyncFetchObjectRaw(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::FetchObjectRequest& request, ::grpc::CompletionQueue* cq) { - return ::grpc::internal::ClientAsyncResponseReaderHelper::Create< ::io::deephaven::proto::backplane::grpc::FetchObjectResponse, ::io::deephaven::proto::backplane::grpc::FetchObjectRequest, ::grpc::protobuf::MessageLite, ::grpc::protobuf::MessageLite>(channel_.get(), cq, rpcmethod_FetchObject_, context, request); -} - -::grpc::ClientAsyncResponseReader< ::io::deephaven::proto::backplane::grpc::FetchObjectResponse>* ObjectService::Stub::AsyncFetchObjectRaw(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::FetchObjectRequest& request, ::grpc::CompletionQueue* cq) { - auto* result = - this->PrepareAsyncFetchObjectRaw(context, request, cq); - result->StartCall(); - return result; -} - -::grpc::ClientReaderWriter< ::io::deephaven::proto::backplane::grpc::StreamRequest, ::io::deephaven::proto::backplane::grpc::StreamResponse>* ObjectService::Stub::MessageStreamRaw(::grpc::ClientContext* context) { - return ::grpc::internal::ClientReaderWriterFactory< ::io::deephaven::proto::backplane::grpc::StreamRequest, ::io::deephaven::proto::backplane::grpc::StreamResponse>::Create(channel_.get(), rpcmethod_MessageStream_, context); -} - -void ObjectService::Stub::async::MessageStream(::grpc::ClientContext* context, ::grpc::ClientBidiReactor< ::io::deephaven::proto::backplane::grpc::StreamRequest,::io::deephaven::proto::backplane::grpc::StreamResponse>* reactor) { - ::grpc::internal::ClientCallbackReaderWriterFactory< ::io::deephaven::proto::backplane::grpc::StreamRequest,::io::deephaven::proto::backplane::grpc::StreamResponse>::Create(stub_->channel_.get(), stub_->rpcmethod_MessageStream_, context, reactor); -} - -::grpc::ClientAsyncReaderWriter< ::io::deephaven::proto::backplane::grpc::StreamRequest, ::io::deephaven::proto::backplane::grpc::StreamResponse>* ObjectService::Stub::AsyncMessageStreamRaw(::grpc::ClientContext* context, ::grpc::CompletionQueue* cq, void* tag) { - return ::grpc::internal::ClientAsyncReaderWriterFactory< ::io::deephaven::proto::backplane::grpc::StreamRequest, ::io::deephaven::proto::backplane::grpc::StreamResponse>::Create(channel_.get(), cq, rpcmethod_MessageStream_, context, true, tag); -} - -::grpc::ClientAsyncReaderWriter< ::io::deephaven::proto::backplane::grpc::StreamRequest, ::io::deephaven::proto::backplane::grpc::StreamResponse>* ObjectService::Stub::PrepareAsyncMessageStreamRaw(::grpc::ClientContext* context, ::grpc::CompletionQueue* cq) { - return ::grpc::internal::ClientAsyncReaderWriterFactory< ::io::deephaven::proto::backplane::grpc::StreamRequest, ::io::deephaven::proto::backplane::grpc::StreamResponse>::Create(channel_.get(), cq, rpcmethod_MessageStream_, context, false, nullptr); -} - -::grpc::ClientReader< ::io::deephaven::proto::backplane::grpc::StreamResponse>* ObjectService::Stub::OpenMessageStreamRaw(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::StreamRequest& request) { - return ::grpc::internal::ClientReaderFactory< ::io::deephaven::proto::backplane::grpc::StreamResponse>::Create(channel_.get(), rpcmethod_OpenMessageStream_, context, request); -} - -void ObjectService::Stub::async::OpenMessageStream(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::StreamRequest* request, ::grpc::ClientReadReactor< ::io::deephaven::proto::backplane::grpc::StreamResponse>* reactor) { - ::grpc::internal::ClientCallbackReaderFactory< ::io::deephaven::proto::backplane::grpc::StreamResponse>::Create(stub_->channel_.get(), stub_->rpcmethod_OpenMessageStream_, context, request, reactor); -} - -::grpc::ClientAsyncReader< ::io::deephaven::proto::backplane::grpc::StreamResponse>* ObjectService::Stub::AsyncOpenMessageStreamRaw(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::StreamRequest& request, ::grpc::CompletionQueue* cq, void* tag) { - return ::grpc::internal::ClientAsyncReaderFactory< ::io::deephaven::proto::backplane::grpc::StreamResponse>::Create(channel_.get(), cq, rpcmethod_OpenMessageStream_, context, request, true, tag); -} - -::grpc::ClientAsyncReader< ::io::deephaven::proto::backplane::grpc::StreamResponse>* ObjectService::Stub::PrepareAsyncOpenMessageStreamRaw(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::StreamRequest& request, ::grpc::CompletionQueue* cq) { - return ::grpc::internal::ClientAsyncReaderFactory< ::io::deephaven::proto::backplane::grpc::StreamResponse>::Create(channel_.get(), cq, rpcmethod_OpenMessageStream_, context, request, false, nullptr); -} - -::grpc::Status ObjectService::Stub::NextMessageStream(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::StreamRequest& request, ::io::deephaven::proto::backplane::grpc::BrowserNextResponse* response) { - return ::grpc::internal::BlockingUnaryCall< ::io::deephaven::proto::backplane::grpc::StreamRequest, ::io::deephaven::proto::backplane::grpc::BrowserNextResponse, ::grpc::protobuf::MessageLite, ::grpc::protobuf::MessageLite>(channel_.get(), rpcmethod_NextMessageStream_, context, request, response); -} - -void ObjectService::Stub::async::NextMessageStream(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::StreamRequest* request, ::io::deephaven::proto::backplane::grpc::BrowserNextResponse* response, std::function f) { - ::grpc::internal::CallbackUnaryCall< ::io::deephaven::proto::backplane::grpc::StreamRequest, ::io::deephaven::proto::backplane::grpc::BrowserNextResponse, ::grpc::protobuf::MessageLite, ::grpc::protobuf::MessageLite>(stub_->channel_.get(), stub_->rpcmethod_NextMessageStream_, context, request, response, std::move(f)); -} - -void ObjectService::Stub::async::NextMessageStream(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::StreamRequest* request, ::io::deephaven::proto::backplane::grpc::BrowserNextResponse* response, ::grpc::ClientUnaryReactor* reactor) { - ::grpc::internal::ClientCallbackUnaryFactory::Create< ::grpc::protobuf::MessageLite, ::grpc::protobuf::MessageLite>(stub_->channel_.get(), stub_->rpcmethod_NextMessageStream_, context, request, response, reactor); -} - -::grpc::ClientAsyncResponseReader< ::io::deephaven::proto::backplane::grpc::BrowserNextResponse>* ObjectService::Stub::PrepareAsyncNextMessageStreamRaw(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::StreamRequest& request, ::grpc::CompletionQueue* cq) { - return ::grpc::internal::ClientAsyncResponseReaderHelper::Create< ::io::deephaven::proto::backplane::grpc::BrowserNextResponse, ::io::deephaven::proto::backplane::grpc::StreamRequest, ::grpc::protobuf::MessageLite, ::grpc::protobuf::MessageLite>(channel_.get(), cq, rpcmethod_NextMessageStream_, context, request); -} - -::grpc::ClientAsyncResponseReader< ::io::deephaven::proto::backplane::grpc::BrowserNextResponse>* ObjectService::Stub::AsyncNextMessageStreamRaw(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::StreamRequest& request, ::grpc::CompletionQueue* cq) { - auto* result = - this->PrepareAsyncNextMessageStreamRaw(context, request, cq); - result->StartCall(); - return result; -} - -ObjectService::Service::Service() { - AddMethod(new ::grpc::internal::RpcServiceMethod( - ObjectService_method_names[0], - ::grpc::internal::RpcMethod::NORMAL_RPC, - new ::grpc::internal::RpcMethodHandler< ObjectService::Service, ::io::deephaven::proto::backplane::grpc::FetchObjectRequest, ::io::deephaven::proto::backplane::grpc::FetchObjectResponse, ::grpc::protobuf::MessageLite, ::grpc::protobuf::MessageLite>( - [](ObjectService::Service* service, - ::grpc::ServerContext* ctx, - const ::io::deephaven::proto::backplane::grpc::FetchObjectRequest* req, - ::io::deephaven::proto::backplane::grpc::FetchObjectResponse* resp) { - return service->FetchObject(ctx, req, resp); - }, this))); - AddMethod(new ::grpc::internal::RpcServiceMethod( - ObjectService_method_names[1], - ::grpc::internal::RpcMethod::BIDI_STREAMING, - new ::grpc::internal::BidiStreamingHandler< ObjectService::Service, ::io::deephaven::proto::backplane::grpc::StreamRequest, ::io::deephaven::proto::backplane::grpc::StreamResponse>( - [](ObjectService::Service* service, - ::grpc::ServerContext* ctx, - ::grpc::ServerReaderWriter<::io::deephaven::proto::backplane::grpc::StreamResponse, - ::io::deephaven::proto::backplane::grpc::StreamRequest>* stream) { - return service->MessageStream(ctx, stream); - }, this))); - AddMethod(new ::grpc::internal::RpcServiceMethod( - ObjectService_method_names[2], - ::grpc::internal::RpcMethod::SERVER_STREAMING, - new ::grpc::internal::ServerStreamingHandler< ObjectService::Service, ::io::deephaven::proto::backplane::grpc::StreamRequest, ::io::deephaven::proto::backplane::grpc::StreamResponse>( - [](ObjectService::Service* service, - ::grpc::ServerContext* ctx, - const ::io::deephaven::proto::backplane::grpc::StreamRequest* req, - ::grpc::ServerWriter<::io::deephaven::proto::backplane::grpc::StreamResponse>* writer) { - return service->OpenMessageStream(ctx, req, writer); - }, this))); - AddMethod(new ::grpc::internal::RpcServiceMethod( - ObjectService_method_names[3], - ::grpc::internal::RpcMethod::NORMAL_RPC, - new ::grpc::internal::RpcMethodHandler< ObjectService::Service, ::io::deephaven::proto::backplane::grpc::StreamRequest, ::io::deephaven::proto::backplane::grpc::BrowserNextResponse, ::grpc::protobuf::MessageLite, ::grpc::protobuf::MessageLite>( - [](ObjectService::Service* service, - ::grpc::ServerContext* ctx, - const ::io::deephaven::proto::backplane::grpc::StreamRequest* req, - ::io::deephaven::proto::backplane::grpc::BrowserNextResponse* resp) { - return service->NextMessageStream(ctx, req, resp); - }, this))); -} - -ObjectService::Service::~Service() { -} - -::grpc::Status ObjectService::Service::FetchObject(::grpc::ServerContext* context, const ::io::deephaven::proto::backplane::grpc::FetchObjectRequest* request, ::io::deephaven::proto::backplane::grpc::FetchObjectResponse* response) { - (void) context; - (void) request; - (void) response; - return ::grpc::Status(::grpc::StatusCode::UNIMPLEMENTED, ""); -} - -::grpc::Status ObjectService::Service::MessageStream(::grpc::ServerContext* context, ::grpc::ServerReaderWriter< ::io::deephaven::proto::backplane::grpc::StreamResponse, ::io::deephaven::proto::backplane::grpc::StreamRequest>* stream) { - (void) context; - (void) stream; - return ::grpc::Status(::grpc::StatusCode::UNIMPLEMENTED, ""); -} - -::grpc::Status ObjectService::Service::OpenMessageStream(::grpc::ServerContext* context, const ::io::deephaven::proto::backplane::grpc::StreamRequest* request, ::grpc::ServerWriter< ::io::deephaven::proto::backplane::grpc::StreamResponse>* writer) { - (void) context; - (void) request; - (void) writer; - return ::grpc::Status(::grpc::StatusCode::UNIMPLEMENTED, ""); -} - -::grpc::Status ObjectService::Service::NextMessageStream(::grpc::ServerContext* context, const ::io::deephaven::proto::backplane::grpc::StreamRequest* request, ::io::deephaven::proto::backplane::grpc::BrowserNextResponse* response) { - (void) context; - (void) request; - (void) response; - return ::grpc::Status(::grpc::StatusCode::UNIMPLEMENTED, ""); -} - - -} // namespace io -} // namespace deephaven -} // namespace proto -} // namespace backplane -} // namespace grpc - diff --git a/cpp-client/deephaven/dhclient/proto/deephaven/proto/object.grpc.pb.h b/cpp-client/deephaven/dhclient/proto/deephaven/proto/object.grpc.pb.h deleted file mode 100644 index a6c7b2bbf60..00000000000 --- a/cpp-client/deephaven/dhclient/proto/deephaven/proto/object.grpc.pb.h +++ /dev/null @@ -1,848 +0,0 @@ -// Generated by the gRPC C++ plugin. -// If you make any local change, they will be lost. -// source: deephaven/proto/object.proto -// Original file comments: -// -// Copyright (c) 2016-2022 Deephaven Data Labs and Patent Pending -#ifndef GRPC_deephaven_2fproto_2fobject_2eproto__INCLUDED -#define GRPC_deephaven_2fproto_2fobject_2eproto__INCLUDED - -#include "deephaven/proto/object.pb.h" - -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include - -namespace io { -namespace deephaven { -namespace proto { -namespace backplane { -namespace grpc { - -class ObjectService final { - public: - static constexpr char const* service_full_name() { - return "io.deephaven.proto.backplane.grpc.ObjectService"; - } - class StubInterface { - public: - virtual ~StubInterface() {} - // - // Fetches a server-side object as a binary payload and assorted other tickets pointing at - // other server-side objects that may need to be read to properly use this payload. The binary - // format is implementation specific, but the implementation should be specified by the "type" - // identifier in the typed ticket. - // - // Deprecated in favor of MessageStream, which is able to handle the same content. - virtual ::grpc::Status FetchObject(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::FetchObjectRequest& request, ::io::deephaven::proto::backplane::grpc::FetchObjectResponse* response) = 0; - std::unique_ptr< ::grpc::ClientAsyncResponseReaderInterface< ::io::deephaven::proto::backplane::grpc::FetchObjectResponse>> AsyncFetchObject(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::FetchObjectRequest& request, ::grpc::CompletionQueue* cq) { - return std::unique_ptr< ::grpc::ClientAsyncResponseReaderInterface< ::io::deephaven::proto::backplane::grpc::FetchObjectResponse>>(AsyncFetchObjectRaw(context, request, cq)); - } - std::unique_ptr< ::grpc::ClientAsyncResponseReaderInterface< ::io::deephaven::proto::backplane::grpc::FetchObjectResponse>> PrepareAsyncFetchObject(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::FetchObjectRequest& request, ::grpc::CompletionQueue* cq) { - return std::unique_ptr< ::grpc::ClientAsyncResponseReaderInterface< ::io::deephaven::proto::backplane::grpc::FetchObjectResponse>>(PrepareAsyncFetchObjectRaw(context, request, cq)); - } - // - // Provides a generic stream feature for Deephaven instances to use to add arbitrary functionality. - // Presently these take the form of "object type plugins", where server-side code can specify how - // an object could be serialized and/or communicate with a client. This gRPC stream is somewhat lower level - // than the plugin API, giving the server and client APIs features to correctly establish and - // control the stream. At this time, this is limited to a "ConnectRequest" to start the call. - // - // The first message sent to the server is expected to have a ConnectRequest, indicating which - // export ticket to connect to. It is an error for the client to attempt to connect to an object - // that has no plugin for its object type installed. - // - // The first request sent by the client should be a ConnectRequest. No other client message should - // be sent until the server responds. The server will respond with Data as soon as it is able (i.e. - // once the object in question has been resolved and the plugin has responded), indicating that the - // request was successful. After that point, the client may send Data requests. - // - // All replies from the server to the client contain Data instances. When sent from the server to - // the client, Data contains a bytes payload created by the server implementation of the plugin, - // and server-created export tickets containing any object references specified to be sent by the - // server-side plugin. As server-created exports, they are already resolved, and can be fetched or - // otherwise referenced right away. The client API is expected to wrap those tickets in appropriate - // objects, and the client is expected to release those tickets as appropriate, according to the - // plugin's use case. Note that it is possible for the "type" field to be null, indicating that - // there is no corresponding ObjectType plugin for these exported objects. This limits the client - // to specifying those tickets in a subsequent request, or releasing the ticket to let the object - // be garbage collected on the server. - // - // All Data instances sent from the client likewise contain a bytes payload, and may contain - // references to objects that already exist or may soon exist on the server, not just tickets sent - // by this same plugin. Note however that if those tickets are not yet resolved, neither the current - // Data nor subsequent requests can be processed by the plugin, as the required references can't be - // resolved. - // - // Presently there is no explicit "close" message to send, but plugin implementations can devise - // their own "half-close" protocol if they so choose. For now, if one end closes the connection, - // the other is expected to follow suit by closing their end too. At present, if there is an error - // with the stream, it is conveyed to the client in the usual gRPC fashion, but the server plugin - // will only be informed that the stream closed. - // - std::unique_ptr< ::grpc::ClientReaderWriterInterface< ::io::deephaven::proto::backplane::grpc::StreamRequest, ::io::deephaven::proto::backplane::grpc::StreamResponse>> MessageStream(::grpc::ClientContext* context) { - return std::unique_ptr< ::grpc::ClientReaderWriterInterface< ::io::deephaven::proto::backplane::grpc::StreamRequest, ::io::deephaven::proto::backplane::grpc::StreamResponse>>(MessageStreamRaw(context)); - } - std::unique_ptr< ::grpc::ClientAsyncReaderWriterInterface< ::io::deephaven::proto::backplane::grpc::StreamRequest, ::io::deephaven::proto::backplane::grpc::StreamResponse>> AsyncMessageStream(::grpc::ClientContext* context, ::grpc::CompletionQueue* cq, void* tag) { - return std::unique_ptr< ::grpc::ClientAsyncReaderWriterInterface< ::io::deephaven::proto::backplane::grpc::StreamRequest, ::io::deephaven::proto::backplane::grpc::StreamResponse>>(AsyncMessageStreamRaw(context, cq, tag)); - } - std::unique_ptr< ::grpc::ClientAsyncReaderWriterInterface< ::io::deephaven::proto::backplane::grpc::StreamRequest, ::io::deephaven::proto::backplane::grpc::StreamResponse>> PrepareAsyncMessageStream(::grpc::ClientContext* context, ::grpc::CompletionQueue* cq) { - return std::unique_ptr< ::grpc::ClientAsyncReaderWriterInterface< ::io::deephaven::proto::backplane::grpc::StreamRequest, ::io::deephaven::proto::backplane::grpc::StreamResponse>>(PrepareAsyncMessageStreamRaw(context, cq)); - } - // - // Half of the browser-based (browser's can't do bidirectional streams without websockets) - // implementation for MessageStream. - std::unique_ptr< ::grpc::ClientReaderInterface< ::io::deephaven::proto::backplane::grpc::StreamResponse>> OpenMessageStream(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::StreamRequest& request) { - return std::unique_ptr< ::grpc::ClientReaderInterface< ::io::deephaven::proto::backplane::grpc::StreamResponse>>(OpenMessageStreamRaw(context, request)); - } - std::unique_ptr< ::grpc::ClientAsyncReaderInterface< ::io::deephaven::proto::backplane::grpc::StreamResponse>> AsyncOpenMessageStream(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::StreamRequest& request, ::grpc::CompletionQueue* cq, void* tag) { - return std::unique_ptr< ::grpc::ClientAsyncReaderInterface< ::io::deephaven::proto::backplane::grpc::StreamResponse>>(AsyncOpenMessageStreamRaw(context, request, cq, tag)); - } - std::unique_ptr< ::grpc::ClientAsyncReaderInterface< ::io::deephaven::proto::backplane::grpc::StreamResponse>> PrepareAsyncOpenMessageStream(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::StreamRequest& request, ::grpc::CompletionQueue* cq) { - return std::unique_ptr< ::grpc::ClientAsyncReaderInterface< ::io::deephaven::proto::backplane::grpc::StreamResponse>>(PrepareAsyncOpenMessageStreamRaw(context, request, cq)); - } - // - // Other half of the browser-based implementation for MessageStream. - virtual ::grpc::Status NextMessageStream(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::StreamRequest& request, ::io::deephaven::proto::backplane::grpc::BrowserNextResponse* response) = 0; - std::unique_ptr< ::grpc::ClientAsyncResponseReaderInterface< ::io::deephaven::proto::backplane::grpc::BrowserNextResponse>> AsyncNextMessageStream(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::StreamRequest& request, ::grpc::CompletionQueue* cq) { - return std::unique_ptr< ::grpc::ClientAsyncResponseReaderInterface< ::io::deephaven::proto::backplane::grpc::BrowserNextResponse>>(AsyncNextMessageStreamRaw(context, request, cq)); - } - std::unique_ptr< ::grpc::ClientAsyncResponseReaderInterface< ::io::deephaven::proto::backplane::grpc::BrowserNextResponse>> PrepareAsyncNextMessageStream(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::StreamRequest& request, ::grpc::CompletionQueue* cq) { - return std::unique_ptr< ::grpc::ClientAsyncResponseReaderInterface< ::io::deephaven::proto::backplane::grpc::BrowserNextResponse>>(PrepareAsyncNextMessageStreamRaw(context, request, cq)); - } - class async_interface { - public: - virtual ~async_interface() {} - // - // Fetches a server-side object as a binary payload and assorted other tickets pointing at - // other server-side objects that may need to be read to properly use this payload. The binary - // format is implementation specific, but the implementation should be specified by the "type" - // identifier in the typed ticket. - // - // Deprecated in favor of MessageStream, which is able to handle the same content. - virtual void FetchObject(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::FetchObjectRequest* request, ::io::deephaven::proto::backplane::grpc::FetchObjectResponse* response, std::function) = 0; - virtual void FetchObject(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::FetchObjectRequest* request, ::io::deephaven::proto::backplane::grpc::FetchObjectResponse* response, ::grpc::ClientUnaryReactor* reactor) = 0; - // - // Provides a generic stream feature for Deephaven instances to use to add arbitrary functionality. - // Presently these take the form of "object type plugins", where server-side code can specify how - // an object could be serialized and/or communicate with a client. This gRPC stream is somewhat lower level - // than the plugin API, giving the server and client APIs features to correctly establish and - // control the stream. At this time, this is limited to a "ConnectRequest" to start the call. - // - // The first message sent to the server is expected to have a ConnectRequest, indicating which - // export ticket to connect to. It is an error for the client to attempt to connect to an object - // that has no plugin for its object type installed. - // - // The first request sent by the client should be a ConnectRequest. No other client message should - // be sent until the server responds. The server will respond with Data as soon as it is able (i.e. - // once the object in question has been resolved and the plugin has responded), indicating that the - // request was successful. After that point, the client may send Data requests. - // - // All replies from the server to the client contain Data instances. When sent from the server to - // the client, Data contains a bytes payload created by the server implementation of the plugin, - // and server-created export tickets containing any object references specified to be sent by the - // server-side plugin. As server-created exports, they are already resolved, and can be fetched or - // otherwise referenced right away. The client API is expected to wrap those tickets in appropriate - // objects, and the client is expected to release those tickets as appropriate, according to the - // plugin's use case. Note that it is possible for the "type" field to be null, indicating that - // there is no corresponding ObjectType plugin for these exported objects. This limits the client - // to specifying those tickets in a subsequent request, or releasing the ticket to let the object - // be garbage collected on the server. - // - // All Data instances sent from the client likewise contain a bytes payload, and may contain - // references to objects that already exist or may soon exist on the server, not just tickets sent - // by this same plugin. Note however that if those tickets are not yet resolved, neither the current - // Data nor subsequent requests can be processed by the plugin, as the required references can't be - // resolved. - // - // Presently there is no explicit "close" message to send, but plugin implementations can devise - // their own "half-close" protocol if they so choose. For now, if one end closes the connection, - // the other is expected to follow suit by closing their end too. At present, if there is an error - // with the stream, it is conveyed to the client in the usual gRPC fashion, but the server plugin - // will only be informed that the stream closed. - // - virtual void MessageStream(::grpc::ClientContext* context, ::grpc::ClientBidiReactor< ::io::deephaven::proto::backplane::grpc::StreamRequest,::io::deephaven::proto::backplane::grpc::StreamResponse>* reactor) = 0; - // - // Half of the browser-based (browser's can't do bidirectional streams without websockets) - // implementation for MessageStream. - virtual void OpenMessageStream(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::StreamRequest* request, ::grpc::ClientReadReactor< ::io::deephaven::proto::backplane::grpc::StreamResponse>* reactor) = 0; - // - // Other half of the browser-based implementation for MessageStream. - virtual void NextMessageStream(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::StreamRequest* request, ::io::deephaven::proto::backplane::grpc::BrowserNextResponse* response, std::function) = 0; - virtual void NextMessageStream(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::StreamRequest* request, ::io::deephaven::proto::backplane::grpc::BrowserNextResponse* response, ::grpc::ClientUnaryReactor* reactor) = 0; - }; - typedef class async_interface experimental_async_interface; - virtual class async_interface* async() { return nullptr; } - class async_interface* experimental_async() { return async(); } - private: - virtual ::grpc::ClientAsyncResponseReaderInterface< ::io::deephaven::proto::backplane::grpc::FetchObjectResponse>* AsyncFetchObjectRaw(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::FetchObjectRequest& request, ::grpc::CompletionQueue* cq) = 0; - virtual ::grpc::ClientAsyncResponseReaderInterface< ::io::deephaven::proto::backplane::grpc::FetchObjectResponse>* PrepareAsyncFetchObjectRaw(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::FetchObjectRequest& request, ::grpc::CompletionQueue* cq) = 0; - virtual ::grpc::ClientReaderWriterInterface< ::io::deephaven::proto::backplane::grpc::StreamRequest, ::io::deephaven::proto::backplane::grpc::StreamResponse>* MessageStreamRaw(::grpc::ClientContext* context) = 0; - virtual ::grpc::ClientAsyncReaderWriterInterface< ::io::deephaven::proto::backplane::grpc::StreamRequest, ::io::deephaven::proto::backplane::grpc::StreamResponse>* AsyncMessageStreamRaw(::grpc::ClientContext* context, ::grpc::CompletionQueue* cq, void* tag) = 0; - virtual ::grpc::ClientAsyncReaderWriterInterface< ::io::deephaven::proto::backplane::grpc::StreamRequest, ::io::deephaven::proto::backplane::grpc::StreamResponse>* PrepareAsyncMessageStreamRaw(::grpc::ClientContext* context, ::grpc::CompletionQueue* cq) = 0; - virtual ::grpc::ClientReaderInterface< ::io::deephaven::proto::backplane::grpc::StreamResponse>* OpenMessageStreamRaw(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::StreamRequest& request) = 0; - virtual ::grpc::ClientAsyncReaderInterface< ::io::deephaven::proto::backplane::grpc::StreamResponse>* AsyncOpenMessageStreamRaw(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::StreamRequest& request, ::grpc::CompletionQueue* cq, void* tag) = 0; - virtual ::grpc::ClientAsyncReaderInterface< ::io::deephaven::proto::backplane::grpc::StreamResponse>* PrepareAsyncOpenMessageStreamRaw(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::StreamRequest& request, ::grpc::CompletionQueue* cq) = 0; - virtual ::grpc::ClientAsyncResponseReaderInterface< ::io::deephaven::proto::backplane::grpc::BrowserNextResponse>* AsyncNextMessageStreamRaw(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::StreamRequest& request, ::grpc::CompletionQueue* cq) = 0; - virtual ::grpc::ClientAsyncResponseReaderInterface< ::io::deephaven::proto::backplane::grpc::BrowserNextResponse>* PrepareAsyncNextMessageStreamRaw(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::StreamRequest& request, ::grpc::CompletionQueue* cq) = 0; - }; - class Stub final : public StubInterface { - public: - Stub(const std::shared_ptr< ::grpc::ChannelInterface>& channel, const ::grpc::StubOptions& options = ::grpc::StubOptions()); - ::grpc::Status FetchObject(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::FetchObjectRequest& request, ::io::deephaven::proto::backplane::grpc::FetchObjectResponse* response) override; - std::unique_ptr< ::grpc::ClientAsyncResponseReader< ::io::deephaven::proto::backplane::grpc::FetchObjectResponse>> AsyncFetchObject(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::FetchObjectRequest& request, ::grpc::CompletionQueue* cq) { - return std::unique_ptr< ::grpc::ClientAsyncResponseReader< ::io::deephaven::proto::backplane::grpc::FetchObjectResponse>>(AsyncFetchObjectRaw(context, request, cq)); - } - std::unique_ptr< ::grpc::ClientAsyncResponseReader< ::io::deephaven::proto::backplane::grpc::FetchObjectResponse>> PrepareAsyncFetchObject(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::FetchObjectRequest& request, ::grpc::CompletionQueue* cq) { - return std::unique_ptr< ::grpc::ClientAsyncResponseReader< ::io::deephaven::proto::backplane::grpc::FetchObjectResponse>>(PrepareAsyncFetchObjectRaw(context, request, cq)); - } - std::unique_ptr< ::grpc::ClientReaderWriter< ::io::deephaven::proto::backplane::grpc::StreamRequest, ::io::deephaven::proto::backplane::grpc::StreamResponse>> MessageStream(::grpc::ClientContext* context) { - return std::unique_ptr< ::grpc::ClientReaderWriter< ::io::deephaven::proto::backplane::grpc::StreamRequest, ::io::deephaven::proto::backplane::grpc::StreamResponse>>(MessageStreamRaw(context)); - } - std::unique_ptr< ::grpc::ClientAsyncReaderWriter< ::io::deephaven::proto::backplane::grpc::StreamRequest, ::io::deephaven::proto::backplane::grpc::StreamResponse>> AsyncMessageStream(::grpc::ClientContext* context, ::grpc::CompletionQueue* cq, void* tag) { - return std::unique_ptr< ::grpc::ClientAsyncReaderWriter< ::io::deephaven::proto::backplane::grpc::StreamRequest, ::io::deephaven::proto::backplane::grpc::StreamResponse>>(AsyncMessageStreamRaw(context, cq, tag)); - } - std::unique_ptr< ::grpc::ClientAsyncReaderWriter< ::io::deephaven::proto::backplane::grpc::StreamRequest, ::io::deephaven::proto::backplane::grpc::StreamResponse>> PrepareAsyncMessageStream(::grpc::ClientContext* context, ::grpc::CompletionQueue* cq) { - return std::unique_ptr< ::grpc::ClientAsyncReaderWriter< ::io::deephaven::proto::backplane::grpc::StreamRequest, ::io::deephaven::proto::backplane::grpc::StreamResponse>>(PrepareAsyncMessageStreamRaw(context, cq)); - } - std::unique_ptr< ::grpc::ClientReader< ::io::deephaven::proto::backplane::grpc::StreamResponse>> OpenMessageStream(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::StreamRequest& request) { - return std::unique_ptr< ::grpc::ClientReader< ::io::deephaven::proto::backplane::grpc::StreamResponse>>(OpenMessageStreamRaw(context, request)); - } - std::unique_ptr< ::grpc::ClientAsyncReader< ::io::deephaven::proto::backplane::grpc::StreamResponse>> AsyncOpenMessageStream(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::StreamRequest& request, ::grpc::CompletionQueue* cq, void* tag) { - return std::unique_ptr< ::grpc::ClientAsyncReader< ::io::deephaven::proto::backplane::grpc::StreamResponse>>(AsyncOpenMessageStreamRaw(context, request, cq, tag)); - } - std::unique_ptr< ::grpc::ClientAsyncReader< ::io::deephaven::proto::backplane::grpc::StreamResponse>> PrepareAsyncOpenMessageStream(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::StreamRequest& request, ::grpc::CompletionQueue* cq) { - return std::unique_ptr< ::grpc::ClientAsyncReader< ::io::deephaven::proto::backplane::grpc::StreamResponse>>(PrepareAsyncOpenMessageStreamRaw(context, request, cq)); - } - ::grpc::Status NextMessageStream(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::StreamRequest& request, ::io::deephaven::proto::backplane::grpc::BrowserNextResponse* response) override; - std::unique_ptr< ::grpc::ClientAsyncResponseReader< ::io::deephaven::proto::backplane::grpc::BrowserNextResponse>> AsyncNextMessageStream(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::StreamRequest& request, ::grpc::CompletionQueue* cq) { - return std::unique_ptr< ::grpc::ClientAsyncResponseReader< ::io::deephaven::proto::backplane::grpc::BrowserNextResponse>>(AsyncNextMessageStreamRaw(context, request, cq)); - } - std::unique_ptr< ::grpc::ClientAsyncResponseReader< ::io::deephaven::proto::backplane::grpc::BrowserNextResponse>> PrepareAsyncNextMessageStream(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::StreamRequest& request, ::grpc::CompletionQueue* cq) { - return std::unique_ptr< ::grpc::ClientAsyncResponseReader< ::io::deephaven::proto::backplane::grpc::BrowserNextResponse>>(PrepareAsyncNextMessageStreamRaw(context, request, cq)); - } - class async final : - public StubInterface::async_interface { - public: - void FetchObject(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::FetchObjectRequest* request, ::io::deephaven::proto::backplane::grpc::FetchObjectResponse* response, std::function) override; - void FetchObject(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::FetchObjectRequest* request, ::io::deephaven::proto::backplane::grpc::FetchObjectResponse* response, ::grpc::ClientUnaryReactor* reactor) override; - void MessageStream(::grpc::ClientContext* context, ::grpc::ClientBidiReactor< ::io::deephaven::proto::backplane::grpc::StreamRequest,::io::deephaven::proto::backplane::grpc::StreamResponse>* reactor) override; - void OpenMessageStream(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::StreamRequest* request, ::grpc::ClientReadReactor< ::io::deephaven::proto::backplane::grpc::StreamResponse>* reactor) override; - void NextMessageStream(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::StreamRequest* request, ::io::deephaven::proto::backplane::grpc::BrowserNextResponse* response, std::function) override; - void NextMessageStream(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::StreamRequest* request, ::io::deephaven::proto::backplane::grpc::BrowserNextResponse* response, ::grpc::ClientUnaryReactor* reactor) override; - private: - friend class Stub; - explicit async(Stub* stub): stub_(stub) { } - Stub* stub() { return stub_; } - Stub* stub_; - }; - class async* async() override { return &async_stub_; } - - private: - std::shared_ptr< ::grpc::ChannelInterface> channel_; - class async async_stub_{this}; - ::grpc::ClientAsyncResponseReader< ::io::deephaven::proto::backplane::grpc::FetchObjectResponse>* AsyncFetchObjectRaw(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::FetchObjectRequest& request, ::grpc::CompletionQueue* cq) override; - ::grpc::ClientAsyncResponseReader< ::io::deephaven::proto::backplane::grpc::FetchObjectResponse>* PrepareAsyncFetchObjectRaw(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::FetchObjectRequest& request, ::grpc::CompletionQueue* cq) override; - ::grpc::ClientReaderWriter< ::io::deephaven::proto::backplane::grpc::StreamRequest, ::io::deephaven::proto::backplane::grpc::StreamResponse>* MessageStreamRaw(::grpc::ClientContext* context) override; - ::grpc::ClientAsyncReaderWriter< ::io::deephaven::proto::backplane::grpc::StreamRequest, ::io::deephaven::proto::backplane::grpc::StreamResponse>* AsyncMessageStreamRaw(::grpc::ClientContext* context, ::grpc::CompletionQueue* cq, void* tag) override; - ::grpc::ClientAsyncReaderWriter< ::io::deephaven::proto::backplane::grpc::StreamRequest, ::io::deephaven::proto::backplane::grpc::StreamResponse>* PrepareAsyncMessageStreamRaw(::grpc::ClientContext* context, ::grpc::CompletionQueue* cq) override; - ::grpc::ClientReader< ::io::deephaven::proto::backplane::grpc::StreamResponse>* OpenMessageStreamRaw(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::StreamRequest& request) override; - ::grpc::ClientAsyncReader< ::io::deephaven::proto::backplane::grpc::StreamResponse>* AsyncOpenMessageStreamRaw(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::StreamRequest& request, ::grpc::CompletionQueue* cq, void* tag) override; - ::grpc::ClientAsyncReader< ::io::deephaven::proto::backplane::grpc::StreamResponse>* PrepareAsyncOpenMessageStreamRaw(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::StreamRequest& request, ::grpc::CompletionQueue* cq) override; - ::grpc::ClientAsyncResponseReader< ::io::deephaven::proto::backplane::grpc::BrowserNextResponse>* AsyncNextMessageStreamRaw(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::StreamRequest& request, ::grpc::CompletionQueue* cq) override; - ::grpc::ClientAsyncResponseReader< ::io::deephaven::proto::backplane::grpc::BrowserNextResponse>* PrepareAsyncNextMessageStreamRaw(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::StreamRequest& request, ::grpc::CompletionQueue* cq) override; - const ::grpc::internal::RpcMethod rpcmethod_FetchObject_; - const ::grpc::internal::RpcMethod rpcmethod_MessageStream_; - const ::grpc::internal::RpcMethod rpcmethod_OpenMessageStream_; - const ::grpc::internal::RpcMethod rpcmethod_NextMessageStream_; - }; - static std::unique_ptr NewStub(const std::shared_ptr< ::grpc::ChannelInterface>& channel, const ::grpc::StubOptions& options = ::grpc::StubOptions()); - - class Service : public ::grpc::Service { - public: - Service(); - virtual ~Service(); - // - // Fetches a server-side object as a binary payload and assorted other tickets pointing at - // other server-side objects that may need to be read to properly use this payload. The binary - // format is implementation specific, but the implementation should be specified by the "type" - // identifier in the typed ticket. - // - // Deprecated in favor of MessageStream, which is able to handle the same content. - virtual ::grpc::Status FetchObject(::grpc::ServerContext* context, const ::io::deephaven::proto::backplane::grpc::FetchObjectRequest* request, ::io::deephaven::proto::backplane::grpc::FetchObjectResponse* response); - // - // Provides a generic stream feature for Deephaven instances to use to add arbitrary functionality. - // Presently these take the form of "object type plugins", where server-side code can specify how - // an object could be serialized and/or communicate with a client. This gRPC stream is somewhat lower level - // than the plugin API, giving the server and client APIs features to correctly establish and - // control the stream. At this time, this is limited to a "ConnectRequest" to start the call. - // - // The first message sent to the server is expected to have a ConnectRequest, indicating which - // export ticket to connect to. It is an error for the client to attempt to connect to an object - // that has no plugin for its object type installed. - // - // The first request sent by the client should be a ConnectRequest. No other client message should - // be sent until the server responds. The server will respond with Data as soon as it is able (i.e. - // once the object in question has been resolved and the plugin has responded), indicating that the - // request was successful. After that point, the client may send Data requests. - // - // All replies from the server to the client contain Data instances. When sent from the server to - // the client, Data contains a bytes payload created by the server implementation of the plugin, - // and server-created export tickets containing any object references specified to be sent by the - // server-side plugin. As server-created exports, they are already resolved, and can be fetched or - // otherwise referenced right away. The client API is expected to wrap those tickets in appropriate - // objects, and the client is expected to release those tickets as appropriate, according to the - // plugin's use case. Note that it is possible for the "type" field to be null, indicating that - // there is no corresponding ObjectType plugin for these exported objects. This limits the client - // to specifying those tickets in a subsequent request, or releasing the ticket to let the object - // be garbage collected on the server. - // - // All Data instances sent from the client likewise contain a bytes payload, and may contain - // references to objects that already exist or may soon exist on the server, not just tickets sent - // by this same plugin. Note however that if those tickets are not yet resolved, neither the current - // Data nor subsequent requests can be processed by the plugin, as the required references can't be - // resolved. - // - // Presently there is no explicit "close" message to send, but plugin implementations can devise - // their own "half-close" protocol if they so choose. For now, if one end closes the connection, - // the other is expected to follow suit by closing their end too. At present, if there is an error - // with the stream, it is conveyed to the client in the usual gRPC fashion, but the server plugin - // will only be informed that the stream closed. - // - virtual ::grpc::Status MessageStream(::grpc::ServerContext* context, ::grpc::ServerReaderWriter< ::io::deephaven::proto::backplane::grpc::StreamResponse, ::io::deephaven::proto::backplane::grpc::StreamRequest>* stream); - // - // Half of the browser-based (browser's can't do bidirectional streams without websockets) - // implementation for MessageStream. - virtual ::grpc::Status OpenMessageStream(::grpc::ServerContext* context, const ::io::deephaven::proto::backplane::grpc::StreamRequest* request, ::grpc::ServerWriter< ::io::deephaven::proto::backplane::grpc::StreamResponse>* writer); - // - // Other half of the browser-based implementation for MessageStream. - virtual ::grpc::Status NextMessageStream(::grpc::ServerContext* context, const ::io::deephaven::proto::backplane::grpc::StreamRequest* request, ::io::deephaven::proto::backplane::grpc::BrowserNextResponse* response); - }; - template - class WithAsyncMethod_FetchObject : public BaseClass { - private: - void BaseClassMustBeDerivedFromService(const Service* /*service*/) {} - public: - WithAsyncMethod_FetchObject() { - ::grpc::Service::MarkMethodAsync(0); - } - ~WithAsyncMethod_FetchObject() override { - BaseClassMustBeDerivedFromService(this); - } - // disable synchronous version of this method - ::grpc::Status FetchObject(::grpc::ServerContext* /*context*/, const ::io::deephaven::proto::backplane::grpc::FetchObjectRequest* /*request*/, ::io::deephaven::proto::backplane::grpc::FetchObjectResponse* /*response*/) override { - abort(); - return ::grpc::Status(::grpc::StatusCode::UNIMPLEMENTED, ""); - } - void RequestFetchObject(::grpc::ServerContext* context, ::io::deephaven::proto::backplane::grpc::FetchObjectRequest* request, ::grpc::ServerAsyncResponseWriter< ::io::deephaven::proto::backplane::grpc::FetchObjectResponse>* response, ::grpc::CompletionQueue* new_call_cq, ::grpc::ServerCompletionQueue* notification_cq, void *tag) { - ::grpc::Service::RequestAsyncUnary(0, context, request, response, new_call_cq, notification_cq, tag); - } - }; - template - class WithAsyncMethod_MessageStream : public BaseClass { - private: - void BaseClassMustBeDerivedFromService(const Service* /*service*/) {} - public: - WithAsyncMethod_MessageStream() { - ::grpc::Service::MarkMethodAsync(1); - } - ~WithAsyncMethod_MessageStream() override { - BaseClassMustBeDerivedFromService(this); - } - // disable synchronous version of this method - ::grpc::Status MessageStream(::grpc::ServerContext* /*context*/, ::grpc::ServerReaderWriter< ::io::deephaven::proto::backplane::grpc::StreamResponse, ::io::deephaven::proto::backplane::grpc::StreamRequest>* /*stream*/) override { - abort(); - return ::grpc::Status(::grpc::StatusCode::UNIMPLEMENTED, ""); - } - void RequestMessageStream(::grpc::ServerContext* context, ::grpc::ServerAsyncReaderWriter< ::io::deephaven::proto::backplane::grpc::StreamResponse, ::io::deephaven::proto::backplane::grpc::StreamRequest>* stream, ::grpc::CompletionQueue* new_call_cq, ::grpc::ServerCompletionQueue* notification_cq, void *tag) { - ::grpc::Service::RequestAsyncBidiStreaming(1, context, stream, new_call_cq, notification_cq, tag); - } - }; - template - class WithAsyncMethod_OpenMessageStream : public BaseClass { - private: - void BaseClassMustBeDerivedFromService(const Service* /*service*/) {} - public: - WithAsyncMethod_OpenMessageStream() { - ::grpc::Service::MarkMethodAsync(2); - } - ~WithAsyncMethod_OpenMessageStream() override { - BaseClassMustBeDerivedFromService(this); - } - // disable synchronous version of this method - ::grpc::Status OpenMessageStream(::grpc::ServerContext* /*context*/, const ::io::deephaven::proto::backplane::grpc::StreamRequest* /*request*/, ::grpc::ServerWriter< ::io::deephaven::proto::backplane::grpc::StreamResponse>* /*writer*/) override { - abort(); - return ::grpc::Status(::grpc::StatusCode::UNIMPLEMENTED, ""); - } - void RequestOpenMessageStream(::grpc::ServerContext* context, ::io::deephaven::proto::backplane::grpc::StreamRequest* request, ::grpc::ServerAsyncWriter< ::io::deephaven::proto::backplane::grpc::StreamResponse>* writer, ::grpc::CompletionQueue* new_call_cq, ::grpc::ServerCompletionQueue* notification_cq, void *tag) { - ::grpc::Service::RequestAsyncServerStreaming(2, context, request, writer, new_call_cq, notification_cq, tag); - } - }; - template - class WithAsyncMethod_NextMessageStream : public BaseClass { - private: - void BaseClassMustBeDerivedFromService(const Service* /*service*/) {} - public: - WithAsyncMethod_NextMessageStream() { - ::grpc::Service::MarkMethodAsync(3); - } - ~WithAsyncMethod_NextMessageStream() override { - BaseClassMustBeDerivedFromService(this); - } - // disable synchronous version of this method - ::grpc::Status NextMessageStream(::grpc::ServerContext* /*context*/, const ::io::deephaven::proto::backplane::grpc::StreamRequest* /*request*/, ::io::deephaven::proto::backplane::grpc::BrowserNextResponse* /*response*/) override { - abort(); - return ::grpc::Status(::grpc::StatusCode::UNIMPLEMENTED, ""); - } - void RequestNextMessageStream(::grpc::ServerContext* context, ::io::deephaven::proto::backplane::grpc::StreamRequest* request, ::grpc::ServerAsyncResponseWriter< ::io::deephaven::proto::backplane::grpc::BrowserNextResponse>* response, ::grpc::CompletionQueue* new_call_cq, ::grpc::ServerCompletionQueue* notification_cq, void *tag) { - ::grpc::Service::RequestAsyncUnary(3, context, request, response, new_call_cq, notification_cq, tag); - } - }; - typedef WithAsyncMethod_FetchObject > > > AsyncService; - template - class WithCallbackMethod_FetchObject : public BaseClass { - private: - void BaseClassMustBeDerivedFromService(const Service* /*service*/) {} - public: - WithCallbackMethod_FetchObject() { - ::grpc::Service::MarkMethodCallback(0, - new ::grpc::internal::CallbackUnaryHandler< ::io::deephaven::proto::backplane::grpc::FetchObjectRequest, ::io::deephaven::proto::backplane::grpc::FetchObjectResponse>( - [this]( - ::grpc::CallbackServerContext* context, const ::io::deephaven::proto::backplane::grpc::FetchObjectRequest* request, ::io::deephaven::proto::backplane::grpc::FetchObjectResponse* response) { return this->FetchObject(context, request, response); }));} - void SetMessageAllocatorFor_FetchObject( - ::grpc::MessageAllocator< ::io::deephaven::proto::backplane::grpc::FetchObjectRequest, ::io::deephaven::proto::backplane::grpc::FetchObjectResponse>* allocator) { - ::grpc::internal::MethodHandler* const handler = ::grpc::Service::GetHandler(0); - static_cast<::grpc::internal::CallbackUnaryHandler< ::io::deephaven::proto::backplane::grpc::FetchObjectRequest, ::io::deephaven::proto::backplane::grpc::FetchObjectResponse>*>(handler) - ->SetMessageAllocator(allocator); - } - ~WithCallbackMethod_FetchObject() override { - BaseClassMustBeDerivedFromService(this); - } - // disable synchronous version of this method - ::grpc::Status FetchObject(::grpc::ServerContext* /*context*/, const ::io::deephaven::proto::backplane::grpc::FetchObjectRequest* /*request*/, ::io::deephaven::proto::backplane::grpc::FetchObjectResponse* /*response*/) override { - abort(); - return ::grpc::Status(::grpc::StatusCode::UNIMPLEMENTED, ""); - } - virtual ::grpc::ServerUnaryReactor* FetchObject( - ::grpc::CallbackServerContext* /*context*/, const ::io::deephaven::proto::backplane::grpc::FetchObjectRequest* /*request*/, ::io::deephaven::proto::backplane::grpc::FetchObjectResponse* /*response*/) { return nullptr; } - }; - template - class WithCallbackMethod_MessageStream : public BaseClass { - private: - void BaseClassMustBeDerivedFromService(const Service* /*service*/) {} - public: - WithCallbackMethod_MessageStream() { - ::grpc::Service::MarkMethodCallback(1, - new ::grpc::internal::CallbackBidiHandler< ::io::deephaven::proto::backplane::grpc::StreamRequest, ::io::deephaven::proto::backplane::grpc::StreamResponse>( - [this]( - ::grpc::CallbackServerContext* context) { return this->MessageStream(context); })); - } - ~WithCallbackMethod_MessageStream() override { - BaseClassMustBeDerivedFromService(this); - } - // disable synchronous version of this method - ::grpc::Status MessageStream(::grpc::ServerContext* /*context*/, ::grpc::ServerReaderWriter< ::io::deephaven::proto::backplane::grpc::StreamResponse, ::io::deephaven::proto::backplane::grpc::StreamRequest>* /*stream*/) override { - abort(); - return ::grpc::Status(::grpc::StatusCode::UNIMPLEMENTED, ""); - } - virtual ::grpc::ServerBidiReactor< ::io::deephaven::proto::backplane::grpc::StreamRequest, ::io::deephaven::proto::backplane::grpc::StreamResponse>* MessageStream( - ::grpc::CallbackServerContext* /*context*/) - { return nullptr; } - }; - template - class WithCallbackMethod_OpenMessageStream : public BaseClass { - private: - void BaseClassMustBeDerivedFromService(const Service* /*service*/) {} - public: - WithCallbackMethod_OpenMessageStream() { - ::grpc::Service::MarkMethodCallback(2, - new ::grpc::internal::CallbackServerStreamingHandler< ::io::deephaven::proto::backplane::grpc::StreamRequest, ::io::deephaven::proto::backplane::grpc::StreamResponse>( - [this]( - ::grpc::CallbackServerContext* context, const ::io::deephaven::proto::backplane::grpc::StreamRequest* request) { return this->OpenMessageStream(context, request); })); - } - ~WithCallbackMethod_OpenMessageStream() override { - BaseClassMustBeDerivedFromService(this); - } - // disable synchronous version of this method - ::grpc::Status OpenMessageStream(::grpc::ServerContext* /*context*/, const ::io::deephaven::proto::backplane::grpc::StreamRequest* /*request*/, ::grpc::ServerWriter< ::io::deephaven::proto::backplane::grpc::StreamResponse>* /*writer*/) override { - abort(); - return ::grpc::Status(::grpc::StatusCode::UNIMPLEMENTED, ""); - } - virtual ::grpc::ServerWriteReactor< ::io::deephaven::proto::backplane::grpc::StreamResponse>* OpenMessageStream( - ::grpc::CallbackServerContext* /*context*/, const ::io::deephaven::proto::backplane::grpc::StreamRequest* /*request*/) { return nullptr; } - }; - template - class WithCallbackMethod_NextMessageStream : public BaseClass { - private: - void BaseClassMustBeDerivedFromService(const Service* /*service*/) {} - public: - WithCallbackMethod_NextMessageStream() { - ::grpc::Service::MarkMethodCallback(3, - new ::grpc::internal::CallbackUnaryHandler< ::io::deephaven::proto::backplane::grpc::StreamRequest, ::io::deephaven::proto::backplane::grpc::BrowserNextResponse>( - [this]( - ::grpc::CallbackServerContext* context, const ::io::deephaven::proto::backplane::grpc::StreamRequest* request, ::io::deephaven::proto::backplane::grpc::BrowserNextResponse* response) { return this->NextMessageStream(context, request, response); }));} - void SetMessageAllocatorFor_NextMessageStream( - ::grpc::MessageAllocator< ::io::deephaven::proto::backplane::grpc::StreamRequest, ::io::deephaven::proto::backplane::grpc::BrowserNextResponse>* allocator) { - ::grpc::internal::MethodHandler* const handler = ::grpc::Service::GetHandler(3); - static_cast<::grpc::internal::CallbackUnaryHandler< ::io::deephaven::proto::backplane::grpc::StreamRequest, ::io::deephaven::proto::backplane::grpc::BrowserNextResponse>*>(handler) - ->SetMessageAllocator(allocator); - } - ~WithCallbackMethod_NextMessageStream() override { - BaseClassMustBeDerivedFromService(this); - } - // disable synchronous version of this method - ::grpc::Status NextMessageStream(::grpc::ServerContext* /*context*/, const ::io::deephaven::proto::backplane::grpc::StreamRequest* /*request*/, ::io::deephaven::proto::backplane::grpc::BrowserNextResponse* /*response*/) override { - abort(); - return ::grpc::Status(::grpc::StatusCode::UNIMPLEMENTED, ""); - } - virtual ::grpc::ServerUnaryReactor* NextMessageStream( - ::grpc::CallbackServerContext* /*context*/, const ::io::deephaven::proto::backplane::grpc::StreamRequest* /*request*/, ::io::deephaven::proto::backplane::grpc::BrowserNextResponse* /*response*/) { return nullptr; } - }; - typedef WithCallbackMethod_FetchObject > > > CallbackService; - typedef CallbackService ExperimentalCallbackService; - template - class WithGenericMethod_FetchObject : public BaseClass { - private: - void BaseClassMustBeDerivedFromService(const Service* /*service*/) {} - public: - WithGenericMethod_FetchObject() { - ::grpc::Service::MarkMethodGeneric(0); - } - ~WithGenericMethod_FetchObject() override { - BaseClassMustBeDerivedFromService(this); - } - // disable synchronous version of this method - ::grpc::Status FetchObject(::grpc::ServerContext* /*context*/, const ::io::deephaven::proto::backplane::grpc::FetchObjectRequest* /*request*/, ::io::deephaven::proto::backplane::grpc::FetchObjectResponse* /*response*/) override { - abort(); - return ::grpc::Status(::grpc::StatusCode::UNIMPLEMENTED, ""); - } - }; - template - class WithGenericMethod_MessageStream : public BaseClass { - private: - void BaseClassMustBeDerivedFromService(const Service* /*service*/) {} - public: - WithGenericMethod_MessageStream() { - ::grpc::Service::MarkMethodGeneric(1); - } - ~WithGenericMethod_MessageStream() override { - BaseClassMustBeDerivedFromService(this); - } - // disable synchronous version of this method - ::grpc::Status MessageStream(::grpc::ServerContext* /*context*/, ::grpc::ServerReaderWriter< ::io::deephaven::proto::backplane::grpc::StreamResponse, ::io::deephaven::proto::backplane::grpc::StreamRequest>* /*stream*/) override { - abort(); - return ::grpc::Status(::grpc::StatusCode::UNIMPLEMENTED, ""); - } - }; - template - class WithGenericMethod_OpenMessageStream : public BaseClass { - private: - void BaseClassMustBeDerivedFromService(const Service* /*service*/) {} - public: - WithGenericMethod_OpenMessageStream() { - ::grpc::Service::MarkMethodGeneric(2); - } - ~WithGenericMethod_OpenMessageStream() override { - BaseClassMustBeDerivedFromService(this); - } - // disable synchronous version of this method - ::grpc::Status OpenMessageStream(::grpc::ServerContext* /*context*/, const ::io::deephaven::proto::backplane::grpc::StreamRequest* /*request*/, ::grpc::ServerWriter< ::io::deephaven::proto::backplane::grpc::StreamResponse>* /*writer*/) override { - abort(); - return ::grpc::Status(::grpc::StatusCode::UNIMPLEMENTED, ""); - } - }; - template - class WithGenericMethod_NextMessageStream : public BaseClass { - private: - void BaseClassMustBeDerivedFromService(const Service* /*service*/) {} - public: - WithGenericMethod_NextMessageStream() { - ::grpc::Service::MarkMethodGeneric(3); - } - ~WithGenericMethod_NextMessageStream() override { - BaseClassMustBeDerivedFromService(this); - } - // disable synchronous version of this method - ::grpc::Status NextMessageStream(::grpc::ServerContext* /*context*/, const ::io::deephaven::proto::backplane::grpc::StreamRequest* /*request*/, ::io::deephaven::proto::backplane::grpc::BrowserNextResponse* /*response*/) override { - abort(); - return ::grpc::Status(::grpc::StatusCode::UNIMPLEMENTED, ""); - } - }; - template - class WithRawMethod_FetchObject : public BaseClass { - private: - void BaseClassMustBeDerivedFromService(const Service* /*service*/) {} - public: - WithRawMethod_FetchObject() { - ::grpc::Service::MarkMethodRaw(0); - } - ~WithRawMethod_FetchObject() override { - BaseClassMustBeDerivedFromService(this); - } - // disable synchronous version of this method - ::grpc::Status FetchObject(::grpc::ServerContext* /*context*/, const ::io::deephaven::proto::backplane::grpc::FetchObjectRequest* /*request*/, ::io::deephaven::proto::backplane::grpc::FetchObjectResponse* /*response*/) override { - abort(); - return ::grpc::Status(::grpc::StatusCode::UNIMPLEMENTED, ""); - } - void RequestFetchObject(::grpc::ServerContext* context, ::grpc::ByteBuffer* request, ::grpc::ServerAsyncResponseWriter< ::grpc::ByteBuffer>* response, ::grpc::CompletionQueue* new_call_cq, ::grpc::ServerCompletionQueue* notification_cq, void *tag) { - ::grpc::Service::RequestAsyncUnary(0, context, request, response, new_call_cq, notification_cq, tag); - } - }; - template - class WithRawMethod_MessageStream : public BaseClass { - private: - void BaseClassMustBeDerivedFromService(const Service* /*service*/) {} - public: - WithRawMethod_MessageStream() { - ::grpc::Service::MarkMethodRaw(1); - } - ~WithRawMethod_MessageStream() override { - BaseClassMustBeDerivedFromService(this); - } - // disable synchronous version of this method - ::grpc::Status MessageStream(::grpc::ServerContext* /*context*/, ::grpc::ServerReaderWriter< ::io::deephaven::proto::backplane::grpc::StreamResponse, ::io::deephaven::proto::backplane::grpc::StreamRequest>* /*stream*/) override { - abort(); - return ::grpc::Status(::grpc::StatusCode::UNIMPLEMENTED, ""); - } - void RequestMessageStream(::grpc::ServerContext* context, ::grpc::ServerAsyncReaderWriter< ::grpc::ByteBuffer, ::grpc::ByteBuffer>* stream, ::grpc::CompletionQueue* new_call_cq, ::grpc::ServerCompletionQueue* notification_cq, void *tag) { - ::grpc::Service::RequestAsyncBidiStreaming(1, context, stream, new_call_cq, notification_cq, tag); - } - }; - template - class WithRawMethod_OpenMessageStream : public BaseClass { - private: - void BaseClassMustBeDerivedFromService(const Service* /*service*/) {} - public: - WithRawMethod_OpenMessageStream() { - ::grpc::Service::MarkMethodRaw(2); - } - ~WithRawMethod_OpenMessageStream() override { - BaseClassMustBeDerivedFromService(this); - } - // disable synchronous version of this method - ::grpc::Status OpenMessageStream(::grpc::ServerContext* /*context*/, const ::io::deephaven::proto::backplane::grpc::StreamRequest* /*request*/, ::grpc::ServerWriter< ::io::deephaven::proto::backplane::grpc::StreamResponse>* /*writer*/) override { - abort(); - return ::grpc::Status(::grpc::StatusCode::UNIMPLEMENTED, ""); - } - void RequestOpenMessageStream(::grpc::ServerContext* context, ::grpc::ByteBuffer* request, ::grpc::ServerAsyncWriter< ::grpc::ByteBuffer>* writer, ::grpc::CompletionQueue* new_call_cq, ::grpc::ServerCompletionQueue* notification_cq, void *tag) { - ::grpc::Service::RequestAsyncServerStreaming(2, context, request, writer, new_call_cq, notification_cq, tag); - } - }; - template - class WithRawMethod_NextMessageStream : public BaseClass { - private: - void BaseClassMustBeDerivedFromService(const Service* /*service*/) {} - public: - WithRawMethod_NextMessageStream() { - ::grpc::Service::MarkMethodRaw(3); - } - ~WithRawMethod_NextMessageStream() override { - BaseClassMustBeDerivedFromService(this); - } - // disable synchronous version of this method - ::grpc::Status NextMessageStream(::grpc::ServerContext* /*context*/, const ::io::deephaven::proto::backplane::grpc::StreamRequest* /*request*/, ::io::deephaven::proto::backplane::grpc::BrowserNextResponse* /*response*/) override { - abort(); - return ::grpc::Status(::grpc::StatusCode::UNIMPLEMENTED, ""); - } - void RequestNextMessageStream(::grpc::ServerContext* context, ::grpc::ByteBuffer* request, ::grpc::ServerAsyncResponseWriter< ::grpc::ByteBuffer>* response, ::grpc::CompletionQueue* new_call_cq, ::grpc::ServerCompletionQueue* notification_cq, void *tag) { - ::grpc::Service::RequestAsyncUnary(3, context, request, response, new_call_cq, notification_cq, tag); - } - }; - template - class WithRawCallbackMethod_FetchObject : public BaseClass { - private: - void BaseClassMustBeDerivedFromService(const Service* /*service*/) {} - public: - WithRawCallbackMethod_FetchObject() { - ::grpc::Service::MarkMethodRawCallback(0, - new ::grpc::internal::CallbackUnaryHandler< ::grpc::ByteBuffer, ::grpc::ByteBuffer>( - [this]( - ::grpc::CallbackServerContext* context, const ::grpc::ByteBuffer* request, ::grpc::ByteBuffer* response) { return this->FetchObject(context, request, response); })); - } - ~WithRawCallbackMethod_FetchObject() override { - BaseClassMustBeDerivedFromService(this); - } - // disable synchronous version of this method - ::grpc::Status FetchObject(::grpc::ServerContext* /*context*/, const ::io::deephaven::proto::backplane::grpc::FetchObjectRequest* /*request*/, ::io::deephaven::proto::backplane::grpc::FetchObjectResponse* /*response*/) override { - abort(); - return ::grpc::Status(::grpc::StatusCode::UNIMPLEMENTED, ""); - } - virtual ::grpc::ServerUnaryReactor* FetchObject( - ::grpc::CallbackServerContext* /*context*/, const ::grpc::ByteBuffer* /*request*/, ::grpc::ByteBuffer* /*response*/) { return nullptr; } - }; - template - class WithRawCallbackMethod_MessageStream : public BaseClass { - private: - void BaseClassMustBeDerivedFromService(const Service* /*service*/) {} - public: - WithRawCallbackMethod_MessageStream() { - ::grpc::Service::MarkMethodRawCallback(1, - new ::grpc::internal::CallbackBidiHandler< ::grpc::ByteBuffer, ::grpc::ByteBuffer>( - [this]( - ::grpc::CallbackServerContext* context) { return this->MessageStream(context); })); - } - ~WithRawCallbackMethod_MessageStream() override { - BaseClassMustBeDerivedFromService(this); - } - // disable synchronous version of this method - ::grpc::Status MessageStream(::grpc::ServerContext* /*context*/, ::grpc::ServerReaderWriter< ::io::deephaven::proto::backplane::grpc::StreamResponse, ::io::deephaven::proto::backplane::grpc::StreamRequest>* /*stream*/) override { - abort(); - return ::grpc::Status(::grpc::StatusCode::UNIMPLEMENTED, ""); - } - virtual ::grpc::ServerBidiReactor< ::grpc::ByteBuffer, ::grpc::ByteBuffer>* MessageStream( - ::grpc::CallbackServerContext* /*context*/) - { return nullptr; } - }; - template - class WithRawCallbackMethod_OpenMessageStream : public BaseClass { - private: - void BaseClassMustBeDerivedFromService(const Service* /*service*/) {} - public: - WithRawCallbackMethod_OpenMessageStream() { - ::grpc::Service::MarkMethodRawCallback(2, - new ::grpc::internal::CallbackServerStreamingHandler< ::grpc::ByteBuffer, ::grpc::ByteBuffer>( - [this]( - ::grpc::CallbackServerContext* context, const::grpc::ByteBuffer* request) { return this->OpenMessageStream(context, request); })); - } - ~WithRawCallbackMethod_OpenMessageStream() override { - BaseClassMustBeDerivedFromService(this); - } - // disable synchronous version of this method - ::grpc::Status OpenMessageStream(::grpc::ServerContext* /*context*/, const ::io::deephaven::proto::backplane::grpc::StreamRequest* /*request*/, ::grpc::ServerWriter< ::io::deephaven::proto::backplane::grpc::StreamResponse>* /*writer*/) override { - abort(); - return ::grpc::Status(::grpc::StatusCode::UNIMPLEMENTED, ""); - } - virtual ::grpc::ServerWriteReactor< ::grpc::ByteBuffer>* OpenMessageStream( - ::grpc::CallbackServerContext* /*context*/, const ::grpc::ByteBuffer* /*request*/) { return nullptr; } - }; - template - class WithRawCallbackMethod_NextMessageStream : public BaseClass { - private: - void BaseClassMustBeDerivedFromService(const Service* /*service*/) {} - public: - WithRawCallbackMethod_NextMessageStream() { - ::grpc::Service::MarkMethodRawCallback(3, - new ::grpc::internal::CallbackUnaryHandler< ::grpc::ByteBuffer, ::grpc::ByteBuffer>( - [this]( - ::grpc::CallbackServerContext* context, const ::grpc::ByteBuffer* request, ::grpc::ByteBuffer* response) { return this->NextMessageStream(context, request, response); })); - } - ~WithRawCallbackMethod_NextMessageStream() override { - BaseClassMustBeDerivedFromService(this); - } - // disable synchronous version of this method - ::grpc::Status NextMessageStream(::grpc::ServerContext* /*context*/, const ::io::deephaven::proto::backplane::grpc::StreamRequest* /*request*/, ::io::deephaven::proto::backplane::grpc::BrowserNextResponse* /*response*/) override { - abort(); - return ::grpc::Status(::grpc::StatusCode::UNIMPLEMENTED, ""); - } - virtual ::grpc::ServerUnaryReactor* NextMessageStream( - ::grpc::CallbackServerContext* /*context*/, const ::grpc::ByteBuffer* /*request*/, ::grpc::ByteBuffer* /*response*/) { return nullptr; } - }; - template - class WithStreamedUnaryMethod_FetchObject : public BaseClass { - private: - void BaseClassMustBeDerivedFromService(const Service* /*service*/) {} - public: - WithStreamedUnaryMethod_FetchObject() { - ::grpc::Service::MarkMethodStreamed(0, - new ::grpc::internal::StreamedUnaryHandler< - ::io::deephaven::proto::backplane::grpc::FetchObjectRequest, ::io::deephaven::proto::backplane::grpc::FetchObjectResponse>( - [this](::grpc::ServerContext* context, - ::grpc::ServerUnaryStreamer< - ::io::deephaven::proto::backplane::grpc::FetchObjectRequest, ::io::deephaven::proto::backplane::grpc::FetchObjectResponse>* streamer) { - return this->StreamedFetchObject(context, - streamer); - })); - } - ~WithStreamedUnaryMethod_FetchObject() override { - BaseClassMustBeDerivedFromService(this); - } - // disable regular version of this method - ::grpc::Status FetchObject(::grpc::ServerContext* /*context*/, const ::io::deephaven::proto::backplane::grpc::FetchObjectRequest* /*request*/, ::io::deephaven::proto::backplane::grpc::FetchObjectResponse* /*response*/) override { - abort(); - return ::grpc::Status(::grpc::StatusCode::UNIMPLEMENTED, ""); - } - // replace default version of method with streamed unary - virtual ::grpc::Status StreamedFetchObject(::grpc::ServerContext* context, ::grpc::ServerUnaryStreamer< ::io::deephaven::proto::backplane::grpc::FetchObjectRequest,::io::deephaven::proto::backplane::grpc::FetchObjectResponse>* server_unary_streamer) = 0; - }; - template - class WithStreamedUnaryMethod_NextMessageStream : public BaseClass { - private: - void BaseClassMustBeDerivedFromService(const Service* /*service*/) {} - public: - WithStreamedUnaryMethod_NextMessageStream() { - ::grpc::Service::MarkMethodStreamed(3, - new ::grpc::internal::StreamedUnaryHandler< - ::io::deephaven::proto::backplane::grpc::StreamRequest, ::io::deephaven::proto::backplane::grpc::BrowserNextResponse>( - [this](::grpc::ServerContext* context, - ::grpc::ServerUnaryStreamer< - ::io::deephaven::proto::backplane::grpc::StreamRequest, ::io::deephaven::proto::backplane::grpc::BrowserNextResponse>* streamer) { - return this->StreamedNextMessageStream(context, - streamer); - })); - } - ~WithStreamedUnaryMethod_NextMessageStream() override { - BaseClassMustBeDerivedFromService(this); - } - // disable regular version of this method - ::grpc::Status NextMessageStream(::grpc::ServerContext* /*context*/, const ::io::deephaven::proto::backplane::grpc::StreamRequest* /*request*/, ::io::deephaven::proto::backplane::grpc::BrowserNextResponse* /*response*/) override { - abort(); - return ::grpc::Status(::grpc::StatusCode::UNIMPLEMENTED, ""); - } - // replace default version of method with streamed unary - virtual ::grpc::Status StreamedNextMessageStream(::grpc::ServerContext* context, ::grpc::ServerUnaryStreamer< ::io::deephaven::proto::backplane::grpc::StreamRequest,::io::deephaven::proto::backplane::grpc::BrowserNextResponse>* server_unary_streamer) = 0; - }; - typedef WithStreamedUnaryMethod_FetchObject > StreamedUnaryService; - template - class WithSplitStreamingMethod_OpenMessageStream : public BaseClass { - private: - void BaseClassMustBeDerivedFromService(const Service* /*service*/) {} - public: - WithSplitStreamingMethod_OpenMessageStream() { - ::grpc::Service::MarkMethodStreamed(2, - new ::grpc::internal::SplitServerStreamingHandler< - ::io::deephaven::proto::backplane::grpc::StreamRequest, ::io::deephaven::proto::backplane::grpc::StreamResponse>( - [this](::grpc::ServerContext* context, - ::grpc::ServerSplitStreamer< - ::io::deephaven::proto::backplane::grpc::StreamRequest, ::io::deephaven::proto::backplane::grpc::StreamResponse>* streamer) { - return this->StreamedOpenMessageStream(context, - streamer); - })); - } - ~WithSplitStreamingMethod_OpenMessageStream() override { - BaseClassMustBeDerivedFromService(this); - } - // disable regular version of this method - ::grpc::Status OpenMessageStream(::grpc::ServerContext* /*context*/, const ::io::deephaven::proto::backplane::grpc::StreamRequest* /*request*/, ::grpc::ServerWriter< ::io::deephaven::proto::backplane::grpc::StreamResponse>* /*writer*/) override { - abort(); - return ::grpc::Status(::grpc::StatusCode::UNIMPLEMENTED, ""); - } - // replace default version of method with split streamed - virtual ::grpc::Status StreamedOpenMessageStream(::grpc::ServerContext* context, ::grpc::ServerSplitStreamer< ::io::deephaven::proto::backplane::grpc::StreamRequest,::io::deephaven::proto::backplane::grpc::StreamResponse>* server_split_streamer) = 0; - }; - typedef WithSplitStreamingMethod_OpenMessageStream SplitStreamedService; - typedef WithStreamedUnaryMethod_FetchObject > > StreamedService; -}; - -} // namespace grpc -} // namespace backplane -} // namespace proto -} // namespace deephaven -} // namespace io - - -#endif // GRPC_deephaven_2fproto_2fobject_2eproto__INCLUDED diff --git a/cpp-client/deephaven/dhclient/proto/deephaven/proto/object.pb.cc b/cpp-client/deephaven/dhclient/proto/deephaven/proto/object.pb.cc deleted file mode 100644 index ea5f444d72a..00000000000 --- a/cpp-client/deephaven/dhclient/proto/deephaven/proto/object.pb.cc +++ /dev/null @@ -1,2451 +0,0 @@ -// 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" -// @@protoc_insertion_point(includes) - -// Must be included last. -#include "google/protobuf/port_def.inc" -PROTOBUF_PRAGMA_INIT_SEG -namespace _pb = ::google::protobuf; -namespace _pbi = ::google::protobuf::internal; -namespace _fl = ::google::protobuf::internal::field_layout; -namespace io { -namespace deephaven { -namespace proto { -namespace backplane { -namespace grpc { - 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() {} - union { - BrowserNextResponse _instance; - }; -}; - -PROTOBUF_ATTRIBUTE_NO_DESTROY PROTOBUF_CONSTINIT - PROTOBUF_ATTRIBUTE_INIT_PRIORITY1 BrowserNextResponseDefaultTypeInternal _BrowserNextResponse_default_instance_; - -inline constexpr ServerData::Impl_::Impl_( - ::_pbi::ConstantInitialized) noexcept - : exported_references_{}, - payload_( - &::google::protobuf::internal::fixed_address_empty_string, - ::_pbi::ConstantInitialized()), - _cached_size_{0} {} - -template -PROTOBUF_CONSTEXPR ServerData::ServerData(::_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() {} - union { - ServerData _instance; - }; -}; - -PROTOBUF_ATTRIBUTE_NO_DESTROY PROTOBUF_CONSTINIT - PROTOBUF_ATTRIBUTE_INIT_PRIORITY1 ServerDataDefaultTypeInternal _ServerData_default_instance_; - -inline constexpr FetchObjectResponse::Impl_::Impl_( - ::_pbi::ConstantInitialized) noexcept - : typed_export_ids_{}, - type_( - &::google::protobuf::internal::fixed_address_empty_string, - ::_pbi::ConstantInitialized()), - data_( - &::google::protobuf::internal::fixed_address_empty_string, - ::_pbi::ConstantInitialized()), - _cached_size_{0} {} - -template -PROTOBUF_CONSTEXPR FetchObjectResponse::FetchObjectResponse(::_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() {} - union { - FetchObjectResponse _instance; - }; -}; - -PROTOBUF_ATTRIBUTE_NO_DESTROY PROTOBUF_CONSTINIT - PROTOBUF_ATTRIBUTE_INIT_PRIORITY1 FetchObjectResponseDefaultTypeInternal _FetchObjectResponse_default_instance_; - -inline constexpr FetchObjectRequest::Impl_::Impl_( - ::_pbi::ConstantInitialized) noexcept - : _cached_size_{0}, - source_id_{nullptr} {} - -template -PROTOBUF_CONSTEXPR FetchObjectRequest::FetchObjectRequest(::_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() {} - union { - FetchObjectRequest _instance; - }; -}; - -PROTOBUF_ATTRIBUTE_NO_DESTROY PROTOBUF_CONSTINIT - PROTOBUF_ATTRIBUTE_INIT_PRIORITY1 FetchObjectRequestDefaultTypeInternal _FetchObjectRequest_default_instance_; - -inline constexpr ConnectRequest::Impl_::Impl_( - ::_pbi::ConstantInitialized) noexcept - : _cached_size_{0}, - source_id_{nullptr} {} - -template -PROTOBUF_CONSTEXPR ConnectRequest::ConnectRequest(::_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() {} - union { - ConnectRequest _instance; - }; -}; - -PROTOBUF_ATTRIBUTE_NO_DESTROY PROTOBUF_CONSTINIT - PROTOBUF_ATTRIBUTE_INIT_PRIORITY1 ConnectRequestDefaultTypeInternal _ConnectRequest_default_instance_; - -inline constexpr ClientData::Impl_::Impl_( - ::_pbi::ConstantInitialized) noexcept - : references_{}, - payload_( - &::google::protobuf::internal::fixed_address_empty_string, - ::_pbi::ConstantInitialized()), - _cached_size_{0} {} - -template -PROTOBUF_CONSTEXPR ClientData::ClientData(::_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() {} - union { - ClientData _instance; - }; -}; - -PROTOBUF_ATTRIBUTE_NO_DESTROY PROTOBUF_CONSTINIT - PROTOBUF_ATTRIBUTE_INIT_PRIORITY1 ClientDataDefaultTypeInternal _ClientData_default_instance_; - -inline constexpr StreamResponse::Impl_::Impl_( - ::_pbi::ConstantInitialized) noexcept - : message_{}, - _cached_size_{0}, - _oneof_case_{} {} - -template -PROTOBUF_CONSTEXPR StreamResponse::StreamResponse(::_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() {} - union { - StreamResponse _instance; - }; -}; - -PROTOBUF_ATTRIBUTE_NO_DESTROY PROTOBUF_CONSTINIT - PROTOBUF_ATTRIBUTE_INIT_PRIORITY1 StreamResponseDefaultTypeInternal _StreamResponse_default_instance_; - -inline constexpr StreamRequest::Impl_::Impl_( - ::_pbi::ConstantInitialized) noexcept - : message_{}, - _cached_size_{0}, - _oneof_case_{} {} - -template -PROTOBUF_CONSTEXPR StreamRequest::StreamRequest(::_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() {} - union { - StreamRequest _instance; - }; -}; - -PROTOBUF_ATTRIBUTE_NO_DESTROY PROTOBUF_CONSTINIT - PROTOBUF_ATTRIBUTE_INIT_PRIORITY1 StreamRequestDefaultTypeInternal _StreamRequest_default_instance_; -} // namespace grpc -} // namespace backplane -} // namespace proto -} // namespace deephaven -} // namespace io -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[] 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[] 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)}, - {31, -1, -1, sizeof(::io::deephaven::proto::backplane::grpc::ClientData)}, - {41, -1, -1, sizeof(::io::deephaven::proto::backplane::grpc::ServerData)}, - {51, -1, -1, sizeof(::io::deephaven::proto::backplane::grpc::StreamRequest)}, - {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, - &::io::deephaven::proto::backplane::grpc::_ConnectRequest_default_instance_._instance, - &::io::deephaven::proto::backplane::grpc::_ClientData_default_instance_._instance, - &::io::deephaven::proto::backplane::grpc::_ServerData_default_instance_._instance, - &::io::deephaven::proto::backplane::grpc::_StreamRequest_default_instance_._instance, - &::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[] 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" - "\tsource_id\030\001 \001(\0132..io.deephaven.proto.ba" - "ckplane.grpc.TypedTicket\"{\n\023FetchObjectR" - "esponse\022\014\n\004type\030\001 \001(\t\022\014\n\004data\030\002 \001(\014\022H\n\020t" - "yped_export_ids\030\003 \003(\0132..io.deephaven.pro" - "to.backplane.grpc.TypedTicket\"S\n\016Connect" - "Request\022A\n\tsource_id\030\001 \001(\0132..io.deephave" - "n.proto.backplane.grpc.TypedTicket\"a\n\nCl" - "ientData\022\017\n\007payload\030\001 \001(\014\022B\n\nreferences\030" - "\002 \003(\0132..io.deephaven.proto.backplane.grp" - "c.TypedTicket\"j\n\nServerData\022\017\n\007payload\030\001" - " \001(\014\022K\n\023exported_references\030\002 \003(\0132..io.d" - "eephaven.proto.backplane.grpc.TypedTicke" - "t\"\237\001\n\rStreamRequest\022D\n\007connect\030\001 \001(\01321.i" - "o.deephaven.proto.backplane.grpc.Connect" - "RequestH\000\022=\n\004data\030\002 \001(\0132-.io.deephaven.p" - "roto.backplane.grpc.ClientDataH\000B\t\n\007mess" - "age\"Z\n\016StreamResponse\022=\n\004data\030\001 \001(\0132-.io" - ".deephaven.proto.backplane.grpc.ServerDa" - "taH\000B\t\n\007message\"\025\n\023BrowserNextResponse2\216" - "\004\n\rObjectService\022\201\001\n\013FetchObject\0225.io.de" - "ephaven.proto.backplane.grpc.FetchObject" - "Request\0326.io.deephaven.proto.backplane.g" - "rpc.FetchObjectResponse\"\003\210\002\001\022z\n\rMessageS" - "tream\0220.io.deephaven.proto.backplane.grp" - "c.StreamRequest\0321.io.deephaven.proto.bac" - "kplane.grpc.StreamResponse\"\000(\0010\001\022|\n\021Open" - "MessageStream\0220.io.deephaven.proto.backp" - "lane.grpc.StreamRequest\0321.io.deephaven.p" - "roto.backplane.grpc.StreamResponse\"\0000\001\022\177" - "\n\021NextMessageStream\0220.io.deephaven.proto" - ".backplane.grpc.StreamRequest\0326.io.deeph" - "aven.proto.backplane.grpc.BrowserNextRes" - "ponse\"\000BBH\001P\001Z()._impl_._has_bits_); - static constexpr ::int32_t kHasBitsOffset = - 8 * PROTOBUF_FIELD_OFFSET(FetchObjectRequest, _impl_._has_bits_); -}; - -void FetchObjectRequest::clear_source_id() { - ::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 ::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_, from); - ::uint32_t cached_has_bits = _impl_._has_bits_[0]; - _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) -} -inline PROTOBUF_NDEBUG_INLINE FetchObjectRequest::Impl_::Impl_( - ::google::protobuf::internal::InternalVisibility visibility, - ::google::protobuf::Arena* arena) - : _cached_size_{0} {} - -inline void FetchObjectRequest::SharedCtor(::_pb::Arena* arena) { - new (&_impl_) Impl_(internal_visibility(), arena); - _impl_.source_id_ = {}; -} -FetchObjectRequest::~FetchObjectRequest() { - // @@protoc_insertion_point(destructor:io.deephaven.proto.backplane.grpc.FetchObjectRequest) - _internal_metadata_.Delete<::google::protobuf::UnknownFieldSet>(); - SharedDtor(); -} -inline void FetchObjectRequest::SharedDtor() { - ABSL_DCHECK(GetArena() == nullptr); - delete _impl_.source_id_; - _impl_.~Impl_(); -} - -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_ = { - { - PROTOBUF_FIELD_OFFSET(FetchObjectRequest, _impl_._has_bits_), - 0, // no _extensions_ - 1, 0, // max_field_number, fast_idx_mask - offsetof(decltype(_table_), field_lookup_table), - 4294967294, // skipmap - offsetof(decltype(_table_), field_entries), - 1, // num_field_entries - 1, // num_aux_entries - offsetof(decltype(_table_), 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::FetchObjectRequest>(), // to_prefetch - #endif // PROTOBUF_PREFETCH_PARSE_TABLE - }, {{ - // .io.deephaven.proto.backplane.grpc.TypedTicket source_id = 1; - {::_pbi::TcParser::FastMtS1, - {10, 0, 0, PROTOBUF_FIELD_OFFSET(FetchObjectRequest, _impl_.source_id_)}}, - }}, {{ - 65535, 65535 - }}, {{ - // .io.deephaven.proto.backplane.grpc.TypedTicket source_id = 1; - {PROTOBUF_FIELD_OFFSET(FetchObjectRequest, _impl_.source_id_), _Internal::kHasBitsOffset + 0, 0, - (0 | ::_fl::kFcOptional | ::_fl::kMessage | ::_fl::kTvTable)}, - }}, {{ - {::_pbi::TcParser::GetTable<::io::deephaven::proto::backplane::grpc::TypedTicket>()}, - }}, {{ - }}, -}; - -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; - - 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>(); -} - -#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; - - 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_); -} - -void FetchObjectRequest::CopyFrom(const FetchObjectRequest& from) { -// @@protoc_insertion_point(class_specific_copy_from_start:io.deephaven.proto.backplane.grpc.FetchObjectRequest) - if (&from == this) return; - Clear(); - MergeFrom(from); -} - - -void FetchObjectRequest::InternalSwap(FetchObjectRequest* PROTOBUF_RESTRICT other) { - using std::swap; - _internal_metadata_.InternalSwap(&other->_internal_metadata_); - swap(_impl_._has_bits_[0], other->_impl_._has_bits_[0]); - swap(_impl_.source_id_, other->_impl_.source_id_); -} - -::google::protobuf::Metadata FetchObjectRequest::GetMetadata() const { - return ::google::protobuf::Message::GetMetadataImpl(GetClassData()->full()); -} -// =================================================================== - -class FetchObjectResponse::_Internal { - public: -}; - -void FetchObjectResponse::clear_typed_export_ids() { - ::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 ::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_), - _cached_size_{0} {} - -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_, from); - - // @@protoc_insertion_point(copy_constructor:io.deephaven.proto.backplane.grpc.FetchObjectResponse) -} -inline PROTOBUF_NDEBUG_INLINE FetchObjectResponse::Impl_::Impl_( - ::google::protobuf::internal::InternalVisibility visibility, - ::google::protobuf::Arena* arena) - : typed_export_ids_{visibility, arena}, - type_(arena), - data_(arena), - _cached_size_{0} {} - -inline void FetchObjectResponse::SharedCtor(::_pb::Arena* arena) { - new (&_impl_) Impl_(internal_visibility(), arena); -} -FetchObjectResponse::~FetchObjectResponse() { - // @@protoc_insertion_point(destructor:io.deephaven.proto.backplane.grpc.FetchObjectResponse) - _internal_metadata_.Delete<::google::protobuf::UnknownFieldSet>(); - SharedDtor(); -} -inline void FetchObjectResponse::SharedDtor() { - ABSL_DCHECK(GetArena() == nullptr); - _impl_.type_.Destroy(); - _impl_.data_.Destroy(); - _impl_.~Impl_(); -} - -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_ = { - { - 0, // no _has_bits_ - 0, // no _extensions_ - 3, 24, // max_field_number, fast_idx_mask - offsetof(decltype(_table_), field_lookup_table), - 4294967288, // skipmap - offsetof(decltype(_table_), field_entries), - 3, // num_field_entries - 1, // num_aux_entries - offsetof(decltype(_table_), 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::FetchObjectResponse>(), // to_prefetch - #endif // PROTOBUF_PREFETCH_PARSE_TABLE - }, {{ - {::_pbi::TcParser::MiniParse, {}}, - // string type = 1; - {::_pbi::TcParser::FastUS1, - {10, 63, 0, PROTOBUF_FIELD_OFFSET(FetchObjectResponse, _impl_.type_)}}, - // bytes data = 2; - {::_pbi::TcParser::FastBS1, - {18, 63, 0, PROTOBUF_FIELD_OFFSET(FetchObjectResponse, _impl_.data_)}}, - // repeated .io.deephaven.proto.backplane.grpc.TypedTicket typed_export_ids = 3; - {::_pbi::TcParser::FastMtR1, - {26, 63, 0, PROTOBUF_FIELD_OFFSET(FetchObjectResponse, _impl_.typed_export_ids_)}}, - }}, {{ - 65535, 65535 - }}, {{ - // string type = 1; - {PROTOBUF_FIELD_OFFSET(FetchObjectResponse, _impl_.type_), 0, 0, - (0 | ::_fl::kFcSingular | ::_fl::kUtf8String | ::_fl::kRepAString)}, - // bytes data = 2; - {PROTOBUF_FIELD_OFFSET(FetchObjectResponse, _impl_.data_), 0, 0, - (0 | ::_fl::kFcSingular | ::_fl::kBytes | ::_fl::kRepAString)}, - // repeated .io.deephaven.proto.backplane.grpc.TypedTicket typed_export_ids = 3; - {PROTOBUF_FIELD_OFFSET(FetchObjectResponse, _impl_.typed_export_ids_), 0, 0, - (0 | ::_fl::kFcRepeated | ::_fl::kMessage | ::_fl::kTvTable)}, - }}, {{ - {::_pbi::TcParser::GetTable<::io::deephaven::proto::backplane::grpc::TypedTicket>()}, - }}, {{ - "\65\4\0\0\0\0\0\0" - "io.deephaven.proto.backplane.grpc.FetchObjectResponse" - "type" - }}, -}; - -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; - - _impl_.typed_export_ids_.Clear(); - _impl_.type_.ClearToEmpty(); - _impl_.data_.ClearToEmpty(); - _internal_metadata_.Clear<::google::protobuf::UnknownFieldSet>(); -} - -#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) - ABSL_DCHECK_NE(&from, _this); - ::uint32_t cached_has_bits = 0; - (void) cached_has_bits; - - _this->_internal_mutable_typed_export_ids()->MergeFrom( - from._internal_typed_export_ids()); - if (!from._internal_type().empty()) { - _this->_internal_set_type(from._internal_type()); - } - if (!from._internal_data().empty()) { - _this->_internal_set_data(from._internal_data()); - } - _this->_internal_metadata_.MergeFrom<::google::protobuf::UnknownFieldSet>(from._internal_metadata_); -} - -void FetchObjectResponse::CopyFrom(const FetchObjectResponse& from) { -// @@protoc_insertion_point(class_specific_copy_from_start:io.deephaven.proto.backplane.grpc.FetchObjectResponse) - if (&from == this) return; - Clear(); - MergeFrom(from); -} - - -void FetchObjectResponse::InternalSwap(FetchObjectResponse* PROTOBUF_RESTRICT other) { - using std::swap; - auto* arena = GetArena(); - ABSL_DCHECK_EQ(arena, other->GetArena()); - _internal_metadata_.InternalSwap(&other->_internal_metadata_); - _impl_.typed_export_ids_.InternalSwap(&other->_impl_.typed_export_ids_); - ::_pbi::ArenaStringPtr::InternalSwap(&_impl_.type_, &other->_impl_.type_, arena); - ::_pbi::ArenaStringPtr::InternalSwap(&_impl_.data_, &other->_impl_.data_, arena); -} - -::google::protobuf::Metadata FetchObjectResponse::GetMetadata() const { - return ::google::protobuf::Message::GetMetadataImpl(GetClassData()->full()); -} -// =================================================================== - -class ConnectRequest::_Internal { - public: - using HasBits = - decltype(std::declval()._impl_._has_bits_); - static constexpr ::int32_t kHasBitsOffset = - 8 * PROTOBUF_FIELD_OFFSET(ConnectRequest, _impl_._has_bits_); -}; - -void ConnectRequest::clear_source_id() { - ::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 ::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_, from); - ::uint32_t cached_has_bits = _impl_._has_bits_[0]; - _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) -} -inline PROTOBUF_NDEBUG_INLINE ConnectRequest::Impl_::Impl_( - ::google::protobuf::internal::InternalVisibility visibility, - ::google::protobuf::Arena* arena) - : _cached_size_{0} {} - -inline void ConnectRequest::SharedCtor(::_pb::Arena* arena) { - new (&_impl_) Impl_(internal_visibility(), arena); - _impl_.source_id_ = {}; -} -ConnectRequest::~ConnectRequest() { - // @@protoc_insertion_point(destructor:io.deephaven.proto.backplane.grpc.ConnectRequest) - _internal_metadata_.Delete<::google::protobuf::UnknownFieldSet>(); - SharedDtor(); -} -inline void ConnectRequest::SharedDtor() { - ABSL_DCHECK(GetArena() == nullptr); - delete _impl_.source_id_; - _impl_.~Impl_(); -} - -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_ = { - { - PROTOBUF_FIELD_OFFSET(ConnectRequest, _impl_._has_bits_), - 0, // no _extensions_ - 1, 0, // max_field_number, fast_idx_mask - offsetof(decltype(_table_), field_lookup_table), - 4294967294, // skipmap - offsetof(decltype(_table_), field_entries), - 1, // num_field_entries - 1, // num_aux_entries - offsetof(decltype(_table_), 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::ConnectRequest>(), // to_prefetch - #endif // PROTOBUF_PREFETCH_PARSE_TABLE - }, {{ - // .io.deephaven.proto.backplane.grpc.TypedTicket source_id = 1; - {::_pbi::TcParser::FastMtS1, - {10, 0, 0, PROTOBUF_FIELD_OFFSET(ConnectRequest, _impl_.source_id_)}}, - }}, {{ - 65535, 65535 - }}, {{ - // .io.deephaven.proto.backplane.grpc.TypedTicket source_id = 1; - {PROTOBUF_FIELD_OFFSET(ConnectRequest, _impl_.source_id_), _Internal::kHasBitsOffset + 0, 0, - (0 | ::_fl::kFcOptional | ::_fl::kMessage | ::_fl::kTvTable)}, - }}, {{ - {::_pbi::TcParser::GetTable<::io::deephaven::proto::backplane::grpc::TypedTicket>()}, - }}, {{ - }}, -}; - -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; - - 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>(); -} - -#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; - - 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_); -} - -void ConnectRequest::CopyFrom(const ConnectRequest& from) { -// @@protoc_insertion_point(class_specific_copy_from_start:io.deephaven.proto.backplane.grpc.ConnectRequest) - if (&from == this) return; - Clear(); - MergeFrom(from); -} - - -void ConnectRequest::InternalSwap(ConnectRequest* PROTOBUF_RESTRICT other) { - using std::swap; - _internal_metadata_.InternalSwap(&other->_internal_metadata_); - swap(_impl_._has_bits_[0], other->_impl_._has_bits_[0]); - swap(_impl_.source_id_, other->_impl_.source_id_); -} - -::google::protobuf::Metadata ConnectRequest::GetMetadata() const { - return ::google::protobuf::Message::GetMetadataImpl(GetClassData()->full()); -} -// =================================================================== - -class ClientData::_Internal { - public: -}; - -void ClientData::clear_references() { - ::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 ::io::deephaven::proto::backplane::grpc::ClientData& from_msg) - : references_{visibility, arena, from.references_}, - payload_(arena, from.payload_), - _cached_size_{0} {} - -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_, from); - - // @@protoc_insertion_point(copy_constructor:io.deephaven.proto.backplane.grpc.ClientData) -} -inline PROTOBUF_NDEBUG_INLINE ClientData::Impl_::Impl_( - ::google::protobuf::internal::InternalVisibility visibility, - ::google::protobuf::Arena* arena) - : references_{visibility, arena}, - payload_(arena), - _cached_size_{0} {} - -inline void ClientData::SharedCtor(::_pb::Arena* arena) { - new (&_impl_) Impl_(internal_visibility(), arena); -} -ClientData::~ClientData() { - // @@protoc_insertion_point(destructor:io.deephaven.proto.backplane.grpc.ClientData) - _internal_metadata_.Delete<::google::protobuf::UnknownFieldSet>(); - SharedDtor(); -} -inline void ClientData::SharedDtor() { - ABSL_DCHECK(GetArena() == nullptr); - _impl_.payload_.Destroy(); - _impl_.~Impl_(); -} - -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_ = { - { - 0, // no _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::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, - {18, 63, 0, PROTOBUF_FIELD_OFFSET(ClientData, _impl_.references_)}}, - // bytes payload = 1; - {::_pbi::TcParser::FastBS1, - {10, 63, 0, PROTOBUF_FIELD_OFFSET(ClientData, _impl_.payload_)}}, - }}, {{ - 65535, 65535 - }}, {{ - // bytes payload = 1; - {PROTOBUF_FIELD_OFFSET(ClientData, _impl_.payload_), 0, 0, - (0 | ::_fl::kFcSingular | ::_fl::kBytes | ::_fl::kRepAString)}, - // repeated .io.deephaven.proto.backplane.grpc.TypedTicket references = 2; - {PROTOBUF_FIELD_OFFSET(ClientData, _impl_.references_), 0, 0, - (0 | ::_fl::kFcRepeated | ::_fl::kMessage | ::_fl::kTvTable)}, - }}, {{ - {::_pbi::TcParser::GetTable<::io::deephaven::proto::backplane::grpc::TypedTicket>()}, - }}, {{ - }}, -}; - -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; - - _impl_.references_.Clear(); - _impl_.payload_.ClearToEmpty(); - _internal_metadata_.Clear<::google::protobuf::UnknownFieldSet>(); -} - -#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) - ABSL_DCHECK_NE(&from, _this); - ::uint32_t cached_has_bits = 0; - (void) cached_has_bits; - - _this->_internal_mutable_references()->MergeFrom( - from._internal_references()); - if (!from._internal_payload().empty()) { - _this->_internal_set_payload(from._internal_payload()); - } - _this->_internal_metadata_.MergeFrom<::google::protobuf::UnknownFieldSet>(from._internal_metadata_); -} - -void ClientData::CopyFrom(const ClientData& from) { -// @@protoc_insertion_point(class_specific_copy_from_start:io.deephaven.proto.backplane.grpc.ClientData) - if (&from == this) return; - Clear(); - MergeFrom(from); -} - - -void ClientData::InternalSwap(ClientData* PROTOBUF_RESTRICT other) { - using std::swap; - auto* arena = GetArena(); - ABSL_DCHECK_EQ(arena, other->GetArena()); - _internal_metadata_.InternalSwap(&other->_internal_metadata_); - _impl_.references_.InternalSwap(&other->_impl_.references_); - ::_pbi::ArenaStringPtr::InternalSwap(&_impl_.payload_, &other->_impl_.payload_, arena); -} - -::google::protobuf::Metadata ClientData::GetMetadata() const { - return ::google::protobuf::Message::GetMetadataImpl(GetClassData()->full()); -} -// =================================================================== - -class ServerData::_Internal { - public: -}; - -void ServerData::clear_exported_references() { - ::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 ::io::deephaven::proto::backplane::grpc::ServerData& from_msg) - : exported_references_{visibility, arena, from.exported_references_}, - payload_(arena, from.payload_), - _cached_size_{0} {} - -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_, from); - - // @@protoc_insertion_point(copy_constructor:io.deephaven.proto.backplane.grpc.ServerData) -} -inline PROTOBUF_NDEBUG_INLINE ServerData::Impl_::Impl_( - ::google::protobuf::internal::InternalVisibility visibility, - ::google::protobuf::Arena* arena) - : exported_references_{visibility, arena}, - payload_(arena), - _cached_size_{0} {} - -inline void ServerData::SharedCtor(::_pb::Arena* arena) { - new (&_impl_) Impl_(internal_visibility(), arena); -} -ServerData::~ServerData() { - // @@protoc_insertion_point(destructor:io.deephaven.proto.backplane.grpc.ServerData) - _internal_metadata_.Delete<::google::protobuf::UnknownFieldSet>(); - SharedDtor(); -} -inline void ServerData::SharedDtor() { - ABSL_DCHECK(GetArena() == nullptr); - _impl_.payload_.Destroy(); - _impl_.~Impl_(); -} - -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_ = { - { - 0, // no _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::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, - {18, 63, 0, PROTOBUF_FIELD_OFFSET(ServerData, _impl_.exported_references_)}}, - // bytes payload = 1; - {::_pbi::TcParser::FastBS1, - {10, 63, 0, PROTOBUF_FIELD_OFFSET(ServerData, _impl_.payload_)}}, - }}, {{ - 65535, 65535 - }}, {{ - // bytes payload = 1; - {PROTOBUF_FIELD_OFFSET(ServerData, _impl_.payload_), 0, 0, - (0 | ::_fl::kFcSingular | ::_fl::kBytes | ::_fl::kRepAString)}, - // repeated .io.deephaven.proto.backplane.grpc.TypedTicket exported_references = 2; - {PROTOBUF_FIELD_OFFSET(ServerData, _impl_.exported_references_), 0, 0, - (0 | ::_fl::kFcRepeated | ::_fl::kMessage | ::_fl::kTvTable)}, - }}, {{ - {::_pbi::TcParser::GetTable<::io::deephaven::proto::backplane::grpc::TypedTicket>()}, - }}, {{ - }}, -}; - -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; - - _impl_.exported_references_.Clear(); - _impl_.payload_.ClearToEmpty(); - _internal_metadata_.Clear<::google::protobuf::UnknownFieldSet>(); -} - -#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) - ABSL_DCHECK_NE(&from, _this); - ::uint32_t cached_has_bits = 0; - (void) cached_has_bits; - - _this->_internal_mutable_exported_references()->MergeFrom( - from._internal_exported_references()); - if (!from._internal_payload().empty()) { - _this->_internal_set_payload(from._internal_payload()); - } - _this->_internal_metadata_.MergeFrom<::google::protobuf::UnknownFieldSet>(from._internal_metadata_); -} - -void ServerData::CopyFrom(const ServerData& from) { -// @@protoc_insertion_point(class_specific_copy_from_start:io.deephaven.proto.backplane.grpc.ServerData) - if (&from == this) return; - Clear(); - MergeFrom(from); -} - - -void ServerData::InternalSwap(ServerData* PROTOBUF_RESTRICT other) { - using std::swap; - auto* arena = GetArena(); - ABSL_DCHECK_EQ(arena, other->GetArena()); - _internal_metadata_.InternalSwap(&other->_internal_metadata_); - _impl_.exported_references_.InternalSwap(&other->_impl_.exported_references_); - ::_pbi::ArenaStringPtr::InternalSwap(&_impl_.payload_, &other->_impl_.payload_, arena); -} - -::google::protobuf::Metadata ServerData::GetMetadata() const { - 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_); -}; - -void StreamRequest::set_allocated_connect(::io::deephaven::proto::backplane::grpc::ConnectRequest* connect) { - ::google::protobuf::Arena* message_arena = GetArena(); - clear_message(); - if (connect) { - ::google::protobuf::Arena* submessage_arena = connect->GetArena(); - if (message_arena != submessage_arena) { - connect = ::google::protobuf::internal::GetOwnedMessage(message_arena, connect, submessage_arena); - } - set_has_connect(); - _impl_.message_.connect_ = connect; - } - // @@protoc_insertion_point(field_set_allocated:io.deephaven.proto.backplane.grpc.StreamRequest.connect) -} -void StreamRequest::set_allocated_data(::io::deephaven::proto::backplane::grpc::ClientData* data) { - ::google::protobuf::Arena* message_arena = GetArena(); - clear_message(); - if (data) { - ::google::protobuf::Arena* submessage_arena = data->GetArena(); - if (message_arena != submessage_arena) { - data = ::google::protobuf::internal::GetOwnedMessage(message_arena, data, submessage_arena); - } - set_has_data(); - _impl_.message_.data_ = data; - } - // @@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 ::io::deephaven::proto::backplane::grpc::StreamRequest& from_msg) - : message_{}, - _cached_size_{0}, - _oneof_case_{from._oneof_case_[0]} {} - -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_, from); - switch (message_case()) { - case MESSAGE_NOT_SET: - break; - case kConnect: - _impl_.message_.connect_ = ::google::protobuf::Message::CopyConstruct<::io::deephaven::proto::backplane::grpc::ConnectRequest>(arena, *from._impl_.message_.connect_); - break; - case kData: - _impl_.message_.data_ = ::google::protobuf::Message::CopyConstruct<::io::deephaven::proto::backplane::grpc::ClientData>(arena, *from._impl_.message_.data_); - break; - } - - // @@protoc_insertion_point(copy_constructor:io.deephaven.proto.backplane.grpc.StreamRequest) -} -inline PROTOBUF_NDEBUG_INLINE StreamRequest::Impl_::Impl_( - ::google::protobuf::internal::InternalVisibility visibility, - ::google::protobuf::Arena* arena) - : message_{}, - _cached_size_{0}, - _oneof_case_{} {} - -inline void StreamRequest::SharedCtor(::_pb::Arena* arena) { - new (&_impl_) Impl_(internal_visibility(), arena); -} -StreamRequest::~StreamRequest() { - // @@protoc_insertion_point(destructor:io.deephaven.proto.backplane.grpc.StreamRequest) - _internal_metadata_.Delete<::google::protobuf::UnknownFieldSet>(); - SharedDtor(); -} -inline void StreamRequest::SharedDtor() { - ABSL_DCHECK(GetArena() == nullptr); - if (has_message()) { - clear_message(); - } - _impl_.~Impl_(); -} - -void StreamRequest::clear_message() { -// @@protoc_insertion_point(one_of_clear_start:io.deephaven.proto.backplane.grpc.StreamRequest) - ::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; - } - case MESSAGE_NOT_SET: { - break; - } - } - _impl_._oneof_case_[0] = MESSAGE_NOT_SET; -} - - -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_ = { - { - 0, // no _has_bits_ - 0, // no _extensions_ - 2, 0, // max_field_number, fast_idx_mask - offsetof(decltype(_table_), field_lookup_table), - 4294967292, // skipmap - offsetof(decltype(_table_), field_entries), - 2, // num_field_entries - 2, // num_aux_entries - offsetof(decltype(_table_), 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::StreamRequest>(), // to_prefetch - #endif // PROTOBUF_PREFETCH_PARSE_TABLE - }, {{ - {::_pbi::TcParser::MiniParse, {}}, - }}, {{ - 65535, 65535 - }}, {{ - // .io.deephaven.proto.backplane.grpc.ConnectRequest connect = 1; - {PROTOBUF_FIELD_OFFSET(StreamRequest, _impl_.message_.connect_), _Internal::kOneofCaseOffset + 0, 0, - (0 | ::_fl::kFcOneof | ::_fl::kMessage | ::_fl::kTvTable)}, - // .io.deephaven.proto.backplane.grpc.ClientData data = 2; - {PROTOBUF_FIELD_OFFSET(StreamRequest, _impl_.message_.data_), _Internal::kOneofCaseOffset + 0, 1, - (0 | ::_fl::kFcOneof | ::_fl::kMessage | ::_fl::kTvTable)}, - }}, {{ - {::_pbi::TcParser::GetTable<::io::deephaven::proto::backplane::grpc::ConnectRequest>()}, - {::_pbi::TcParser::GetTable<::io::deephaven::proto::backplane::grpc::ClientData>()}, - }}, {{ - }}, -}; - -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; - - clear_message(); - _internal_metadata_.Clear<::google::protobuf::UnknownFieldSet>(); -} - -#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; - - 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; - } - - 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_); -} - -void StreamRequest::CopyFrom(const StreamRequest& from) { -// @@protoc_insertion_point(class_specific_copy_from_start:io.deephaven.proto.backplane.grpc.StreamRequest) - if (&from == this) return; - Clear(); - MergeFrom(from); -} - - -void StreamRequest::InternalSwap(StreamRequest* PROTOBUF_RESTRICT other) { - using std::swap; - _internal_metadata_.InternalSwap(&other->_internal_metadata_); - swap(_impl_.message_, other->_impl_.message_); - swap(_impl_._oneof_case_[0], other->_impl_._oneof_case_[0]); -} - -::google::protobuf::Metadata StreamRequest::GetMetadata() const { - 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_); -}; - -void StreamResponse::set_allocated_data(::io::deephaven::proto::backplane::grpc::ServerData* data) { - ::google::protobuf::Arena* message_arena = GetArena(); - clear_message(); - if (data) { - ::google::protobuf::Arena* submessage_arena = data->GetArena(); - if (message_arena != submessage_arena) { - data = ::google::protobuf::internal::GetOwnedMessage(message_arena, data, submessage_arena); - } - set_has_data(); - _impl_.message_.data_ = data; - } - // @@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 ::io::deephaven::proto::backplane::grpc::StreamResponse& from_msg) - : message_{}, - _cached_size_{0}, - _oneof_case_{from._oneof_case_[0]} {} - -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_, from); - switch (message_case()) { - case MESSAGE_NOT_SET: - break; - case kData: - _impl_.message_.data_ = ::google::protobuf::Message::CopyConstruct<::io::deephaven::proto::backplane::grpc::ServerData>(arena, *from._impl_.message_.data_); - break; - } - - // @@protoc_insertion_point(copy_constructor:io.deephaven.proto.backplane.grpc.StreamResponse) -} -inline PROTOBUF_NDEBUG_INLINE StreamResponse::Impl_::Impl_( - ::google::protobuf::internal::InternalVisibility visibility, - ::google::protobuf::Arena* arena) - : message_{}, - _cached_size_{0}, - _oneof_case_{} {} - -inline void StreamResponse::SharedCtor(::_pb::Arena* arena) { - new (&_impl_) Impl_(internal_visibility(), arena); -} -StreamResponse::~StreamResponse() { - // @@protoc_insertion_point(destructor:io.deephaven.proto.backplane.grpc.StreamResponse) - _internal_metadata_.Delete<::google::protobuf::UnknownFieldSet>(); - SharedDtor(); -} -inline void StreamResponse::SharedDtor() { - ABSL_DCHECK(GetArena() == nullptr); - if (has_message()) { - clear_message(); - } - _impl_.~Impl_(); -} - -void StreamResponse::clear_message() { -// @@protoc_insertion_point(one_of_clear_start:io.deephaven.proto.backplane.grpc.StreamResponse) - ::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; - } - case MESSAGE_NOT_SET: { - break; - } - } - _impl_._oneof_case_[0] = MESSAGE_NOT_SET; -} - - -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_ = { - { - 0, // no _has_bits_ - 0, // no _extensions_ - 1, 0, // max_field_number, fast_idx_mask - offsetof(decltype(_table_), field_lookup_table), - 4294967294, // skipmap - offsetof(decltype(_table_), field_entries), - 1, // num_field_entries - 1, // num_aux_entries - offsetof(decltype(_table_), 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::StreamResponse>(), // to_prefetch - #endif // PROTOBUF_PREFETCH_PARSE_TABLE - }, {{ - {::_pbi::TcParser::MiniParse, {}}, - }}, {{ - 65535, 65535 - }}, {{ - // .io.deephaven.proto.backplane.grpc.ServerData data = 1; - {PROTOBUF_FIELD_OFFSET(StreamResponse, _impl_.message_.data_), _Internal::kOneofCaseOffset + 0, 0, - (0 | ::_fl::kFcOneof | ::_fl::kMessage | ::_fl::kTvTable)}, - }}, {{ - {::_pbi::TcParser::GetTable<::io::deephaven::proto::backplane::grpc::ServerData>()}, - }}, {{ - }}, -}; - -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; - - clear_message(); - _internal_metadata_.Clear<::google::protobuf::UnknownFieldSet>(); -} - -#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; - - 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; - } - - 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_); -} - -void StreamResponse::CopyFrom(const StreamResponse& from) { -// @@protoc_insertion_point(class_specific_copy_from_start:io.deephaven.proto.backplane.grpc.StreamResponse) - if (&from == this) return; - Clear(); - MergeFrom(from); -} - - -void StreamResponse::InternalSwap(StreamResponse* PROTOBUF_RESTRICT other) { - using std::swap; - _internal_metadata_.InternalSwap(&other->_internal_metadata_); - swap(_impl_.message_, other->_impl_.message_); - swap(_impl_._oneof_case_[0], other->_impl_._oneof_case_[0]); -} - -::google::protobuf::Metadata StreamResponse::GetMetadata() const { - return ::google::protobuf::Message::GetMetadataImpl(GetClassData()->full()); -} -// =================================================================== - -class BrowserNextResponse::_Internal { - public: -}; - -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>( - from._internal_metadata_); - - // @@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 - {{ - }}, -}; - - - - - - - - -::google::protobuf::Metadata BrowserNextResponse::GetMetadata() const { - return ::google::protobuf::internal::ZeroFieldsBase::GetMetadataImpl(GetClassData()->full()); -} -// @@protoc_insertion_point(namespace_scope) -} // namespace grpc -} // namespace backplane -} // namespace proto -} // namespace deephaven -} // namespace io -namespace google { -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 deleted file mode 100644 index 8bd0766fac4..00000000000 --- a/cpp-client/deephaven/dhclient/proto/deephaven/proto/object.pb.h +++ /dev/null @@ -1,2568 +0,0 @@ -// 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 - -#ifndef GOOGLE_PROTOBUF_INCLUDED_deephaven_2fproto_2fobject_2eproto_2epb_2eh -#define GOOGLE_PROTOBUF_INCLUDED_deephaven_2fproto_2fobject_2eproto_2epb_2eh - -#include -#include -#include -#include - -#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" -#include "google/protobuf/generated_message_bases.h" -#include "google/protobuf/generated_message_tctable_decl.h" -#include "google/protobuf/generated_message_util.h" -#include "google/protobuf/metadata_lite.h" -#include "google/protobuf/generated_message_reflection.h" -#include "google/protobuf/message.h" -#include "google/protobuf/repeated_field.h" // IWYU pragma: export -#include "google/protobuf/extension_set.h" // IWYU pragma: export -#include "google/protobuf/unknown_field_set.h" -#include "deephaven/proto/ticket.pb.h" -// @@protoc_insertion_point(includes) - -// Must be included last. -#include "google/protobuf/port_def.inc" - -#define PROTOBUF_INTERNAL_EXPORT_deephaven_2fproto_2fobject_2eproto - -namespace google { -namespace protobuf { -namespace internal { -class AnyMetadata; -} // namespace internal -} // namespace protobuf -} // namespace google - -// Internal implementation detail -- do not use these members. -struct TableStruct_deephaven_2fproto_2fobject_2eproto { - static const ::uint32_t offsets[]; -}; -extern const ::google::protobuf::internal::DescriptorTable - descriptor_table_deephaven_2fproto_2fobject_2eproto; -namespace io { -namespace deephaven { -namespace proto { -namespace backplane { -namespace grpc { -class BrowserNextResponse; -struct BrowserNextResponseDefaultTypeInternal; -extern BrowserNextResponseDefaultTypeInternal _BrowserNextResponse_default_instance_; -class ClientData; -struct ClientDataDefaultTypeInternal; -extern ClientDataDefaultTypeInternal _ClientData_default_instance_; -class ConnectRequest; -struct ConnectRequestDefaultTypeInternal; -extern ConnectRequestDefaultTypeInternal _ConnectRequest_default_instance_; -class FetchObjectRequest; -struct FetchObjectRequestDefaultTypeInternal; -extern FetchObjectRequestDefaultTypeInternal _FetchObjectRequest_default_instance_; -class FetchObjectResponse; -struct FetchObjectResponseDefaultTypeInternal; -extern FetchObjectResponseDefaultTypeInternal _FetchObjectResponse_default_instance_; -class ServerData; -struct ServerDataDefaultTypeInternal; -extern ServerDataDefaultTypeInternal _ServerData_default_instance_; -class StreamRequest; -struct StreamRequestDefaultTypeInternal; -extern StreamRequestDefaultTypeInternal _StreamRequest_default_instance_; -class StreamResponse; -struct StreamResponseDefaultTypeInternal; -extern StreamResponseDefaultTypeInternal _StreamResponse_default_instance_; -} // namespace grpc -} // namespace backplane -} // namespace proto -} // namespace deephaven -} // namespace io -namespace google { -namespace protobuf { -} // namespace protobuf -} // namespace google - -namespace io { -namespace deephaven { -namespace proto { -namespace backplane { -namespace grpc { - -// =================================================================== - - -// ------------------------------------------------------------------- - -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) {} - inline BrowserNextResponse(BrowserNextResponse&& from) noexcept - : BrowserNextResponse(nullptr, std::move(from)) {} - inline BrowserNextResponse& operator=(const BrowserNextResponse& from) { - CopyFrom(from); - return *this; - } - inline BrowserNextResponse& operator=(BrowserNextResponse&& 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 BrowserNextResponse& default_instance() { - return *internal_default_instance(); - } - 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); } - 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 - if (GetArena() == other->GetArena()) { -#endif // !PROTOBUF_FORCE_COPY_IN_SWAP - InternalSwap(other); - } else { - ::google::protobuf::internal::GenericSwap(this, other); - } - } - void UnsafeArenaSwap(BrowserNextResponse* other) { - if (other == this) return; - ABSL_DCHECK(GetArena() == other->GetArena()); - InternalSwap(other); - } - - // implements Message ---------------------------------------------- - - 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) { - ::google::protobuf::internal::ZeroFieldsBase::CopyImpl(*this, from); - } - using ::google::protobuf::internal::ZeroFieldsBase::MergeFrom; - void MergeFrom(const BrowserNextResponse& 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.BrowserNextResponse"; } - - protected: - explicit BrowserNextResponse(::google::protobuf::Arena* arena); - BrowserNextResponse(::google::protobuf::Arena* arena, const BrowserNextResponse& from); - 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; - 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 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) */ { - public: - inline ServerData() : ServerData(nullptr) {} - ~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; - } - inline ServerData& operator=(ServerData&& 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 ServerData& default_instance() { - return *internal_default_instance(); - } - 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); } - 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 - if (GetArena() == other->GetArena()) { -#endif // !PROTOBUF_FORCE_COPY_IN_SWAP - InternalSwap(other); - } else { - ::google::protobuf::internal::GenericSwap(this, other); - } - } - void UnsafeArenaSwap(ServerData* other) { - if (other == this) return; - ABSL_DCHECK(GetArena() == other->GetArena()); - InternalSwap(other); - } - - // implements Message ---------------------------------------------- - - 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); } - - private: - static void MergeImpl( - ::google::protobuf::MessageLite& to_msg, - const ::google::protobuf::MessageLite& from_msg); - - 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; - #endif // PROTOBUF_CUSTOM_VTABLE - int GetCachedSize() const { return _impl_._cached_size_.Get(); } - - private: - void SharedCtor(::google::protobuf::Arena* arena); - void SharedDtor(); - void InternalSwap(ServerData* other); - private: - friend class ::google::protobuf::internal::AnyMetadata; - 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); - 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, - }; - // repeated .io.deephaven.proto.backplane.grpc.TypedTicket exported_references = 2; - int exported_references_size() const; - private: - int _internal_exported_references_size() const; - - 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(); - - 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; - // bytes payload = 1; - void clear_payload() ; - const std::string& payload() const; - template - void set_payload(Arg_&& arg, Args_... args); - std::string* mutable_payload(); - PROTOBUF_NODISCARD std::string* release_payload(); - void set_allocated_payload(std::string* value); - - private: - const std::string& _internal_payload() const; - inline PROTOBUF_ALWAYS_INLINE void _internal_set_payload( - const std::string& value); - std::string* _internal_mutable_payload(); - - public: - // @@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 - 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 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_; - PROTOBUF_TSAN_DECLARE_MEMBER - }; - 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) */ { - public: - inline FetchObjectResponse() : FetchObjectResponse(nullptr) {} - ~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; - } - inline FetchObjectResponse& operator=(FetchObjectResponse&& 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 FetchObjectResponse& default_instance() { - return *internal_default_instance(); - } - 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); } - 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 - if (GetArena() == other->GetArena()) { -#endif // !PROTOBUF_FORCE_COPY_IN_SWAP - InternalSwap(other); - } else { - ::google::protobuf::internal::GenericSwap(this, other); - } - } - void UnsafeArenaSwap(FetchObjectResponse* other) { - if (other == this) return; - ABSL_DCHECK(GetArena() == other->GetArena()); - InternalSwap(other); - } - - // implements Message ---------------------------------------------- - - 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); } - - private: - static void MergeImpl( - ::google::protobuf::MessageLite& to_msg, - const ::google::protobuf::MessageLite& from_msg); - - 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; - #endif // PROTOBUF_CUSTOM_VTABLE - int GetCachedSize() const { return _impl_._cached_size_.Get(); } - - private: - void SharedCtor(::google::protobuf::Arena* arena); - void SharedDtor(); - void InternalSwap(FetchObjectResponse* other); - private: - friend class ::google::protobuf::internal::AnyMetadata; - 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); - 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, - kDataFieldNumber = 2, - }; - // repeated .io.deephaven.proto.backplane.grpc.TypedTicket typed_export_ids = 3; - int typed_export_ids_size() const; - private: - int _internal_typed_export_ids_size() const; - - 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(); - - 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; - // string type = 1; - void clear_type() ; - const std::string& type() const; - template - void set_type(Arg_&& arg, Args_... args); - std::string* mutable_type(); - PROTOBUF_NODISCARD std::string* release_type(); - void set_allocated_type(std::string* value); - - private: - const std::string& _internal_type() const; - inline PROTOBUF_ALWAYS_INLINE void _internal_set_type( - const std::string& value); - std::string* _internal_mutable_type(); - - public: - // bytes data = 2; - void clear_data() ; - const std::string& data() const; - template - void set_data(Arg_&& arg, Args_... args); - std::string* mutable_data(); - PROTOBUF_NODISCARD std::string* release_data(); - void set_allocated_data(std::string* value); - - private: - const std::string& _internal_data() const; - inline PROTOBUF_ALWAYS_INLINE void _internal_set_data( - const std::string& value); - std::string* _internal_mutable_data(); - - public: - // @@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 - 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 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_; - mutable ::google::protobuf::internal::CachedSize _cached_size_; - PROTOBUF_TSAN_DECLARE_MEMBER - }; - 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) */ { - public: - inline FetchObjectRequest() : FetchObjectRequest(nullptr) {} - ~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; - } - inline FetchObjectRequest& operator=(FetchObjectRequest&& 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 FetchObjectRequest& default_instance() { - return *internal_default_instance(); - } - 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); } - 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 - if (GetArena() == other->GetArena()) { -#endif // !PROTOBUF_FORCE_COPY_IN_SWAP - InternalSwap(other); - } else { - ::google::protobuf::internal::GenericSwap(this, other); - } - } - void UnsafeArenaSwap(FetchObjectRequest* other) { - if (other == this) return; - ABSL_DCHECK(GetArena() == other->GetArena()); - InternalSwap(other); - } - - // implements Message ---------------------------------------------- - - 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); } - - private: - static void MergeImpl( - ::google::protobuf::MessageLite& to_msg, - const ::google::protobuf::MessageLite& from_msg); - - 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; - #endif // PROTOBUF_CUSTOM_VTABLE - int GetCachedSize() const { return _impl_._cached_size_.Get(); } - - private: - void SharedCtor(::google::protobuf::Arena* arena); - void SharedDtor(); - void InternalSwap(FetchObjectRequest* other); - private: - friend class ::google::protobuf::internal::AnyMetadata; - 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); - 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, - }; - // .io.deephaven.proto.backplane.grpc.TypedTicket source_id = 1; - bool has_source_id() const; - void clear_source_id() ; - const ::io::deephaven::proto::backplane::grpc::TypedTicket& source_id() const; - PROTOBUF_NODISCARD ::io::deephaven::proto::backplane::grpc::TypedTicket* release_source_id(); - ::io::deephaven::proto::backplane::grpc::TypedTicket* mutable_source_id(); - void set_allocated_source_id(::io::deephaven::proto::backplane::grpc::TypedTicket* value); - void unsafe_arena_set_allocated_source_id(::io::deephaven::proto::backplane::grpc::TypedTicket* value); - ::io::deephaven::proto::backplane::grpc::TypedTicket* unsafe_arena_release_source_id(); - - private: - const ::io::deephaven::proto::backplane::grpc::TypedTicket& _internal_source_id() const; - ::io::deephaven::proto::backplane::grpc::TypedTicket* _internal_mutable_source_id(); - - public: - // @@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 - 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 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_; - PROTOBUF_TSAN_DECLARE_MEMBER - }; - 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) */ { - public: - inline ConnectRequest() : ConnectRequest(nullptr) {} - ~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; - } - inline ConnectRequest& operator=(ConnectRequest&& 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 ConnectRequest& default_instance() { - return *internal_default_instance(); - } - 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); } - 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 - if (GetArena() == other->GetArena()) { -#endif // !PROTOBUF_FORCE_COPY_IN_SWAP - InternalSwap(other); - } else { - ::google::protobuf::internal::GenericSwap(this, other); - } - } - void UnsafeArenaSwap(ConnectRequest* other) { - if (other == this) return; - ABSL_DCHECK(GetArena() == other->GetArena()); - InternalSwap(other); - } - - // implements Message ---------------------------------------------- - - 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); } - - private: - static void MergeImpl( - ::google::protobuf::MessageLite& to_msg, - const ::google::protobuf::MessageLite& from_msg); - - 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; - #endif // PROTOBUF_CUSTOM_VTABLE - int GetCachedSize() const { return _impl_._cached_size_.Get(); } - - private: - void SharedCtor(::google::protobuf::Arena* arena); - void SharedDtor(); - void InternalSwap(ConnectRequest* other); - private: - friend class ::google::protobuf::internal::AnyMetadata; - 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); - 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, - }; - // .io.deephaven.proto.backplane.grpc.TypedTicket source_id = 1; - bool has_source_id() const; - void clear_source_id() ; - const ::io::deephaven::proto::backplane::grpc::TypedTicket& source_id() const; - PROTOBUF_NODISCARD ::io::deephaven::proto::backplane::grpc::TypedTicket* release_source_id(); - ::io::deephaven::proto::backplane::grpc::TypedTicket* mutable_source_id(); - void set_allocated_source_id(::io::deephaven::proto::backplane::grpc::TypedTicket* value); - void unsafe_arena_set_allocated_source_id(::io::deephaven::proto::backplane::grpc::TypedTicket* value); - ::io::deephaven::proto::backplane::grpc::TypedTicket* unsafe_arena_release_source_id(); - - private: - const ::io::deephaven::proto::backplane::grpc::TypedTicket& _internal_source_id() const; - ::io::deephaven::proto::backplane::grpc::TypedTicket* _internal_mutable_source_id(); - - public: - // @@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 - 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 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_; - PROTOBUF_TSAN_DECLARE_MEMBER - }; - 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) */ { - public: - inline ClientData() : ClientData(nullptr) {} - ~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; - } - inline ClientData& operator=(ClientData&& 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 ClientData& default_instance() { - return *internal_default_instance(); - } - 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); } - 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 - if (GetArena() == other->GetArena()) { -#endif // !PROTOBUF_FORCE_COPY_IN_SWAP - InternalSwap(other); - } else { - ::google::protobuf::internal::GenericSwap(this, other); - } - } - void UnsafeArenaSwap(ClientData* other) { - if (other == this) return; - ABSL_DCHECK(GetArena() == other->GetArena()); - InternalSwap(other); - } - - // implements Message ---------------------------------------------- - - 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); } - - private: - static void MergeImpl( - ::google::protobuf::MessageLite& to_msg, - const ::google::protobuf::MessageLite& from_msg); - - 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; - #endif // PROTOBUF_CUSTOM_VTABLE - int GetCachedSize() const { return _impl_._cached_size_.Get(); } - - private: - void SharedCtor(::google::protobuf::Arena* arena); - void SharedDtor(); - void InternalSwap(ClientData* other); - private: - friend class ::google::protobuf::internal::AnyMetadata; - 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); - 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, - }; - // repeated .io.deephaven.proto.backplane.grpc.TypedTicket references = 2; - int references_size() const; - private: - int _internal_references_size() const; - - 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(); - - 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; - // bytes payload = 1; - void clear_payload() ; - const std::string& payload() const; - template - void set_payload(Arg_&& arg, Args_... args); - std::string* mutable_payload(); - PROTOBUF_NODISCARD std::string* release_payload(); - void set_allocated_payload(std::string* value); - - private: - const std::string& _internal_payload() const; - inline PROTOBUF_ALWAYS_INLINE void _internal_set_payload( - const std::string& value); - std::string* _internal_mutable_payload(); - - public: - // @@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 - 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 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_; - PROTOBUF_TSAN_DECLARE_MEMBER - }; - 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) */ { - public: - inline StreamResponse() : StreamResponse(nullptr) {} - ~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; - } - inline StreamResponse& operator=(StreamResponse&& 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 StreamResponse& default_instance() { - return *internal_default_instance(); - } - enum MessageCase { - 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); } - 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 - if (GetArena() == other->GetArena()) { -#endif // !PROTOBUF_FORCE_COPY_IN_SWAP - InternalSwap(other); - } else { - ::google::protobuf::internal::GenericSwap(this, other); - } - } - void UnsafeArenaSwap(StreamResponse* other) { - if (other == this) return; - ABSL_DCHECK(GetArena() == other->GetArena()); - InternalSwap(other); - } - - // implements Message ---------------------------------------------- - - 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); } - - private: - static void MergeImpl( - ::google::protobuf::MessageLite& to_msg, - const ::google::protobuf::MessageLite& from_msg); - - 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; - #endif // PROTOBUF_CUSTOM_VTABLE - int GetCachedSize() const { return _impl_._cached_size_.Get(); } - - private: - void SharedCtor(::google::protobuf::Arena* arena); - void SharedDtor(); - void InternalSwap(StreamResponse* other); - private: - friend class ::google::protobuf::internal::AnyMetadata; - 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); - 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, - }; - // .io.deephaven.proto.backplane.grpc.ServerData data = 1; - bool has_data() const; - private: - bool _internal_has_data() const; - - public: - void clear_data() ; - const ::io::deephaven::proto::backplane::grpc::ServerData& data() const; - PROTOBUF_NODISCARD ::io::deephaven::proto::backplane::grpc::ServerData* release_data(); - ::io::deephaven::proto::backplane::grpc::ServerData* mutable_data(); - void set_allocated_data(::io::deephaven::proto::backplane::grpc::ServerData* value); - void unsafe_arena_set_allocated_data(::io::deephaven::proto::backplane::grpc::ServerData* value); - ::io::deephaven::proto::backplane::grpc::ServerData* unsafe_arena_release_data(); - - private: - const ::io::deephaven::proto::backplane::grpc::ServerData& _internal_data() const; - ::io::deephaven::proto::backplane::grpc::ServerData* _internal_mutable_data(); - - public: - void clear_message(); - MessageCase message_case() const; - // @@protoc_insertion_point(class_scope:io.deephaven.proto.backplane.grpc.StreamResponse) - 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 - 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 StreamResponse& from_msg); - union MessageUnion { - constexpr MessageUnion() : _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) */ { - public: - inline StreamRequest() : StreamRequest(nullptr) {} - ~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; - } - inline StreamRequest& operator=(StreamRequest&& 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 StreamRequest& default_instance() { - return *internal_default_instance(); - } - enum MessageCase { - kConnect = 1, - 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); } - 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 - if (GetArena() == other->GetArena()) { -#endif // !PROTOBUF_FORCE_COPY_IN_SWAP - InternalSwap(other); - } else { - ::google::protobuf::internal::GenericSwap(this, other); - } - } - void UnsafeArenaSwap(StreamRequest* other) { - if (other == this) return; - ABSL_DCHECK(GetArena() == other->GetArena()); - InternalSwap(other); - } - - // implements Message ---------------------------------------------- - - 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); } - - private: - static void MergeImpl( - ::google::protobuf::MessageLite& to_msg, - const ::google::protobuf::MessageLite& from_msg); - - 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; - #endif // PROTOBUF_CUSTOM_VTABLE - int GetCachedSize() const { return _impl_._cached_size_.Get(); } - - private: - void SharedCtor(::google::protobuf::Arena* arena); - void SharedDtor(); - void InternalSwap(StreamRequest* other); - private: - friend class ::google::protobuf::internal::AnyMetadata; - 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); - 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, - }; - // .io.deephaven.proto.backplane.grpc.ConnectRequest connect = 1; - bool has_connect() const; - private: - bool _internal_has_connect() const; - - public: - void clear_connect() ; - const ::io::deephaven::proto::backplane::grpc::ConnectRequest& connect() const; - PROTOBUF_NODISCARD ::io::deephaven::proto::backplane::grpc::ConnectRequest* release_connect(); - ::io::deephaven::proto::backplane::grpc::ConnectRequest* mutable_connect(); - void set_allocated_connect(::io::deephaven::proto::backplane::grpc::ConnectRequest* value); - void unsafe_arena_set_allocated_connect(::io::deephaven::proto::backplane::grpc::ConnectRequest* value); - ::io::deephaven::proto::backplane::grpc::ConnectRequest* unsafe_arena_release_connect(); - - private: - const ::io::deephaven::proto::backplane::grpc::ConnectRequest& _internal_connect() const; - ::io::deephaven::proto::backplane::grpc::ConnectRequest* _internal_mutable_connect(); - - public: - // .io.deephaven.proto.backplane.grpc.ClientData data = 2; - bool has_data() const; - private: - bool _internal_has_data() const; - - public: - void clear_data() ; - const ::io::deephaven::proto::backplane::grpc::ClientData& data() const; - PROTOBUF_NODISCARD ::io::deephaven::proto::backplane::grpc::ClientData* release_data(); - ::io::deephaven::proto::backplane::grpc::ClientData* mutable_data(); - void set_allocated_data(::io::deephaven::proto::backplane::grpc::ClientData* value); - void unsafe_arena_set_allocated_data(::io::deephaven::proto::backplane::grpc::ClientData* value); - ::io::deephaven::proto::backplane::grpc::ClientData* unsafe_arena_release_data(); - - private: - const ::io::deephaven::proto::backplane::grpc::ClientData& _internal_data() const; - ::io::deephaven::proto::backplane::grpc::ClientData* _internal_mutable_data(); - - public: - void clear_message(); - MessageCase message_case() const; - // @@protoc_insertion_point(class_scope:io.deephaven.proto.backplane.grpc.StreamRequest) - private: - 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 - 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 StreamRequest& from_msg); - union MessageUnion { - constexpr MessageUnion() : _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_; }; - friend struct ::TableStruct_deephaven_2fproto_2fobject_2eproto; -}; - -// =================================================================== - - - - -// =================================================================== - - -#ifdef __GNUC__ -#pragma GCC diagnostic push -#pragma GCC diagnostic ignored "-Wstrict-aliasing" -#endif // __GNUC__ -// ------------------------------------------------------------------- - -// FetchObjectRequest - -// .io.deephaven.proto.backplane.grpc.TypedTicket source_id = 1; -inline bool FetchObjectRequest::has_source_id() const { - bool value = (_impl_._has_bits_[0] & 0x00000001u) != 0; - PROTOBUF_ASSUME(!value || _impl_.source_id_ != nullptr); - return value; -} -inline const ::io::deephaven::proto::backplane::grpc::TypedTicket& FetchObjectRequest::_internal_source_id() const { - ::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_); -} -inline const ::io::deephaven::proto::backplane::grpc::TypedTicket& FetchObjectRequest::source_id() const ABSL_ATTRIBUTE_LIFETIME_BOUND { - // @@protoc_insertion_point(field_get:io.deephaven.proto.backplane.grpc.FetchObjectRequest.source_id) - return _internal_source_id(); -} -inline void FetchObjectRequest::unsafe_arena_set_allocated_source_id(::io::deephaven::proto::backplane::grpc::TypedTicket* value) { - ::google::protobuf::internal::TSanWrite(&_impl_); - if (GetArena() == nullptr) { - delete reinterpret_cast<::google::protobuf::MessageLite*>(_impl_.source_id_); - } - _impl_.source_id_ = reinterpret_cast<::io::deephaven::proto::backplane::grpc::TypedTicket*>(value); - if (value != nullptr) { - _impl_._has_bits_[0] |= 0x00000001u; - } else { - _impl_._has_bits_[0] &= ~0x00000001u; - } - // @@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() { - ::google::protobuf::internal::TSanWrite(&_impl_); - - _impl_._has_bits_[0] &= ~0x00000001u; - ::io::deephaven::proto::backplane::grpc::TypedTicket* released = _impl_.source_id_; - _impl_.source_id_ = nullptr; -#ifdef PROTOBUF_FORCE_COPY_IN_RELEASE - auto* old = reinterpret_cast<::google::protobuf::MessageLite*>(released); - released = ::google::protobuf::internal::DuplicateIfNonNull(released); - if (GetArena() == nullptr) { - delete old; - } -#else // PROTOBUF_FORCE_COPY_IN_RELEASE - if (GetArena() != nullptr) { - released = ::google::protobuf::internal::DuplicateIfNonNull(released); - } -#endif // !PROTOBUF_FORCE_COPY_IN_RELEASE - return released; -} -inline ::io::deephaven::proto::backplane::grpc::TypedTicket* FetchObjectRequest::unsafe_arena_release_source_id() { - ::google::protobuf::internal::TSanWrite(&_impl_); - // @@protoc_insertion_point(field_release:io.deephaven.proto.backplane.grpc.FetchObjectRequest.source_id) - - _impl_._has_bits_[0] &= ~0x00000001u; - ::io::deephaven::proto::backplane::grpc::TypedTicket* temp = _impl_.source_id_; - _impl_.source_id_ = nullptr; - return temp; -} -inline ::io::deephaven::proto::backplane::grpc::TypedTicket* FetchObjectRequest::_internal_mutable_source_id() { - ::google::protobuf::internal::TSanWrite(&_impl_); - if (_impl_.source_id_ == nullptr) { - 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(); - ::google::protobuf::internal::TSanWrite(&_impl_); - if (message_arena == nullptr) { - delete reinterpret_cast<::google::protobuf::MessageLite*>(_impl_.source_id_); - } - - if (value != nullptr) { - ::google::protobuf::Arena* submessage_arena = reinterpret_cast<::google::protobuf::MessageLite*>(value)->GetArena(); - if (message_arena != submessage_arena) { - value = ::google::protobuf::internal::GetOwnedMessage(message_arena, value, submessage_arena); - } - _impl_._has_bits_[0] |= 0x00000001u; - } else { - _impl_._has_bits_[0] &= ~0x00000001u; - } - - _impl_.source_id_ = reinterpret_cast<::io::deephaven::proto::backplane::grpc::TypedTicket*>(value); - // @@protoc_insertion_point(field_set_allocated:io.deephaven.proto.backplane.grpc.FetchObjectRequest.source_id) -} - -// ------------------------------------------------------------------- - -// FetchObjectResponse - -// string type = 1; -inline void FetchObjectResponse::clear_type() { - ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.type_.ClearToEmpty(); -} -inline const std::string& FetchObjectResponse::type() const - ABSL_ATTRIBUTE_LIFETIME_BOUND { - // @@protoc_insertion_point(field_get:io.deephaven.proto.backplane.grpc.FetchObjectResponse.type) - return _internal_type(); -} -template -inline PROTOBUF_ALWAYS_INLINE void FetchObjectResponse::set_type(Arg_&& arg, - Args_... args) { - ::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) -} -inline std::string* FetchObjectResponse::mutable_type() ABSL_ATTRIBUTE_LIFETIME_BOUND { - std::string* _s = _internal_mutable_type(); - // @@protoc_insertion_point(field_mutable:io.deephaven.proto.backplane.grpc.FetchObjectResponse.type) - return _s; -} -inline const std::string& FetchObjectResponse::_internal_type() const { - ::google::protobuf::internal::TSanRead(&_impl_); - return _impl_.type_.Get(); -} -inline void FetchObjectResponse::_internal_set_type(const std::string& value) { - ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.type_.Set(value, GetArena()); -} -inline std::string* FetchObjectResponse::_internal_mutable_type() { - ::google::protobuf::internal::TSanWrite(&_impl_); - return _impl_.type_.Mutable( GetArena()); -} -inline std::string* FetchObjectResponse::release_type() { - ::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) { - ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.type_.SetAllocated(value, GetArena()); - #ifdef PROTOBUF_FORCE_COPY_DEFAULT_STRING - if (_impl_.type_.IsDefault()) { - _impl_.type_.Set("", GetArena()); - } - #endif // PROTOBUF_FORCE_COPY_DEFAULT_STRING - // @@protoc_insertion_point(field_set_allocated:io.deephaven.proto.backplane.grpc.FetchObjectResponse.type) -} - -// bytes data = 2; -inline void FetchObjectResponse::clear_data() { - ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.data_.ClearToEmpty(); -} -inline const std::string& FetchObjectResponse::data() const - ABSL_ATTRIBUTE_LIFETIME_BOUND { - // @@protoc_insertion_point(field_get:io.deephaven.proto.backplane.grpc.FetchObjectResponse.data) - return _internal_data(); -} -template -inline PROTOBUF_ALWAYS_INLINE void FetchObjectResponse::set_data(Arg_&& arg, - Args_... args) { - ::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) -} -inline std::string* FetchObjectResponse::mutable_data() ABSL_ATTRIBUTE_LIFETIME_BOUND { - std::string* _s = _internal_mutable_data(); - // @@protoc_insertion_point(field_mutable:io.deephaven.proto.backplane.grpc.FetchObjectResponse.data) - return _s; -} -inline const std::string& FetchObjectResponse::_internal_data() const { - ::google::protobuf::internal::TSanRead(&_impl_); - return _impl_.data_.Get(); -} -inline void FetchObjectResponse::_internal_set_data(const std::string& value) { - ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.data_.Set(value, GetArena()); -} -inline std::string* FetchObjectResponse::_internal_mutable_data() { - ::google::protobuf::internal::TSanWrite(&_impl_); - return _impl_.data_.Mutable( GetArena()); -} -inline std::string* FetchObjectResponse::release_data() { - ::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) { - ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.data_.SetAllocated(value, GetArena()); - #ifdef PROTOBUF_FORCE_COPY_DEFAULT_STRING - if (_impl_.data_.IsDefault()) { - _impl_.data_.Set("", GetArena()); - } - #endif // PROTOBUF_FORCE_COPY_DEFAULT_STRING - // @@protoc_insertion_point(field_set_allocated:io.deephaven.proto.backplane.grpc.FetchObjectResponse.data) -} - -// repeated .io.deephaven.proto.backplane.grpc.TypedTicket typed_export_ids = 3; -inline int FetchObjectResponse::_internal_typed_export_ids_size() const { - return _internal_typed_export_ids().size(); -} -inline int FetchObjectResponse::typed_export_ids_size() const { - return _internal_typed_export_ids_size(); -} -inline ::io::deephaven::proto::backplane::grpc::TypedTicket* FetchObjectResponse::mutable_typed_export_ids(int index) - ABSL_ATTRIBUTE_LIFETIME_BOUND { - // @@protoc_insertion_point(field_mutable:io.deephaven.proto.backplane.grpc.FetchObjectResponse.typed_export_ids) - return _internal_mutable_typed_export_ids()->Mutable(index); -} -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) - ::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 - ABSL_ATTRIBUTE_LIFETIME_BOUND { - // @@protoc_insertion_point(field_get:io.deephaven.proto.backplane.grpc.FetchObjectResponse.typed_export_ids) - return _internal_typed_export_ids().Get(index); -} -inline ::io::deephaven::proto::backplane::grpc::TypedTicket* FetchObjectResponse::add_typed_export_ids() ABSL_ATTRIBUTE_LIFETIME_BOUND { - ::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; -} -inline const ::google::protobuf::RepeatedPtrField<::io::deephaven::proto::backplane::grpc::TypedTicket>& FetchObjectResponse::typed_export_ids() const - ABSL_ATTRIBUTE_LIFETIME_BOUND { - // @@protoc_insertion_point(field_list:io.deephaven.proto.backplane.grpc.FetchObjectResponse.typed_export_ids) - return _internal_typed_export_ids(); -} -inline const ::google::protobuf::RepeatedPtrField<::io::deephaven::proto::backplane::grpc::TypedTicket>& -FetchObjectResponse::_internal_typed_export_ids() const { - ::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() { - ::google::protobuf::internal::TSanRead(&_impl_); - return &_impl_.typed_export_ids_; -} - -// ------------------------------------------------------------------- - -// ConnectRequest - -// .io.deephaven.proto.backplane.grpc.TypedTicket source_id = 1; -inline bool ConnectRequest::has_source_id() const { - bool value = (_impl_._has_bits_[0] & 0x00000001u) != 0; - PROTOBUF_ASSUME(!value || _impl_.source_id_ != nullptr); - return value; -} -inline const ::io::deephaven::proto::backplane::grpc::TypedTicket& ConnectRequest::_internal_source_id() const { - ::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_); -} -inline const ::io::deephaven::proto::backplane::grpc::TypedTicket& ConnectRequest::source_id() const ABSL_ATTRIBUTE_LIFETIME_BOUND { - // @@protoc_insertion_point(field_get:io.deephaven.proto.backplane.grpc.ConnectRequest.source_id) - return _internal_source_id(); -} -inline void ConnectRequest::unsafe_arena_set_allocated_source_id(::io::deephaven::proto::backplane::grpc::TypedTicket* value) { - ::google::protobuf::internal::TSanWrite(&_impl_); - if (GetArena() == nullptr) { - delete reinterpret_cast<::google::protobuf::MessageLite*>(_impl_.source_id_); - } - _impl_.source_id_ = reinterpret_cast<::io::deephaven::proto::backplane::grpc::TypedTicket*>(value); - if (value != nullptr) { - _impl_._has_bits_[0] |= 0x00000001u; - } else { - _impl_._has_bits_[0] &= ~0x00000001u; - } - // @@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() { - ::google::protobuf::internal::TSanWrite(&_impl_); - - _impl_._has_bits_[0] &= ~0x00000001u; - ::io::deephaven::proto::backplane::grpc::TypedTicket* released = _impl_.source_id_; - _impl_.source_id_ = nullptr; -#ifdef PROTOBUF_FORCE_COPY_IN_RELEASE - auto* old = reinterpret_cast<::google::protobuf::MessageLite*>(released); - released = ::google::protobuf::internal::DuplicateIfNonNull(released); - if (GetArena() == nullptr) { - delete old; - } -#else // PROTOBUF_FORCE_COPY_IN_RELEASE - if (GetArena() != nullptr) { - released = ::google::protobuf::internal::DuplicateIfNonNull(released); - } -#endif // !PROTOBUF_FORCE_COPY_IN_RELEASE - return released; -} -inline ::io::deephaven::proto::backplane::grpc::TypedTicket* ConnectRequest::unsafe_arena_release_source_id() { - ::google::protobuf::internal::TSanWrite(&_impl_); - // @@protoc_insertion_point(field_release:io.deephaven.proto.backplane.grpc.ConnectRequest.source_id) - - _impl_._has_bits_[0] &= ~0x00000001u; - ::io::deephaven::proto::backplane::grpc::TypedTicket* temp = _impl_.source_id_; - _impl_.source_id_ = nullptr; - return temp; -} -inline ::io::deephaven::proto::backplane::grpc::TypedTicket* ConnectRequest::_internal_mutable_source_id() { - ::google::protobuf::internal::TSanWrite(&_impl_); - if (_impl_.source_id_ == nullptr) { - 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(); - ::google::protobuf::internal::TSanWrite(&_impl_); - if (message_arena == nullptr) { - delete reinterpret_cast<::google::protobuf::MessageLite*>(_impl_.source_id_); - } - - if (value != nullptr) { - ::google::protobuf::Arena* submessage_arena = reinterpret_cast<::google::protobuf::MessageLite*>(value)->GetArena(); - if (message_arena != submessage_arena) { - value = ::google::protobuf::internal::GetOwnedMessage(message_arena, value, submessage_arena); - } - _impl_._has_bits_[0] |= 0x00000001u; - } else { - _impl_._has_bits_[0] &= ~0x00000001u; - } - - _impl_.source_id_ = reinterpret_cast<::io::deephaven::proto::backplane::grpc::TypedTicket*>(value); - // @@protoc_insertion_point(field_set_allocated:io.deephaven.proto.backplane.grpc.ConnectRequest.source_id) -} - -// ------------------------------------------------------------------- - -// ClientData - -// bytes payload = 1; -inline void ClientData::clear_payload() { - ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.payload_.ClearToEmpty(); -} -inline const std::string& ClientData::payload() const - ABSL_ATTRIBUTE_LIFETIME_BOUND { - // @@protoc_insertion_point(field_get:io.deephaven.proto.backplane.grpc.ClientData.payload) - return _internal_payload(); -} -template -inline PROTOBUF_ALWAYS_INLINE void ClientData::set_payload(Arg_&& arg, - Args_... args) { - ::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) -} -inline std::string* ClientData::mutable_payload() ABSL_ATTRIBUTE_LIFETIME_BOUND { - std::string* _s = _internal_mutable_payload(); - // @@protoc_insertion_point(field_mutable:io.deephaven.proto.backplane.grpc.ClientData.payload) - return _s; -} -inline const std::string& ClientData::_internal_payload() const { - ::google::protobuf::internal::TSanRead(&_impl_); - return _impl_.payload_.Get(); -} -inline void ClientData::_internal_set_payload(const std::string& value) { - ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.payload_.Set(value, GetArena()); -} -inline std::string* ClientData::_internal_mutable_payload() { - ::google::protobuf::internal::TSanWrite(&_impl_); - return _impl_.payload_.Mutable( GetArena()); -} -inline std::string* ClientData::release_payload() { - ::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) { - ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.payload_.SetAllocated(value, GetArena()); - #ifdef PROTOBUF_FORCE_COPY_DEFAULT_STRING - if (_impl_.payload_.IsDefault()) { - _impl_.payload_.Set("", GetArena()); - } - #endif // PROTOBUF_FORCE_COPY_DEFAULT_STRING - // @@protoc_insertion_point(field_set_allocated:io.deephaven.proto.backplane.grpc.ClientData.payload) -} - -// repeated .io.deephaven.proto.backplane.grpc.TypedTicket references = 2; -inline int ClientData::_internal_references_size() const { - return _internal_references().size(); -} -inline int ClientData::references_size() const { - return _internal_references_size(); -} -inline ::io::deephaven::proto::backplane::grpc::TypedTicket* ClientData::mutable_references(int index) - ABSL_ATTRIBUTE_LIFETIME_BOUND { - // @@protoc_insertion_point(field_mutable:io.deephaven.proto.backplane.grpc.ClientData.references) - return _internal_mutable_references()->Mutable(index); -} -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) - ::google::protobuf::internal::TSanWrite(&_impl_); - return _internal_mutable_references(); -} -inline const ::io::deephaven::proto::backplane::grpc::TypedTicket& ClientData::references(int index) const - ABSL_ATTRIBUTE_LIFETIME_BOUND { - // @@protoc_insertion_point(field_get:io.deephaven.proto.backplane.grpc.ClientData.references) - return _internal_references().Get(index); -} -inline ::io::deephaven::proto::backplane::grpc::TypedTicket* ClientData::add_references() ABSL_ATTRIBUTE_LIFETIME_BOUND { - ::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; -} -inline const ::google::protobuf::RepeatedPtrField<::io::deephaven::proto::backplane::grpc::TypedTicket>& ClientData::references() const - ABSL_ATTRIBUTE_LIFETIME_BOUND { - // @@protoc_insertion_point(field_list:io.deephaven.proto.backplane.grpc.ClientData.references) - return _internal_references(); -} -inline const ::google::protobuf::RepeatedPtrField<::io::deephaven::proto::backplane::grpc::TypedTicket>& -ClientData::_internal_references() const { - ::google::protobuf::internal::TSanRead(&_impl_); - return _impl_.references_; -} -inline ::google::protobuf::RepeatedPtrField<::io::deephaven::proto::backplane::grpc::TypedTicket>* -ClientData::_internal_mutable_references() { - ::google::protobuf::internal::TSanRead(&_impl_); - return &_impl_.references_; -} - -// ------------------------------------------------------------------- - -// ServerData - -// bytes payload = 1; -inline void ServerData::clear_payload() { - ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.payload_.ClearToEmpty(); -} -inline const std::string& ServerData::payload() const - ABSL_ATTRIBUTE_LIFETIME_BOUND { - // @@protoc_insertion_point(field_get:io.deephaven.proto.backplane.grpc.ServerData.payload) - return _internal_payload(); -} -template -inline PROTOBUF_ALWAYS_INLINE void ServerData::set_payload(Arg_&& arg, - Args_... args) { - ::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) -} -inline std::string* ServerData::mutable_payload() ABSL_ATTRIBUTE_LIFETIME_BOUND { - std::string* _s = _internal_mutable_payload(); - // @@protoc_insertion_point(field_mutable:io.deephaven.proto.backplane.grpc.ServerData.payload) - return _s; -} -inline const std::string& ServerData::_internal_payload() const { - ::google::protobuf::internal::TSanRead(&_impl_); - return _impl_.payload_.Get(); -} -inline void ServerData::_internal_set_payload(const std::string& value) { - ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.payload_.Set(value, GetArena()); -} -inline std::string* ServerData::_internal_mutable_payload() { - ::google::protobuf::internal::TSanWrite(&_impl_); - return _impl_.payload_.Mutable( GetArena()); -} -inline std::string* ServerData::release_payload() { - ::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) { - ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.payload_.SetAllocated(value, GetArena()); - #ifdef PROTOBUF_FORCE_COPY_DEFAULT_STRING - if (_impl_.payload_.IsDefault()) { - _impl_.payload_.Set("", GetArena()); - } - #endif // PROTOBUF_FORCE_COPY_DEFAULT_STRING - // @@protoc_insertion_point(field_set_allocated:io.deephaven.proto.backplane.grpc.ServerData.payload) -} - -// repeated .io.deephaven.proto.backplane.grpc.TypedTicket exported_references = 2; -inline int ServerData::_internal_exported_references_size() const { - return _internal_exported_references().size(); -} -inline int ServerData::exported_references_size() const { - return _internal_exported_references_size(); -} -inline ::io::deephaven::proto::backplane::grpc::TypedTicket* ServerData::mutable_exported_references(int index) - ABSL_ATTRIBUTE_LIFETIME_BOUND { - // @@protoc_insertion_point(field_mutable:io.deephaven.proto.backplane.grpc.ServerData.exported_references) - return _internal_mutable_exported_references()->Mutable(index); -} -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) - ::google::protobuf::internal::TSanWrite(&_impl_); - return _internal_mutable_exported_references(); -} -inline const ::io::deephaven::proto::backplane::grpc::TypedTicket& ServerData::exported_references(int index) const - ABSL_ATTRIBUTE_LIFETIME_BOUND { - // @@protoc_insertion_point(field_get:io.deephaven.proto.backplane.grpc.ServerData.exported_references) - return _internal_exported_references().Get(index); -} -inline ::io::deephaven::proto::backplane::grpc::TypedTicket* ServerData::add_exported_references() ABSL_ATTRIBUTE_LIFETIME_BOUND { - ::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; -} -inline const ::google::protobuf::RepeatedPtrField<::io::deephaven::proto::backplane::grpc::TypedTicket>& ServerData::exported_references() const - ABSL_ATTRIBUTE_LIFETIME_BOUND { - // @@protoc_insertion_point(field_list:io.deephaven.proto.backplane.grpc.ServerData.exported_references) - return _internal_exported_references(); -} -inline const ::google::protobuf::RepeatedPtrField<::io::deephaven::proto::backplane::grpc::TypedTicket>& -ServerData::_internal_exported_references() const { - ::google::protobuf::internal::TSanRead(&_impl_); - return _impl_.exported_references_; -} -inline ::google::protobuf::RepeatedPtrField<::io::deephaven::proto::backplane::grpc::TypedTicket>* -ServerData::_internal_mutable_exported_references() { - ::google::protobuf::internal::TSanRead(&_impl_); - return &_impl_.exported_references_; -} - -// ------------------------------------------------------------------- - -// StreamRequest - -// .io.deephaven.proto.backplane.grpc.ConnectRequest connect = 1; -inline bool StreamRequest::has_connect() const { - return message_case() == kConnect; -} -inline bool StreamRequest::_internal_has_connect() const { - return message_case() == kConnect; -} -inline void StreamRequest::set_has_connect() { - _impl_._oneof_case_[0] = kConnect; -} -inline void StreamRequest::clear_connect() { - ::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(); - } -} -inline ::io::deephaven::proto::backplane::grpc::ConnectRequest* StreamRequest::release_connect() { - // @@protoc_insertion_point(field_release:io.deephaven.proto.backplane.grpc.StreamRequest.connect) - if (message_case() == kConnect) { - clear_has_message(); - auto* temp = _impl_.message_.connect_; - if (GetArena() != nullptr) { - temp = ::google::protobuf::internal::DuplicateIfNonNull(temp); - } - _impl_.message_.connect_ = nullptr; - return temp; - } else { - return nullptr; - } -} -inline const ::io::deephaven::proto::backplane::grpc::ConnectRequest& StreamRequest::_internal_connect() const { - return message_case() == kConnect ? *_impl_.message_.connect_ : reinterpret_cast<::io::deephaven::proto::backplane::grpc::ConnectRequest&>(::io::deephaven::proto::backplane::grpc::_ConnectRequest_default_instance_); -} -inline const ::io::deephaven::proto::backplane::grpc::ConnectRequest& StreamRequest::connect() const ABSL_ATTRIBUTE_LIFETIME_BOUND { - // @@protoc_insertion_point(field_get:io.deephaven.proto.backplane.grpc.StreamRequest.connect) - return _internal_connect(); -} -inline ::io::deephaven::proto::backplane::grpc::ConnectRequest* StreamRequest::unsafe_arena_release_connect() { - // @@protoc_insertion_point(field_unsafe_arena_release:io.deephaven.proto.backplane.grpc.StreamRequest.connect) - if (message_case() == kConnect) { - clear_has_message(); - auto* temp = _impl_.message_.connect_; - _impl_.message_.connect_ = nullptr; - return temp; - } else { - return nullptr; - } -} -inline void StreamRequest::unsafe_arena_set_allocated_connect(::io::deephaven::proto::backplane::grpc::ConnectRequest* value) { - // We rely on the oneof clear method to free the earlier contents - // of this oneof. We can directly use the pointer we're given to - // set the new value. - clear_message(); - if (value) { - set_has_connect(); - _impl_.message_.connect_ = value; - } - // @@protoc_insertion_point(field_unsafe_arena_set_allocated:io.deephaven.proto.backplane.grpc.StreamRequest.connect) -} -inline ::io::deephaven::proto::backplane::grpc::ConnectRequest* StreamRequest::_internal_mutable_connect() { - if (message_case() != kConnect) { - clear_message(); - set_has_connect(); - _impl_.message_.connect_ = - ::google::protobuf::Message::DefaultConstruct<::io::deephaven::proto::backplane::grpc::ConnectRequest>(GetArena()); - } - return _impl_.message_.connect_; -} -inline ::io::deephaven::proto::backplane::grpc::ConnectRequest* StreamRequest::mutable_connect() ABSL_ATTRIBUTE_LIFETIME_BOUND { - ::io::deephaven::proto::backplane::grpc::ConnectRequest* _msg = _internal_mutable_connect(); - // @@protoc_insertion_point(field_mutable:io.deephaven.proto.backplane.grpc.StreamRequest.connect) - return _msg; -} - -// .io.deephaven.proto.backplane.grpc.ClientData data = 2; -inline bool StreamRequest::has_data() const { - return message_case() == kData; -} -inline bool StreamRequest::_internal_has_data() const { - return message_case() == kData; -} -inline void StreamRequest::set_has_data() { - _impl_._oneof_case_[0] = kData; -} -inline void StreamRequest::clear_data() { - ::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(); - } -} -inline ::io::deephaven::proto::backplane::grpc::ClientData* StreamRequest::release_data() { - // @@protoc_insertion_point(field_release:io.deephaven.proto.backplane.grpc.StreamRequest.data) - if (message_case() == kData) { - clear_has_message(); - auto* temp = _impl_.message_.data_; - if (GetArena() != nullptr) { - temp = ::google::protobuf::internal::DuplicateIfNonNull(temp); - } - _impl_.message_.data_ = nullptr; - return temp; - } else { - return nullptr; - } -} -inline const ::io::deephaven::proto::backplane::grpc::ClientData& StreamRequest::_internal_data() const { - return message_case() == kData ? *_impl_.message_.data_ : reinterpret_cast<::io::deephaven::proto::backplane::grpc::ClientData&>(::io::deephaven::proto::backplane::grpc::_ClientData_default_instance_); -} -inline const ::io::deephaven::proto::backplane::grpc::ClientData& StreamRequest::data() const ABSL_ATTRIBUTE_LIFETIME_BOUND { - // @@protoc_insertion_point(field_get:io.deephaven.proto.backplane.grpc.StreamRequest.data) - return _internal_data(); -} -inline ::io::deephaven::proto::backplane::grpc::ClientData* StreamRequest::unsafe_arena_release_data() { - // @@protoc_insertion_point(field_unsafe_arena_release:io.deephaven.proto.backplane.grpc.StreamRequest.data) - if (message_case() == kData) { - clear_has_message(); - auto* temp = _impl_.message_.data_; - _impl_.message_.data_ = nullptr; - return temp; - } else { - return nullptr; - } -} -inline void StreamRequest::unsafe_arena_set_allocated_data(::io::deephaven::proto::backplane::grpc::ClientData* value) { - // We rely on the oneof clear method to free the earlier contents - // of this oneof. We can directly use the pointer we're given to - // set the new value. - clear_message(); - if (value) { - set_has_data(); - _impl_.message_.data_ = value; - } - // @@protoc_insertion_point(field_unsafe_arena_set_allocated:io.deephaven.proto.backplane.grpc.StreamRequest.data) -} -inline ::io::deephaven::proto::backplane::grpc::ClientData* StreamRequest::_internal_mutable_data() { - if (message_case() != kData) { - clear_message(); - set_has_data(); - _impl_.message_.data_ = - ::google::protobuf::Message::DefaultConstruct<::io::deephaven::proto::backplane::grpc::ClientData>(GetArena()); - } - return _impl_.message_.data_; -} -inline ::io::deephaven::proto::backplane::grpc::ClientData* StreamRequest::mutable_data() ABSL_ATTRIBUTE_LIFETIME_BOUND { - ::io::deephaven::proto::backplane::grpc::ClientData* _msg = _internal_mutable_data(); - // @@protoc_insertion_point(field_mutable:io.deephaven.proto.backplane.grpc.StreamRequest.data) - return _msg; -} - -inline bool StreamRequest::has_message() const { - return message_case() != MESSAGE_NOT_SET; -} -inline void StreamRequest::clear_has_message() { - _impl_._oneof_case_[0] = MESSAGE_NOT_SET; -} -inline StreamRequest::MessageCase StreamRequest::message_case() const { - return StreamRequest::MessageCase(_impl_._oneof_case_[0]); -} -// ------------------------------------------------------------------- - -// StreamResponse - -// .io.deephaven.proto.backplane.grpc.ServerData data = 1; -inline bool StreamResponse::has_data() const { - return message_case() == kData; -} -inline bool StreamResponse::_internal_has_data() const { - return message_case() == kData; -} -inline void StreamResponse::set_has_data() { - _impl_._oneof_case_[0] = kData; -} -inline void StreamResponse::clear_data() { - ::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(); - } -} -inline ::io::deephaven::proto::backplane::grpc::ServerData* StreamResponse::release_data() { - // @@protoc_insertion_point(field_release:io.deephaven.proto.backplane.grpc.StreamResponse.data) - if (message_case() == kData) { - clear_has_message(); - auto* temp = _impl_.message_.data_; - if (GetArena() != nullptr) { - temp = ::google::protobuf::internal::DuplicateIfNonNull(temp); - } - _impl_.message_.data_ = nullptr; - return temp; - } else { - return nullptr; - } -} -inline const ::io::deephaven::proto::backplane::grpc::ServerData& StreamResponse::_internal_data() const { - return message_case() == kData ? *_impl_.message_.data_ : reinterpret_cast<::io::deephaven::proto::backplane::grpc::ServerData&>(::io::deephaven::proto::backplane::grpc::_ServerData_default_instance_); -} -inline const ::io::deephaven::proto::backplane::grpc::ServerData& StreamResponse::data() const ABSL_ATTRIBUTE_LIFETIME_BOUND { - // @@protoc_insertion_point(field_get:io.deephaven.proto.backplane.grpc.StreamResponse.data) - return _internal_data(); -} -inline ::io::deephaven::proto::backplane::grpc::ServerData* StreamResponse::unsafe_arena_release_data() { - // @@protoc_insertion_point(field_unsafe_arena_release:io.deephaven.proto.backplane.grpc.StreamResponse.data) - if (message_case() == kData) { - clear_has_message(); - auto* temp = _impl_.message_.data_; - _impl_.message_.data_ = nullptr; - return temp; - } else { - return nullptr; - } -} -inline void StreamResponse::unsafe_arena_set_allocated_data(::io::deephaven::proto::backplane::grpc::ServerData* value) { - // We rely on the oneof clear method to free the earlier contents - // of this oneof. We can directly use the pointer we're given to - // set the new value. - clear_message(); - if (value) { - set_has_data(); - _impl_.message_.data_ = value; - } - // @@protoc_insertion_point(field_unsafe_arena_set_allocated:io.deephaven.proto.backplane.grpc.StreamResponse.data) -} -inline ::io::deephaven::proto::backplane::grpc::ServerData* StreamResponse::_internal_mutable_data() { - if (message_case() != kData) { - clear_message(); - set_has_data(); - _impl_.message_.data_ = - ::google::protobuf::Message::DefaultConstruct<::io::deephaven::proto::backplane::grpc::ServerData>(GetArena()); - } - return _impl_.message_.data_; -} -inline ::io::deephaven::proto::backplane::grpc::ServerData* StreamResponse::mutable_data() ABSL_ATTRIBUTE_LIFETIME_BOUND { - ::io::deephaven::proto::backplane::grpc::ServerData* _msg = _internal_mutable_data(); - // @@protoc_insertion_point(field_mutable:io.deephaven.proto.backplane.grpc.StreamResponse.data) - return _msg; -} - -inline bool StreamResponse::has_message() const { - return message_case() != MESSAGE_NOT_SET; -} -inline void StreamResponse::clear_has_message() { - _impl_._oneof_case_[0] = MESSAGE_NOT_SET; -} -inline StreamResponse::MessageCase StreamResponse::message_case() const { - return StreamResponse::MessageCase(_impl_._oneof_case_[0]); -} -// ------------------------------------------------------------------- - -// BrowserNextResponse - -#ifdef __GNUC__ -#pragma GCC diagnostic pop -#endif // __GNUC__ - -// @@protoc_insertion_point(namespace_scope) -} // namespace grpc -} // namespace backplane -} // namespace proto -} // namespace deephaven -} // namespace io - - -// @@protoc_insertion_point(global_scope) - -#include "google/protobuf/port_undef.inc" - -#endif // GOOGLE_PROTOBUF_INCLUDED_deephaven_2fproto_2fobject_2eproto_2epb_2eh diff --git a/cpp-client/deephaven/dhclient/proto/deephaven/proto/partitionedtable.grpc.pb.cc b/cpp-client/deephaven/dhclient/proto/deephaven/proto/partitionedtable.grpc.pb.cc deleted file mode 100644 index 61e06242d87..00000000000 --- a/cpp-client/deephaven/dhclient/proto/deephaven/proto/partitionedtable.grpc.pb.cc +++ /dev/null @@ -1,178 +0,0 @@ -// Generated by the gRPC C++ plugin. -// If you make any local change, they will be lost. -// source: deephaven/proto/partitionedtable.proto - -#include "deephaven/proto/partitionedtable.pb.h" -#include "deephaven/proto/partitionedtable.grpc.pb.h" - -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -namespace io { -namespace deephaven { -namespace proto { -namespace backplane { -namespace grpc { - -static const char* PartitionedTableService_method_names[] = { - "/io.deephaven.proto.backplane.grpc.PartitionedTableService/PartitionBy", - "/io.deephaven.proto.backplane.grpc.PartitionedTableService/Merge", - "/io.deephaven.proto.backplane.grpc.PartitionedTableService/GetTable", -}; - -std::unique_ptr< PartitionedTableService::Stub> PartitionedTableService::NewStub(const std::shared_ptr< ::grpc::ChannelInterface>& channel, const ::grpc::StubOptions& options) { - (void)options; - std::unique_ptr< PartitionedTableService::Stub> stub(new PartitionedTableService::Stub(channel, options)); - return stub; -} - -PartitionedTableService::Stub::Stub(const std::shared_ptr< ::grpc::ChannelInterface>& channel, const ::grpc::StubOptions& options) - : channel_(channel), rpcmethod_PartitionBy_(PartitionedTableService_method_names[0], options.suffix_for_stats(),::grpc::internal::RpcMethod::NORMAL_RPC, channel) - , rpcmethod_Merge_(PartitionedTableService_method_names[1], options.suffix_for_stats(),::grpc::internal::RpcMethod::NORMAL_RPC, channel) - , rpcmethod_GetTable_(PartitionedTableService_method_names[2], options.suffix_for_stats(),::grpc::internal::RpcMethod::NORMAL_RPC, channel) - {} - -::grpc::Status PartitionedTableService::Stub::PartitionBy(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::PartitionByRequest& request, ::io::deephaven::proto::backplane::grpc::PartitionByResponse* response) { - return ::grpc::internal::BlockingUnaryCall< ::io::deephaven::proto::backplane::grpc::PartitionByRequest, ::io::deephaven::proto::backplane::grpc::PartitionByResponse, ::grpc::protobuf::MessageLite, ::grpc::protobuf::MessageLite>(channel_.get(), rpcmethod_PartitionBy_, context, request, response); -} - -void PartitionedTableService::Stub::async::PartitionBy(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::PartitionByRequest* request, ::io::deephaven::proto::backplane::grpc::PartitionByResponse* response, std::function f) { - ::grpc::internal::CallbackUnaryCall< ::io::deephaven::proto::backplane::grpc::PartitionByRequest, ::io::deephaven::proto::backplane::grpc::PartitionByResponse, ::grpc::protobuf::MessageLite, ::grpc::protobuf::MessageLite>(stub_->channel_.get(), stub_->rpcmethod_PartitionBy_, context, request, response, std::move(f)); -} - -void PartitionedTableService::Stub::async::PartitionBy(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::PartitionByRequest* request, ::io::deephaven::proto::backplane::grpc::PartitionByResponse* response, ::grpc::ClientUnaryReactor* reactor) { - ::grpc::internal::ClientCallbackUnaryFactory::Create< ::grpc::protobuf::MessageLite, ::grpc::protobuf::MessageLite>(stub_->channel_.get(), stub_->rpcmethod_PartitionBy_, context, request, response, reactor); -} - -::grpc::ClientAsyncResponseReader< ::io::deephaven::proto::backplane::grpc::PartitionByResponse>* PartitionedTableService::Stub::PrepareAsyncPartitionByRaw(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::PartitionByRequest& request, ::grpc::CompletionQueue* cq) { - return ::grpc::internal::ClientAsyncResponseReaderHelper::Create< ::io::deephaven::proto::backplane::grpc::PartitionByResponse, ::io::deephaven::proto::backplane::grpc::PartitionByRequest, ::grpc::protobuf::MessageLite, ::grpc::protobuf::MessageLite>(channel_.get(), cq, rpcmethod_PartitionBy_, context, request); -} - -::grpc::ClientAsyncResponseReader< ::io::deephaven::proto::backplane::grpc::PartitionByResponse>* PartitionedTableService::Stub::AsyncPartitionByRaw(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::PartitionByRequest& request, ::grpc::CompletionQueue* cq) { - auto* result = - this->PrepareAsyncPartitionByRaw(context, request, cq); - result->StartCall(); - return result; -} - -::grpc::Status PartitionedTableService::Stub::Merge(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::MergeRequest& request, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse* response) { - return ::grpc::internal::BlockingUnaryCall< ::io::deephaven::proto::backplane::grpc::MergeRequest, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse, ::grpc::protobuf::MessageLite, ::grpc::protobuf::MessageLite>(channel_.get(), rpcmethod_Merge_, context, request, response); -} - -void PartitionedTableService::Stub::async::Merge(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::MergeRequest* request, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse* response, std::function f) { - ::grpc::internal::CallbackUnaryCall< ::io::deephaven::proto::backplane::grpc::MergeRequest, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse, ::grpc::protobuf::MessageLite, ::grpc::protobuf::MessageLite>(stub_->channel_.get(), stub_->rpcmethod_Merge_, context, request, response, std::move(f)); -} - -void PartitionedTableService::Stub::async::Merge(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::MergeRequest* request, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse* response, ::grpc::ClientUnaryReactor* reactor) { - ::grpc::internal::ClientCallbackUnaryFactory::Create< ::grpc::protobuf::MessageLite, ::grpc::protobuf::MessageLite>(stub_->channel_.get(), stub_->rpcmethod_Merge_, context, request, response, reactor); -} - -::grpc::ClientAsyncResponseReader< ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse>* PartitionedTableService::Stub::PrepareAsyncMergeRaw(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::MergeRequest& request, ::grpc::CompletionQueue* cq) { - return ::grpc::internal::ClientAsyncResponseReaderHelper::Create< ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse, ::io::deephaven::proto::backplane::grpc::MergeRequest, ::grpc::protobuf::MessageLite, ::grpc::protobuf::MessageLite>(channel_.get(), cq, rpcmethod_Merge_, context, request); -} - -::grpc::ClientAsyncResponseReader< ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse>* PartitionedTableService::Stub::AsyncMergeRaw(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::MergeRequest& request, ::grpc::CompletionQueue* cq) { - auto* result = - this->PrepareAsyncMergeRaw(context, request, cq); - result->StartCall(); - return result; -} - -::grpc::Status PartitionedTableService::Stub::GetTable(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::GetTableRequest& request, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse* response) { - return ::grpc::internal::BlockingUnaryCall< ::io::deephaven::proto::backplane::grpc::GetTableRequest, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse, ::grpc::protobuf::MessageLite, ::grpc::protobuf::MessageLite>(channel_.get(), rpcmethod_GetTable_, context, request, response); -} - -void PartitionedTableService::Stub::async::GetTable(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::GetTableRequest* request, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse* response, std::function f) { - ::grpc::internal::CallbackUnaryCall< ::io::deephaven::proto::backplane::grpc::GetTableRequest, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse, ::grpc::protobuf::MessageLite, ::grpc::protobuf::MessageLite>(stub_->channel_.get(), stub_->rpcmethod_GetTable_, context, request, response, std::move(f)); -} - -void PartitionedTableService::Stub::async::GetTable(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::GetTableRequest* request, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse* response, ::grpc::ClientUnaryReactor* reactor) { - ::grpc::internal::ClientCallbackUnaryFactory::Create< ::grpc::protobuf::MessageLite, ::grpc::protobuf::MessageLite>(stub_->channel_.get(), stub_->rpcmethod_GetTable_, context, request, response, reactor); -} - -::grpc::ClientAsyncResponseReader< ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse>* PartitionedTableService::Stub::PrepareAsyncGetTableRaw(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::GetTableRequest& request, ::grpc::CompletionQueue* cq) { - return ::grpc::internal::ClientAsyncResponseReaderHelper::Create< ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse, ::io::deephaven::proto::backplane::grpc::GetTableRequest, ::grpc::protobuf::MessageLite, ::grpc::protobuf::MessageLite>(channel_.get(), cq, rpcmethod_GetTable_, context, request); -} - -::grpc::ClientAsyncResponseReader< ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse>* PartitionedTableService::Stub::AsyncGetTableRaw(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::GetTableRequest& request, ::grpc::CompletionQueue* cq) { - auto* result = - this->PrepareAsyncGetTableRaw(context, request, cq); - result->StartCall(); - return result; -} - -PartitionedTableService::Service::Service() { - AddMethod(new ::grpc::internal::RpcServiceMethod( - PartitionedTableService_method_names[0], - ::grpc::internal::RpcMethod::NORMAL_RPC, - new ::grpc::internal::RpcMethodHandler< PartitionedTableService::Service, ::io::deephaven::proto::backplane::grpc::PartitionByRequest, ::io::deephaven::proto::backplane::grpc::PartitionByResponse, ::grpc::protobuf::MessageLite, ::grpc::protobuf::MessageLite>( - [](PartitionedTableService::Service* service, - ::grpc::ServerContext* ctx, - const ::io::deephaven::proto::backplane::grpc::PartitionByRequest* req, - ::io::deephaven::proto::backplane::grpc::PartitionByResponse* resp) { - return service->PartitionBy(ctx, req, resp); - }, this))); - AddMethod(new ::grpc::internal::RpcServiceMethod( - PartitionedTableService_method_names[1], - ::grpc::internal::RpcMethod::NORMAL_RPC, - new ::grpc::internal::RpcMethodHandler< PartitionedTableService::Service, ::io::deephaven::proto::backplane::grpc::MergeRequest, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse, ::grpc::protobuf::MessageLite, ::grpc::protobuf::MessageLite>( - [](PartitionedTableService::Service* service, - ::grpc::ServerContext* ctx, - const ::io::deephaven::proto::backplane::grpc::MergeRequest* req, - ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse* resp) { - return service->Merge(ctx, req, resp); - }, this))); - AddMethod(new ::grpc::internal::RpcServiceMethod( - PartitionedTableService_method_names[2], - ::grpc::internal::RpcMethod::NORMAL_RPC, - new ::grpc::internal::RpcMethodHandler< PartitionedTableService::Service, ::io::deephaven::proto::backplane::grpc::GetTableRequest, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse, ::grpc::protobuf::MessageLite, ::grpc::protobuf::MessageLite>( - [](PartitionedTableService::Service* service, - ::grpc::ServerContext* ctx, - const ::io::deephaven::proto::backplane::grpc::GetTableRequest* req, - ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse* resp) { - return service->GetTable(ctx, req, resp); - }, this))); -} - -PartitionedTableService::Service::~Service() { -} - -::grpc::Status PartitionedTableService::Service::PartitionBy(::grpc::ServerContext* context, const ::io::deephaven::proto::backplane::grpc::PartitionByRequest* request, ::io::deephaven::proto::backplane::grpc::PartitionByResponse* response) { - (void) context; - (void) request; - (void) response; - return ::grpc::Status(::grpc::StatusCode::UNIMPLEMENTED, ""); -} - -::grpc::Status PartitionedTableService::Service::Merge(::grpc::ServerContext* context, const ::io::deephaven::proto::backplane::grpc::MergeRequest* request, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse* response) { - (void) context; - (void) request; - (void) response; - return ::grpc::Status(::grpc::StatusCode::UNIMPLEMENTED, ""); -} - -::grpc::Status PartitionedTableService::Service::GetTable(::grpc::ServerContext* context, const ::io::deephaven::proto::backplane::grpc::GetTableRequest* request, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse* response) { - (void) context; - (void) request; - (void) response; - return ::grpc::Status(::grpc::StatusCode::UNIMPLEMENTED, ""); -} - - -} // namespace io -} // namespace deephaven -} // namespace proto -} // namespace backplane -} // namespace grpc - diff --git a/cpp-client/deephaven/dhclient/proto/deephaven/proto/partitionedtable.grpc.pb.h b/cpp-client/deephaven/dhclient/proto/deephaven/proto/partitionedtable.grpc.pb.h deleted file mode 100644 index 493424c465c..00000000000 --- a/cpp-client/deephaven/dhclient/proto/deephaven/proto/partitionedtable.grpc.pb.h +++ /dev/null @@ -1,622 +0,0 @@ -// Generated by the gRPC C++ plugin. -// If you make any local change, they will be lost. -// source: deephaven/proto/partitionedtable.proto -// Original file comments: -// -// Copyright (c) 2016-2021 Deephaven Data Labs and Patent Pending -// -#ifndef GRPC_deephaven_2fproto_2fpartitionedtable_2eproto__INCLUDED -#define GRPC_deephaven_2fproto_2fpartitionedtable_2eproto__INCLUDED - -#include "deephaven/proto/partitionedtable.pb.h" - -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include - -namespace io { -namespace deephaven { -namespace proto { -namespace backplane { -namespace grpc { - -// -// This service provides tools to create and query partitioned tables. -class PartitionedTableService final { - public: - static constexpr char const* service_full_name() { - return "io.deephaven.proto.backplane.grpc.PartitionedTableService"; - } - class StubInterface { - public: - virtual ~StubInterface() {} - // - // Transforms a table into a partitioned table, consisting of many separate tables, each individually - // addressable. The result will be a FetchObjectResponse populated with a PartitionedTable. - virtual ::grpc::Status PartitionBy(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::PartitionByRequest& request, ::io::deephaven::proto::backplane::grpc::PartitionByResponse* response) = 0; - std::unique_ptr< ::grpc::ClientAsyncResponseReaderInterface< ::io::deephaven::proto::backplane::grpc::PartitionByResponse>> AsyncPartitionBy(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::PartitionByRequest& request, ::grpc::CompletionQueue* cq) { - return std::unique_ptr< ::grpc::ClientAsyncResponseReaderInterface< ::io::deephaven::proto::backplane::grpc::PartitionByResponse>>(AsyncPartitionByRaw(context, request, cq)); - } - std::unique_ptr< ::grpc::ClientAsyncResponseReaderInterface< ::io::deephaven::proto::backplane::grpc::PartitionByResponse>> PrepareAsyncPartitionBy(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::PartitionByRequest& request, ::grpc::CompletionQueue* cq) { - return std::unique_ptr< ::grpc::ClientAsyncResponseReaderInterface< ::io::deephaven::proto::backplane::grpc::PartitionByResponse>>(PrepareAsyncPartitionByRaw(context, request, cq)); - } - // - // Given a partitioned table, returns a table with the contents of all of the constituent tables. - virtual ::grpc::Status Merge(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::MergeRequest& request, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse* response) = 0; - std::unique_ptr< ::grpc::ClientAsyncResponseReaderInterface< ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse>> AsyncMerge(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::MergeRequest& request, ::grpc::CompletionQueue* cq) { - return std::unique_ptr< ::grpc::ClientAsyncResponseReaderInterface< ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse>>(AsyncMergeRaw(context, request, cq)); - } - std::unique_ptr< ::grpc::ClientAsyncResponseReaderInterface< ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse>> PrepareAsyncMerge(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::MergeRequest& request, ::grpc::CompletionQueue* cq) { - return std::unique_ptr< ::grpc::ClientAsyncResponseReaderInterface< ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse>>(PrepareAsyncMergeRaw(context, request, cq)); - } - // - // Given a partitioned table and a row described by another table's contents, returns a table - // that matched that row, if any. If none is present, NOT_FOUND will be sent in response. If - // more than one is present, FAILED_PRECONDITION will be sent in response. - // - // If the provided key table has any number of rows other than one, INVALID_ARGUMENT will be - // sent in response. - // - // The simplest way to generally use this is to subscribe to the key columns of the underlying - // table of a given PartitionedTable, then use /FlightService/DoPut to create a table with the - // desired keys, and pass that ticket to this service. After that request is sent (note that it - // is not required to wait for it to complete), that new table ticket can be used to make this - // GetTable request. - virtual ::grpc::Status GetTable(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::GetTableRequest& request, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse* response) = 0; - std::unique_ptr< ::grpc::ClientAsyncResponseReaderInterface< ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse>> AsyncGetTable(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::GetTableRequest& request, ::grpc::CompletionQueue* cq) { - return std::unique_ptr< ::grpc::ClientAsyncResponseReaderInterface< ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse>>(AsyncGetTableRaw(context, request, cq)); - } - std::unique_ptr< ::grpc::ClientAsyncResponseReaderInterface< ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse>> PrepareAsyncGetTable(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::GetTableRequest& request, ::grpc::CompletionQueue* cq) { - return std::unique_ptr< ::grpc::ClientAsyncResponseReaderInterface< ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse>>(PrepareAsyncGetTableRaw(context, request, cq)); - } - class async_interface { - public: - virtual ~async_interface() {} - // - // Transforms a table into a partitioned table, consisting of many separate tables, each individually - // addressable. The result will be a FetchObjectResponse populated with a PartitionedTable. - virtual void PartitionBy(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::PartitionByRequest* request, ::io::deephaven::proto::backplane::grpc::PartitionByResponse* response, std::function) = 0; - virtual void PartitionBy(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::PartitionByRequest* request, ::io::deephaven::proto::backplane::grpc::PartitionByResponse* response, ::grpc::ClientUnaryReactor* reactor) = 0; - // - // Given a partitioned table, returns a table with the contents of all of the constituent tables. - virtual void Merge(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::MergeRequest* request, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse* response, std::function) = 0; - virtual void Merge(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::MergeRequest* request, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse* response, ::grpc::ClientUnaryReactor* reactor) = 0; - // - // Given a partitioned table and a row described by another table's contents, returns a table - // that matched that row, if any. If none is present, NOT_FOUND will be sent in response. If - // more than one is present, FAILED_PRECONDITION will be sent in response. - // - // If the provided key table has any number of rows other than one, INVALID_ARGUMENT will be - // sent in response. - // - // The simplest way to generally use this is to subscribe to the key columns of the underlying - // table of a given PartitionedTable, then use /FlightService/DoPut to create a table with the - // desired keys, and pass that ticket to this service. After that request is sent (note that it - // is not required to wait for it to complete), that new table ticket can be used to make this - // GetTable request. - virtual void GetTable(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::GetTableRequest* request, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse* response, std::function) = 0; - virtual void GetTable(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::GetTableRequest* request, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse* response, ::grpc::ClientUnaryReactor* reactor) = 0; - }; - typedef class async_interface experimental_async_interface; - virtual class async_interface* async() { return nullptr; } - class async_interface* experimental_async() { return async(); } - private: - virtual ::grpc::ClientAsyncResponseReaderInterface< ::io::deephaven::proto::backplane::grpc::PartitionByResponse>* AsyncPartitionByRaw(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::PartitionByRequest& request, ::grpc::CompletionQueue* cq) = 0; - virtual ::grpc::ClientAsyncResponseReaderInterface< ::io::deephaven::proto::backplane::grpc::PartitionByResponse>* PrepareAsyncPartitionByRaw(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::PartitionByRequest& request, ::grpc::CompletionQueue* cq) = 0; - virtual ::grpc::ClientAsyncResponseReaderInterface< ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse>* AsyncMergeRaw(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::MergeRequest& request, ::grpc::CompletionQueue* cq) = 0; - virtual ::grpc::ClientAsyncResponseReaderInterface< ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse>* PrepareAsyncMergeRaw(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::MergeRequest& request, ::grpc::CompletionQueue* cq) = 0; - virtual ::grpc::ClientAsyncResponseReaderInterface< ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse>* AsyncGetTableRaw(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::GetTableRequest& request, ::grpc::CompletionQueue* cq) = 0; - virtual ::grpc::ClientAsyncResponseReaderInterface< ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse>* PrepareAsyncGetTableRaw(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::GetTableRequest& request, ::grpc::CompletionQueue* cq) = 0; - }; - class Stub final : public StubInterface { - public: - Stub(const std::shared_ptr< ::grpc::ChannelInterface>& channel, const ::grpc::StubOptions& options = ::grpc::StubOptions()); - ::grpc::Status PartitionBy(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::PartitionByRequest& request, ::io::deephaven::proto::backplane::grpc::PartitionByResponse* response) override; - std::unique_ptr< ::grpc::ClientAsyncResponseReader< ::io::deephaven::proto::backplane::grpc::PartitionByResponse>> AsyncPartitionBy(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::PartitionByRequest& request, ::grpc::CompletionQueue* cq) { - return std::unique_ptr< ::grpc::ClientAsyncResponseReader< ::io::deephaven::proto::backplane::grpc::PartitionByResponse>>(AsyncPartitionByRaw(context, request, cq)); - } - std::unique_ptr< ::grpc::ClientAsyncResponseReader< ::io::deephaven::proto::backplane::grpc::PartitionByResponse>> PrepareAsyncPartitionBy(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::PartitionByRequest& request, ::grpc::CompletionQueue* cq) { - return std::unique_ptr< ::grpc::ClientAsyncResponseReader< ::io::deephaven::proto::backplane::grpc::PartitionByResponse>>(PrepareAsyncPartitionByRaw(context, request, cq)); - } - ::grpc::Status Merge(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::MergeRequest& request, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse* response) override; - std::unique_ptr< ::grpc::ClientAsyncResponseReader< ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse>> AsyncMerge(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::MergeRequest& request, ::grpc::CompletionQueue* cq) { - return std::unique_ptr< ::grpc::ClientAsyncResponseReader< ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse>>(AsyncMergeRaw(context, request, cq)); - } - std::unique_ptr< ::grpc::ClientAsyncResponseReader< ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse>> PrepareAsyncMerge(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::MergeRequest& request, ::grpc::CompletionQueue* cq) { - return std::unique_ptr< ::grpc::ClientAsyncResponseReader< ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse>>(PrepareAsyncMergeRaw(context, request, cq)); - } - ::grpc::Status GetTable(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::GetTableRequest& request, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse* response) override; - std::unique_ptr< ::grpc::ClientAsyncResponseReader< ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse>> AsyncGetTable(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::GetTableRequest& request, ::grpc::CompletionQueue* cq) { - return std::unique_ptr< ::grpc::ClientAsyncResponseReader< ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse>>(AsyncGetTableRaw(context, request, cq)); - } - std::unique_ptr< ::grpc::ClientAsyncResponseReader< ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse>> PrepareAsyncGetTable(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::GetTableRequest& request, ::grpc::CompletionQueue* cq) { - return std::unique_ptr< ::grpc::ClientAsyncResponseReader< ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse>>(PrepareAsyncGetTableRaw(context, request, cq)); - } - class async final : - public StubInterface::async_interface { - public: - void PartitionBy(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::PartitionByRequest* request, ::io::deephaven::proto::backplane::grpc::PartitionByResponse* response, std::function) override; - void PartitionBy(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::PartitionByRequest* request, ::io::deephaven::proto::backplane::grpc::PartitionByResponse* response, ::grpc::ClientUnaryReactor* reactor) override; - void Merge(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::MergeRequest* request, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse* response, std::function) override; - void Merge(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::MergeRequest* request, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse* response, ::grpc::ClientUnaryReactor* reactor) override; - void GetTable(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::GetTableRequest* request, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse* response, std::function) override; - void GetTable(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::GetTableRequest* request, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse* response, ::grpc::ClientUnaryReactor* reactor) override; - private: - friend class Stub; - explicit async(Stub* stub): stub_(stub) { } - Stub* stub() { return stub_; } - Stub* stub_; - }; - class async* async() override { return &async_stub_; } - - private: - std::shared_ptr< ::grpc::ChannelInterface> channel_; - class async async_stub_{this}; - ::grpc::ClientAsyncResponseReader< ::io::deephaven::proto::backplane::grpc::PartitionByResponse>* AsyncPartitionByRaw(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::PartitionByRequest& request, ::grpc::CompletionQueue* cq) override; - ::grpc::ClientAsyncResponseReader< ::io::deephaven::proto::backplane::grpc::PartitionByResponse>* PrepareAsyncPartitionByRaw(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::PartitionByRequest& request, ::grpc::CompletionQueue* cq) override; - ::grpc::ClientAsyncResponseReader< ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse>* AsyncMergeRaw(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::MergeRequest& request, ::grpc::CompletionQueue* cq) override; - ::grpc::ClientAsyncResponseReader< ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse>* PrepareAsyncMergeRaw(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::MergeRequest& request, ::grpc::CompletionQueue* cq) override; - ::grpc::ClientAsyncResponseReader< ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse>* AsyncGetTableRaw(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::GetTableRequest& request, ::grpc::CompletionQueue* cq) override; - ::grpc::ClientAsyncResponseReader< ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse>* PrepareAsyncGetTableRaw(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::GetTableRequest& request, ::grpc::CompletionQueue* cq) override; - const ::grpc::internal::RpcMethod rpcmethod_PartitionBy_; - const ::grpc::internal::RpcMethod rpcmethod_Merge_; - const ::grpc::internal::RpcMethod rpcmethod_GetTable_; - }; - static std::unique_ptr NewStub(const std::shared_ptr< ::grpc::ChannelInterface>& channel, const ::grpc::StubOptions& options = ::grpc::StubOptions()); - - class Service : public ::grpc::Service { - public: - Service(); - virtual ~Service(); - // - // Transforms a table into a partitioned table, consisting of many separate tables, each individually - // addressable. The result will be a FetchObjectResponse populated with a PartitionedTable. - virtual ::grpc::Status PartitionBy(::grpc::ServerContext* context, const ::io::deephaven::proto::backplane::grpc::PartitionByRequest* request, ::io::deephaven::proto::backplane::grpc::PartitionByResponse* response); - // - // Given a partitioned table, returns a table with the contents of all of the constituent tables. - virtual ::grpc::Status Merge(::grpc::ServerContext* context, const ::io::deephaven::proto::backplane::grpc::MergeRequest* request, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse* response); - // - // Given a partitioned table and a row described by another table's contents, returns a table - // that matched that row, if any. If none is present, NOT_FOUND will be sent in response. If - // more than one is present, FAILED_PRECONDITION will be sent in response. - // - // If the provided key table has any number of rows other than one, INVALID_ARGUMENT will be - // sent in response. - // - // The simplest way to generally use this is to subscribe to the key columns of the underlying - // table of a given PartitionedTable, then use /FlightService/DoPut to create a table with the - // desired keys, and pass that ticket to this service. After that request is sent (note that it - // is not required to wait for it to complete), that new table ticket can be used to make this - // GetTable request. - virtual ::grpc::Status GetTable(::grpc::ServerContext* context, const ::io::deephaven::proto::backplane::grpc::GetTableRequest* request, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse* response); - }; - template - class WithAsyncMethod_PartitionBy : public BaseClass { - private: - void BaseClassMustBeDerivedFromService(const Service* /*service*/) {} - public: - WithAsyncMethod_PartitionBy() { - ::grpc::Service::MarkMethodAsync(0); - } - ~WithAsyncMethod_PartitionBy() override { - BaseClassMustBeDerivedFromService(this); - } - // disable synchronous version of this method - ::grpc::Status PartitionBy(::grpc::ServerContext* /*context*/, const ::io::deephaven::proto::backplane::grpc::PartitionByRequest* /*request*/, ::io::deephaven::proto::backplane::grpc::PartitionByResponse* /*response*/) override { - abort(); - return ::grpc::Status(::grpc::StatusCode::UNIMPLEMENTED, ""); - } - void RequestPartitionBy(::grpc::ServerContext* context, ::io::deephaven::proto::backplane::grpc::PartitionByRequest* request, ::grpc::ServerAsyncResponseWriter< ::io::deephaven::proto::backplane::grpc::PartitionByResponse>* response, ::grpc::CompletionQueue* new_call_cq, ::grpc::ServerCompletionQueue* notification_cq, void *tag) { - ::grpc::Service::RequestAsyncUnary(0, context, request, response, new_call_cq, notification_cq, tag); - } - }; - template - class WithAsyncMethod_Merge : public BaseClass { - private: - void BaseClassMustBeDerivedFromService(const Service* /*service*/) {} - public: - WithAsyncMethod_Merge() { - ::grpc::Service::MarkMethodAsync(1); - } - ~WithAsyncMethod_Merge() override { - BaseClassMustBeDerivedFromService(this); - } - // disable synchronous version of this method - ::grpc::Status Merge(::grpc::ServerContext* /*context*/, const ::io::deephaven::proto::backplane::grpc::MergeRequest* /*request*/, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse* /*response*/) override { - abort(); - return ::grpc::Status(::grpc::StatusCode::UNIMPLEMENTED, ""); - } - void RequestMerge(::grpc::ServerContext* context, ::io::deephaven::proto::backplane::grpc::MergeRequest* request, ::grpc::ServerAsyncResponseWriter< ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse>* response, ::grpc::CompletionQueue* new_call_cq, ::grpc::ServerCompletionQueue* notification_cq, void *tag) { - ::grpc::Service::RequestAsyncUnary(1, context, request, response, new_call_cq, notification_cq, tag); - } - }; - template - class WithAsyncMethod_GetTable : public BaseClass { - private: - void BaseClassMustBeDerivedFromService(const Service* /*service*/) {} - public: - WithAsyncMethod_GetTable() { - ::grpc::Service::MarkMethodAsync(2); - } - ~WithAsyncMethod_GetTable() override { - BaseClassMustBeDerivedFromService(this); - } - // disable synchronous version of this method - ::grpc::Status GetTable(::grpc::ServerContext* /*context*/, const ::io::deephaven::proto::backplane::grpc::GetTableRequest* /*request*/, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse* /*response*/) override { - abort(); - return ::grpc::Status(::grpc::StatusCode::UNIMPLEMENTED, ""); - } - void RequestGetTable(::grpc::ServerContext* context, ::io::deephaven::proto::backplane::grpc::GetTableRequest* request, ::grpc::ServerAsyncResponseWriter< ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse>* response, ::grpc::CompletionQueue* new_call_cq, ::grpc::ServerCompletionQueue* notification_cq, void *tag) { - ::grpc::Service::RequestAsyncUnary(2, context, request, response, new_call_cq, notification_cq, tag); - } - }; - typedef WithAsyncMethod_PartitionBy > > AsyncService; - template - class WithCallbackMethod_PartitionBy : public BaseClass { - private: - void BaseClassMustBeDerivedFromService(const Service* /*service*/) {} - public: - WithCallbackMethod_PartitionBy() { - ::grpc::Service::MarkMethodCallback(0, - new ::grpc::internal::CallbackUnaryHandler< ::io::deephaven::proto::backplane::grpc::PartitionByRequest, ::io::deephaven::proto::backplane::grpc::PartitionByResponse>( - [this]( - ::grpc::CallbackServerContext* context, const ::io::deephaven::proto::backplane::grpc::PartitionByRequest* request, ::io::deephaven::proto::backplane::grpc::PartitionByResponse* response) { return this->PartitionBy(context, request, response); }));} - void SetMessageAllocatorFor_PartitionBy( - ::grpc::MessageAllocator< ::io::deephaven::proto::backplane::grpc::PartitionByRequest, ::io::deephaven::proto::backplane::grpc::PartitionByResponse>* allocator) { - ::grpc::internal::MethodHandler* const handler = ::grpc::Service::GetHandler(0); - static_cast<::grpc::internal::CallbackUnaryHandler< ::io::deephaven::proto::backplane::grpc::PartitionByRequest, ::io::deephaven::proto::backplane::grpc::PartitionByResponse>*>(handler) - ->SetMessageAllocator(allocator); - } - ~WithCallbackMethod_PartitionBy() override { - BaseClassMustBeDerivedFromService(this); - } - // disable synchronous version of this method - ::grpc::Status PartitionBy(::grpc::ServerContext* /*context*/, const ::io::deephaven::proto::backplane::grpc::PartitionByRequest* /*request*/, ::io::deephaven::proto::backplane::grpc::PartitionByResponse* /*response*/) override { - abort(); - return ::grpc::Status(::grpc::StatusCode::UNIMPLEMENTED, ""); - } - virtual ::grpc::ServerUnaryReactor* PartitionBy( - ::grpc::CallbackServerContext* /*context*/, const ::io::deephaven::proto::backplane::grpc::PartitionByRequest* /*request*/, ::io::deephaven::proto::backplane::grpc::PartitionByResponse* /*response*/) { return nullptr; } - }; - template - class WithCallbackMethod_Merge : public BaseClass { - private: - void BaseClassMustBeDerivedFromService(const Service* /*service*/) {} - public: - WithCallbackMethod_Merge() { - ::grpc::Service::MarkMethodCallback(1, - new ::grpc::internal::CallbackUnaryHandler< ::io::deephaven::proto::backplane::grpc::MergeRequest, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse>( - [this]( - ::grpc::CallbackServerContext* context, const ::io::deephaven::proto::backplane::grpc::MergeRequest* request, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse* response) { return this->Merge(context, request, response); }));} - void SetMessageAllocatorFor_Merge( - ::grpc::MessageAllocator< ::io::deephaven::proto::backplane::grpc::MergeRequest, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse>* allocator) { - ::grpc::internal::MethodHandler* const handler = ::grpc::Service::GetHandler(1); - static_cast<::grpc::internal::CallbackUnaryHandler< ::io::deephaven::proto::backplane::grpc::MergeRequest, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse>*>(handler) - ->SetMessageAllocator(allocator); - } - ~WithCallbackMethod_Merge() override { - BaseClassMustBeDerivedFromService(this); - } - // disable synchronous version of this method - ::grpc::Status Merge(::grpc::ServerContext* /*context*/, const ::io::deephaven::proto::backplane::grpc::MergeRequest* /*request*/, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse* /*response*/) override { - abort(); - return ::grpc::Status(::grpc::StatusCode::UNIMPLEMENTED, ""); - } - virtual ::grpc::ServerUnaryReactor* Merge( - ::grpc::CallbackServerContext* /*context*/, const ::io::deephaven::proto::backplane::grpc::MergeRequest* /*request*/, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse* /*response*/) { return nullptr; } - }; - template - class WithCallbackMethod_GetTable : public BaseClass { - private: - void BaseClassMustBeDerivedFromService(const Service* /*service*/) {} - public: - WithCallbackMethod_GetTable() { - ::grpc::Service::MarkMethodCallback(2, - new ::grpc::internal::CallbackUnaryHandler< ::io::deephaven::proto::backplane::grpc::GetTableRequest, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse>( - [this]( - ::grpc::CallbackServerContext* context, const ::io::deephaven::proto::backplane::grpc::GetTableRequest* request, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse* response) { return this->GetTable(context, request, response); }));} - void SetMessageAllocatorFor_GetTable( - ::grpc::MessageAllocator< ::io::deephaven::proto::backplane::grpc::GetTableRequest, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse>* allocator) { - ::grpc::internal::MethodHandler* const handler = ::grpc::Service::GetHandler(2); - static_cast<::grpc::internal::CallbackUnaryHandler< ::io::deephaven::proto::backplane::grpc::GetTableRequest, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse>*>(handler) - ->SetMessageAllocator(allocator); - } - ~WithCallbackMethod_GetTable() override { - BaseClassMustBeDerivedFromService(this); - } - // disable synchronous version of this method - ::grpc::Status GetTable(::grpc::ServerContext* /*context*/, const ::io::deephaven::proto::backplane::grpc::GetTableRequest* /*request*/, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse* /*response*/) override { - abort(); - return ::grpc::Status(::grpc::StatusCode::UNIMPLEMENTED, ""); - } - virtual ::grpc::ServerUnaryReactor* GetTable( - ::grpc::CallbackServerContext* /*context*/, const ::io::deephaven::proto::backplane::grpc::GetTableRequest* /*request*/, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse* /*response*/) { return nullptr; } - }; - typedef WithCallbackMethod_PartitionBy > > CallbackService; - typedef CallbackService ExperimentalCallbackService; - template - class WithGenericMethod_PartitionBy : public BaseClass { - private: - void BaseClassMustBeDerivedFromService(const Service* /*service*/) {} - public: - WithGenericMethod_PartitionBy() { - ::grpc::Service::MarkMethodGeneric(0); - } - ~WithGenericMethod_PartitionBy() override { - BaseClassMustBeDerivedFromService(this); - } - // disable synchronous version of this method - ::grpc::Status PartitionBy(::grpc::ServerContext* /*context*/, const ::io::deephaven::proto::backplane::grpc::PartitionByRequest* /*request*/, ::io::deephaven::proto::backplane::grpc::PartitionByResponse* /*response*/) override { - abort(); - return ::grpc::Status(::grpc::StatusCode::UNIMPLEMENTED, ""); - } - }; - template - class WithGenericMethod_Merge : public BaseClass { - private: - void BaseClassMustBeDerivedFromService(const Service* /*service*/) {} - public: - WithGenericMethod_Merge() { - ::grpc::Service::MarkMethodGeneric(1); - } - ~WithGenericMethod_Merge() override { - BaseClassMustBeDerivedFromService(this); - } - // disable synchronous version of this method - ::grpc::Status Merge(::grpc::ServerContext* /*context*/, const ::io::deephaven::proto::backplane::grpc::MergeRequest* /*request*/, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse* /*response*/) override { - abort(); - return ::grpc::Status(::grpc::StatusCode::UNIMPLEMENTED, ""); - } - }; - template - class WithGenericMethod_GetTable : public BaseClass { - private: - void BaseClassMustBeDerivedFromService(const Service* /*service*/) {} - public: - WithGenericMethod_GetTable() { - ::grpc::Service::MarkMethodGeneric(2); - } - ~WithGenericMethod_GetTable() override { - BaseClassMustBeDerivedFromService(this); - } - // disable synchronous version of this method - ::grpc::Status GetTable(::grpc::ServerContext* /*context*/, const ::io::deephaven::proto::backplane::grpc::GetTableRequest* /*request*/, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse* /*response*/) override { - abort(); - return ::grpc::Status(::grpc::StatusCode::UNIMPLEMENTED, ""); - } - }; - template - class WithRawMethod_PartitionBy : public BaseClass { - private: - void BaseClassMustBeDerivedFromService(const Service* /*service*/) {} - public: - WithRawMethod_PartitionBy() { - ::grpc::Service::MarkMethodRaw(0); - } - ~WithRawMethod_PartitionBy() override { - BaseClassMustBeDerivedFromService(this); - } - // disable synchronous version of this method - ::grpc::Status PartitionBy(::grpc::ServerContext* /*context*/, const ::io::deephaven::proto::backplane::grpc::PartitionByRequest* /*request*/, ::io::deephaven::proto::backplane::grpc::PartitionByResponse* /*response*/) override { - abort(); - return ::grpc::Status(::grpc::StatusCode::UNIMPLEMENTED, ""); - } - void RequestPartitionBy(::grpc::ServerContext* context, ::grpc::ByteBuffer* request, ::grpc::ServerAsyncResponseWriter< ::grpc::ByteBuffer>* response, ::grpc::CompletionQueue* new_call_cq, ::grpc::ServerCompletionQueue* notification_cq, void *tag) { - ::grpc::Service::RequestAsyncUnary(0, context, request, response, new_call_cq, notification_cq, tag); - } - }; - template - class WithRawMethod_Merge : public BaseClass { - private: - void BaseClassMustBeDerivedFromService(const Service* /*service*/) {} - public: - WithRawMethod_Merge() { - ::grpc::Service::MarkMethodRaw(1); - } - ~WithRawMethod_Merge() override { - BaseClassMustBeDerivedFromService(this); - } - // disable synchronous version of this method - ::grpc::Status Merge(::grpc::ServerContext* /*context*/, const ::io::deephaven::proto::backplane::grpc::MergeRequest* /*request*/, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse* /*response*/) override { - abort(); - return ::grpc::Status(::grpc::StatusCode::UNIMPLEMENTED, ""); - } - void RequestMerge(::grpc::ServerContext* context, ::grpc::ByteBuffer* request, ::grpc::ServerAsyncResponseWriter< ::grpc::ByteBuffer>* response, ::grpc::CompletionQueue* new_call_cq, ::grpc::ServerCompletionQueue* notification_cq, void *tag) { - ::grpc::Service::RequestAsyncUnary(1, context, request, response, new_call_cq, notification_cq, tag); - } - }; - template - class WithRawMethod_GetTable : public BaseClass { - private: - void BaseClassMustBeDerivedFromService(const Service* /*service*/) {} - public: - WithRawMethod_GetTable() { - ::grpc::Service::MarkMethodRaw(2); - } - ~WithRawMethod_GetTable() override { - BaseClassMustBeDerivedFromService(this); - } - // disable synchronous version of this method - ::grpc::Status GetTable(::grpc::ServerContext* /*context*/, const ::io::deephaven::proto::backplane::grpc::GetTableRequest* /*request*/, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse* /*response*/) override { - abort(); - return ::grpc::Status(::grpc::StatusCode::UNIMPLEMENTED, ""); - } - void RequestGetTable(::grpc::ServerContext* context, ::grpc::ByteBuffer* request, ::grpc::ServerAsyncResponseWriter< ::grpc::ByteBuffer>* response, ::grpc::CompletionQueue* new_call_cq, ::grpc::ServerCompletionQueue* notification_cq, void *tag) { - ::grpc::Service::RequestAsyncUnary(2, context, request, response, new_call_cq, notification_cq, tag); - } - }; - template - class WithRawCallbackMethod_PartitionBy : public BaseClass { - private: - void BaseClassMustBeDerivedFromService(const Service* /*service*/) {} - public: - WithRawCallbackMethod_PartitionBy() { - ::grpc::Service::MarkMethodRawCallback(0, - new ::grpc::internal::CallbackUnaryHandler< ::grpc::ByteBuffer, ::grpc::ByteBuffer>( - [this]( - ::grpc::CallbackServerContext* context, const ::grpc::ByteBuffer* request, ::grpc::ByteBuffer* response) { return this->PartitionBy(context, request, response); })); - } - ~WithRawCallbackMethod_PartitionBy() override { - BaseClassMustBeDerivedFromService(this); - } - // disable synchronous version of this method - ::grpc::Status PartitionBy(::grpc::ServerContext* /*context*/, const ::io::deephaven::proto::backplane::grpc::PartitionByRequest* /*request*/, ::io::deephaven::proto::backplane::grpc::PartitionByResponse* /*response*/) override { - abort(); - return ::grpc::Status(::grpc::StatusCode::UNIMPLEMENTED, ""); - } - virtual ::grpc::ServerUnaryReactor* PartitionBy( - ::grpc::CallbackServerContext* /*context*/, const ::grpc::ByteBuffer* /*request*/, ::grpc::ByteBuffer* /*response*/) { return nullptr; } - }; - template - class WithRawCallbackMethod_Merge : public BaseClass { - private: - void BaseClassMustBeDerivedFromService(const Service* /*service*/) {} - public: - WithRawCallbackMethod_Merge() { - ::grpc::Service::MarkMethodRawCallback(1, - new ::grpc::internal::CallbackUnaryHandler< ::grpc::ByteBuffer, ::grpc::ByteBuffer>( - [this]( - ::grpc::CallbackServerContext* context, const ::grpc::ByteBuffer* request, ::grpc::ByteBuffer* response) { return this->Merge(context, request, response); })); - } - ~WithRawCallbackMethod_Merge() override { - BaseClassMustBeDerivedFromService(this); - } - // disable synchronous version of this method - ::grpc::Status Merge(::grpc::ServerContext* /*context*/, const ::io::deephaven::proto::backplane::grpc::MergeRequest* /*request*/, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse* /*response*/) override { - abort(); - return ::grpc::Status(::grpc::StatusCode::UNIMPLEMENTED, ""); - } - virtual ::grpc::ServerUnaryReactor* Merge( - ::grpc::CallbackServerContext* /*context*/, const ::grpc::ByteBuffer* /*request*/, ::grpc::ByteBuffer* /*response*/) { return nullptr; } - }; - template - class WithRawCallbackMethod_GetTable : public BaseClass { - private: - void BaseClassMustBeDerivedFromService(const Service* /*service*/) {} - public: - WithRawCallbackMethod_GetTable() { - ::grpc::Service::MarkMethodRawCallback(2, - new ::grpc::internal::CallbackUnaryHandler< ::grpc::ByteBuffer, ::grpc::ByteBuffer>( - [this]( - ::grpc::CallbackServerContext* context, const ::grpc::ByteBuffer* request, ::grpc::ByteBuffer* response) { return this->GetTable(context, request, response); })); - } - ~WithRawCallbackMethod_GetTable() override { - BaseClassMustBeDerivedFromService(this); - } - // disable synchronous version of this method - ::grpc::Status GetTable(::grpc::ServerContext* /*context*/, const ::io::deephaven::proto::backplane::grpc::GetTableRequest* /*request*/, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse* /*response*/) override { - abort(); - return ::grpc::Status(::grpc::StatusCode::UNIMPLEMENTED, ""); - } - virtual ::grpc::ServerUnaryReactor* GetTable( - ::grpc::CallbackServerContext* /*context*/, const ::grpc::ByteBuffer* /*request*/, ::grpc::ByteBuffer* /*response*/) { return nullptr; } - }; - template - class WithStreamedUnaryMethod_PartitionBy : public BaseClass { - private: - void BaseClassMustBeDerivedFromService(const Service* /*service*/) {} - public: - WithStreamedUnaryMethod_PartitionBy() { - ::grpc::Service::MarkMethodStreamed(0, - new ::grpc::internal::StreamedUnaryHandler< - ::io::deephaven::proto::backplane::grpc::PartitionByRequest, ::io::deephaven::proto::backplane::grpc::PartitionByResponse>( - [this](::grpc::ServerContext* context, - ::grpc::ServerUnaryStreamer< - ::io::deephaven::proto::backplane::grpc::PartitionByRequest, ::io::deephaven::proto::backplane::grpc::PartitionByResponse>* streamer) { - return this->StreamedPartitionBy(context, - streamer); - })); - } - ~WithStreamedUnaryMethod_PartitionBy() override { - BaseClassMustBeDerivedFromService(this); - } - // disable regular version of this method - ::grpc::Status PartitionBy(::grpc::ServerContext* /*context*/, const ::io::deephaven::proto::backplane::grpc::PartitionByRequest* /*request*/, ::io::deephaven::proto::backplane::grpc::PartitionByResponse* /*response*/) override { - abort(); - return ::grpc::Status(::grpc::StatusCode::UNIMPLEMENTED, ""); - } - // replace default version of method with streamed unary - virtual ::grpc::Status StreamedPartitionBy(::grpc::ServerContext* context, ::grpc::ServerUnaryStreamer< ::io::deephaven::proto::backplane::grpc::PartitionByRequest,::io::deephaven::proto::backplane::grpc::PartitionByResponse>* server_unary_streamer) = 0; - }; - template - class WithStreamedUnaryMethod_Merge : public BaseClass { - private: - void BaseClassMustBeDerivedFromService(const Service* /*service*/) {} - public: - WithStreamedUnaryMethod_Merge() { - ::grpc::Service::MarkMethodStreamed(1, - new ::grpc::internal::StreamedUnaryHandler< - ::io::deephaven::proto::backplane::grpc::MergeRequest, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse>( - [this](::grpc::ServerContext* context, - ::grpc::ServerUnaryStreamer< - ::io::deephaven::proto::backplane::grpc::MergeRequest, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse>* streamer) { - return this->StreamedMerge(context, - streamer); - })); - } - ~WithStreamedUnaryMethod_Merge() override { - BaseClassMustBeDerivedFromService(this); - } - // disable regular version of this method - ::grpc::Status Merge(::grpc::ServerContext* /*context*/, const ::io::deephaven::proto::backplane::grpc::MergeRequest* /*request*/, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse* /*response*/) override { - abort(); - return ::grpc::Status(::grpc::StatusCode::UNIMPLEMENTED, ""); - } - // replace default version of method with streamed unary - virtual ::grpc::Status StreamedMerge(::grpc::ServerContext* context, ::grpc::ServerUnaryStreamer< ::io::deephaven::proto::backplane::grpc::MergeRequest,::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse>* server_unary_streamer) = 0; - }; - template - class WithStreamedUnaryMethod_GetTable : public BaseClass { - private: - void BaseClassMustBeDerivedFromService(const Service* /*service*/) {} - public: - WithStreamedUnaryMethod_GetTable() { - ::grpc::Service::MarkMethodStreamed(2, - new ::grpc::internal::StreamedUnaryHandler< - ::io::deephaven::proto::backplane::grpc::GetTableRequest, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse>( - [this](::grpc::ServerContext* context, - ::grpc::ServerUnaryStreamer< - ::io::deephaven::proto::backplane::grpc::GetTableRequest, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse>* streamer) { - return this->StreamedGetTable(context, - streamer); - })); - } - ~WithStreamedUnaryMethod_GetTable() override { - BaseClassMustBeDerivedFromService(this); - } - // disable regular version of this method - ::grpc::Status GetTable(::grpc::ServerContext* /*context*/, const ::io::deephaven::proto::backplane::grpc::GetTableRequest* /*request*/, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse* /*response*/) override { - abort(); - return ::grpc::Status(::grpc::StatusCode::UNIMPLEMENTED, ""); - } - // replace default version of method with streamed unary - virtual ::grpc::Status StreamedGetTable(::grpc::ServerContext* context, ::grpc::ServerUnaryStreamer< ::io::deephaven::proto::backplane::grpc::GetTableRequest,::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse>* server_unary_streamer) = 0; - }; - typedef WithStreamedUnaryMethod_PartitionBy > > StreamedUnaryService; - typedef Service SplitStreamedService; - typedef WithStreamedUnaryMethod_PartitionBy > > StreamedService; -}; - -} // namespace grpc -} // namespace backplane -} // namespace proto -} // namespace deephaven -} // namespace io - - -#endif // GRPC_deephaven_2fproto_2fpartitionedtable_2eproto__INCLUDED diff --git a/cpp-client/deephaven/dhclient/proto/deephaven/proto/partitionedtable.pb.cc b/cpp-client/deephaven/dhclient/proto/deephaven/proto/partitionedtable.pb.cc deleted file mode 100644 index abe19081fba..00000000000 --- a/cpp-client/deephaven/dhclient/proto/deephaven/proto/partitionedtable.pb.cc +++ /dev/null @@ -1,1785 +0,0 @@ -// 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" -// @@protoc_insertion_point(includes) - -// Must be included last. -#include "google/protobuf/port_def.inc" -PROTOBUF_PRAGMA_INIT_SEG -namespace _pb = ::google::protobuf; -namespace _pbi = ::google::protobuf::internal; -namespace _fl = ::google::protobuf::internal::field_layout; -namespace io { -namespace deephaven { -namespace proto { -namespace backplane { -namespace grpc { - -inline constexpr PartitionedTableDescriptor::Impl_::Impl_( - ::_pbi::ConstantInitialized) noexcept - : key_column_names_{}, - constituent_definition_schema_( - &::google::protobuf::internal::fixed_address_empty_string, - ::_pbi::ConstantInitialized()), - constituent_column_name_( - &::google::protobuf::internal::fixed_address_empty_string, - ::_pbi::ConstantInitialized()), - unique_keys_{false}, - constituent_changes_permitted_{false}, - _cached_size_{0} {} - -template -PROTOBUF_CONSTEXPR PartitionedTableDescriptor::PartitionedTableDescriptor(::_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() {} - union { - PartitionedTableDescriptor _instance; - }; -}; - -PROTOBUF_ATTRIBUTE_NO_DESTROY PROTOBUF_CONSTINIT - PROTOBUF_ATTRIBUTE_INIT_PRIORITY1 PartitionedTableDescriptorDefaultTypeInternal _PartitionedTableDescriptor_default_instance_; - 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() {} - union { - PartitionByResponse _instance; - }; -}; - -PROTOBUF_ATTRIBUTE_NO_DESTROY PROTOBUF_CONSTINIT - PROTOBUF_ATTRIBUTE_INIT_PRIORITY1 PartitionByResponseDefaultTypeInternal _PartitionByResponse_default_instance_; - -inline constexpr PartitionByRequest::Impl_::Impl_( - ::_pbi::ConstantInitialized) noexcept - : _cached_size_{0}, - key_column_names_{}, - table_id_{nullptr}, - result_id_{nullptr}, - drop_keys_{false} {} - -template -PROTOBUF_CONSTEXPR PartitionByRequest::PartitionByRequest(::_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() {} - union { - PartitionByRequest _instance; - }; -}; - -PROTOBUF_ATTRIBUTE_NO_DESTROY PROTOBUF_CONSTINIT - PROTOBUF_ATTRIBUTE_INIT_PRIORITY1 PartitionByRequestDefaultTypeInternal _PartitionByRequest_default_instance_; - -inline constexpr MergeRequest::Impl_::Impl_( - ::_pbi::ConstantInitialized) noexcept - : _cached_size_{0}, - partitioned_table_{nullptr}, - result_id_{nullptr} {} - -template -PROTOBUF_CONSTEXPR MergeRequest::MergeRequest(::_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() {} - union { - MergeRequest _instance; - }; -}; - -PROTOBUF_ATTRIBUTE_NO_DESTROY PROTOBUF_CONSTINIT - PROTOBUF_ATTRIBUTE_INIT_PRIORITY1 MergeRequestDefaultTypeInternal _MergeRequest_default_instance_; - -inline constexpr GetTableRequest::Impl_::Impl_( - ::_pbi::ConstantInitialized) noexcept - : _cached_size_{0}, - partitioned_table_{nullptr}, - key_table_ticket_{nullptr}, - result_id_{nullptr} {} - -template -PROTOBUF_CONSTEXPR GetTableRequest::GetTableRequest(::_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() {} - union { - GetTableRequest _instance; - }; -}; - -PROTOBUF_ATTRIBUTE_NO_DESTROY PROTOBUF_CONSTINIT - PROTOBUF_ATTRIBUTE_INIT_PRIORITY1 GetTableRequestDefaultTypeInternal _GetTableRequest_default_instance_; -} // namespace grpc -} // namespace backplane -} // namespace proto -} // namespace deephaven -} // namespace io -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[] 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[] 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, - &::io::deephaven::proto::backplane::grpc::_MergeRequest_default_instance_._instance, - &::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[] 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" - "o/ticket.proto\"\274\001\n\022PartitionByRequest\022;\n" - "\010table_id\030\001 \001(\0132).io.deephaven.proto.bac" - "kplane.grpc.Ticket\022<\n\tresult_id\030\002 \001(\0132)." - "io.deephaven.proto.backplane.grpc.Ticket" - "\022\030\n\020key_column_names\030\003 \003(\t\022\021\n\tdrop_keys\030" - "\004 \001(\010\"\025\n\023PartitionByResponse\"\222\001\n\014MergeRe" - "quest\022D\n\021partitioned_table\030\001 \001(\0132).io.de" - "ephaven.proto.backplane.grpc.Ticket\022<\n\tr" - "esult_id\030\002 \001(\0132).io.deephaven.proto.back" - "plane.grpc.Ticket\"\332\001\n\017GetTableRequest\022D\n" - "\021partitioned_table\030\001 \001(\0132).io.deephaven." - "proto.backplane.grpc.Ticket\022C\n\020key_table" - "_ticket\030\002 \001(\0132).io.deephaven.proto.backp" - "lane.grpc.Ticket\022<\n\tresult_id\030\004 \001(\0132).io" - ".deephaven.proto.backplane.grpc.Ticket\"\272" - "\001\n\032PartitionedTableDescriptor\022\030\n\020key_col" - "umn_names\030\001 \003(\t\022\037\n\027constituent_column_na" - "me\030\004 \001(\t\022\023\n\013unique_keys\030\002 \001(\010\022%\n\035constit" - "uent_definition_schema\030\003 \001(\014\022%\n\035constitu" - "ent_changes_permitted\030\005 \001(\0102\226\003\n\027Partitio" - "nedTableService\022|\n\013PartitionBy\0225.io.deep" - "haven.proto.backplane.grpc.PartitionByRe" - "quest\0326.io.deephaven.proto.backplane.grp" - "c.PartitionByResponse\022z\n\005Merge\022/.io.deep" - "haven.proto.backplane.grpc.MergeRequest\032" - "@.io.deephaven.proto.backplane.grpc.Expo" - "rtedTableCreationResponse\022\200\001\n\010GetTable\0222" - ".io.deephaven.proto.backplane.grpc.GetTa" - "bleRequest\032@.io.deephaven.proto.backplan" - "e.grpc.ExportedTableCreationResponseBLH\001" - "P\001ZFgithub.com/deephaven/deephaven-core/" - "go/internal/proto/partitionedtableb\006prot" - "o3" -}; -static const ::_pbi::DescriptorTable* const descriptor_table_deephaven_2fproto_2fpartitionedtable_2eproto_deps[2] = - { - &::descriptor_table_deephaven_2fproto_2ftable_2eproto, - &::descriptor_table_deephaven_2fproto_2fticket_2eproto, -}; -static ::absl::once_flag descriptor_table_deephaven_2fproto_2fpartitionedtable_2eproto_once; -PROTOBUF_CONSTINIT const ::_pbi::DescriptorTable descriptor_table_deephaven_2fproto_2fpartitionedtable_2eproto = { - false, - false, - 1402, - descriptor_table_protodef_deephaven_2fproto_2fpartitionedtable_2eproto, - "deephaven/proto/partitionedtable.proto", - &descriptor_table_deephaven_2fproto_2fpartitionedtable_2eproto_once, - descriptor_table_deephaven_2fproto_2fpartitionedtable_2eproto_deps, - 2, - 5, - schemas, - file_default_instances, - TableStruct_deephaven_2fproto_2fpartitionedtable_2eproto::offsets, - file_level_enum_descriptors_deephaven_2fproto_2fpartitionedtable_2eproto, - file_level_service_descriptors_deephaven_2fproto_2fpartitionedtable_2eproto, -}; -namespace io { -namespace deephaven { -namespace proto { -namespace backplane { -namespace grpc { -// =================================================================== - -class PartitionByRequest::_Internal { - public: - using HasBits = - decltype(std::declval()._impl_._has_bits_); - static constexpr ::int32_t kHasBitsOffset = - 8 * PROTOBUF_FIELD_OFFSET(PartitionByRequest, _impl_._has_bits_); -}; - -void PartitionByRequest::clear_table_id() { - ::google::protobuf::internal::TSanWrite(&_impl_); - if (_impl_.table_id_ != nullptr) _impl_.table_id_->Clear(); - _impl_._has_bits_[0] &= ~0x00000001u; -} -void PartitionByRequest::clear_result_id() { - ::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 ::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_} {} - -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_, from); - ::uint32_t cached_has_bits = _impl_._has_bits_[0]; - _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) -} -inline PROTOBUF_NDEBUG_INLINE PartitionByRequest::Impl_::Impl_( - ::google::protobuf::internal::InternalVisibility visibility, - ::google::protobuf::Arena* arena) - : _cached_size_{0}, - key_column_names_{visibility, arena} {} - -inline void PartitionByRequest::SharedCtor(::_pb::Arena* arena) { - new (&_impl_) Impl_(internal_visibility(), arena); - ::memset(reinterpret_cast(&_impl_) + - offsetof(Impl_, table_id_), - 0, - offsetof(Impl_, drop_keys_) - - offsetof(Impl_, table_id_) + - sizeof(Impl_::drop_keys_)); -} -PartitionByRequest::~PartitionByRequest() { - // @@protoc_insertion_point(destructor:io.deephaven.proto.backplane.grpc.PartitionByRequest) - _internal_metadata_.Delete<::google::protobuf::UnknownFieldSet>(); - SharedDtor(); -} -inline void PartitionByRequest::SharedDtor() { - ABSL_DCHECK(GetArena() == nullptr); - delete _impl_.table_id_; - delete _impl_.result_id_; - _impl_.~Impl_(); -} - -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_ = { - { - PROTOBUF_FIELD_OFFSET(PartitionByRequest, _impl_._has_bits_), - 0, // no _extensions_ - 4, 24, // max_field_number, fast_idx_mask - offsetof(decltype(_table_), field_lookup_table), - 4294967280, // skipmap - offsetof(decltype(_table_), field_entries), - 4, // num_field_entries - 2, // num_aux_entries - offsetof(decltype(_table_), 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::PartitionByRequest>(), // to_prefetch - #endif // PROTOBUF_PREFETCH_PARSE_TABLE - }, {{ - // bool drop_keys = 4; - {::_pbi::TcParser::SingularVarintNoZag1(), - {32, 63, 0, PROTOBUF_FIELD_OFFSET(PartitionByRequest, _impl_.drop_keys_)}}, - // .io.deephaven.proto.backplane.grpc.Ticket table_id = 1; - {::_pbi::TcParser::FastMtS1, - {10, 0, 0, PROTOBUF_FIELD_OFFSET(PartitionByRequest, _impl_.table_id_)}}, - // .io.deephaven.proto.backplane.grpc.Ticket result_id = 2; - {::_pbi::TcParser::FastMtS1, - {18, 1, 1, PROTOBUF_FIELD_OFFSET(PartitionByRequest, _impl_.result_id_)}}, - // repeated string key_column_names = 3; - {::_pbi::TcParser::FastUR1, - {26, 63, 0, PROTOBUF_FIELD_OFFSET(PartitionByRequest, _impl_.key_column_names_)}}, - }}, {{ - 65535, 65535 - }}, {{ - // .io.deephaven.proto.backplane.grpc.Ticket table_id = 1; - {PROTOBUF_FIELD_OFFSET(PartitionByRequest, _impl_.table_id_), _Internal::kHasBitsOffset + 0, 0, - (0 | ::_fl::kFcOptional | ::_fl::kMessage | ::_fl::kTvTable)}, - // .io.deephaven.proto.backplane.grpc.Ticket result_id = 2; - {PROTOBUF_FIELD_OFFSET(PartitionByRequest, _impl_.result_id_), _Internal::kHasBitsOffset + 1, 1, - (0 | ::_fl::kFcOptional | ::_fl::kMessage | ::_fl::kTvTable)}, - // repeated string key_column_names = 3; - {PROTOBUF_FIELD_OFFSET(PartitionByRequest, _impl_.key_column_names_), -1, 0, - (0 | ::_fl::kFcRepeated | ::_fl::kUtf8String | ::_fl::kRepSString)}, - // bool drop_keys = 4; - {PROTOBUF_FIELD_OFFSET(PartitionByRequest, _impl_.drop_keys_), -1, 0, - (0 | ::_fl::kFcSingular | ::_fl::kBool)}, - }}, {{ - {::_pbi::TcParser::GetTable<::io::deephaven::proto::backplane::grpc::Ticket>()}, - {::_pbi::TcParser::GetTable<::io::deephaven::proto::backplane::grpc::Ticket>()}, - }}, {{ - "\64\0\0\20\0\0\0\0" - "io.deephaven.proto.backplane.grpc.PartitionByRequest" - "key_column_names" - }}, -}; - -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; - - _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>(); -} - -#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; - (void) cached_has_bits; - - _this->_internal_mutable_key_column_names()->MergeFrom(from._internal_key_column_names()); - cached_has_bits = from._impl_._has_bits_[0]; - if (cached_has_bits & 0x00000003u) { - if (cached_has_bits & 0x00000001u) { - 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) { - 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->_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_); -} - -void PartitionByRequest::CopyFrom(const PartitionByRequest& from) { -// @@protoc_insertion_point(class_specific_copy_from_start:io.deephaven.proto.backplane.grpc.PartitionByRequest) - if (&from == this) return; - Clear(); - MergeFrom(from); -} - - -void PartitionByRequest::InternalSwap(PartitionByRequest* PROTOBUF_RESTRICT other) { - using std::swap; - _internal_metadata_.InternalSwap(&other->_internal_metadata_); - swap(_impl_._has_bits_[0], other->_impl_._has_bits_[0]); - _impl_.key_column_names_.InternalSwap(&other->_impl_.key_column_names_); - ::google::protobuf::internal::memswap< - PROTOBUF_FIELD_OFFSET(PartitionByRequest, _impl_.drop_keys_) - + sizeof(PartitionByRequest::_impl_.drop_keys_) - - PROTOBUF_FIELD_OFFSET(PartitionByRequest, _impl_.table_id_)>( - reinterpret_cast(&_impl_.table_id_), - reinterpret_cast(&other->_impl_.table_id_)); -} - -::google::protobuf::Metadata PartitionByRequest::GetMetadata() const { - return ::google::protobuf::Message::GetMetadataImpl(GetClassData()->full()); -} -// =================================================================== - -class PartitionByResponse::_Internal { - public: -}; - -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>( - from._internal_metadata_); - - // @@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 - {{ - }}, -}; - - - - - - - - -::google::protobuf::Metadata PartitionByResponse::GetMetadata() const { - return ::google::protobuf::internal::ZeroFieldsBase::GetMetadataImpl(GetClassData()->full()); -} -// =================================================================== - -class MergeRequest::_Internal { - public: - using HasBits = - decltype(std::declval()._impl_._has_bits_); - static constexpr ::int32_t kHasBitsOffset = - 8 * PROTOBUF_FIELD_OFFSET(MergeRequest, _impl_._has_bits_); -}; - -void MergeRequest::clear_partitioned_table() { - ::google::protobuf::internal::TSanWrite(&_impl_); - if (_impl_.partitioned_table_ != nullptr) _impl_.partitioned_table_->Clear(); - _impl_._has_bits_[0] &= ~0x00000001u; -} -void MergeRequest::clear_result_id() { - ::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 ::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_, from); - ::uint32_t cached_has_bits = _impl_._has_bits_[0]; - _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) -} -inline PROTOBUF_NDEBUG_INLINE MergeRequest::Impl_::Impl_( - ::google::protobuf::internal::InternalVisibility visibility, - ::google::protobuf::Arena* arena) - : _cached_size_{0} {} - -inline void MergeRequest::SharedCtor(::_pb::Arena* arena) { - new (&_impl_) Impl_(internal_visibility(), arena); - ::memset(reinterpret_cast(&_impl_) + - offsetof(Impl_, partitioned_table_), - 0, - offsetof(Impl_, result_id_) - - offsetof(Impl_, partitioned_table_) + - sizeof(Impl_::result_id_)); -} -MergeRequest::~MergeRequest() { - // @@protoc_insertion_point(destructor:io.deephaven.proto.backplane.grpc.MergeRequest) - _internal_metadata_.Delete<::google::protobuf::UnknownFieldSet>(); - SharedDtor(); -} -inline void MergeRequest::SharedDtor() { - ABSL_DCHECK(GetArena() == nullptr); - delete _impl_.partitioned_table_; - delete _impl_.result_id_; - _impl_.~Impl_(); -} - -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_ = { - { - PROTOBUF_FIELD_OFFSET(MergeRequest, _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 - 2, // num_aux_entries - offsetof(decltype(_table_), 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::MergeRequest>(), // to_prefetch - #endif // PROTOBUF_PREFETCH_PARSE_TABLE - }, {{ - // .io.deephaven.proto.backplane.grpc.Ticket result_id = 2; - {::_pbi::TcParser::FastMtS1, - {18, 1, 1, PROTOBUF_FIELD_OFFSET(MergeRequest, _impl_.result_id_)}}, - // .io.deephaven.proto.backplane.grpc.Ticket partitioned_table = 1; - {::_pbi::TcParser::FastMtS1, - {10, 0, 0, PROTOBUF_FIELD_OFFSET(MergeRequest, _impl_.partitioned_table_)}}, - }}, {{ - 65535, 65535 - }}, {{ - // .io.deephaven.proto.backplane.grpc.Ticket partitioned_table = 1; - {PROTOBUF_FIELD_OFFSET(MergeRequest, _impl_.partitioned_table_), _Internal::kHasBitsOffset + 0, 0, - (0 | ::_fl::kFcOptional | ::_fl::kMessage | ::_fl::kTvTable)}, - // .io.deephaven.proto.backplane.grpc.Ticket result_id = 2; - {PROTOBUF_FIELD_OFFSET(MergeRequest, _impl_.result_id_), _Internal::kHasBitsOffset + 1, 1, - (0 | ::_fl::kFcOptional | ::_fl::kMessage | ::_fl::kTvTable)}, - }}, {{ - {::_pbi::TcParser::GetTable<::io::deephaven::proto::backplane::grpc::Ticket>()}, - {::_pbi::TcParser::GetTable<::io::deephaven::proto::backplane::grpc::Ticket>()}, - }}, {{ - }}, -}; - -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) { - 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>(); -} - -#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; - (void) cached_has_bits; - - cached_has_bits = from._impl_._has_bits_[0]; - if (cached_has_bits & 0x00000003u) { - if (cached_has_bits & 0x00000001u) { - 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) { - 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_); -} - -void MergeRequest::CopyFrom(const MergeRequest& from) { -// @@protoc_insertion_point(class_specific_copy_from_start:io.deephaven.proto.backplane.grpc.MergeRequest) - if (&from == this) return; - Clear(); - MergeFrom(from); -} - - -void MergeRequest::InternalSwap(MergeRequest* PROTOBUF_RESTRICT other) { - using std::swap; - _internal_metadata_.InternalSwap(&other->_internal_metadata_); - swap(_impl_._has_bits_[0], other->_impl_._has_bits_[0]); - ::google::protobuf::internal::memswap< - PROTOBUF_FIELD_OFFSET(MergeRequest, _impl_.result_id_) - + sizeof(MergeRequest::_impl_.result_id_) - - PROTOBUF_FIELD_OFFSET(MergeRequest, _impl_.partitioned_table_)>( - reinterpret_cast(&_impl_.partitioned_table_), - reinterpret_cast(&other->_impl_.partitioned_table_)); -} - -::google::protobuf::Metadata MergeRequest::GetMetadata() const { - return ::google::protobuf::Message::GetMetadataImpl(GetClassData()->full()); -} -// =================================================================== - -class GetTableRequest::_Internal { - public: - using HasBits = - decltype(std::declval()._impl_._has_bits_); - static constexpr ::int32_t kHasBitsOffset = - 8 * PROTOBUF_FIELD_OFFSET(GetTableRequest, _impl_._has_bits_); -}; - -void GetTableRequest::clear_partitioned_table() { - ::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() { - ::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() { - ::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 ::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_, from); - ::uint32_t cached_has_bits = _impl_._has_bits_[0]; - _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) -} -inline PROTOBUF_NDEBUG_INLINE GetTableRequest::Impl_::Impl_( - ::google::protobuf::internal::InternalVisibility visibility, - ::google::protobuf::Arena* arena) - : _cached_size_{0} {} - -inline void GetTableRequest::SharedCtor(::_pb::Arena* arena) { - new (&_impl_) Impl_(internal_visibility(), arena); - ::memset(reinterpret_cast(&_impl_) + - offsetof(Impl_, partitioned_table_), - 0, - offsetof(Impl_, result_id_) - - offsetof(Impl_, partitioned_table_) + - sizeof(Impl_::result_id_)); -} -GetTableRequest::~GetTableRequest() { - // @@protoc_insertion_point(destructor:io.deephaven.proto.backplane.grpc.GetTableRequest) - _internal_metadata_.Delete<::google::protobuf::UnknownFieldSet>(); - SharedDtor(); -} -inline void GetTableRequest::SharedDtor() { - ABSL_DCHECK(GetArena() == nullptr); - delete _impl_.partitioned_table_; - delete _impl_.key_table_ticket_; - delete _impl_.result_id_; - _impl_.~Impl_(); -} - -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_ = { - { - PROTOBUF_FIELD_OFFSET(GetTableRequest, _impl_._has_bits_), - 0, // no _extensions_ - 4, 24, // max_field_number, fast_idx_mask - offsetof(decltype(_table_), field_lookup_table), - 4294967284, // skipmap - offsetof(decltype(_table_), field_entries), - 3, // num_field_entries - 3, // num_aux_entries - offsetof(decltype(_table_), 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::GetTableRequest>(), // to_prefetch - #endif // PROTOBUF_PREFETCH_PARSE_TABLE - }, {{ - // .io.deephaven.proto.backplane.grpc.Ticket result_id = 4; - {::_pbi::TcParser::FastMtS1, - {34, 2, 2, PROTOBUF_FIELD_OFFSET(GetTableRequest, _impl_.result_id_)}}, - // .io.deephaven.proto.backplane.grpc.Ticket partitioned_table = 1; - {::_pbi::TcParser::FastMtS1, - {10, 0, 0, PROTOBUF_FIELD_OFFSET(GetTableRequest, _impl_.partitioned_table_)}}, - // .io.deephaven.proto.backplane.grpc.Ticket key_table_ticket = 2; - {::_pbi::TcParser::FastMtS1, - {18, 1, 1, PROTOBUF_FIELD_OFFSET(GetTableRequest, _impl_.key_table_ticket_)}}, - {::_pbi::TcParser::MiniParse, {}}, - }}, {{ - 65535, 65535 - }}, {{ - // .io.deephaven.proto.backplane.grpc.Ticket partitioned_table = 1; - {PROTOBUF_FIELD_OFFSET(GetTableRequest, _impl_.partitioned_table_), _Internal::kHasBitsOffset + 0, 0, - (0 | ::_fl::kFcOptional | ::_fl::kMessage | ::_fl::kTvTable)}, - // .io.deephaven.proto.backplane.grpc.Ticket key_table_ticket = 2; - {PROTOBUF_FIELD_OFFSET(GetTableRequest, _impl_.key_table_ticket_), _Internal::kHasBitsOffset + 1, 1, - (0 | ::_fl::kFcOptional | ::_fl::kMessage | ::_fl::kTvTable)}, - // .io.deephaven.proto.backplane.grpc.Ticket result_id = 4; - {PROTOBUF_FIELD_OFFSET(GetTableRequest, _impl_.result_id_), _Internal::kHasBitsOffset + 2, 2, - (0 | ::_fl::kFcOptional | ::_fl::kMessage | ::_fl::kTvTable)}, - }}, {{ - {::_pbi::TcParser::GetTable<::io::deephaven::proto::backplane::grpc::Ticket>()}, - {::_pbi::TcParser::GetTable<::io::deephaven::proto::backplane::grpc::Ticket>()}, - {::_pbi::TcParser::GetTable<::io::deephaven::proto::backplane::grpc::Ticket>()}, - }}, {{ - }}, -}; - -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) { - 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>(); -} - -#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; - (void) cached_has_bits; - - cached_has_bits = from._impl_._has_bits_[0]; - if (cached_has_bits & 0x00000007u) { - if (cached_has_bits & 0x00000001u) { - 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) { - 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) { - 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_); -} - -void GetTableRequest::CopyFrom(const GetTableRequest& from) { -// @@protoc_insertion_point(class_specific_copy_from_start:io.deephaven.proto.backplane.grpc.GetTableRequest) - if (&from == this) return; - Clear(); - MergeFrom(from); -} - - -void GetTableRequest::InternalSwap(GetTableRequest* PROTOBUF_RESTRICT other) { - using std::swap; - _internal_metadata_.InternalSwap(&other->_internal_metadata_); - swap(_impl_._has_bits_[0], other->_impl_._has_bits_[0]); - ::google::protobuf::internal::memswap< - PROTOBUF_FIELD_OFFSET(GetTableRequest, _impl_.result_id_) - + sizeof(GetTableRequest::_impl_.result_id_) - - PROTOBUF_FIELD_OFFSET(GetTableRequest, _impl_.partitioned_table_)>( - reinterpret_cast(&_impl_.partitioned_table_), - reinterpret_cast(&other->_impl_.partitioned_table_)); -} - -::google::protobuf::Metadata GetTableRequest::GetMetadata() const { - return ::google::protobuf::Message::GetMetadataImpl(GetClassData()->full()); -} -// =================================================================== - -class PartitionedTableDescriptor::_Internal { - public: -}; - -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 ::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_), - _cached_size_{0} {} - -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_, from); - ::memcpy(reinterpret_cast(&_impl_) + - offsetof(Impl_, unique_keys_), - reinterpret_cast(&from._impl_) + - offsetof(Impl_, unique_keys_), - offsetof(Impl_, constituent_changes_permitted_) - - offsetof(Impl_, unique_keys_) + - sizeof(Impl_::constituent_changes_permitted_)); - - // @@protoc_insertion_point(copy_constructor:io.deephaven.proto.backplane.grpc.PartitionedTableDescriptor) -} -inline PROTOBUF_NDEBUG_INLINE PartitionedTableDescriptor::Impl_::Impl_( - ::google::protobuf::internal::InternalVisibility visibility, - ::google::protobuf::Arena* arena) - : key_column_names_{visibility, arena}, - constituent_definition_schema_(arena), - constituent_column_name_(arena), - _cached_size_{0} {} - -inline void PartitionedTableDescriptor::SharedCtor(::_pb::Arena* arena) { - new (&_impl_) Impl_(internal_visibility(), arena); - ::memset(reinterpret_cast(&_impl_) + - offsetof(Impl_, unique_keys_), - 0, - offsetof(Impl_, constituent_changes_permitted_) - - offsetof(Impl_, unique_keys_) + - sizeof(Impl_::constituent_changes_permitted_)); -} -PartitionedTableDescriptor::~PartitionedTableDescriptor() { - // @@protoc_insertion_point(destructor:io.deephaven.proto.backplane.grpc.PartitionedTableDescriptor) - _internal_metadata_.Delete<::google::protobuf::UnknownFieldSet>(); - SharedDtor(); -} -inline void PartitionedTableDescriptor::SharedDtor() { - ABSL_DCHECK(GetArena() == nullptr); - _impl_.constituent_definition_schema_.Destroy(); - _impl_.constituent_column_name_.Destroy(); - _impl_.~Impl_(); -} - -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_ = { - { - 0, // no _has_bits_ - 0, // no _extensions_ - 5, 56, // max_field_number, fast_idx_mask - offsetof(decltype(_table_), field_lookup_table), - 4294967264, // skipmap - offsetof(decltype(_table_), field_entries), - 5, // 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::PartitionedTableDescriptor>(), // to_prefetch - #endif // PROTOBUF_PREFETCH_PARSE_TABLE - }, {{ - {::_pbi::TcParser::MiniParse, {}}, - // repeated string key_column_names = 1; - {::_pbi::TcParser::FastUR1, - {10, 63, 0, PROTOBUF_FIELD_OFFSET(PartitionedTableDescriptor, _impl_.key_column_names_)}}, - // bool unique_keys = 2; - {::_pbi::TcParser::SingularVarintNoZag1(), - {16, 63, 0, PROTOBUF_FIELD_OFFSET(PartitionedTableDescriptor, _impl_.unique_keys_)}}, - // bytes constituent_definition_schema = 3; - {::_pbi::TcParser::FastBS1, - {26, 63, 0, PROTOBUF_FIELD_OFFSET(PartitionedTableDescriptor, _impl_.constituent_definition_schema_)}}, - // string constituent_column_name = 4; - {::_pbi::TcParser::FastUS1, - {34, 63, 0, PROTOBUF_FIELD_OFFSET(PartitionedTableDescriptor, _impl_.constituent_column_name_)}}, - // bool constituent_changes_permitted = 5; - {::_pbi::TcParser::SingularVarintNoZag1(), - {40, 63, 0, PROTOBUF_FIELD_OFFSET(PartitionedTableDescriptor, _impl_.constituent_changes_permitted_)}}, - {::_pbi::TcParser::MiniParse, {}}, - {::_pbi::TcParser::MiniParse, {}}, - }}, {{ - 65535, 65535 - }}, {{ - // repeated string key_column_names = 1; - {PROTOBUF_FIELD_OFFSET(PartitionedTableDescriptor, _impl_.key_column_names_), 0, 0, - (0 | ::_fl::kFcRepeated | ::_fl::kUtf8String | ::_fl::kRepSString)}, - // bool unique_keys = 2; - {PROTOBUF_FIELD_OFFSET(PartitionedTableDescriptor, _impl_.unique_keys_), 0, 0, - (0 | ::_fl::kFcSingular | ::_fl::kBool)}, - // bytes constituent_definition_schema = 3; - {PROTOBUF_FIELD_OFFSET(PartitionedTableDescriptor, _impl_.constituent_definition_schema_), 0, 0, - (0 | ::_fl::kFcSingular | ::_fl::kBytes | ::_fl::kRepAString)}, - // string constituent_column_name = 4; - {PROTOBUF_FIELD_OFFSET(PartitionedTableDescriptor, _impl_.constituent_column_name_), 0, 0, - (0 | ::_fl::kFcSingular | ::_fl::kUtf8String | ::_fl::kRepAString)}, - // bool constituent_changes_permitted = 5; - {PROTOBUF_FIELD_OFFSET(PartitionedTableDescriptor, _impl_.constituent_changes_permitted_), 0, 0, - (0 | ::_fl::kFcSingular | ::_fl::kBool)}, - }}, - // no aux_entries - {{ - "\74\20\0\0\27\0\0\0" - "io.deephaven.proto.backplane.grpc.PartitionedTableDescriptor" - "key_column_names" - "constituent_column_name" - }}, -}; - -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; - - _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>(); -} - -#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) - ABSL_DCHECK_NE(&from, _this); - ::uint32_t cached_has_bits = 0; - (void) cached_has_bits; - - _this->_internal_mutable_key_column_names()->MergeFrom(from._internal_key_column_names()); - if (!from._internal_constituent_definition_schema().empty()) { - _this->_internal_set_constituent_definition_schema(from._internal_constituent_definition_schema()); - } - if (!from._internal_constituent_column_name().empty()) { - _this->_internal_set_constituent_column_name(from._internal_constituent_column_name()); - } - if (from._internal_unique_keys() != 0) { - _this->_impl_.unique_keys_ = from._impl_.unique_keys_; - } - if (from._internal_constituent_changes_permitted() != 0) { - _this->_impl_.constituent_changes_permitted_ = from._impl_.constituent_changes_permitted_; - } - _this->_internal_metadata_.MergeFrom<::google::protobuf::UnknownFieldSet>(from._internal_metadata_); -} - -void PartitionedTableDescriptor::CopyFrom(const PartitionedTableDescriptor& from) { -// @@protoc_insertion_point(class_specific_copy_from_start:io.deephaven.proto.backplane.grpc.PartitionedTableDescriptor) - if (&from == this) return; - Clear(); - MergeFrom(from); -} - - -void PartitionedTableDescriptor::InternalSwap(PartitionedTableDescriptor* PROTOBUF_RESTRICT other) { - using std::swap; - auto* arena = GetArena(); - ABSL_DCHECK_EQ(arena, other->GetArena()); - _internal_metadata_.InternalSwap(&other->_internal_metadata_); - _impl_.key_column_names_.InternalSwap(&other->_impl_.key_column_names_); - ::_pbi::ArenaStringPtr::InternalSwap(&_impl_.constituent_definition_schema_, &other->_impl_.constituent_definition_schema_, arena); - ::_pbi::ArenaStringPtr::InternalSwap(&_impl_.constituent_column_name_, &other->_impl_.constituent_column_name_, arena); - ::google::protobuf::internal::memswap< - PROTOBUF_FIELD_OFFSET(PartitionedTableDescriptor, _impl_.constituent_changes_permitted_) - + sizeof(PartitionedTableDescriptor::_impl_.constituent_changes_permitted_) - - PROTOBUF_FIELD_OFFSET(PartitionedTableDescriptor, _impl_.unique_keys_)>( - reinterpret_cast(&_impl_.unique_keys_), - reinterpret_cast(&other->_impl_.unique_keys_)); -} - -::google::protobuf::Metadata PartitionedTableDescriptor::GetMetadata() const { - return ::google::protobuf::Message::GetMetadataImpl(GetClassData()->full()); -} -// @@protoc_insertion_point(namespace_scope) -} // namespace grpc -} // namespace backplane -} // namespace proto -} // namespace deephaven -} // namespace io -namespace google { -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 deleted file mode 100644 index 079668eaba1..00000000000 --- a/cpp-client/deephaven/dhclient/proto/deephaven/proto/partitionedtable.pb.h +++ /dev/null @@ -1,2163 +0,0 @@ -// 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 - -#ifndef GOOGLE_PROTOBUF_INCLUDED_deephaven_2fproto_2fpartitionedtable_2eproto_2epb_2eh -#define GOOGLE_PROTOBUF_INCLUDED_deephaven_2fproto_2fpartitionedtable_2eproto_2epb_2eh - -#include -#include -#include -#include - -#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" -#include "google/protobuf/generated_message_bases.h" -#include "google/protobuf/generated_message_tctable_decl.h" -#include "google/protobuf/generated_message_util.h" -#include "google/protobuf/metadata_lite.h" -#include "google/protobuf/generated_message_reflection.h" -#include "google/protobuf/message.h" -#include "google/protobuf/repeated_field.h" // IWYU pragma: export -#include "google/protobuf/extension_set.h" // IWYU pragma: export -#include "google/protobuf/unknown_field_set.h" -#include "deephaven/proto/table.pb.h" -#include "deephaven/proto/ticket.pb.h" -// @@protoc_insertion_point(includes) - -// Must be included last. -#include "google/protobuf/port_def.inc" - -#define PROTOBUF_INTERNAL_EXPORT_deephaven_2fproto_2fpartitionedtable_2eproto - -namespace google { -namespace protobuf { -namespace internal { -class AnyMetadata; -} // namespace internal -} // namespace protobuf -} // namespace google - -// Internal implementation detail -- do not use these members. -struct TableStruct_deephaven_2fproto_2fpartitionedtable_2eproto { - static const ::uint32_t offsets[]; -}; -extern const ::google::protobuf::internal::DescriptorTable - descriptor_table_deephaven_2fproto_2fpartitionedtable_2eproto; -namespace io { -namespace deephaven { -namespace proto { -namespace backplane { -namespace grpc { -class GetTableRequest; -struct GetTableRequestDefaultTypeInternal; -extern GetTableRequestDefaultTypeInternal _GetTableRequest_default_instance_; -class MergeRequest; -struct MergeRequestDefaultTypeInternal; -extern MergeRequestDefaultTypeInternal _MergeRequest_default_instance_; -class PartitionByRequest; -struct PartitionByRequestDefaultTypeInternal; -extern PartitionByRequestDefaultTypeInternal _PartitionByRequest_default_instance_; -class PartitionByResponse; -struct PartitionByResponseDefaultTypeInternal; -extern PartitionByResponseDefaultTypeInternal _PartitionByResponse_default_instance_; -class PartitionedTableDescriptor; -struct PartitionedTableDescriptorDefaultTypeInternal; -extern PartitionedTableDescriptorDefaultTypeInternal _PartitionedTableDescriptor_default_instance_; -} // namespace grpc -} // namespace backplane -} // namespace proto -} // namespace deephaven -} // namespace io -namespace google { -namespace protobuf { -} // namespace protobuf -} // namespace google - -namespace io { -namespace deephaven { -namespace proto { -namespace backplane { -namespace grpc { - -// =================================================================== - - -// ------------------------------------------------------------------- - -class PartitionedTableDescriptor final : public ::google::protobuf::Message -/* @@protoc_insertion_point(class_definition:io.deephaven.proto.backplane.grpc.PartitionedTableDescriptor) */ { - public: - inline PartitionedTableDescriptor() : PartitionedTableDescriptor(nullptr) {} - ~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; - } - inline PartitionedTableDescriptor& operator=(PartitionedTableDescriptor&& 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 PartitionedTableDescriptor& default_instance() { - return *internal_default_instance(); - } - 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); } - 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 - if (GetArena() == other->GetArena()) { -#endif // !PROTOBUF_FORCE_COPY_IN_SWAP - InternalSwap(other); - } else { - ::google::protobuf::internal::GenericSwap(this, other); - } - } - void UnsafeArenaSwap(PartitionedTableDescriptor* other) { - if (other == this) return; - ABSL_DCHECK(GetArena() == other->GetArena()); - InternalSwap(other); - } - - // implements Message ---------------------------------------------- - - 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); } - - private: - static void MergeImpl( - ::google::protobuf::MessageLite& to_msg, - const ::google::protobuf::MessageLite& from_msg); - - 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; - #endif // PROTOBUF_CUSTOM_VTABLE - int GetCachedSize() const { return _impl_._cached_size_.Get(); } - - private: - void SharedCtor(::google::protobuf::Arena* arena); - void SharedDtor(); - void InternalSwap(PartitionedTableDescriptor* other); - private: - friend class ::google::protobuf::internal::AnyMetadata; - 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); - 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, - kConstituentColumnNameFieldNumber = 4, - kUniqueKeysFieldNumber = 2, - kConstituentChangesPermittedFieldNumber = 5, - }; - // repeated string key_column_names = 1; - int key_column_names_size() const; - private: - int _internal_key_column_names_size() const; - - public: - void clear_key_column_names() ; - const std::string& key_column_names(int index) const; - std::string* mutable_key_column_names(int index); - template - void set_key_column_names(int index, Arg_&& value, Args_... args); - std::string* add_key_column_names(); - 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(); - - private: - const ::google::protobuf::RepeatedPtrField& _internal_key_column_names() const; - ::google::protobuf::RepeatedPtrField* _internal_mutable_key_column_names(); - - public: - // bytes constituent_definition_schema = 3; - void clear_constituent_definition_schema() ; - const std::string& constituent_definition_schema() const; - template - void set_constituent_definition_schema(Arg_&& arg, Args_... args); - std::string* mutable_constituent_definition_schema(); - PROTOBUF_NODISCARD std::string* release_constituent_definition_schema(); - void set_allocated_constituent_definition_schema(std::string* value); - - private: - const std::string& _internal_constituent_definition_schema() const; - inline PROTOBUF_ALWAYS_INLINE void _internal_set_constituent_definition_schema( - const std::string& value); - std::string* _internal_mutable_constituent_definition_schema(); - - public: - // string constituent_column_name = 4; - void clear_constituent_column_name() ; - const std::string& constituent_column_name() const; - template - void set_constituent_column_name(Arg_&& arg, Args_... args); - std::string* mutable_constituent_column_name(); - PROTOBUF_NODISCARD std::string* release_constituent_column_name(); - void set_allocated_constituent_column_name(std::string* value); - - private: - const std::string& _internal_constituent_column_name() const; - inline PROTOBUF_ALWAYS_INLINE void _internal_set_constituent_column_name( - const std::string& value); - std::string* _internal_mutable_constituent_column_name(); - - public: - // bool unique_keys = 2; - void clear_unique_keys() ; - bool unique_keys() const; - void set_unique_keys(bool value); - - private: - bool _internal_unique_keys() const; - void _internal_set_unique_keys(bool value); - - public: - // bool constituent_changes_permitted = 5; - void clear_constituent_changes_permitted() ; - bool constituent_changes_permitted() const; - void set_constituent_changes_permitted(bool value); - - private: - bool _internal_constituent_changes_permitted() const; - void _internal_set_constituent_changes_permitted(bool value); - - public: - // @@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 - 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 PartitionedTableDescriptor& from_msg); - ::google::protobuf::RepeatedPtrField key_column_names_; - ::google::protobuf::internal::ArenaStringPtr constituent_definition_schema_; - ::google::protobuf::internal::ArenaStringPtr constituent_column_name_; - bool unique_keys_; - bool constituent_changes_permitted_; - mutable ::google::protobuf::internal::CachedSize _cached_size_; - PROTOBUF_TSAN_DECLARE_MEMBER - }; - 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) */ { - public: - inline PartitionByResponse() : PartitionByResponse(nullptr) {} - 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; - } - inline PartitionByResponse& operator=(PartitionByResponse&& 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 PartitionByResponse& default_instance() { - return *internal_default_instance(); - } - 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); } - 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 - if (GetArena() == other->GetArena()) { -#endif // !PROTOBUF_FORCE_COPY_IN_SWAP - InternalSwap(other); - } else { - ::google::protobuf::internal::GenericSwap(this, other); - } - } - void UnsafeArenaSwap(PartitionByResponse* other) { - if (other == this) return; - ABSL_DCHECK(GetArena() == other->GetArena()); - InternalSwap(other); - } - - // implements Message ---------------------------------------------- - - 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) { - ::google::protobuf::internal::ZeroFieldsBase::CopyImpl(*this, from); - } - using ::google::protobuf::internal::ZeroFieldsBase::MergeFrom; - void MergeFrom(const PartitionByResponse& 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.PartitionByResponse"; } - - protected: - explicit PartitionByResponse(::google::protobuf::Arena* arena); - PartitionByResponse(::google::protobuf::Arena* arena, const PartitionByResponse& from); - 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; - 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 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) */ { - public: - inline PartitionByRequest() : PartitionByRequest(nullptr) {} - ~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; - } - inline PartitionByRequest& operator=(PartitionByRequest&& 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 PartitionByRequest& default_instance() { - return *internal_default_instance(); - } - 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); } - 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 - if (GetArena() == other->GetArena()) { -#endif // !PROTOBUF_FORCE_COPY_IN_SWAP - InternalSwap(other); - } else { - ::google::protobuf::internal::GenericSwap(this, other); - } - } - void UnsafeArenaSwap(PartitionByRequest* other) { - if (other == this) return; - ABSL_DCHECK(GetArena() == other->GetArena()); - InternalSwap(other); - } - - // implements Message ---------------------------------------------- - - 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); } - - private: - static void MergeImpl( - ::google::protobuf::MessageLite& to_msg, - const ::google::protobuf::MessageLite& from_msg); - - 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; - #endif // PROTOBUF_CUSTOM_VTABLE - int GetCachedSize() const { return _impl_._cached_size_.Get(); } - - private: - void SharedCtor(::google::protobuf::Arena* arena); - void SharedDtor(); - void InternalSwap(PartitionByRequest* other); - private: - friend class ::google::protobuf::internal::AnyMetadata; - 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); - 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, - kResultIdFieldNumber = 2, - kDropKeysFieldNumber = 4, - }; - // repeated string key_column_names = 3; - int key_column_names_size() const; - private: - int _internal_key_column_names_size() const; - - public: - void clear_key_column_names() ; - const std::string& key_column_names(int index) const; - std::string* mutable_key_column_names(int index); - template - void set_key_column_names(int index, Arg_&& value, Args_... args); - std::string* add_key_column_names(); - 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(); - - private: - const ::google::protobuf::RepeatedPtrField& _internal_key_column_names() const; - ::google::protobuf::RepeatedPtrField* _internal_mutable_key_column_names(); - - public: - // .io.deephaven.proto.backplane.grpc.Ticket table_id = 1; - bool has_table_id() const; - void clear_table_id() ; - const ::io::deephaven::proto::backplane::grpc::Ticket& table_id() const; - PROTOBUF_NODISCARD ::io::deephaven::proto::backplane::grpc::Ticket* release_table_id(); - ::io::deephaven::proto::backplane::grpc::Ticket* mutable_table_id(); - void set_allocated_table_id(::io::deephaven::proto::backplane::grpc::Ticket* value); - void unsafe_arena_set_allocated_table_id(::io::deephaven::proto::backplane::grpc::Ticket* value); - ::io::deephaven::proto::backplane::grpc::Ticket* unsafe_arena_release_table_id(); - - private: - const ::io::deephaven::proto::backplane::grpc::Ticket& _internal_table_id() const; - ::io::deephaven::proto::backplane::grpc::Ticket* _internal_mutable_table_id(); - - public: - // .io.deephaven.proto.backplane.grpc.Ticket result_id = 2; - bool has_result_id() const; - void clear_result_id() ; - const ::io::deephaven::proto::backplane::grpc::Ticket& result_id() const; - PROTOBUF_NODISCARD ::io::deephaven::proto::backplane::grpc::Ticket* release_result_id(); - ::io::deephaven::proto::backplane::grpc::Ticket* mutable_result_id(); - void set_allocated_result_id(::io::deephaven::proto::backplane::grpc::Ticket* value); - void unsafe_arena_set_allocated_result_id(::io::deephaven::proto::backplane::grpc::Ticket* value); - ::io::deephaven::proto::backplane::grpc::Ticket* unsafe_arena_release_result_id(); - - private: - const ::io::deephaven::proto::backplane::grpc::Ticket& _internal_result_id() const; - ::io::deephaven::proto::backplane::grpc::Ticket* _internal_mutable_result_id(); - - public: - // bool drop_keys = 4; - void clear_drop_keys() ; - bool drop_keys() const; - void set_drop_keys(bool value); - - private: - bool _internal_drop_keys() const; - void _internal_set_drop_keys(bool value); - - public: - // @@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 - 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 PartitionByRequest& from_msg); - ::google::protobuf::internal::HasBits<1> _has_bits_; - mutable ::google::protobuf::internal::CachedSize _cached_size_; - ::google::protobuf::RepeatedPtrField key_column_names_; - ::io::deephaven::proto::backplane::grpc::Ticket* table_id_; - ::io::deephaven::proto::backplane::grpc::Ticket* result_id_; - bool drop_keys_; - PROTOBUF_TSAN_DECLARE_MEMBER - }; - 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) */ { - public: - inline MergeRequest() : MergeRequest(nullptr) {} - ~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; - } - inline MergeRequest& operator=(MergeRequest&& 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 MergeRequest& default_instance() { - return *internal_default_instance(); - } - 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); } - 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 - if (GetArena() == other->GetArena()) { -#endif // !PROTOBUF_FORCE_COPY_IN_SWAP - InternalSwap(other); - } else { - ::google::protobuf::internal::GenericSwap(this, other); - } - } - void UnsafeArenaSwap(MergeRequest* other) { - if (other == this) return; - ABSL_DCHECK(GetArena() == other->GetArena()); - InternalSwap(other); - } - - // implements Message ---------------------------------------------- - - 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); } - - private: - static void MergeImpl( - ::google::protobuf::MessageLite& to_msg, - const ::google::protobuf::MessageLite& from_msg); - - 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; - #endif // PROTOBUF_CUSTOM_VTABLE - int GetCachedSize() const { return _impl_._cached_size_.Get(); } - - private: - void SharedCtor(::google::protobuf::Arena* arena); - void SharedDtor(); - void InternalSwap(MergeRequest* other); - private: - friend class ::google::protobuf::internal::AnyMetadata; - 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); - 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, - }; - // .io.deephaven.proto.backplane.grpc.Ticket partitioned_table = 1; - bool has_partitioned_table() const; - void clear_partitioned_table() ; - const ::io::deephaven::proto::backplane::grpc::Ticket& partitioned_table() const; - PROTOBUF_NODISCARD ::io::deephaven::proto::backplane::grpc::Ticket* release_partitioned_table(); - ::io::deephaven::proto::backplane::grpc::Ticket* mutable_partitioned_table(); - void set_allocated_partitioned_table(::io::deephaven::proto::backplane::grpc::Ticket* value); - void unsafe_arena_set_allocated_partitioned_table(::io::deephaven::proto::backplane::grpc::Ticket* value); - ::io::deephaven::proto::backplane::grpc::Ticket* unsafe_arena_release_partitioned_table(); - - private: - const ::io::deephaven::proto::backplane::grpc::Ticket& _internal_partitioned_table() const; - ::io::deephaven::proto::backplane::grpc::Ticket* _internal_mutable_partitioned_table(); - - public: - // .io.deephaven.proto.backplane.grpc.Ticket result_id = 2; - bool has_result_id() const; - void clear_result_id() ; - const ::io::deephaven::proto::backplane::grpc::Ticket& result_id() const; - PROTOBUF_NODISCARD ::io::deephaven::proto::backplane::grpc::Ticket* release_result_id(); - ::io::deephaven::proto::backplane::grpc::Ticket* mutable_result_id(); - void set_allocated_result_id(::io::deephaven::proto::backplane::grpc::Ticket* value); - void unsafe_arena_set_allocated_result_id(::io::deephaven::proto::backplane::grpc::Ticket* value); - ::io::deephaven::proto::backplane::grpc::Ticket* unsafe_arena_release_result_id(); - - private: - const ::io::deephaven::proto::backplane::grpc::Ticket& _internal_result_id() const; - ::io::deephaven::proto::backplane::grpc::Ticket* _internal_mutable_result_id(); - - public: - // @@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 - 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 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_; - ::io::deephaven::proto::backplane::grpc::Ticket* result_id_; - PROTOBUF_TSAN_DECLARE_MEMBER - }; - 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) */ { - public: - inline GetTableRequest() : GetTableRequest(nullptr) {} - ~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; - } - inline GetTableRequest& operator=(GetTableRequest&& 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 GetTableRequest& default_instance() { - return *internal_default_instance(); - } - 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); } - 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 - if (GetArena() == other->GetArena()) { -#endif // !PROTOBUF_FORCE_COPY_IN_SWAP - InternalSwap(other); - } else { - ::google::protobuf::internal::GenericSwap(this, other); - } - } - void UnsafeArenaSwap(GetTableRequest* other) { - if (other == this) return; - ABSL_DCHECK(GetArena() == other->GetArena()); - InternalSwap(other); - } - - // implements Message ---------------------------------------------- - - 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); } - - private: - static void MergeImpl( - ::google::protobuf::MessageLite& to_msg, - const ::google::protobuf::MessageLite& from_msg); - - 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; - #endif // PROTOBUF_CUSTOM_VTABLE - int GetCachedSize() const { return _impl_._cached_size_.Get(); } - - private: - void SharedCtor(::google::protobuf::Arena* arena); - void SharedDtor(); - void InternalSwap(GetTableRequest* other); - private: - friend class ::google::protobuf::internal::AnyMetadata; - 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); - 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, - kResultIdFieldNumber = 4, - }; - // .io.deephaven.proto.backplane.grpc.Ticket partitioned_table = 1; - bool has_partitioned_table() const; - void clear_partitioned_table() ; - const ::io::deephaven::proto::backplane::grpc::Ticket& partitioned_table() const; - PROTOBUF_NODISCARD ::io::deephaven::proto::backplane::grpc::Ticket* release_partitioned_table(); - ::io::deephaven::proto::backplane::grpc::Ticket* mutable_partitioned_table(); - void set_allocated_partitioned_table(::io::deephaven::proto::backplane::grpc::Ticket* value); - void unsafe_arena_set_allocated_partitioned_table(::io::deephaven::proto::backplane::grpc::Ticket* value); - ::io::deephaven::proto::backplane::grpc::Ticket* unsafe_arena_release_partitioned_table(); - - private: - const ::io::deephaven::proto::backplane::grpc::Ticket& _internal_partitioned_table() const; - ::io::deephaven::proto::backplane::grpc::Ticket* _internal_mutable_partitioned_table(); - - public: - // .io.deephaven.proto.backplane.grpc.Ticket key_table_ticket = 2; - bool has_key_table_ticket() const; - void clear_key_table_ticket() ; - const ::io::deephaven::proto::backplane::grpc::Ticket& key_table_ticket() const; - PROTOBUF_NODISCARD ::io::deephaven::proto::backplane::grpc::Ticket* release_key_table_ticket(); - ::io::deephaven::proto::backplane::grpc::Ticket* mutable_key_table_ticket(); - void set_allocated_key_table_ticket(::io::deephaven::proto::backplane::grpc::Ticket* value); - void unsafe_arena_set_allocated_key_table_ticket(::io::deephaven::proto::backplane::grpc::Ticket* value); - ::io::deephaven::proto::backplane::grpc::Ticket* unsafe_arena_release_key_table_ticket(); - - private: - const ::io::deephaven::proto::backplane::grpc::Ticket& _internal_key_table_ticket() const; - ::io::deephaven::proto::backplane::grpc::Ticket* _internal_mutable_key_table_ticket(); - - public: - // .io.deephaven.proto.backplane.grpc.Ticket result_id = 4; - bool has_result_id() const; - void clear_result_id() ; - const ::io::deephaven::proto::backplane::grpc::Ticket& result_id() const; - PROTOBUF_NODISCARD ::io::deephaven::proto::backplane::grpc::Ticket* release_result_id(); - ::io::deephaven::proto::backplane::grpc::Ticket* mutable_result_id(); - void set_allocated_result_id(::io::deephaven::proto::backplane::grpc::Ticket* value); - void unsafe_arena_set_allocated_result_id(::io::deephaven::proto::backplane::grpc::Ticket* value); - ::io::deephaven::proto::backplane::grpc::Ticket* unsafe_arena_release_result_id(); - - private: - const ::io::deephaven::proto::backplane::grpc::Ticket& _internal_result_id() const; - ::io::deephaven::proto::backplane::grpc::Ticket* _internal_mutable_result_id(); - - public: - // @@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 - 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 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_; - ::io::deephaven::proto::backplane::grpc::Ticket* key_table_ticket_; - ::io::deephaven::proto::backplane::grpc::Ticket* result_id_; - PROTOBUF_TSAN_DECLARE_MEMBER - }; - union { Impl_ _impl_; }; - friend struct ::TableStruct_deephaven_2fproto_2fpartitionedtable_2eproto; -}; - -// =================================================================== - - - - -// =================================================================== - - -#ifdef __GNUC__ -#pragma GCC diagnostic push -#pragma GCC diagnostic ignored "-Wstrict-aliasing" -#endif // __GNUC__ -// ------------------------------------------------------------------- - -// PartitionByRequest - -// .io.deephaven.proto.backplane.grpc.Ticket table_id = 1; -inline bool PartitionByRequest::has_table_id() const { - bool value = (_impl_._has_bits_[0] & 0x00000001u) != 0; - PROTOBUF_ASSUME(!value || _impl_.table_id_ != nullptr); - return value; -} -inline const ::io::deephaven::proto::backplane::grpc::Ticket& PartitionByRequest::_internal_table_id() const { - ::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_); -} -inline const ::io::deephaven::proto::backplane::grpc::Ticket& PartitionByRequest::table_id() const ABSL_ATTRIBUTE_LIFETIME_BOUND { - // @@protoc_insertion_point(field_get:io.deephaven.proto.backplane.grpc.PartitionByRequest.table_id) - return _internal_table_id(); -} -inline void PartitionByRequest::unsafe_arena_set_allocated_table_id(::io::deephaven::proto::backplane::grpc::Ticket* value) { - ::google::protobuf::internal::TSanWrite(&_impl_); - if (GetArena() == nullptr) { - delete reinterpret_cast<::google::protobuf::MessageLite*>(_impl_.table_id_); - } - _impl_.table_id_ = reinterpret_cast<::io::deephaven::proto::backplane::grpc::Ticket*>(value); - if (value != nullptr) { - _impl_._has_bits_[0] |= 0x00000001u; - } else { - _impl_._has_bits_[0] &= ~0x00000001u; - } - // @@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() { - ::google::protobuf::internal::TSanWrite(&_impl_); - - _impl_._has_bits_[0] &= ~0x00000001u; - ::io::deephaven::proto::backplane::grpc::Ticket* released = _impl_.table_id_; - _impl_.table_id_ = nullptr; -#ifdef PROTOBUF_FORCE_COPY_IN_RELEASE - auto* old = reinterpret_cast<::google::protobuf::MessageLite*>(released); - released = ::google::protobuf::internal::DuplicateIfNonNull(released); - if (GetArena() == nullptr) { - delete old; - } -#else // PROTOBUF_FORCE_COPY_IN_RELEASE - if (GetArena() != nullptr) { - released = ::google::protobuf::internal::DuplicateIfNonNull(released); - } -#endif // !PROTOBUF_FORCE_COPY_IN_RELEASE - return released; -} -inline ::io::deephaven::proto::backplane::grpc::Ticket* PartitionByRequest::unsafe_arena_release_table_id() { - ::google::protobuf::internal::TSanWrite(&_impl_); - // @@protoc_insertion_point(field_release:io.deephaven.proto.backplane.grpc.PartitionByRequest.table_id) - - _impl_._has_bits_[0] &= ~0x00000001u; - ::io::deephaven::proto::backplane::grpc::Ticket* temp = _impl_.table_id_; - _impl_.table_id_ = nullptr; - return temp; -} -inline ::io::deephaven::proto::backplane::grpc::Ticket* PartitionByRequest::_internal_mutable_table_id() { - ::google::protobuf::internal::TSanWrite(&_impl_); - if (_impl_.table_id_ == nullptr) { - 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(); - ::google::protobuf::internal::TSanWrite(&_impl_); - if (message_arena == nullptr) { - delete reinterpret_cast<::google::protobuf::MessageLite*>(_impl_.table_id_); - } - - if (value != nullptr) { - ::google::protobuf::Arena* submessage_arena = reinterpret_cast<::google::protobuf::MessageLite*>(value)->GetArena(); - if (message_arena != submessage_arena) { - value = ::google::protobuf::internal::GetOwnedMessage(message_arena, value, submessage_arena); - } - _impl_._has_bits_[0] |= 0x00000001u; - } else { - _impl_._has_bits_[0] &= ~0x00000001u; - } - - _impl_.table_id_ = reinterpret_cast<::io::deephaven::proto::backplane::grpc::Ticket*>(value); - // @@protoc_insertion_point(field_set_allocated:io.deephaven.proto.backplane.grpc.PartitionByRequest.table_id) -} - -// .io.deephaven.proto.backplane.grpc.Ticket result_id = 2; -inline bool PartitionByRequest::has_result_id() const { - bool value = (_impl_._has_bits_[0] & 0x00000002u) != 0; - PROTOBUF_ASSUME(!value || _impl_.result_id_ != nullptr); - return value; -} -inline const ::io::deephaven::proto::backplane::grpc::Ticket& PartitionByRequest::_internal_result_id() const { - ::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_); -} -inline const ::io::deephaven::proto::backplane::grpc::Ticket& PartitionByRequest::result_id() const ABSL_ATTRIBUTE_LIFETIME_BOUND { - // @@protoc_insertion_point(field_get:io.deephaven.proto.backplane.grpc.PartitionByRequest.result_id) - return _internal_result_id(); -} -inline void PartitionByRequest::unsafe_arena_set_allocated_result_id(::io::deephaven::proto::backplane::grpc::Ticket* value) { - ::google::protobuf::internal::TSanWrite(&_impl_); - if (GetArena() == nullptr) { - delete reinterpret_cast<::google::protobuf::MessageLite*>(_impl_.result_id_); - } - _impl_.result_id_ = reinterpret_cast<::io::deephaven::proto::backplane::grpc::Ticket*>(value); - if (value != nullptr) { - _impl_._has_bits_[0] |= 0x00000002u; - } else { - _impl_._has_bits_[0] &= ~0x00000002u; - } - // @@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() { - ::google::protobuf::internal::TSanWrite(&_impl_); - - _impl_._has_bits_[0] &= ~0x00000002u; - ::io::deephaven::proto::backplane::grpc::Ticket* released = _impl_.result_id_; - _impl_.result_id_ = nullptr; -#ifdef PROTOBUF_FORCE_COPY_IN_RELEASE - auto* old = reinterpret_cast<::google::protobuf::MessageLite*>(released); - released = ::google::protobuf::internal::DuplicateIfNonNull(released); - if (GetArena() == nullptr) { - delete old; - } -#else // PROTOBUF_FORCE_COPY_IN_RELEASE - if (GetArena() != nullptr) { - released = ::google::protobuf::internal::DuplicateIfNonNull(released); - } -#endif // !PROTOBUF_FORCE_COPY_IN_RELEASE - return released; -} -inline ::io::deephaven::proto::backplane::grpc::Ticket* PartitionByRequest::unsafe_arena_release_result_id() { - ::google::protobuf::internal::TSanWrite(&_impl_); - // @@protoc_insertion_point(field_release:io.deephaven.proto.backplane.grpc.PartitionByRequest.result_id) - - _impl_._has_bits_[0] &= ~0x00000002u; - ::io::deephaven::proto::backplane::grpc::Ticket* temp = _impl_.result_id_; - _impl_.result_id_ = nullptr; - return temp; -} -inline ::io::deephaven::proto::backplane::grpc::Ticket* PartitionByRequest::_internal_mutable_result_id() { - ::google::protobuf::internal::TSanWrite(&_impl_); - if (_impl_.result_id_ == nullptr) { - 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(); - ::google::protobuf::internal::TSanWrite(&_impl_); - if (message_arena == nullptr) { - delete reinterpret_cast<::google::protobuf::MessageLite*>(_impl_.result_id_); - } - - if (value != nullptr) { - ::google::protobuf::Arena* submessage_arena = reinterpret_cast<::google::protobuf::MessageLite*>(value)->GetArena(); - if (message_arena != submessage_arena) { - value = ::google::protobuf::internal::GetOwnedMessage(message_arena, value, submessage_arena); - } - _impl_._has_bits_[0] |= 0x00000002u; - } else { - _impl_._has_bits_[0] &= ~0x00000002u; - } - - _impl_.result_id_ = reinterpret_cast<::io::deephaven::proto::backplane::grpc::Ticket*>(value); - // @@protoc_insertion_point(field_set_allocated:io.deephaven.proto.backplane.grpc.PartitionByRequest.result_id) -} - -// repeated string key_column_names = 3; -inline int PartitionByRequest::_internal_key_column_names_size() const { - return _internal_key_column_names().size(); -} -inline int PartitionByRequest::key_column_names_size() const { - return _internal_key_column_names_size(); -} -inline void PartitionByRequest::clear_key_column_names() { - ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.key_column_names_.Clear(); -} -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; -} -inline const std::string& PartitionByRequest::key_column_names(int index) const - ABSL_ATTRIBUTE_LIFETIME_BOUND { - // @@protoc_insertion_point(field_get:io.deephaven.proto.backplane.grpc.PartitionByRequest.key_column_names) - return _internal_key_column_names().Get(index); -} -inline std::string* PartitionByRequest::mutable_key_column_names(int index) - ABSL_ATTRIBUTE_LIFETIME_BOUND { - // @@protoc_insertion_point(field_mutable:io.deephaven.proto.backplane.grpc.PartitionByRequest.key_column_names) - return _internal_mutable_key_column_names()->Mutable(index); -} -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) -} -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 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) - return _internal_key_column_names(); -} -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) - ::google::protobuf::internal::TSanWrite(&_impl_); - return _internal_mutable_key_column_names(); -} -inline const ::google::protobuf::RepeatedPtrField& -PartitionByRequest::_internal_key_column_names() const { - ::google::protobuf::internal::TSanRead(&_impl_); - return _impl_.key_column_names_; -} -inline ::google::protobuf::RepeatedPtrField* -PartitionByRequest::_internal_mutable_key_column_names() { - ::google::protobuf::internal::TSanRead(&_impl_); - return &_impl_.key_column_names_; -} - -// bool drop_keys = 4; -inline void PartitionByRequest::clear_drop_keys() { - ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.drop_keys_ = false; -} -inline bool PartitionByRequest::drop_keys() const { - // @@protoc_insertion_point(field_get:io.deephaven.proto.backplane.grpc.PartitionByRequest.drop_keys) - return _internal_drop_keys(); -} -inline void PartitionByRequest::set_drop_keys(bool value) { - _internal_set_drop_keys(value); - // @@protoc_insertion_point(field_set:io.deephaven.proto.backplane.grpc.PartitionByRequest.drop_keys) -} -inline bool PartitionByRequest::_internal_drop_keys() const { - ::google::protobuf::internal::TSanRead(&_impl_); - return _impl_.drop_keys_; -} -inline void PartitionByRequest::_internal_set_drop_keys(bool value) { - ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.drop_keys_ = value; -} - -// ------------------------------------------------------------------- - -// PartitionByResponse - -// ------------------------------------------------------------------- - -// MergeRequest - -// .io.deephaven.proto.backplane.grpc.Ticket partitioned_table = 1; -inline bool MergeRequest::has_partitioned_table() const { - bool value = (_impl_._has_bits_[0] & 0x00000001u) != 0; - PROTOBUF_ASSUME(!value || _impl_.partitioned_table_ != nullptr); - return value; -} -inline const ::io::deephaven::proto::backplane::grpc::Ticket& MergeRequest::_internal_partitioned_table() const { - ::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_); -} -inline const ::io::deephaven::proto::backplane::grpc::Ticket& MergeRequest::partitioned_table() const ABSL_ATTRIBUTE_LIFETIME_BOUND { - // @@protoc_insertion_point(field_get:io.deephaven.proto.backplane.grpc.MergeRequest.partitioned_table) - return _internal_partitioned_table(); -} -inline void MergeRequest::unsafe_arena_set_allocated_partitioned_table(::io::deephaven::proto::backplane::grpc::Ticket* value) { - ::google::protobuf::internal::TSanWrite(&_impl_); - if (GetArena() == nullptr) { - delete reinterpret_cast<::google::protobuf::MessageLite*>(_impl_.partitioned_table_); - } - _impl_.partitioned_table_ = reinterpret_cast<::io::deephaven::proto::backplane::grpc::Ticket*>(value); - if (value != nullptr) { - _impl_._has_bits_[0] |= 0x00000001u; - } else { - _impl_._has_bits_[0] &= ~0x00000001u; - } - // @@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() { - ::google::protobuf::internal::TSanWrite(&_impl_); - - _impl_._has_bits_[0] &= ~0x00000001u; - ::io::deephaven::proto::backplane::grpc::Ticket* released = _impl_.partitioned_table_; - _impl_.partitioned_table_ = nullptr; -#ifdef PROTOBUF_FORCE_COPY_IN_RELEASE - auto* old = reinterpret_cast<::google::protobuf::MessageLite*>(released); - released = ::google::protobuf::internal::DuplicateIfNonNull(released); - if (GetArena() == nullptr) { - delete old; - } -#else // PROTOBUF_FORCE_COPY_IN_RELEASE - if (GetArena() != nullptr) { - released = ::google::protobuf::internal::DuplicateIfNonNull(released); - } -#endif // !PROTOBUF_FORCE_COPY_IN_RELEASE - return released; -} -inline ::io::deephaven::proto::backplane::grpc::Ticket* MergeRequest::unsafe_arena_release_partitioned_table() { - ::google::protobuf::internal::TSanWrite(&_impl_); - // @@protoc_insertion_point(field_release:io.deephaven.proto.backplane.grpc.MergeRequest.partitioned_table) - - _impl_._has_bits_[0] &= ~0x00000001u; - ::io::deephaven::proto::backplane::grpc::Ticket* temp = _impl_.partitioned_table_; - _impl_.partitioned_table_ = nullptr; - return temp; -} -inline ::io::deephaven::proto::backplane::grpc::Ticket* MergeRequest::_internal_mutable_partitioned_table() { - ::google::protobuf::internal::TSanWrite(&_impl_); - if (_impl_.partitioned_table_ == nullptr) { - 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(); - ::google::protobuf::internal::TSanWrite(&_impl_); - if (message_arena == nullptr) { - delete reinterpret_cast<::google::protobuf::MessageLite*>(_impl_.partitioned_table_); - } - - if (value != nullptr) { - ::google::protobuf::Arena* submessage_arena = reinterpret_cast<::google::protobuf::MessageLite*>(value)->GetArena(); - if (message_arena != submessage_arena) { - value = ::google::protobuf::internal::GetOwnedMessage(message_arena, value, submessage_arena); - } - _impl_._has_bits_[0] |= 0x00000001u; - } else { - _impl_._has_bits_[0] &= ~0x00000001u; - } - - _impl_.partitioned_table_ = reinterpret_cast<::io::deephaven::proto::backplane::grpc::Ticket*>(value); - // @@protoc_insertion_point(field_set_allocated:io.deephaven.proto.backplane.grpc.MergeRequest.partitioned_table) -} - -// .io.deephaven.proto.backplane.grpc.Ticket result_id = 2; -inline bool MergeRequest::has_result_id() const { - bool value = (_impl_._has_bits_[0] & 0x00000002u) != 0; - PROTOBUF_ASSUME(!value || _impl_.result_id_ != nullptr); - return value; -} -inline const ::io::deephaven::proto::backplane::grpc::Ticket& MergeRequest::_internal_result_id() const { - ::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_); -} -inline const ::io::deephaven::proto::backplane::grpc::Ticket& MergeRequest::result_id() const ABSL_ATTRIBUTE_LIFETIME_BOUND { - // @@protoc_insertion_point(field_get:io.deephaven.proto.backplane.grpc.MergeRequest.result_id) - return _internal_result_id(); -} -inline void MergeRequest::unsafe_arena_set_allocated_result_id(::io::deephaven::proto::backplane::grpc::Ticket* value) { - ::google::protobuf::internal::TSanWrite(&_impl_); - if (GetArena() == nullptr) { - delete reinterpret_cast<::google::protobuf::MessageLite*>(_impl_.result_id_); - } - _impl_.result_id_ = reinterpret_cast<::io::deephaven::proto::backplane::grpc::Ticket*>(value); - if (value != nullptr) { - _impl_._has_bits_[0] |= 0x00000002u; - } else { - _impl_._has_bits_[0] &= ~0x00000002u; - } - // @@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() { - ::google::protobuf::internal::TSanWrite(&_impl_); - - _impl_._has_bits_[0] &= ~0x00000002u; - ::io::deephaven::proto::backplane::grpc::Ticket* released = _impl_.result_id_; - _impl_.result_id_ = nullptr; -#ifdef PROTOBUF_FORCE_COPY_IN_RELEASE - auto* old = reinterpret_cast<::google::protobuf::MessageLite*>(released); - released = ::google::protobuf::internal::DuplicateIfNonNull(released); - if (GetArena() == nullptr) { - delete old; - } -#else // PROTOBUF_FORCE_COPY_IN_RELEASE - if (GetArena() != nullptr) { - released = ::google::protobuf::internal::DuplicateIfNonNull(released); - } -#endif // !PROTOBUF_FORCE_COPY_IN_RELEASE - return released; -} -inline ::io::deephaven::proto::backplane::grpc::Ticket* MergeRequest::unsafe_arena_release_result_id() { - ::google::protobuf::internal::TSanWrite(&_impl_); - // @@protoc_insertion_point(field_release:io.deephaven.proto.backplane.grpc.MergeRequest.result_id) - - _impl_._has_bits_[0] &= ~0x00000002u; - ::io::deephaven::proto::backplane::grpc::Ticket* temp = _impl_.result_id_; - _impl_.result_id_ = nullptr; - return temp; -} -inline ::io::deephaven::proto::backplane::grpc::Ticket* MergeRequest::_internal_mutable_result_id() { - ::google::protobuf::internal::TSanWrite(&_impl_); - if (_impl_.result_id_ == nullptr) { - 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(); - ::google::protobuf::internal::TSanWrite(&_impl_); - if (message_arena == nullptr) { - delete reinterpret_cast<::google::protobuf::MessageLite*>(_impl_.result_id_); - } - - if (value != nullptr) { - ::google::protobuf::Arena* submessage_arena = reinterpret_cast<::google::protobuf::MessageLite*>(value)->GetArena(); - if (message_arena != submessage_arena) { - value = ::google::protobuf::internal::GetOwnedMessage(message_arena, value, submessage_arena); - } - _impl_._has_bits_[0] |= 0x00000002u; - } else { - _impl_._has_bits_[0] &= ~0x00000002u; - } - - _impl_.result_id_ = reinterpret_cast<::io::deephaven::proto::backplane::grpc::Ticket*>(value); - // @@protoc_insertion_point(field_set_allocated:io.deephaven.proto.backplane.grpc.MergeRequest.result_id) -} - -// ------------------------------------------------------------------- - -// GetTableRequest - -// .io.deephaven.proto.backplane.grpc.Ticket partitioned_table = 1; -inline bool GetTableRequest::has_partitioned_table() const { - bool value = (_impl_._has_bits_[0] & 0x00000001u) != 0; - PROTOBUF_ASSUME(!value || _impl_.partitioned_table_ != nullptr); - return value; -} -inline const ::io::deephaven::proto::backplane::grpc::Ticket& GetTableRequest::_internal_partitioned_table() const { - ::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_); -} -inline const ::io::deephaven::proto::backplane::grpc::Ticket& GetTableRequest::partitioned_table() const ABSL_ATTRIBUTE_LIFETIME_BOUND { - // @@protoc_insertion_point(field_get:io.deephaven.proto.backplane.grpc.GetTableRequest.partitioned_table) - return _internal_partitioned_table(); -} -inline void GetTableRequest::unsafe_arena_set_allocated_partitioned_table(::io::deephaven::proto::backplane::grpc::Ticket* value) { - ::google::protobuf::internal::TSanWrite(&_impl_); - if (GetArena() == nullptr) { - delete reinterpret_cast<::google::protobuf::MessageLite*>(_impl_.partitioned_table_); - } - _impl_.partitioned_table_ = reinterpret_cast<::io::deephaven::proto::backplane::grpc::Ticket*>(value); - if (value != nullptr) { - _impl_._has_bits_[0] |= 0x00000001u; - } else { - _impl_._has_bits_[0] &= ~0x00000001u; - } - // @@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() { - ::google::protobuf::internal::TSanWrite(&_impl_); - - _impl_._has_bits_[0] &= ~0x00000001u; - ::io::deephaven::proto::backplane::grpc::Ticket* released = _impl_.partitioned_table_; - _impl_.partitioned_table_ = nullptr; -#ifdef PROTOBUF_FORCE_COPY_IN_RELEASE - auto* old = reinterpret_cast<::google::protobuf::MessageLite*>(released); - released = ::google::protobuf::internal::DuplicateIfNonNull(released); - if (GetArena() == nullptr) { - delete old; - } -#else // PROTOBUF_FORCE_COPY_IN_RELEASE - if (GetArena() != nullptr) { - released = ::google::protobuf::internal::DuplicateIfNonNull(released); - } -#endif // !PROTOBUF_FORCE_COPY_IN_RELEASE - return released; -} -inline ::io::deephaven::proto::backplane::grpc::Ticket* GetTableRequest::unsafe_arena_release_partitioned_table() { - ::google::protobuf::internal::TSanWrite(&_impl_); - // @@protoc_insertion_point(field_release:io.deephaven.proto.backplane.grpc.GetTableRequest.partitioned_table) - - _impl_._has_bits_[0] &= ~0x00000001u; - ::io::deephaven::proto::backplane::grpc::Ticket* temp = _impl_.partitioned_table_; - _impl_.partitioned_table_ = nullptr; - return temp; -} -inline ::io::deephaven::proto::backplane::grpc::Ticket* GetTableRequest::_internal_mutable_partitioned_table() { - ::google::protobuf::internal::TSanWrite(&_impl_); - if (_impl_.partitioned_table_ == nullptr) { - 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(); - ::google::protobuf::internal::TSanWrite(&_impl_); - if (message_arena == nullptr) { - delete reinterpret_cast<::google::protobuf::MessageLite*>(_impl_.partitioned_table_); - } - - if (value != nullptr) { - ::google::protobuf::Arena* submessage_arena = reinterpret_cast<::google::protobuf::MessageLite*>(value)->GetArena(); - if (message_arena != submessage_arena) { - value = ::google::protobuf::internal::GetOwnedMessage(message_arena, value, submessage_arena); - } - _impl_._has_bits_[0] |= 0x00000001u; - } else { - _impl_._has_bits_[0] &= ~0x00000001u; - } - - _impl_.partitioned_table_ = reinterpret_cast<::io::deephaven::proto::backplane::grpc::Ticket*>(value); - // @@protoc_insertion_point(field_set_allocated:io.deephaven.proto.backplane.grpc.GetTableRequest.partitioned_table) -} - -// .io.deephaven.proto.backplane.grpc.Ticket key_table_ticket = 2; -inline bool GetTableRequest::has_key_table_ticket() const { - bool value = (_impl_._has_bits_[0] & 0x00000002u) != 0; - PROTOBUF_ASSUME(!value || _impl_.key_table_ticket_ != nullptr); - return value; -} -inline const ::io::deephaven::proto::backplane::grpc::Ticket& GetTableRequest::_internal_key_table_ticket() const { - ::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_); -} -inline const ::io::deephaven::proto::backplane::grpc::Ticket& GetTableRequest::key_table_ticket() const ABSL_ATTRIBUTE_LIFETIME_BOUND { - // @@protoc_insertion_point(field_get:io.deephaven.proto.backplane.grpc.GetTableRequest.key_table_ticket) - return _internal_key_table_ticket(); -} -inline void GetTableRequest::unsafe_arena_set_allocated_key_table_ticket(::io::deephaven::proto::backplane::grpc::Ticket* value) { - ::google::protobuf::internal::TSanWrite(&_impl_); - if (GetArena() == nullptr) { - delete reinterpret_cast<::google::protobuf::MessageLite*>(_impl_.key_table_ticket_); - } - _impl_.key_table_ticket_ = reinterpret_cast<::io::deephaven::proto::backplane::grpc::Ticket*>(value); - if (value != nullptr) { - _impl_._has_bits_[0] |= 0x00000002u; - } else { - _impl_._has_bits_[0] &= ~0x00000002u; - } - // @@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() { - ::google::protobuf::internal::TSanWrite(&_impl_); - - _impl_._has_bits_[0] &= ~0x00000002u; - ::io::deephaven::proto::backplane::grpc::Ticket* released = _impl_.key_table_ticket_; - _impl_.key_table_ticket_ = nullptr; -#ifdef PROTOBUF_FORCE_COPY_IN_RELEASE - auto* old = reinterpret_cast<::google::protobuf::MessageLite*>(released); - released = ::google::protobuf::internal::DuplicateIfNonNull(released); - if (GetArena() == nullptr) { - delete old; - } -#else // PROTOBUF_FORCE_COPY_IN_RELEASE - if (GetArena() != nullptr) { - released = ::google::protobuf::internal::DuplicateIfNonNull(released); - } -#endif // !PROTOBUF_FORCE_COPY_IN_RELEASE - return released; -} -inline ::io::deephaven::proto::backplane::grpc::Ticket* GetTableRequest::unsafe_arena_release_key_table_ticket() { - ::google::protobuf::internal::TSanWrite(&_impl_); - // @@protoc_insertion_point(field_release:io.deephaven.proto.backplane.grpc.GetTableRequest.key_table_ticket) - - _impl_._has_bits_[0] &= ~0x00000002u; - ::io::deephaven::proto::backplane::grpc::Ticket* temp = _impl_.key_table_ticket_; - _impl_.key_table_ticket_ = nullptr; - return temp; -} -inline ::io::deephaven::proto::backplane::grpc::Ticket* GetTableRequest::_internal_mutable_key_table_ticket() { - ::google::protobuf::internal::TSanWrite(&_impl_); - if (_impl_.key_table_ticket_ == nullptr) { - 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(); - ::google::protobuf::internal::TSanWrite(&_impl_); - if (message_arena == nullptr) { - delete reinterpret_cast<::google::protobuf::MessageLite*>(_impl_.key_table_ticket_); - } - - if (value != nullptr) { - ::google::protobuf::Arena* submessage_arena = reinterpret_cast<::google::protobuf::MessageLite*>(value)->GetArena(); - if (message_arena != submessage_arena) { - value = ::google::protobuf::internal::GetOwnedMessage(message_arena, value, submessage_arena); - } - _impl_._has_bits_[0] |= 0x00000002u; - } else { - _impl_._has_bits_[0] &= ~0x00000002u; - } - - _impl_.key_table_ticket_ = reinterpret_cast<::io::deephaven::proto::backplane::grpc::Ticket*>(value); - // @@protoc_insertion_point(field_set_allocated:io.deephaven.proto.backplane.grpc.GetTableRequest.key_table_ticket) -} - -// .io.deephaven.proto.backplane.grpc.Ticket result_id = 4; -inline bool GetTableRequest::has_result_id() const { - bool value = (_impl_._has_bits_[0] & 0x00000004u) != 0; - PROTOBUF_ASSUME(!value || _impl_.result_id_ != nullptr); - return value; -} -inline const ::io::deephaven::proto::backplane::grpc::Ticket& GetTableRequest::_internal_result_id() const { - ::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_); -} -inline const ::io::deephaven::proto::backplane::grpc::Ticket& GetTableRequest::result_id() const ABSL_ATTRIBUTE_LIFETIME_BOUND { - // @@protoc_insertion_point(field_get:io.deephaven.proto.backplane.grpc.GetTableRequest.result_id) - return _internal_result_id(); -} -inline void GetTableRequest::unsafe_arena_set_allocated_result_id(::io::deephaven::proto::backplane::grpc::Ticket* value) { - ::google::protobuf::internal::TSanWrite(&_impl_); - if (GetArena() == nullptr) { - delete reinterpret_cast<::google::protobuf::MessageLite*>(_impl_.result_id_); - } - _impl_.result_id_ = reinterpret_cast<::io::deephaven::proto::backplane::grpc::Ticket*>(value); - if (value != nullptr) { - _impl_._has_bits_[0] |= 0x00000004u; - } else { - _impl_._has_bits_[0] &= ~0x00000004u; - } - // @@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() { - ::google::protobuf::internal::TSanWrite(&_impl_); - - _impl_._has_bits_[0] &= ~0x00000004u; - ::io::deephaven::proto::backplane::grpc::Ticket* released = _impl_.result_id_; - _impl_.result_id_ = nullptr; -#ifdef PROTOBUF_FORCE_COPY_IN_RELEASE - auto* old = reinterpret_cast<::google::protobuf::MessageLite*>(released); - released = ::google::protobuf::internal::DuplicateIfNonNull(released); - if (GetArena() == nullptr) { - delete old; - } -#else // PROTOBUF_FORCE_COPY_IN_RELEASE - if (GetArena() != nullptr) { - released = ::google::protobuf::internal::DuplicateIfNonNull(released); - } -#endif // !PROTOBUF_FORCE_COPY_IN_RELEASE - return released; -} -inline ::io::deephaven::proto::backplane::grpc::Ticket* GetTableRequest::unsafe_arena_release_result_id() { - ::google::protobuf::internal::TSanWrite(&_impl_); - // @@protoc_insertion_point(field_release:io.deephaven.proto.backplane.grpc.GetTableRequest.result_id) - - _impl_._has_bits_[0] &= ~0x00000004u; - ::io::deephaven::proto::backplane::grpc::Ticket* temp = _impl_.result_id_; - _impl_.result_id_ = nullptr; - return temp; -} -inline ::io::deephaven::proto::backplane::grpc::Ticket* GetTableRequest::_internal_mutable_result_id() { - ::google::protobuf::internal::TSanWrite(&_impl_); - if (_impl_.result_id_ == nullptr) { - 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(); - ::google::protobuf::internal::TSanWrite(&_impl_); - if (message_arena == nullptr) { - delete reinterpret_cast<::google::protobuf::MessageLite*>(_impl_.result_id_); - } - - if (value != nullptr) { - ::google::protobuf::Arena* submessage_arena = reinterpret_cast<::google::protobuf::MessageLite*>(value)->GetArena(); - if (message_arena != submessage_arena) { - value = ::google::protobuf::internal::GetOwnedMessage(message_arena, value, submessage_arena); - } - _impl_._has_bits_[0] |= 0x00000004u; - } else { - _impl_._has_bits_[0] &= ~0x00000004u; - } - - _impl_.result_id_ = reinterpret_cast<::io::deephaven::proto::backplane::grpc::Ticket*>(value); - // @@protoc_insertion_point(field_set_allocated:io.deephaven.proto.backplane.grpc.GetTableRequest.result_id) -} - -// ------------------------------------------------------------------- - -// PartitionedTableDescriptor - -// repeated string key_column_names = 1; -inline int PartitionedTableDescriptor::_internal_key_column_names_size() const { - return _internal_key_column_names().size(); -} -inline int PartitionedTableDescriptor::key_column_names_size() const { - return _internal_key_column_names_size(); -} -inline void PartitionedTableDescriptor::clear_key_column_names() { - ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.key_column_names_.Clear(); -} -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; -} -inline const std::string& PartitionedTableDescriptor::key_column_names(int index) const - ABSL_ATTRIBUTE_LIFETIME_BOUND { - // @@protoc_insertion_point(field_get:io.deephaven.proto.backplane.grpc.PartitionedTableDescriptor.key_column_names) - return _internal_key_column_names().Get(index); -} -inline std::string* PartitionedTableDescriptor::mutable_key_column_names(int index) - ABSL_ATTRIBUTE_LIFETIME_BOUND { - // @@protoc_insertion_point(field_mutable:io.deephaven.proto.backplane.grpc.PartitionedTableDescriptor.key_column_names) - return _internal_mutable_key_column_names()->Mutable(index); -} -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) -} -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 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) - return _internal_key_column_names(); -} -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) - ::google::protobuf::internal::TSanWrite(&_impl_); - return _internal_mutable_key_column_names(); -} -inline const ::google::protobuf::RepeatedPtrField& -PartitionedTableDescriptor::_internal_key_column_names() const { - ::google::protobuf::internal::TSanRead(&_impl_); - return _impl_.key_column_names_; -} -inline ::google::protobuf::RepeatedPtrField* -PartitionedTableDescriptor::_internal_mutable_key_column_names() { - ::google::protobuf::internal::TSanRead(&_impl_); - return &_impl_.key_column_names_; -} - -// string constituent_column_name = 4; -inline void PartitionedTableDescriptor::clear_constituent_column_name() { - ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.constituent_column_name_.ClearToEmpty(); -} -inline const std::string& PartitionedTableDescriptor::constituent_column_name() const - ABSL_ATTRIBUTE_LIFETIME_BOUND { - // @@protoc_insertion_point(field_get:io.deephaven.proto.backplane.grpc.PartitionedTableDescriptor.constituent_column_name) - return _internal_constituent_column_name(); -} -template -inline PROTOBUF_ALWAYS_INLINE void PartitionedTableDescriptor::set_constituent_column_name(Arg_&& arg, - Args_... args) { - ::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) -} -inline std::string* PartitionedTableDescriptor::mutable_constituent_column_name() ABSL_ATTRIBUTE_LIFETIME_BOUND { - std::string* _s = _internal_mutable_constituent_column_name(); - // @@protoc_insertion_point(field_mutable:io.deephaven.proto.backplane.grpc.PartitionedTableDescriptor.constituent_column_name) - return _s; -} -inline const std::string& PartitionedTableDescriptor::_internal_constituent_column_name() const { - ::google::protobuf::internal::TSanRead(&_impl_); - return _impl_.constituent_column_name_.Get(); -} -inline void PartitionedTableDescriptor::_internal_set_constituent_column_name(const std::string& value) { - ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.constituent_column_name_.Set(value, GetArena()); -} -inline std::string* PartitionedTableDescriptor::_internal_mutable_constituent_column_name() { - ::google::protobuf::internal::TSanWrite(&_impl_); - return _impl_.constituent_column_name_.Mutable( GetArena()); -} -inline std::string* PartitionedTableDescriptor::release_constituent_column_name() { - ::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) { - ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.constituent_column_name_.SetAllocated(value, GetArena()); - #ifdef PROTOBUF_FORCE_COPY_DEFAULT_STRING - if (_impl_.constituent_column_name_.IsDefault()) { - _impl_.constituent_column_name_.Set("", GetArena()); - } - #endif // PROTOBUF_FORCE_COPY_DEFAULT_STRING - // @@protoc_insertion_point(field_set_allocated:io.deephaven.proto.backplane.grpc.PartitionedTableDescriptor.constituent_column_name) -} - -// bool unique_keys = 2; -inline void PartitionedTableDescriptor::clear_unique_keys() { - ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.unique_keys_ = false; -} -inline bool PartitionedTableDescriptor::unique_keys() const { - // @@protoc_insertion_point(field_get:io.deephaven.proto.backplane.grpc.PartitionedTableDescriptor.unique_keys) - return _internal_unique_keys(); -} -inline void PartitionedTableDescriptor::set_unique_keys(bool value) { - _internal_set_unique_keys(value); - // @@protoc_insertion_point(field_set:io.deephaven.proto.backplane.grpc.PartitionedTableDescriptor.unique_keys) -} -inline bool PartitionedTableDescriptor::_internal_unique_keys() const { - ::google::protobuf::internal::TSanRead(&_impl_); - return _impl_.unique_keys_; -} -inline void PartitionedTableDescriptor::_internal_set_unique_keys(bool value) { - ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.unique_keys_ = value; -} - -// bytes constituent_definition_schema = 3; -inline void PartitionedTableDescriptor::clear_constituent_definition_schema() { - ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.constituent_definition_schema_.ClearToEmpty(); -} -inline const std::string& PartitionedTableDescriptor::constituent_definition_schema() const - ABSL_ATTRIBUTE_LIFETIME_BOUND { - // @@protoc_insertion_point(field_get:io.deephaven.proto.backplane.grpc.PartitionedTableDescriptor.constituent_definition_schema) - return _internal_constituent_definition_schema(); -} -template -inline PROTOBUF_ALWAYS_INLINE void PartitionedTableDescriptor::set_constituent_definition_schema(Arg_&& arg, - Args_... args) { - ::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) -} -inline std::string* PartitionedTableDescriptor::mutable_constituent_definition_schema() ABSL_ATTRIBUTE_LIFETIME_BOUND { - std::string* _s = _internal_mutable_constituent_definition_schema(); - // @@protoc_insertion_point(field_mutable:io.deephaven.proto.backplane.grpc.PartitionedTableDescriptor.constituent_definition_schema) - return _s; -} -inline const std::string& PartitionedTableDescriptor::_internal_constituent_definition_schema() const { - ::google::protobuf::internal::TSanRead(&_impl_); - return _impl_.constituent_definition_schema_.Get(); -} -inline void PartitionedTableDescriptor::_internal_set_constituent_definition_schema(const std::string& value) { - ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.constituent_definition_schema_.Set(value, GetArena()); -} -inline std::string* PartitionedTableDescriptor::_internal_mutable_constituent_definition_schema() { - ::google::protobuf::internal::TSanWrite(&_impl_); - return _impl_.constituent_definition_schema_.Mutable( GetArena()); -} -inline std::string* PartitionedTableDescriptor::release_constituent_definition_schema() { - ::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) { - ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.constituent_definition_schema_.SetAllocated(value, GetArena()); - #ifdef PROTOBUF_FORCE_COPY_DEFAULT_STRING - if (_impl_.constituent_definition_schema_.IsDefault()) { - _impl_.constituent_definition_schema_.Set("", GetArena()); - } - #endif // PROTOBUF_FORCE_COPY_DEFAULT_STRING - // @@protoc_insertion_point(field_set_allocated:io.deephaven.proto.backplane.grpc.PartitionedTableDescriptor.constituent_definition_schema) -} - -// bool constituent_changes_permitted = 5; -inline void PartitionedTableDescriptor::clear_constituent_changes_permitted() { - ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.constituent_changes_permitted_ = false; -} -inline bool PartitionedTableDescriptor::constituent_changes_permitted() const { - // @@protoc_insertion_point(field_get:io.deephaven.proto.backplane.grpc.PartitionedTableDescriptor.constituent_changes_permitted) - return _internal_constituent_changes_permitted(); -} -inline void PartitionedTableDescriptor::set_constituent_changes_permitted(bool value) { - _internal_set_constituent_changes_permitted(value); - // @@protoc_insertion_point(field_set:io.deephaven.proto.backplane.grpc.PartitionedTableDescriptor.constituent_changes_permitted) -} -inline bool PartitionedTableDescriptor::_internal_constituent_changes_permitted() const { - ::google::protobuf::internal::TSanRead(&_impl_); - return _impl_.constituent_changes_permitted_; -} -inline void PartitionedTableDescriptor::_internal_set_constituent_changes_permitted(bool value) { - ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.constituent_changes_permitted_ = value; -} - -#ifdef __GNUC__ -#pragma GCC diagnostic pop -#endif // __GNUC__ - -// @@protoc_insertion_point(namespace_scope) -} // namespace grpc -} // namespace backplane -} // namespace proto -} // namespace deephaven -} // namespace io - - -// @@protoc_insertion_point(global_scope) - -#include "google/protobuf/port_undef.inc" - -#endif // GOOGLE_PROTOBUF_INCLUDED_deephaven_2fproto_2fpartitionedtable_2eproto_2epb_2eh diff --git a/cpp-client/deephaven/dhclient/proto/deephaven/proto/session.grpc.pb.cc b/cpp-client/deephaven/dhclient/proto/deephaven/proto/session.grpc.pb.cc deleted file mode 100644 index a87d23ff9f2..00000000000 --- a/cpp-client/deephaven/dhclient/proto/deephaven/proto/session.grpc.pb.cc +++ /dev/null @@ -1,381 +0,0 @@ -// Generated by the gRPC C++ plugin. -// If you make any local change, they will be lost. -// source: deephaven/proto/session.proto - -#include "deephaven/proto/session.pb.h" -#include "deephaven/proto/session.grpc.pb.h" - -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -namespace io { -namespace deephaven { -namespace proto { -namespace backplane { -namespace grpc { - -static const char* SessionService_method_names[] = { - "/io.deephaven.proto.backplane.grpc.SessionService/NewSession", - "/io.deephaven.proto.backplane.grpc.SessionService/RefreshSessionToken", - "/io.deephaven.proto.backplane.grpc.SessionService/CloseSession", - "/io.deephaven.proto.backplane.grpc.SessionService/Release", - "/io.deephaven.proto.backplane.grpc.SessionService/ExportFromTicket", - "/io.deephaven.proto.backplane.grpc.SessionService/PublishFromTicket", - "/io.deephaven.proto.backplane.grpc.SessionService/ExportNotifications", - "/io.deephaven.proto.backplane.grpc.SessionService/TerminationNotification", -}; - -std::unique_ptr< SessionService::Stub> SessionService::NewStub(const std::shared_ptr< ::grpc::ChannelInterface>& channel, const ::grpc::StubOptions& options) { - (void)options; - std::unique_ptr< SessionService::Stub> stub(new SessionService::Stub(channel, options)); - return stub; -} - -SessionService::Stub::Stub(const std::shared_ptr< ::grpc::ChannelInterface>& channel, const ::grpc::StubOptions& options) - : channel_(channel), rpcmethod_NewSession_(SessionService_method_names[0], options.suffix_for_stats(),::grpc::internal::RpcMethod::NORMAL_RPC, channel) - , rpcmethod_RefreshSessionToken_(SessionService_method_names[1], options.suffix_for_stats(),::grpc::internal::RpcMethod::NORMAL_RPC, channel) - , rpcmethod_CloseSession_(SessionService_method_names[2], options.suffix_for_stats(),::grpc::internal::RpcMethod::NORMAL_RPC, channel) - , rpcmethod_Release_(SessionService_method_names[3], options.suffix_for_stats(),::grpc::internal::RpcMethod::NORMAL_RPC, channel) - , rpcmethod_ExportFromTicket_(SessionService_method_names[4], options.suffix_for_stats(),::grpc::internal::RpcMethod::NORMAL_RPC, channel) - , rpcmethod_PublishFromTicket_(SessionService_method_names[5], options.suffix_for_stats(),::grpc::internal::RpcMethod::NORMAL_RPC, channel) - , rpcmethod_ExportNotifications_(SessionService_method_names[6], options.suffix_for_stats(),::grpc::internal::RpcMethod::SERVER_STREAMING, channel) - , rpcmethod_TerminationNotification_(SessionService_method_names[7], options.suffix_for_stats(),::grpc::internal::RpcMethod::NORMAL_RPC, channel) - {} - -::grpc::Status SessionService::Stub::NewSession(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::HandshakeRequest& request, ::io::deephaven::proto::backplane::grpc::HandshakeResponse* response) { - return ::grpc::internal::BlockingUnaryCall< ::io::deephaven::proto::backplane::grpc::HandshakeRequest, ::io::deephaven::proto::backplane::grpc::HandshakeResponse, ::grpc::protobuf::MessageLite, ::grpc::protobuf::MessageLite>(channel_.get(), rpcmethod_NewSession_, context, request, response); -} - -void SessionService::Stub::async::NewSession(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::HandshakeRequest* request, ::io::deephaven::proto::backplane::grpc::HandshakeResponse* response, std::function f) { - ::grpc::internal::CallbackUnaryCall< ::io::deephaven::proto::backplane::grpc::HandshakeRequest, ::io::deephaven::proto::backplane::grpc::HandshakeResponse, ::grpc::protobuf::MessageLite, ::grpc::protobuf::MessageLite>(stub_->channel_.get(), stub_->rpcmethod_NewSession_, context, request, response, std::move(f)); -} - -void SessionService::Stub::async::NewSession(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::HandshakeRequest* request, ::io::deephaven::proto::backplane::grpc::HandshakeResponse* response, ::grpc::ClientUnaryReactor* reactor) { - ::grpc::internal::ClientCallbackUnaryFactory::Create< ::grpc::protobuf::MessageLite, ::grpc::protobuf::MessageLite>(stub_->channel_.get(), stub_->rpcmethod_NewSession_, context, request, response, reactor); -} - -::grpc::ClientAsyncResponseReader< ::io::deephaven::proto::backplane::grpc::HandshakeResponse>* SessionService::Stub::PrepareAsyncNewSessionRaw(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::HandshakeRequest& request, ::grpc::CompletionQueue* cq) { - return ::grpc::internal::ClientAsyncResponseReaderHelper::Create< ::io::deephaven::proto::backplane::grpc::HandshakeResponse, ::io::deephaven::proto::backplane::grpc::HandshakeRequest, ::grpc::protobuf::MessageLite, ::grpc::protobuf::MessageLite>(channel_.get(), cq, rpcmethod_NewSession_, context, request); -} - -::grpc::ClientAsyncResponseReader< ::io::deephaven::proto::backplane::grpc::HandshakeResponse>* SessionService::Stub::AsyncNewSessionRaw(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::HandshakeRequest& request, ::grpc::CompletionQueue* cq) { - auto* result = - this->PrepareAsyncNewSessionRaw(context, request, cq); - result->StartCall(); - return result; -} - -::grpc::Status SessionService::Stub::RefreshSessionToken(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::HandshakeRequest& request, ::io::deephaven::proto::backplane::grpc::HandshakeResponse* response) { - return ::grpc::internal::BlockingUnaryCall< ::io::deephaven::proto::backplane::grpc::HandshakeRequest, ::io::deephaven::proto::backplane::grpc::HandshakeResponse, ::grpc::protobuf::MessageLite, ::grpc::protobuf::MessageLite>(channel_.get(), rpcmethod_RefreshSessionToken_, context, request, response); -} - -void SessionService::Stub::async::RefreshSessionToken(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::HandshakeRequest* request, ::io::deephaven::proto::backplane::grpc::HandshakeResponse* response, std::function f) { - ::grpc::internal::CallbackUnaryCall< ::io::deephaven::proto::backplane::grpc::HandshakeRequest, ::io::deephaven::proto::backplane::grpc::HandshakeResponse, ::grpc::protobuf::MessageLite, ::grpc::protobuf::MessageLite>(stub_->channel_.get(), stub_->rpcmethod_RefreshSessionToken_, context, request, response, std::move(f)); -} - -void SessionService::Stub::async::RefreshSessionToken(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::HandshakeRequest* request, ::io::deephaven::proto::backplane::grpc::HandshakeResponse* response, ::grpc::ClientUnaryReactor* reactor) { - ::grpc::internal::ClientCallbackUnaryFactory::Create< ::grpc::protobuf::MessageLite, ::grpc::protobuf::MessageLite>(stub_->channel_.get(), stub_->rpcmethod_RefreshSessionToken_, context, request, response, reactor); -} - -::grpc::ClientAsyncResponseReader< ::io::deephaven::proto::backplane::grpc::HandshakeResponse>* SessionService::Stub::PrepareAsyncRefreshSessionTokenRaw(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::HandshakeRequest& request, ::grpc::CompletionQueue* cq) { - return ::grpc::internal::ClientAsyncResponseReaderHelper::Create< ::io::deephaven::proto::backplane::grpc::HandshakeResponse, ::io::deephaven::proto::backplane::grpc::HandshakeRequest, ::grpc::protobuf::MessageLite, ::grpc::protobuf::MessageLite>(channel_.get(), cq, rpcmethod_RefreshSessionToken_, context, request); -} - -::grpc::ClientAsyncResponseReader< ::io::deephaven::proto::backplane::grpc::HandshakeResponse>* SessionService::Stub::AsyncRefreshSessionTokenRaw(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::HandshakeRequest& request, ::grpc::CompletionQueue* cq) { - auto* result = - this->PrepareAsyncRefreshSessionTokenRaw(context, request, cq); - result->StartCall(); - return result; -} - -::grpc::Status SessionService::Stub::CloseSession(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::HandshakeRequest& request, ::io::deephaven::proto::backplane::grpc::CloseSessionResponse* response) { - return ::grpc::internal::BlockingUnaryCall< ::io::deephaven::proto::backplane::grpc::HandshakeRequest, ::io::deephaven::proto::backplane::grpc::CloseSessionResponse, ::grpc::protobuf::MessageLite, ::grpc::protobuf::MessageLite>(channel_.get(), rpcmethod_CloseSession_, context, request, response); -} - -void SessionService::Stub::async::CloseSession(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::HandshakeRequest* request, ::io::deephaven::proto::backplane::grpc::CloseSessionResponse* response, std::function f) { - ::grpc::internal::CallbackUnaryCall< ::io::deephaven::proto::backplane::grpc::HandshakeRequest, ::io::deephaven::proto::backplane::grpc::CloseSessionResponse, ::grpc::protobuf::MessageLite, ::grpc::protobuf::MessageLite>(stub_->channel_.get(), stub_->rpcmethod_CloseSession_, context, request, response, std::move(f)); -} - -void SessionService::Stub::async::CloseSession(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::HandshakeRequest* request, ::io::deephaven::proto::backplane::grpc::CloseSessionResponse* response, ::grpc::ClientUnaryReactor* reactor) { - ::grpc::internal::ClientCallbackUnaryFactory::Create< ::grpc::protobuf::MessageLite, ::grpc::protobuf::MessageLite>(stub_->channel_.get(), stub_->rpcmethod_CloseSession_, context, request, response, reactor); -} - -::grpc::ClientAsyncResponseReader< ::io::deephaven::proto::backplane::grpc::CloseSessionResponse>* SessionService::Stub::PrepareAsyncCloseSessionRaw(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::HandshakeRequest& request, ::grpc::CompletionQueue* cq) { - return ::grpc::internal::ClientAsyncResponseReaderHelper::Create< ::io::deephaven::proto::backplane::grpc::CloseSessionResponse, ::io::deephaven::proto::backplane::grpc::HandshakeRequest, ::grpc::protobuf::MessageLite, ::grpc::protobuf::MessageLite>(channel_.get(), cq, rpcmethod_CloseSession_, context, request); -} - -::grpc::ClientAsyncResponseReader< ::io::deephaven::proto::backplane::grpc::CloseSessionResponse>* SessionService::Stub::AsyncCloseSessionRaw(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::HandshakeRequest& request, ::grpc::CompletionQueue* cq) { - auto* result = - this->PrepareAsyncCloseSessionRaw(context, request, cq); - result->StartCall(); - return result; -} - -::grpc::Status SessionService::Stub::Release(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::ReleaseRequest& request, ::io::deephaven::proto::backplane::grpc::ReleaseResponse* response) { - return ::grpc::internal::BlockingUnaryCall< ::io::deephaven::proto::backplane::grpc::ReleaseRequest, ::io::deephaven::proto::backplane::grpc::ReleaseResponse, ::grpc::protobuf::MessageLite, ::grpc::protobuf::MessageLite>(channel_.get(), rpcmethod_Release_, context, request, response); -} - -void SessionService::Stub::async::Release(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::ReleaseRequest* request, ::io::deephaven::proto::backplane::grpc::ReleaseResponse* response, std::function f) { - ::grpc::internal::CallbackUnaryCall< ::io::deephaven::proto::backplane::grpc::ReleaseRequest, ::io::deephaven::proto::backplane::grpc::ReleaseResponse, ::grpc::protobuf::MessageLite, ::grpc::protobuf::MessageLite>(stub_->channel_.get(), stub_->rpcmethod_Release_, context, request, response, std::move(f)); -} - -void SessionService::Stub::async::Release(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::ReleaseRequest* request, ::io::deephaven::proto::backplane::grpc::ReleaseResponse* response, ::grpc::ClientUnaryReactor* reactor) { - ::grpc::internal::ClientCallbackUnaryFactory::Create< ::grpc::protobuf::MessageLite, ::grpc::protobuf::MessageLite>(stub_->channel_.get(), stub_->rpcmethod_Release_, context, request, response, reactor); -} - -::grpc::ClientAsyncResponseReader< ::io::deephaven::proto::backplane::grpc::ReleaseResponse>* SessionService::Stub::PrepareAsyncReleaseRaw(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::ReleaseRequest& request, ::grpc::CompletionQueue* cq) { - return ::grpc::internal::ClientAsyncResponseReaderHelper::Create< ::io::deephaven::proto::backplane::grpc::ReleaseResponse, ::io::deephaven::proto::backplane::grpc::ReleaseRequest, ::grpc::protobuf::MessageLite, ::grpc::protobuf::MessageLite>(channel_.get(), cq, rpcmethod_Release_, context, request); -} - -::grpc::ClientAsyncResponseReader< ::io::deephaven::proto::backplane::grpc::ReleaseResponse>* SessionService::Stub::AsyncReleaseRaw(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::ReleaseRequest& request, ::grpc::CompletionQueue* cq) { - auto* result = - this->PrepareAsyncReleaseRaw(context, request, cq); - result->StartCall(); - return result; -} - -::grpc::Status SessionService::Stub::ExportFromTicket(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::ExportRequest& request, ::io::deephaven::proto::backplane::grpc::ExportResponse* response) { - return ::grpc::internal::BlockingUnaryCall< ::io::deephaven::proto::backplane::grpc::ExportRequest, ::io::deephaven::proto::backplane::grpc::ExportResponse, ::grpc::protobuf::MessageLite, ::grpc::protobuf::MessageLite>(channel_.get(), rpcmethod_ExportFromTicket_, context, request, response); -} - -void SessionService::Stub::async::ExportFromTicket(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::ExportRequest* request, ::io::deephaven::proto::backplane::grpc::ExportResponse* response, std::function f) { - ::grpc::internal::CallbackUnaryCall< ::io::deephaven::proto::backplane::grpc::ExportRequest, ::io::deephaven::proto::backplane::grpc::ExportResponse, ::grpc::protobuf::MessageLite, ::grpc::protobuf::MessageLite>(stub_->channel_.get(), stub_->rpcmethod_ExportFromTicket_, context, request, response, std::move(f)); -} - -void SessionService::Stub::async::ExportFromTicket(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::ExportRequest* request, ::io::deephaven::proto::backplane::grpc::ExportResponse* response, ::grpc::ClientUnaryReactor* reactor) { - ::grpc::internal::ClientCallbackUnaryFactory::Create< ::grpc::protobuf::MessageLite, ::grpc::protobuf::MessageLite>(stub_->channel_.get(), stub_->rpcmethod_ExportFromTicket_, context, request, response, reactor); -} - -::grpc::ClientAsyncResponseReader< ::io::deephaven::proto::backplane::grpc::ExportResponse>* SessionService::Stub::PrepareAsyncExportFromTicketRaw(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::ExportRequest& request, ::grpc::CompletionQueue* cq) { - return ::grpc::internal::ClientAsyncResponseReaderHelper::Create< ::io::deephaven::proto::backplane::grpc::ExportResponse, ::io::deephaven::proto::backplane::grpc::ExportRequest, ::grpc::protobuf::MessageLite, ::grpc::protobuf::MessageLite>(channel_.get(), cq, rpcmethod_ExportFromTicket_, context, request); -} - -::grpc::ClientAsyncResponseReader< ::io::deephaven::proto::backplane::grpc::ExportResponse>* SessionService::Stub::AsyncExportFromTicketRaw(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::ExportRequest& request, ::grpc::CompletionQueue* cq) { - auto* result = - this->PrepareAsyncExportFromTicketRaw(context, request, cq); - result->StartCall(); - return result; -} - -::grpc::Status SessionService::Stub::PublishFromTicket(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::PublishRequest& request, ::io::deephaven::proto::backplane::grpc::PublishResponse* response) { - return ::grpc::internal::BlockingUnaryCall< ::io::deephaven::proto::backplane::grpc::PublishRequest, ::io::deephaven::proto::backplane::grpc::PublishResponse, ::grpc::protobuf::MessageLite, ::grpc::protobuf::MessageLite>(channel_.get(), rpcmethod_PublishFromTicket_, context, request, response); -} - -void SessionService::Stub::async::PublishFromTicket(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::PublishRequest* request, ::io::deephaven::proto::backplane::grpc::PublishResponse* response, std::function f) { - ::grpc::internal::CallbackUnaryCall< ::io::deephaven::proto::backplane::grpc::PublishRequest, ::io::deephaven::proto::backplane::grpc::PublishResponse, ::grpc::protobuf::MessageLite, ::grpc::protobuf::MessageLite>(stub_->channel_.get(), stub_->rpcmethod_PublishFromTicket_, context, request, response, std::move(f)); -} - -void SessionService::Stub::async::PublishFromTicket(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::PublishRequest* request, ::io::deephaven::proto::backplane::grpc::PublishResponse* response, ::grpc::ClientUnaryReactor* reactor) { - ::grpc::internal::ClientCallbackUnaryFactory::Create< ::grpc::protobuf::MessageLite, ::grpc::protobuf::MessageLite>(stub_->channel_.get(), stub_->rpcmethod_PublishFromTicket_, context, request, response, reactor); -} - -::grpc::ClientAsyncResponseReader< ::io::deephaven::proto::backplane::grpc::PublishResponse>* SessionService::Stub::PrepareAsyncPublishFromTicketRaw(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::PublishRequest& request, ::grpc::CompletionQueue* cq) { - return ::grpc::internal::ClientAsyncResponseReaderHelper::Create< ::io::deephaven::proto::backplane::grpc::PublishResponse, ::io::deephaven::proto::backplane::grpc::PublishRequest, ::grpc::protobuf::MessageLite, ::grpc::protobuf::MessageLite>(channel_.get(), cq, rpcmethod_PublishFromTicket_, context, request); -} - -::grpc::ClientAsyncResponseReader< ::io::deephaven::proto::backplane::grpc::PublishResponse>* SessionService::Stub::AsyncPublishFromTicketRaw(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::PublishRequest& request, ::grpc::CompletionQueue* cq) { - auto* result = - this->PrepareAsyncPublishFromTicketRaw(context, request, cq); - result->StartCall(); - return result; -} - -::grpc::ClientReader< ::io::deephaven::proto::backplane::grpc::ExportNotification>* SessionService::Stub::ExportNotificationsRaw(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::ExportNotificationRequest& request) { - return ::grpc::internal::ClientReaderFactory< ::io::deephaven::proto::backplane::grpc::ExportNotification>::Create(channel_.get(), rpcmethod_ExportNotifications_, context, request); -} - -void SessionService::Stub::async::ExportNotifications(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::ExportNotificationRequest* request, ::grpc::ClientReadReactor< ::io::deephaven::proto::backplane::grpc::ExportNotification>* reactor) { - ::grpc::internal::ClientCallbackReaderFactory< ::io::deephaven::proto::backplane::grpc::ExportNotification>::Create(stub_->channel_.get(), stub_->rpcmethod_ExportNotifications_, context, request, reactor); -} - -::grpc::ClientAsyncReader< ::io::deephaven::proto::backplane::grpc::ExportNotification>* SessionService::Stub::AsyncExportNotificationsRaw(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::ExportNotificationRequest& request, ::grpc::CompletionQueue* cq, void* tag) { - return ::grpc::internal::ClientAsyncReaderFactory< ::io::deephaven::proto::backplane::grpc::ExportNotification>::Create(channel_.get(), cq, rpcmethod_ExportNotifications_, context, request, true, tag); -} - -::grpc::ClientAsyncReader< ::io::deephaven::proto::backplane::grpc::ExportNotification>* SessionService::Stub::PrepareAsyncExportNotificationsRaw(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::ExportNotificationRequest& request, ::grpc::CompletionQueue* cq) { - return ::grpc::internal::ClientAsyncReaderFactory< ::io::deephaven::proto::backplane::grpc::ExportNotification>::Create(channel_.get(), cq, rpcmethod_ExportNotifications_, context, request, false, nullptr); -} - -::grpc::Status SessionService::Stub::TerminationNotification(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::TerminationNotificationRequest& request, ::io::deephaven::proto::backplane::grpc::TerminationNotificationResponse* response) { - return ::grpc::internal::BlockingUnaryCall< ::io::deephaven::proto::backplane::grpc::TerminationNotificationRequest, ::io::deephaven::proto::backplane::grpc::TerminationNotificationResponse, ::grpc::protobuf::MessageLite, ::grpc::protobuf::MessageLite>(channel_.get(), rpcmethod_TerminationNotification_, context, request, response); -} - -void SessionService::Stub::async::TerminationNotification(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::TerminationNotificationRequest* request, ::io::deephaven::proto::backplane::grpc::TerminationNotificationResponse* response, std::function f) { - ::grpc::internal::CallbackUnaryCall< ::io::deephaven::proto::backplane::grpc::TerminationNotificationRequest, ::io::deephaven::proto::backplane::grpc::TerminationNotificationResponse, ::grpc::protobuf::MessageLite, ::grpc::protobuf::MessageLite>(stub_->channel_.get(), stub_->rpcmethod_TerminationNotification_, context, request, response, std::move(f)); -} - -void SessionService::Stub::async::TerminationNotification(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::TerminationNotificationRequest* request, ::io::deephaven::proto::backplane::grpc::TerminationNotificationResponse* response, ::grpc::ClientUnaryReactor* reactor) { - ::grpc::internal::ClientCallbackUnaryFactory::Create< ::grpc::protobuf::MessageLite, ::grpc::protobuf::MessageLite>(stub_->channel_.get(), stub_->rpcmethod_TerminationNotification_, context, request, response, reactor); -} - -::grpc::ClientAsyncResponseReader< ::io::deephaven::proto::backplane::grpc::TerminationNotificationResponse>* SessionService::Stub::PrepareAsyncTerminationNotificationRaw(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::TerminationNotificationRequest& request, ::grpc::CompletionQueue* cq) { - return ::grpc::internal::ClientAsyncResponseReaderHelper::Create< ::io::deephaven::proto::backplane::grpc::TerminationNotificationResponse, ::io::deephaven::proto::backplane::grpc::TerminationNotificationRequest, ::grpc::protobuf::MessageLite, ::grpc::protobuf::MessageLite>(channel_.get(), cq, rpcmethod_TerminationNotification_, context, request); -} - -::grpc::ClientAsyncResponseReader< ::io::deephaven::proto::backplane::grpc::TerminationNotificationResponse>* SessionService::Stub::AsyncTerminationNotificationRaw(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::TerminationNotificationRequest& request, ::grpc::CompletionQueue* cq) { - auto* result = - this->PrepareAsyncTerminationNotificationRaw(context, request, cq); - result->StartCall(); - return result; -} - -SessionService::Service::Service() { - AddMethod(new ::grpc::internal::RpcServiceMethod( - SessionService_method_names[0], - ::grpc::internal::RpcMethod::NORMAL_RPC, - new ::grpc::internal::RpcMethodHandler< SessionService::Service, ::io::deephaven::proto::backplane::grpc::HandshakeRequest, ::io::deephaven::proto::backplane::grpc::HandshakeResponse, ::grpc::protobuf::MessageLite, ::grpc::protobuf::MessageLite>( - [](SessionService::Service* service, - ::grpc::ServerContext* ctx, - const ::io::deephaven::proto::backplane::grpc::HandshakeRequest* req, - ::io::deephaven::proto::backplane::grpc::HandshakeResponse* resp) { - return service->NewSession(ctx, req, resp); - }, this))); - AddMethod(new ::grpc::internal::RpcServiceMethod( - SessionService_method_names[1], - ::grpc::internal::RpcMethod::NORMAL_RPC, - new ::grpc::internal::RpcMethodHandler< SessionService::Service, ::io::deephaven::proto::backplane::grpc::HandshakeRequest, ::io::deephaven::proto::backplane::grpc::HandshakeResponse, ::grpc::protobuf::MessageLite, ::grpc::protobuf::MessageLite>( - [](SessionService::Service* service, - ::grpc::ServerContext* ctx, - const ::io::deephaven::proto::backplane::grpc::HandshakeRequest* req, - ::io::deephaven::proto::backplane::grpc::HandshakeResponse* resp) { - return service->RefreshSessionToken(ctx, req, resp); - }, this))); - AddMethod(new ::grpc::internal::RpcServiceMethod( - SessionService_method_names[2], - ::grpc::internal::RpcMethod::NORMAL_RPC, - new ::grpc::internal::RpcMethodHandler< SessionService::Service, ::io::deephaven::proto::backplane::grpc::HandshakeRequest, ::io::deephaven::proto::backplane::grpc::CloseSessionResponse, ::grpc::protobuf::MessageLite, ::grpc::protobuf::MessageLite>( - [](SessionService::Service* service, - ::grpc::ServerContext* ctx, - const ::io::deephaven::proto::backplane::grpc::HandshakeRequest* req, - ::io::deephaven::proto::backplane::grpc::CloseSessionResponse* resp) { - return service->CloseSession(ctx, req, resp); - }, this))); - AddMethod(new ::grpc::internal::RpcServiceMethod( - SessionService_method_names[3], - ::grpc::internal::RpcMethod::NORMAL_RPC, - new ::grpc::internal::RpcMethodHandler< SessionService::Service, ::io::deephaven::proto::backplane::grpc::ReleaseRequest, ::io::deephaven::proto::backplane::grpc::ReleaseResponse, ::grpc::protobuf::MessageLite, ::grpc::protobuf::MessageLite>( - [](SessionService::Service* service, - ::grpc::ServerContext* ctx, - const ::io::deephaven::proto::backplane::grpc::ReleaseRequest* req, - ::io::deephaven::proto::backplane::grpc::ReleaseResponse* resp) { - return service->Release(ctx, req, resp); - }, this))); - AddMethod(new ::grpc::internal::RpcServiceMethod( - SessionService_method_names[4], - ::grpc::internal::RpcMethod::NORMAL_RPC, - new ::grpc::internal::RpcMethodHandler< SessionService::Service, ::io::deephaven::proto::backplane::grpc::ExportRequest, ::io::deephaven::proto::backplane::grpc::ExportResponse, ::grpc::protobuf::MessageLite, ::grpc::protobuf::MessageLite>( - [](SessionService::Service* service, - ::grpc::ServerContext* ctx, - const ::io::deephaven::proto::backplane::grpc::ExportRequest* req, - ::io::deephaven::proto::backplane::grpc::ExportResponse* resp) { - return service->ExportFromTicket(ctx, req, resp); - }, this))); - AddMethod(new ::grpc::internal::RpcServiceMethod( - SessionService_method_names[5], - ::grpc::internal::RpcMethod::NORMAL_RPC, - new ::grpc::internal::RpcMethodHandler< SessionService::Service, ::io::deephaven::proto::backplane::grpc::PublishRequest, ::io::deephaven::proto::backplane::grpc::PublishResponse, ::grpc::protobuf::MessageLite, ::grpc::protobuf::MessageLite>( - [](SessionService::Service* service, - ::grpc::ServerContext* ctx, - const ::io::deephaven::proto::backplane::grpc::PublishRequest* req, - ::io::deephaven::proto::backplane::grpc::PublishResponse* resp) { - return service->PublishFromTicket(ctx, req, resp); - }, this))); - AddMethod(new ::grpc::internal::RpcServiceMethod( - SessionService_method_names[6], - ::grpc::internal::RpcMethod::SERVER_STREAMING, - new ::grpc::internal::ServerStreamingHandler< SessionService::Service, ::io::deephaven::proto::backplane::grpc::ExportNotificationRequest, ::io::deephaven::proto::backplane::grpc::ExportNotification>( - [](SessionService::Service* service, - ::grpc::ServerContext* ctx, - const ::io::deephaven::proto::backplane::grpc::ExportNotificationRequest* req, - ::grpc::ServerWriter<::io::deephaven::proto::backplane::grpc::ExportNotification>* writer) { - return service->ExportNotifications(ctx, req, writer); - }, this))); - AddMethod(new ::grpc::internal::RpcServiceMethod( - SessionService_method_names[7], - ::grpc::internal::RpcMethod::NORMAL_RPC, - new ::grpc::internal::RpcMethodHandler< SessionService::Service, ::io::deephaven::proto::backplane::grpc::TerminationNotificationRequest, ::io::deephaven::proto::backplane::grpc::TerminationNotificationResponse, ::grpc::protobuf::MessageLite, ::grpc::protobuf::MessageLite>( - [](SessionService::Service* service, - ::grpc::ServerContext* ctx, - const ::io::deephaven::proto::backplane::grpc::TerminationNotificationRequest* req, - ::io::deephaven::proto::backplane::grpc::TerminationNotificationResponse* resp) { - return service->TerminationNotification(ctx, req, resp); - }, this))); -} - -SessionService::Service::~Service() { -} - -::grpc::Status SessionService::Service::NewSession(::grpc::ServerContext* context, const ::io::deephaven::proto::backplane::grpc::HandshakeRequest* request, ::io::deephaven::proto::backplane::grpc::HandshakeResponse* response) { - (void) context; - (void) request; - (void) response; - return ::grpc::Status(::grpc::StatusCode::UNIMPLEMENTED, ""); -} - -::grpc::Status SessionService::Service::RefreshSessionToken(::grpc::ServerContext* context, const ::io::deephaven::proto::backplane::grpc::HandshakeRequest* request, ::io::deephaven::proto::backplane::grpc::HandshakeResponse* response) { - (void) context; - (void) request; - (void) response; - return ::grpc::Status(::grpc::StatusCode::UNIMPLEMENTED, ""); -} - -::grpc::Status SessionService::Service::CloseSession(::grpc::ServerContext* context, const ::io::deephaven::proto::backplane::grpc::HandshakeRequest* request, ::io::deephaven::proto::backplane::grpc::CloseSessionResponse* response) { - (void) context; - (void) request; - (void) response; - return ::grpc::Status(::grpc::StatusCode::UNIMPLEMENTED, ""); -} - -::grpc::Status SessionService::Service::Release(::grpc::ServerContext* context, const ::io::deephaven::proto::backplane::grpc::ReleaseRequest* request, ::io::deephaven::proto::backplane::grpc::ReleaseResponse* response) { - (void) context; - (void) request; - (void) response; - return ::grpc::Status(::grpc::StatusCode::UNIMPLEMENTED, ""); -} - -::grpc::Status SessionService::Service::ExportFromTicket(::grpc::ServerContext* context, const ::io::deephaven::proto::backplane::grpc::ExportRequest* request, ::io::deephaven::proto::backplane::grpc::ExportResponse* response) { - (void) context; - (void) request; - (void) response; - return ::grpc::Status(::grpc::StatusCode::UNIMPLEMENTED, ""); -} - -::grpc::Status SessionService::Service::PublishFromTicket(::grpc::ServerContext* context, const ::io::deephaven::proto::backplane::grpc::PublishRequest* request, ::io::deephaven::proto::backplane::grpc::PublishResponse* response) { - (void) context; - (void) request; - (void) response; - return ::grpc::Status(::grpc::StatusCode::UNIMPLEMENTED, ""); -} - -::grpc::Status SessionService::Service::ExportNotifications(::grpc::ServerContext* context, const ::io::deephaven::proto::backplane::grpc::ExportNotificationRequest* request, ::grpc::ServerWriter< ::io::deephaven::proto::backplane::grpc::ExportNotification>* writer) { - (void) context; - (void) request; - (void) writer; - return ::grpc::Status(::grpc::StatusCode::UNIMPLEMENTED, ""); -} - -::grpc::Status SessionService::Service::TerminationNotification(::grpc::ServerContext* context, const ::io::deephaven::proto::backplane::grpc::TerminationNotificationRequest* request, ::io::deephaven::proto::backplane::grpc::TerminationNotificationResponse* response) { - (void) context; - (void) request; - (void) response; - return ::grpc::Status(::grpc::StatusCode::UNIMPLEMENTED, ""); -} - - -} // namespace io -} // namespace deephaven -} // namespace proto -} // namespace backplane -} // namespace grpc - diff --git a/cpp-client/deephaven/dhclient/proto/deephaven/proto/session.grpc.pb.h b/cpp-client/deephaven/dhclient/proto/deephaven/proto/session.grpc.pb.h deleted file mode 100644 index 6be5ef4d538..00000000000 --- a/cpp-client/deephaven/dhclient/proto/deephaven/proto/session.grpc.pb.h +++ /dev/null @@ -1,1462 +0,0 @@ -// Generated by the gRPC C++ plugin. -// If you make any local change, they will be lost. -// source: deephaven/proto/session.proto -// Original file comments: -// -// Copyright (c) 2016-2022 Deephaven Data Labs and Patent Pending -#ifndef GRPC_deephaven_2fproto_2fsession_2eproto__INCLUDED -#define GRPC_deephaven_2fproto_2fsession_2eproto__INCLUDED - -#include "deephaven/proto/session.pb.h" - -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include - -namespace io { -namespace deephaven { -namespace proto { -namespace backplane { -namespace grpc { - -// -// User supplied Flight.Ticket(s) should begin with 'e' byte followed by an signed little-endian int. The client is only -// allowed to use the positive exportId key-space (client generated exportIds should be greater than 0). The client is -// encouraged to use a packed ranges of ids as this yields the smallest footprint server side for long running sessions. -// -// The client is responsible for releasing all Flight.Tickets that they create or that were created for them via a gRPC -// call. The documentation for the gRPC call will indicate that the exports must be released. Exports that need to be -// released will always be communicated over the session's ExportNotification stream. -// -// When a session ends, either explicitly or due to timeout, all exported objects in that session are released -// automatically. -// -// Some parts of the API return a Flight.Ticket that does not need to be released. It is not an error to attempt to -// release them. -class SessionService final { - public: - static constexpr char const* service_full_name() { - return "io.deephaven.proto.backplane.grpc.SessionService"; - } - class StubInterface { - public: - virtual ~StubInterface() {} - // - // Handshake between client and server to create a new session. The response includes a metadata header name and the - // token to send on every subsequent request. The auth mechanisms here are unary to best support grpc-web. - // - // Deprecated: Please use Flight's Handshake or http authorization headers instead. - virtual ::grpc::Status NewSession(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::HandshakeRequest& request, ::io::deephaven::proto::backplane::grpc::HandshakeResponse* response) = 0; - std::unique_ptr< ::grpc::ClientAsyncResponseReaderInterface< ::io::deephaven::proto::backplane::grpc::HandshakeResponse>> AsyncNewSession(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::HandshakeRequest& request, ::grpc::CompletionQueue* cq) { - return std::unique_ptr< ::grpc::ClientAsyncResponseReaderInterface< ::io::deephaven::proto::backplane::grpc::HandshakeResponse>>(AsyncNewSessionRaw(context, request, cq)); - } - std::unique_ptr< ::grpc::ClientAsyncResponseReaderInterface< ::io::deephaven::proto::backplane::grpc::HandshakeResponse>> PrepareAsyncNewSession(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::HandshakeRequest& request, ::grpc::CompletionQueue* cq) { - return std::unique_ptr< ::grpc::ClientAsyncResponseReaderInterface< ::io::deephaven::proto::backplane::grpc::HandshakeResponse>>(PrepareAsyncNewSessionRaw(context, request, cq)); - } - // - // Keep-alive a given token to ensure that a session is not cleaned prematurely. The response may include an updated - // token that should replace the existing token for subsequent requests. - // - // Deprecated: Please use Flight's Handshake with an empty payload. - virtual ::grpc::Status RefreshSessionToken(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::HandshakeRequest& request, ::io::deephaven::proto::backplane::grpc::HandshakeResponse* response) = 0; - std::unique_ptr< ::grpc::ClientAsyncResponseReaderInterface< ::io::deephaven::proto::backplane::grpc::HandshakeResponse>> AsyncRefreshSessionToken(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::HandshakeRequest& request, ::grpc::CompletionQueue* cq) { - return std::unique_ptr< ::grpc::ClientAsyncResponseReaderInterface< ::io::deephaven::proto::backplane::grpc::HandshakeResponse>>(AsyncRefreshSessionTokenRaw(context, request, cq)); - } - std::unique_ptr< ::grpc::ClientAsyncResponseReaderInterface< ::io::deephaven::proto::backplane::grpc::HandshakeResponse>> PrepareAsyncRefreshSessionToken(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::HandshakeRequest& request, ::grpc::CompletionQueue* cq) { - return std::unique_ptr< ::grpc::ClientAsyncResponseReaderInterface< ::io::deephaven::proto::backplane::grpc::HandshakeResponse>>(PrepareAsyncRefreshSessionTokenRaw(context, request, cq)); - } - // - // Proactively close an open session. Sessions will automatically close on timeout. When a session is closed, all - // unreleased exports will be automatically released. - virtual ::grpc::Status CloseSession(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::HandshakeRequest& request, ::io::deephaven::proto::backplane::grpc::CloseSessionResponse* response) = 0; - std::unique_ptr< ::grpc::ClientAsyncResponseReaderInterface< ::io::deephaven::proto::backplane::grpc::CloseSessionResponse>> AsyncCloseSession(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::HandshakeRequest& request, ::grpc::CompletionQueue* cq) { - return std::unique_ptr< ::grpc::ClientAsyncResponseReaderInterface< ::io::deephaven::proto::backplane::grpc::CloseSessionResponse>>(AsyncCloseSessionRaw(context, request, cq)); - } - std::unique_ptr< ::grpc::ClientAsyncResponseReaderInterface< ::io::deephaven::proto::backplane::grpc::CloseSessionResponse>> PrepareAsyncCloseSession(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::HandshakeRequest& request, ::grpc::CompletionQueue* cq) { - return std::unique_ptr< ::grpc::ClientAsyncResponseReaderInterface< ::io::deephaven::proto::backplane::grpc::CloseSessionResponse>>(PrepareAsyncCloseSessionRaw(context, request, cq)); - } - // - // Attempts to release an export by its ticket. Returns true if an existing export was found. It is the client's - // responsibility to release all resources they no longer want the server to hold on to. Proactively cancels work; do - // not release a ticket that is needed by dependent work that has not yet finished - // (i.e. the dependencies that are staying around should first be in EXPORTED state). - virtual ::grpc::Status Release(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::ReleaseRequest& request, ::io::deephaven::proto::backplane::grpc::ReleaseResponse* response) = 0; - std::unique_ptr< ::grpc::ClientAsyncResponseReaderInterface< ::io::deephaven::proto::backplane::grpc::ReleaseResponse>> AsyncRelease(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::ReleaseRequest& request, ::grpc::CompletionQueue* cq) { - return std::unique_ptr< ::grpc::ClientAsyncResponseReaderInterface< ::io::deephaven::proto::backplane::grpc::ReleaseResponse>>(AsyncReleaseRaw(context, request, cq)); - } - std::unique_ptr< ::grpc::ClientAsyncResponseReaderInterface< ::io::deephaven::proto::backplane::grpc::ReleaseResponse>> PrepareAsyncRelease(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::ReleaseRequest& request, ::grpc::CompletionQueue* cq) { - return std::unique_ptr< ::grpc::ClientAsyncResponseReaderInterface< ::io::deephaven::proto::backplane::grpc::ReleaseResponse>>(PrepareAsyncReleaseRaw(context, request, cq)); - } - // - // Makes a copy from a source ticket to a client managed result ticket. The source ticket does not need to be - // a client managed ticket. - virtual ::grpc::Status ExportFromTicket(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::ExportRequest& request, ::io::deephaven::proto::backplane::grpc::ExportResponse* response) = 0; - std::unique_ptr< ::grpc::ClientAsyncResponseReaderInterface< ::io::deephaven::proto::backplane::grpc::ExportResponse>> AsyncExportFromTicket(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::ExportRequest& request, ::grpc::CompletionQueue* cq) { - return std::unique_ptr< ::grpc::ClientAsyncResponseReaderInterface< ::io::deephaven::proto::backplane::grpc::ExportResponse>>(AsyncExportFromTicketRaw(context, request, cq)); - } - std::unique_ptr< ::grpc::ClientAsyncResponseReaderInterface< ::io::deephaven::proto::backplane::grpc::ExportResponse>> PrepareAsyncExportFromTicket(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::ExportRequest& request, ::grpc::CompletionQueue* cq) { - return std::unique_ptr< ::grpc::ClientAsyncResponseReaderInterface< ::io::deephaven::proto::backplane::grpc::ExportResponse>>(PrepareAsyncExportFromTicketRaw(context, request, cq)); - } - // - // Makes a copy from a source ticket and publishes to a result ticket. Neither the source ticket, nor the destination - // ticket, need to be a client managed ticket. - virtual ::grpc::Status PublishFromTicket(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::PublishRequest& request, ::io::deephaven::proto::backplane::grpc::PublishResponse* response) = 0; - std::unique_ptr< ::grpc::ClientAsyncResponseReaderInterface< ::io::deephaven::proto::backplane::grpc::PublishResponse>> AsyncPublishFromTicket(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::PublishRequest& request, ::grpc::CompletionQueue* cq) { - return std::unique_ptr< ::grpc::ClientAsyncResponseReaderInterface< ::io::deephaven::proto::backplane::grpc::PublishResponse>>(AsyncPublishFromTicketRaw(context, request, cq)); - } - std::unique_ptr< ::grpc::ClientAsyncResponseReaderInterface< ::io::deephaven::proto::backplane::grpc::PublishResponse>> PrepareAsyncPublishFromTicket(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::PublishRequest& request, ::grpc::CompletionQueue* cq) { - return std::unique_ptr< ::grpc::ClientAsyncResponseReaderInterface< ::io::deephaven::proto::backplane::grpc::PublishResponse>>(PrepareAsyncPublishFromTicketRaw(context, request, cq)); - } - // - // Establish a stream to manage all session exports, including those lost due to partially complete rpc calls. - // - // New streams will flush notifications for all un-released exports, prior to seeing any new or updated exports - // for all live exports. After the refresh of existing state, subscribers will receive notifications of new and - // updated exports. An export id of zero will be sent to indicate all pre-existing exports have been sent. - std::unique_ptr< ::grpc::ClientReaderInterface< ::io::deephaven::proto::backplane::grpc::ExportNotification>> ExportNotifications(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::ExportNotificationRequest& request) { - return std::unique_ptr< ::grpc::ClientReaderInterface< ::io::deephaven::proto::backplane::grpc::ExportNotification>>(ExportNotificationsRaw(context, request)); - } - std::unique_ptr< ::grpc::ClientAsyncReaderInterface< ::io::deephaven::proto::backplane::grpc::ExportNotification>> AsyncExportNotifications(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::ExportNotificationRequest& request, ::grpc::CompletionQueue* cq, void* tag) { - return std::unique_ptr< ::grpc::ClientAsyncReaderInterface< ::io::deephaven::proto::backplane::grpc::ExportNotification>>(AsyncExportNotificationsRaw(context, request, cq, tag)); - } - std::unique_ptr< ::grpc::ClientAsyncReaderInterface< ::io::deephaven::proto::backplane::grpc::ExportNotification>> PrepareAsyncExportNotifications(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::ExportNotificationRequest& request, ::grpc::CompletionQueue* cq) { - return std::unique_ptr< ::grpc::ClientAsyncReaderInterface< ::io::deephaven::proto::backplane::grpc::ExportNotification>>(PrepareAsyncExportNotificationsRaw(context, request, cq)); - } - // - // Receive a best-effort message on-exit indicating why this server is exiting. Reception of this message cannot be - // guaranteed. - virtual ::grpc::Status TerminationNotification(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::TerminationNotificationRequest& request, ::io::deephaven::proto::backplane::grpc::TerminationNotificationResponse* response) = 0; - std::unique_ptr< ::grpc::ClientAsyncResponseReaderInterface< ::io::deephaven::proto::backplane::grpc::TerminationNotificationResponse>> AsyncTerminationNotification(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::TerminationNotificationRequest& request, ::grpc::CompletionQueue* cq) { - return std::unique_ptr< ::grpc::ClientAsyncResponseReaderInterface< ::io::deephaven::proto::backplane::grpc::TerminationNotificationResponse>>(AsyncTerminationNotificationRaw(context, request, cq)); - } - std::unique_ptr< ::grpc::ClientAsyncResponseReaderInterface< ::io::deephaven::proto::backplane::grpc::TerminationNotificationResponse>> PrepareAsyncTerminationNotification(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::TerminationNotificationRequest& request, ::grpc::CompletionQueue* cq) { - return std::unique_ptr< ::grpc::ClientAsyncResponseReaderInterface< ::io::deephaven::proto::backplane::grpc::TerminationNotificationResponse>>(PrepareAsyncTerminationNotificationRaw(context, request, cq)); - } - class async_interface { - public: - virtual ~async_interface() {} - // - // Handshake between client and server to create a new session. The response includes a metadata header name and the - // token to send on every subsequent request. The auth mechanisms here are unary to best support grpc-web. - // - // Deprecated: Please use Flight's Handshake or http authorization headers instead. - virtual void NewSession(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::HandshakeRequest* request, ::io::deephaven::proto::backplane::grpc::HandshakeResponse* response, std::function) = 0; - virtual void NewSession(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::HandshakeRequest* request, ::io::deephaven::proto::backplane::grpc::HandshakeResponse* response, ::grpc::ClientUnaryReactor* reactor) = 0; - // - // Keep-alive a given token to ensure that a session is not cleaned prematurely. The response may include an updated - // token that should replace the existing token for subsequent requests. - // - // Deprecated: Please use Flight's Handshake with an empty payload. - virtual void RefreshSessionToken(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::HandshakeRequest* request, ::io::deephaven::proto::backplane::grpc::HandshakeResponse* response, std::function) = 0; - virtual void RefreshSessionToken(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::HandshakeRequest* request, ::io::deephaven::proto::backplane::grpc::HandshakeResponse* response, ::grpc::ClientUnaryReactor* reactor) = 0; - // - // Proactively close an open session. Sessions will automatically close on timeout. When a session is closed, all - // unreleased exports will be automatically released. - virtual void CloseSession(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::HandshakeRequest* request, ::io::deephaven::proto::backplane::grpc::CloseSessionResponse* response, std::function) = 0; - virtual void CloseSession(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::HandshakeRequest* request, ::io::deephaven::proto::backplane::grpc::CloseSessionResponse* response, ::grpc::ClientUnaryReactor* reactor) = 0; - // - // Attempts to release an export by its ticket. Returns true if an existing export was found. It is the client's - // responsibility to release all resources they no longer want the server to hold on to. Proactively cancels work; do - // not release a ticket that is needed by dependent work that has not yet finished - // (i.e. the dependencies that are staying around should first be in EXPORTED state). - virtual void Release(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::ReleaseRequest* request, ::io::deephaven::proto::backplane::grpc::ReleaseResponse* response, std::function) = 0; - virtual void Release(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::ReleaseRequest* request, ::io::deephaven::proto::backplane::grpc::ReleaseResponse* response, ::grpc::ClientUnaryReactor* reactor) = 0; - // - // Makes a copy from a source ticket to a client managed result ticket. The source ticket does not need to be - // a client managed ticket. - virtual void ExportFromTicket(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::ExportRequest* request, ::io::deephaven::proto::backplane::grpc::ExportResponse* response, std::function) = 0; - virtual void ExportFromTicket(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::ExportRequest* request, ::io::deephaven::proto::backplane::grpc::ExportResponse* response, ::grpc::ClientUnaryReactor* reactor) = 0; - // - // Makes a copy from a source ticket and publishes to a result ticket. Neither the source ticket, nor the destination - // ticket, need to be a client managed ticket. - virtual void PublishFromTicket(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::PublishRequest* request, ::io::deephaven::proto::backplane::grpc::PublishResponse* response, std::function) = 0; - virtual void PublishFromTicket(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::PublishRequest* request, ::io::deephaven::proto::backplane::grpc::PublishResponse* response, ::grpc::ClientUnaryReactor* reactor) = 0; - // - // Establish a stream to manage all session exports, including those lost due to partially complete rpc calls. - // - // New streams will flush notifications for all un-released exports, prior to seeing any new or updated exports - // for all live exports. After the refresh of existing state, subscribers will receive notifications of new and - // updated exports. An export id of zero will be sent to indicate all pre-existing exports have been sent. - virtual void ExportNotifications(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::ExportNotificationRequest* request, ::grpc::ClientReadReactor< ::io::deephaven::proto::backplane::grpc::ExportNotification>* reactor) = 0; - // - // Receive a best-effort message on-exit indicating why this server is exiting. Reception of this message cannot be - // guaranteed. - virtual void TerminationNotification(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::TerminationNotificationRequest* request, ::io::deephaven::proto::backplane::grpc::TerminationNotificationResponse* response, std::function) = 0; - virtual void TerminationNotification(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::TerminationNotificationRequest* request, ::io::deephaven::proto::backplane::grpc::TerminationNotificationResponse* response, ::grpc::ClientUnaryReactor* reactor) = 0; - }; - typedef class async_interface experimental_async_interface; - virtual class async_interface* async() { return nullptr; } - class async_interface* experimental_async() { return async(); } - private: - virtual ::grpc::ClientAsyncResponseReaderInterface< ::io::deephaven::proto::backplane::grpc::HandshakeResponse>* AsyncNewSessionRaw(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::HandshakeRequest& request, ::grpc::CompletionQueue* cq) = 0; - virtual ::grpc::ClientAsyncResponseReaderInterface< ::io::deephaven::proto::backplane::grpc::HandshakeResponse>* PrepareAsyncNewSessionRaw(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::HandshakeRequest& request, ::grpc::CompletionQueue* cq) = 0; - virtual ::grpc::ClientAsyncResponseReaderInterface< ::io::deephaven::proto::backplane::grpc::HandshakeResponse>* AsyncRefreshSessionTokenRaw(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::HandshakeRequest& request, ::grpc::CompletionQueue* cq) = 0; - virtual ::grpc::ClientAsyncResponseReaderInterface< ::io::deephaven::proto::backplane::grpc::HandshakeResponse>* PrepareAsyncRefreshSessionTokenRaw(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::HandshakeRequest& request, ::grpc::CompletionQueue* cq) = 0; - virtual ::grpc::ClientAsyncResponseReaderInterface< ::io::deephaven::proto::backplane::grpc::CloseSessionResponse>* AsyncCloseSessionRaw(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::HandshakeRequest& request, ::grpc::CompletionQueue* cq) = 0; - virtual ::grpc::ClientAsyncResponseReaderInterface< ::io::deephaven::proto::backplane::grpc::CloseSessionResponse>* PrepareAsyncCloseSessionRaw(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::HandshakeRequest& request, ::grpc::CompletionQueue* cq) = 0; - virtual ::grpc::ClientAsyncResponseReaderInterface< ::io::deephaven::proto::backplane::grpc::ReleaseResponse>* AsyncReleaseRaw(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::ReleaseRequest& request, ::grpc::CompletionQueue* cq) = 0; - virtual ::grpc::ClientAsyncResponseReaderInterface< ::io::deephaven::proto::backplane::grpc::ReleaseResponse>* PrepareAsyncReleaseRaw(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::ReleaseRequest& request, ::grpc::CompletionQueue* cq) = 0; - virtual ::grpc::ClientAsyncResponseReaderInterface< ::io::deephaven::proto::backplane::grpc::ExportResponse>* AsyncExportFromTicketRaw(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::ExportRequest& request, ::grpc::CompletionQueue* cq) = 0; - virtual ::grpc::ClientAsyncResponseReaderInterface< ::io::deephaven::proto::backplane::grpc::ExportResponse>* PrepareAsyncExportFromTicketRaw(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::ExportRequest& request, ::grpc::CompletionQueue* cq) = 0; - virtual ::grpc::ClientAsyncResponseReaderInterface< ::io::deephaven::proto::backplane::grpc::PublishResponse>* AsyncPublishFromTicketRaw(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::PublishRequest& request, ::grpc::CompletionQueue* cq) = 0; - virtual ::grpc::ClientAsyncResponseReaderInterface< ::io::deephaven::proto::backplane::grpc::PublishResponse>* PrepareAsyncPublishFromTicketRaw(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::PublishRequest& request, ::grpc::CompletionQueue* cq) = 0; - virtual ::grpc::ClientReaderInterface< ::io::deephaven::proto::backplane::grpc::ExportNotification>* ExportNotificationsRaw(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::ExportNotificationRequest& request) = 0; - virtual ::grpc::ClientAsyncReaderInterface< ::io::deephaven::proto::backplane::grpc::ExportNotification>* AsyncExportNotificationsRaw(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::ExportNotificationRequest& request, ::grpc::CompletionQueue* cq, void* tag) = 0; - virtual ::grpc::ClientAsyncReaderInterface< ::io::deephaven::proto::backplane::grpc::ExportNotification>* PrepareAsyncExportNotificationsRaw(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::ExportNotificationRequest& request, ::grpc::CompletionQueue* cq) = 0; - virtual ::grpc::ClientAsyncResponseReaderInterface< ::io::deephaven::proto::backplane::grpc::TerminationNotificationResponse>* AsyncTerminationNotificationRaw(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::TerminationNotificationRequest& request, ::grpc::CompletionQueue* cq) = 0; - virtual ::grpc::ClientAsyncResponseReaderInterface< ::io::deephaven::proto::backplane::grpc::TerminationNotificationResponse>* PrepareAsyncTerminationNotificationRaw(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::TerminationNotificationRequest& request, ::grpc::CompletionQueue* cq) = 0; - }; - class Stub final : public StubInterface { - public: - Stub(const std::shared_ptr< ::grpc::ChannelInterface>& channel, const ::grpc::StubOptions& options = ::grpc::StubOptions()); - ::grpc::Status NewSession(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::HandshakeRequest& request, ::io::deephaven::proto::backplane::grpc::HandshakeResponse* response) override; - std::unique_ptr< ::grpc::ClientAsyncResponseReader< ::io::deephaven::proto::backplane::grpc::HandshakeResponse>> AsyncNewSession(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::HandshakeRequest& request, ::grpc::CompletionQueue* cq) { - return std::unique_ptr< ::grpc::ClientAsyncResponseReader< ::io::deephaven::proto::backplane::grpc::HandshakeResponse>>(AsyncNewSessionRaw(context, request, cq)); - } - std::unique_ptr< ::grpc::ClientAsyncResponseReader< ::io::deephaven::proto::backplane::grpc::HandshakeResponse>> PrepareAsyncNewSession(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::HandshakeRequest& request, ::grpc::CompletionQueue* cq) { - return std::unique_ptr< ::grpc::ClientAsyncResponseReader< ::io::deephaven::proto::backplane::grpc::HandshakeResponse>>(PrepareAsyncNewSessionRaw(context, request, cq)); - } - ::grpc::Status RefreshSessionToken(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::HandshakeRequest& request, ::io::deephaven::proto::backplane::grpc::HandshakeResponse* response) override; - std::unique_ptr< ::grpc::ClientAsyncResponseReader< ::io::deephaven::proto::backplane::grpc::HandshakeResponse>> AsyncRefreshSessionToken(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::HandshakeRequest& request, ::grpc::CompletionQueue* cq) { - return std::unique_ptr< ::grpc::ClientAsyncResponseReader< ::io::deephaven::proto::backplane::grpc::HandshakeResponse>>(AsyncRefreshSessionTokenRaw(context, request, cq)); - } - std::unique_ptr< ::grpc::ClientAsyncResponseReader< ::io::deephaven::proto::backplane::grpc::HandshakeResponse>> PrepareAsyncRefreshSessionToken(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::HandshakeRequest& request, ::grpc::CompletionQueue* cq) { - return std::unique_ptr< ::grpc::ClientAsyncResponseReader< ::io::deephaven::proto::backplane::grpc::HandshakeResponse>>(PrepareAsyncRefreshSessionTokenRaw(context, request, cq)); - } - ::grpc::Status CloseSession(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::HandshakeRequest& request, ::io::deephaven::proto::backplane::grpc::CloseSessionResponse* response) override; - std::unique_ptr< ::grpc::ClientAsyncResponseReader< ::io::deephaven::proto::backplane::grpc::CloseSessionResponse>> AsyncCloseSession(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::HandshakeRequest& request, ::grpc::CompletionQueue* cq) { - return std::unique_ptr< ::grpc::ClientAsyncResponseReader< ::io::deephaven::proto::backplane::grpc::CloseSessionResponse>>(AsyncCloseSessionRaw(context, request, cq)); - } - std::unique_ptr< ::grpc::ClientAsyncResponseReader< ::io::deephaven::proto::backplane::grpc::CloseSessionResponse>> PrepareAsyncCloseSession(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::HandshakeRequest& request, ::grpc::CompletionQueue* cq) { - return std::unique_ptr< ::grpc::ClientAsyncResponseReader< ::io::deephaven::proto::backplane::grpc::CloseSessionResponse>>(PrepareAsyncCloseSessionRaw(context, request, cq)); - } - ::grpc::Status Release(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::ReleaseRequest& request, ::io::deephaven::proto::backplane::grpc::ReleaseResponse* response) override; - std::unique_ptr< ::grpc::ClientAsyncResponseReader< ::io::deephaven::proto::backplane::grpc::ReleaseResponse>> AsyncRelease(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::ReleaseRequest& request, ::grpc::CompletionQueue* cq) { - return std::unique_ptr< ::grpc::ClientAsyncResponseReader< ::io::deephaven::proto::backplane::grpc::ReleaseResponse>>(AsyncReleaseRaw(context, request, cq)); - } - std::unique_ptr< ::grpc::ClientAsyncResponseReader< ::io::deephaven::proto::backplane::grpc::ReleaseResponse>> PrepareAsyncRelease(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::ReleaseRequest& request, ::grpc::CompletionQueue* cq) { - return std::unique_ptr< ::grpc::ClientAsyncResponseReader< ::io::deephaven::proto::backplane::grpc::ReleaseResponse>>(PrepareAsyncReleaseRaw(context, request, cq)); - } - ::grpc::Status ExportFromTicket(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::ExportRequest& request, ::io::deephaven::proto::backplane::grpc::ExportResponse* response) override; - std::unique_ptr< ::grpc::ClientAsyncResponseReader< ::io::deephaven::proto::backplane::grpc::ExportResponse>> AsyncExportFromTicket(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::ExportRequest& request, ::grpc::CompletionQueue* cq) { - return std::unique_ptr< ::grpc::ClientAsyncResponseReader< ::io::deephaven::proto::backplane::grpc::ExportResponse>>(AsyncExportFromTicketRaw(context, request, cq)); - } - std::unique_ptr< ::grpc::ClientAsyncResponseReader< ::io::deephaven::proto::backplane::grpc::ExportResponse>> PrepareAsyncExportFromTicket(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::ExportRequest& request, ::grpc::CompletionQueue* cq) { - return std::unique_ptr< ::grpc::ClientAsyncResponseReader< ::io::deephaven::proto::backplane::grpc::ExportResponse>>(PrepareAsyncExportFromTicketRaw(context, request, cq)); - } - ::grpc::Status PublishFromTicket(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::PublishRequest& request, ::io::deephaven::proto::backplane::grpc::PublishResponse* response) override; - std::unique_ptr< ::grpc::ClientAsyncResponseReader< ::io::deephaven::proto::backplane::grpc::PublishResponse>> AsyncPublishFromTicket(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::PublishRequest& request, ::grpc::CompletionQueue* cq) { - return std::unique_ptr< ::grpc::ClientAsyncResponseReader< ::io::deephaven::proto::backplane::grpc::PublishResponse>>(AsyncPublishFromTicketRaw(context, request, cq)); - } - std::unique_ptr< ::grpc::ClientAsyncResponseReader< ::io::deephaven::proto::backplane::grpc::PublishResponse>> PrepareAsyncPublishFromTicket(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::PublishRequest& request, ::grpc::CompletionQueue* cq) { - return std::unique_ptr< ::grpc::ClientAsyncResponseReader< ::io::deephaven::proto::backplane::grpc::PublishResponse>>(PrepareAsyncPublishFromTicketRaw(context, request, cq)); - } - std::unique_ptr< ::grpc::ClientReader< ::io::deephaven::proto::backplane::grpc::ExportNotification>> ExportNotifications(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::ExportNotificationRequest& request) { - return std::unique_ptr< ::grpc::ClientReader< ::io::deephaven::proto::backplane::grpc::ExportNotification>>(ExportNotificationsRaw(context, request)); - } - std::unique_ptr< ::grpc::ClientAsyncReader< ::io::deephaven::proto::backplane::grpc::ExportNotification>> AsyncExportNotifications(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::ExportNotificationRequest& request, ::grpc::CompletionQueue* cq, void* tag) { - return std::unique_ptr< ::grpc::ClientAsyncReader< ::io::deephaven::proto::backplane::grpc::ExportNotification>>(AsyncExportNotificationsRaw(context, request, cq, tag)); - } - std::unique_ptr< ::grpc::ClientAsyncReader< ::io::deephaven::proto::backplane::grpc::ExportNotification>> PrepareAsyncExportNotifications(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::ExportNotificationRequest& request, ::grpc::CompletionQueue* cq) { - return std::unique_ptr< ::grpc::ClientAsyncReader< ::io::deephaven::proto::backplane::grpc::ExportNotification>>(PrepareAsyncExportNotificationsRaw(context, request, cq)); - } - ::grpc::Status TerminationNotification(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::TerminationNotificationRequest& request, ::io::deephaven::proto::backplane::grpc::TerminationNotificationResponse* response) override; - std::unique_ptr< ::grpc::ClientAsyncResponseReader< ::io::deephaven::proto::backplane::grpc::TerminationNotificationResponse>> AsyncTerminationNotification(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::TerminationNotificationRequest& request, ::grpc::CompletionQueue* cq) { - return std::unique_ptr< ::grpc::ClientAsyncResponseReader< ::io::deephaven::proto::backplane::grpc::TerminationNotificationResponse>>(AsyncTerminationNotificationRaw(context, request, cq)); - } - std::unique_ptr< ::grpc::ClientAsyncResponseReader< ::io::deephaven::proto::backplane::grpc::TerminationNotificationResponse>> PrepareAsyncTerminationNotification(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::TerminationNotificationRequest& request, ::grpc::CompletionQueue* cq) { - return std::unique_ptr< ::grpc::ClientAsyncResponseReader< ::io::deephaven::proto::backplane::grpc::TerminationNotificationResponse>>(PrepareAsyncTerminationNotificationRaw(context, request, cq)); - } - class async final : - public StubInterface::async_interface { - public: - void NewSession(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::HandshakeRequest* request, ::io::deephaven::proto::backplane::grpc::HandshakeResponse* response, std::function) override; - void NewSession(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::HandshakeRequest* request, ::io::deephaven::proto::backplane::grpc::HandshakeResponse* response, ::grpc::ClientUnaryReactor* reactor) override; - void RefreshSessionToken(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::HandshakeRequest* request, ::io::deephaven::proto::backplane::grpc::HandshakeResponse* response, std::function) override; - void RefreshSessionToken(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::HandshakeRequest* request, ::io::deephaven::proto::backplane::grpc::HandshakeResponse* response, ::grpc::ClientUnaryReactor* reactor) override; - void CloseSession(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::HandshakeRequest* request, ::io::deephaven::proto::backplane::grpc::CloseSessionResponse* response, std::function) override; - void CloseSession(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::HandshakeRequest* request, ::io::deephaven::proto::backplane::grpc::CloseSessionResponse* response, ::grpc::ClientUnaryReactor* reactor) override; - void Release(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::ReleaseRequest* request, ::io::deephaven::proto::backplane::grpc::ReleaseResponse* response, std::function) override; - void Release(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::ReleaseRequest* request, ::io::deephaven::proto::backplane::grpc::ReleaseResponse* response, ::grpc::ClientUnaryReactor* reactor) override; - void ExportFromTicket(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::ExportRequest* request, ::io::deephaven::proto::backplane::grpc::ExportResponse* response, std::function) override; - void ExportFromTicket(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::ExportRequest* request, ::io::deephaven::proto::backplane::grpc::ExportResponse* response, ::grpc::ClientUnaryReactor* reactor) override; - void PublishFromTicket(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::PublishRequest* request, ::io::deephaven::proto::backplane::grpc::PublishResponse* response, std::function) override; - void PublishFromTicket(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::PublishRequest* request, ::io::deephaven::proto::backplane::grpc::PublishResponse* response, ::grpc::ClientUnaryReactor* reactor) override; - void ExportNotifications(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::ExportNotificationRequest* request, ::grpc::ClientReadReactor< ::io::deephaven::proto::backplane::grpc::ExportNotification>* reactor) override; - void TerminationNotification(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::TerminationNotificationRequest* request, ::io::deephaven::proto::backplane::grpc::TerminationNotificationResponse* response, std::function) override; - void TerminationNotification(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::TerminationNotificationRequest* request, ::io::deephaven::proto::backplane::grpc::TerminationNotificationResponse* response, ::grpc::ClientUnaryReactor* reactor) override; - private: - friend class Stub; - explicit async(Stub* stub): stub_(stub) { } - Stub* stub() { return stub_; } - Stub* stub_; - }; - class async* async() override { return &async_stub_; } - - private: - std::shared_ptr< ::grpc::ChannelInterface> channel_; - class async async_stub_{this}; - ::grpc::ClientAsyncResponseReader< ::io::deephaven::proto::backplane::grpc::HandshakeResponse>* AsyncNewSessionRaw(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::HandshakeRequest& request, ::grpc::CompletionQueue* cq) override; - ::grpc::ClientAsyncResponseReader< ::io::deephaven::proto::backplane::grpc::HandshakeResponse>* PrepareAsyncNewSessionRaw(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::HandshakeRequest& request, ::grpc::CompletionQueue* cq) override; - ::grpc::ClientAsyncResponseReader< ::io::deephaven::proto::backplane::grpc::HandshakeResponse>* AsyncRefreshSessionTokenRaw(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::HandshakeRequest& request, ::grpc::CompletionQueue* cq) override; - ::grpc::ClientAsyncResponseReader< ::io::deephaven::proto::backplane::grpc::HandshakeResponse>* PrepareAsyncRefreshSessionTokenRaw(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::HandshakeRequest& request, ::grpc::CompletionQueue* cq) override; - ::grpc::ClientAsyncResponseReader< ::io::deephaven::proto::backplane::grpc::CloseSessionResponse>* AsyncCloseSessionRaw(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::HandshakeRequest& request, ::grpc::CompletionQueue* cq) override; - ::grpc::ClientAsyncResponseReader< ::io::deephaven::proto::backplane::grpc::CloseSessionResponse>* PrepareAsyncCloseSessionRaw(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::HandshakeRequest& request, ::grpc::CompletionQueue* cq) override; - ::grpc::ClientAsyncResponseReader< ::io::deephaven::proto::backplane::grpc::ReleaseResponse>* AsyncReleaseRaw(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::ReleaseRequest& request, ::grpc::CompletionQueue* cq) override; - ::grpc::ClientAsyncResponseReader< ::io::deephaven::proto::backplane::grpc::ReleaseResponse>* PrepareAsyncReleaseRaw(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::ReleaseRequest& request, ::grpc::CompletionQueue* cq) override; - ::grpc::ClientAsyncResponseReader< ::io::deephaven::proto::backplane::grpc::ExportResponse>* AsyncExportFromTicketRaw(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::ExportRequest& request, ::grpc::CompletionQueue* cq) override; - ::grpc::ClientAsyncResponseReader< ::io::deephaven::proto::backplane::grpc::ExportResponse>* PrepareAsyncExportFromTicketRaw(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::ExportRequest& request, ::grpc::CompletionQueue* cq) override; - ::grpc::ClientAsyncResponseReader< ::io::deephaven::proto::backplane::grpc::PublishResponse>* AsyncPublishFromTicketRaw(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::PublishRequest& request, ::grpc::CompletionQueue* cq) override; - ::grpc::ClientAsyncResponseReader< ::io::deephaven::proto::backplane::grpc::PublishResponse>* PrepareAsyncPublishFromTicketRaw(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::PublishRequest& request, ::grpc::CompletionQueue* cq) override; - ::grpc::ClientReader< ::io::deephaven::proto::backplane::grpc::ExportNotification>* ExportNotificationsRaw(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::ExportNotificationRequest& request) override; - ::grpc::ClientAsyncReader< ::io::deephaven::proto::backplane::grpc::ExportNotification>* AsyncExportNotificationsRaw(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::ExportNotificationRequest& request, ::grpc::CompletionQueue* cq, void* tag) override; - ::grpc::ClientAsyncReader< ::io::deephaven::proto::backplane::grpc::ExportNotification>* PrepareAsyncExportNotificationsRaw(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::ExportNotificationRequest& request, ::grpc::CompletionQueue* cq) override; - ::grpc::ClientAsyncResponseReader< ::io::deephaven::proto::backplane::grpc::TerminationNotificationResponse>* AsyncTerminationNotificationRaw(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::TerminationNotificationRequest& request, ::grpc::CompletionQueue* cq) override; - ::grpc::ClientAsyncResponseReader< ::io::deephaven::proto::backplane::grpc::TerminationNotificationResponse>* PrepareAsyncTerminationNotificationRaw(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::TerminationNotificationRequest& request, ::grpc::CompletionQueue* cq) override; - const ::grpc::internal::RpcMethod rpcmethod_NewSession_; - const ::grpc::internal::RpcMethod rpcmethod_RefreshSessionToken_; - const ::grpc::internal::RpcMethod rpcmethod_CloseSession_; - const ::grpc::internal::RpcMethod rpcmethod_Release_; - const ::grpc::internal::RpcMethod rpcmethod_ExportFromTicket_; - const ::grpc::internal::RpcMethod rpcmethod_PublishFromTicket_; - const ::grpc::internal::RpcMethod rpcmethod_ExportNotifications_; - const ::grpc::internal::RpcMethod rpcmethod_TerminationNotification_; - }; - static std::unique_ptr NewStub(const std::shared_ptr< ::grpc::ChannelInterface>& channel, const ::grpc::StubOptions& options = ::grpc::StubOptions()); - - class Service : public ::grpc::Service { - public: - Service(); - virtual ~Service(); - // - // Handshake between client and server to create a new session. The response includes a metadata header name and the - // token to send on every subsequent request. The auth mechanisms here are unary to best support grpc-web. - // - // Deprecated: Please use Flight's Handshake or http authorization headers instead. - virtual ::grpc::Status NewSession(::grpc::ServerContext* context, const ::io::deephaven::proto::backplane::grpc::HandshakeRequest* request, ::io::deephaven::proto::backplane::grpc::HandshakeResponse* response); - // - // Keep-alive a given token to ensure that a session is not cleaned prematurely. The response may include an updated - // token that should replace the existing token for subsequent requests. - // - // Deprecated: Please use Flight's Handshake with an empty payload. - virtual ::grpc::Status RefreshSessionToken(::grpc::ServerContext* context, const ::io::deephaven::proto::backplane::grpc::HandshakeRequest* request, ::io::deephaven::proto::backplane::grpc::HandshakeResponse* response); - // - // Proactively close an open session. Sessions will automatically close on timeout. When a session is closed, all - // unreleased exports will be automatically released. - virtual ::grpc::Status CloseSession(::grpc::ServerContext* context, const ::io::deephaven::proto::backplane::grpc::HandshakeRequest* request, ::io::deephaven::proto::backplane::grpc::CloseSessionResponse* response); - // - // Attempts to release an export by its ticket. Returns true if an existing export was found. It is the client's - // responsibility to release all resources they no longer want the server to hold on to. Proactively cancels work; do - // not release a ticket that is needed by dependent work that has not yet finished - // (i.e. the dependencies that are staying around should first be in EXPORTED state). - virtual ::grpc::Status Release(::grpc::ServerContext* context, const ::io::deephaven::proto::backplane::grpc::ReleaseRequest* request, ::io::deephaven::proto::backplane::grpc::ReleaseResponse* response); - // - // Makes a copy from a source ticket to a client managed result ticket. The source ticket does not need to be - // a client managed ticket. - virtual ::grpc::Status ExportFromTicket(::grpc::ServerContext* context, const ::io::deephaven::proto::backplane::grpc::ExportRequest* request, ::io::deephaven::proto::backplane::grpc::ExportResponse* response); - // - // Makes a copy from a source ticket and publishes to a result ticket. Neither the source ticket, nor the destination - // ticket, need to be a client managed ticket. - virtual ::grpc::Status PublishFromTicket(::grpc::ServerContext* context, const ::io::deephaven::proto::backplane::grpc::PublishRequest* request, ::io::deephaven::proto::backplane::grpc::PublishResponse* response); - // - // Establish a stream to manage all session exports, including those lost due to partially complete rpc calls. - // - // New streams will flush notifications for all un-released exports, prior to seeing any new or updated exports - // for all live exports. After the refresh of existing state, subscribers will receive notifications of new and - // updated exports. An export id of zero will be sent to indicate all pre-existing exports have been sent. - virtual ::grpc::Status ExportNotifications(::grpc::ServerContext* context, const ::io::deephaven::proto::backplane::grpc::ExportNotificationRequest* request, ::grpc::ServerWriter< ::io::deephaven::proto::backplane::grpc::ExportNotification>* writer); - // - // Receive a best-effort message on-exit indicating why this server is exiting. Reception of this message cannot be - // guaranteed. - virtual ::grpc::Status TerminationNotification(::grpc::ServerContext* context, const ::io::deephaven::proto::backplane::grpc::TerminationNotificationRequest* request, ::io::deephaven::proto::backplane::grpc::TerminationNotificationResponse* response); - }; - template - class WithAsyncMethod_NewSession : public BaseClass { - private: - void BaseClassMustBeDerivedFromService(const Service* /*service*/) {} - public: - WithAsyncMethod_NewSession() { - ::grpc::Service::MarkMethodAsync(0); - } - ~WithAsyncMethod_NewSession() override { - BaseClassMustBeDerivedFromService(this); - } - // disable synchronous version of this method - ::grpc::Status NewSession(::grpc::ServerContext* /*context*/, const ::io::deephaven::proto::backplane::grpc::HandshakeRequest* /*request*/, ::io::deephaven::proto::backplane::grpc::HandshakeResponse* /*response*/) override { - abort(); - return ::grpc::Status(::grpc::StatusCode::UNIMPLEMENTED, ""); - } - void RequestNewSession(::grpc::ServerContext* context, ::io::deephaven::proto::backplane::grpc::HandshakeRequest* request, ::grpc::ServerAsyncResponseWriter< ::io::deephaven::proto::backplane::grpc::HandshakeResponse>* response, ::grpc::CompletionQueue* new_call_cq, ::grpc::ServerCompletionQueue* notification_cq, void *tag) { - ::grpc::Service::RequestAsyncUnary(0, context, request, response, new_call_cq, notification_cq, tag); - } - }; - template - class WithAsyncMethod_RefreshSessionToken : public BaseClass { - private: - void BaseClassMustBeDerivedFromService(const Service* /*service*/) {} - public: - WithAsyncMethod_RefreshSessionToken() { - ::grpc::Service::MarkMethodAsync(1); - } - ~WithAsyncMethod_RefreshSessionToken() override { - BaseClassMustBeDerivedFromService(this); - } - // disable synchronous version of this method - ::grpc::Status RefreshSessionToken(::grpc::ServerContext* /*context*/, const ::io::deephaven::proto::backplane::grpc::HandshakeRequest* /*request*/, ::io::deephaven::proto::backplane::grpc::HandshakeResponse* /*response*/) override { - abort(); - return ::grpc::Status(::grpc::StatusCode::UNIMPLEMENTED, ""); - } - void RequestRefreshSessionToken(::grpc::ServerContext* context, ::io::deephaven::proto::backplane::grpc::HandshakeRequest* request, ::grpc::ServerAsyncResponseWriter< ::io::deephaven::proto::backplane::grpc::HandshakeResponse>* response, ::grpc::CompletionQueue* new_call_cq, ::grpc::ServerCompletionQueue* notification_cq, void *tag) { - ::grpc::Service::RequestAsyncUnary(1, context, request, response, new_call_cq, notification_cq, tag); - } - }; - template - class WithAsyncMethod_CloseSession : public BaseClass { - private: - void BaseClassMustBeDerivedFromService(const Service* /*service*/) {} - public: - WithAsyncMethod_CloseSession() { - ::grpc::Service::MarkMethodAsync(2); - } - ~WithAsyncMethod_CloseSession() override { - BaseClassMustBeDerivedFromService(this); - } - // disable synchronous version of this method - ::grpc::Status CloseSession(::grpc::ServerContext* /*context*/, const ::io::deephaven::proto::backplane::grpc::HandshakeRequest* /*request*/, ::io::deephaven::proto::backplane::grpc::CloseSessionResponse* /*response*/) override { - abort(); - return ::grpc::Status(::grpc::StatusCode::UNIMPLEMENTED, ""); - } - void RequestCloseSession(::grpc::ServerContext* context, ::io::deephaven::proto::backplane::grpc::HandshakeRequest* request, ::grpc::ServerAsyncResponseWriter< ::io::deephaven::proto::backplane::grpc::CloseSessionResponse>* response, ::grpc::CompletionQueue* new_call_cq, ::grpc::ServerCompletionQueue* notification_cq, void *tag) { - ::grpc::Service::RequestAsyncUnary(2, context, request, response, new_call_cq, notification_cq, tag); - } - }; - template - class WithAsyncMethod_Release : public BaseClass { - private: - void BaseClassMustBeDerivedFromService(const Service* /*service*/) {} - public: - WithAsyncMethod_Release() { - ::grpc::Service::MarkMethodAsync(3); - } - ~WithAsyncMethod_Release() override { - BaseClassMustBeDerivedFromService(this); - } - // disable synchronous version of this method - ::grpc::Status Release(::grpc::ServerContext* /*context*/, const ::io::deephaven::proto::backplane::grpc::ReleaseRequest* /*request*/, ::io::deephaven::proto::backplane::grpc::ReleaseResponse* /*response*/) override { - abort(); - return ::grpc::Status(::grpc::StatusCode::UNIMPLEMENTED, ""); - } - void RequestRelease(::grpc::ServerContext* context, ::io::deephaven::proto::backplane::grpc::ReleaseRequest* request, ::grpc::ServerAsyncResponseWriter< ::io::deephaven::proto::backplane::grpc::ReleaseResponse>* response, ::grpc::CompletionQueue* new_call_cq, ::grpc::ServerCompletionQueue* notification_cq, void *tag) { - ::grpc::Service::RequestAsyncUnary(3, context, request, response, new_call_cq, notification_cq, tag); - } - }; - template - class WithAsyncMethod_ExportFromTicket : public BaseClass { - private: - void BaseClassMustBeDerivedFromService(const Service* /*service*/) {} - public: - WithAsyncMethod_ExportFromTicket() { - ::grpc::Service::MarkMethodAsync(4); - } - ~WithAsyncMethod_ExportFromTicket() override { - BaseClassMustBeDerivedFromService(this); - } - // disable synchronous version of this method - ::grpc::Status ExportFromTicket(::grpc::ServerContext* /*context*/, const ::io::deephaven::proto::backplane::grpc::ExportRequest* /*request*/, ::io::deephaven::proto::backplane::grpc::ExportResponse* /*response*/) override { - abort(); - return ::grpc::Status(::grpc::StatusCode::UNIMPLEMENTED, ""); - } - void RequestExportFromTicket(::grpc::ServerContext* context, ::io::deephaven::proto::backplane::grpc::ExportRequest* request, ::grpc::ServerAsyncResponseWriter< ::io::deephaven::proto::backplane::grpc::ExportResponse>* response, ::grpc::CompletionQueue* new_call_cq, ::grpc::ServerCompletionQueue* notification_cq, void *tag) { - ::grpc::Service::RequestAsyncUnary(4, context, request, response, new_call_cq, notification_cq, tag); - } - }; - template - class WithAsyncMethod_PublishFromTicket : public BaseClass { - private: - void BaseClassMustBeDerivedFromService(const Service* /*service*/) {} - public: - WithAsyncMethod_PublishFromTicket() { - ::grpc::Service::MarkMethodAsync(5); - } - ~WithAsyncMethod_PublishFromTicket() override { - BaseClassMustBeDerivedFromService(this); - } - // disable synchronous version of this method - ::grpc::Status PublishFromTicket(::grpc::ServerContext* /*context*/, const ::io::deephaven::proto::backplane::grpc::PublishRequest* /*request*/, ::io::deephaven::proto::backplane::grpc::PublishResponse* /*response*/) override { - abort(); - return ::grpc::Status(::grpc::StatusCode::UNIMPLEMENTED, ""); - } - void RequestPublishFromTicket(::grpc::ServerContext* context, ::io::deephaven::proto::backplane::grpc::PublishRequest* request, ::grpc::ServerAsyncResponseWriter< ::io::deephaven::proto::backplane::grpc::PublishResponse>* response, ::grpc::CompletionQueue* new_call_cq, ::grpc::ServerCompletionQueue* notification_cq, void *tag) { - ::grpc::Service::RequestAsyncUnary(5, context, request, response, new_call_cq, notification_cq, tag); - } - }; - template - class WithAsyncMethod_ExportNotifications : public BaseClass { - private: - void BaseClassMustBeDerivedFromService(const Service* /*service*/) {} - public: - WithAsyncMethod_ExportNotifications() { - ::grpc::Service::MarkMethodAsync(6); - } - ~WithAsyncMethod_ExportNotifications() override { - BaseClassMustBeDerivedFromService(this); - } - // disable synchronous version of this method - ::grpc::Status ExportNotifications(::grpc::ServerContext* /*context*/, const ::io::deephaven::proto::backplane::grpc::ExportNotificationRequest* /*request*/, ::grpc::ServerWriter< ::io::deephaven::proto::backplane::grpc::ExportNotification>* /*writer*/) override { - abort(); - return ::grpc::Status(::grpc::StatusCode::UNIMPLEMENTED, ""); - } - void RequestExportNotifications(::grpc::ServerContext* context, ::io::deephaven::proto::backplane::grpc::ExportNotificationRequest* request, ::grpc::ServerAsyncWriter< ::io::deephaven::proto::backplane::grpc::ExportNotification>* writer, ::grpc::CompletionQueue* new_call_cq, ::grpc::ServerCompletionQueue* notification_cq, void *tag) { - ::grpc::Service::RequestAsyncServerStreaming(6, context, request, writer, new_call_cq, notification_cq, tag); - } - }; - template - class WithAsyncMethod_TerminationNotification : public BaseClass { - private: - void BaseClassMustBeDerivedFromService(const Service* /*service*/) {} - public: - WithAsyncMethod_TerminationNotification() { - ::grpc::Service::MarkMethodAsync(7); - } - ~WithAsyncMethod_TerminationNotification() override { - BaseClassMustBeDerivedFromService(this); - } - // disable synchronous version of this method - ::grpc::Status TerminationNotification(::grpc::ServerContext* /*context*/, const ::io::deephaven::proto::backplane::grpc::TerminationNotificationRequest* /*request*/, ::io::deephaven::proto::backplane::grpc::TerminationNotificationResponse* /*response*/) override { - abort(); - return ::grpc::Status(::grpc::StatusCode::UNIMPLEMENTED, ""); - } - void RequestTerminationNotification(::grpc::ServerContext* context, ::io::deephaven::proto::backplane::grpc::TerminationNotificationRequest* request, ::grpc::ServerAsyncResponseWriter< ::io::deephaven::proto::backplane::grpc::TerminationNotificationResponse>* response, ::grpc::CompletionQueue* new_call_cq, ::grpc::ServerCompletionQueue* notification_cq, void *tag) { - ::grpc::Service::RequestAsyncUnary(7, context, request, response, new_call_cq, notification_cq, tag); - } - }; - typedef WithAsyncMethod_NewSession > > > > > > > AsyncService; - template - class WithCallbackMethod_NewSession : public BaseClass { - private: - void BaseClassMustBeDerivedFromService(const Service* /*service*/) {} - public: - WithCallbackMethod_NewSession() { - ::grpc::Service::MarkMethodCallback(0, - new ::grpc::internal::CallbackUnaryHandler< ::io::deephaven::proto::backplane::grpc::HandshakeRequest, ::io::deephaven::proto::backplane::grpc::HandshakeResponse>( - [this]( - ::grpc::CallbackServerContext* context, const ::io::deephaven::proto::backplane::grpc::HandshakeRequest* request, ::io::deephaven::proto::backplane::grpc::HandshakeResponse* response) { return this->NewSession(context, request, response); }));} - void SetMessageAllocatorFor_NewSession( - ::grpc::MessageAllocator< ::io::deephaven::proto::backplane::grpc::HandshakeRequest, ::io::deephaven::proto::backplane::grpc::HandshakeResponse>* allocator) { - ::grpc::internal::MethodHandler* const handler = ::grpc::Service::GetHandler(0); - static_cast<::grpc::internal::CallbackUnaryHandler< ::io::deephaven::proto::backplane::grpc::HandshakeRequest, ::io::deephaven::proto::backplane::grpc::HandshakeResponse>*>(handler) - ->SetMessageAllocator(allocator); - } - ~WithCallbackMethod_NewSession() override { - BaseClassMustBeDerivedFromService(this); - } - // disable synchronous version of this method - ::grpc::Status NewSession(::grpc::ServerContext* /*context*/, const ::io::deephaven::proto::backplane::grpc::HandshakeRequest* /*request*/, ::io::deephaven::proto::backplane::grpc::HandshakeResponse* /*response*/) override { - abort(); - return ::grpc::Status(::grpc::StatusCode::UNIMPLEMENTED, ""); - } - virtual ::grpc::ServerUnaryReactor* NewSession( - ::grpc::CallbackServerContext* /*context*/, const ::io::deephaven::proto::backplane::grpc::HandshakeRequest* /*request*/, ::io::deephaven::proto::backplane::grpc::HandshakeResponse* /*response*/) { return nullptr; } - }; - template - class WithCallbackMethod_RefreshSessionToken : public BaseClass { - private: - void BaseClassMustBeDerivedFromService(const Service* /*service*/) {} - public: - WithCallbackMethod_RefreshSessionToken() { - ::grpc::Service::MarkMethodCallback(1, - new ::grpc::internal::CallbackUnaryHandler< ::io::deephaven::proto::backplane::grpc::HandshakeRequest, ::io::deephaven::proto::backplane::grpc::HandshakeResponse>( - [this]( - ::grpc::CallbackServerContext* context, const ::io::deephaven::proto::backplane::grpc::HandshakeRequest* request, ::io::deephaven::proto::backplane::grpc::HandshakeResponse* response) { return this->RefreshSessionToken(context, request, response); }));} - void SetMessageAllocatorFor_RefreshSessionToken( - ::grpc::MessageAllocator< ::io::deephaven::proto::backplane::grpc::HandshakeRequest, ::io::deephaven::proto::backplane::grpc::HandshakeResponse>* allocator) { - ::grpc::internal::MethodHandler* const handler = ::grpc::Service::GetHandler(1); - static_cast<::grpc::internal::CallbackUnaryHandler< ::io::deephaven::proto::backplane::grpc::HandshakeRequest, ::io::deephaven::proto::backplane::grpc::HandshakeResponse>*>(handler) - ->SetMessageAllocator(allocator); - } - ~WithCallbackMethod_RefreshSessionToken() override { - BaseClassMustBeDerivedFromService(this); - } - // disable synchronous version of this method - ::grpc::Status RefreshSessionToken(::grpc::ServerContext* /*context*/, const ::io::deephaven::proto::backplane::grpc::HandshakeRequest* /*request*/, ::io::deephaven::proto::backplane::grpc::HandshakeResponse* /*response*/) override { - abort(); - return ::grpc::Status(::grpc::StatusCode::UNIMPLEMENTED, ""); - } - virtual ::grpc::ServerUnaryReactor* RefreshSessionToken( - ::grpc::CallbackServerContext* /*context*/, const ::io::deephaven::proto::backplane::grpc::HandshakeRequest* /*request*/, ::io::deephaven::proto::backplane::grpc::HandshakeResponse* /*response*/) { return nullptr; } - }; - template - class WithCallbackMethod_CloseSession : public BaseClass { - private: - void BaseClassMustBeDerivedFromService(const Service* /*service*/) {} - public: - WithCallbackMethod_CloseSession() { - ::grpc::Service::MarkMethodCallback(2, - new ::grpc::internal::CallbackUnaryHandler< ::io::deephaven::proto::backplane::grpc::HandshakeRequest, ::io::deephaven::proto::backplane::grpc::CloseSessionResponse>( - [this]( - ::grpc::CallbackServerContext* context, const ::io::deephaven::proto::backplane::grpc::HandshakeRequest* request, ::io::deephaven::proto::backplane::grpc::CloseSessionResponse* response) { return this->CloseSession(context, request, response); }));} - void SetMessageAllocatorFor_CloseSession( - ::grpc::MessageAllocator< ::io::deephaven::proto::backplane::grpc::HandshakeRequest, ::io::deephaven::proto::backplane::grpc::CloseSessionResponse>* allocator) { - ::grpc::internal::MethodHandler* const handler = ::grpc::Service::GetHandler(2); - static_cast<::grpc::internal::CallbackUnaryHandler< ::io::deephaven::proto::backplane::grpc::HandshakeRequest, ::io::deephaven::proto::backplane::grpc::CloseSessionResponse>*>(handler) - ->SetMessageAllocator(allocator); - } - ~WithCallbackMethod_CloseSession() override { - BaseClassMustBeDerivedFromService(this); - } - // disable synchronous version of this method - ::grpc::Status CloseSession(::grpc::ServerContext* /*context*/, const ::io::deephaven::proto::backplane::grpc::HandshakeRequest* /*request*/, ::io::deephaven::proto::backplane::grpc::CloseSessionResponse* /*response*/) override { - abort(); - return ::grpc::Status(::grpc::StatusCode::UNIMPLEMENTED, ""); - } - virtual ::grpc::ServerUnaryReactor* CloseSession( - ::grpc::CallbackServerContext* /*context*/, const ::io::deephaven::proto::backplane::grpc::HandshakeRequest* /*request*/, ::io::deephaven::proto::backplane::grpc::CloseSessionResponse* /*response*/) { return nullptr; } - }; - template - class WithCallbackMethod_Release : public BaseClass { - private: - void BaseClassMustBeDerivedFromService(const Service* /*service*/) {} - public: - WithCallbackMethod_Release() { - ::grpc::Service::MarkMethodCallback(3, - new ::grpc::internal::CallbackUnaryHandler< ::io::deephaven::proto::backplane::grpc::ReleaseRequest, ::io::deephaven::proto::backplane::grpc::ReleaseResponse>( - [this]( - ::grpc::CallbackServerContext* context, const ::io::deephaven::proto::backplane::grpc::ReleaseRequest* request, ::io::deephaven::proto::backplane::grpc::ReleaseResponse* response) { return this->Release(context, request, response); }));} - void SetMessageAllocatorFor_Release( - ::grpc::MessageAllocator< ::io::deephaven::proto::backplane::grpc::ReleaseRequest, ::io::deephaven::proto::backplane::grpc::ReleaseResponse>* allocator) { - ::grpc::internal::MethodHandler* const handler = ::grpc::Service::GetHandler(3); - static_cast<::grpc::internal::CallbackUnaryHandler< ::io::deephaven::proto::backplane::grpc::ReleaseRequest, ::io::deephaven::proto::backplane::grpc::ReleaseResponse>*>(handler) - ->SetMessageAllocator(allocator); - } - ~WithCallbackMethod_Release() override { - BaseClassMustBeDerivedFromService(this); - } - // disable synchronous version of this method - ::grpc::Status Release(::grpc::ServerContext* /*context*/, const ::io::deephaven::proto::backplane::grpc::ReleaseRequest* /*request*/, ::io::deephaven::proto::backplane::grpc::ReleaseResponse* /*response*/) override { - abort(); - return ::grpc::Status(::grpc::StatusCode::UNIMPLEMENTED, ""); - } - virtual ::grpc::ServerUnaryReactor* Release( - ::grpc::CallbackServerContext* /*context*/, const ::io::deephaven::proto::backplane::grpc::ReleaseRequest* /*request*/, ::io::deephaven::proto::backplane::grpc::ReleaseResponse* /*response*/) { return nullptr; } - }; - template - class WithCallbackMethod_ExportFromTicket : public BaseClass { - private: - void BaseClassMustBeDerivedFromService(const Service* /*service*/) {} - public: - WithCallbackMethod_ExportFromTicket() { - ::grpc::Service::MarkMethodCallback(4, - new ::grpc::internal::CallbackUnaryHandler< ::io::deephaven::proto::backplane::grpc::ExportRequest, ::io::deephaven::proto::backplane::grpc::ExportResponse>( - [this]( - ::grpc::CallbackServerContext* context, const ::io::deephaven::proto::backplane::grpc::ExportRequest* request, ::io::deephaven::proto::backplane::grpc::ExportResponse* response) { return this->ExportFromTicket(context, request, response); }));} - void SetMessageAllocatorFor_ExportFromTicket( - ::grpc::MessageAllocator< ::io::deephaven::proto::backplane::grpc::ExportRequest, ::io::deephaven::proto::backplane::grpc::ExportResponse>* allocator) { - ::grpc::internal::MethodHandler* const handler = ::grpc::Service::GetHandler(4); - static_cast<::grpc::internal::CallbackUnaryHandler< ::io::deephaven::proto::backplane::grpc::ExportRequest, ::io::deephaven::proto::backplane::grpc::ExportResponse>*>(handler) - ->SetMessageAllocator(allocator); - } - ~WithCallbackMethod_ExportFromTicket() override { - BaseClassMustBeDerivedFromService(this); - } - // disable synchronous version of this method - ::grpc::Status ExportFromTicket(::grpc::ServerContext* /*context*/, const ::io::deephaven::proto::backplane::grpc::ExportRequest* /*request*/, ::io::deephaven::proto::backplane::grpc::ExportResponse* /*response*/) override { - abort(); - return ::grpc::Status(::grpc::StatusCode::UNIMPLEMENTED, ""); - } - virtual ::grpc::ServerUnaryReactor* ExportFromTicket( - ::grpc::CallbackServerContext* /*context*/, const ::io::deephaven::proto::backplane::grpc::ExportRequest* /*request*/, ::io::deephaven::proto::backplane::grpc::ExportResponse* /*response*/) { return nullptr; } - }; - template - class WithCallbackMethod_PublishFromTicket : public BaseClass { - private: - void BaseClassMustBeDerivedFromService(const Service* /*service*/) {} - public: - WithCallbackMethod_PublishFromTicket() { - ::grpc::Service::MarkMethodCallback(5, - new ::grpc::internal::CallbackUnaryHandler< ::io::deephaven::proto::backplane::grpc::PublishRequest, ::io::deephaven::proto::backplane::grpc::PublishResponse>( - [this]( - ::grpc::CallbackServerContext* context, const ::io::deephaven::proto::backplane::grpc::PublishRequest* request, ::io::deephaven::proto::backplane::grpc::PublishResponse* response) { return this->PublishFromTicket(context, request, response); }));} - void SetMessageAllocatorFor_PublishFromTicket( - ::grpc::MessageAllocator< ::io::deephaven::proto::backplane::grpc::PublishRequest, ::io::deephaven::proto::backplane::grpc::PublishResponse>* allocator) { - ::grpc::internal::MethodHandler* const handler = ::grpc::Service::GetHandler(5); - static_cast<::grpc::internal::CallbackUnaryHandler< ::io::deephaven::proto::backplane::grpc::PublishRequest, ::io::deephaven::proto::backplane::grpc::PublishResponse>*>(handler) - ->SetMessageAllocator(allocator); - } - ~WithCallbackMethod_PublishFromTicket() override { - BaseClassMustBeDerivedFromService(this); - } - // disable synchronous version of this method - ::grpc::Status PublishFromTicket(::grpc::ServerContext* /*context*/, const ::io::deephaven::proto::backplane::grpc::PublishRequest* /*request*/, ::io::deephaven::proto::backplane::grpc::PublishResponse* /*response*/) override { - abort(); - return ::grpc::Status(::grpc::StatusCode::UNIMPLEMENTED, ""); - } - virtual ::grpc::ServerUnaryReactor* PublishFromTicket( - ::grpc::CallbackServerContext* /*context*/, const ::io::deephaven::proto::backplane::grpc::PublishRequest* /*request*/, ::io::deephaven::proto::backplane::grpc::PublishResponse* /*response*/) { return nullptr; } - }; - template - class WithCallbackMethod_ExportNotifications : public BaseClass { - private: - void BaseClassMustBeDerivedFromService(const Service* /*service*/) {} - public: - WithCallbackMethod_ExportNotifications() { - ::grpc::Service::MarkMethodCallback(6, - new ::grpc::internal::CallbackServerStreamingHandler< ::io::deephaven::proto::backplane::grpc::ExportNotificationRequest, ::io::deephaven::proto::backplane::grpc::ExportNotification>( - [this]( - ::grpc::CallbackServerContext* context, const ::io::deephaven::proto::backplane::grpc::ExportNotificationRequest* request) { return this->ExportNotifications(context, request); })); - } - ~WithCallbackMethod_ExportNotifications() override { - BaseClassMustBeDerivedFromService(this); - } - // disable synchronous version of this method - ::grpc::Status ExportNotifications(::grpc::ServerContext* /*context*/, const ::io::deephaven::proto::backplane::grpc::ExportNotificationRequest* /*request*/, ::grpc::ServerWriter< ::io::deephaven::proto::backplane::grpc::ExportNotification>* /*writer*/) override { - abort(); - return ::grpc::Status(::grpc::StatusCode::UNIMPLEMENTED, ""); - } - virtual ::grpc::ServerWriteReactor< ::io::deephaven::proto::backplane::grpc::ExportNotification>* ExportNotifications( - ::grpc::CallbackServerContext* /*context*/, const ::io::deephaven::proto::backplane::grpc::ExportNotificationRequest* /*request*/) { return nullptr; } - }; - template - class WithCallbackMethod_TerminationNotification : public BaseClass { - private: - void BaseClassMustBeDerivedFromService(const Service* /*service*/) {} - public: - WithCallbackMethod_TerminationNotification() { - ::grpc::Service::MarkMethodCallback(7, - new ::grpc::internal::CallbackUnaryHandler< ::io::deephaven::proto::backplane::grpc::TerminationNotificationRequest, ::io::deephaven::proto::backplane::grpc::TerminationNotificationResponse>( - [this]( - ::grpc::CallbackServerContext* context, const ::io::deephaven::proto::backplane::grpc::TerminationNotificationRequest* request, ::io::deephaven::proto::backplane::grpc::TerminationNotificationResponse* response) { return this->TerminationNotification(context, request, response); }));} - void SetMessageAllocatorFor_TerminationNotification( - ::grpc::MessageAllocator< ::io::deephaven::proto::backplane::grpc::TerminationNotificationRequest, ::io::deephaven::proto::backplane::grpc::TerminationNotificationResponse>* allocator) { - ::grpc::internal::MethodHandler* const handler = ::grpc::Service::GetHandler(7); - static_cast<::grpc::internal::CallbackUnaryHandler< ::io::deephaven::proto::backplane::grpc::TerminationNotificationRequest, ::io::deephaven::proto::backplane::grpc::TerminationNotificationResponse>*>(handler) - ->SetMessageAllocator(allocator); - } - ~WithCallbackMethod_TerminationNotification() override { - BaseClassMustBeDerivedFromService(this); - } - // disable synchronous version of this method - ::grpc::Status TerminationNotification(::grpc::ServerContext* /*context*/, const ::io::deephaven::proto::backplane::grpc::TerminationNotificationRequest* /*request*/, ::io::deephaven::proto::backplane::grpc::TerminationNotificationResponse* /*response*/) override { - abort(); - return ::grpc::Status(::grpc::StatusCode::UNIMPLEMENTED, ""); - } - virtual ::grpc::ServerUnaryReactor* TerminationNotification( - ::grpc::CallbackServerContext* /*context*/, const ::io::deephaven::proto::backplane::grpc::TerminationNotificationRequest* /*request*/, ::io::deephaven::proto::backplane::grpc::TerminationNotificationResponse* /*response*/) { return nullptr; } - }; - typedef WithCallbackMethod_NewSession > > > > > > > CallbackService; - typedef CallbackService ExperimentalCallbackService; - template - class WithGenericMethod_NewSession : public BaseClass { - private: - void BaseClassMustBeDerivedFromService(const Service* /*service*/) {} - public: - WithGenericMethod_NewSession() { - ::grpc::Service::MarkMethodGeneric(0); - } - ~WithGenericMethod_NewSession() override { - BaseClassMustBeDerivedFromService(this); - } - // disable synchronous version of this method - ::grpc::Status NewSession(::grpc::ServerContext* /*context*/, const ::io::deephaven::proto::backplane::grpc::HandshakeRequest* /*request*/, ::io::deephaven::proto::backplane::grpc::HandshakeResponse* /*response*/) override { - abort(); - return ::grpc::Status(::grpc::StatusCode::UNIMPLEMENTED, ""); - } - }; - template - class WithGenericMethod_RefreshSessionToken : public BaseClass { - private: - void BaseClassMustBeDerivedFromService(const Service* /*service*/) {} - public: - WithGenericMethod_RefreshSessionToken() { - ::grpc::Service::MarkMethodGeneric(1); - } - ~WithGenericMethod_RefreshSessionToken() override { - BaseClassMustBeDerivedFromService(this); - } - // disable synchronous version of this method - ::grpc::Status RefreshSessionToken(::grpc::ServerContext* /*context*/, const ::io::deephaven::proto::backplane::grpc::HandshakeRequest* /*request*/, ::io::deephaven::proto::backplane::grpc::HandshakeResponse* /*response*/) override { - abort(); - return ::grpc::Status(::grpc::StatusCode::UNIMPLEMENTED, ""); - } - }; - template - class WithGenericMethod_CloseSession : public BaseClass { - private: - void BaseClassMustBeDerivedFromService(const Service* /*service*/) {} - public: - WithGenericMethod_CloseSession() { - ::grpc::Service::MarkMethodGeneric(2); - } - ~WithGenericMethod_CloseSession() override { - BaseClassMustBeDerivedFromService(this); - } - // disable synchronous version of this method - ::grpc::Status CloseSession(::grpc::ServerContext* /*context*/, const ::io::deephaven::proto::backplane::grpc::HandshakeRequest* /*request*/, ::io::deephaven::proto::backplane::grpc::CloseSessionResponse* /*response*/) override { - abort(); - return ::grpc::Status(::grpc::StatusCode::UNIMPLEMENTED, ""); - } - }; - template - class WithGenericMethod_Release : public BaseClass { - private: - void BaseClassMustBeDerivedFromService(const Service* /*service*/) {} - public: - WithGenericMethod_Release() { - ::grpc::Service::MarkMethodGeneric(3); - } - ~WithGenericMethod_Release() override { - BaseClassMustBeDerivedFromService(this); - } - // disable synchronous version of this method - ::grpc::Status Release(::grpc::ServerContext* /*context*/, const ::io::deephaven::proto::backplane::grpc::ReleaseRequest* /*request*/, ::io::deephaven::proto::backplane::grpc::ReleaseResponse* /*response*/) override { - abort(); - return ::grpc::Status(::grpc::StatusCode::UNIMPLEMENTED, ""); - } - }; - template - class WithGenericMethod_ExportFromTicket : public BaseClass { - private: - void BaseClassMustBeDerivedFromService(const Service* /*service*/) {} - public: - WithGenericMethod_ExportFromTicket() { - ::grpc::Service::MarkMethodGeneric(4); - } - ~WithGenericMethod_ExportFromTicket() override { - BaseClassMustBeDerivedFromService(this); - } - // disable synchronous version of this method - ::grpc::Status ExportFromTicket(::grpc::ServerContext* /*context*/, const ::io::deephaven::proto::backplane::grpc::ExportRequest* /*request*/, ::io::deephaven::proto::backplane::grpc::ExportResponse* /*response*/) override { - abort(); - return ::grpc::Status(::grpc::StatusCode::UNIMPLEMENTED, ""); - } - }; - template - class WithGenericMethod_PublishFromTicket : public BaseClass { - private: - void BaseClassMustBeDerivedFromService(const Service* /*service*/) {} - public: - WithGenericMethod_PublishFromTicket() { - ::grpc::Service::MarkMethodGeneric(5); - } - ~WithGenericMethod_PublishFromTicket() override { - BaseClassMustBeDerivedFromService(this); - } - // disable synchronous version of this method - ::grpc::Status PublishFromTicket(::grpc::ServerContext* /*context*/, const ::io::deephaven::proto::backplane::grpc::PublishRequest* /*request*/, ::io::deephaven::proto::backplane::grpc::PublishResponse* /*response*/) override { - abort(); - return ::grpc::Status(::grpc::StatusCode::UNIMPLEMENTED, ""); - } - }; - template - class WithGenericMethod_ExportNotifications : public BaseClass { - private: - void BaseClassMustBeDerivedFromService(const Service* /*service*/) {} - public: - WithGenericMethod_ExportNotifications() { - ::grpc::Service::MarkMethodGeneric(6); - } - ~WithGenericMethod_ExportNotifications() override { - BaseClassMustBeDerivedFromService(this); - } - // disable synchronous version of this method - ::grpc::Status ExportNotifications(::grpc::ServerContext* /*context*/, const ::io::deephaven::proto::backplane::grpc::ExportNotificationRequest* /*request*/, ::grpc::ServerWriter< ::io::deephaven::proto::backplane::grpc::ExportNotification>* /*writer*/) override { - abort(); - return ::grpc::Status(::grpc::StatusCode::UNIMPLEMENTED, ""); - } - }; - template - class WithGenericMethod_TerminationNotification : public BaseClass { - private: - void BaseClassMustBeDerivedFromService(const Service* /*service*/) {} - public: - WithGenericMethod_TerminationNotification() { - ::grpc::Service::MarkMethodGeneric(7); - } - ~WithGenericMethod_TerminationNotification() override { - BaseClassMustBeDerivedFromService(this); - } - // disable synchronous version of this method - ::grpc::Status TerminationNotification(::grpc::ServerContext* /*context*/, const ::io::deephaven::proto::backplane::grpc::TerminationNotificationRequest* /*request*/, ::io::deephaven::proto::backplane::grpc::TerminationNotificationResponse* /*response*/) override { - abort(); - return ::grpc::Status(::grpc::StatusCode::UNIMPLEMENTED, ""); - } - }; - template - class WithRawMethod_NewSession : public BaseClass { - private: - void BaseClassMustBeDerivedFromService(const Service* /*service*/) {} - public: - WithRawMethod_NewSession() { - ::grpc::Service::MarkMethodRaw(0); - } - ~WithRawMethod_NewSession() override { - BaseClassMustBeDerivedFromService(this); - } - // disable synchronous version of this method - ::grpc::Status NewSession(::grpc::ServerContext* /*context*/, const ::io::deephaven::proto::backplane::grpc::HandshakeRequest* /*request*/, ::io::deephaven::proto::backplane::grpc::HandshakeResponse* /*response*/) override { - abort(); - return ::grpc::Status(::grpc::StatusCode::UNIMPLEMENTED, ""); - } - void RequestNewSession(::grpc::ServerContext* context, ::grpc::ByteBuffer* request, ::grpc::ServerAsyncResponseWriter< ::grpc::ByteBuffer>* response, ::grpc::CompletionQueue* new_call_cq, ::grpc::ServerCompletionQueue* notification_cq, void *tag) { - ::grpc::Service::RequestAsyncUnary(0, context, request, response, new_call_cq, notification_cq, tag); - } - }; - template - class WithRawMethod_RefreshSessionToken : public BaseClass { - private: - void BaseClassMustBeDerivedFromService(const Service* /*service*/) {} - public: - WithRawMethod_RefreshSessionToken() { - ::grpc::Service::MarkMethodRaw(1); - } - ~WithRawMethod_RefreshSessionToken() override { - BaseClassMustBeDerivedFromService(this); - } - // disable synchronous version of this method - ::grpc::Status RefreshSessionToken(::grpc::ServerContext* /*context*/, const ::io::deephaven::proto::backplane::grpc::HandshakeRequest* /*request*/, ::io::deephaven::proto::backplane::grpc::HandshakeResponse* /*response*/) override { - abort(); - return ::grpc::Status(::grpc::StatusCode::UNIMPLEMENTED, ""); - } - void RequestRefreshSessionToken(::grpc::ServerContext* context, ::grpc::ByteBuffer* request, ::grpc::ServerAsyncResponseWriter< ::grpc::ByteBuffer>* response, ::grpc::CompletionQueue* new_call_cq, ::grpc::ServerCompletionQueue* notification_cq, void *tag) { - ::grpc::Service::RequestAsyncUnary(1, context, request, response, new_call_cq, notification_cq, tag); - } - }; - template - class WithRawMethod_CloseSession : public BaseClass { - private: - void BaseClassMustBeDerivedFromService(const Service* /*service*/) {} - public: - WithRawMethod_CloseSession() { - ::grpc::Service::MarkMethodRaw(2); - } - ~WithRawMethod_CloseSession() override { - BaseClassMustBeDerivedFromService(this); - } - // disable synchronous version of this method - ::grpc::Status CloseSession(::grpc::ServerContext* /*context*/, const ::io::deephaven::proto::backplane::grpc::HandshakeRequest* /*request*/, ::io::deephaven::proto::backplane::grpc::CloseSessionResponse* /*response*/) override { - abort(); - return ::grpc::Status(::grpc::StatusCode::UNIMPLEMENTED, ""); - } - void RequestCloseSession(::grpc::ServerContext* context, ::grpc::ByteBuffer* request, ::grpc::ServerAsyncResponseWriter< ::grpc::ByteBuffer>* response, ::grpc::CompletionQueue* new_call_cq, ::grpc::ServerCompletionQueue* notification_cq, void *tag) { - ::grpc::Service::RequestAsyncUnary(2, context, request, response, new_call_cq, notification_cq, tag); - } - }; - template - class WithRawMethod_Release : public BaseClass { - private: - void BaseClassMustBeDerivedFromService(const Service* /*service*/) {} - public: - WithRawMethod_Release() { - ::grpc::Service::MarkMethodRaw(3); - } - ~WithRawMethod_Release() override { - BaseClassMustBeDerivedFromService(this); - } - // disable synchronous version of this method - ::grpc::Status Release(::grpc::ServerContext* /*context*/, const ::io::deephaven::proto::backplane::grpc::ReleaseRequest* /*request*/, ::io::deephaven::proto::backplane::grpc::ReleaseResponse* /*response*/) override { - abort(); - return ::grpc::Status(::grpc::StatusCode::UNIMPLEMENTED, ""); - } - void RequestRelease(::grpc::ServerContext* context, ::grpc::ByteBuffer* request, ::grpc::ServerAsyncResponseWriter< ::grpc::ByteBuffer>* response, ::grpc::CompletionQueue* new_call_cq, ::grpc::ServerCompletionQueue* notification_cq, void *tag) { - ::grpc::Service::RequestAsyncUnary(3, context, request, response, new_call_cq, notification_cq, tag); - } - }; - template - class WithRawMethod_ExportFromTicket : public BaseClass { - private: - void BaseClassMustBeDerivedFromService(const Service* /*service*/) {} - public: - WithRawMethod_ExportFromTicket() { - ::grpc::Service::MarkMethodRaw(4); - } - ~WithRawMethod_ExportFromTicket() override { - BaseClassMustBeDerivedFromService(this); - } - // disable synchronous version of this method - ::grpc::Status ExportFromTicket(::grpc::ServerContext* /*context*/, const ::io::deephaven::proto::backplane::grpc::ExportRequest* /*request*/, ::io::deephaven::proto::backplane::grpc::ExportResponse* /*response*/) override { - abort(); - return ::grpc::Status(::grpc::StatusCode::UNIMPLEMENTED, ""); - } - void RequestExportFromTicket(::grpc::ServerContext* context, ::grpc::ByteBuffer* request, ::grpc::ServerAsyncResponseWriter< ::grpc::ByteBuffer>* response, ::grpc::CompletionQueue* new_call_cq, ::grpc::ServerCompletionQueue* notification_cq, void *tag) { - ::grpc::Service::RequestAsyncUnary(4, context, request, response, new_call_cq, notification_cq, tag); - } - }; - template - class WithRawMethod_PublishFromTicket : public BaseClass { - private: - void BaseClassMustBeDerivedFromService(const Service* /*service*/) {} - public: - WithRawMethod_PublishFromTicket() { - ::grpc::Service::MarkMethodRaw(5); - } - ~WithRawMethod_PublishFromTicket() override { - BaseClassMustBeDerivedFromService(this); - } - // disable synchronous version of this method - ::grpc::Status PublishFromTicket(::grpc::ServerContext* /*context*/, const ::io::deephaven::proto::backplane::grpc::PublishRequest* /*request*/, ::io::deephaven::proto::backplane::grpc::PublishResponse* /*response*/) override { - abort(); - return ::grpc::Status(::grpc::StatusCode::UNIMPLEMENTED, ""); - } - void RequestPublishFromTicket(::grpc::ServerContext* context, ::grpc::ByteBuffer* request, ::grpc::ServerAsyncResponseWriter< ::grpc::ByteBuffer>* response, ::grpc::CompletionQueue* new_call_cq, ::grpc::ServerCompletionQueue* notification_cq, void *tag) { - ::grpc::Service::RequestAsyncUnary(5, context, request, response, new_call_cq, notification_cq, tag); - } - }; - template - class WithRawMethod_ExportNotifications : public BaseClass { - private: - void BaseClassMustBeDerivedFromService(const Service* /*service*/) {} - public: - WithRawMethod_ExportNotifications() { - ::grpc::Service::MarkMethodRaw(6); - } - ~WithRawMethod_ExportNotifications() override { - BaseClassMustBeDerivedFromService(this); - } - // disable synchronous version of this method - ::grpc::Status ExportNotifications(::grpc::ServerContext* /*context*/, const ::io::deephaven::proto::backplane::grpc::ExportNotificationRequest* /*request*/, ::grpc::ServerWriter< ::io::deephaven::proto::backplane::grpc::ExportNotification>* /*writer*/) override { - abort(); - return ::grpc::Status(::grpc::StatusCode::UNIMPLEMENTED, ""); - } - void RequestExportNotifications(::grpc::ServerContext* context, ::grpc::ByteBuffer* request, ::grpc::ServerAsyncWriter< ::grpc::ByteBuffer>* writer, ::grpc::CompletionQueue* new_call_cq, ::grpc::ServerCompletionQueue* notification_cq, void *tag) { - ::grpc::Service::RequestAsyncServerStreaming(6, context, request, writer, new_call_cq, notification_cq, tag); - } - }; - template - class WithRawMethod_TerminationNotification : public BaseClass { - private: - void BaseClassMustBeDerivedFromService(const Service* /*service*/) {} - public: - WithRawMethod_TerminationNotification() { - ::grpc::Service::MarkMethodRaw(7); - } - ~WithRawMethod_TerminationNotification() override { - BaseClassMustBeDerivedFromService(this); - } - // disable synchronous version of this method - ::grpc::Status TerminationNotification(::grpc::ServerContext* /*context*/, const ::io::deephaven::proto::backplane::grpc::TerminationNotificationRequest* /*request*/, ::io::deephaven::proto::backplane::grpc::TerminationNotificationResponse* /*response*/) override { - abort(); - return ::grpc::Status(::grpc::StatusCode::UNIMPLEMENTED, ""); - } - void RequestTerminationNotification(::grpc::ServerContext* context, ::grpc::ByteBuffer* request, ::grpc::ServerAsyncResponseWriter< ::grpc::ByteBuffer>* response, ::grpc::CompletionQueue* new_call_cq, ::grpc::ServerCompletionQueue* notification_cq, void *tag) { - ::grpc::Service::RequestAsyncUnary(7, context, request, response, new_call_cq, notification_cq, tag); - } - }; - template - class WithRawCallbackMethod_NewSession : public BaseClass { - private: - void BaseClassMustBeDerivedFromService(const Service* /*service*/) {} - public: - WithRawCallbackMethod_NewSession() { - ::grpc::Service::MarkMethodRawCallback(0, - new ::grpc::internal::CallbackUnaryHandler< ::grpc::ByteBuffer, ::grpc::ByteBuffer>( - [this]( - ::grpc::CallbackServerContext* context, const ::grpc::ByteBuffer* request, ::grpc::ByteBuffer* response) { return this->NewSession(context, request, response); })); - } - ~WithRawCallbackMethod_NewSession() override { - BaseClassMustBeDerivedFromService(this); - } - // disable synchronous version of this method - ::grpc::Status NewSession(::grpc::ServerContext* /*context*/, const ::io::deephaven::proto::backplane::grpc::HandshakeRequest* /*request*/, ::io::deephaven::proto::backplane::grpc::HandshakeResponse* /*response*/) override { - abort(); - return ::grpc::Status(::grpc::StatusCode::UNIMPLEMENTED, ""); - } - virtual ::grpc::ServerUnaryReactor* NewSession( - ::grpc::CallbackServerContext* /*context*/, const ::grpc::ByteBuffer* /*request*/, ::grpc::ByteBuffer* /*response*/) { return nullptr; } - }; - template - class WithRawCallbackMethod_RefreshSessionToken : public BaseClass { - private: - void BaseClassMustBeDerivedFromService(const Service* /*service*/) {} - public: - WithRawCallbackMethod_RefreshSessionToken() { - ::grpc::Service::MarkMethodRawCallback(1, - new ::grpc::internal::CallbackUnaryHandler< ::grpc::ByteBuffer, ::grpc::ByteBuffer>( - [this]( - ::grpc::CallbackServerContext* context, const ::grpc::ByteBuffer* request, ::grpc::ByteBuffer* response) { return this->RefreshSessionToken(context, request, response); })); - } - ~WithRawCallbackMethod_RefreshSessionToken() override { - BaseClassMustBeDerivedFromService(this); - } - // disable synchronous version of this method - ::grpc::Status RefreshSessionToken(::grpc::ServerContext* /*context*/, const ::io::deephaven::proto::backplane::grpc::HandshakeRequest* /*request*/, ::io::deephaven::proto::backplane::grpc::HandshakeResponse* /*response*/) override { - abort(); - return ::grpc::Status(::grpc::StatusCode::UNIMPLEMENTED, ""); - } - virtual ::grpc::ServerUnaryReactor* RefreshSessionToken( - ::grpc::CallbackServerContext* /*context*/, const ::grpc::ByteBuffer* /*request*/, ::grpc::ByteBuffer* /*response*/) { return nullptr; } - }; - template - class WithRawCallbackMethod_CloseSession : public BaseClass { - private: - void BaseClassMustBeDerivedFromService(const Service* /*service*/) {} - public: - WithRawCallbackMethod_CloseSession() { - ::grpc::Service::MarkMethodRawCallback(2, - new ::grpc::internal::CallbackUnaryHandler< ::grpc::ByteBuffer, ::grpc::ByteBuffer>( - [this]( - ::grpc::CallbackServerContext* context, const ::grpc::ByteBuffer* request, ::grpc::ByteBuffer* response) { return this->CloseSession(context, request, response); })); - } - ~WithRawCallbackMethod_CloseSession() override { - BaseClassMustBeDerivedFromService(this); - } - // disable synchronous version of this method - ::grpc::Status CloseSession(::grpc::ServerContext* /*context*/, const ::io::deephaven::proto::backplane::grpc::HandshakeRequest* /*request*/, ::io::deephaven::proto::backplane::grpc::CloseSessionResponse* /*response*/) override { - abort(); - return ::grpc::Status(::grpc::StatusCode::UNIMPLEMENTED, ""); - } - virtual ::grpc::ServerUnaryReactor* CloseSession( - ::grpc::CallbackServerContext* /*context*/, const ::grpc::ByteBuffer* /*request*/, ::grpc::ByteBuffer* /*response*/) { return nullptr; } - }; - template - class WithRawCallbackMethod_Release : public BaseClass { - private: - void BaseClassMustBeDerivedFromService(const Service* /*service*/) {} - public: - WithRawCallbackMethod_Release() { - ::grpc::Service::MarkMethodRawCallback(3, - new ::grpc::internal::CallbackUnaryHandler< ::grpc::ByteBuffer, ::grpc::ByteBuffer>( - [this]( - ::grpc::CallbackServerContext* context, const ::grpc::ByteBuffer* request, ::grpc::ByteBuffer* response) { return this->Release(context, request, response); })); - } - ~WithRawCallbackMethod_Release() override { - BaseClassMustBeDerivedFromService(this); - } - // disable synchronous version of this method - ::grpc::Status Release(::grpc::ServerContext* /*context*/, const ::io::deephaven::proto::backplane::grpc::ReleaseRequest* /*request*/, ::io::deephaven::proto::backplane::grpc::ReleaseResponse* /*response*/) override { - abort(); - return ::grpc::Status(::grpc::StatusCode::UNIMPLEMENTED, ""); - } - virtual ::grpc::ServerUnaryReactor* Release( - ::grpc::CallbackServerContext* /*context*/, const ::grpc::ByteBuffer* /*request*/, ::grpc::ByteBuffer* /*response*/) { return nullptr; } - }; - template - class WithRawCallbackMethod_ExportFromTicket : public BaseClass { - private: - void BaseClassMustBeDerivedFromService(const Service* /*service*/) {} - public: - WithRawCallbackMethod_ExportFromTicket() { - ::grpc::Service::MarkMethodRawCallback(4, - new ::grpc::internal::CallbackUnaryHandler< ::grpc::ByteBuffer, ::grpc::ByteBuffer>( - [this]( - ::grpc::CallbackServerContext* context, const ::grpc::ByteBuffer* request, ::grpc::ByteBuffer* response) { return this->ExportFromTicket(context, request, response); })); - } - ~WithRawCallbackMethod_ExportFromTicket() override { - BaseClassMustBeDerivedFromService(this); - } - // disable synchronous version of this method - ::grpc::Status ExportFromTicket(::grpc::ServerContext* /*context*/, const ::io::deephaven::proto::backplane::grpc::ExportRequest* /*request*/, ::io::deephaven::proto::backplane::grpc::ExportResponse* /*response*/) override { - abort(); - return ::grpc::Status(::grpc::StatusCode::UNIMPLEMENTED, ""); - } - virtual ::grpc::ServerUnaryReactor* ExportFromTicket( - ::grpc::CallbackServerContext* /*context*/, const ::grpc::ByteBuffer* /*request*/, ::grpc::ByteBuffer* /*response*/) { return nullptr; } - }; - template - class WithRawCallbackMethod_PublishFromTicket : public BaseClass { - private: - void BaseClassMustBeDerivedFromService(const Service* /*service*/) {} - public: - WithRawCallbackMethod_PublishFromTicket() { - ::grpc::Service::MarkMethodRawCallback(5, - new ::grpc::internal::CallbackUnaryHandler< ::grpc::ByteBuffer, ::grpc::ByteBuffer>( - [this]( - ::grpc::CallbackServerContext* context, const ::grpc::ByteBuffer* request, ::grpc::ByteBuffer* response) { return this->PublishFromTicket(context, request, response); })); - } - ~WithRawCallbackMethod_PublishFromTicket() override { - BaseClassMustBeDerivedFromService(this); - } - // disable synchronous version of this method - ::grpc::Status PublishFromTicket(::grpc::ServerContext* /*context*/, const ::io::deephaven::proto::backplane::grpc::PublishRequest* /*request*/, ::io::deephaven::proto::backplane::grpc::PublishResponse* /*response*/) override { - abort(); - return ::grpc::Status(::grpc::StatusCode::UNIMPLEMENTED, ""); - } - virtual ::grpc::ServerUnaryReactor* PublishFromTicket( - ::grpc::CallbackServerContext* /*context*/, const ::grpc::ByteBuffer* /*request*/, ::grpc::ByteBuffer* /*response*/) { return nullptr; } - }; - template - class WithRawCallbackMethod_ExportNotifications : public BaseClass { - private: - void BaseClassMustBeDerivedFromService(const Service* /*service*/) {} - public: - WithRawCallbackMethod_ExportNotifications() { - ::grpc::Service::MarkMethodRawCallback(6, - new ::grpc::internal::CallbackServerStreamingHandler< ::grpc::ByteBuffer, ::grpc::ByteBuffer>( - [this]( - ::grpc::CallbackServerContext* context, const::grpc::ByteBuffer* request) { return this->ExportNotifications(context, request); })); - } - ~WithRawCallbackMethod_ExportNotifications() override { - BaseClassMustBeDerivedFromService(this); - } - // disable synchronous version of this method - ::grpc::Status ExportNotifications(::grpc::ServerContext* /*context*/, const ::io::deephaven::proto::backplane::grpc::ExportNotificationRequest* /*request*/, ::grpc::ServerWriter< ::io::deephaven::proto::backplane::grpc::ExportNotification>* /*writer*/) override { - abort(); - return ::grpc::Status(::grpc::StatusCode::UNIMPLEMENTED, ""); - } - virtual ::grpc::ServerWriteReactor< ::grpc::ByteBuffer>* ExportNotifications( - ::grpc::CallbackServerContext* /*context*/, const ::grpc::ByteBuffer* /*request*/) { return nullptr; } - }; - template - class WithRawCallbackMethod_TerminationNotification : public BaseClass { - private: - void BaseClassMustBeDerivedFromService(const Service* /*service*/) {} - public: - WithRawCallbackMethod_TerminationNotification() { - ::grpc::Service::MarkMethodRawCallback(7, - new ::grpc::internal::CallbackUnaryHandler< ::grpc::ByteBuffer, ::grpc::ByteBuffer>( - [this]( - ::grpc::CallbackServerContext* context, const ::grpc::ByteBuffer* request, ::grpc::ByteBuffer* response) { return this->TerminationNotification(context, request, response); })); - } - ~WithRawCallbackMethod_TerminationNotification() override { - BaseClassMustBeDerivedFromService(this); - } - // disable synchronous version of this method - ::grpc::Status TerminationNotification(::grpc::ServerContext* /*context*/, const ::io::deephaven::proto::backplane::grpc::TerminationNotificationRequest* /*request*/, ::io::deephaven::proto::backplane::grpc::TerminationNotificationResponse* /*response*/) override { - abort(); - return ::grpc::Status(::grpc::StatusCode::UNIMPLEMENTED, ""); - } - virtual ::grpc::ServerUnaryReactor* TerminationNotification( - ::grpc::CallbackServerContext* /*context*/, const ::grpc::ByteBuffer* /*request*/, ::grpc::ByteBuffer* /*response*/) { return nullptr; } - }; - template - class WithStreamedUnaryMethod_NewSession : public BaseClass { - private: - void BaseClassMustBeDerivedFromService(const Service* /*service*/) {} - public: - WithStreamedUnaryMethod_NewSession() { - ::grpc::Service::MarkMethodStreamed(0, - new ::grpc::internal::StreamedUnaryHandler< - ::io::deephaven::proto::backplane::grpc::HandshakeRequest, ::io::deephaven::proto::backplane::grpc::HandshakeResponse>( - [this](::grpc::ServerContext* context, - ::grpc::ServerUnaryStreamer< - ::io::deephaven::proto::backplane::grpc::HandshakeRequest, ::io::deephaven::proto::backplane::grpc::HandshakeResponse>* streamer) { - return this->StreamedNewSession(context, - streamer); - })); - } - ~WithStreamedUnaryMethod_NewSession() override { - BaseClassMustBeDerivedFromService(this); - } - // disable regular version of this method - ::grpc::Status NewSession(::grpc::ServerContext* /*context*/, const ::io::deephaven::proto::backplane::grpc::HandshakeRequest* /*request*/, ::io::deephaven::proto::backplane::grpc::HandshakeResponse* /*response*/) override { - abort(); - return ::grpc::Status(::grpc::StatusCode::UNIMPLEMENTED, ""); - } - // replace default version of method with streamed unary - virtual ::grpc::Status StreamedNewSession(::grpc::ServerContext* context, ::grpc::ServerUnaryStreamer< ::io::deephaven::proto::backplane::grpc::HandshakeRequest,::io::deephaven::proto::backplane::grpc::HandshakeResponse>* server_unary_streamer) = 0; - }; - template - class WithStreamedUnaryMethod_RefreshSessionToken : public BaseClass { - private: - void BaseClassMustBeDerivedFromService(const Service* /*service*/) {} - public: - WithStreamedUnaryMethod_RefreshSessionToken() { - ::grpc::Service::MarkMethodStreamed(1, - new ::grpc::internal::StreamedUnaryHandler< - ::io::deephaven::proto::backplane::grpc::HandshakeRequest, ::io::deephaven::proto::backplane::grpc::HandshakeResponse>( - [this](::grpc::ServerContext* context, - ::grpc::ServerUnaryStreamer< - ::io::deephaven::proto::backplane::grpc::HandshakeRequest, ::io::deephaven::proto::backplane::grpc::HandshakeResponse>* streamer) { - return this->StreamedRefreshSessionToken(context, - streamer); - })); - } - ~WithStreamedUnaryMethod_RefreshSessionToken() override { - BaseClassMustBeDerivedFromService(this); - } - // disable regular version of this method - ::grpc::Status RefreshSessionToken(::grpc::ServerContext* /*context*/, const ::io::deephaven::proto::backplane::grpc::HandshakeRequest* /*request*/, ::io::deephaven::proto::backplane::grpc::HandshakeResponse* /*response*/) override { - abort(); - return ::grpc::Status(::grpc::StatusCode::UNIMPLEMENTED, ""); - } - // replace default version of method with streamed unary - virtual ::grpc::Status StreamedRefreshSessionToken(::grpc::ServerContext* context, ::grpc::ServerUnaryStreamer< ::io::deephaven::proto::backplane::grpc::HandshakeRequest,::io::deephaven::proto::backplane::grpc::HandshakeResponse>* server_unary_streamer) = 0; - }; - template - class WithStreamedUnaryMethod_CloseSession : public BaseClass { - private: - void BaseClassMustBeDerivedFromService(const Service* /*service*/) {} - public: - WithStreamedUnaryMethod_CloseSession() { - ::grpc::Service::MarkMethodStreamed(2, - new ::grpc::internal::StreamedUnaryHandler< - ::io::deephaven::proto::backplane::grpc::HandshakeRequest, ::io::deephaven::proto::backplane::grpc::CloseSessionResponse>( - [this](::grpc::ServerContext* context, - ::grpc::ServerUnaryStreamer< - ::io::deephaven::proto::backplane::grpc::HandshakeRequest, ::io::deephaven::proto::backplane::grpc::CloseSessionResponse>* streamer) { - return this->StreamedCloseSession(context, - streamer); - })); - } - ~WithStreamedUnaryMethod_CloseSession() override { - BaseClassMustBeDerivedFromService(this); - } - // disable regular version of this method - ::grpc::Status CloseSession(::grpc::ServerContext* /*context*/, const ::io::deephaven::proto::backplane::grpc::HandshakeRequest* /*request*/, ::io::deephaven::proto::backplane::grpc::CloseSessionResponse* /*response*/) override { - abort(); - return ::grpc::Status(::grpc::StatusCode::UNIMPLEMENTED, ""); - } - // replace default version of method with streamed unary - virtual ::grpc::Status StreamedCloseSession(::grpc::ServerContext* context, ::grpc::ServerUnaryStreamer< ::io::deephaven::proto::backplane::grpc::HandshakeRequest,::io::deephaven::proto::backplane::grpc::CloseSessionResponse>* server_unary_streamer) = 0; - }; - template - class WithStreamedUnaryMethod_Release : public BaseClass { - private: - void BaseClassMustBeDerivedFromService(const Service* /*service*/) {} - public: - WithStreamedUnaryMethod_Release() { - ::grpc::Service::MarkMethodStreamed(3, - new ::grpc::internal::StreamedUnaryHandler< - ::io::deephaven::proto::backplane::grpc::ReleaseRequest, ::io::deephaven::proto::backplane::grpc::ReleaseResponse>( - [this](::grpc::ServerContext* context, - ::grpc::ServerUnaryStreamer< - ::io::deephaven::proto::backplane::grpc::ReleaseRequest, ::io::deephaven::proto::backplane::grpc::ReleaseResponse>* streamer) { - return this->StreamedRelease(context, - streamer); - })); - } - ~WithStreamedUnaryMethod_Release() override { - BaseClassMustBeDerivedFromService(this); - } - // disable regular version of this method - ::grpc::Status Release(::grpc::ServerContext* /*context*/, const ::io::deephaven::proto::backplane::grpc::ReleaseRequest* /*request*/, ::io::deephaven::proto::backplane::grpc::ReleaseResponse* /*response*/) override { - abort(); - return ::grpc::Status(::grpc::StatusCode::UNIMPLEMENTED, ""); - } - // replace default version of method with streamed unary - virtual ::grpc::Status StreamedRelease(::grpc::ServerContext* context, ::grpc::ServerUnaryStreamer< ::io::deephaven::proto::backplane::grpc::ReleaseRequest,::io::deephaven::proto::backplane::grpc::ReleaseResponse>* server_unary_streamer) = 0; - }; - template - class WithStreamedUnaryMethod_ExportFromTicket : public BaseClass { - private: - void BaseClassMustBeDerivedFromService(const Service* /*service*/) {} - public: - WithStreamedUnaryMethod_ExportFromTicket() { - ::grpc::Service::MarkMethodStreamed(4, - new ::grpc::internal::StreamedUnaryHandler< - ::io::deephaven::proto::backplane::grpc::ExportRequest, ::io::deephaven::proto::backplane::grpc::ExportResponse>( - [this](::grpc::ServerContext* context, - ::grpc::ServerUnaryStreamer< - ::io::deephaven::proto::backplane::grpc::ExportRequest, ::io::deephaven::proto::backplane::grpc::ExportResponse>* streamer) { - return this->StreamedExportFromTicket(context, - streamer); - })); - } - ~WithStreamedUnaryMethod_ExportFromTicket() override { - BaseClassMustBeDerivedFromService(this); - } - // disable regular version of this method - ::grpc::Status ExportFromTicket(::grpc::ServerContext* /*context*/, const ::io::deephaven::proto::backplane::grpc::ExportRequest* /*request*/, ::io::deephaven::proto::backplane::grpc::ExportResponse* /*response*/) override { - abort(); - return ::grpc::Status(::grpc::StatusCode::UNIMPLEMENTED, ""); - } - // replace default version of method with streamed unary - virtual ::grpc::Status StreamedExportFromTicket(::grpc::ServerContext* context, ::grpc::ServerUnaryStreamer< ::io::deephaven::proto::backplane::grpc::ExportRequest,::io::deephaven::proto::backplane::grpc::ExportResponse>* server_unary_streamer) = 0; - }; - template - class WithStreamedUnaryMethod_PublishFromTicket : public BaseClass { - private: - void BaseClassMustBeDerivedFromService(const Service* /*service*/) {} - public: - WithStreamedUnaryMethod_PublishFromTicket() { - ::grpc::Service::MarkMethodStreamed(5, - new ::grpc::internal::StreamedUnaryHandler< - ::io::deephaven::proto::backplane::grpc::PublishRequest, ::io::deephaven::proto::backplane::grpc::PublishResponse>( - [this](::grpc::ServerContext* context, - ::grpc::ServerUnaryStreamer< - ::io::deephaven::proto::backplane::grpc::PublishRequest, ::io::deephaven::proto::backplane::grpc::PublishResponse>* streamer) { - return this->StreamedPublishFromTicket(context, - streamer); - })); - } - ~WithStreamedUnaryMethod_PublishFromTicket() override { - BaseClassMustBeDerivedFromService(this); - } - // disable regular version of this method - ::grpc::Status PublishFromTicket(::grpc::ServerContext* /*context*/, const ::io::deephaven::proto::backplane::grpc::PublishRequest* /*request*/, ::io::deephaven::proto::backplane::grpc::PublishResponse* /*response*/) override { - abort(); - return ::grpc::Status(::grpc::StatusCode::UNIMPLEMENTED, ""); - } - // replace default version of method with streamed unary - virtual ::grpc::Status StreamedPublishFromTicket(::grpc::ServerContext* context, ::grpc::ServerUnaryStreamer< ::io::deephaven::proto::backplane::grpc::PublishRequest,::io::deephaven::proto::backplane::grpc::PublishResponse>* server_unary_streamer) = 0; - }; - template - class WithStreamedUnaryMethod_TerminationNotification : public BaseClass { - private: - void BaseClassMustBeDerivedFromService(const Service* /*service*/) {} - public: - WithStreamedUnaryMethod_TerminationNotification() { - ::grpc::Service::MarkMethodStreamed(7, - new ::grpc::internal::StreamedUnaryHandler< - ::io::deephaven::proto::backplane::grpc::TerminationNotificationRequest, ::io::deephaven::proto::backplane::grpc::TerminationNotificationResponse>( - [this](::grpc::ServerContext* context, - ::grpc::ServerUnaryStreamer< - ::io::deephaven::proto::backplane::grpc::TerminationNotificationRequest, ::io::deephaven::proto::backplane::grpc::TerminationNotificationResponse>* streamer) { - return this->StreamedTerminationNotification(context, - streamer); - })); - } - ~WithStreamedUnaryMethod_TerminationNotification() override { - BaseClassMustBeDerivedFromService(this); - } - // disable regular version of this method - ::grpc::Status TerminationNotification(::grpc::ServerContext* /*context*/, const ::io::deephaven::proto::backplane::grpc::TerminationNotificationRequest* /*request*/, ::io::deephaven::proto::backplane::grpc::TerminationNotificationResponse* /*response*/) override { - abort(); - return ::grpc::Status(::grpc::StatusCode::UNIMPLEMENTED, ""); - } - // replace default version of method with streamed unary - virtual ::grpc::Status StreamedTerminationNotification(::grpc::ServerContext* context, ::grpc::ServerUnaryStreamer< ::io::deephaven::proto::backplane::grpc::TerminationNotificationRequest,::io::deephaven::proto::backplane::grpc::TerminationNotificationResponse>* server_unary_streamer) = 0; - }; - typedef WithStreamedUnaryMethod_NewSession > > > > > > StreamedUnaryService; - template - class WithSplitStreamingMethod_ExportNotifications : public BaseClass { - private: - void BaseClassMustBeDerivedFromService(const Service* /*service*/) {} - public: - WithSplitStreamingMethod_ExportNotifications() { - ::grpc::Service::MarkMethodStreamed(6, - new ::grpc::internal::SplitServerStreamingHandler< - ::io::deephaven::proto::backplane::grpc::ExportNotificationRequest, ::io::deephaven::proto::backplane::grpc::ExportNotification>( - [this](::grpc::ServerContext* context, - ::grpc::ServerSplitStreamer< - ::io::deephaven::proto::backplane::grpc::ExportNotificationRequest, ::io::deephaven::proto::backplane::grpc::ExportNotification>* streamer) { - return this->StreamedExportNotifications(context, - streamer); - })); - } - ~WithSplitStreamingMethod_ExportNotifications() override { - BaseClassMustBeDerivedFromService(this); - } - // disable regular version of this method - ::grpc::Status ExportNotifications(::grpc::ServerContext* /*context*/, const ::io::deephaven::proto::backplane::grpc::ExportNotificationRequest* /*request*/, ::grpc::ServerWriter< ::io::deephaven::proto::backplane::grpc::ExportNotification>* /*writer*/) override { - abort(); - return ::grpc::Status(::grpc::StatusCode::UNIMPLEMENTED, ""); - } - // replace default version of method with split streamed - virtual ::grpc::Status StreamedExportNotifications(::grpc::ServerContext* context, ::grpc::ServerSplitStreamer< ::io::deephaven::proto::backplane::grpc::ExportNotificationRequest,::io::deephaven::proto::backplane::grpc::ExportNotification>* server_split_streamer) = 0; - }; - typedef WithSplitStreamingMethod_ExportNotifications SplitStreamedService; - typedef WithStreamedUnaryMethod_NewSession > > > > > > > StreamedService; -}; - -} // namespace grpc -} // namespace backplane -} // namespace proto -} // namespace deephaven -} // namespace io - - -#endif // GRPC_deephaven_2fproto_2fsession_2eproto__INCLUDED diff --git a/cpp-client/deephaven/dhclient/proto/deephaven/proto/session.pb.cc b/cpp-client/deephaven/dhclient/proto/deephaven/proto/session.pb.cc deleted file mode 100644 index 4396648a91c..00000000000 --- a/cpp-client/deephaven/dhclient/proto/deephaven/proto/session.pb.cc +++ /dev/null @@ -1,3924 +0,0 @@ -// 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" -// @@protoc_insertion_point(includes) - -// Must be included last. -#include "google/protobuf/port_def.inc" -PROTOBUF_PRAGMA_INIT_SEG -namespace _pb = ::google::protobuf; -namespace _pbi = ::google::protobuf::internal; -namespace _fl = ::google::protobuf::internal::field_layout; -namespace io { -namespace deephaven { -namespace proto { -namespace backplane { -namespace grpc { - -inline constexpr WrappedAuthenticationRequest::Impl_::Impl_( - ::_pbi::ConstantInitialized) noexcept - : type_( - &::google::protobuf::internal::fixed_address_empty_string, - ::_pbi::ConstantInitialized()), - payload_( - &::google::protobuf::internal::fixed_address_empty_string, - ::_pbi::ConstantInitialized()), - _cached_size_{0} {} - -template -PROTOBUF_CONSTEXPR WrappedAuthenticationRequest::WrappedAuthenticationRequest(::_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() {} - union { - WrappedAuthenticationRequest _instance; - }; -}; - -PROTOBUF_ATTRIBUTE_NO_DESTROY PROTOBUF_CONSTINIT - PROTOBUF_ATTRIBUTE_INIT_PRIORITY1 WrappedAuthenticationRequestDefaultTypeInternal _WrappedAuthenticationRequest_default_instance_; - -inline constexpr TerminationNotificationResponse_StackTrace::Impl_::Impl_( - ::_pbi::ConstantInitialized) noexcept - : elements_{}, - type_( - &::google::protobuf::internal::fixed_address_empty_string, - ::_pbi::ConstantInitialized()), - message_( - &::google::protobuf::internal::fixed_address_empty_string, - ::_pbi::ConstantInitialized()), - _cached_size_{0} {} - -template -PROTOBUF_CONSTEXPR TerminationNotificationResponse_StackTrace::TerminationNotificationResponse_StackTrace(::_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() {} - union { - TerminationNotificationResponse_StackTrace _instance; - }; -}; - -PROTOBUF_ATTRIBUTE_NO_DESTROY PROTOBUF_CONSTINIT - PROTOBUF_ATTRIBUTE_INIT_PRIORITY1 TerminationNotificationResponse_StackTraceDefaultTypeInternal _TerminationNotificationResponse_StackTrace_default_instance_; - 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() {} - union { - TerminationNotificationRequest _instance; - }; -}; - -PROTOBUF_ATTRIBUTE_NO_DESTROY PROTOBUF_CONSTINIT - PROTOBUF_ATTRIBUTE_INIT_PRIORITY1 TerminationNotificationRequestDefaultTypeInternal _TerminationNotificationRequest_default_instance_; - 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() {} - union { - ReleaseResponse _instance; - }; -}; - -PROTOBUF_ATTRIBUTE_NO_DESTROY PROTOBUF_CONSTINIT - PROTOBUF_ATTRIBUTE_INIT_PRIORITY1 ReleaseResponseDefaultTypeInternal _ReleaseResponse_default_instance_; - 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() {} - union { - PublishResponse _instance; - }; -}; - -PROTOBUF_ATTRIBUTE_NO_DESTROY PROTOBUF_CONSTINIT - PROTOBUF_ATTRIBUTE_INIT_PRIORITY1 PublishResponseDefaultTypeInternal _PublishResponse_default_instance_; - -inline constexpr HandshakeResponse::Impl_::Impl_( - ::_pbi::ConstantInitialized) noexcept - : metadata_header_( - &::google::protobuf::internal::fixed_address_empty_string, - ::_pbi::ConstantInitialized()), - session_token_( - &::google::protobuf::internal::fixed_address_empty_string, - ::_pbi::ConstantInitialized()), - token_deadline_time_millis_{::int64_t{0}}, - token_expiration_delay_millis_{::int64_t{0}}, - _cached_size_{0} {} - -template -PROTOBUF_CONSTEXPR HandshakeResponse::HandshakeResponse(::_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() {} - union { - HandshakeResponse _instance; - }; -}; - -PROTOBUF_ATTRIBUTE_NO_DESTROY PROTOBUF_CONSTINIT - PROTOBUF_ATTRIBUTE_INIT_PRIORITY1 HandshakeResponseDefaultTypeInternal _HandshakeResponse_default_instance_; - -inline constexpr HandshakeRequest::Impl_::Impl_( - ::_pbi::ConstantInitialized) noexcept - : payload_( - &::google::protobuf::internal::fixed_address_empty_string, - ::_pbi::ConstantInitialized()), - auth_protocol_{0}, - _cached_size_{0} {} - -template -PROTOBUF_CONSTEXPR HandshakeRequest::HandshakeRequest(::_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() {} - union { - HandshakeRequest _instance; - }; -}; - -PROTOBUF_ATTRIBUTE_NO_DESTROY PROTOBUF_CONSTINIT - PROTOBUF_ATTRIBUTE_INIT_PRIORITY1 HandshakeRequestDefaultTypeInternal _HandshakeRequest_default_instance_; - 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() {} - union { - ExportResponse _instance; - }; -}; - -PROTOBUF_ATTRIBUTE_NO_DESTROY PROTOBUF_CONSTINIT - PROTOBUF_ATTRIBUTE_INIT_PRIORITY1 ExportResponseDefaultTypeInternal _ExportResponse_default_instance_; - 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() {} - union { - ExportNotificationRequest _instance; - }; -}; - -PROTOBUF_ATTRIBUTE_NO_DESTROY PROTOBUF_CONSTINIT - PROTOBUF_ATTRIBUTE_INIT_PRIORITY1 ExportNotificationRequestDefaultTypeInternal _ExportNotificationRequest_default_instance_; - 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() {} - union { - CloseSessionResponse _instance; - }; -}; - -PROTOBUF_ATTRIBUTE_NO_DESTROY PROTOBUF_CONSTINIT - PROTOBUF_ATTRIBUTE_INIT_PRIORITY1 CloseSessionResponseDefaultTypeInternal _CloseSessionResponse_default_instance_; - -inline constexpr TerminationNotificationResponse::Impl_::Impl_( - ::_pbi::ConstantInitialized) noexcept - : stack_traces_{}, - reason_( - &::google::protobuf::internal::fixed_address_empty_string, - ::_pbi::ConstantInitialized()), - abnormal_termination_{false}, - is_from_uncaught_exception_{false}, - _cached_size_{0} {} - -template -PROTOBUF_CONSTEXPR TerminationNotificationResponse::TerminationNotificationResponse(::_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() {} - union { - TerminationNotificationResponse _instance; - }; -}; - -PROTOBUF_ATTRIBUTE_NO_DESTROY PROTOBUF_CONSTINIT - PROTOBUF_ATTRIBUTE_INIT_PRIORITY1 TerminationNotificationResponseDefaultTypeInternal _TerminationNotificationResponse_default_instance_; - -inline constexpr ReleaseRequest::Impl_::Impl_( - ::_pbi::ConstantInitialized) noexcept - : _cached_size_{0}, - id_{nullptr} {} - -template -PROTOBUF_CONSTEXPR ReleaseRequest::ReleaseRequest(::_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() {} - union { - ReleaseRequest _instance; - }; -}; - -PROTOBUF_ATTRIBUTE_NO_DESTROY PROTOBUF_CONSTINIT - PROTOBUF_ATTRIBUTE_INIT_PRIORITY1 ReleaseRequestDefaultTypeInternal _ReleaseRequest_default_instance_; - -inline constexpr PublishRequest::Impl_::Impl_( - ::_pbi::ConstantInitialized) noexcept - : _cached_size_{0}, - source_id_{nullptr}, - result_id_{nullptr} {} - -template -PROTOBUF_CONSTEXPR PublishRequest::PublishRequest(::_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() {} - union { - PublishRequest _instance; - }; -}; - -PROTOBUF_ATTRIBUTE_NO_DESTROY PROTOBUF_CONSTINIT - PROTOBUF_ATTRIBUTE_INIT_PRIORITY1 PublishRequestDefaultTypeInternal _PublishRequest_default_instance_; - -inline constexpr ExportRequest::Impl_::Impl_( - ::_pbi::ConstantInitialized) noexcept - : _cached_size_{0}, - source_id_{nullptr}, - result_id_{nullptr} {} - -template -PROTOBUF_CONSTEXPR ExportRequest::ExportRequest(::_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() {} - union { - ExportRequest _instance; - }; -}; - -PROTOBUF_ATTRIBUTE_NO_DESTROY PROTOBUF_CONSTINIT - PROTOBUF_ATTRIBUTE_INIT_PRIORITY1 ExportRequestDefaultTypeInternal _ExportRequest_default_instance_; - -inline constexpr ExportNotification::Impl_::Impl_( - ::_pbi::ConstantInitialized) noexcept - : _cached_size_{0}, - context_( - &::google::protobuf::internal::fixed_address_empty_string, - ::_pbi::ConstantInitialized()), - dependent_handle_( - &::google::protobuf::internal::fixed_address_empty_string, - ::_pbi::ConstantInitialized()), - ticket_{nullptr}, - export_state_{static_cast< ::io::deephaven::proto::backplane::grpc::ExportNotification_State >(0)} {} - -template -PROTOBUF_CONSTEXPR ExportNotification::ExportNotification(::_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() {} - union { - ExportNotification _instance; - }; -}; - -PROTOBUF_ATTRIBUTE_NO_DESTROY PROTOBUF_CONSTINIT - PROTOBUF_ATTRIBUTE_INIT_PRIORITY1 ExportNotificationDefaultTypeInternal _ExportNotification_default_instance_; -} // namespace grpc -} // namespace backplane -} // namespace proto -} // namespace deephaven -} // namespace io -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[] 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[] 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)}, - {32, -1, -1, sizeof(::io::deephaven::proto::backplane::grpc::CloseSessionResponse)}, - {40, 49, -1, sizeof(::io::deephaven::proto::backplane::grpc::ReleaseRequest)}, - {50, -1, -1, sizeof(::io::deephaven::proto::backplane::grpc::ReleaseResponse)}, - {58, 68, -1, sizeof(::io::deephaven::proto::backplane::grpc::ExportRequest)}, - {70, -1, -1, sizeof(::io::deephaven::proto::backplane::grpc::ExportResponse)}, - {78, 88, -1, sizeof(::io::deephaven::proto::backplane::grpc::PublishRequest)}, - {90, -1, -1, sizeof(::io::deephaven::proto::backplane::grpc::PublishResponse)}, - {98, -1, -1, sizeof(::io::deephaven::proto::backplane::grpc::ExportNotificationRequest)}, - {106, 118, -1, sizeof(::io::deephaven::proto::backplane::grpc::ExportNotification)}, - {122, -1, -1, sizeof(::io::deephaven::proto::backplane::grpc::TerminationNotificationRequest)}, - {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, - &::io::deephaven::proto::backplane::grpc::_HandshakeResponse_default_instance_._instance, - &::io::deephaven::proto::backplane::grpc::_CloseSessionResponse_default_instance_._instance, - &::io::deephaven::proto::backplane::grpc::_ReleaseRequest_default_instance_._instance, - &::io::deephaven::proto::backplane::grpc::_ReleaseResponse_default_instance_._instance, - &::io::deephaven::proto::backplane::grpc::_ExportRequest_default_instance_._instance, - &::io::deephaven::proto::backplane::grpc::_ExportResponse_default_instance_._instance, - &::io::deephaven::proto::backplane::grpc::_PublishRequest_default_instance_._instance, - &::io::deephaven::proto::backplane::grpc::_PublishResponse_default_instance_._instance, - &::io::deephaven::proto::backplane::grpc::_ExportNotificationRequest_default_instance_._instance, - &::io::deephaven::proto::backplane::grpc::_ExportNotification_default_instance_._instance, - &::io::deephaven::proto::backplane::grpc::_TerminationNotificationRequest_default_instance_._instance, - &::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[] 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" - "nRequest\022\014\n\004type\030\004 \001(\t\022\017\n\007payload\030\005 \001(\014J" - "\004\010\002\020\003J\004\010\003\020\004\"B\n\020HandshakeRequest\022\031\n\rauth_" - "protocol\030\001 \001(\021B\002\030\001\022\023\n\007payload\030\002 \001(\014B\002\030\001\"" - "\242\001\n\021HandshakeResponse\022\033\n\017metadata_header" - "\030\001 \001(\014B\002\030\001\022\031\n\rsession_token\030\002 \001(\014B\002\030\001\022(\n" - "\032token_deadline_time_millis\030\003 \001(\022B\004\030\0010\001\022" - "+\n\035token_expiration_delay_millis\030\004 \001(\022B\004" - "\030\0010\001\"\026\n\024CloseSessionResponse\"G\n\016ReleaseR" - "equest\0225\n\002id\030\001 \001(\0132).io.deephaven.proto." - "backplane.grpc.Ticket\"\021\n\017ReleaseResponse" - "\"\213\001\n\rExportRequest\022<\n\tsource_id\030\001 \001(\0132)." - "io.deephaven.proto.backplane.grpc.Ticket" - "\022<\n\tresult_id\030\002 \001(\0132).io.deephaven.proto" - ".backplane.grpc.Ticket\"\020\n\016ExportResponse" - "\"\214\001\n\016PublishRequest\022<\n\tsource_id\030\001 \001(\0132)" - ".io.deephaven.proto.backplane.grpc.Ticke" - "t\022<\n\tresult_id\030\002 \001(\0132).io.deephaven.prot" - "o.backplane.grpc.Ticket\"\021\n\017PublishRespon" - "se\"\033\n\031ExportNotificationRequest\"\267\003\n\022Expo" - "rtNotification\0229\n\006ticket\030\001 \001(\0132).io.deep" - "haven.proto.backplane.grpc.Ticket\022Q\n\014exp" - "ort_state\030\002 \001(\0162;.io.deephaven.proto.bac" - "kplane.grpc.ExportNotification.State\022\017\n\007" - "context\030\003 \001(\t\022\030\n\020dependent_handle\030\004 \001(\t\"" - "\347\001\n\005State\022\013\n\007UNKNOWN\020\000\022\013\n\007PENDING\020\001\022\016\n\nP" - "UBLISHING\020\002\022\n\n\006QUEUED\020\003\022\013\n\007RUNNING\020\004\022\014\n\010" - "EXPORTED\020\005\022\014\n\010RELEASED\020\006\022\r\n\tCANCELLED\020\007\022" - "\n\n\006FAILED\020\010\022\025\n\021DEPENDENCY_FAILED\020\t\022\032\n\026DE" - "PENDENCY_NEVER_FOUND\020\n\022\030\n\024DEPENDENCY_CAN" - "CELLED\020\013\022\027\n\023DEPENDENCY_RELEASED\020\014\" \n\036Ter" - "minationNotificationRequest\"\227\002\n\037Terminat" - "ionNotificationResponse\022\034\n\024abnormal_term" - "ination\030\001 \001(\010\022\016\n\006reason\030\002 \001(\t\022\"\n\032is_from" - "_uncaught_exception\030\003 \001(\010\022c\n\014stack_trace" - "s\030\004 \003(\0132M.io.deephaven.proto.backplane.g" - "rpc.TerminationNotificationResponse.Stac" - "kTrace\032=\n\nStackTrace\022\014\n\004type\030\001 \001(\t\022\017\n\007me" - "ssage\030\002 \001(\t\022\020\n\010elements\030\003 \003(\t2\271\010\n\016Sessio" - "nService\022|\n\nNewSession\0223.io.deephaven.pr" - "oto.backplane.grpc.HandshakeRequest\0324.io" - ".deephaven.proto.backplane.grpc.Handshak" - "eResponse\"\003\210\002\001\022\205\001\n\023RefreshSessionToken\0223" - ".io.deephaven.proto.backplane.grpc.Hands" - "hakeRequest\0324.io.deephaven.proto.backpla" - "ne.grpc.HandshakeResponse\"\003\210\002\001\022~\n\014CloseS" - "ession\0223.io.deephaven.proto.backplane.gr" - "pc.HandshakeRequest\0327.io.deephaven.proto" - ".backplane.grpc.CloseSessionResponse\"\000\022r" - "\n\007Release\0221.io.deephaven.proto.backplane" - ".grpc.ReleaseRequest\0322.io.deephaven.prot" - "o.backplane.grpc.ReleaseResponse\"\000\022y\n\020Ex" - "portFromTicket\0220.io.deephaven.proto.back" - "plane.grpc.ExportRequest\0321.io.deephaven." - "proto.backplane.grpc.ExportResponse\"\000\022|\n" - "\021PublishFromTicket\0221.io.deephaven.proto." - "backplane.grpc.PublishRequest\0322.io.deeph" - "aven.proto.backplane.grpc.PublishRespons" - "e\"\000\022\216\001\n\023ExportNotifications\022<.io.deephav" - "en.proto.backplane.grpc.ExportNotificati" - "onRequest\0325.io.deephaven.proto.backplane" - ".grpc.ExportNotification\"\0000\001\022\242\001\n\027Termina" - "tionNotification\022A.io.deephaven.proto.ba" - "ckplane.grpc.TerminationNotificationRequ" - "est\032B.io.deephaven.proto.backplane.grpc." - "TerminationNotificationResponse\"\000BCH\001P\001Z" - "=github.com/deephaven/deephaven-core/go/" - "internal/proto/sessionb\006proto3" -}; -static const ::_pbi::DescriptorTable* const descriptor_table_deephaven_2fproto_2fsession_2eproto_deps[1] = - { - &::descriptor_table_deephaven_2fproto_2fticket_2eproto, -}; -static ::absl::once_flag descriptor_table_deephaven_2fproto_2fsession_2eproto_once; -PROTOBUF_CONSTINIT const ::_pbi::DescriptorTable descriptor_table_deephaven_2fproto_2fsession_2eproto = { - false, - false, - 2790, - descriptor_table_protodef_deephaven_2fproto_2fsession_2eproto, - "deephaven/proto/session.proto", - &descriptor_table_deephaven_2fproto_2fsession_2eproto_once, - descriptor_table_deephaven_2fproto_2fsession_2eproto_deps, - 1, - 15, - schemas, - file_default_instances, - TableStruct_deephaven_2fproto_2fsession_2eproto::offsets, - file_level_enum_descriptors_deephaven_2fproto_2fsession_2eproto, - file_level_service_descriptors_deephaven_2fproto_2fsession_2eproto, -}; -namespace io { -namespace deephaven { -namespace proto { -namespace backplane { -namespace grpc { -const ::google::protobuf::EnumDescriptor* ExportNotification_State_descriptor() { - ::google::protobuf::internal::AssignDescriptors(&descriptor_table_deephaven_2fproto_2fsession_2eproto); - return file_level_enum_descriptors_deephaven_2fproto_2fsession_2eproto[0]; -} -PROTOBUF_CONSTINIT const uint32_t ExportNotification_State_internal_data_[] = { - 851968u, 0u, }; -bool ExportNotification_State_IsValid(int value) { - return 0 <= value && value <= 12; -} -#if (__cplusplus < 201703) && \ - (!defined(_MSC_VER) || (_MSC_VER >= 1900 && _MSC_VER < 1912)) - -constexpr ExportNotification_State ExportNotification::UNKNOWN; -constexpr ExportNotification_State ExportNotification::PENDING; -constexpr ExportNotification_State ExportNotification::PUBLISHING; -constexpr ExportNotification_State ExportNotification::QUEUED; -constexpr ExportNotification_State ExportNotification::RUNNING; -constexpr ExportNotification_State ExportNotification::EXPORTED; -constexpr ExportNotification_State ExportNotification::RELEASED; -constexpr ExportNotification_State ExportNotification::CANCELLED; -constexpr ExportNotification_State ExportNotification::FAILED; -constexpr ExportNotification_State ExportNotification::DEPENDENCY_FAILED; -constexpr ExportNotification_State ExportNotification::DEPENDENCY_NEVER_FOUND; -constexpr ExportNotification_State ExportNotification::DEPENDENCY_CANCELLED; -constexpr ExportNotification_State ExportNotification::DEPENDENCY_RELEASED; -constexpr ExportNotification_State ExportNotification::State_MIN; -constexpr ExportNotification_State ExportNotification::State_MAX; -constexpr int ExportNotification::State_ARRAYSIZE; - -#endif // (__cplusplus < 201703) && - // (!defined(_MSC_VER) || (_MSC_VER >= 1900 && _MSC_VER < 1912)) -// =================================================================== - -class WrappedAuthenticationRequest::_Internal { - public: -}; - -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 ::io::deephaven::proto::backplane::grpc::WrappedAuthenticationRequest& from_msg) - : type_(arena, from.type_), - payload_(arena, from.payload_), - _cached_size_{0} {} - -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_, from); - - // @@protoc_insertion_point(copy_constructor:io.deephaven.proto.backplane.grpc.WrappedAuthenticationRequest) -} -inline PROTOBUF_NDEBUG_INLINE WrappedAuthenticationRequest::Impl_::Impl_( - ::google::protobuf::internal::InternalVisibility visibility, - ::google::protobuf::Arena* arena) - : type_(arena), - payload_(arena), - _cached_size_{0} {} - -inline void WrappedAuthenticationRequest::SharedCtor(::_pb::Arena* arena) { - new (&_impl_) Impl_(internal_visibility(), arena); -} -WrappedAuthenticationRequest::~WrappedAuthenticationRequest() { - // @@protoc_insertion_point(destructor:io.deephaven.proto.backplane.grpc.WrappedAuthenticationRequest) - _internal_metadata_.Delete<::google::protobuf::UnknownFieldSet>(); - SharedDtor(); -} -inline void WrappedAuthenticationRequest::SharedDtor() { - ABSL_DCHECK(GetArena() == nullptr); - _impl_.type_.Destroy(); - _impl_.payload_.Destroy(); - _impl_.~Impl_(); -} - -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_ = { - { - 0, // no _has_bits_ - 0, // no _extensions_ - 5, 8, // max_field_number, fast_idx_mask - offsetof(decltype(_table_), field_lookup_table), - 4294967271, // skipmap - offsetof(decltype(_table_), field_entries), - 2, // 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::WrappedAuthenticationRequest>(), // to_prefetch - #endif // PROTOBUF_PREFETCH_PARSE_TABLE - }, {{ - // string type = 4; - {::_pbi::TcParser::FastUS1, - {34, 63, 0, PROTOBUF_FIELD_OFFSET(WrappedAuthenticationRequest, _impl_.type_)}}, - // bytes payload = 5; - {::_pbi::TcParser::FastBS1, - {42, 63, 0, PROTOBUF_FIELD_OFFSET(WrappedAuthenticationRequest, _impl_.payload_)}}, - }}, {{ - 65535, 65535 - }}, {{ - // string type = 4; - {PROTOBUF_FIELD_OFFSET(WrappedAuthenticationRequest, _impl_.type_), 0, 0, - (0 | ::_fl::kFcSingular | ::_fl::kUtf8String | ::_fl::kRepAString)}, - // bytes payload = 5; - {PROTOBUF_FIELD_OFFSET(WrappedAuthenticationRequest, _impl_.payload_), 0, 0, - (0 | ::_fl::kFcSingular | ::_fl::kBytes | ::_fl::kRepAString)}, - }}, - // no aux_entries - {{ - "\76\4\0\0\0\0\0\0" - "io.deephaven.proto.backplane.grpc.WrappedAuthenticationRequest" - "type" - }}, -}; - -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; - - _impl_.type_.ClearToEmpty(); - _impl_.payload_.ClearToEmpty(); - _internal_metadata_.Clear<::google::protobuf::UnknownFieldSet>(); -} - -#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) - ABSL_DCHECK_NE(&from, _this); - ::uint32_t cached_has_bits = 0; - (void) cached_has_bits; - - if (!from._internal_type().empty()) { - _this->_internal_set_type(from._internal_type()); - } - if (!from._internal_payload().empty()) { - _this->_internal_set_payload(from._internal_payload()); - } - _this->_internal_metadata_.MergeFrom<::google::protobuf::UnknownFieldSet>(from._internal_metadata_); -} - -void WrappedAuthenticationRequest::CopyFrom(const WrappedAuthenticationRequest& from) { -// @@protoc_insertion_point(class_specific_copy_from_start:io.deephaven.proto.backplane.grpc.WrappedAuthenticationRequest) - if (&from == this) return; - Clear(); - MergeFrom(from); -} - - -void WrappedAuthenticationRequest::InternalSwap(WrappedAuthenticationRequest* PROTOBUF_RESTRICT other) { - using std::swap; - auto* arena = GetArena(); - ABSL_DCHECK_EQ(arena, other->GetArena()); - _internal_metadata_.InternalSwap(&other->_internal_metadata_); - ::_pbi::ArenaStringPtr::InternalSwap(&_impl_.type_, &other->_impl_.type_, arena); - ::_pbi::ArenaStringPtr::InternalSwap(&_impl_.payload_, &other->_impl_.payload_, arena); -} - -::google::protobuf::Metadata WrappedAuthenticationRequest::GetMetadata() const { - return ::google::protobuf::Message::GetMetadataImpl(GetClassData()->full()); -} -// =================================================================== - -class HandshakeRequest::_Internal { - public: -}; - -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 ::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_, from); - _impl_.auth_protocol_ = from._impl_.auth_protocol_; - - // @@protoc_insertion_point(copy_constructor:io.deephaven.proto.backplane.grpc.HandshakeRequest) -} -inline PROTOBUF_NDEBUG_INLINE HandshakeRequest::Impl_::Impl_( - ::google::protobuf::internal::InternalVisibility visibility, - ::google::protobuf::Arena* arena) - : payload_(arena), - _cached_size_{0} {} - -inline void HandshakeRequest::SharedCtor(::_pb::Arena* arena) { - new (&_impl_) Impl_(internal_visibility(), arena); - _impl_.auth_protocol_ = {}; -} -HandshakeRequest::~HandshakeRequest() { - // @@protoc_insertion_point(destructor:io.deephaven.proto.backplane.grpc.HandshakeRequest) - _internal_metadata_.Delete<::google::protobuf::UnknownFieldSet>(); - SharedDtor(); -} -inline void HandshakeRequest::SharedDtor() { - ABSL_DCHECK(GetArena() == nullptr); - _impl_.payload_.Destroy(); - _impl_.~Impl_(); -} - -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_ = { - { - 0, // no _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 - 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::HandshakeRequest>(), // to_prefetch - #endif // PROTOBUF_PREFETCH_PARSE_TABLE - }, {{ - // bytes payload = 2 [deprecated = true]; - {::_pbi::TcParser::FastBS1, - {18, 63, 0, PROTOBUF_FIELD_OFFSET(HandshakeRequest, _impl_.payload_)}}, - // sint32 auth_protocol = 1 [deprecated = true]; - {::_pbi::TcParser::FastZ32S1, - {8, 63, 0, PROTOBUF_FIELD_OFFSET(HandshakeRequest, _impl_.auth_protocol_)}}, - }}, {{ - 65535, 65535 - }}, {{ - // sint32 auth_protocol = 1 [deprecated = true]; - {PROTOBUF_FIELD_OFFSET(HandshakeRequest, _impl_.auth_protocol_), 0, 0, - (0 | ::_fl::kFcSingular | ::_fl::kSInt32)}, - // bytes payload = 2 [deprecated = true]; - {PROTOBUF_FIELD_OFFSET(HandshakeRequest, _impl_.payload_), 0, 0, - (0 | ::_fl::kFcSingular | ::_fl::kBytes | ::_fl::kRepAString)}, - }}, - // no aux_entries - {{ - }}, -}; - -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; - - _impl_.payload_.ClearToEmpty(); - _impl_.auth_protocol_ = 0; - _internal_metadata_.Clear<::google::protobuf::UnknownFieldSet>(); -} - -#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) - ABSL_DCHECK_NE(&from, _this); - ::uint32_t cached_has_bits = 0; - (void) cached_has_bits; - - if (!from._internal_payload().empty()) { - _this->_internal_set_payload(from._internal_payload()); - } - if (from._internal_auth_protocol() != 0) { - _this->_impl_.auth_protocol_ = from._impl_.auth_protocol_; - } - _this->_internal_metadata_.MergeFrom<::google::protobuf::UnknownFieldSet>(from._internal_metadata_); -} - -void HandshakeRequest::CopyFrom(const HandshakeRequest& from) { -// @@protoc_insertion_point(class_specific_copy_from_start:io.deephaven.proto.backplane.grpc.HandshakeRequest) - if (&from == this) return; - Clear(); - MergeFrom(from); -} - - -void HandshakeRequest::InternalSwap(HandshakeRequest* PROTOBUF_RESTRICT other) { - using std::swap; - auto* arena = GetArena(); - ABSL_DCHECK_EQ(arena, other->GetArena()); - _internal_metadata_.InternalSwap(&other->_internal_metadata_); - ::_pbi::ArenaStringPtr::InternalSwap(&_impl_.payload_, &other->_impl_.payload_, arena); - swap(_impl_.auth_protocol_, other->_impl_.auth_protocol_); -} - -::google::protobuf::Metadata HandshakeRequest::GetMetadata() const { - return ::google::protobuf::Message::GetMetadataImpl(GetClassData()->full()); -} -// =================================================================== - -class HandshakeResponse::_Internal { - public: -}; - -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 ::io::deephaven::proto::backplane::grpc::HandshakeResponse& from_msg) - : metadata_header_(arena, from.metadata_header_), - session_token_(arena, from.session_token_), - _cached_size_{0} {} - -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_, from); - ::memcpy(reinterpret_cast(&_impl_) + - offsetof(Impl_, token_deadline_time_millis_), - reinterpret_cast(&from._impl_) + - offsetof(Impl_, token_deadline_time_millis_), - offsetof(Impl_, token_expiration_delay_millis_) - - offsetof(Impl_, token_deadline_time_millis_) + - sizeof(Impl_::token_expiration_delay_millis_)); - - // @@protoc_insertion_point(copy_constructor:io.deephaven.proto.backplane.grpc.HandshakeResponse) -} -inline PROTOBUF_NDEBUG_INLINE HandshakeResponse::Impl_::Impl_( - ::google::protobuf::internal::InternalVisibility visibility, - ::google::protobuf::Arena* arena) - : metadata_header_(arena), - session_token_(arena), - _cached_size_{0} {} - -inline void HandshakeResponse::SharedCtor(::_pb::Arena* arena) { - new (&_impl_) Impl_(internal_visibility(), arena); - ::memset(reinterpret_cast(&_impl_) + - offsetof(Impl_, token_deadline_time_millis_), - 0, - offsetof(Impl_, token_expiration_delay_millis_) - - offsetof(Impl_, token_deadline_time_millis_) + - sizeof(Impl_::token_expiration_delay_millis_)); -} -HandshakeResponse::~HandshakeResponse() { - // @@protoc_insertion_point(destructor:io.deephaven.proto.backplane.grpc.HandshakeResponse) - _internal_metadata_.Delete<::google::protobuf::UnknownFieldSet>(); - SharedDtor(); -} -inline void HandshakeResponse::SharedDtor() { - ABSL_DCHECK(GetArena() == nullptr); - _impl_.metadata_header_.Destroy(); - _impl_.session_token_.Destroy(); - _impl_.~Impl_(); -} - -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_ = { - { - 0, // no _has_bits_ - 0, // no _extensions_ - 4, 24, // max_field_number, fast_idx_mask - offsetof(decltype(_table_), field_lookup_table), - 4294967280, // skipmap - offsetof(decltype(_table_), field_entries), - 4, // 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::HandshakeResponse>(), // to_prefetch - #endif // PROTOBUF_PREFETCH_PARSE_TABLE - }, {{ - // sint64 token_expiration_delay_millis = 4 [deprecated = true, jstype = JS_STRING]; - {::_pbi::TcParser::FastZ64S1, - {32, 63, 0, PROTOBUF_FIELD_OFFSET(HandshakeResponse, _impl_.token_expiration_delay_millis_)}}, - // bytes metadata_header = 1 [deprecated = true]; - {::_pbi::TcParser::FastBS1, - {10, 63, 0, PROTOBUF_FIELD_OFFSET(HandshakeResponse, _impl_.metadata_header_)}}, - // bytes session_token = 2 [deprecated = true]; - {::_pbi::TcParser::FastBS1, - {18, 63, 0, PROTOBUF_FIELD_OFFSET(HandshakeResponse, _impl_.session_token_)}}, - // sint64 token_deadline_time_millis = 3 [deprecated = true, jstype = JS_STRING]; - {::_pbi::TcParser::FastZ64S1, - {24, 63, 0, PROTOBUF_FIELD_OFFSET(HandshakeResponse, _impl_.token_deadline_time_millis_)}}, - }}, {{ - 65535, 65535 - }}, {{ - // bytes metadata_header = 1 [deprecated = true]; - {PROTOBUF_FIELD_OFFSET(HandshakeResponse, _impl_.metadata_header_), 0, 0, - (0 | ::_fl::kFcSingular | ::_fl::kBytes | ::_fl::kRepAString)}, - // bytes session_token = 2 [deprecated = true]; - {PROTOBUF_FIELD_OFFSET(HandshakeResponse, _impl_.session_token_), 0, 0, - (0 | ::_fl::kFcSingular | ::_fl::kBytes | ::_fl::kRepAString)}, - // sint64 token_deadline_time_millis = 3 [deprecated = true, jstype = JS_STRING]; - {PROTOBUF_FIELD_OFFSET(HandshakeResponse, _impl_.token_deadline_time_millis_), 0, 0, - (0 | ::_fl::kFcSingular | ::_fl::kSInt64)}, - // sint64 token_expiration_delay_millis = 4 [deprecated = true, jstype = JS_STRING]; - {PROTOBUF_FIELD_OFFSET(HandshakeResponse, _impl_.token_expiration_delay_millis_), 0, 0, - (0 | ::_fl::kFcSingular | ::_fl::kSInt64)}, - }}, - // no aux_entries - {{ - }}, -}; - -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; - - _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>(); -} - -#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) - ABSL_DCHECK_NE(&from, _this); - ::uint32_t cached_has_bits = 0; - (void) cached_has_bits; - - if (!from._internal_metadata_header().empty()) { - _this->_internal_set_metadata_header(from._internal_metadata_header()); - } - if (!from._internal_session_token().empty()) { - _this->_internal_set_session_token(from._internal_session_token()); - } - if (from._internal_token_deadline_time_millis() != 0) { - _this->_impl_.token_deadline_time_millis_ = from._impl_.token_deadline_time_millis_; - } - if (from._internal_token_expiration_delay_millis() != 0) { - _this->_impl_.token_expiration_delay_millis_ = from._impl_.token_expiration_delay_millis_; - } - _this->_internal_metadata_.MergeFrom<::google::protobuf::UnknownFieldSet>(from._internal_metadata_); -} - -void HandshakeResponse::CopyFrom(const HandshakeResponse& from) { -// @@protoc_insertion_point(class_specific_copy_from_start:io.deephaven.proto.backplane.grpc.HandshakeResponse) - if (&from == this) return; - Clear(); - MergeFrom(from); -} - - -void HandshakeResponse::InternalSwap(HandshakeResponse* PROTOBUF_RESTRICT other) { - using std::swap; - auto* arena = GetArena(); - ABSL_DCHECK_EQ(arena, other->GetArena()); - _internal_metadata_.InternalSwap(&other->_internal_metadata_); - ::_pbi::ArenaStringPtr::InternalSwap(&_impl_.metadata_header_, &other->_impl_.metadata_header_, arena); - ::_pbi::ArenaStringPtr::InternalSwap(&_impl_.session_token_, &other->_impl_.session_token_, arena); - ::google::protobuf::internal::memswap< - PROTOBUF_FIELD_OFFSET(HandshakeResponse, _impl_.token_expiration_delay_millis_) - + sizeof(HandshakeResponse::_impl_.token_expiration_delay_millis_) - - PROTOBUF_FIELD_OFFSET(HandshakeResponse, _impl_.token_deadline_time_millis_)>( - reinterpret_cast(&_impl_.token_deadline_time_millis_), - reinterpret_cast(&other->_impl_.token_deadline_time_millis_)); -} - -::google::protobuf::Metadata HandshakeResponse::GetMetadata() const { - return ::google::protobuf::Message::GetMetadataImpl(GetClassData()->full()); -} -// =================================================================== - -class CloseSessionResponse::_Internal { - public: -}; - -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>( - from._internal_metadata_); - - // @@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 - {{ - }}, -}; - - - - - - - - -::google::protobuf::Metadata CloseSessionResponse::GetMetadata() const { - return ::google::protobuf::internal::ZeroFieldsBase::GetMetadataImpl(GetClassData()->full()); -} -// =================================================================== - -class ReleaseRequest::_Internal { - public: - using HasBits = - decltype(std::declval()._impl_._has_bits_); - static constexpr ::int32_t kHasBitsOffset = - 8 * PROTOBUF_FIELD_OFFSET(ReleaseRequest, _impl_._has_bits_); -}; - -void ReleaseRequest::clear_id() { - ::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 ::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_, from); - ::uint32_t cached_has_bits = _impl_._has_bits_[0]; - _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) -} -inline PROTOBUF_NDEBUG_INLINE ReleaseRequest::Impl_::Impl_( - ::google::protobuf::internal::InternalVisibility visibility, - ::google::protobuf::Arena* arena) - : _cached_size_{0} {} - -inline void ReleaseRequest::SharedCtor(::_pb::Arena* arena) { - new (&_impl_) Impl_(internal_visibility(), arena); - _impl_.id_ = {}; -} -ReleaseRequest::~ReleaseRequest() { - // @@protoc_insertion_point(destructor:io.deephaven.proto.backplane.grpc.ReleaseRequest) - _internal_metadata_.Delete<::google::protobuf::UnknownFieldSet>(); - SharedDtor(); -} -inline void ReleaseRequest::SharedDtor() { - ABSL_DCHECK(GetArena() == nullptr); - delete _impl_.id_; - _impl_.~Impl_(); -} - -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_ = { - { - PROTOBUF_FIELD_OFFSET(ReleaseRequest, _impl_._has_bits_), - 0, // no _extensions_ - 1, 0, // max_field_number, fast_idx_mask - offsetof(decltype(_table_), field_lookup_table), - 4294967294, // skipmap - offsetof(decltype(_table_), field_entries), - 1, // num_field_entries - 1, // num_aux_entries - offsetof(decltype(_table_), 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::ReleaseRequest>(), // to_prefetch - #endif // PROTOBUF_PREFETCH_PARSE_TABLE - }, {{ - // .io.deephaven.proto.backplane.grpc.Ticket id = 1; - {::_pbi::TcParser::FastMtS1, - {10, 0, 0, PROTOBUF_FIELD_OFFSET(ReleaseRequest, _impl_.id_)}}, - }}, {{ - 65535, 65535 - }}, {{ - // .io.deephaven.proto.backplane.grpc.Ticket id = 1; - {PROTOBUF_FIELD_OFFSET(ReleaseRequest, _impl_.id_), _Internal::kHasBitsOffset + 0, 0, - (0 | ::_fl::kFcOptional | ::_fl::kMessage | ::_fl::kTvTable)}, - }}, {{ - {::_pbi::TcParser::GetTable<::io::deephaven::proto::backplane::grpc::Ticket>()}, - }}, {{ - }}, -}; - -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; - - 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>(); -} - -#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; - - 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_); -} - -void ReleaseRequest::CopyFrom(const ReleaseRequest& from) { -// @@protoc_insertion_point(class_specific_copy_from_start:io.deephaven.proto.backplane.grpc.ReleaseRequest) - if (&from == this) return; - Clear(); - MergeFrom(from); -} - - -void ReleaseRequest::InternalSwap(ReleaseRequest* PROTOBUF_RESTRICT other) { - using std::swap; - _internal_metadata_.InternalSwap(&other->_internal_metadata_); - swap(_impl_._has_bits_[0], other->_impl_._has_bits_[0]); - swap(_impl_.id_, other->_impl_.id_); -} - -::google::protobuf::Metadata ReleaseRequest::GetMetadata() const { - return ::google::protobuf::Message::GetMetadataImpl(GetClassData()->full()); -} -// =================================================================== - -class ReleaseResponse::_Internal { - public: -}; - -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>( - from._internal_metadata_); - - // @@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 - {{ - }}, -}; - - - - - - - - -::google::protobuf::Metadata ReleaseResponse::GetMetadata() const { - return ::google::protobuf::internal::ZeroFieldsBase::GetMetadataImpl(GetClassData()->full()); -} -// =================================================================== - -class ExportRequest::_Internal { - public: - using HasBits = - decltype(std::declval()._impl_._has_bits_); - static constexpr ::int32_t kHasBitsOffset = - 8 * PROTOBUF_FIELD_OFFSET(ExportRequest, _impl_._has_bits_); -}; - -void ExportRequest::clear_source_id() { - ::google::protobuf::internal::TSanWrite(&_impl_); - if (_impl_.source_id_ != nullptr) _impl_.source_id_->Clear(); - _impl_._has_bits_[0] &= ~0x00000001u; -} -void ExportRequest::clear_result_id() { - ::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 ::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_, from); - ::uint32_t cached_has_bits = _impl_._has_bits_[0]; - _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) -} -inline PROTOBUF_NDEBUG_INLINE ExportRequest::Impl_::Impl_( - ::google::protobuf::internal::InternalVisibility visibility, - ::google::protobuf::Arena* arena) - : _cached_size_{0} {} - -inline void ExportRequest::SharedCtor(::_pb::Arena* arena) { - new (&_impl_) Impl_(internal_visibility(), arena); - ::memset(reinterpret_cast(&_impl_) + - offsetof(Impl_, source_id_), - 0, - offsetof(Impl_, result_id_) - - offsetof(Impl_, source_id_) + - sizeof(Impl_::result_id_)); -} -ExportRequest::~ExportRequest() { - // @@protoc_insertion_point(destructor:io.deephaven.proto.backplane.grpc.ExportRequest) - _internal_metadata_.Delete<::google::protobuf::UnknownFieldSet>(); - SharedDtor(); -} -inline void ExportRequest::SharedDtor() { - ABSL_DCHECK(GetArena() == nullptr); - delete _impl_.source_id_; - delete _impl_.result_id_; - _impl_.~Impl_(); -} - -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_ = { - { - PROTOBUF_FIELD_OFFSET(ExportRequest, _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 - 2, // num_aux_entries - offsetof(decltype(_table_), 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::ExportRequest>(), // to_prefetch - #endif // PROTOBUF_PREFETCH_PARSE_TABLE - }, {{ - // .io.deephaven.proto.backplane.grpc.Ticket result_id = 2; - {::_pbi::TcParser::FastMtS1, - {18, 1, 1, PROTOBUF_FIELD_OFFSET(ExportRequest, _impl_.result_id_)}}, - // .io.deephaven.proto.backplane.grpc.Ticket source_id = 1; - {::_pbi::TcParser::FastMtS1, - {10, 0, 0, PROTOBUF_FIELD_OFFSET(ExportRequest, _impl_.source_id_)}}, - }}, {{ - 65535, 65535 - }}, {{ - // .io.deephaven.proto.backplane.grpc.Ticket source_id = 1; - {PROTOBUF_FIELD_OFFSET(ExportRequest, _impl_.source_id_), _Internal::kHasBitsOffset + 0, 0, - (0 | ::_fl::kFcOptional | ::_fl::kMessage | ::_fl::kTvTable)}, - // .io.deephaven.proto.backplane.grpc.Ticket result_id = 2; - {PROTOBUF_FIELD_OFFSET(ExportRequest, _impl_.result_id_), _Internal::kHasBitsOffset + 1, 1, - (0 | ::_fl::kFcOptional | ::_fl::kMessage | ::_fl::kTvTable)}, - }}, {{ - {::_pbi::TcParser::GetTable<::io::deephaven::proto::backplane::grpc::Ticket>()}, - {::_pbi::TcParser::GetTable<::io::deephaven::proto::backplane::grpc::Ticket>()}, - }}, {{ - }}, -}; - -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) { - 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>(); -} - -#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; - (void) cached_has_bits; - - cached_has_bits = from._impl_._has_bits_[0]; - if (cached_has_bits & 0x00000003u) { - 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::Ticket>(arena, *from._impl_.source_id_); - } else { - _this->_impl_.source_id_->MergeFrom(*from._impl_.source_id_); - } - } - if (cached_has_bits & 0x00000002u) { - 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_); -} - -void ExportRequest::CopyFrom(const ExportRequest& from) { -// @@protoc_insertion_point(class_specific_copy_from_start:io.deephaven.proto.backplane.grpc.ExportRequest) - if (&from == this) return; - Clear(); - MergeFrom(from); -} - - -void ExportRequest::InternalSwap(ExportRequest* PROTOBUF_RESTRICT other) { - using std::swap; - _internal_metadata_.InternalSwap(&other->_internal_metadata_); - swap(_impl_._has_bits_[0], other->_impl_._has_bits_[0]); - ::google::protobuf::internal::memswap< - PROTOBUF_FIELD_OFFSET(ExportRequest, _impl_.result_id_) - + sizeof(ExportRequest::_impl_.result_id_) - - PROTOBUF_FIELD_OFFSET(ExportRequest, _impl_.source_id_)>( - reinterpret_cast(&_impl_.source_id_), - reinterpret_cast(&other->_impl_.source_id_)); -} - -::google::protobuf::Metadata ExportRequest::GetMetadata() const { - return ::google::protobuf::Message::GetMetadataImpl(GetClassData()->full()); -} -// =================================================================== - -class ExportResponse::_Internal { - public: -}; - -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>( - from._internal_metadata_); - - // @@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 - {{ - }}, -}; - - - - - - - - -::google::protobuf::Metadata ExportResponse::GetMetadata() const { - return ::google::protobuf::internal::ZeroFieldsBase::GetMetadataImpl(GetClassData()->full()); -} -// =================================================================== - -class PublishRequest::_Internal { - public: - using HasBits = - decltype(std::declval()._impl_._has_bits_); - static constexpr ::int32_t kHasBitsOffset = - 8 * PROTOBUF_FIELD_OFFSET(PublishRequest, _impl_._has_bits_); -}; - -void PublishRequest::clear_source_id() { - ::google::protobuf::internal::TSanWrite(&_impl_); - if (_impl_.source_id_ != nullptr) _impl_.source_id_->Clear(); - _impl_._has_bits_[0] &= ~0x00000001u; -} -void PublishRequest::clear_result_id() { - ::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 ::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_, from); - ::uint32_t cached_has_bits = _impl_._has_bits_[0]; - _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) -} -inline PROTOBUF_NDEBUG_INLINE PublishRequest::Impl_::Impl_( - ::google::protobuf::internal::InternalVisibility visibility, - ::google::protobuf::Arena* arena) - : _cached_size_{0} {} - -inline void PublishRequest::SharedCtor(::_pb::Arena* arena) { - new (&_impl_) Impl_(internal_visibility(), arena); - ::memset(reinterpret_cast(&_impl_) + - offsetof(Impl_, source_id_), - 0, - offsetof(Impl_, result_id_) - - offsetof(Impl_, source_id_) + - sizeof(Impl_::result_id_)); -} -PublishRequest::~PublishRequest() { - // @@protoc_insertion_point(destructor:io.deephaven.proto.backplane.grpc.PublishRequest) - _internal_metadata_.Delete<::google::protobuf::UnknownFieldSet>(); - SharedDtor(); -} -inline void PublishRequest::SharedDtor() { - ABSL_DCHECK(GetArena() == nullptr); - delete _impl_.source_id_; - delete _impl_.result_id_; - _impl_.~Impl_(); -} - -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_ = { - { - PROTOBUF_FIELD_OFFSET(PublishRequest, _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 - 2, // num_aux_entries - offsetof(decltype(_table_), 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::PublishRequest>(), // to_prefetch - #endif // PROTOBUF_PREFETCH_PARSE_TABLE - }, {{ - // .io.deephaven.proto.backplane.grpc.Ticket result_id = 2; - {::_pbi::TcParser::FastMtS1, - {18, 1, 1, PROTOBUF_FIELD_OFFSET(PublishRequest, _impl_.result_id_)}}, - // .io.deephaven.proto.backplane.grpc.Ticket source_id = 1; - {::_pbi::TcParser::FastMtS1, - {10, 0, 0, PROTOBUF_FIELD_OFFSET(PublishRequest, _impl_.source_id_)}}, - }}, {{ - 65535, 65535 - }}, {{ - // .io.deephaven.proto.backplane.grpc.Ticket source_id = 1; - {PROTOBUF_FIELD_OFFSET(PublishRequest, _impl_.source_id_), _Internal::kHasBitsOffset + 0, 0, - (0 | ::_fl::kFcOptional | ::_fl::kMessage | ::_fl::kTvTable)}, - // .io.deephaven.proto.backplane.grpc.Ticket result_id = 2; - {PROTOBUF_FIELD_OFFSET(PublishRequest, _impl_.result_id_), _Internal::kHasBitsOffset + 1, 1, - (0 | ::_fl::kFcOptional | ::_fl::kMessage | ::_fl::kTvTable)}, - }}, {{ - {::_pbi::TcParser::GetTable<::io::deephaven::proto::backplane::grpc::Ticket>()}, - {::_pbi::TcParser::GetTable<::io::deephaven::proto::backplane::grpc::Ticket>()}, - }}, {{ - }}, -}; - -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) { - 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>(); -} - -#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; - (void) cached_has_bits; - - cached_has_bits = from._impl_._has_bits_[0]; - if (cached_has_bits & 0x00000003u) { - 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::Ticket>(arena, *from._impl_.source_id_); - } else { - _this->_impl_.source_id_->MergeFrom(*from._impl_.source_id_); - } - } - if (cached_has_bits & 0x00000002u) { - 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_); -} - -void PublishRequest::CopyFrom(const PublishRequest& from) { -// @@protoc_insertion_point(class_specific_copy_from_start:io.deephaven.proto.backplane.grpc.PublishRequest) - if (&from == this) return; - Clear(); - MergeFrom(from); -} - - -void PublishRequest::InternalSwap(PublishRequest* PROTOBUF_RESTRICT other) { - using std::swap; - _internal_metadata_.InternalSwap(&other->_internal_metadata_); - swap(_impl_._has_bits_[0], other->_impl_._has_bits_[0]); - ::google::protobuf::internal::memswap< - PROTOBUF_FIELD_OFFSET(PublishRequest, _impl_.result_id_) - + sizeof(PublishRequest::_impl_.result_id_) - - PROTOBUF_FIELD_OFFSET(PublishRequest, _impl_.source_id_)>( - reinterpret_cast(&_impl_.source_id_), - reinterpret_cast(&other->_impl_.source_id_)); -} - -::google::protobuf::Metadata PublishRequest::GetMetadata() const { - return ::google::protobuf::Message::GetMetadataImpl(GetClassData()->full()); -} -// =================================================================== - -class PublishResponse::_Internal { - public: -}; - -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>( - from._internal_metadata_); - - // @@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 - {{ - }}, -}; - - - - - - - - -::google::protobuf::Metadata PublishResponse::GetMetadata() const { - return ::google::protobuf::internal::ZeroFieldsBase::GetMetadataImpl(GetClassData()->full()); -} -// =================================================================== - -class ExportNotificationRequest::_Internal { - public: -}; - -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>( - from._internal_metadata_); - - // @@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 - {{ - }}, -}; - - - - - - - - -::google::protobuf::Metadata ExportNotificationRequest::GetMetadata() const { - return ::google::protobuf::internal::ZeroFieldsBase::GetMetadataImpl(GetClassData()->full()); -} -// =================================================================== - -class ExportNotification::_Internal { - public: - using HasBits = - decltype(std::declval()._impl_._has_bits_); - static constexpr ::int32_t kHasBitsOffset = - 8 * PROTOBUF_FIELD_OFFSET(ExportNotification, _impl_._has_bits_); -}; - -void ExportNotification::clear_ticket() { - ::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 ::io::deephaven::proto::backplane::grpc::ExportNotification& from_msg) - : _has_bits_{from._has_bits_}, - _cached_size_{0}, - context_(arena, from.context_), - dependent_handle_(arena, from.dependent_handle_) {} - -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_, from); - ::uint32_t cached_has_bits = _impl_._has_bits_[0]; - _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) -} -inline PROTOBUF_NDEBUG_INLINE ExportNotification::Impl_::Impl_( - ::google::protobuf::internal::InternalVisibility visibility, - ::google::protobuf::Arena* arena) - : _cached_size_{0}, - context_(arena), - dependent_handle_(arena) {} - -inline void ExportNotification::SharedCtor(::_pb::Arena* arena) { - new (&_impl_) Impl_(internal_visibility(), arena); - ::memset(reinterpret_cast(&_impl_) + - offsetof(Impl_, ticket_), - 0, - offsetof(Impl_, export_state_) - - offsetof(Impl_, ticket_) + - sizeof(Impl_::export_state_)); -} -ExportNotification::~ExportNotification() { - // @@protoc_insertion_point(destructor:io.deephaven.proto.backplane.grpc.ExportNotification) - _internal_metadata_.Delete<::google::protobuf::UnknownFieldSet>(); - SharedDtor(); -} -inline void ExportNotification::SharedDtor() { - ABSL_DCHECK(GetArena() == nullptr); - _impl_.context_.Destroy(); - _impl_.dependent_handle_.Destroy(); - delete _impl_.ticket_; - _impl_.~Impl_(); -} - -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_ = { - { - PROTOBUF_FIELD_OFFSET(ExportNotification, _impl_._has_bits_), - 0, // no _extensions_ - 4, 24, // max_field_number, fast_idx_mask - offsetof(decltype(_table_), field_lookup_table), - 4294967280, // skipmap - offsetof(decltype(_table_), field_entries), - 4, // num_field_entries - 1, // num_aux_entries - offsetof(decltype(_table_), 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::ExportNotification>(), // to_prefetch - #endif // PROTOBUF_PREFETCH_PARSE_TABLE - }, {{ - // string dependent_handle = 4; - {::_pbi::TcParser::FastUS1, - {34, 63, 0, PROTOBUF_FIELD_OFFSET(ExportNotification, _impl_.dependent_handle_)}}, - // .io.deephaven.proto.backplane.grpc.Ticket ticket = 1; - {::_pbi::TcParser::FastMtS1, - {10, 0, 0, PROTOBUF_FIELD_OFFSET(ExportNotification, _impl_.ticket_)}}, - // .io.deephaven.proto.backplane.grpc.ExportNotification.State export_state = 2; - {::_pbi::TcParser::SingularVarintNoZag1<::uint32_t, offsetof(ExportNotification, _impl_.export_state_), 63>(), - {16, 63, 0, PROTOBUF_FIELD_OFFSET(ExportNotification, _impl_.export_state_)}}, - // string context = 3; - {::_pbi::TcParser::FastUS1, - {26, 63, 0, PROTOBUF_FIELD_OFFSET(ExportNotification, _impl_.context_)}}, - }}, {{ - 65535, 65535 - }}, {{ - // .io.deephaven.proto.backplane.grpc.Ticket ticket = 1; - {PROTOBUF_FIELD_OFFSET(ExportNotification, _impl_.ticket_), _Internal::kHasBitsOffset + 0, 0, - (0 | ::_fl::kFcOptional | ::_fl::kMessage | ::_fl::kTvTable)}, - // .io.deephaven.proto.backplane.grpc.ExportNotification.State export_state = 2; - {PROTOBUF_FIELD_OFFSET(ExportNotification, _impl_.export_state_), -1, 0, - (0 | ::_fl::kFcSingular | ::_fl::kOpenEnum)}, - // string context = 3; - {PROTOBUF_FIELD_OFFSET(ExportNotification, _impl_.context_), -1, 0, - (0 | ::_fl::kFcSingular | ::_fl::kUtf8String | ::_fl::kRepAString)}, - // string dependent_handle = 4; - {PROTOBUF_FIELD_OFFSET(ExportNotification, _impl_.dependent_handle_), -1, 0, - (0 | ::_fl::kFcSingular | ::_fl::kUtf8String | ::_fl::kRepAString)}, - }}, {{ - {::_pbi::TcParser::GetTable<::io::deephaven::proto::backplane::grpc::Ticket>()}, - }}, {{ - "\64\0\0\7\20\0\0\0" - "io.deephaven.proto.backplane.grpc.ExportNotification" - "context" - "dependent_handle" - }}, -}; - -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; - - _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>(); -} - -#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; - (void) cached_has_bits; - - if (!from._internal_context().empty()) { - _this->_internal_set_context(from._internal_context()); - } - if (!from._internal_dependent_handle().empty()) { - _this->_internal_set_dependent_handle(from._internal_dependent_handle()); - } - 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->_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_); -} - -void ExportNotification::CopyFrom(const ExportNotification& from) { -// @@protoc_insertion_point(class_specific_copy_from_start:io.deephaven.proto.backplane.grpc.ExportNotification) - if (&from == this) return; - Clear(); - MergeFrom(from); -} - - -void ExportNotification::InternalSwap(ExportNotification* PROTOBUF_RESTRICT other) { - using std::swap; - auto* arena = GetArena(); - ABSL_DCHECK_EQ(arena, other->GetArena()); - _internal_metadata_.InternalSwap(&other->_internal_metadata_); - swap(_impl_._has_bits_[0], other->_impl_._has_bits_[0]); - ::_pbi::ArenaStringPtr::InternalSwap(&_impl_.context_, &other->_impl_.context_, arena); - ::_pbi::ArenaStringPtr::InternalSwap(&_impl_.dependent_handle_, &other->_impl_.dependent_handle_, arena); - ::google::protobuf::internal::memswap< - PROTOBUF_FIELD_OFFSET(ExportNotification, _impl_.export_state_) - + sizeof(ExportNotification::_impl_.export_state_) - - PROTOBUF_FIELD_OFFSET(ExportNotification, _impl_.ticket_)>( - reinterpret_cast(&_impl_.ticket_), - reinterpret_cast(&other->_impl_.ticket_)); -} - -::google::protobuf::Metadata ExportNotification::GetMetadata() const { - return ::google::protobuf::Message::GetMetadataImpl(GetClassData()->full()); -} -// =================================================================== - -class TerminationNotificationRequest::_Internal { - public: -}; - -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>( - from._internal_metadata_); - - // @@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 - {{ - }}, -}; - - - - - - - - -::google::protobuf::Metadata TerminationNotificationRequest::GetMetadata() const { - return ::google::protobuf::internal::ZeroFieldsBase::GetMetadataImpl(GetClassData()->full()); -} -// =================================================================== - -class TerminationNotificationResponse_StackTrace::_Internal { - public: -}; - -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 ::io::deephaven::proto::backplane::grpc::TerminationNotificationResponse_StackTrace& from_msg) - : elements_{visibility, arena, from.elements_}, - type_(arena, from.type_), - message_(arena, from.message_), - _cached_size_{0} {} - -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_, from); - - // @@protoc_insertion_point(copy_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) - : elements_{visibility, arena}, - type_(arena), - message_(arena), - _cached_size_{0} {} - -inline void TerminationNotificationResponse_StackTrace::SharedCtor(::_pb::Arena* arena) { - new (&_impl_) Impl_(internal_visibility(), arena); -} -TerminationNotificationResponse_StackTrace::~TerminationNotificationResponse_StackTrace() { - // @@protoc_insertion_point(destructor:io.deephaven.proto.backplane.grpc.TerminationNotificationResponse.StackTrace) - _internal_metadata_.Delete<::google::protobuf::UnknownFieldSet>(); - SharedDtor(); -} -inline void TerminationNotificationResponse_StackTrace::SharedDtor() { - ABSL_DCHECK(GetArena() == nullptr); - _impl_.type_.Destroy(); - _impl_.message_.Destroy(); - _impl_.~Impl_(); -} - -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_ = { - { - 0, // no _has_bits_ - 0, // no _extensions_ - 3, 24, // max_field_number, fast_idx_mask - offsetof(decltype(_table_), field_lookup_table), - 4294967288, // skipmap - offsetof(decltype(_table_), field_entries), - 3, // 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::TerminationNotificationResponse_StackTrace>(), // to_prefetch - #endif // PROTOBUF_PREFETCH_PARSE_TABLE - }, {{ - {::_pbi::TcParser::MiniParse, {}}, - // string type = 1; - {::_pbi::TcParser::FastUS1, - {10, 63, 0, PROTOBUF_FIELD_OFFSET(TerminationNotificationResponse_StackTrace, _impl_.type_)}}, - // string message = 2; - {::_pbi::TcParser::FastUS1, - {18, 63, 0, PROTOBUF_FIELD_OFFSET(TerminationNotificationResponse_StackTrace, _impl_.message_)}}, - // repeated string elements = 3; - {::_pbi::TcParser::FastUR1, - {26, 63, 0, PROTOBUF_FIELD_OFFSET(TerminationNotificationResponse_StackTrace, _impl_.elements_)}}, - }}, {{ - 65535, 65535 - }}, {{ - // string type = 1; - {PROTOBUF_FIELD_OFFSET(TerminationNotificationResponse_StackTrace, _impl_.type_), 0, 0, - (0 | ::_fl::kFcSingular | ::_fl::kUtf8String | ::_fl::kRepAString)}, - // string message = 2; - {PROTOBUF_FIELD_OFFSET(TerminationNotificationResponse_StackTrace, _impl_.message_), 0, 0, - (0 | ::_fl::kFcSingular | ::_fl::kUtf8String | ::_fl::kRepAString)}, - // repeated string elements = 3; - {PROTOBUF_FIELD_OFFSET(TerminationNotificationResponse_StackTrace, _impl_.elements_), 0, 0, - (0 | ::_fl::kFcRepeated | ::_fl::kUtf8String | ::_fl::kRepSString)}, - }}, - // no aux_entries - {{ - "\114\4\7\10\0\0\0\0" - "io.deephaven.proto.backplane.grpc.TerminationNotificationResponse.StackTrace" - "type" - "message" - "elements" - }}, -}; - -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; - - _impl_.elements_.Clear(); - _impl_.type_.ClearToEmpty(); - _impl_.message_.ClearToEmpty(); - _internal_metadata_.Clear<::google::protobuf::UnknownFieldSet>(); -} - -#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) - ABSL_DCHECK_NE(&from, _this); - ::uint32_t cached_has_bits = 0; - (void) cached_has_bits; - - _this->_internal_mutable_elements()->MergeFrom(from._internal_elements()); - if (!from._internal_type().empty()) { - _this->_internal_set_type(from._internal_type()); - } - if (!from._internal_message().empty()) { - _this->_internal_set_message(from._internal_message()); - } - _this->_internal_metadata_.MergeFrom<::google::protobuf::UnknownFieldSet>(from._internal_metadata_); -} - -void TerminationNotificationResponse_StackTrace::CopyFrom(const TerminationNotificationResponse_StackTrace& from) { -// @@protoc_insertion_point(class_specific_copy_from_start:io.deephaven.proto.backplane.grpc.TerminationNotificationResponse.StackTrace) - if (&from == this) return; - Clear(); - MergeFrom(from); -} - - -void TerminationNotificationResponse_StackTrace::InternalSwap(TerminationNotificationResponse_StackTrace* PROTOBUF_RESTRICT other) { - using std::swap; - auto* arena = GetArena(); - ABSL_DCHECK_EQ(arena, other->GetArena()); - _internal_metadata_.InternalSwap(&other->_internal_metadata_); - _impl_.elements_.InternalSwap(&other->_impl_.elements_); - ::_pbi::ArenaStringPtr::InternalSwap(&_impl_.type_, &other->_impl_.type_, arena); - ::_pbi::ArenaStringPtr::InternalSwap(&_impl_.message_, &other->_impl_.message_, arena); -} - -::google::protobuf::Metadata TerminationNotificationResponse_StackTrace::GetMetadata() const { - return ::google::protobuf::Message::GetMetadataImpl(GetClassData()->full()); -} -// =================================================================== - -class TerminationNotificationResponse::_Internal { - public: -}; - -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 ::io::deephaven::proto::backplane::grpc::TerminationNotificationResponse& from_msg) - : stack_traces_{visibility, arena, from.stack_traces_}, - reason_(arena, from.reason_), - _cached_size_{0} {} - -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_, from); - ::memcpy(reinterpret_cast(&_impl_) + - offsetof(Impl_, abnormal_termination_), - reinterpret_cast(&from._impl_) + - offsetof(Impl_, abnormal_termination_), - offsetof(Impl_, is_from_uncaught_exception_) - - offsetof(Impl_, abnormal_termination_) + - sizeof(Impl_::is_from_uncaught_exception_)); - - // @@protoc_insertion_point(copy_constructor:io.deephaven.proto.backplane.grpc.TerminationNotificationResponse) -} -inline PROTOBUF_NDEBUG_INLINE TerminationNotificationResponse::Impl_::Impl_( - ::google::protobuf::internal::InternalVisibility visibility, - ::google::protobuf::Arena* arena) - : stack_traces_{visibility, arena}, - reason_(arena), - _cached_size_{0} {} - -inline void TerminationNotificationResponse::SharedCtor(::_pb::Arena* arena) { - new (&_impl_) Impl_(internal_visibility(), arena); - ::memset(reinterpret_cast(&_impl_) + - offsetof(Impl_, abnormal_termination_), - 0, - offsetof(Impl_, is_from_uncaught_exception_) - - offsetof(Impl_, abnormal_termination_) + - sizeof(Impl_::is_from_uncaught_exception_)); -} -TerminationNotificationResponse::~TerminationNotificationResponse() { - // @@protoc_insertion_point(destructor:io.deephaven.proto.backplane.grpc.TerminationNotificationResponse) - _internal_metadata_.Delete<::google::protobuf::UnknownFieldSet>(); - SharedDtor(); -} -inline void TerminationNotificationResponse::SharedDtor() { - ABSL_DCHECK(GetArena() == nullptr); - _impl_.reason_.Destroy(); - _impl_.~Impl_(); -} - -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_ = { - { - 0, // no _has_bits_ - 0, // no _extensions_ - 4, 24, // max_field_number, fast_idx_mask - offsetof(decltype(_table_), field_lookup_table), - 4294967280, // skipmap - offsetof(decltype(_table_), field_entries), - 4, // num_field_entries - 1, // num_aux_entries - offsetof(decltype(_table_), 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::TerminationNotificationResponse>(), // to_prefetch - #endif // PROTOBUF_PREFETCH_PARSE_TABLE - }, {{ - // repeated .io.deephaven.proto.backplane.grpc.TerminationNotificationResponse.StackTrace stack_traces = 4; - {::_pbi::TcParser::FastMtR1, - {34, 63, 0, PROTOBUF_FIELD_OFFSET(TerminationNotificationResponse, _impl_.stack_traces_)}}, - // bool abnormal_termination = 1; - {::_pbi::TcParser::SingularVarintNoZag1(), - {8, 63, 0, PROTOBUF_FIELD_OFFSET(TerminationNotificationResponse, _impl_.abnormal_termination_)}}, - // string reason = 2; - {::_pbi::TcParser::FastUS1, - {18, 63, 0, PROTOBUF_FIELD_OFFSET(TerminationNotificationResponse, _impl_.reason_)}}, - // bool is_from_uncaught_exception = 3; - {::_pbi::TcParser::SingularVarintNoZag1(), - {24, 63, 0, PROTOBUF_FIELD_OFFSET(TerminationNotificationResponse, _impl_.is_from_uncaught_exception_)}}, - }}, {{ - 65535, 65535 - }}, {{ - // bool abnormal_termination = 1; - {PROTOBUF_FIELD_OFFSET(TerminationNotificationResponse, _impl_.abnormal_termination_), 0, 0, - (0 | ::_fl::kFcSingular | ::_fl::kBool)}, - // string reason = 2; - {PROTOBUF_FIELD_OFFSET(TerminationNotificationResponse, _impl_.reason_), 0, 0, - (0 | ::_fl::kFcSingular | ::_fl::kUtf8String | ::_fl::kRepAString)}, - // bool is_from_uncaught_exception = 3; - {PROTOBUF_FIELD_OFFSET(TerminationNotificationResponse, _impl_.is_from_uncaught_exception_), 0, 0, - (0 | ::_fl::kFcSingular | ::_fl::kBool)}, - // repeated .io.deephaven.proto.backplane.grpc.TerminationNotificationResponse.StackTrace stack_traces = 4; - {PROTOBUF_FIELD_OFFSET(TerminationNotificationResponse, _impl_.stack_traces_), 0, 0, - (0 | ::_fl::kFcRepeated | ::_fl::kMessage | ::_fl::kTvTable)}, - }}, {{ - {::_pbi::TcParser::GetTable<::io::deephaven::proto::backplane::grpc::TerminationNotificationResponse_StackTrace>()}, - }}, {{ - "\101\0\6\0\0\0\0\0" - "io.deephaven.proto.backplane.grpc.TerminationNotificationResponse" - "reason" - }}, -}; - -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; - - _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>(); -} - -#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) - ABSL_DCHECK_NE(&from, _this); - ::uint32_t cached_has_bits = 0; - (void) cached_has_bits; - - _this->_internal_mutable_stack_traces()->MergeFrom( - from._internal_stack_traces()); - if (!from._internal_reason().empty()) { - _this->_internal_set_reason(from._internal_reason()); - } - if (from._internal_abnormal_termination() != 0) { - _this->_impl_.abnormal_termination_ = from._impl_.abnormal_termination_; - } - if (from._internal_is_from_uncaught_exception() != 0) { - _this->_impl_.is_from_uncaught_exception_ = from._impl_.is_from_uncaught_exception_; - } - _this->_internal_metadata_.MergeFrom<::google::protobuf::UnknownFieldSet>(from._internal_metadata_); -} - -void TerminationNotificationResponse::CopyFrom(const TerminationNotificationResponse& from) { -// @@protoc_insertion_point(class_specific_copy_from_start:io.deephaven.proto.backplane.grpc.TerminationNotificationResponse) - if (&from == this) return; - Clear(); - MergeFrom(from); -} - - -void TerminationNotificationResponse::InternalSwap(TerminationNotificationResponse* PROTOBUF_RESTRICT other) { - using std::swap; - auto* arena = GetArena(); - ABSL_DCHECK_EQ(arena, other->GetArena()); - _internal_metadata_.InternalSwap(&other->_internal_metadata_); - _impl_.stack_traces_.InternalSwap(&other->_impl_.stack_traces_); - ::_pbi::ArenaStringPtr::InternalSwap(&_impl_.reason_, &other->_impl_.reason_, arena); - ::google::protobuf::internal::memswap< - PROTOBUF_FIELD_OFFSET(TerminationNotificationResponse, _impl_.is_from_uncaught_exception_) - + sizeof(TerminationNotificationResponse::_impl_.is_from_uncaught_exception_) - - PROTOBUF_FIELD_OFFSET(TerminationNotificationResponse, _impl_.abnormal_termination_)>( - reinterpret_cast(&_impl_.abnormal_termination_), - reinterpret_cast(&other->_impl_.abnormal_termination_)); -} - -::google::protobuf::Metadata TerminationNotificationResponse::GetMetadata() const { - return ::google::protobuf::Message::GetMetadataImpl(GetClassData()->full()); -} -// @@protoc_insertion_point(namespace_scope) -} // namespace grpc -} // namespace backplane -} // namespace proto -} // namespace deephaven -} // namespace io -namespace google { -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 deleted file mode 100644 index 65a3db17f3f..00000000000 --- a/cpp-client/deephaven/dhclient/proto/deephaven/proto/session.pb.h +++ /dev/null @@ -1,4435 +0,0 @@ -// 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 - -#ifndef GOOGLE_PROTOBUF_INCLUDED_deephaven_2fproto_2fsession_2eproto_2epb_2eh -#define GOOGLE_PROTOBUF_INCLUDED_deephaven_2fproto_2fsession_2eproto_2epb_2eh - -#include -#include -#include -#include - -#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" -#include "google/protobuf/generated_message_bases.h" -#include "google/protobuf/generated_message_tctable_decl.h" -#include "google/protobuf/generated_message_util.h" -#include "google/protobuf/metadata_lite.h" -#include "google/protobuf/generated_message_reflection.h" -#include "google/protobuf/message.h" -#include "google/protobuf/repeated_field.h" // IWYU pragma: export -#include "google/protobuf/extension_set.h" // IWYU pragma: export -#include "google/protobuf/generated_enum_reflection.h" -#include "google/protobuf/unknown_field_set.h" -#include "deephaven/proto/ticket.pb.h" -// @@protoc_insertion_point(includes) - -// Must be included last. -#include "google/protobuf/port_def.inc" - -#define PROTOBUF_INTERNAL_EXPORT_deephaven_2fproto_2fsession_2eproto - -namespace google { -namespace protobuf { -namespace internal { -class AnyMetadata; -} // namespace internal -} // namespace protobuf -} // namespace google - -// Internal implementation detail -- do not use these members. -struct TableStruct_deephaven_2fproto_2fsession_2eproto { - static const ::uint32_t offsets[]; -}; -extern const ::google::protobuf::internal::DescriptorTable - descriptor_table_deephaven_2fproto_2fsession_2eproto; -namespace io { -namespace deephaven { -namespace proto { -namespace backplane { -namespace grpc { -class CloseSessionResponse; -struct CloseSessionResponseDefaultTypeInternal; -extern CloseSessionResponseDefaultTypeInternal _CloseSessionResponse_default_instance_; -class ExportNotification; -struct ExportNotificationDefaultTypeInternal; -extern ExportNotificationDefaultTypeInternal _ExportNotification_default_instance_; -class ExportNotificationRequest; -struct ExportNotificationRequestDefaultTypeInternal; -extern ExportNotificationRequestDefaultTypeInternal _ExportNotificationRequest_default_instance_; -class ExportRequest; -struct ExportRequestDefaultTypeInternal; -extern ExportRequestDefaultTypeInternal _ExportRequest_default_instance_; -class ExportResponse; -struct ExportResponseDefaultTypeInternal; -extern ExportResponseDefaultTypeInternal _ExportResponse_default_instance_; -class HandshakeRequest; -struct HandshakeRequestDefaultTypeInternal; -extern HandshakeRequestDefaultTypeInternal _HandshakeRequest_default_instance_; -class HandshakeResponse; -struct HandshakeResponseDefaultTypeInternal; -extern HandshakeResponseDefaultTypeInternal _HandshakeResponse_default_instance_; -class PublishRequest; -struct PublishRequestDefaultTypeInternal; -extern PublishRequestDefaultTypeInternal _PublishRequest_default_instance_; -class PublishResponse; -struct PublishResponseDefaultTypeInternal; -extern PublishResponseDefaultTypeInternal _PublishResponse_default_instance_; -class ReleaseRequest; -struct ReleaseRequestDefaultTypeInternal; -extern ReleaseRequestDefaultTypeInternal _ReleaseRequest_default_instance_; -class ReleaseResponse; -struct ReleaseResponseDefaultTypeInternal; -extern ReleaseResponseDefaultTypeInternal _ReleaseResponse_default_instance_; -class TerminationNotificationRequest; -struct TerminationNotificationRequestDefaultTypeInternal; -extern TerminationNotificationRequestDefaultTypeInternal _TerminationNotificationRequest_default_instance_; -class TerminationNotificationResponse; -struct TerminationNotificationResponseDefaultTypeInternal; -extern TerminationNotificationResponseDefaultTypeInternal _TerminationNotificationResponse_default_instance_; -class TerminationNotificationResponse_StackTrace; -struct TerminationNotificationResponse_StackTraceDefaultTypeInternal; -extern TerminationNotificationResponse_StackTraceDefaultTypeInternal _TerminationNotificationResponse_StackTrace_default_instance_; -class WrappedAuthenticationRequest; -struct WrappedAuthenticationRequestDefaultTypeInternal; -extern WrappedAuthenticationRequestDefaultTypeInternal _WrappedAuthenticationRequest_default_instance_; -} // namespace grpc -} // namespace backplane -} // namespace proto -} // namespace deephaven -} // namespace io -namespace google { -namespace protobuf { -} // namespace protobuf -} // namespace google - -namespace io { -namespace deephaven { -namespace proto { -namespace backplane { -namespace grpc { -enum ExportNotification_State : int { - ExportNotification_State_UNKNOWN = 0, - ExportNotification_State_PENDING = 1, - ExportNotification_State_PUBLISHING = 2, - ExportNotification_State_QUEUED = 3, - ExportNotification_State_RUNNING = 4, - ExportNotification_State_EXPORTED = 5, - ExportNotification_State_RELEASED = 6, - ExportNotification_State_CANCELLED = 7, - ExportNotification_State_FAILED = 8, - ExportNotification_State_DEPENDENCY_FAILED = 9, - ExportNotification_State_DEPENDENCY_NEVER_FOUND = 10, - ExportNotification_State_DEPENDENCY_CANCELLED = 11, - ExportNotification_State_DEPENDENCY_RELEASED = 12, - ExportNotification_State_ExportNotification_State_INT_MIN_SENTINEL_DO_NOT_USE_ = - std::numeric_limits<::int32_t>::min(), - ExportNotification_State_ExportNotification_State_INT_MAX_SENTINEL_DO_NOT_USE_ = - std::numeric_limits<::int32_t>::max(), -}; - -bool ExportNotification_State_IsValid(int value); -extern const uint32_t ExportNotification_State_internal_data_[]; -constexpr ExportNotification_State ExportNotification_State_State_MIN = static_cast(0); -constexpr ExportNotification_State ExportNotification_State_State_MAX = static_cast(12); -constexpr int ExportNotification_State_State_ARRAYSIZE = 12 + 1; -const ::google::protobuf::EnumDescriptor* -ExportNotification_State_descriptor(); -template -const std::string& ExportNotification_State_Name(T value) { - static_assert(std::is_same::value || - std::is_integral::value, - "Incorrect type passed to State_Name()."); - return ExportNotification_State_Name(static_cast(value)); -} -template <> -inline const std::string& ExportNotification_State_Name(ExportNotification_State value) { - return ::google::protobuf::internal::NameOfDenseEnum( - static_cast(value)); -} -inline bool ExportNotification_State_Parse(absl::string_view name, ExportNotification_State* value) { - return ::google::protobuf::internal::ParseNamedEnum( - ExportNotification_State_descriptor(), name, value); -} - -// =================================================================== - - -// ------------------------------------------------------------------- - -class WrappedAuthenticationRequest final : public ::google::protobuf::Message -/* @@protoc_insertion_point(class_definition:io.deephaven.proto.backplane.grpc.WrappedAuthenticationRequest) */ { - public: - inline WrappedAuthenticationRequest() : WrappedAuthenticationRequest(nullptr) {} - ~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; - } - inline WrappedAuthenticationRequest& operator=(WrappedAuthenticationRequest&& 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 WrappedAuthenticationRequest& default_instance() { - return *internal_default_instance(); - } - 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); } - 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 - if (GetArena() == other->GetArena()) { -#endif // !PROTOBUF_FORCE_COPY_IN_SWAP - InternalSwap(other); - } else { - ::google::protobuf::internal::GenericSwap(this, other); - } - } - void UnsafeArenaSwap(WrappedAuthenticationRequest* other) { - if (other == this) return; - ABSL_DCHECK(GetArena() == other->GetArena()); - InternalSwap(other); - } - - // implements Message ---------------------------------------------- - - 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); } - - private: - static void MergeImpl( - ::google::protobuf::MessageLite& to_msg, - const ::google::protobuf::MessageLite& from_msg); - - 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; - #endif // PROTOBUF_CUSTOM_VTABLE - int GetCachedSize() const { return _impl_._cached_size_.Get(); } - - private: - void SharedCtor(::google::protobuf::Arena* arena); - void SharedDtor(); - void InternalSwap(WrappedAuthenticationRequest* other); - private: - friend class ::google::protobuf::internal::AnyMetadata; - 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); - 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, - }; - // string type = 4; - void clear_type() ; - const std::string& type() const; - template - void set_type(Arg_&& arg, Args_... args); - std::string* mutable_type(); - PROTOBUF_NODISCARD std::string* release_type(); - void set_allocated_type(std::string* value); - - private: - const std::string& _internal_type() const; - inline PROTOBUF_ALWAYS_INLINE void _internal_set_type( - const std::string& value); - std::string* _internal_mutable_type(); - - public: - // bytes payload = 5; - void clear_payload() ; - const std::string& payload() const; - template - void set_payload(Arg_&& arg, Args_... args); - std::string* mutable_payload(); - PROTOBUF_NODISCARD std::string* release_payload(); - void set_allocated_payload(std::string* value); - - private: - const std::string& _internal_payload() const; - inline PROTOBUF_ALWAYS_INLINE void _internal_set_payload( - const std::string& value); - std::string* _internal_mutable_payload(); - - public: - // @@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 - 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 WrappedAuthenticationRequest& from_msg); - ::google::protobuf::internal::ArenaStringPtr type_; - ::google::protobuf::internal::ArenaStringPtr payload_; - mutable ::google::protobuf::internal::CachedSize _cached_size_; - PROTOBUF_TSAN_DECLARE_MEMBER - }; - 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) */ { - public: - inline TerminationNotificationResponse_StackTrace() : TerminationNotificationResponse_StackTrace(nullptr) {} - ~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; - } - inline TerminationNotificationResponse_StackTrace& operator=(TerminationNotificationResponse_StackTrace&& 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 TerminationNotificationResponse_StackTrace& default_instance() { - return *internal_default_instance(); - } - 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); } - 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 - if (GetArena() == other->GetArena()) { -#endif // !PROTOBUF_FORCE_COPY_IN_SWAP - InternalSwap(other); - } else { - ::google::protobuf::internal::GenericSwap(this, other); - } - } - void UnsafeArenaSwap(TerminationNotificationResponse_StackTrace* other) { - if (other == this) return; - ABSL_DCHECK(GetArena() == other->GetArena()); - InternalSwap(other); - } - - // implements Message ---------------------------------------------- - - 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); } - - private: - static void MergeImpl( - ::google::protobuf::MessageLite& to_msg, - const ::google::protobuf::MessageLite& from_msg); - - 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; - #endif // PROTOBUF_CUSTOM_VTABLE - int GetCachedSize() const { return _impl_._cached_size_.Get(); } - - private: - void SharedCtor(::google::protobuf::Arena* arena); - void SharedDtor(); - void InternalSwap(TerminationNotificationResponse_StackTrace* other); - private: - friend class ::google::protobuf::internal::AnyMetadata; - 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); - 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, - kMessageFieldNumber = 2, - }; - // repeated string elements = 3; - int elements_size() const; - private: - int _internal_elements_size() const; - - public: - void clear_elements() ; - const std::string& elements(int index) const; - std::string* mutable_elements(int index); - template - void set_elements(int index, Arg_&& value, Args_... args); - std::string* add_elements(); - template - void add_elements(Arg_&& value, Args_... args); - const ::google::protobuf::RepeatedPtrField& elements() const; - ::google::protobuf::RepeatedPtrField* mutable_elements(); - - private: - const ::google::protobuf::RepeatedPtrField& _internal_elements() const; - ::google::protobuf::RepeatedPtrField* _internal_mutable_elements(); - - public: - // string type = 1; - void clear_type() ; - const std::string& type() const; - template - void set_type(Arg_&& arg, Args_... args); - std::string* mutable_type(); - PROTOBUF_NODISCARD std::string* release_type(); - void set_allocated_type(std::string* value); - - private: - const std::string& _internal_type() const; - inline PROTOBUF_ALWAYS_INLINE void _internal_set_type( - const std::string& value); - std::string* _internal_mutable_type(); - - public: - // string message = 2; - void clear_message() ; - const std::string& message() const; - template - void set_message(Arg_&& arg, Args_... args); - std::string* mutable_message(); - PROTOBUF_NODISCARD std::string* release_message(); - void set_allocated_message(std::string* value); - - private: - const std::string& _internal_message() const; - inline PROTOBUF_ALWAYS_INLINE void _internal_set_message( - const std::string& value); - std::string* _internal_mutable_message(); - - public: - // @@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 - 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 TerminationNotificationResponse_StackTrace& from_msg); - ::google::protobuf::RepeatedPtrField elements_; - ::google::protobuf::internal::ArenaStringPtr type_; - ::google::protobuf::internal::ArenaStringPtr message_; - mutable ::google::protobuf::internal::CachedSize _cached_size_; - PROTOBUF_TSAN_DECLARE_MEMBER - }; - 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) */ { - public: - inline TerminationNotificationRequest() : TerminationNotificationRequest(nullptr) {} - 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; - } - inline TerminationNotificationRequest& operator=(TerminationNotificationRequest&& 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 TerminationNotificationRequest& default_instance() { - return *internal_default_instance(); - } - 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); } - 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 - if (GetArena() == other->GetArena()) { -#endif // !PROTOBUF_FORCE_COPY_IN_SWAP - InternalSwap(other); - } else { - ::google::protobuf::internal::GenericSwap(this, other); - } - } - void UnsafeArenaSwap(TerminationNotificationRequest* other) { - if (other == this) return; - ABSL_DCHECK(GetArena() == other->GetArena()); - InternalSwap(other); - } - - // implements Message ---------------------------------------------- - - 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) { - ::google::protobuf::internal::ZeroFieldsBase::CopyImpl(*this, from); - } - using ::google::protobuf::internal::ZeroFieldsBase::MergeFrom; - void MergeFrom(const TerminationNotificationRequest& 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.TerminationNotificationRequest"; } - - protected: - explicit TerminationNotificationRequest(::google::protobuf::Arena* arena); - TerminationNotificationRequest(::google::protobuf::Arena* arena, const TerminationNotificationRequest& from); - 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; - 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 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) */ { - public: - inline ReleaseResponse() : ReleaseResponse(nullptr) {} - 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; - } - inline ReleaseResponse& operator=(ReleaseResponse&& 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 ReleaseResponse& default_instance() { - return *internal_default_instance(); - } - 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); } - 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 - if (GetArena() == other->GetArena()) { -#endif // !PROTOBUF_FORCE_COPY_IN_SWAP - InternalSwap(other); - } else { - ::google::protobuf::internal::GenericSwap(this, other); - } - } - void UnsafeArenaSwap(ReleaseResponse* other) { - if (other == this) return; - ABSL_DCHECK(GetArena() == other->GetArena()); - InternalSwap(other); - } - - // implements Message ---------------------------------------------- - - 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) { - ::google::protobuf::internal::ZeroFieldsBase::CopyImpl(*this, from); - } - using ::google::protobuf::internal::ZeroFieldsBase::MergeFrom; - void MergeFrom(const ReleaseResponse& 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.ReleaseResponse"; } - - protected: - explicit ReleaseResponse(::google::protobuf::Arena* arena); - ReleaseResponse(::google::protobuf::Arena* arena, const ReleaseResponse& from); - 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; - 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 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) */ { - public: - inline PublishResponse() : PublishResponse(nullptr) {} - 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; - } - inline PublishResponse& operator=(PublishResponse&& 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 PublishResponse& default_instance() { - return *internal_default_instance(); - } - 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); } - 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 - if (GetArena() == other->GetArena()) { -#endif // !PROTOBUF_FORCE_COPY_IN_SWAP - InternalSwap(other); - } else { - ::google::protobuf::internal::GenericSwap(this, other); - } - } - void UnsafeArenaSwap(PublishResponse* other) { - if (other == this) return; - ABSL_DCHECK(GetArena() == other->GetArena()); - InternalSwap(other); - } - - // implements Message ---------------------------------------------- - - 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) { - ::google::protobuf::internal::ZeroFieldsBase::CopyImpl(*this, from); - } - using ::google::protobuf::internal::ZeroFieldsBase::MergeFrom; - void MergeFrom(const PublishResponse& 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.PublishResponse"; } - - protected: - explicit PublishResponse(::google::protobuf::Arena* arena); - PublishResponse(::google::protobuf::Arena* arena, const PublishResponse& from); - 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; - 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 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) */ { - public: - inline HandshakeResponse() : HandshakeResponse(nullptr) {} - ~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; - } - inline HandshakeResponse& operator=(HandshakeResponse&& 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 HandshakeResponse& default_instance() { - return *internal_default_instance(); - } - 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); } - 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 - if (GetArena() == other->GetArena()) { -#endif // !PROTOBUF_FORCE_COPY_IN_SWAP - InternalSwap(other); - } else { - ::google::protobuf::internal::GenericSwap(this, other); - } - } - void UnsafeArenaSwap(HandshakeResponse* other) { - if (other == this) return; - ABSL_DCHECK(GetArena() == other->GetArena()); - InternalSwap(other); - } - - // implements Message ---------------------------------------------- - - 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); } - - private: - static void MergeImpl( - ::google::protobuf::MessageLite& to_msg, - const ::google::protobuf::MessageLite& from_msg); - - 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; - #endif // PROTOBUF_CUSTOM_VTABLE - int GetCachedSize() const { return _impl_._cached_size_.Get(); } - - private: - void SharedCtor(::google::protobuf::Arena* arena); - void SharedDtor(); - void InternalSwap(HandshakeResponse* other); - private: - friend class ::google::protobuf::internal::AnyMetadata; - 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); - 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, - kTokenDeadlineTimeMillisFieldNumber = 3, - kTokenExpirationDelayMillisFieldNumber = 4, - }; - // bytes metadata_header = 1 [deprecated = true]; - [[deprecated]] void clear_metadata_header() ; - [[deprecated]] const std::string& metadata_header() const; - template - [[deprecated]] void set_metadata_header(Arg_&& arg, Args_... args); - [[deprecated]] std::string* mutable_metadata_header(); - [[deprecated]] PROTOBUF_NODISCARD std::string* release_metadata_header(); - [[deprecated]] void set_allocated_metadata_header(std::string* value); - - private: - const std::string& _internal_metadata_header() const; - inline PROTOBUF_ALWAYS_INLINE void _internal_set_metadata_header( - const std::string& value); - std::string* _internal_mutable_metadata_header(); - - public: - // bytes session_token = 2 [deprecated = true]; - [[deprecated]] void clear_session_token() ; - [[deprecated]] const std::string& session_token() const; - template - [[deprecated]] void set_session_token(Arg_&& arg, Args_... args); - [[deprecated]] std::string* mutable_session_token(); - [[deprecated]] PROTOBUF_NODISCARD std::string* release_session_token(); - [[deprecated]] void set_allocated_session_token(std::string* value); - - private: - const std::string& _internal_session_token() const; - inline PROTOBUF_ALWAYS_INLINE void _internal_set_session_token( - const std::string& value); - std::string* _internal_mutable_session_token(); - - public: - // sint64 token_deadline_time_millis = 3 [deprecated = true, jstype = JS_STRING]; - [[deprecated]] void clear_token_deadline_time_millis() ; - [[deprecated]] ::int64_t token_deadline_time_millis() const; - [[deprecated]] void set_token_deadline_time_millis(::int64_t value); - - private: - ::int64_t _internal_token_deadline_time_millis() const; - void _internal_set_token_deadline_time_millis(::int64_t value); - - public: - // sint64 token_expiration_delay_millis = 4 [deprecated = true, jstype = JS_STRING]; - [[deprecated]] void clear_token_expiration_delay_millis() ; - [[deprecated]] ::int64_t token_expiration_delay_millis() const; - [[deprecated]] void set_token_expiration_delay_millis(::int64_t value); - - private: - ::int64_t _internal_token_expiration_delay_millis() const; - void _internal_set_token_expiration_delay_millis(::int64_t value); - - public: - // @@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 - 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 HandshakeResponse& from_msg); - ::google::protobuf::internal::ArenaStringPtr metadata_header_; - ::google::protobuf::internal::ArenaStringPtr session_token_; - ::int64_t token_deadline_time_millis_; - ::int64_t token_expiration_delay_millis_; - mutable ::google::protobuf::internal::CachedSize _cached_size_; - PROTOBUF_TSAN_DECLARE_MEMBER - }; - 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) */ { - public: - inline HandshakeRequest() : HandshakeRequest(nullptr) {} - ~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; - } - inline HandshakeRequest& operator=(HandshakeRequest&& 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 HandshakeRequest& default_instance() { - return *internal_default_instance(); - } - 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); } - 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 - if (GetArena() == other->GetArena()) { -#endif // !PROTOBUF_FORCE_COPY_IN_SWAP - InternalSwap(other); - } else { - ::google::protobuf::internal::GenericSwap(this, other); - } - } - void UnsafeArenaSwap(HandshakeRequest* other) { - if (other == this) return; - ABSL_DCHECK(GetArena() == other->GetArena()); - InternalSwap(other); - } - - // implements Message ---------------------------------------------- - - 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); } - - private: - static void MergeImpl( - ::google::protobuf::MessageLite& to_msg, - const ::google::protobuf::MessageLite& from_msg); - - 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; - #endif // PROTOBUF_CUSTOM_VTABLE - int GetCachedSize() const { return _impl_._cached_size_.Get(); } - - private: - void SharedCtor(::google::protobuf::Arena* arena); - void SharedDtor(); - void InternalSwap(HandshakeRequest* other); - private: - friend class ::google::protobuf::internal::AnyMetadata; - 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); - 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, - }; - // bytes payload = 2 [deprecated = true]; - [[deprecated]] void clear_payload() ; - [[deprecated]] const std::string& payload() const; - template - [[deprecated]] void set_payload(Arg_&& arg, Args_... args); - [[deprecated]] std::string* mutable_payload(); - [[deprecated]] PROTOBUF_NODISCARD std::string* release_payload(); - [[deprecated]] void set_allocated_payload(std::string* value); - - private: - const std::string& _internal_payload() const; - inline PROTOBUF_ALWAYS_INLINE void _internal_set_payload( - const std::string& value); - std::string* _internal_mutable_payload(); - - public: - // sint32 auth_protocol = 1 [deprecated = true]; - [[deprecated]] void clear_auth_protocol() ; - [[deprecated]] ::int32_t auth_protocol() const; - [[deprecated]] void set_auth_protocol(::int32_t value); - - private: - ::int32_t _internal_auth_protocol() const; - void _internal_set_auth_protocol(::int32_t value); - - public: - // @@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 - 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 HandshakeRequest& from_msg); - ::google::protobuf::internal::ArenaStringPtr payload_; - ::int32_t auth_protocol_; - mutable ::google::protobuf::internal::CachedSize _cached_size_; - PROTOBUF_TSAN_DECLARE_MEMBER - }; - 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) */ { - public: - inline ExportResponse() : ExportResponse(nullptr) {} - 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; - } - inline ExportResponse& operator=(ExportResponse&& 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 ExportResponse& default_instance() { - return *internal_default_instance(); - } - 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); } - 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 - if (GetArena() == other->GetArena()) { -#endif // !PROTOBUF_FORCE_COPY_IN_SWAP - InternalSwap(other); - } else { - ::google::protobuf::internal::GenericSwap(this, other); - } - } - void UnsafeArenaSwap(ExportResponse* other) { - if (other == this) return; - ABSL_DCHECK(GetArena() == other->GetArena()); - InternalSwap(other); - } - - // implements Message ---------------------------------------------- - - 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) { - ::google::protobuf::internal::ZeroFieldsBase::CopyImpl(*this, from); - } - using ::google::protobuf::internal::ZeroFieldsBase::MergeFrom; - void MergeFrom(const ExportResponse& 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.ExportResponse"; } - - protected: - explicit ExportResponse(::google::protobuf::Arena* arena); - ExportResponse(::google::protobuf::Arena* arena, const ExportResponse& from); - 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; - 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 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) */ { - public: - inline ExportNotificationRequest() : ExportNotificationRequest(nullptr) {} - 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; - } - inline ExportNotificationRequest& operator=(ExportNotificationRequest&& 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 ExportNotificationRequest& default_instance() { - return *internal_default_instance(); - } - 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); } - 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 - if (GetArena() == other->GetArena()) { -#endif // !PROTOBUF_FORCE_COPY_IN_SWAP - InternalSwap(other); - } else { - ::google::protobuf::internal::GenericSwap(this, other); - } - } - void UnsafeArenaSwap(ExportNotificationRequest* other) { - if (other == this) return; - ABSL_DCHECK(GetArena() == other->GetArena()); - InternalSwap(other); - } - - // implements Message ---------------------------------------------- - - 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) { - ::google::protobuf::internal::ZeroFieldsBase::CopyImpl(*this, from); - } - using ::google::protobuf::internal::ZeroFieldsBase::MergeFrom; - void MergeFrom(const ExportNotificationRequest& 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.ExportNotificationRequest"; } - - protected: - explicit ExportNotificationRequest(::google::protobuf::Arena* arena); - ExportNotificationRequest(::google::protobuf::Arena* arena, const ExportNotificationRequest& from); - 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; - 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 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) */ { - public: - inline CloseSessionResponse() : CloseSessionResponse(nullptr) {} - 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; - } - inline CloseSessionResponse& operator=(CloseSessionResponse&& 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 CloseSessionResponse& default_instance() { - return *internal_default_instance(); - } - 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); } - 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 - if (GetArena() == other->GetArena()) { -#endif // !PROTOBUF_FORCE_COPY_IN_SWAP - InternalSwap(other); - } else { - ::google::protobuf::internal::GenericSwap(this, other); - } - } - void UnsafeArenaSwap(CloseSessionResponse* other) { - if (other == this) return; - ABSL_DCHECK(GetArena() == other->GetArena()); - InternalSwap(other); - } - - // implements Message ---------------------------------------------- - - 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) { - ::google::protobuf::internal::ZeroFieldsBase::CopyImpl(*this, from); - } - using ::google::protobuf::internal::ZeroFieldsBase::MergeFrom; - void MergeFrom(const CloseSessionResponse& 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.CloseSessionResponse"; } - - protected: - explicit CloseSessionResponse(::google::protobuf::Arena* arena); - CloseSessionResponse(::google::protobuf::Arena* arena, const CloseSessionResponse& from); - 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; - 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 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) */ { - public: - inline TerminationNotificationResponse() : TerminationNotificationResponse(nullptr) {} - ~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; - } - inline TerminationNotificationResponse& operator=(TerminationNotificationResponse&& 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 TerminationNotificationResponse& default_instance() { - return *internal_default_instance(); - } - 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); } - 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 - if (GetArena() == other->GetArena()) { -#endif // !PROTOBUF_FORCE_COPY_IN_SWAP - InternalSwap(other); - } else { - ::google::protobuf::internal::GenericSwap(this, other); - } - } - void UnsafeArenaSwap(TerminationNotificationResponse* other) { - if (other == this) return; - ABSL_DCHECK(GetArena() == other->GetArena()); - InternalSwap(other); - } - - // implements Message ---------------------------------------------- - - 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); } - - private: - static void MergeImpl( - ::google::protobuf::MessageLite& to_msg, - const ::google::protobuf::MessageLite& from_msg); - - 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; - #endif // PROTOBUF_CUSTOM_VTABLE - int GetCachedSize() const { return _impl_._cached_size_.Get(); } - - private: - void SharedCtor(::google::protobuf::Arena* arena); - void SharedDtor(); - void InternalSwap(TerminationNotificationResponse* other); - private: - friend class ::google::protobuf::internal::AnyMetadata; - 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); - 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, - kAbnormalTerminationFieldNumber = 1, - kIsFromUncaughtExceptionFieldNumber = 3, - }; - // repeated .io.deephaven.proto.backplane.grpc.TerminationNotificationResponse.StackTrace stack_traces = 4; - int stack_traces_size() const; - private: - int _internal_stack_traces_size() const; - - 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(); - - 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; - // string reason = 2; - void clear_reason() ; - const std::string& reason() const; - template - void set_reason(Arg_&& arg, Args_... args); - std::string* mutable_reason(); - PROTOBUF_NODISCARD std::string* release_reason(); - void set_allocated_reason(std::string* value); - - private: - const std::string& _internal_reason() const; - inline PROTOBUF_ALWAYS_INLINE void _internal_set_reason( - const std::string& value); - std::string* _internal_mutable_reason(); - - public: - // bool abnormal_termination = 1; - void clear_abnormal_termination() ; - bool abnormal_termination() const; - void set_abnormal_termination(bool value); - - private: - bool _internal_abnormal_termination() const; - void _internal_set_abnormal_termination(bool value); - - public: - // bool is_from_uncaught_exception = 3; - void clear_is_from_uncaught_exception() ; - bool is_from_uncaught_exception() const; - void set_is_from_uncaught_exception(bool value); - - private: - bool _internal_is_from_uncaught_exception() const; - void _internal_set_is_from_uncaught_exception(bool value); - - public: - // @@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 - 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 TerminationNotificationResponse& from_msg); - ::google::protobuf::RepeatedPtrField< ::io::deephaven::proto::backplane::grpc::TerminationNotificationResponse_StackTrace > stack_traces_; - ::google::protobuf::internal::ArenaStringPtr reason_; - bool abnormal_termination_; - bool is_from_uncaught_exception_; - mutable ::google::protobuf::internal::CachedSize _cached_size_; - PROTOBUF_TSAN_DECLARE_MEMBER - }; - 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) */ { - public: - inline ReleaseRequest() : ReleaseRequest(nullptr) {} - ~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; - } - inline ReleaseRequest& operator=(ReleaseRequest&& 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 ReleaseRequest& default_instance() { - return *internal_default_instance(); - } - 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); } - 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 - if (GetArena() == other->GetArena()) { -#endif // !PROTOBUF_FORCE_COPY_IN_SWAP - InternalSwap(other); - } else { - ::google::protobuf::internal::GenericSwap(this, other); - } - } - void UnsafeArenaSwap(ReleaseRequest* other) { - if (other == this) return; - ABSL_DCHECK(GetArena() == other->GetArena()); - InternalSwap(other); - } - - // implements Message ---------------------------------------------- - - 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); } - - private: - static void MergeImpl( - ::google::protobuf::MessageLite& to_msg, - const ::google::protobuf::MessageLite& from_msg); - - 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; - #endif // PROTOBUF_CUSTOM_VTABLE - int GetCachedSize() const { return _impl_._cached_size_.Get(); } - - private: - void SharedCtor(::google::protobuf::Arena* arena); - void SharedDtor(); - void InternalSwap(ReleaseRequest* other); - private: - friend class ::google::protobuf::internal::AnyMetadata; - 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); - 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, - }; - // .io.deephaven.proto.backplane.grpc.Ticket id = 1; - bool has_id() const; - void clear_id() ; - const ::io::deephaven::proto::backplane::grpc::Ticket& id() const; - PROTOBUF_NODISCARD ::io::deephaven::proto::backplane::grpc::Ticket* release_id(); - ::io::deephaven::proto::backplane::grpc::Ticket* mutable_id(); - void set_allocated_id(::io::deephaven::proto::backplane::grpc::Ticket* value); - void unsafe_arena_set_allocated_id(::io::deephaven::proto::backplane::grpc::Ticket* value); - ::io::deephaven::proto::backplane::grpc::Ticket* unsafe_arena_release_id(); - - private: - const ::io::deephaven::proto::backplane::grpc::Ticket& _internal_id() const; - ::io::deephaven::proto::backplane::grpc::Ticket* _internal_mutable_id(); - - public: - // @@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 - 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 ReleaseRequest& from_msg); - ::google::protobuf::internal::HasBits<1> _has_bits_; - mutable ::google::protobuf::internal::CachedSize _cached_size_; - ::io::deephaven::proto::backplane::grpc::Ticket* id_; - PROTOBUF_TSAN_DECLARE_MEMBER - }; - 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) */ { - public: - inline PublishRequest() : PublishRequest(nullptr) {} - ~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; - } - inline PublishRequest& operator=(PublishRequest&& 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 PublishRequest& default_instance() { - return *internal_default_instance(); - } - 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); } - 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 - if (GetArena() == other->GetArena()) { -#endif // !PROTOBUF_FORCE_COPY_IN_SWAP - InternalSwap(other); - } else { - ::google::protobuf::internal::GenericSwap(this, other); - } - } - void UnsafeArenaSwap(PublishRequest* other) { - if (other == this) return; - ABSL_DCHECK(GetArena() == other->GetArena()); - InternalSwap(other); - } - - // implements Message ---------------------------------------------- - - 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); } - - private: - static void MergeImpl( - ::google::protobuf::MessageLite& to_msg, - const ::google::protobuf::MessageLite& from_msg); - - 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; - #endif // PROTOBUF_CUSTOM_VTABLE - int GetCachedSize() const { return _impl_._cached_size_.Get(); } - - private: - void SharedCtor(::google::protobuf::Arena* arena); - void SharedDtor(); - void InternalSwap(PublishRequest* other); - private: - friend class ::google::protobuf::internal::AnyMetadata; - 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); - 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, - }; - // .io.deephaven.proto.backplane.grpc.Ticket source_id = 1; - bool has_source_id() const; - void clear_source_id() ; - const ::io::deephaven::proto::backplane::grpc::Ticket& source_id() const; - PROTOBUF_NODISCARD ::io::deephaven::proto::backplane::grpc::Ticket* release_source_id(); - ::io::deephaven::proto::backplane::grpc::Ticket* mutable_source_id(); - void set_allocated_source_id(::io::deephaven::proto::backplane::grpc::Ticket* value); - void unsafe_arena_set_allocated_source_id(::io::deephaven::proto::backplane::grpc::Ticket* value); - ::io::deephaven::proto::backplane::grpc::Ticket* unsafe_arena_release_source_id(); - - private: - const ::io::deephaven::proto::backplane::grpc::Ticket& _internal_source_id() const; - ::io::deephaven::proto::backplane::grpc::Ticket* _internal_mutable_source_id(); - - public: - // .io.deephaven.proto.backplane.grpc.Ticket result_id = 2; - bool has_result_id() const; - void clear_result_id() ; - const ::io::deephaven::proto::backplane::grpc::Ticket& result_id() const; - PROTOBUF_NODISCARD ::io::deephaven::proto::backplane::grpc::Ticket* release_result_id(); - ::io::deephaven::proto::backplane::grpc::Ticket* mutable_result_id(); - void set_allocated_result_id(::io::deephaven::proto::backplane::grpc::Ticket* value); - void unsafe_arena_set_allocated_result_id(::io::deephaven::proto::backplane::grpc::Ticket* value); - ::io::deephaven::proto::backplane::grpc::Ticket* unsafe_arena_release_result_id(); - - private: - const ::io::deephaven::proto::backplane::grpc::Ticket& _internal_result_id() const; - ::io::deephaven::proto::backplane::grpc::Ticket* _internal_mutable_result_id(); - - public: - // @@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 - 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 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_; - ::io::deephaven::proto::backplane::grpc::Ticket* result_id_; - PROTOBUF_TSAN_DECLARE_MEMBER - }; - 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) */ { - public: - inline ExportRequest() : ExportRequest(nullptr) {} - ~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; - } - inline ExportRequest& operator=(ExportRequest&& 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 ExportRequest& default_instance() { - return *internal_default_instance(); - } - 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); } - 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 - if (GetArena() == other->GetArena()) { -#endif // !PROTOBUF_FORCE_COPY_IN_SWAP - InternalSwap(other); - } else { - ::google::protobuf::internal::GenericSwap(this, other); - } - } - void UnsafeArenaSwap(ExportRequest* other) { - if (other == this) return; - ABSL_DCHECK(GetArena() == other->GetArena()); - InternalSwap(other); - } - - // implements Message ---------------------------------------------- - - 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); } - - private: - static void MergeImpl( - ::google::protobuf::MessageLite& to_msg, - const ::google::protobuf::MessageLite& from_msg); - - 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; - #endif // PROTOBUF_CUSTOM_VTABLE - int GetCachedSize() const { return _impl_._cached_size_.Get(); } - - private: - void SharedCtor(::google::protobuf::Arena* arena); - void SharedDtor(); - void InternalSwap(ExportRequest* other); - private: - friend class ::google::protobuf::internal::AnyMetadata; - 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); - 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, - }; - // .io.deephaven.proto.backplane.grpc.Ticket source_id = 1; - bool has_source_id() const; - void clear_source_id() ; - const ::io::deephaven::proto::backplane::grpc::Ticket& source_id() const; - PROTOBUF_NODISCARD ::io::deephaven::proto::backplane::grpc::Ticket* release_source_id(); - ::io::deephaven::proto::backplane::grpc::Ticket* mutable_source_id(); - void set_allocated_source_id(::io::deephaven::proto::backplane::grpc::Ticket* value); - void unsafe_arena_set_allocated_source_id(::io::deephaven::proto::backplane::grpc::Ticket* value); - ::io::deephaven::proto::backplane::grpc::Ticket* unsafe_arena_release_source_id(); - - private: - const ::io::deephaven::proto::backplane::grpc::Ticket& _internal_source_id() const; - ::io::deephaven::proto::backplane::grpc::Ticket* _internal_mutable_source_id(); - - public: - // .io.deephaven.proto.backplane.grpc.Ticket result_id = 2; - bool has_result_id() const; - void clear_result_id() ; - const ::io::deephaven::proto::backplane::grpc::Ticket& result_id() const; - PROTOBUF_NODISCARD ::io::deephaven::proto::backplane::grpc::Ticket* release_result_id(); - ::io::deephaven::proto::backplane::grpc::Ticket* mutable_result_id(); - void set_allocated_result_id(::io::deephaven::proto::backplane::grpc::Ticket* value); - void unsafe_arena_set_allocated_result_id(::io::deephaven::proto::backplane::grpc::Ticket* value); - ::io::deephaven::proto::backplane::grpc::Ticket* unsafe_arena_release_result_id(); - - private: - const ::io::deephaven::proto::backplane::grpc::Ticket& _internal_result_id() const; - ::io::deephaven::proto::backplane::grpc::Ticket* _internal_mutable_result_id(); - - public: - // @@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 - 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 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_; - ::io::deephaven::proto::backplane::grpc::Ticket* result_id_; - PROTOBUF_TSAN_DECLARE_MEMBER - }; - 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) */ { - public: - inline ExportNotification() : ExportNotification(nullptr) {} - ~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; - } - inline ExportNotification& operator=(ExportNotification&& 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 ExportNotification& default_instance() { - return *internal_default_instance(); - } - 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); } - 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 - if (GetArena() == other->GetArena()) { -#endif // !PROTOBUF_FORCE_COPY_IN_SWAP - InternalSwap(other); - } else { - ::google::protobuf::internal::GenericSwap(this, other); - } - } - void UnsafeArenaSwap(ExportNotification* other) { - if (other == this) return; - ABSL_DCHECK(GetArena() == other->GetArena()); - InternalSwap(other); - } - - // implements Message ---------------------------------------------- - - 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); } - - private: - static void MergeImpl( - ::google::protobuf::MessageLite& to_msg, - const ::google::protobuf::MessageLite& from_msg); - - 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; - #endif // PROTOBUF_CUSTOM_VTABLE - int GetCachedSize() const { return _impl_._cached_size_.Get(); } - - private: - void SharedCtor(::google::protobuf::Arena* arena); - void SharedDtor(); - void InternalSwap(ExportNotification* other); - private: - friend class ::google::protobuf::internal::AnyMetadata; - 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); - 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; - static constexpr State PUBLISHING = ExportNotification_State_PUBLISHING; - static constexpr State QUEUED = ExportNotification_State_QUEUED; - static constexpr State RUNNING = ExportNotification_State_RUNNING; - static constexpr State EXPORTED = ExportNotification_State_EXPORTED; - static constexpr State RELEASED = ExportNotification_State_RELEASED; - static constexpr State CANCELLED = ExportNotification_State_CANCELLED; - static constexpr State FAILED = ExportNotification_State_FAILED; - static constexpr State DEPENDENCY_FAILED = ExportNotification_State_DEPENDENCY_FAILED; - static constexpr State DEPENDENCY_NEVER_FOUND = ExportNotification_State_DEPENDENCY_NEVER_FOUND; - static constexpr State DEPENDENCY_CANCELLED = ExportNotification_State_DEPENDENCY_CANCELLED; - static constexpr State DEPENDENCY_RELEASED = ExportNotification_State_DEPENDENCY_RELEASED; - static inline bool State_IsValid(int value) { - return ExportNotification_State_IsValid(value); - } - static constexpr State State_MIN = ExportNotification_State_State_MIN; - static constexpr State State_MAX = ExportNotification_State_State_MAX; - static constexpr int State_ARRAYSIZE = ExportNotification_State_State_ARRAYSIZE; - static inline const ::google::protobuf::EnumDescriptor* State_descriptor() { - return ExportNotification_State_descriptor(); - } - template - static inline const std::string& State_Name(T value) { - return ExportNotification_State_Name(value); - } - static inline bool State_Parse(absl::string_view name, State* value) { - return ExportNotification_State_Parse(name, value); - } - - // accessors ------------------------------------------------------- - enum : int { - kContextFieldNumber = 3, - kDependentHandleFieldNumber = 4, - kTicketFieldNumber = 1, - kExportStateFieldNumber = 2, - }; - // string context = 3; - void clear_context() ; - const std::string& context() const; - template - void set_context(Arg_&& arg, Args_... args); - std::string* mutable_context(); - PROTOBUF_NODISCARD std::string* release_context(); - void set_allocated_context(std::string* value); - - private: - const std::string& _internal_context() const; - inline PROTOBUF_ALWAYS_INLINE void _internal_set_context( - const std::string& value); - std::string* _internal_mutable_context(); - - public: - // string dependent_handle = 4; - void clear_dependent_handle() ; - const std::string& dependent_handle() const; - template - void set_dependent_handle(Arg_&& arg, Args_... args); - std::string* mutable_dependent_handle(); - PROTOBUF_NODISCARD std::string* release_dependent_handle(); - void set_allocated_dependent_handle(std::string* value); - - private: - const std::string& _internal_dependent_handle() const; - inline PROTOBUF_ALWAYS_INLINE void _internal_set_dependent_handle( - const std::string& value); - std::string* _internal_mutable_dependent_handle(); - - public: - // .io.deephaven.proto.backplane.grpc.Ticket ticket = 1; - bool has_ticket() const; - void clear_ticket() ; - const ::io::deephaven::proto::backplane::grpc::Ticket& ticket() const; - PROTOBUF_NODISCARD ::io::deephaven::proto::backplane::grpc::Ticket* release_ticket(); - ::io::deephaven::proto::backplane::grpc::Ticket* mutable_ticket(); - void set_allocated_ticket(::io::deephaven::proto::backplane::grpc::Ticket* value); - void unsafe_arena_set_allocated_ticket(::io::deephaven::proto::backplane::grpc::Ticket* value); - ::io::deephaven::proto::backplane::grpc::Ticket* unsafe_arena_release_ticket(); - - private: - const ::io::deephaven::proto::backplane::grpc::Ticket& _internal_ticket() const; - ::io::deephaven::proto::backplane::grpc::Ticket* _internal_mutable_ticket(); - - public: - // .io.deephaven.proto.backplane.grpc.ExportNotification.State export_state = 2; - void clear_export_state() ; - ::io::deephaven::proto::backplane::grpc::ExportNotification_State export_state() const; - void set_export_state(::io::deephaven::proto::backplane::grpc::ExportNotification_State value); - - private: - ::io::deephaven::proto::backplane::grpc::ExportNotification_State _internal_export_state() const; - void _internal_set_export_state(::io::deephaven::proto::backplane::grpc::ExportNotification_State value); - - public: - // @@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 - 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 ExportNotification& from_msg); - ::google::protobuf::internal::HasBits<1> _has_bits_; - mutable ::google::protobuf::internal::CachedSize _cached_size_; - ::google::protobuf::internal::ArenaStringPtr context_; - ::google::protobuf::internal::ArenaStringPtr dependent_handle_; - ::io::deephaven::proto::backplane::grpc::Ticket* ticket_; - int export_state_; - PROTOBUF_TSAN_DECLARE_MEMBER - }; - union { Impl_ _impl_; }; - friend struct ::TableStruct_deephaven_2fproto_2fsession_2eproto; -}; - -// =================================================================== - - - - -// =================================================================== - - -#ifdef __GNUC__ -#pragma GCC diagnostic push -#pragma GCC diagnostic ignored "-Wstrict-aliasing" -#endif // __GNUC__ -// ------------------------------------------------------------------- - -// WrappedAuthenticationRequest - -// string type = 4; -inline void WrappedAuthenticationRequest::clear_type() { - ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.type_.ClearToEmpty(); -} -inline const std::string& WrappedAuthenticationRequest::type() const - ABSL_ATTRIBUTE_LIFETIME_BOUND { - // @@protoc_insertion_point(field_get:io.deephaven.proto.backplane.grpc.WrappedAuthenticationRequest.type) - return _internal_type(); -} -template -inline PROTOBUF_ALWAYS_INLINE void WrappedAuthenticationRequest::set_type(Arg_&& arg, - Args_... args) { - ::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) -} -inline std::string* WrappedAuthenticationRequest::mutable_type() ABSL_ATTRIBUTE_LIFETIME_BOUND { - std::string* _s = _internal_mutable_type(); - // @@protoc_insertion_point(field_mutable:io.deephaven.proto.backplane.grpc.WrappedAuthenticationRequest.type) - return _s; -} -inline const std::string& WrappedAuthenticationRequest::_internal_type() const { - ::google::protobuf::internal::TSanRead(&_impl_); - return _impl_.type_.Get(); -} -inline void WrappedAuthenticationRequest::_internal_set_type(const std::string& value) { - ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.type_.Set(value, GetArena()); -} -inline std::string* WrappedAuthenticationRequest::_internal_mutable_type() { - ::google::protobuf::internal::TSanWrite(&_impl_); - return _impl_.type_.Mutable( GetArena()); -} -inline std::string* WrappedAuthenticationRequest::release_type() { - ::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) { - ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.type_.SetAllocated(value, GetArena()); - #ifdef PROTOBUF_FORCE_COPY_DEFAULT_STRING - if (_impl_.type_.IsDefault()) { - _impl_.type_.Set("", GetArena()); - } - #endif // PROTOBUF_FORCE_COPY_DEFAULT_STRING - // @@protoc_insertion_point(field_set_allocated:io.deephaven.proto.backplane.grpc.WrappedAuthenticationRequest.type) -} - -// bytes payload = 5; -inline void WrappedAuthenticationRequest::clear_payload() { - ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.payload_.ClearToEmpty(); -} -inline const std::string& WrappedAuthenticationRequest::payload() const - ABSL_ATTRIBUTE_LIFETIME_BOUND { - // @@protoc_insertion_point(field_get:io.deephaven.proto.backplane.grpc.WrappedAuthenticationRequest.payload) - return _internal_payload(); -} -template -inline PROTOBUF_ALWAYS_INLINE void WrappedAuthenticationRequest::set_payload(Arg_&& arg, - Args_... args) { - ::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) -} -inline std::string* WrappedAuthenticationRequest::mutable_payload() ABSL_ATTRIBUTE_LIFETIME_BOUND { - std::string* _s = _internal_mutable_payload(); - // @@protoc_insertion_point(field_mutable:io.deephaven.proto.backplane.grpc.WrappedAuthenticationRequest.payload) - return _s; -} -inline const std::string& WrappedAuthenticationRequest::_internal_payload() const { - ::google::protobuf::internal::TSanRead(&_impl_); - return _impl_.payload_.Get(); -} -inline void WrappedAuthenticationRequest::_internal_set_payload(const std::string& value) { - ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.payload_.Set(value, GetArena()); -} -inline std::string* WrappedAuthenticationRequest::_internal_mutable_payload() { - ::google::protobuf::internal::TSanWrite(&_impl_); - return _impl_.payload_.Mutable( GetArena()); -} -inline std::string* WrappedAuthenticationRequest::release_payload() { - ::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) { - ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.payload_.SetAllocated(value, GetArena()); - #ifdef PROTOBUF_FORCE_COPY_DEFAULT_STRING - if (_impl_.payload_.IsDefault()) { - _impl_.payload_.Set("", GetArena()); - } - #endif // PROTOBUF_FORCE_COPY_DEFAULT_STRING - // @@protoc_insertion_point(field_set_allocated:io.deephaven.proto.backplane.grpc.WrappedAuthenticationRequest.payload) -} - -// ------------------------------------------------------------------- - -// HandshakeRequest - -// sint32 auth_protocol = 1 [deprecated = true]; -inline void HandshakeRequest::clear_auth_protocol() { - ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.auth_protocol_ = 0; -} -inline ::int32_t HandshakeRequest::auth_protocol() const { - // @@protoc_insertion_point(field_get:io.deephaven.proto.backplane.grpc.HandshakeRequest.auth_protocol) - return _internal_auth_protocol(); -} -inline void HandshakeRequest::set_auth_protocol(::int32_t value) { - _internal_set_auth_protocol(value); - // @@protoc_insertion_point(field_set:io.deephaven.proto.backplane.grpc.HandshakeRequest.auth_protocol) -} -inline ::int32_t HandshakeRequest::_internal_auth_protocol() const { - ::google::protobuf::internal::TSanRead(&_impl_); - return _impl_.auth_protocol_; -} -inline void HandshakeRequest::_internal_set_auth_protocol(::int32_t value) { - ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.auth_protocol_ = value; -} - -// bytes payload = 2 [deprecated = true]; -inline void HandshakeRequest::clear_payload() { - ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.payload_.ClearToEmpty(); -} -inline const std::string& HandshakeRequest::payload() const - ABSL_ATTRIBUTE_LIFETIME_BOUND { - // @@protoc_insertion_point(field_get:io.deephaven.proto.backplane.grpc.HandshakeRequest.payload) - return _internal_payload(); -} -template -inline PROTOBUF_ALWAYS_INLINE void HandshakeRequest::set_payload(Arg_&& arg, - Args_... args) { - ::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) -} -inline std::string* HandshakeRequest::mutable_payload() ABSL_ATTRIBUTE_LIFETIME_BOUND { - std::string* _s = _internal_mutable_payload(); - // @@protoc_insertion_point(field_mutable:io.deephaven.proto.backplane.grpc.HandshakeRequest.payload) - return _s; -} -inline const std::string& HandshakeRequest::_internal_payload() const { - ::google::protobuf::internal::TSanRead(&_impl_); - return _impl_.payload_.Get(); -} -inline void HandshakeRequest::_internal_set_payload(const std::string& value) { - ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.payload_.Set(value, GetArena()); -} -inline std::string* HandshakeRequest::_internal_mutable_payload() { - ::google::protobuf::internal::TSanWrite(&_impl_); - return _impl_.payload_.Mutable( GetArena()); -} -inline std::string* HandshakeRequest::release_payload() { - ::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) { - ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.payload_.SetAllocated(value, GetArena()); - #ifdef PROTOBUF_FORCE_COPY_DEFAULT_STRING - if (_impl_.payload_.IsDefault()) { - _impl_.payload_.Set("", GetArena()); - } - #endif // PROTOBUF_FORCE_COPY_DEFAULT_STRING - // @@protoc_insertion_point(field_set_allocated:io.deephaven.proto.backplane.grpc.HandshakeRequest.payload) -} - -// ------------------------------------------------------------------- - -// HandshakeResponse - -// bytes metadata_header = 1 [deprecated = true]; -inline void HandshakeResponse::clear_metadata_header() { - ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.metadata_header_.ClearToEmpty(); -} -inline const std::string& HandshakeResponse::metadata_header() const - ABSL_ATTRIBUTE_LIFETIME_BOUND { - // @@protoc_insertion_point(field_get:io.deephaven.proto.backplane.grpc.HandshakeResponse.metadata_header) - return _internal_metadata_header(); -} -template -inline PROTOBUF_ALWAYS_INLINE void HandshakeResponse::set_metadata_header(Arg_&& arg, - Args_... args) { - ::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) -} -inline std::string* HandshakeResponse::mutable_metadata_header() ABSL_ATTRIBUTE_LIFETIME_BOUND { - std::string* _s = _internal_mutable_metadata_header(); - // @@protoc_insertion_point(field_mutable:io.deephaven.proto.backplane.grpc.HandshakeResponse.metadata_header) - return _s; -} -inline const std::string& HandshakeResponse::_internal_metadata_header() const { - ::google::protobuf::internal::TSanRead(&_impl_); - return _impl_.metadata_header_.Get(); -} -inline void HandshakeResponse::_internal_set_metadata_header(const std::string& value) { - ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.metadata_header_.Set(value, GetArena()); -} -inline std::string* HandshakeResponse::_internal_mutable_metadata_header() { - ::google::protobuf::internal::TSanWrite(&_impl_); - return _impl_.metadata_header_.Mutable( GetArena()); -} -inline std::string* HandshakeResponse::release_metadata_header() { - ::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) { - ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.metadata_header_.SetAllocated(value, GetArena()); - #ifdef PROTOBUF_FORCE_COPY_DEFAULT_STRING - if (_impl_.metadata_header_.IsDefault()) { - _impl_.metadata_header_.Set("", GetArena()); - } - #endif // PROTOBUF_FORCE_COPY_DEFAULT_STRING - // @@protoc_insertion_point(field_set_allocated:io.deephaven.proto.backplane.grpc.HandshakeResponse.metadata_header) -} - -// bytes session_token = 2 [deprecated = true]; -inline void HandshakeResponse::clear_session_token() { - ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.session_token_.ClearToEmpty(); -} -inline const std::string& HandshakeResponse::session_token() const - ABSL_ATTRIBUTE_LIFETIME_BOUND { - // @@protoc_insertion_point(field_get:io.deephaven.proto.backplane.grpc.HandshakeResponse.session_token) - return _internal_session_token(); -} -template -inline PROTOBUF_ALWAYS_INLINE void HandshakeResponse::set_session_token(Arg_&& arg, - Args_... args) { - ::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) -} -inline std::string* HandshakeResponse::mutable_session_token() ABSL_ATTRIBUTE_LIFETIME_BOUND { - std::string* _s = _internal_mutable_session_token(); - // @@protoc_insertion_point(field_mutable:io.deephaven.proto.backplane.grpc.HandshakeResponse.session_token) - return _s; -} -inline const std::string& HandshakeResponse::_internal_session_token() const { - ::google::protobuf::internal::TSanRead(&_impl_); - return _impl_.session_token_.Get(); -} -inline void HandshakeResponse::_internal_set_session_token(const std::string& value) { - ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.session_token_.Set(value, GetArena()); -} -inline std::string* HandshakeResponse::_internal_mutable_session_token() { - ::google::protobuf::internal::TSanWrite(&_impl_); - return _impl_.session_token_.Mutable( GetArena()); -} -inline std::string* HandshakeResponse::release_session_token() { - ::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) { - ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.session_token_.SetAllocated(value, GetArena()); - #ifdef PROTOBUF_FORCE_COPY_DEFAULT_STRING - if (_impl_.session_token_.IsDefault()) { - _impl_.session_token_.Set("", GetArena()); - } - #endif // PROTOBUF_FORCE_COPY_DEFAULT_STRING - // @@protoc_insertion_point(field_set_allocated:io.deephaven.proto.backplane.grpc.HandshakeResponse.session_token) -} - -// sint64 token_deadline_time_millis = 3 [deprecated = true, jstype = JS_STRING]; -inline void HandshakeResponse::clear_token_deadline_time_millis() { - ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.token_deadline_time_millis_ = ::int64_t{0}; -} -inline ::int64_t HandshakeResponse::token_deadline_time_millis() const { - // @@protoc_insertion_point(field_get:io.deephaven.proto.backplane.grpc.HandshakeResponse.token_deadline_time_millis) - return _internal_token_deadline_time_millis(); -} -inline void HandshakeResponse::set_token_deadline_time_millis(::int64_t value) { - _internal_set_token_deadline_time_millis(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 { - ::google::protobuf::internal::TSanRead(&_impl_); - return _impl_.token_deadline_time_millis_; -} -inline void HandshakeResponse::_internal_set_token_deadline_time_millis(::int64_t value) { - ::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() { - ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.token_expiration_delay_millis_ = ::int64_t{0}; -} -inline ::int64_t HandshakeResponse::token_expiration_delay_millis() const { - // @@protoc_insertion_point(field_get:io.deephaven.proto.backplane.grpc.HandshakeResponse.token_expiration_delay_millis) - return _internal_token_expiration_delay_millis(); -} -inline void HandshakeResponse::set_token_expiration_delay_millis(::int64_t value) { - _internal_set_token_expiration_delay_millis(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 { - ::google::protobuf::internal::TSanRead(&_impl_); - return _impl_.token_expiration_delay_millis_; -} -inline void HandshakeResponse::_internal_set_token_expiration_delay_millis(::int64_t value) { - ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.token_expiration_delay_millis_ = value; -} - -// ------------------------------------------------------------------- - -// CloseSessionResponse - -// ------------------------------------------------------------------- - -// ReleaseRequest - -// .io.deephaven.proto.backplane.grpc.Ticket id = 1; -inline bool ReleaseRequest::has_id() const { - bool value = (_impl_._has_bits_[0] & 0x00000001u) != 0; - PROTOBUF_ASSUME(!value || _impl_.id_ != nullptr); - return value; -} -inline const ::io::deephaven::proto::backplane::grpc::Ticket& ReleaseRequest::_internal_id() const { - ::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_); -} -inline const ::io::deephaven::proto::backplane::grpc::Ticket& ReleaseRequest::id() const ABSL_ATTRIBUTE_LIFETIME_BOUND { - // @@protoc_insertion_point(field_get:io.deephaven.proto.backplane.grpc.ReleaseRequest.id) - return _internal_id(); -} -inline void ReleaseRequest::unsafe_arena_set_allocated_id(::io::deephaven::proto::backplane::grpc::Ticket* value) { - ::google::protobuf::internal::TSanWrite(&_impl_); - if (GetArena() == nullptr) { - delete reinterpret_cast<::google::protobuf::MessageLite*>(_impl_.id_); - } - _impl_.id_ = reinterpret_cast<::io::deephaven::proto::backplane::grpc::Ticket*>(value); - if (value != nullptr) { - _impl_._has_bits_[0] |= 0x00000001u; - } else { - _impl_._has_bits_[0] &= ~0x00000001u; - } - // @@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() { - ::google::protobuf::internal::TSanWrite(&_impl_); - - _impl_._has_bits_[0] &= ~0x00000001u; - ::io::deephaven::proto::backplane::grpc::Ticket* released = _impl_.id_; - _impl_.id_ = nullptr; -#ifdef PROTOBUF_FORCE_COPY_IN_RELEASE - auto* old = reinterpret_cast<::google::protobuf::MessageLite*>(released); - released = ::google::protobuf::internal::DuplicateIfNonNull(released); - if (GetArena() == nullptr) { - delete old; - } -#else // PROTOBUF_FORCE_COPY_IN_RELEASE - if (GetArena() != nullptr) { - released = ::google::protobuf::internal::DuplicateIfNonNull(released); - } -#endif // !PROTOBUF_FORCE_COPY_IN_RELEASE - return released; -} -inline ::io::deephaven::proto::backplane::grpc::Ticket* ReleaseRequest::unsafe_arena_release_id() { - ::google::protobuf::internal::TSanWrite(&_impl_); - // @@protoc_insertion_point(field_release:io.deephaven.proto.backplane.grpc.ReleaseRequest.id) - - _impl_._has_bits_[0] &= ~0x00000001u; - ::io::deephaven::proto::backplane::grpc::Ticket* temp = _impl_.id_; - _impl_.id_ = nullptr; - return temp; -} -inline ::io::deephaven::proto::backplane::grpc::Ticket* ReleaseRequest::_internal_mutable_id() { - ::google::protobuf::internal::TSanWrite(&_impl_); - if (_impl_.id_ == nullptr) { - 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(); - ::google::protobuf::internal::TSanWrite(&_impl_); - if (message_arena == nullptr) { - delete reinterpret_cast<::google::protobuf::MessageLite*>(_impl_.id_); - } - - if (value != nullptr) { - ::google::protobuf::Arena* submessage_arena = reinterpret_cast<::google::protobuf::MessageLite*>(value)->GetArena(); - if (message_arena != submessage_arena) { - value = ::google::protobuf::internal::GetOwnedMessage(message_arena, value, submessage_arena); - } - _impl_._has_bits_[0] |= 0x00000001u; - } else { - _impl_._has_bits_[0] &= ~0x00000001u; - } - - _impl_.id_ = reinterpret_cast<::io::deephaven::proto::backplane::grpc::Ticket*>(value); - // @@protoc_insertion_point(field_set_allocated:io.deephaven.proto.backplane.grpc.ReleaseRequest.id) -} - -// ------------------------------------------------------------------- - -// ReleaseResponse - -// ------------------------------------------------------------------- - -// ExportRequest - -// .io.deephaven.proto.backplane.grpc.Ticket source_id = 1; -inline bool ExportRequest::has_source_id() const { - bool value = (_impl_._has_bits_[0] & 0x00000001u) != 0; - PROTOBUF_ASSUME(!value || _impl_.source_id_ != nullptr); - return value; -} -inline const ::io::deephaven::proto::backplane::grpc::Ticket& ExportRequest::_internal_source_id() const { - ::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_); -} -inline const ::io::deephaven::proto::backplane::grpc::Ticket& ExportRequest::source_id() const ABSL_ATTRIBUTE_LIFETIME_BOUND { - // @@protoc_insertion_point(field_get:io.deephaven.proto.backplane.grpc.ExportRequest.source_id) - return _internal_source_id(); -} -inline void ExportRequest::unsafe_arena_set_allocated_source_id(::io::deephaven::proto::backplane::grpc::Ticket* value) { - ::google::protobuf::internal::TSanWrite(&_impl_); - if (GetArena() == nullptr) { - delete reinterpret_cast<::google::protobuf::MessageLite*>(_impl_.source_id_); - } - _impl_.source_id_ = reinterpret_cast<::io::deephaven::proto::backplane::grpc::Ticket*>(value); - if (value != nullptr) { - _impl_._has_bits_[0] |= 0x00000001u; - } else { - _impl_._has_bits_[0] &= ~0x00000001u; - } - // @@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() { - ::google::protobuf::internal::TSanWrite(&_impl_); - - _impl_._has_bits_[0] &= ~0x00000001u; - ::io::deephaven::proto::backplane::grpc::Ticket* released = _impl_.source_id_; - _impl_.source_id_ = nullptr; -#ifdef PROTOBUF_FORCE_COPY_IN_RELEASE - auto* old = reinterpret_cast<::google::protobuf::MessageLite*>(released); - released = ::google::protobuf::internal::DuplicateIfNonNull(released); - if (GetArena() == nullptr) { - delete old; - } -#else // PROTOBUF_FORCE_COPY_IN_RELEASE - if (GetArena() != nullptr) { - released = ::google::protobuf::internal::DuplicateIfNonNull(released); - } -#endif // !PROTOBUF_FORCE_COPY_IN_RELEASE - return released; -} -inline ::io::deephaven::proto::backplane::grpc::Ticket* ExportRequest::unsafe_arena_release_source_id() { - ::google::protobuf::internal::TSanWrite(&_impl_); - // @@protoc_insertion_point(field_release:io.deephaven.proto.backplane.grpc.ExportRequest.source_id) - - _impl_._has_bits_[0] &= ~0x00000001u; - ::io::deephaven::proto::backplane::grpc::Ticket* temp = _impl_.source_id_; - _impl_.source_id_ = nullptr; - return temp; -} -inline ::io::deephaven::proto::backplane::grpc::Ticket* ExportRequest::_internal_mutable_source_id() { - ::google::protobuf::internal::TSanWrite(&_impl_); - if (_impl_.source_id_ == nullptr) { - 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(); - ::google::protobuf::internal::TSanWrite(&_impl_); - if (message_arena == nullptr) { - delete reinterpret_cast<::google::protobuf::MessageLite*>(_impl_.source_id_); - } - - if (value != nullptr) { - ::google::protobuf::Arena* submessage_arena = reinterpret_cast<::google::protobuf::MessageLite*>(value)->GetArena(); - if (message_arena != submessage_arena) { - value = ::google::protobuf::internal::GetOwnedMessage(message_arena, value, submessage_arena); - } - _impl_._has_bits_[0] |= 0x00000001u; - } else { - _impl_._has_bits_[0] &= ~0x00000001u; - } - - _impl_.source_id_ = reinterpret_cast<::io::deephaven::proto::backplane::grpc::Ticket*>(value); - // @@protoc_insertion_point(field_set_allocated:io.deephaven.proto.backplane.grpc.ExportRequest.source_id) -} - -// .io.deephaven.proto.backplane.grpc.Ticket result_id = 2; -inline bool ExportRequest::has_result_id() const { - bool value = (_impl_._has_bits_[0] & 0x00000002u) != 0; - PROTOBUF_ASSUME(!value || _impl_.result_id_ != nullptr); - return value; -} -inline const ::io::deephaven::proto::backplane::grpc::Ticket& ExportRequest::_internal_result_id() const { - ::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_); -} -inline const ::io::deephaven::proto::backplane::grpc::Ticket& ExportRequest::result_id() const ABSL_ATTRIBUTE_LIFETIME_BOUND { - // @@protoc_insertion_point(field_get:io.deephaven.proto.backplane.grpc.ExportRequest.result_id) - return _internal_result_id(); -} -inline void ExportRequest::unsafe_arena_set_allocated_result_id(::io::deephaven::proto::backplane::grpc::Ticket* value) { - ::google::protobuf::internal::TSanWrite(&_impl_); - if (GetArena() == nullptr) { - delete reinterpret_cast<::google::protobuf::MessageLite*>(_impl_.result_id_); - } - _impl_.result_id_ = reinterpret_cast<::io::deephaven::proto::backplane::grpc::Ticket*>(value); - if (value != nullptr) { - _impl_._has_bits_[0] |= 0x00000002u; - } else { - _impl_._has_bits_[0] &= ~0x00000002u; - } - // @@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() { - ::google::protobuf::internal::TSanWrite(&_impl_); - - _impl_._has_bits_[0] &= ~0x00000002u; - ::io::deephaven::proto::backplane::grpc::Ticket* released = _impl_.result_id_; - _impl_.result_id_ = nullptr; -#ifdef PROTOBUF_FORCE_COPY_IN_RELEASE - auto* old = reinterpret_cast<::google::protobuf::MessageLite*>(released); - released = ::google::protobuf::internal::DuplicateIfNonNull(released); - if (GetArena() == nullptr) { - delete old; - } -#else // PROTOBUF_FORCE_COPY_IN_RELEASE - if (GetArena() != nullptr) { - released = ::google::protobuf::internal::DuplicateIfNonNull(released); - } -#endif // !PROTOBUF_FORCE_COPY_IN_RELEASE - return released; -} -inline ::io::deephaven::proto::backplane::grpc::Ticket* ExportRequest::unsafe_arena_release_result_id() { - ::google::protobuf::internal::TSanWrite(&_impl_); - // @@protoc_insertion_point(field_release:io.deephaven.proto.backplane.grpc.ExportRequest.result_id) - - _impl_._has_bits_[0] &= ~0x00000002u; - ::io::deephaven::proto::backplane::grpc::Ticket* temp = _impl_.result_id_; - _impl_.result_id_ = nullptr; - return temp; -} -inline ::io::deephaven::proto::backplane::grpc::Ticket* ExportRequest::_internal_mutable_result_id() { - ::google::protobuf::internal::TSanWrite(&_impl_); - if (_impl_.result_id_ == nullptr) { - 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(); - ::google::protobuf::internal::TSanWrite(&_impl_); - if (message_arena == nullptr) { - delete reinterpret_cast<::google::protobuf::MessageLite*>(_impl_.result_id_); - } - - if (value != nullptr) { - ::google::protobuf::Arena* submessage_arena = reinterpret_cast<::google::protobuf::MessageLite*>(value)->GetArena(); - if (message_arena != submessage_arena) { - value = ::google::protobuf::internal::GetOwnedMessage(message_arena, value, submessage_arena); - } - _impl_._has_bits_[0] |= 0x00000002u; - } else { - _impl_._has_bits_[0] &= ~0x00000002u; - } - - _impl_.result_id_ = reinterpret_cast<::io::deephaven::proto::backplane::grpc::Ticket*>(value); - // @@protoc_insertion_point(field_set_allocated:io.deephaven.proto.backplane.grpc.ExportRequest.result_id) -} - -// ------------------------------------------------------------------- - -// ExportResponse - -// ------------------------------------------------------------------- - -// PublishRequest - -// .io.deephaven.proto.backplane.grpc.Ticket source_id = 1; -inline bool PublishRequest::has_source_id() const { - bool value = (_impl_._has_bits_[0] & 0x00000001u) != 0; - PROTOBUF_ASSUME(!value || _impl_.source_id_ != nullptr); - return value; -} -inline const ::io::deephaven::proto::backplane::grpc::Ticket& PublishRequest::_internal_source_id() const { - ::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_); -} -inline const ::io::deephaven::proto::backplane::grpc::Ticket& PublishRequest::source_id() const ABSL_ATTRIBUTE_LIFETIME_BOUND { - // @@protoc_insertion_point(field_get:io.deephaven.proto.backplane.grpc.PublishRequest.source_id) - return _internal_source_id(); -} -inline void PublishRequest::unsafe_arena_set_allocated_source_id(::io::deephaven::proto::backplane::grpc::Ticket* value) { - ::google::protobuf::internal::TSanWrite(&_impl_); - if (GetArena() == nullptr) { - delete reinterpret_cast<::google::protobuf::MessageLite*>(_impl_.source_id_); - } - _impl_.source_id_ = reinterpret_cast<::io::deephaven::proto::backplane::grpc::Ticket*>(value); - if (value != nullptr) { - _impl_._has_bits_[0] |= 0x00000001u; - } else { - _impl_._has_bits_[0] &= ~0x00000001u; - } - // @@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() { - ::google::protobuf::internal::TSanWrite(&_impl_); - - _impl_._has_bits_[0] &= ~0x00000001u; - ::io::deephaven::proto::backplane::grpc::Ticket* released = _impl_.source_id_; - _impl_.source_id_ = nullptr; -#ifdef PROTOBUF_FORCE_COPY_IN_RELEASE - auto* old = reinterpret_cast<::google::protobuf::MessageLite*>(released); - released = ::google::protobuf::internal::DuplicateIfNonNull(released); - if (GetArena() == nullptr) { - delete old; - } -#else // PROTOBUF_FORCE_COPY_IN_RELEASE - if (GetArena() != nullptr) { - released = ::google::protobuf::internal::DuplicateIfNonNull(released); - } -#endif // !PROTOBUF_FORCE_COPY_IN_RELEASE - return released; -} -inline ::io::deephaven::proto::backplane::grpc::Ticket* PublishRequest::unsafe_arena_release_source_id() { - ::google::protobuf::internal::TSanWrite(&_impl_); - // @@protoc_insertion_point(field_release:io.deephaven.proto.backplane.grpc.PublishRequest.source_id) - - _impl_._has_bits_[0] &= ~0x00000001u; - ::io::deephaven::proto::backplane::grpc::Ticket* temp = _impl_.source_id_; - _impl_.source_id_ = nullptr; - return temp; -} -inline ::io::deephaven::proto::backplane::grpc::Ticket* PublishRequest::_internal_mutable_source_id() { - ::google::protobuf::internal::TSanWrite(&_impl_); - if (_impl_.source_id_ == nullptr) { - 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(); - ::google::protobuf::internal::TSanWrite(&_impl_); - if (message_arena == nullptr) { - delete reinterpret_cast<::google::protobuf::MessageLite*>(_impl_.source_id_); - } - - if (value != nullptr) { - ::google::protobuf::Arena* submessage_arena = reinterpret_cast<::google::protobuf::MessageLite*>(value)->GetArena(); - if (message_arena != submessage_arena) { - value = ::google::protobuf::internal::GetOwnedMessage(message_arena, value, submessage_arena); - } - _impl_._has_bits_[0] |= 0x00000001u; - } else { - _impl_._has_bits_[0] &= ~0x00000001u; - } - - _impl_.source_id_ = reinterpret_cast<::io::deephaven::proto::backplane::grpc::Ticket*>(value); - // @@protoc_insertion_point(field_set_allocated:io.deephaven.proto.backplane.grpc.PublishRequest.source_id) -} - -// .io.deephaven.proto.backplane.grpc.Ticket result_id = 2; -inline bool PublishRequest::has_result_id() const { - bool value = (_impl_._has_bits_[0] & 0x00000002u) != 0; - PROTOBUF_ASSUME(!value || _impl_.result_id_ != nullptr); - return value; -} -inline const ::io::deephaven::proto::backplane::grpc::Ticket& PublishRequest::_internal_result_id() const { - ::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_); -} -inline const ::io::deephaven::proto::backplane::grpc::Ticket& PublishRequest::result_id() const ABSL_ATTRIBUTE_LIFETIME_BOUND { - // @@protoc_insertion_point(field_get:io.deephaven.proto.backplane.grpc.PublishRequest.result_id) - return _internal_result_id(); -} -inline void PublishRequest::unsafe_arena_set_allocated_result_id(::io::deephaven::proto::backplane::grpc::Ticket* value) { - ::google::protobuf::internal::TSanWrite(&_impl_); - if (GetArena() == nullptr) { - delete reinterpret_cast<::google::protobuf::MessageLite*>(_impl_.result_id_); - } - _impl_.result_id_ = reinterpret_cast<::io::deephaven::proto::backplane::grpc::Ticket*>(value); - if (value != nullptr) { - _impl_._has_bits_[0] |= 0x00000002u; - } else { - _impl_._has_bits_[0] &= ~0x00000002u; - } - // @@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() { - ::google::protobuf::internal::TSanWrite(&_impl_); - - _impl_._has_bits_[0] &= ~0x00000002u; - ::io::deephaven::proto::backplane::grpc::Ticket* released = _impl_.result_id_; - _impl_.result_id_ = nullptr; -#ifdef PROTOBUF_FORCE_COPY_IN_RELEASE - auto* old = reinterpret_cast<::google::protobuf::MessageLite*>(released); - released = ::google::protobuf::internal::DuplicateIfNonNull(released); - if (GetArena() == nullptr) { - delete old; - } -#else // PROTOBUF_FORCE_COPY_IN_RELEASE - if (GetArena() != nullptr) { - released = ::google::protobuf::internal::DuplicateIfNonNull(released); - } -#endif // !PROTOBUF_FORCE_COPY_IN_RELEASE - return released; -} -inline ::io::deephaven::proto::backplane::grpc::Ticket* PublishRequest::unsafe_arena_release_result_id() { - ::google::protobuf::internal::TSanWrite(&_impl_); - // @@protoc_insertion_point(field_release:io.deephaven.proto.backplane.grpc.PublishRequest.result_id) - - _impl_._has_bits_[0] &= ~0x00000002u; - ::io::deephaven::proto::backplane::grpc::Ticket* temp = _impl_.result_id_; - _impl_.result_id_ = nullptr; - return temp; -} -inline ::io::deephaven::proto::backplane::grpc::Ticket* PublishRequest::_internal_mutable_result_id() { - ::google::protobuf::internal::TSanWrite(&_impl_); - if (_impl_.result_id_ == nullptr) { - 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(); - ::google::protobuf::internal::TSanWrite(&_impl_); - if (message_arena == nullptr) { - delete reinterpret_cast<::google::protobuf::MessageLite*>(_impl_.result_id_); - } - - if (value != nullptr) { - ::google::protobuf::Arena* submessage_arena = reinterpret_cast<::google::protobuf::MessageLite*>(value)->GetArena(); - if (message_arena != submessage_arena) { - value = ::google::protobuf::internal::GetOwnedMessage(message_arena, value, submessage_arena); - } - _impl_._has_bits_[0] |= 0x00000002u; - } else { - _impl_._has_bits_[0] &= ~0x00000002u; - } - - _impl_.result_id_ = reinterpret_cast<::io::deephaven::proto::backplane::grpc::Ticket*>(value); - // @@protoc_insertion_point(field_set_allocated:io.deephaven.proto.backplane.grpc.PublishRequest.result_id) -} - -// ------------------------------------------------------------------- - -// PublishResponse - -// ------------------------------------------------------------------- - -// ExportNotificationRequest - -// ------------------------------------------------------------------- - -// ExportNotification - -// .io.deephaven.proto.backplane.grpc.Ticket ticket = 1; -inline bool ExportNotification::has_ticket() const { - bool value = (_impl_._has_bits_[0] & 0x00000001u) != 0; - PROTOBUF_ASSUME(!value || _impl_.ticket_ != nullptr); - return value; -} -inline const ::io::deephaven::proto::backplane::grpc::Ticket& ExportNotification::_internal_ticket() const { - ::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_); -} -inline const ::io::deephaven::proto::backplane::grpc::Ticket& ExportNotification::ticket() const ABSL_ATTRIBUTE_LIFETIME_BOUND { - // @@protoc_insertion_point(field_get:io.deephaven.proto.backplane.grpc.ExportNotification.ticket) - return _internal_ticket(); -} -inline void ExportNotification::unsafe_arena_set_allocated_ticket(::io::deephaven::proto::backplane::grpc::Ticket* value) { - ::google::protobuf::internal::TSanWrite(&_impl_); - if (GetArena() == nullptr) { - delete reinterpret_cast<::google::protobuf::MessageLite*>(_impl_.ticket_); - } - _impl_.ticket_ = reinterpret_cast<::io::deephaven::proto::backplane::grpc::Ticket*>(value); - if (value != nullptr) { - _impl_._has_bits_[0] |= 0x00000001u; - } else { - _impl_._has_bits_[0] &= ~0x00000001u; - } - // @@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() { - ::google::protobuf::internal::TSanWrite(&_impl_); - - _impl_._has_bits_[0] &= ~0x00000001u; - ::io::deephaven::proto::backplane::grpc::Ticket* released = _impl_.ticket_; - _impl_.ticket_ = nullptr; -#ifdef PROTOBUF_FORCE_COPY_IN_RELEASE - auto* old = reinterpret_cast<::google::protobuf::MessageLite*>(released); - released = ::google::protobuf::internal::DuplicateIfNonNull(released); - if (GetArena() == nullptr) { - delete old; - } -#else // PROTOBUF_FORCE_COPY_IN_RELEASE - if (GetArena() != nullptr) { - released = ::google::protobuf::internal::DuplicateIfNonNull(released); - } -#endif // !PROTOBUF_FORCE_COPY_IN_RELEASE - return released; -} -inline ::io::deephaven::proto::backplane::grpc::Ticket* ExportNotification::unsafe_arena_release_ticket() { - ::google::protobuf::internal::TSanWrite(&_impl_); - // @@protoc_insertion_point(field_release:io.deephaven.proto.backplane.grpc.ExportNotification.ticket) - - _impl_._has_bits_[0] &= ~0x00000001u; - ::io::deephaven::proto::backplane::grpc::Ticket* temp = _impl_.ticket_; - _impl_.ticket_ = nullptr; - return temp; -} -inline ::io::deephaven::proto::backplane::grpc::Ticket* ExportNotification::_internal_mutable_ticket() { - ::google::protobuf::internal::TSanWrite(&_impl_); - if (_impl_.ticket_ == nullptr) { - 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(); - ::google::protobuf::internal::TSanWrite(&_impl_); - if (message_arena == nullptr) { - delete reinterpret_cast<::google::protobuf::MessageLite*>(_impl_.ticket_); - } - - if (value != nullptr) { - ::google::protobuf::Arena* submessage_arena = reinterpret_cast<::google::protobuf::MessageLite*>(value)->GetArena(); - if (message_arena != submessage_arena) { - value = ::google::protobuf::internal::GetOwnedMessage(message_arena, value, submessage_arena); - } - _impl_._has_bits_[0] |= 0x00000001u; - } else { - _impl_._has_bits_[0] &= ~0x00000001u; - } - - _impl_.ticket_ = reinterpret_cast<::io::deephaven::proto::backplane::grpc::Ticket*>(value); - // @@protoc_insertion_point(field_set_allocated:io.deephaven.proto.backplane.grpc.ExportNotification.ticket) -} - -// .io.deephaven.proto.backplane.grpc.ExportNotification.State export_state = 2; -inline void ExportNotification::clear_export_state() { - ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.export_state_ = 0; -} -inline ::io::deephaven::proto::backplane::grpc::ExportNotification_State ExportNotification::export_state() const { - // @@protoc_insertion_point(field_get:io.deephaven.proto.backplane.grpc.ExportNotification.export_state) - return _internal_export_state(); -} -inline void ExportNotification::set_export_state(::io::deephaven::proto::backplane::grpc::ExportNotification_State value) { - _internal_set_export_state(value); - // @@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 { - ::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) { - ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.export_state_ = value; -} - -// string context = 3; -inline void ExportNotification::clear_context() { - ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.context_.ClearToEmpty(); -} -inline const std::string& ExportNotification::context() const - ABSL_ATTRIBUTE_LIFETIME_BOUND { - // @@protoc_insertion_point(field_get:io.deephaven.proto.backplane.grpc.ExportNotification.context) - return _internal_context(); -} -template -inline PROTOBUF_ALWAYS_INLINE void ExportNotification::set_context(Arg_&& arg, - Args_... args) { - ::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) -} -inline std::string* ExportNotification::mutable_context() ABSL_ATTRIBUTE_LIFETIME_BOUND { - std::string* _s = _internal_mutable_context(); - // @@protoc_insertion_point(field_mutable:io.deephaven.proto.backplane.grpc.ExportNotification.context) - return _s; -} -inline const std::string& ExportNotification::_internal_context() const { - ::google::protobuf::internal::TSanRead(&_impl_); - return _impl_.context_.Get(); -} -inline void ExportNotification::_internal_set_context(const std::string& value) { - ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.context_.Set(value, GetArena()); -} -inline std::string* ExportNotification::_internal_mutable_context() { - ::google::protobuf::internal::TSanWrite(&_impl_); - return _impl_.context_.Mutable( GetArena()); -} -inline std::string* ExportNotification::release_context() { - ::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) { - ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.context_.SetAllocated(value, GetArena()); - #ifdef PROTOBUF_FORCE_COPY_DEFAULT_STRING - if (_impl_.context_.IsDefault()) { - _impl_.context_.Set("", GetArena()); - } - #endif // PROTOBUF_FORCE_COPY_DEFAULT_STRING - // @@protoc_insertion_point(field_set_allocated:io.deephaven.proto.backplane.grpc.ExportNotification.context) -} - -// string dependent_handle = 4; -inline void ExportNotification::clear_dependent_handle() { - ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.dependent_handle_.ClearToEmpty(); -} -inline const std::string& ExportNotification::dependent_handle() const - ABSL_ATTRIBUTE_LIFETIME_BOUND { - // @@protoc_insertion_point(field_get:io.deephaven.proto.backplane.grpc.ExportNotification.dependent_handle) - return _internal_dependent_handle(); -} -template -inline PROTOBUF_ALWAYS_INLINE void ExportNotification::set_dependent_handle(Arg_&& arg, - Args_... args) { - ::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) -} -inline std::string* ExportNotification::mutable_dependent_handle() ABSL_ATTRIBUTE_LIFETIME_BOUND { - std::string* _s = _internal_mutable_dependent_handle(); - // @@protoc_insertion_point(field_mutable:io.deephaven.proto.backplane.grpc.ExportNotification.dependent_handle) - return _s; -} -inline const std::string& ExportNotification::_internal_dependent_handle() const { - ::google::protobuf::internal::TSanRead(&_impl_); - return _impl_.dependent_handle_.Get(); -} -inline void ExportNotification::_internal_set_dependent_handle(const std::string& value) { - ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.dependent_handle_.Set(value, GetArena()); -} -inline std::string* ExportNotification::_internal_mutable_dependent_handle() { - ::google::protobuf::internal::TSanWrite(&_impl_); - return _impl_.dependent_handle_.Mutable( GetArena()); -} -inline std::string* ExportNotification::release_dependent_handle() { - ::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) { - ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.dependent_handle_.SetAllocated(value, GetArena()); - #ifdef PROTOBUF_FORCE_COPY_DEFAULT_STRING - if (_impl_.dependent_handle_.IsDefault()) { - _impl_.dependent_handle_.Set("", GetArena()); - } - #endif // PROTOBUF_FORCE_COPY_DEFAULT_STRING - // @@protoc_insertion_point(field_set_allocated:io.deephaven.proto.backplane.grpc.ExportNotification.dependent_handle) -} - -// ------------------------------------------------------------------- - -// TerminationNotificationRequest - -// ------------------------------------------------------------------- - -// TerminationNotificationResponse_StackTrace - -// string type = 1; -inline void TerminationNotificationResponse_StackTrace::clear_type() { - ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.type_.ClearToEmpty(); -} -inline const std::string& TerminationNotificationResponse_StackTrace::type() const - ABSL_ATTRIBUTE_LIFETIME_BOUND { - // @@protoc_insertion_point(field_get:io.deephaven.proto.backplane.grpc.TerminationNotificationResponse.StackTrace.type) - return _internal_type(); -} -template -inline PROTOBUF_ALWAYS_INLINE void TerminationNotificationResponse_StackTrace::set_type(Arg_&& arg, - Args_... args) { - ::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) -} -inline std::string* TerminationNotificationResponse_StackTrace::mutable_type() ABSL_ATTRIBUTE_LIFETIME_BOUND { - std::string* _s = _internal_mutable_type(); - // @@protoc_insertion_point(field_mutable:io.deephaven.proto.backplane.grpc.TerminationNotificationResponse.StackTrace.type) - return _s; -} -inline const std::string& TerminationNotificationResponse_StackTrace::_internal_type() const { - ::google::protobuf::internal::TSanRead(&_impl_); - return _impl_.type_.Get(); -} -inline void TerminationNotificationResponse_StackTrace::_internal_set_type(const std::string& value) { - ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.type_.Set(value, GetArena()); -} -inline std::string* TerminationNotificationResponse_StackTrace::_internal_mutable_type() { - ::google::protobuf::internal::TSanWrite(&_impl_); - return _impl_.type_.Mutable( GetArena()); -} -inline std::string* TerminationNotificationResponse_StackTrace::release_type() { - ::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) { - ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.type_.SetAllocated(value, GetArena()); - #ifdef PROTOBUF_FORCE_COPY_DEFAULT_STRING - if (_impl_.type_.IsDefault()) { - _impl_.type_.Set("", GetArena()); - } - #endif // PROTOBUF_FORCE_COPY_DEFAULT_STRING - // @@protoc_insertion_point(field_set_allocated:io.deephaven.proto.backplane.grpc.TerminationNotificationResponse.StackTrace.type) -} - -// string message = 2; -inline void TerminationNotificationResponse_StackTrace::clear_message() { - ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.message_.ClearToEmpty(); -} -inline const std::string& TerminationNotificationResponse_StackTrace::message() const - ABSL_ATTRIBUTE_LIFETIME_BOUND { - // @@protoc_insertion_point(field_get:io.deephaven.proto.backplane.grpc.TerminationNotificationResponse.StackTrace.message) - return _internal_message(); -} -template -inline PROTOBUF_ALWAYS_INLINE void TerminationNotificationResponse_StackTrace::set_message(Arg_&& arg, - Args_... args) { - ::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) -} -inline std::string* TerminationNotificationResponse_StackTrace::mutable_message() ABSL_ATTRIBUTE_LIFETIME_BOUND { - std::string* _s = _internal_mutable_message(); - // @@protoc_insertion_point(field_mutable:io.deephaven.proto.backplane.grpc.TerminationNotificationResponse.StackTrace.message) - return _s; -} -inline const std::string& TerminationNotificationResponse_StackTrace::_internal_message() const { - ::google::protobuf::internal::TSanRead(&_impl_); - return _impl_.message_.Get(); -} -inline void TerminationNotificationResponse_StackTrace::_internal_set_message(const std::string& value) { - ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.message_.Set(value, GetArena()); -} -inline std::string* TerminationNotificationResponse_StackTrace::_internal_mutable_message() { - ::google::protobuf::internal::TSanWrite(&_impl_); - return _impl_.message_.Mutable( GetArena()); -} -inline std::string* TerminationNotificationResponse_StackTrace::release_message() { - ::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) { - ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.message_.SetAllocated(value, GetArena()); - #ifdef PROTOBUF_FORCE_COPY_DEFAULT_STRING - if (_impl_.message_.IsDefault()) { - _impl_.message_.Set("", GetArena()); - } - #endif // PROTOBUF_FORCE_COPY_DEFAULT_STRING - // @@protoc_insertion_point(field_set_allocated:io.deephaven.proto.backplane.grpc.TerminationNotificationResponse.StackTrace.message) -} - -// repeated string elements = 3; -inline int TerminationNotificationResponse_StackTrace::_internal_elements_size() const { - return _internal_elements().size(); -} -inline int TerminationNotificationResponse_StackTrace::elements_size() const { - return _internal_elements_size(); -} -inline void TerminationNotificationResponse_StackTrace::clear_elements() { - ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.elements_.Clear(); -} -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; -} -inline const std::string& TerminationNotificationResponse_StackTrace::elements(int index) const - ABSL_ATTRIBUTE_LIFETIME_BOUND { - // @@protoc_insertion_point(field_get:io.deephaven.proto.backplane.grpc.TerminationNotificationResponse.StackTrace.elements) - return _internal_elements().Get(index); -} -inline std::string* TerminationNotificationResponse_StackTrace::mutable_elements(int index) - ABSL_ATTRIBUTE_LIFETIME_BOUND { - // @@protoc_insertion_point(field_mutable:io.deephaven.proto.backplane.grpc.TerminationNotificationResponse.StackTrace.elements) - return _internal_mutable_elements()->Mutable(index); -} -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) -} -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 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) - return _internal_elements(); -} -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) - ::google::protobuf::internal::TSanWrite(&_impl_); - return _internal_mutable_elements(); -} -inline const ::google::protobuf::RepeatedPtrField& -TerminationNotificationResponse_StackTrace::_internal_elements() const { - ::google::protobuf::internal::TSanRead(&_impl_); - return _impl_.elements_; -} -inline ::google::protobuf::RepeatedPtrField* -TerminationNotificationResponse_StackTrace::_internal_mutable_elements() { - ::google::protobuf::internal::TSanRead(&_impl_); - return &_impl_.elements_; -} - -// ------------------------------------------------------------------- - -// TerminationNotificationResponse - -// bool abnormal_termination = 1; -inline void TerminationNotificationResponse::clear_abnormal_termination() { - ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.abnormal_termination_ = false; -} -inline bool TerminationNotificationResponse::abnormal_termination() const { - // @@protoc_insertion_point(field_get:io.deephaven.proto.backplane.grpc.TerminationNotificationResponse.abnormal_termination) - return _internal_abnormal_termination(); -} -inline void TerminationNotificationResponse::set_abnormal_termination(bool value) { - _internal_set_abnormal_termination(value); - // @@protoc_insertion_point(field_set:io.deephaven.proto.backplane.grpc.TerminationNotificationResponse.abnormal_termination) -} -inline bool TerminationNotificationResponse::_internal_abnormal_termination() const { - ::google::protobuf::internal::TSanRead(&_impl_); - return _impl_.abnormal_termination_; -} -inline void TerminationNotificationResponse::_internal_set_abnormal_termination(bool value) { - ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.abnormal_termination_ = value; -} - -// string reason = 2; -inline void TerminationNotificationResponse::clear_reason() { - ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.reason_.ClearToEmpty(); -} -inline const std::string& TerminationNotificationResponse::reason() const - ABSL_ATTRIBUTE_LIFETIME_BOUND { - // @@protoc_insertion_point(field_get:io.deephaven.proto.backplane.grpc.TerminationNotificationResponse.reason) - return _internal_reason(); -} -template -inline PROTOBUF_ALWAYS_INLINE void TerminationNotificationResponse::set_reason(Arg_&& arg, - Args_... args) { - ::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) -} -inline std::string* TerminationNotificationResponse::mutable_reason() ABSL_ATTRIBUTE_LIFETIME_BOUND { - std::string* _s = _internal_mutable_reason(); - // @@protoc_insertion_point(field_mutable:io.deephaven.proto.backplane.grpc.TerminationNotificationResponse.reason) - return _s; -} -inline const std::string& TerminationNotificationResponse::_internal_reason() const { - ::google::protobuf::internal::TSanRead(&_impl_); - return _impl_.reason_.Get(); -} -inline void TerminationNotificationResponse::_internal_set_reason(const std::string& value) { - ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.reason_.Set(value, GetArena()); -} -inline std::string* TerminationNotificationResponse::_internal_mutable_reason() { - ::google::protobuf::internal::TSanWrite(&_impl_); - return _impl_.reason_.Mutable( GetArena()); -} -inline std::string* TerminationNotificationResponse::release_reason() { - ::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) { - ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.reason_.SetAllocated(value, GetArena()); - #ifdef PROTOBUF_FORCE_COPY_DEFAULT_STRING - if (_impl_.reason_.IsDefault()) { - _impl_.reason_.Set("", GetArena()); - } - #endif // PROTOBUF_FORCE_COPY_DEFAULT_STRING - // @@protoc_insertion_point(field_set_allocated:io.deephaven.proto.backplane.grpc.TerminationNotificationResponse.reason) -} - -// bool is_from_uncaught_exception = 3; -inline void TerminationNotificationResponse::clear_is_from_uncaught_exception() { - ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.is_from_uncaught_exception_ = false; -} -inline bool TerminationNotificationResponse::is_from_uncaught_exception() const { - // @@protoc_insertion_point(field_get:io.deephaven.proto.backplane.grpc.TerminationNotificationResponse.is_from_uncaught_exception) - return _internal_is_from_uncaught_exception(); -} -inline void TerminationNotificationResponse::set_is_from_uncaught_exception(bool value) { - _internal_set_is_from_uncaught_exception(value); - // @@protoc_insertion_point(field_set:io.deephaven.proto.backplane.grpc.TerminationNotificationResponse.is_from_uncaught_exception) -} -inline bool TerminationNotificationResponse::_internal_is_from_uncaught_exception() const { - ::google::protobuf::internal::TSanRead(&_impl_); - return _impl_.is_from_uncaught_exception_; -} -inline void TerminationNotificationResponse::_internal_set_is_from_uncaught_exception(bool value) { - ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.is_from_uncaught_exception_ = value; -} - -// repeated .io.deephaven.proto.backplane.grpc.TerminationNotificationResponse.StackTrace stack_traces = 4; -inline int TerminationNotificationResponse::_internal_stack_traces_size() const { - return _internal_stack_traces().size(); -} -inline int TerminationNotificationResponse::stack_traces_size() const { - return _internal_stack_traces_size(); -} -inline void TerminationNotificationResponse::clear_stack_traces() { - ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.stack_traces_.Clear(); -} -inline ::io::deephaven::proto::backplane::grpc::TerminationNotificationResponse_StackTrace* TerminationNotificationResponse::mutable_stack_traces(int index) - ABSL_ATTRIBUTE_LIFETIME_BOUND { - // @@protoc_insertion_point(field_mutable:io.deephaven.proto.backplane.grpc.TerminationNotificationResponse.stack_traces) - return _internal_mutable_stack_traces()->Mutable(index); -} -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) - ::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 - ABSL_ATTRIBUTE_LIFETIME_BOUND { - // @@protoc_insertion_point(field_get:io.deephaven.proto.backplane.grpc.TerminationNotificationResponse.stack_traces) - return _internal_stack_traces().Get(index); -} -inline ::io::deephaven::proto::backplane::grpc::TerminationNotificationResponse_StackTrace* TerminationNotificationResponse::add_stack_traces() ABSL_ATTRIBUTE_LIFETIME_BOUND { - ::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; -} -inline const ::google::protobuf::RepeatedPtrField<::io::deephaven::proto::backplane::grpc::TerminationNotificationResponse_StackTrace>& TerminationNotificationResponse::stack_traces() const - ABSL_ATTRIBUTE_LIFETIME_BOUND { - // @@protoc_insertion_point(field_list:io.deephaven.proto.backplane.grpc.TerminationNotificationResponse.stack_traces) - return _internal_stack_traces(); -} -inline const ::google::protobuf::RepeatedPtrField<::io::deephaven::proto::backplane::grpc::TerminationNotificationResponse_StackTrace>& -TerminationNotificationResponse::_internal_stack_traces() const { - ::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() { - ::google::protobuf::internal::TSanRead(&_impl_); - return &_impl_.stack_traces_; -} - -#ifdef __GNUC__ -#pragma GCC diagnostic pop -#endif // __GNUC__ - -// @@protoc_insertion_point(namespace_scope) -} // namespace grpc -} // namespace backplane -} // namespace proto -} // namespace deephaven -} // namespace io - - -namespace google { -namespace protobuf { - -template <> -struct is_proto_enum<::io::deephaven::proto::backplane::grpc::ExportNotification_State> : std::true_type {}; -template <> -inline const EnumDescriptor* GetEnumDescriptor<::io::deephaven::proto::backplane::grpc::ExportNotification_State>() { - return ::io::deephaven::proto::backplane::grpc::ExportNotification_State_descriptor(); -} - -} // namespace protobuf -} // namespace google - -// @@protoc_insertion_point(global_scope) - -#include "google/protobuf/port_undef.inc" - -#endif // GOOGLE_PROTOBUF_INCLUDED_deephaven_2fproto_2fsession_2eproto_2epb_2eh diff --git a/cpp-client/deephaven/dhclient/proto/deephaven/proto/storage.grpc.pb.cc b/cpp-client/deephaven/dhclient/proto/deephaven/proto/storage.grpc.pb.cc deleted file mode 100644 index eec7ddcbd60..00000000000 --- a/cpp-client/deephaven/dhclient/proto/deephaven/proto/storage.grpc.pb.cc +++ /dev/null @@ -1,304 +0,0 @@ -// Generated by the gRPC C++ plugin. -// If you make any local change, they will be lost. -// source: deephaven/proto/storage.proto - -#include "deephaven/proto/storage.pb.h" -#include "deephaven/proto/storage.grpc.pb.h" - -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -namespace io { -namespace deephaven { -namespace proto { -namespace backplane { -namespace grpc { - -static const char* StorageService_method_names[] = { - "/io.deephaven.proto.backplane.grpc.StorageService/ListItems", - "/io.deephaven.proto.backplane.grpc.StorageService/FetchFile", - "/io.deephaven.proto.backplane.grpc.StorageService/SaveFile", - "/io.deephaven.proto.backplane.grpc.StorageService/MoveItem", - "/io.deephaven.proto.backplane.grpc.StorageService/CreateDirectory", - "/io.deephaven.proto.backplane.grpc.StorageService/DeleteItem", -}; - -std::unique_ptr< StorageService::Stub> StorageService::NewStub(const std::shared_ptr< ::grpc::ChannelInterface>& channel, const ::grpc::StubOptions& options) { - (void)options; - std::unique_ptr< StorageService::Stub> stub(new StorageService::Stub(channel, options)); - return stub; -} - -StorageService::Stub::Stub(const std::shared_ptr< ::grpc::ChannelInterface>& channel, const ::grpc::StubOptions& options) - : channel_(channel), rpcmethod_ListItems_(StorageService_method_names[0], options.suffix_for_stats(),::grpc::internal::RpcMethod::NORMAL_RPC, channel) - , rpcmethod_FetchFile_(StorageService_method_names[1], options.suffix_for_stats(),::grpc::internal::RpcMethod::NORMAL_RPC, channel) - , rpcmethod_SaveFile_(StorageService_method_names[2], options.suffix_for_stats(),::grpc::internal::RpcMethod::NORMAL_RPC, channel) - , rpcmethod_MoveItem_(StorageService_method_names[3], options.suffix_for_stats(),::grpc::internal::RpcMethod::NORMAL_RPC, channel) - , rpcmethod_CreateDirectory_(StorageService_method_names[4], options.suffix_for_stats(),::grpc::internal::RpcMethod::NORMAL_RPC, channel) - , rpcmethod_DeleteItem_(StorageService_method_names[5], options.suffix_for_stats(),::grpc::internal::RpcMethod::NORMAL_RPC, channel) - {} - -::grpc::Status StorageService::Stub::ListItems(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::ListItemsRequest& request, ::io::deephaven::proto::backplane::grpc::ListItemsResponse* response) { - return ::grpc::internal::BlockingUnaryCall< ::io::deephaven::proto::backplane::grpc::ListItemsRequest, ::io::deephaven::proto::backplane::grpc::ListItemsResponse, ::grpc::protobuf::MessageLite, ::grpc::protobuf::MessageLite>(channel_.get(), rpcmethod_ListItems_, context, request, response); -} - -void StorageService::Stub::async::ListItems(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::ListItemsRequest* request, ::io::deephaven::proto::backplane::grpc::ListItemsResponse* response, std::function f) { - ::grpc::internal::CallbackUnaryCall< ::io::deephaven::proto::backplane::grpc::ListItemsRequest, ::io::deephaven::proto::backplane::grpc::ListItemsResponse, ::grpc::protobuf::MessageLite, ::grpc::protobuf::MessageLite>(stub_->channel_.get(), stub_->rpcmethod_ListItems_, context, request, response, std::move(f)); -} - -void StorageService::Stub::async::ListItems(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::ListItemsRequest* request, ::io::deephaven::proto::backplane::grpc::ListItemsResponse* response, ::grpc::ClientUnaryReactor* reactor) { - ::grpc::internal::ClientCallbackUnaryFactory::Create< ::grpc::protobuf::MessageLite, ::grpc::protobuf::MessageLite>(stub_->channel_.get(), stub_->rpcmethod_ListItems_, context, request, response, reactor); -} - -::grpc::ClientAsyncResponseReader< ::io::deephaven::proto::backplane::grpc::ListItemsResponse>* StorageService::Stub::PrepareAsyncListItemsRaw(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::ListItemsRequest& request, ::grpc::CompletionQueue* cq) { - return ::grpc::internal::ClientAsyncResponseReaderHelper::Create< ::io::deephaven::proto::backplane::grpc::ListItemsResponse, ::io::deephaven::proto::backplane::grpc::ListItemsRequest, ::grpc::protobuf::MessageLite, ::grpc::protobuf::MessageLite>(channel_.get(), cq, rpcmethod_ListItems_, context, request); -} - -::grpc::ClientAsyncResponseReader< ::io::deephaven::proto::backplane::grpc::ListItemsResponse>* StorageService::Stub::AsyncListItemsRaw(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::ListItemsRequest& request, ::grpc::CompletionQueue* cq) { - auto* result = - this->PrepareAsyncListItemsRaw(context, request, cq); - result->StartCall(); - return result; -} - -::grpc::Status StorageService::Stub::FetchFile(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::FetchFileRequest& request, ::io::deephaven::proto::backplane::grpc::FetchFileResponse* response) { - return ::grpc::internal::BlockingUnaryCall< ::io::deephaven::proto::backplane::grpc::FetchFileRequest, ::io::deephaven::proto::backplane::grpc::FetchFileResponse, ::grpc::protobuf::MessageLite, ::grpc::protobuf::MessageLite>(channel_.get(), rpcmethod_FetchFile_, context, request, response); -} - -void StorageService::Stub::async::FetchFile(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::FetchFileRequest* request, ::io::deephaven::proto::backplane::grpc::FetchFileResponse* response, std::function f) { - ::grpc::internal::CallbackUnaryCall< ::io::deephaven::proto::backplane::grpc::FetchFileRequest, ::io::deephaven::proto::backplane::grpc::FetchFileResponse, ::grpc::protobuf::MessageLite, ::grpc::protobuf::MessageLite>(stub_->channel_.get(), stub_->rpcmethod_FetchFile_, context, request, response, std::move(f)); -} - -void StorageService::Stub::async::FetchFile(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::FetchFileRequest* request, ::io::deephaven::proto::backplane::grpc::FetchFileResponse* response, ::grpc::ClientUnaryReactor* reactor) { - ::grpc::internal::ClientCallbackUnaryFactory::Create< ::grpc::protobuf::MessageLite, ::grpc::protobuf::MessageLite>(stub_->channel_.get(), stub_->rpcmethod_FetchFile_, context, request, response, reactor); -} - -::grpc::ClientAsyncResponseReader< ::io::deephaven::proto::backplane::grpc::FetchFileResponse>* StorageService::Stub::PrepareAsyncFetchFileRaw(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::FetchFileRequest& request, ::grpc::CompletionQueue* cq) { - return ::grpc::internal::ClientAsyncResponseReaderHelper::Create< ::io::deephaven::proto::backplane::grpc::FetchFileResponse, ::io::deephaven::proto::backplane::grpc::FetchFileRequest, ::grpc::protobuf::MessageLite, ::grpc::protobuf::MessageLite>(channel_.get(), cq, rpcmethod_FetchFile_, context, request); -} - -::grpc::ClientAsyncResponseReader< ::io::deephaven::proto::backplane::grpc::FetchFileResponse>* StorageService::Stub::AsyncFetchFileRaw(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::FetchFileRequest& request, ::grpc::CompletionQueue* cq) { - auto* result = - this->PrepareAsyncFetchFileRaw(context, request, cq); - result->StartCall(); - return result; -} - -::grpc::Status StorageService::Stub::SaveFile(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::SaveFileRequest& request, ::io::deephaven::proto::backplane::grpc::SaveFileResponse* response) { - return ::grpc::internal::BlockingUnaryCall< ::io::deephaven::proto::backplane::grpc::SaveFileRequest, ::io::deephaven::proto::backplane::grpc::SaveFileResponse, ::grpc::protobuf::MessageLite, ::grpc::protobuf::MessageLite>(channel_.get(), rpcmethod_SaveFile_, context, request, response); -} - -void StorageService::Stub::async::SaveFile(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::SaveFileRequest* request, ::io::deephaven::proto::backplane::grpc::SaveFileResponse* response, std::function f) { - ::grpc::internal::CallbackUnaryCall< ::io::deephaven::proto::backplane::grpc::SaveFileRequest, ::io::deephaven::proto::backplane::grpc::SaveFileResponse, ::grpc::protobuf::MessageLite, ::grpc::protobuf::MessageLite>(stub_->channel_.get(), stub_->rpcmethod_SaveFile_, context, request, response, std::move(f)); -} - -void StorageService::Stub::async::SaveFile(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::SaveFileRequest* request, ::io::deephaven::proto::backplane::grpc::SaveFileResponse* response, ::grpc::ClientUnaryReactor* reactor) { - ::grpc::internal::ClientCallbackUnaryFactory::Create< ::grpc::protobuf::MessageLite, ::grpc::protobuf::MessageLite>(stub_->channel_.get(), stub_->rpcmethod_SaveFile_, context, request, response, reactor); -} - -::grpc::ClientAsyncResponseReader< ::io::deephaven::proto::backplane::grpc::SaveFileResponse>* StorageService::Stub::PrepareAsyncSaveFileRaw(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::SaveFileRequest& request, ::grpc::CompletionQueue* cq) { - return ::grpc::internal::ClientAsyncResponseReaderHelper::Create< ::io::deephaven::proto::backplane::grpc::SaveFileResponse, ::io::deephaven::proto::backplane::grpc::SaveFileRequest, ::grpc::protobuf::MessageLite, ::grpc::protobuf::MessageLite>(channel_.get(), cq, rpcmethod_SaveFile_, context, request); -} - -::grpc::ClientAsyncResponseReader< ::io::deephaven::proto::backplane::grpc::SaveFileResponse>* StorageService::Stub::AsyncSaveFileRaw(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::SaveFileRequest& request, ::grpc::CompletionQueue* cq) { - auto* result = - this->PrepareAsyncSaveFileRaw(context, request, cq); - result->StartCall(); - return result; -} - -::grpc::Status StorageService::Stub::MoveItem(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::MoveItemRequest& request, ::io::deephaven::proto::backplane::grpc::MoveItemResponse* response) { - return ::grpc::internal::BlockingUnaryCall< ::io::deephaven::proto::backplane::grpc::MoveItemRequest, ::io::deephaven::proto::backplane::grpc::MoveItemResponse, ::grpc::protobuf::MessageLite, ::grpc::protobuf::MessageLite>(channel_.get(), rpcmethod_MoveItem_, context, request, response); -} - -void StorageService::Stub::async::MoveItem(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::MoveItemRequest* request, ::io::deephaven::proto::backplane::grpc::MoveItemResponse* response, std::function f) { - ::grpc::internal::CallbackUnaryCall< ::io::deephaven::proto::backplane::grpc::MoveItemRequest, ::io::deephaven::proto::backplane::grpc::MoveItemResponse, ::grpc::protobuf::MessageLite, ::grpc::protobuf::MessageLite>(stub_->channel_.get(), stub_->rpcmethod_MoveItem_, context, request, response, std::move(f)); -} - -void StorageService::Stub::async::MoveItem(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::MoveItemRequest* request, ::io::deephaven::proto::backplane::grpc::MoveItemResponse* response, ::grpc::ClientUnaryReactor* reactor) { - ::grpc::internal::ClientCallbackUnaryFactory::Create< ::grpc::protobuf::MessageLite, ::grpc::protobuf::MessageLite>(stub_->channel_.get(), stub_->rpcmethod_MoveItem_, context, request, response, reactor); -} - -::grpc::ClientAsyncResponseReader< ::io::deephaven::proto::backplane::grpc::MoveItemResponse>* StorageService::Stub::PrepareAsyncMoveItemRaw(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::MoveItemRequest& request, ::grpc::CompletionQueue* cq) { - return ::grpc::internal::ClientAsyncResponseReaderHelper::Create< ::io::deephaven::proto::backplane::grpc::MoveItemResponse, ::io::deephaven::proto::backplane::grpc::MoveItemRequest, ::grpc::protobuf::MessageLite, ::grpc::protobuf::MessageLite>(channel_.get(), cq, rpcmethod_MoveItem_, context, request); -} - -::grpc::ClientAsyncResponseReader< ::io::deephaven::proto::backplane::grpc::MoveItemResponse>* StorageService::Stub::AsyncMoveItemRaw(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::MoveItemRequest& request, ::grpc::CompletionQueue* cq) { - auto* result = - this->PrepareAsyncMoveItemRaw(context, request, cq); - result->StartCall(); - return result; -} - -::grpc::Status StorageService::Stub::CreateDirectory(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::CreateDirectoryRequest& request, ::io::deephaven::proto::backplane::grpc::CreateDirectoryResponse* response) { - return ::grpc::internal::BlockingUnaryCall< ::io::deephaven::proto::backplane::grpc::CreateDirectoryRequest, ::io::deephaven::proto::backplane::grpc::CreateDirectoryResponse, ::grpc::protobuf::MessageLite, ::grpc::protobuf::MessageLite>(channel_.get(), rpcmethod_CreateDirectory_, context, request, response); -} - -void StorageService::Stub::async::CreateDirectory(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::CreateDirectoryRequest* request, ::io::deephaven::proto::backplane::grpc::CreateDirectoryResponse* response, std::function f) { - ::grpc::internal::CallbackUnaryCall< ::io::deephaven::proto::backplane::grpc::CreateDirectoryRequest, ::io::deephaven::proto::backplane::grpc::CreateDirectoryResponse, ::grpc::protobuf::MessageLite, ::grpc::protobuf::MessageLite>(stub_->channel_.get(), stub_->rpcmethod_CreateDirectory_, context, request, response, std::move(f)); -} - -void StorageService::Stub::async::CreateDirectory(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::CreateDirectoryRequest* request, ::io::deephaven::proto::backplane::grpc::CreateDirectoryResponse* response, ::grpc::ClientUnaryReactor* reactor) { - ::grpc::internal::ClientCallbackUnaryFactory::Create< ::grpc::protobuf::MessageLite, ::grpc::protobuf::MessageLite>(stub_->channel_.get(), stub_->rpcmethod_CreateDirectory_, context, request, response, reactor); -} - -::grpc::ClientAsyncResponseReader< ::io::deephaven::proto::backplane::grpc::CreateDirectoryResponse>* StorageService::Stub::PrepareAsyncCreateDirectoryRaw(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::CreateDirectoryRequest& request, ::grpc::CompletionQueue* cq) { - return ::grpc::internal::ClientAsyncResponseReaderHelper::Create< ::io::deephaven::proto::backplane::grpc::CreateDirectoryResponse, ::io::deephaven::proto::backplane::grpc::CreateDirectoryRequest, ::grpc::protobuf::MessageLite, ::grpc::protobuf::MessageLite>(channel_.get(), cq, rpcmethod_CreateDirectory_, context, request); -} - -::grpc::ClientAsyncResponseReader< ::io::deephaven::proto::backplane::grpc::CreateDirectoryResponse>* StorageService::Stub::AsyncCreateDirectoryRaw(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::CreateDirectoryRequest& request, ::grpc::CompletionQueue* cq) { - auto* result = - this->PrepareAsyncCreateDirectoryRaw(context, request, cq); - result->StartCall(); - return result; -} - -::grpc::Status StorageService::Stub::DeleteItem(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::DeleteItemRequest& request, ::io::deephaven::proto::backplane::grpc::DeleteItemResponse* response) { - return ::grpc::internal::BlockingUnaryCall< ::io::deephaven::proto::backplane::grpc::DeleteItemRequest, ::io::deephaven::proto::backplane::grpc::DeleteItemResponse, ::grpc::protobuf::MessageLite, ::grpc::protobuf::MessageLite>(channel_.get(), rpcmethod_DeleteItem_, context, request, response); -} - -void StorageService::Stub::async::DeleteItem(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::DeleteItemRequest* request, ::io::deephaven::proto::backplane::grpc::DeleteItemResponse* response, std::function f) { - ::grpc::internal::CallbackUnaryCall< ::io::deephaven::proto::backplane::grpc::DeleteItemRequest, ::io::deephaven::proto::backplane::grpc::DeleteItemResponse, ::grpc::protobuf::MessageLite, ::grpc::protobuf::MessageLite>(stub_->channel_.get(), stub_->rpcmethod_DeleteItem_, context, request, response, std::move(f)); -} - -void StorageService::Stub::async::DeleteItem(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::DeleteItemRequest* request, ::io::deephaven::proto::backplane::grpc::DeleteItemResponse* response, ::grpc::ClientUnaryReactor* reactor) { - ::grpc::internal::ClientCallbackUnaryFactory::Create< ::grpc::protobuf::MessageLite, ::grpc::protobuf::MessageLite>(stub_->channel_.get(), stub_->rpcmethod_DeleteItem_, context, request, response, reactor); -} - -::grpc::ClientAsyncResponseReader< ::io::deephaven::proto::backplane::grpc::DeleteItemResponse>* StorageService::Stub::PrepareAsyncDeleteItemRaw(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::DeleteItemRequest& request, ::grpc::CompletionQueue* cq) { - return ::grpc::internal::ClientAsyncResponseReaderHelper::Create< ::io::deephaven::proto::backplane::grpc::DeleteItemResponse, ::io::deephaven::proto::backplane::grpc::DeleteItemRequest, ::grpc::protobuf::MessageLite, ::grpc::protobuf::MessageLite>(channel_.get(), cq, rpcmethod_DeleteItem_, context, request); -} - -::grpc::ClientAsyncResponseReader< ::io::deephaven::proto::backplane::grpc::DeleteItemResponse>* StorageService::Stub::AsyncDeleteItemRaw(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::DeleteItemRequest& request, ::grpc::CompletionQueue* cq) { - auto* result = - this->PrepareAsyncDeleteItemRaw(context, request, cq); - result->StartCall(); - return result; -} - -StorageService::Service::Service() { - AddMethod(new ::grpc::internal::RpcServiceMethod( - StorageService_method_names[0], - ::grpc::internal::RpcMethod::NORMAL_RPC, - new ::grpc::internal::RpcMethodHandler< StorageService::Service, ::io::deephaven::proto::backplane::grpc::ListItemsRequest, ::io::deephaven::proto::backplane::grpc::ListItemsResponse, ::grpc::protobuf::MessageLite, ::grpc::protobuf::MessageLite>( - [](StorageService::Service* service, - ::grpc::ServerContext* ctx, - const ::io::deephaven::proto::backplane::grpc::ListItemsRequest* req, - ::io::deephaven::proto::backplane::grpc::ListItemsResponse* resp) { - return service->ListItems(ctx, req, resp); - }, this))); - AddMethod(new ::grpc::internal::RpcServiceMethod( - StorageService_method_names[1], - ::grpc::internal::RpcMethod::NORMAL_RPC, - new ::grpc::internal::RpcMethodHandler< StorageService::Service, ::io::deephaven::proto::backplane::grpc::FetchFileRequest, ::io::deephaven::proto::backplane::grpc::FetchFileResponse, ::grpc::protobuf::MessageLite, ::grpc::protobuf::MessageLite>( - [](StorageService::Service* service, - ::grpc::ServerContext* ctx, - const ::io::deephaven::proto::backplane::grpc::FetchFileRequest* req, - ::io::deephaven::proto::backplane::grpc::FetchFileResponse* resp) { - return service->FetchFile(ctx, req, resp); - }, this))); - AddMethod(new ::grpc::internal::RpcServiceMethod( - StorageService_method_names[2], - ::grpc::internal::RpcMethod::NORMAL_RPC, - new ::grpc::internal::RpcMethodHandler< StorageService::Service, ::io::deephaven::proto::backplane::grpc::SaveFileRequest, ::io::deephaven::proto::backplane::grpc::SaveFileResponse, ::grpc::protobuf::MessageLite, ::grpc::protobuf::MessageLite>( - [](StorageService::Service* service, - ::grpc::ServerContext* ctx, - const ::io::deephaven::proto::backplane::grpc::SaveFileRequest* req, - ::io::deephaven::proto::backplane::grpc::SaveFileResponse* resp) { - return service->SaveFile(ctx, req, resp); - }, this))); - AddMethod(new ::grpc::internal::RpcServiceMethod( - StorageService_method_names[3], - ::grpc::internal::RpcMethod::NORMAL_RPC, - new ::grpc::internal::RpcMethodHandler< StorageService::Service, ::io::deephaven::proto::backplane::grpc::MoveItemRequest, ::io::deephaven::proto::backplane::grpc::MoveItemResponse, ::grpc::protobuf::MessageLite, ::grpc::protobuf::MessageLite>( - [](StorageService::Service* service, - ::grpc::ServerContext* ctx, - const ::io::deephaven::proto::backplane::grpc::MoveItemRequest* req, - ::io::deephaven::proto::backplane::grpc::MoveItemResponse* resp) { - return service->MoveItem(ctx, req, resp); - }, this))); - AddMethod(new ::grpc::internal::RpcServiceMethod( - StorageService_method_names[4], - ::grpc::internal::RpcMethod::NORMAL_RPC, - new ::grpc::internal::RpcMethodHandler< StorageService::Service, ::io::deephaven::proto::backplane::grpc::CreateDirectoryRequest, ::io::deephaven::proto::backplane::grpc::CreateDirectoryResponse, ::grpc::protobuf::MessageLite, ::grpc::protobuf::MessageLite>( - [](StorageService::Service* service, - ::grpc::ServerContext* ctx, - const ::io::deephaven::proto::backplane::grpc::CreateDirectoryRequest* req, - ::io::deephaven::proto::backplane::grpc::CreateDirectoryResponse* resp) { - return service->CreateDirectory(ctx, req, resp); - }, this))); - AddMethod(new ::grpc::internal::RpcServiceMethod( - StorageService_method_names[5], - ::grpc::internal::RpcMethod::NORMAL_RPC, - new ::grpc::internal::RpcMethodHandler< StorageService::Service, ::io::deephaven::proto::backplane::grpc::DeleteItemRequest, ::io::deephaven::proto::backplane::grpc::DeleteItemResponse, ::grpc::protobuf::MessageLite, ::grpc::protobuf::MessageLite>( - [](StorageService::Service* service, - ::grpc::ServerContext* ctx, - const ::io::deephaven::proto::backplane::grpc::DeleteItemRequest* req, - ::io::deephaven::proto::backplane::grpc::DeleteItemResponse* resp) { - return service->DeleteItem(ctx, req, resp); - }, this))); -} - -StorageService::Service::~Service() { -} - -::grpc::Status StorageService::Service::ListItems(::grpc::ServerContext* context, const ::io::deephaven::proto::backplane::grpc::ListItemsRequest* request, ::io::deephaven::proto::backplane::grpc::ListItemsResponse* response) { - (void) context; - (void) request; - (void) response; - return ::grpc::Status(::grpc::StatusCode::UNIMPLEMENTED, ""); -} - -::grpc::Status StorageService::Service::FetchFile(::grpc::ServerContext* context, const ::io::deephaven::proto::backplane::grpc::FetchFileRequest* request, ::io::deephaven::proto::backplane::grpc::FetchFileResponse* response) { - (void) context; - (void) request; - (void) response; - return ::grpc::Status(::grpc::StatusCode::UNIMPLEMENTED, ""); -} - -::grpc::Status StorageService::Service::SaveFile(::grpc::ServerContext* context, const ::io::deephaven::proto::backplane::grpc::SaveFileRequest* request, ::io::deephaven::proto::backplane::grpc::SaveFileResponse* response) { - (void) context; - (void) request; - (void) response; - return ::grpc::Status(::grpc::StatusCode::UNIMPLEMENTED, ""); -} - -::grpc::Status StorageService::Service::MoveItem(::grpc::ServerContext* context, const ::io::deephaven::proto::backplane::grpc::MoveItemRequest* request, ::io::deephaven::proto::backplane::grpc::MoveItemResponse* response) { - (void) context; - (void) request; - (void) response; - return ::grpc::Status(::grpc::StatusCode::UNIMPLEMENTED, ""); -} - -::grpc::Status StorageService::Service::CreateDirectory(::grpc::ServerContext* context, const ::io::deephaven::proto::backplane::grpc::CreateDirectoryRequest* request, ::io::deephaven::proto::backplane::grpc::CreateDirectoryResponse* response) { - (void) context; - (void) request; - (void) response; - return ::grpc::Status(::grpc::StatusCode::UNIMPLEMENTED, ""); -} - -::grpc::Status StorageService::Service::DeleteItem(::grpc::ServerContext* context, const ::io::deephaven::proto::backplane::grpc::DeleteItemRequest* request, ::io::deephaven::proto::backplane::grpc::DeleteItemResponse* response) { - (void) context; - (void) request; - (void) response; - return ::grpc::Status(::grpc::StatusCode::UNIMPLEMENTED, ""); -} - - -} // namespace io -} // namespace deephaven -} // namespace proto -} // namespace backplane -} // namespace grpc - diff --git a/cpp-client/deephaven/dhclient/proto/deephaven/proto/storage.grpc.pb.h b/cpp-client/deephaven/dhclient/proto/deephaven/proto/storage.grpc.pb.h deleted file mode 100644 index f0214dc9fcd..00000000000 --- a/cpp-client/deephaven/dhclient/proto/deephaven/proto/storage.grpc.pb.h +++ /dev/null @@ -1,1063 +0,0 @@ -// Generated by the gRPC C++ plugin. -// If you make any local change, they will be lost. -// source: deephaven/proto/storage.proto -// Original file comments: -// -// Copyright (c) 2016-2022 Deephaven Data Labs and Patent Pending -#ifndef GRPC_deephaven_2fproto_2fstorage_2eproto__INCLUDED -#define GRPC_deephaven_2fproto_2fstorage_2eproto__INCLUDED - -#include "deephaven/proto/storage.pb.h" - -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include - -namespace io { -namespace deephaven { -namespace proto { -namespace backplane { -namespace grpc { - -// -// Shared storage management service. -// -// Operations may fail (or omit data) if the current session does not have permission to read or write that resource. -// -// Paths will be "/" delimited and must start with a leading slash. -class StorageService final { - public: - static constexpr char const* service_full_name() { - return "io.deephaven.proto.backplane.grpc.StorageService"; - } - class StubInterface { - public: - virtual ~StubInterface() {} - // Lists the files and directories present in a given directory. Will return an error - virtual ::grpc::Status ListItems(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::ListItemsRequest& request, ::io::deephaven::proto::backplane::grpc::ListItemsResponse* response) = 0; - std::unique_ptr< ::grpc::ClientAsyncResponseReaderInterface< ::io::deephaven::proto::backplane::grpc::ListItemsResponse>> AsyncListItems(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::ListItemsRequest& request, ::grpc::CompletionQueue* cq) { - return std::unique_ptr< ::grpc::ClientAsyncResponseReaderInterface< ::io::deephaven::proto::backplane::grpc::ListItemsResponse>>(AsyncListItemsRaw(context, request, cq)); - } - std::unique_ptr< ::grpc::ClientAsyncResponseReaderInterface< ::io::deephaven::proto::backplane::grpc::ListItemsResponse>> PrepareAsyncListItems(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::ListItemsRequest& request, ::grpc::CompletionQueue* cq) { - return std::unique_ptr< ::grpc::ClientAsyncResponseReaderInterface< ::io::deephaven::proto::backplane::grpc::ListItemsResponse>>(PrepareAsyncListItemsRaw(context, request, cq)); - } - // Reads the file at the given path. Client can optionally specify an etag, asking the server - // not to send the file if it hasn't changed. - virtual ::grpc::Status FetchFile(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::FetchFileRequest& request, ::io::deephaven::proto::backplane::grpc::FetchFileResponse* response) = 0; - std::unique_ptr< ::grpc::ClientAsyncResponseReaderInterface< ::io::deephaven::proto::backplane::grpc::FetchFileResponse>> AsyncFetchFile(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::FetchFileRequest& request, ::grpc::CompletionQueue* cq) { - return std::unique_ptr< ::grpc::ClientAsyncResponseReaderInterface< ::io::deephaven::proto::backplane::grpc::FetchFileResponse>>(AsyncFetchFileRaw(context, request, cq)); - } - std::unique_ptr< ::grpc::ClientAsyncResponseReaderInterface< ::io::deephaven::proto::backplane::grpc::FetchFileResponse>> PrepareAsyncFetchFile(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::FetchFileRequest& request, ::grpc::CompletionQueue* cq) { - return std::unique_ptr< ::grpc::ClientAsyncResponseReaderInterface< ::io::deephaven::proto::backplane::grpc::FetchFileResponse>>(PrepareAsyncFetchFileRaw(context, request, cq)); - } - // Can create new files or modify existing with client provided contents. - virtual ::grpc::Status SaveFile(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::SaveFileRequest& request, ::io::deephaven::proto::backplane::grpc::SaveFileResponse* response) = 0; - std::unique_ptr< ::grpc::ClientAsyncResponseReaderInterface< ::io::deephaven::proto::backplane::grpc::SaveFileResponse>> AsyncSaveFile(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::SaveFileRequest& request, ::grpc::CompletionQueue* cq) { - return std::unique_ptr< ::grpc::ClientAsyncResponseReaderInterface< ::io::deephaven::proto::backplane::grpc::SaveFileResponse>>(AsyncSaveFileRaw(context, request, cq)); - } - std::unique_ptr< ::grpc::ClientAsyncResponseReaderInterface< ::io::deephaven::proto::backplane::grpc::SaveFileResponse>> PrepareAsyncSaveFile(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::SaveFileRequest& request, ::grpc::CompletionQueue* cq) { - return std::unique_ptr< ::grpc::ClientAsyncResponseReaderInterface< ::io::deephaven::proto::backplane::grpc::SaveFileResponse>>(PrepareAsyncSaveFileRaw(context, request, cq)); - } - // Moves a file from one path to another. - virtual ::grpc::Status MoveItem(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::MoveItemRequest& request, ::io::deephaven::proto::backplane::grpc::MoveItemResponse* response) = 0; - std::unique_ptr< ::grpc::ClientAsyncResponseReaderInterface< ::io::deephaven::proto::backplane::grpc::MoveItemResponse>> AsyncMoveItem(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::MoveItemRequest& request, ::grpc::CompletionQueue* cq) { - return std::unique_ptr< ::grpc::ClientAsyncResponseReaderInterface< ::io::deephaven::proto::backplane::grpc::MoveItemResponse>>(AsyncMoveItemRaw(context, request, cq)); - } - std::unique_ptr< ::grpc::ClientAsyncResponseReaderInterface< ::io::deephaven::proto::backplane::grpc::MoveItemResponse>> PrepareAsyncMoveItem(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::MoveItemRequest& request, ::grpc::CompletionQueue* cq) { - return std::unique_ptr< ::grpc::ClientAsyncResponseReaderInterface< ::io::deephaven::proto::backplane::grpc::MoveItemResponse>>(PrepareAsyncMoveItemRaw(context, request, cq)); - } - // Creates a directory at the given path. - virtual ::grpc::Status CreateDirectory(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::CreateDirectoryRequest& request, ::io::deephaven::proto::backplane::grpc::CreateDirectoryResponse* response) = 0; - std::unique_ptr< ::grpc::ClientAsyncResponseReaderInterface< ::io::deephaven::proto::backplane::grpc::CreateDirectoryResponse>> AsyncCreateDirectory(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::CreateDirectoryRequest& request, ::grpc::CompletionQueue* cq) { - return std::unique_ptr< ::grpc::ClientAsyncResponseReaderInterface< ::io::deephaven::proto::backplane::grpc::CreateDirectoryResponse>>(AsyncCreateDirectoryRaw(context, request, cq)); - } - std::unique_ptr< ::grpc::ClientAsyncResponseReaderInterface< ::io::deephaven::proto::backplane::grpc::CreateDirectoryResponse>> PrepareAsyncCreateDirectory(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::CreateDirectoryRequest& request, ::grpc::CompletionQueue* cq) { - return std::unique_ptr< ::grpc::ClientAsyncResponseReaderInterface< ::io::deephaven::proto::backplane::grpc::CreateDirectoryResponse>>(PrepareAsyncCreateDirectoryRaw(context, request, cq)); - } - // Deletes the file or directory at the given path. Directories must be empty to be deleted. - virtual ::grpc::Status DeleteItem(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::DeleteItemRequest& request, ::io::deephaven::proto::backplane::grpc::DeleteItemResponse* response) = 0; - std::unique_ptr< ::grpc::ClientAsyncResponseReaderInterface< ::io::deephaven::proto::backplane::grpc::DeleteItemResponse>> AsyncDeleteItem(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::DeleteItemRequest& request, ::grpc::CompletionQueue* cq) { - return std::unique_ptr< ::grpc::ClientAsyncResponseReaderInterface< ::io::deephaven::proto::backplane::grpc::DeleteItemResponse>>(AsyncDeleteItemRaw(context, request, cq)); - } - std::unique_ptr< ::grpc::ClientAsyncResponseReaderInterface< ::io::deephaven::proto::backplane::grpc::DeleteItemResponse>> PrepareAsyncDeleteItem(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::DeleteItemRequest& request, ::grpc::CompletionQueue* cq) { - return std::unique_ptr< ::grpc::ClientAsyncResponseReaderInterface< ::io::deephaven::proto::backplane::grpc::DeleteItemResponse>>(PrepareAsyncDeleteItemRaw(context, request, cq)); - } - class async_interface { - public: - virtual ~async_interface() {} - // Lists the files and directories present in a given directory. Will return an error - virtual void ListItems(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::ListItemsRequest* request, ::io::deephaven::proto::backplane::grpc::ListItemsResponse* response, std::function) = 0; - virtual void ListItems(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::ListItemsRequest* request, ::io::deephaven::proto::backplane::grpc::ListItemsResponse* response, ::grpc::ClientUnaryReactor* reactor) = 0; - // Reads the file at the given path. Client can optionally specify an etag, asking the server - // not to send the file if it hasn't changed. - virtual void FetchFile(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::FetchFileRequest* request, ::io::deephaven::proto::backplane::grpc::FetchFileResponse* response, std::function) = 0; - virtual void FetchFile(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::FetchFileRequest* request, ::io::deephaven::proto::backplane::grpc::FetchFileResponse* response, ::grpc::ClientUnaryReactor* reactor) = 0; - // Can create new files or modify existing with client provided contents. - virtual void SaveFile(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::SaveFileRequest* request, ::io::deephaven::proto::backplane::grpc::SaveFileResponse* response, std::function) = 0; - virtual void SaveFile(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::SaveFileRequest* request, ::io::deephaven::proto::backplane::grpc::SaveFileResponse* response, ::grpc::ClientUnaryReactor* reactor) = 0; - // Moves a file from one path to another. - virtual void MoveItem(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::MoveItemRequest* request, ::io::deephaven::proto::backplane::grpc::MoveItemResponse* response, std::function) = 0; - virtual void MoveItem(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::MoveItemRequest* request, ::io::deephaven::proto::backplane::grpc::MoveItemResponse* response, ::grpc::ClientUnaryReactor* reactor) = 0; - // Creates a directory at the given path. - virtual void CreateDirectory(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::CreateDirectoryRequest* request, ::io::deephaven::proto::backplane::grpc::CreateDirectoryResponse* response, std::function) = 0; - virtual void CreateDirectory(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::CreateDirectoryRequest* request, ::io::deephaven::proto::backplane::grpc::CreateDirectoryResponse* response, ::grpc::ClientUnaryReactor* reactor) = 0; - // Deletes the file or directory at the given path. Directories must be empty to be deleted. - virtual void DeleteItem(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::DeleteItemRequest* request, ::io::deephaven::proto::backplane::grpc::DeleteItemResponse* response, std::function) = 0; - virtual void DeleteItem(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::DeleteItemRequest* request, ::io::deephaven::proto::backplane::grpc::DeleteItemResponse* response, ::grpc::ClientUnaryReactor* reactor) = 0; - }; - typedef class async_interface experimental_async_interface; - virtual class async_interface* async() { return nullptr; } - class async_interface* experimental_async() { return async(); } - private: - virtual ::grpc::ClientAsyncResponseReaderInterface< ::io::deephaven::proto::backplane::grpc::ListItemsResponse>* AsyncListItemsRaw(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::ListItemsRequest& request, ::grpc::CompletionQueue* cq) = 0; - virtual ::grpc::ClientAsyncResponseReaderInterface< ::io::deephaven::proto::backplane::grpc::ListItemsResponse>* PrepareAsyncListItemsRaw(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::ListItemsRequest& request, ::grpc::CompletionQueue* cq) = 0; - virtual ::grpc::ClientAsyncResponseReaderInterface< ::io::deephaven::proto::backplane::grpc::FetchFileResponse>* AsyncFetchFileRaw(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::FetchFileRequest& request, ::grpc::CompletionQueue* cq) = 0; - virtual ::grpc::ClientAsyncResponseReaderInterface< ::io::deephaven::proto::backplane::grpc::FetchFileResponse>* PrepareAsyncFetchFileRaw(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::FetchFileRequest& request, ::grpc::CompletionQueue* cq) = 0; - virtual ::grpc::ClientAsyncResponseReaderInterface< ::io::deephaven::proto::backplane::grpc::SaveFileResponse>* AsyncSaveFileRaw(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::SaveFileRequest& request, ::grpc::CompletionQueue* cq) = 0; - virtual ::grpc::ClientAsyncResponseReaderInterface< ::io::deephaven::proto::backplane::grpc::SaveFileResponse>* PrepareAsyncSaveFileRaw(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::SaveFileRequest& request, ::grpc::CompletionQueue* cq) = 0; - virtual ::grpc::ClientAsyncResponseReaderInterface< ::io::deephaven::proto::backplane::grpc::MoveItemResponse>* AsyncMoveItemRaw(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::MoveItemRequest& request, ::grpc::CompletionQueue* cq) = 0; - virtual ::grpc::ClientAsyncResponseReaderInterface< ::io::deephaven::proto::backplane::grpc::MoveItemResponse>* PrepareAsyncMoveItemRaw(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::MoveItemRequest& request, ::grpc::CompletionQueue* cq) = 0; - virtual ::grpc::ClientAsyncResponseReaderInterface< ::io::deephaven::proto::backplane::grpc::CreateDirectoryResponse>* AsyncCreateDirectoryRaw(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::CreateDirectoryRequest& request, ::grpc::CompletionQueue* cq) = 0; - virtual ::grpc::ClientAsyncResponseReaderInterface< ::io::deephaven::proto::backplane::grpc::CreateDirectoryResponse>* PrepareAsyncCreateDirectoryRaw(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::CreateDirectoryRequest& request, ::grpc::CompletionQueue* cq) = 0; - virtual ::grpc::ClientAsyncResponseReaderInterface< ::io::deephaven::proto::backplane::grpc::DeleteItemResponse>* AsyncDeleteItemRaw(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::DeleteItemRequest& request, ::grpc::CompletionQueue* cq) = 0; - virtual ::grpc::ClientAsyncResponseReaderInterface< ::io::deephaven::proto::backplane::grpc::DeleteItemResponse>* PrepareAsyncDeleteItemRaw(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::DeleteItemRequest& request, ::grpc::CompletionQueue* cq) = 0; - }; - class Stub final : public StubInterface { - public: - Stub(const std::shared_ptr< ::grpc::ChannelInterface>& channel, const ::grpc::StubOptions& options = ::grpc::StubOptions()); - ::grpc::Status ListItems(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::ListItemsRequest& request, ::io::deephaven::proto::backplane::grpc::ListItemsResponse* response) override; - std::unique_ptr< ::grpc::ClientAsyncResponseReader< ::io::deephaven::proto::backplane::grpc::ListItemsResponse>> AsyncListItems(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::ListItemsRequest& request, ::grpc::CompletionQueue* cq) { - return std::unique_ptr< ::grpc::ClientAsyncResponseReader< ::io::deephaven::proto::backplane::grpc::ListItemsResponse>>(AsyncListItemsRaw(context, request, cq)); - } - std::unique_ptr< ::grpc::ClientAsyncResponseReader< ::io::deephaven::proto::backplane::grpc::ListItemsResponse>> PrepareAsyncListItems(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::ListItemsRequest& request, ::grpc::CompletionQueue* cq) { - return std::unique_ptr< ::grpc::ClientAsyncResponseReader< ::io::deephaven::proto::backplane::grpc::ListItemsResponse>>(PrepareAsyncListItemsRaw(context, request, cq)); - } - ::grpc::Status FetchFile(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::FetchFileRequest& request, ::io::deephaven::proto::backplane::grpc::FetchFileResponse* response) override; - std::unique_ptr< ::grpc::ClientAsyncResponseReader< ::io::deephaven::proto::backplane::grpc::FetchFileResponse>> AsyncFetchFile(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::FetchFileRequest& request, ::grpc::CompletionQueue* cq) { - return std::unique_ptr< ::grpc::ClientAsyncResponseReader< ::io::deephaven::proto::backplane::grpc::FetchFileResponse>>(AsyncFetchFileRaw(context, request, cq)); - } - std::unique_ptr< ::grpc::ClientAsyncResponseReader< ::io::deephaven::proto::backplane::grpc::FetchFileResponse>> PrepareAsyncFetchFile(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::FetchFileRequest& request, ::grpc::CompletionQueue* cq) { - return std::unique_ptr< ::grpc::ClientAsyncResponseReader< ::io::deephaven::proto::backplane::grpc::FetchFileResponse>>(PrepareAsyncFetchFileRaw(context, request, cq)); - } - ::grpc::Status SaveFile(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::SaveFileRequest& request, ::io::deephaven::proto::backplane::grpc::SaveFileResponse* response) override; - std::unique_ptr< ::grpc::ClientAsyncResponseReader< ::io::deephaven::proto::backplane::grpc::SaveFileResponse>> AsyncSaveFile(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::SaveFileRequest& request, ::grpc::CompletionQueue* cq) { - return std::unique_ptr< ::grpc::ClientAsyncResponseReader< ::io::deephaven::proto::backplane::grpc::SaveFileResponse>>(AsyncSaveFileRaw(context, request, cq)); - } - std::unique_ptr< ::grpc::ClientAsyncResponseReader< ::io::deephaven::proto::backplane::grpc::SaveFileResponse>> PrepareAsyncSaveFile(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::SaveFileRequest& request, ::grpc::CompletionQueue* cq) { - return std::unique_ptr< ::grpc::ClientAsyncResponseReader< ::io::deephaven::proto::backplane::grpc::SaveFileResponse>>(PrepareAsyncSaveFileRaw(context, request, cq)); - } - ::grpc::Status MoveItem(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::MoveItemRequest& request, ::io::deephaven::proto::backplane::grpc::MoveItemResponse* response) override; - std::unique_ptr< ::grpc::ClientAsyncResponseReader< ::io::deephaven::proto::backplane::grpc::MoveItemResponse>> AsyncMoveItem(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::MoveItemRequest& request, ::grpc::CompletionQueue* cq) { - return std::unique_ptr< ::grpc::ClientAsyncResponseReader< ::io::deephaven::proto::backplane::grpc::MoveItemResponse>>(AsyncMoveItemRaw(context, request, cq)); - } - std::unique_ptr< ::grpc::ClientAsyncResponseReader< ::io::deephaven::proto::backplane::grpc::MoveItemResponse>> PrepareAsyncMoveItem(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::MoveItemRequest& request, ::grpc::CompletionQueue* cq) { - return std::unique_ptr< ::grpc::ClientAsyncResponseReader< ::io::deephaven::proto::backplane::grpc::MoveItemResponse>>(PrepareAsyncMoveItemRaw(context, request, cq)); - } - ::grpc::Status CreateDirectory(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::CreateDirectoryRequest& request, ::io::deephaven::proto::backplane::grpc::CreateDirectoryResponse* response) override; - std::unique_ptr< ::grpc::ClientAsyncResponseReader< ::io::deephaven::proto::backplane::grpc::CreateDirectoryResponse>> AsyncCreateDirectory(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::CreateDirectoryRequest& request, ::grpc::CompletionQueue* cq) { - return std::unique_ptr< ::grpc::ClientAsyncResponseReader< ::io::deephaven::proto::backplane::grpc::CreateDirectoryResponse>>(AsyncCreateDirectoryRaw(context, request, cq)); - } - std::unique_ptr< ::grpc::ClientAsyncResponseReader< ::io::deephaven::proto::backplane::grpc::CreateDirectoryResponse>> PrepareAsyncCreateDirectory(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::CreateDirectoryRequest& request, ::grpc::CompletionQueue* cq) { - return std::unique_ptr< ::grpc::ClientAsyncResponseReader< ::io::deephaven::proto::backplane::grpc::CreateDirectoryResponse>>(PrepareAsyncCreateDirectoryRaw(context, request, cq)); - } - ::grpc::Status DeleteItem(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::DeleteItemRequest& request, ::io::deephaven::proto::backplane::grpc::DeleteItemResponse* response) override; - std::unique_ptr< ::grpc::ClientAsyncResponseReader< ::io::deephaven::proto::backplane::grpc::DeleteItemResponse>> AsyncDeleteItem(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::DeleteItemRequest& request, ::grpc::CompletionQueue* cq) { - return std::unique_ptr< ::grpc::ClientAsyncResponseReader< ::io::deephaven::proto::backplane::grpc::DeleteItemResponse>>(AsyncDeleteItemRaw(context, request, cq)); - } - std::unique_ptr< ::grpc::ClientAsyncResponseReader< ::io::deephaven::proto::backplane::grpc::DeleteItemResponse>> PrepareAsyncDeleteItem(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::DeleteItemRequest& request, ::grpc::CompletionQueue* cq) { - return std::unique_ptr< ::grpc::ClientAsyncResponseReader< ::io::deephaven::proto::backplane::grpc::DeleteItemResponse>>(PrepareAsyncDeleteItemRaw(context, request, cq)); - } - class async final : - public StubInterface::async_interface { - public: - void ListItems(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::ListItemsRequest* request, ::io::deephaven::proto::backplane::grpc::ListItemsResponse* response, std::function) override; - void ListItems(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::ListItemsRequest* request, ::io::deephaven::proto::backplane::grpc::ListItemsResponse* response, ::grpc::ClientUnaryReactor* reactor) override; - void FetchFile(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::FetchFileRequest* request, ::io::deephaven::proto::backplane::grpc::FetchFileResponse* response, std::function) override; - void FetchFile(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::FetchFileRequest* request, ::io::deephaven::proto::backplane::grpc::FetchFileResponse* response, ::grpc::ClientUnaryReactor* reactor) override; - void SaveFile(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::SaveFileRequest* request, ::io::deephaven::proto::backplane::grpc::SaveFileResponse* response, std::function) override; - void SaveFile(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::SaveFileRequest* request, ::io::deephaven::proto::backplane::grpc::SaveFileResponse* response, ::grpc::ClientUnaryReactor* reactor) override; - void MoveItem(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::MoveItemRequest* request, ::io::deephaven::proto::backplane::grpc::MoveItemResponse* response, std::function) override; - void MoveItem(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::MoveItemRequest* request, ::io::deephaven::proto::backplane::grpc::MoveItemResponse* response, ::grpc::ClientUnaryReactor* reactor) override; - void CreateDirectory(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::CreateDirectoryRequest* request, ::io::deephaven::proto::backplane::grpc::CreateDirectoryResponse* response, std::function) override; - void CreateDirectory(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::CreateDirectoryRequest* request, ::io::deephaven::proto::backplane::grpc::CreateDirectoryResponse* response, ::grpc::ClientUnaryReactor* reactor) override; - void DeleteItem(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::DeleteItemRequest* request, ::io::deephaven::proto::backplane::grpc::DeleteItemResponse* response, std::function) override; - void DeleteItem(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::DeleteItemRequest* request, ::io::deephaven::proto::backplane::grpc::DeleteItemResponse* response, ::grpc::ClientUnaryReactor* reactor) override; - private: - friend class Stub; - explicit async(Stub* stub): stub_(stub) { } - Stub* stub() { return stub_; } - Stub* stub_; - }; - class async* async() override { return &async_stub_; } - - private: - std::shared_ptr< ::grpc::ChannelInterface> channel_; - class async async_stub_{this}; - ::grpc::ClientAsyncResponseReader< ::io::deephaven::proto::backplane::grpc::ListItemsResponse>* AsyncListItemsRaw(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::ListItemsRequest& request, ::grpc::CompletionQueue* cq) override; - ::grpc::ClientAsyncResponseReader< ::io::deephaven::proto::backplane::grpc::ListItemsResponse>* PrepareAsyncListItemsRaw(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::ListItemsRequest& request, ::grpc::CompletionQueue* cq) override; - ::grpc::ClientAsyncResponseReader< ::io::deephaven::proto::backplane::grpc::FetchFileResponse>* AsyncFetchFileRaw(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::FetchFileRequest& request, ::grpc::CompletionQueue* cq) override; - ::grpc::ClientAsyncResponseReader< ::io::deephaven::proto::backplane::grpc::FetchFileResponse>* PrepareAsyncFetchFileRaw(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::FetchFileRequest& request, ::grpc::CompletionQueue* cq) override; - ::grpc::ClientAsyncResponseReader< ::io::deephaven::proto::backplane::grpc::SaveFileResponse>* AsyncSaveFileRaw(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::SaveFileRequest& request, ::grpc::CompletionQueue* cq) override; - ::grpc::ClientAsyncResponseReader< ::io::deephaven::proto::backplane::grpc::SaveFileResponse>* PrepareAsyncSaveFileRaw(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::SaveFileRequest& request, ::grpc::CompletionQueue* cq) override; - ::grpc::ClientAsyncResponseReader< ::io::deephaven::proto::backplane::grpc::MoveItemResponse>* AsyncMoveItemRaw(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::MoveItemRequest& request, ::grpc::CompletionQueue* cq) override; - ::grpc::ClientAsyncResponseReader< ::io::deephaven::proto::backplane::grpc::MoveItemResponse>* PrepareAsyncMoveItemRaw(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::MoveItemRequest& request, ::grpc::CompletionQueue* cq) override; - ::grpc::ClientAsyncResponseReader< ::io::deephaven::proto::backplane::grpc::CreateDirectoryResponse>* AsyncCreateDirectoryRaw(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::CreateDirectoryRequest& request, ::grpc::CompletionQueue* cq) override; - ::grpc::ClientAsyncResponseReader< ::io::deephaven::proto::backplane::grpc::CreateDirectoryResponse>* PrepareAsyncCreateDirectoryRaw(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::CreateDirectoryRequest& request, ::grpc::CompletionQueue* cq) override; - ::grpc::ClientAsyncResponseReader< ::io::deephaven::proto::backplane::grpc::DeleteItemResponse>* AsyncDeleteItemRaw(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::DeleteItemRequest& request, ::grpc::CompletionQueue* cq) override; - ::grpc::ClientAsyncResponseReader< ::io::deephaven::proto::backplane::grpc::DeleteItemResponse>* PrepareAsyncDeleteItemRaw(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::DeleteItemRequest& request, ::grpc::CompletionQueue* cq) override; - const ::grpc::internal::RpcMethod rpcmethod_ListItems_; - const ::grpc::internal::RpcMethod rpcmethod_FetchFile_; - const ::grpc::internal::RpcMethod rpcmethod_SaveFile_; - const ::grpc::internal::RpcMethod rpcmethod_MoveItem_; - const ::grpc::internal::RpcMethod rpcmethod_CreateDirectory_; - const ::grpc::internal::RpcMethod rpcmethod_DeleteItem_; - }; - static std::unique_ptr NewStub(const std::shared_ptr< ::grpc::ChannelInterface>& channel, const ::grpc::StubOptions& options = ::grpc::StubOptions()); - - class Service : public ::grpc::Service { - public: - Service(); - virtual ~Service(); - // Lists the files and directories present in a given directory. Will return an error - virtual ::grpc::Status ListItems(::grpc::ServerContext* context, const ::io::deephaven::proto::backplane::grpc::ListItemsRequest* request, ::io::deephaven::proto::backplane::grpc::ListItemsResponse* response); - // Reads the file at the given path. Client can optionally specify an etag, asking the server - // not to send the file if it hasn't changed. - virtual ::grpc::Status FetchFile(::grpc::ServerContext* context, const ::io::deephaven::proto::backplane::grpc::FetchFileRequest* request, ::io::deephaven::proto::backplane::grpc::FetchFileResponse* response); - // Can create new files or modify existing with client provided contents. - virtual ::grpc::Status SaveFile(::grpc::ServerContext* context, const ::io::deephaven::proto::backplane::grpc::SaveFileRequest* request, ::io::deephaven::proto::backplane::grpc::SaveFileResponse* response); - // Moves a file from one path to another. - virtual ::grpc::Status MoveItem(::grpc::ServerContext* context, const ::io::deephaven::proto::backplane::grpc::MoveItemRequest* request, ::io::deephaven::proto::backplane::grpc::MoveItemResponse* response); - // Creates a directory at the given path. - virtual ::grpc::Status CreateDirectory(::grpc::ServerContext* context, const ::io::deephaven::proto::backplane::grpc::CreateDirectoryRequest* request, ::io::deephaven::proto::backplane::grpc::CreateDirectoryResponse* response); - // Deletes the file or directory at the given path. Directories must be empty to be deleted. - virtual ::grpc::Status DeleteItem(::grpc::ServerContext* context, const ::io::deephaven::proto::backplane::grpc::DeleteItemRequest* request, ::io::deephaven::proto::backplane::grpc::DeleteItemResponse* response); - }; - template - class WithAsyncMethod_ListItems : public BaseClass { - private: - void BaseClassMustBeDerivedFromService(const Service* /*service*/) {} - public: - WithAsyncMethod_ListItems() { - ::grpc::Service::MarkMethodAsync(0); - } - ~WithAsyncMethod_ListItems() override { - BaseClassMustBeDerivedFromService(this); - } - // disable synchronous version of this method - ::grpc::Status ListItems(::grpc::ServerContext* /*context*/, const ::io::deephaven::proto::backplane::grpc::ListItemsRequest* /*request*/, ::io::deephaven::proto::backplane::grpc::ListItemsResponse* /*response*/) override { - abort(); - return ::grpc::Status(::grpc::StatusCode::UNIMPLEMENTED, ""); - } - void RequestListItems(::grpc::ServerContext* context, ::io::deephaven::proto::backplane::grpc::ListItemsRequest* request, ::grpc::ServerAsyncResponseWriter< ::io::deephaven::proto::backplane::grpc::ListItemsResponse>* response, ::grpc::CompletionQueue* new_call_cq, ::grpc::ServerCompletionQueue* notification_cq, void *tag) { - ::grpc::Service::RequestAsyncUnary(0, context, request, response, new_call_cq, notification_cq, tag); - } - }; - template - class WithAsyncMethod_FetchFile : public BaseClass { - private: - void BaseClassMustBeDerivedFromService(const Service* /*service*/) {} - public: - WithAsyncMethod_FetchFile() { - ::grpc::Service::MarkMethodAsync(1); - } - ~WithAsyncMethod_FetchFile() override { - BaseClassMustBeDerivedFromService(this); - } - // disable synchronous version of this method - ::grpc::Status FetchFile(::grpc::ServerContext* /*context*/, const ::io::deephaven::proto::backplane::grpc::FetchFileRequest* /*request*/, ::io::deephaven::proto::backplane::grpc::FetchFileResponse* /*response*/) override { - abort(); - return ::grpc::Status(::grpc::StatusCode::UNIMPLEMENTED, ""); - } - void RequestFetchFile(::grpc::ServerContext* context, ::io::deephaven::proto::backplane::grpc::FetchFileRequest* request, ::grpc::ServerAsyncResponseWriter< ::io::deephaven::proto::backplane::grpc::FetchFileResponse>* response, ::grpc::CompletionQueue* new_call_cq, ::grpc::ServerCompletionQueue* notification_cq, void *tag) { - ::grpc::Service::RequestAsyncUnary(1, context, request, response, new_call_cq, notification_cq, tag); - } - }; - template - class WithAsyncMethod_SaveFile : public BaseClass { - private: - void BaseClassMustBeDerivedFromService(const Service* /*service*/) {} - public: - WithAsyncMethod_SaveFile() { - ::grpc::Service::MarkMethodAsync(2); - } - ~WithAsyncMethod_SaveFile() override { - BaseClassMustBeDerivedFromService(this); - } - // disable synchronous version of this method - ::grpc::Status SaveFile(::grpc::ServerContext* /*context*/, const ::io::deephaven::proto::backplane::grpc::SaveFileRequest* /*request*/, ::io::deephaven::proto::backplane::grpc::SaveFileResponse* /*response*/) override { - abort(); - return ::grpc::Status(::grpc::StatusCode::UNIMPLEMENTED, ""); - } - void RequestSaveFile(::grpc::ServerContext* context, ::io::deephaven::proto::backplane::grpc::SaveFileRequest* request, ::grpc::ServerAsyncResponseWriter< ::io::deephaven::proto::backplane::grpc::SaveFileResponse>* response, ::grpc::CompletionQueue* new_call_cq, ::grpc::ServerCompletionQueue* notification_cq, void *tag) { - ::grpc::Service::RequestAsyncUnary(2, context, request, response, new_call_cq, notification_cq, tag); - } - }; - template - class WithAsyncMethod_MoveItem : public BaseClass { - private: - void BaseClassMustBeDerivedFromService(const Service* /*service*/) {} - public: - WithAsyncMethod_MoveItem() { - ::grpc::Service::MarkMethodAsync(3); - } - ~WithAsyncMethod_MoveItem() override { - BaseClassMustBeDerivedFromService(this); - } - // disable synchronous version of this method - ::grpc::Status MoveItem(::grpc::ServerContext* /*context*/, const ::io::deephaven::proto::backplane::grpc::MoveItemRequest* /*request*/, ::io::deephaven::proto::backplane::grpc::MoveItemResponse* /*response*/) override { - abort(); - return ::grpc::Status(::grpc::StatusCode::UNIMPLEMENTED, ""); - } - void RequestMoveItem(::grpc::ServerContext* context, ::io::deephaven::proto::backplane::grpc::MoveItemRequest* request, ::grpc::ServerAsyncResponseWriter< ::io::deephaven::proto::backplane::grpc::MoveItemResponse>* response, ::grpc::CompletionQueue* new_call_cq, ::grpc::ServerCompletionQueue* notification_cq, void *tag) { - ::grpc::Service::RequestAsyncUnary(3, context, request, response, new_call_cq, notification_cq, tag); - } - }; - template - class WithAsyncMethod_CreateDirectory : public BaseClass { - private: - void BaseClassMustBeDerivedFromService(const Service* /*service*/) {} - public: - WithAsyncMethod_CreateDirectory() { - ::grpc::Service::MarkMethodAsync(4); - } - ~WithAsyncMethod_CreateDirectory() override { - BaseClassMustBeDerivedFromService(this); - } - // disable synchronous version of this method - ::grpc::Status CreateDirectory(::grpc::ServerContext* /*context*/, const ::io::deephaven::proto::backplane::grpc::CreateDirectoryRequest* /*request*/, ::io::deephaven::proto::backplane::grpc::CreateDirectoryResponse* /*response*/) override { - abort(); - return ::grpc::Status(::grpc::StatusCode::UNIMPLEMENTED, ""); - } - void RequestCreateDirectory(::grpc::ServerContext* context, ::io::deephaven::proto::backplane::grpc::CreateDirectoryRequest* request, ::grpc::ServerAsyncResponseWriter< ::io::deephaven::proto::backplane::grpc::CreateDirectoryResponse>* response, ::grpc::CompletionQueue* new_call_cq, ::grpc::ServerCompletionQueue* notification_cq, void *tag) { - ::grpc::Service::RequestAsyncUnary(4, context, request, response, new_call_cq, notification_cq, tag); - } - }; - template - class WithAsyncMethod_DeleteItem : public BaseClass { - private: - void BaseClassMustBeDerivedFromService(const Service* /*service*/) {} - public: - WithAsyncMethod_DeleteItem() { - ::grpc::Service::MarkMethodAsync(5); - } - ~WithAsyncMethod_DeleteItem() override { - BaseClassMustBeDerivedFromService(this); - } - // disable synchronous version of this method - ::grpc::Status DeleteItem(::grpc::ServerContext* /*context*/, const ::io::deephaven::proto::backplane::grpc::DeleteItemRequest* /*request*/, ::io::deephaven::proto::backplane::grpc::DeleteItemResponse* /*response*/) override { - abort(); - return ::grpc::Status(::grpc::StatusCode::UNIMPLEMENTED, ""); - } - void RequestDeleteItem(::grpc::ServerContext* context, ::io::deephaven::proto::backplane::grpc::DeleteItemRequest* request, ::grpc::ServerAsyncResponseWriter< ::io::deephaven::proto::backplane::grpc::DeleteItemResponse>* response, ::grpc::CompletionQueue* new_call_cq, ::grpc::ServerCompletionQueue* notification_cq, void *tag) { - ::grpc::Service::RequestAsyncUnary(5, context, request, response, new_call_cq, notification_cq, tag); - } - }; - typedef WithAsyncMethod_ListItems > > > > > AsyncService; - template - class WithCallbackMethod_ListItems : public BaseClass { - private: - void BaseClassMustBeDerivedFromService(const Service* /*service*/) {} - public: - WithCallbackMethod_ListItems() { - ::grpc::Service::MarkMethodCallback(0, - new ::grpc::internal::CallbackUnaryHandler< ::io::deephaven::proto::backplane::grpc::ListItemsRequest, ::io::deephaven::proto::backplane::grpc::ListItemsResponse>( - [this]( - ::grpc::CallbackServerContext* context, const ::io::deephaven::proto::backplane::grpc::ListItemsRequest* request, ::io::deephaven::proto::backplane::grpc::ListItemsResponse* response) { return this->ListItems(context, request, response); }));} - void SetMessageAllocatorFor_ListItems( - ::grpc::MessageAllocator< ::io::deephaven::proto::backplane::grpc::ListItemsRequest, ::io::deephaven::proto::backplane::grpc::ListItemsResponse>* allocator) { - ::grpc::internal::MethodHandler* const handler = ::grpc::Service::GetHandler(0); - static_cast<::grpc::internal::CallbackUnaryHandler< ::io::deephaven::proto::backplane::grpc::ListItemsRequest, ::io::deephaven::proto::backplane::grpc::ListItemsResponse>*>(handler) - ->SetMessageAllocator(allocator); - } - ~WithCallbackMethod_ListItems() override { - BaseClassMustBeDerivedFromService(this); - } - // disable synchronous version of this method - ::grpc::Status ListItems(::grpc::ServerContext* /*context*/, const ::io::deephaven::proto::backplane::grpc::ListItemsRequest* /*request*/, ::io::deephaven::proto::backplane::grpc::ListItemsResponse* /*response*/) override { - abort(); - return ::grpc::Status(::grpc::StatusCode::UNIMPLEMENTED, ""); - } - virtual ::grpc::ServerUnaryReactor* ListItems( - ::grpc::CallbackServerContext* /*context*/, const ::io::deephaven::proto::backplane::grpc::ListItemsRequest* /*request*/, ::io::deephaven::proto::backplane::grpc::ListItemsResponse* /*response*/) { return nullptr; } - }; - template - class WithCallbackMethod_FetchFile : public BaseClass { - private: - void BaseClassMustBeDerivedFromService(const Service* /*service*/) {} - public: - WithCallbackMethod_FetchFile() { - ::grpc::Service::MarkMethodCallback(1, - new ::grpc::internal::CallbackUnaryHandler< ::io::deephaven::proto::backplane::grpc::FetchFileRequest, ::io::deephaven::proto::backplane::grpc::FetchFileResponse>( - [this]( - ::grpc::CallbackServerContext* context, const ::io::deephaven::proto::backplane::grpc::FetchFileRequest* request, ::io::deephaven::proto::backplane::grpc::FetchFileResponse* response) { return this->FetchFile(context, request, response); }));} - void SetMessageAllocatorFor_FetchFile( - ::grpc::MessageAllocator< ::io::deephaven::proto::backplane::grpc::FetchFileRequest, ::io::deephaven::proto::backplane::grpc::FetchFileResponse>* allocator) { - ::grpc::internal::MethodHandler* const handler = ::grpc::Service::GetHandler(1); - static_cast<::grpc::internal::CallbackUnaryHandler< ::io::deephaven::proto::backplane::grpc::FetchFileRequest, ::io::deephaven::proto::backplane::grpc::FetchFileResponse>*>(handler) - ->SetMessageAllocator(allocator); - } - ~WithCallbackMethod_FetchFile() override { - BaseClassMustBeDerivedFromService(this); - } - // disable synchronous version of this method - ::grpc::Status FetchFile(::grpc::ServerContext* /*context*/, const ::io::deephaven::proto::backplane::grpc::FetchFileRequest* /*request*/, ::io::deephaven::proto::backplane::grpc::FetchFileResponse* /*response*/) override { - abort(); - return ::grpc::Status(::grpc::StatusCode::UNIMPLEMENTED, ""); - } - virtual ::grpc::ServerUnaryReactor* FetchFile( - ::grpc::CallbackServerContext* /*context*/, const ::io::deephaven::proto::backplane::grpc::FetchFileRequest* /*request*/, ::io::deephaven::proto::backplane::grpc::FetchFileResponse* /*response*/) { return nullptr; } - }; - template - class WithCallbackMethod_SaveFile : public BaseClass { - private: - void BaseClassMustBeDerivedFromService(const Service* /*service*/) {} - public: - WithCallbackMethod_SaveFile() { - ::grpc::Service::MarkMethodCallback(2, - new ::grpc::internal::CallbackUnaryHandler< ::io::deephaven::proto::backplane::grpc::SaveFileRequest, ::io::deephaven::proto::backplane::grpc::SaveFileResponse>( - [this]( - ::grpc::CallbackServerContext* context, const ::io::deephaven::proto::backplane::grpc::SaveFileRequest* request, ::io::deephaven::proto::backplane::grpc::SaveFileResponse* response) { return this->SaveFile(context, request, response); }));} - void SetMessageAllocatorFor_SaveFile( - ::grpc::MessageAllocator< ::io::deephaven::proto::backplane::grpc::SaveFileRequest, ::io::deephaven::proto::backplane::grpc::SaveFileResponse>* allocator) { - ::grpc::internal::MethodHandler* const handler = ::grpc::Service::GetHandler(2); - static_cast<::grpc::internal::CallbackUnaryHandler< ::io::deephaven::proto::backplane::grpc::SaveFileRequest, ::io::deephaven::proto::backplane::grpc::SaveFileResponse>*>(handler) - ->SetMessageAllocator(allocator); - } - ~WithCallbackMethod_SaveFile() override { - BaseClassMustBeDerivedFromService(this); - } - // disable synchronous version of this method - ::grpc::Status SaveFile(::grpc::ServerContext* /*context*/, const ::io::deephaven::proto::backplane::grpc::SaveFileRequest* /*request*/, ::io::deephaven::proto::backplane::grpc::SaveFileResponse* /*response*/) override { - abort(); - return ::grpc::Status(::grpc::StatusCode::UNIMPLEMENTED, ""); - } - virtual ::grpc::ServerUnaryReactor* SaveFile( - ::grpc::CallbackServerContext* /*context*/, const ::io::deephaven::proto::backplane::grpc::SaveFileRequest* /*request*/, ::io::deephaven::proto::backplane::grpc::SaveFileResponse* /*response*/) { return nullptr; } - }; - template - class WithCallbackMethod_MoveItem : public BaseClass { - private: - void BaseClassMustBeDerivedFromService(const Service* /*service*/) {} - public: - WithCallbackMethod_MoveItem() { - ::grpc::Service::MarkMethodCallback(3, - new ::grpc::internal::CallbackUnaryHandler< ::io::deephaven::proto::backplane::grpc::MoveItemRequest, ::io::deephaven::proto::backplane::grpc::MoveItemResponse>( - [this]( - ::grpc::CallbackServerContext* context, const ::io::deephaven::proto::backplane::grpc::MoveItemRequest* request, ::io::deephaven::proto::backplane::grpc::MoveItemResponse* response) { return this->MoveItem(context, request, response); }));} - void SetMessageAllocatorFor_MoveItem( - ::grpc::MessageAllocator< ::io::deephaven::proto::backplane::grpc::MoveItemRequest, ::io::deephaven::proto::backplane::grpc::MoveItemResponse>* allocator) { - ::grpc::internal::MethodHandler* const handler = ::grpc::Service::GetHandler(3); - static_cast<::grpc::internal::CallbackUnaryHandler< ::io::deephaven::proto::backplane::grpc::MoveItemRequest, ::io::deephaven::proto::backplane::grpc::MoveItemResponse>*>(handler) - ->SetMessageAllocator(allocator); - } - ~WithCallbackMethod_MoveItem() override { - BaseClassMustBeDerivedFromService(this); - } - // disable synchronous version of this method - ::grpc::Status MoveItem(::grpc::ServerContext* /*context*/, const ::io::deephaven::proto::backplane::grpc::MoveItemRequest* /*request*/, ::io::deephaven::proto::backplane::grpc::MoveItemResponse* /*response*/) override { - abort(); - return ::grpc::Status(::grpc::StatusCode::UNIMPLEMENTED, ""); - } - virtual ::grpc::ServerUnaryReactor* MoveItem( - ::grpc::CallbackServerContext* /*context*/, const ::io::deephaven::proto::backplane::grpc::MoveItemRequest* /*request*/, ::io::deephaven::proto::backplane::grpc::MoveItemResponse* /*response*/) { return nullptr; } - }; - template - class WithCallbackMethod_CreateDirectory : public BaseClass { - private: - void BaseClassMustBeDerivedFromService(const Service* /*service*/) {} - public: - WithCallbackMethod_CreateDirectory() { - ::grpc::Service::MarkMethodCallback(4, - new ::grpc::internal::CallbackUnaryHandler< ::io::deephaven::proto::backplane::grpc::CreateDirectoryRequest, ::io::deephaven::proto::backplane::grpc::CreateDirectoryResponse>( - [this]( - ::grpc::CallbackServerContext* context, const ::io::deephaven::proto::backplane::grpc::CreateDirectoryRequest* request, ::io::deephaven::proto::backplane::grpc::CreateDirectoryResponse* response) { return this->CreateDirectory(context, request, response); }));} - void SetMessageAllocatorFor_CreateDirectory( - ::grpc::MessageAllocator< ::io::deephaven::proto::backplane::grpc::CreateDirectoryRequest, ::io::deephaven::proto::backplane::grpc::CreateDirectoryResponse>* allocator) { - ::grpc::internal::MethodHandler* const handler = ::grpc::Service::GetHandler(4); - static_cast<::grpc::internal::CallbackUnaryHandler< ::io::deephaven::proto::backplane::grpc::CreateDirectoryRequest, ::io::deephaven::proto::backplane::grpc::CreateDirectoryResponse>*>(handler) - ->SetMessageAllocator(allocator); - } - ~WithCallbackMethod_CreateDirectory() override { - BaseClassMustBeDerivedFromService(this); - } - // disable synchronous version of this method - ::grpc::Status CreateDirectory(::grpc::ServerContext* /*context*/, const ::io::deephaven::proto::backplane::grpc::CreateDirectoryRequest* /*request*/, ::io::deephaven::proto::backplane::grpc::CreateDirectoryResponse* /*response*/) override { - abort(); - return ::grpc::Status(::grpc::StatusCode::UNIMPLEMENTED, ""); - } - virtual ::grpc::ServerUnaryReactor* CreateDirectory( - ::grpc::CallbackServerContext* /*context*/, const ::io::deephaven::proto::backplane::grpc::CreateDirectoryRequest* /*request*/, ::io::deephaven::proto::backplane::grpc::CreateDirectoryResponse* /*response*/) { return nullptr; } - }; - template - class WithCallbackMethod_DeleteItem : public BaseClass { - private: - void BaseClassMustBeDerivedFromService(const Service* /*service*/) {} - public: - WithCallbackMethod_DeleteItem() { - ::grpc::Service::MarkMethodCallback(5, - new ::grpc::internal::CallbackUnaryHandler< ::io::deephaven::proto::backplane::grpc::DeleteItemRequest, ::io::deephaven::proto::backplane::grpc::DeleteItemResponse>( - [this]( - ::grpc::CallbackServerContext* context, const ::io::deephaven::proto::backplane::grpc::DeleteItemRequest* request, ::io::deephaven::proto::backplane::grpc::DeleteItemResponse* response) { return this->DeleteItem(context, request, response); }));} - void SetMessageAllocatorFor_DeleteItem( - ::grpc::MessageAllocator< ::io::deephaven::proto::backplane::grpc::DeleteItemRequest, ::io::deephaven::proto::backplane::grpc::DeleteItemResponse>* allocator) { - ::grpc::internal::MethodHandler* const handler = ::grpc::Service::GetHandler(5); - static_cast<::grpc::internal::CallbackUnaryHandler< ::io::deephaven::proto::backplane::grpc::DeleteItemRequest, ::io::deephaven::proto::backplane::grpc::DeleteItemResponse>*>(handler) - ->SetMessageAllocator(allocator); - } - ~WithCallbackMethod_DeleteItem() override { - BaseClassMustBeDerivedFromService(this); - } - // disable synchronous version of this method - ::grpc::Status DeleteItem(::grpc::ServerContext* /*context*/, const ::io::deephaven::proto::backplane::grpc::DeleteItemRequest* /*request*/, ::io::deephaven::proto::backplane::grpc::DeleteItemResponse* /*response*/) override { - abort(); - return ::grpc::Status(::grpc::StatusCode::UNIMPLEMENTED, ""); - } - virtual ::grpc::ServerUnaryReactor* DeleteItem( - ::grpc::CallbackServerContext* /*context*/, const ::io::deephaven::proto::backplane::grpc::DeleteItemRequest* /*request*/, ::io::deephaven::proto::backplane::grpc::DeleteItemResponse* /*response*/) { return nullptr; } - }; - typedef WithCallbackMethod_ListItems > > > > > CallbackService; - typedef CallbackService ExperimentalCallbackService; - template - class WithGenericMethod_ListItems : public BaseClass { - private: - void BaseClassMustBeDerivedFromService(const Service* /*service*/) {} - public: - WithGenericMethod_ListItems() { - ::grpc::Service::MarkMethodGeneric(0); - } - ~WithGenericMethod_ListItems() override { - BaseClassMustBeDerivedFromService(this); - } - // disable synchronous version of this method - ::grpc::Status ListItems(::grpc::ServerContext* /*context*/, const ::io::deephaven::proto::backplane::grpc::ListItemsRequest* /*request*/, ::io::deephaven::proto::backplane::grpc::ListItemsResponse* /*response*/) override { - abort(); - return ::grpc::Status(::grpc::StatusCode::UNIMPLEMENTED, ""); - } - }; - template - class WithGenericMethod_FetchFile : public BaseClass { - private: - void BaseClassMustBeDerivedFromService(const Service* /*service*/) {} - public: - WithGenericMethod_FetchFile() { - ::grpc::Service::MarkMethodGeneric(1); - } - ~WithGenericMethod_FetchFile() override { - BaseClassMustBeDerivedFromService(this); - } - // disable synchronous version of this method - ::grpc::Status FetchFile(::grpc::ServerContext* /*context*/, const ::io::deephaven::proto::backplane::grpc::FetchFileRequest* /*request*/, ::io::deephaven::proto::backplane::grpc::FetchFileResponse* /*response*/) override { - abort(); - return ::grpc::Status(::grpc::StatusCode::UNIMPLEMENTED, ""); - } - }; - template - class WithGenericMethod_SaveFile : public BaseClass { - private: - void BaseClassMustBeDerivedFromService(const Service* /*service*/) {} - public: - WithGenericMethod_SaveFile() { - ::grpc::Service::MarkMethodGeneric(2); - } - ~WithGenericMethod_SaveFile() override { - BaseClassMustBeDerivedFromService(this); - } - // disable synchronous version of this method - ::grpc::Status SaveFile(::grpc::ServerContext* /*context*/, const ::io::deephaven::proto::backplane::grpc::SaveFileRequest* /*request*/, ::io::deephaven::proto::backplane::grpc::SaveFileResponse* /*response*/) override { - abort(); - return ::grpc::Status(::grpc::StatusCode::UNIMPLEMENTED, ""); - } - }; - template - class WithGenericMethod_MoveItem : public BaseClass { - private: - void BaseClassMustBeDerivedFromService(const Service* /*service*/) {} - public: - WithGenericMethod_MoveItem() { - ::grpc::Service::MarkMethodGeneric(3); - } - ~WithGenericMethod_MoveItem() override { - BaseClassMustBeDerivedFromService(this); - } - // disable synchronous version of this method - ::grpc::Status MoveItem(::grpc::ServerContext* /*context*/, const ::io::deephaven::proto::backplane::grpc::MoveItemRequest* /*request*/, ::io::deephaven::proto::backplane::grpc::MoveItemResponse* /*response*/) override { - abort(); - return ::grpc::Status(::grpc::StatusCode::UNIMPLEMENTED, ""); - } - }; - template - class WithGenericMethod_CreateDirectory : public BaseClass { - private: - void BaseClassMustBeDerivedFromService(const Service* /*service*/) {} - public: - WithGenericMethod_CreateDirectory() { - ::grpc::Service::MarkMethodGeneric(4); - } - ~WithGenericMethod_CreateDirectory() override { - BaseClassMustBeDerivedFromService(this); - } - // disable synchronous version of this method - ::grpc::Status CreateDirectory(::grpc::ServerContext* /*context*/, const ::io::deephaven::proto::backplane::grpc::CreateDirectoryRequest* /*request*/, ::io::deephaven::proto::backplane::grpc::CreateDirectoryResponse* /*response*/) override { - abort(); - return ::grpc::Status(::grpc::StatusCode::UNIMPLEMENTED, ""); - } - }; - template - class WithGenericMethod_DeleteItem : public BaseClass { - private: - void BaseClassMustBeDerivedFromService(const Service* /*service*/) {} - public: - WithGenericMethod_DeleteItem() { - ::grpc::Service::MarkMethodGeneric(5); - } - ~WithGenericMethod_DeleteItem() override { - BaseClassMustBeDerivedFromService(this); - } - // disable synchronous version of this method - ::grpc::Status DeleteItem(::grpc::ServerContext* /*context*/, const ::io::deephaven::proto::backplane::grpc::DeleteItemRequest* /*request*/, ::io::deephaven::proto::backplane::grpc::DeleteItemResponse* /*response*/) override { - abort(); - return ::grpc::Status(::grpc::StatusCode::UNIMPLEMENTED, ""); - } - }; - template - class WithRawMethod_ListItems : public BaseClass { - private: - void BaseClassMustBeDerivedFromService(const Service* /*service*/) {} - public: - WithRawMethod_ListItems() { - ::grpc::Service::MarkMethodRaw(0); - } - ~WithRawMethod_ListItems() override { - BaseClassMustBeDerivedFromService(this); - } - // disable synchronous version of this method - ::grpc::Status ListItems(::grpc::ServerContext* /*context*/, const ::io::deephaven::proto::backplane::grpc::ListItemsRequest* /*request*/, ::io::deephaven::proto::backplane::grpc::ListItemsResponse* /*response*/) override { - abort(); - return ::grpc::Status(::grpc::StatusCode::UNIMPLEMENTED, ""); - } - void RequestListItems(::grpc::ServerContext* context, ::grpc::ByteBuffer* request, ::grpc::ServerAsyncResponseWriter< ::grpc::ByteBuffer>* response, ::grpc::CompletionQueue* new_call_cq, ::grpc::ServerCompletionQueue* notification_cq, void *tag) { - ::grpc::Service::RequestAsyncUnary(0, context, request, response, new_call_cq, notification_cq, tag); - } - }; - template - class WithRawMethod_FetchFile : public BaseClass { - private: - void BaseClassMustBeDerivedFromService(const Service* /*service*/) {} - public: - WithRawMethod_FetchFile() { - ::grpc::Service::MarkMethodRaw(1); - } - ~WithRawMethod_FetchFile() override { - BaseClassMustBeDerivedFromService(this); - } - // disable synchronous version of this method - ::grpc::Status FetchFile(::grpc::ServerContext* /*context*/, const ::io::deephaven::proto::backplane::grpc::FetchFileRequest* /*request*/, ::io::deephaven::proto::backplane::grpc::FetchFileResponse* /*response*/) override { - abort(); - return ::grpc::Status(::grpc::StatusCode::UNIMPLEMENTED, ""); - } - void RequestFetchFile(::grpc::ServerContext* context, ::grpc::ByteBuffer* request, ::grpc::ServerAsyncResponseWriter< ::grpc::ByteBuffer>* response, ::grpc::CompletionQueue* new_call_cq, ::grpc::ServerCompletionQueue* notification_cq, void *tag) { - ::grpc::Service::RequestAsyncUnary(1, context, request, response, new_call_cq, notification_cq, tag); - } - }; - template - class WithRawMethod_SaveFile : public BaseClass { - private: - void BaseClassMustBeDerivedFromService(const Service* /*service*/) {} - public: - WithRawMethod_SaveFile() { - ::grpc::Service::MarkMethodRaw(2); - } - ~WithRawMethod_SaveFile() override { - BaseClassMustBeDerivedFromService(this); - } - // disable synchronous version of this method - ::grpc::Status SaveFile(::grpc::ServerContext* /*context*/, const ::io::deephaven::proto::backplane::grpc::SaveFileRequest* /*request*/, ::io::deephaven::proto::backplane::grpc::SaveFileResponse* /*response*/) override { - abort(); - return ::grpc::Status(::grpc::StatusCode::UNIMPLEMENTED, ""); - } - void RequestSaveFile(::grpc::ServerContext* context, ::grpc::ByteBuffer* request, ::grpc::ServerAsyncResponseWriter< ::grpc::ByteBuffer>* response, ::grpc::CompletionQueue* new_call_cq, ::grpc::ServerCompletionQueue* notification_cq, void *tag) { - ::grpc::Service::RequestAsyncUnary(2, context, request, response, new_call_cq, notification_cq, tag); - } - }; - template - class WithRawMethod_MoveItem : public BaseClass { - private: - void BaseClassMustBeDerivedFromService(const Service* /*service*/) {} - public: - WithRawMethod_MoveItem() { - ::grpc::Service::MarkMethodRaw(3); - } - ~WithRawMethod_MoveItem() override { - BaseClassMustBeDerivedFromService(this); - } - // disable synchronous version of this method - ::grpc::Status MoveItem(::grpc::ServerContext* /*context*/, const ::io::deephaven::proto::backplane::grpc::MoveItemRequest* /*request*/, ::io::deephaven::proto::backplane::grpc::MoveItemResponse* /*response*/) override { - abort(); - return ::grpc::Status(::grpc::StatusCode::UNIMPLEMENTED, ""); - } - void RequestMoveItem(::grpc::ServerContext* context, ::grpc::ByteBuffer* request, ::grpc::ServerAsyncResponseWriter< ::grpc::ByteBuffer>* response, ::grpc::CompletionQueue* new_call_cq, ::grpc::ServerCompletionQueue* notification_cq, void *tag) { - ::grpc::Service::RequestAsyncUnary(3, context, request, response, new_call_cq, notification_cq, tag); - } - }; - template - class WithRawMethod_CreateDirectory : public BaseClass { - private: - void BaseClassMustBeDerivedFromService(const Service* /*service*/) {} - public: - WithRawMethod_CreateDirectory() { - ::grpc::Service::MarkMethodRaw(4); - } - ~WithRawMethod_CreateDirectory() override { - BaseClassMustBeDerivedFromService(this); - } - // disable synchronous version of this method - ::grpc::Status CreateDirectory(::grpc::ServerContext* /*context*/, const ::io::deephaven::proto::backplane::grpc::CreateDirectoryRequest* /*request*/, ::io::deephaven::proto::backplane::grpc::CreateDirectoryResponse* /*response*/) override { - abort(); - return ::grpc::Status(::grpc::StatusCode::UNIMPLEMENTED, ""); - } - void RequestCreateDirectory(::grpc::ServerContext* context, ::grpc::ByteBuffer* request, ::grpc::ServerAsyncResponseWriter< ::grpc::ByteBuffer>* response, ::grpc::CompletionQueue* new_call_cq, ::grpc::ServerCompletionQueue* notification_cq, void *tag) { - ::grpc::Service::RequestAsyncUnary(4, context, request, response, new_call_cq, notification_cq, tag); - } - }; - template - class WithRawMethod_DeleteItem : public BaseClass { - private: - void BaseClassMustBeDerivedFromService(const Service* /*service*/) {} - public: - WithRawMethod_DeleteItem() { - ::grpc::Service::MarkMethodRaw(5); - } - ~WithRawMethod_DeleteItem() override { - BaseClassMustBeDerivedFromService(this); - } - // disable synchronous version of this method - ::grpc::Status DeleteItem(::grpc::ServerContext* /*context*/, const ::io::deephaven::proto::backplane::grpc::DeleteItemRequest* /*request*/, ::io::deephaven::proto::backplane::grpc::DeleteItemResponse* /*response*/) override { - abort(); - return ::grpc::Status(::grpc::StatusCode::UNIMPLEMENTED, ""); - } - void RequestDeleteItem(::grpc::ServerContext* context, ::grpc::ByteBuffer* request, ::grpc::ServerAsyncResponseWriter< ::grpc::ByteBuffer>* response, ::grpc::CompletionQueue* new_call_cq, ::grpc::ServerCompletionQueue* notification_cq, void *tag) { - ::grpc::Service::RequestAsyncUnary(5, context, request, response, new_call_cq, notification_cq, tag); - } - }; - template - class WithRawCallbackMethod_ListItems : public BaseClass { - private: - void BaseClassMustBeDerivedFromService(const Service* /*service*/) {} - public: - WithRawCallbackMethod_ListItems() { - ::grpc::Service::MarkMethodRawCallback(0, - new ::grpc::internal::CallbackUnaryHandler< ::grpc::ByteBuffer, ::grpc::ByteBuffer>( - [this]( - ::grpc::CallbackServerContext* context, const ::grpc::ByteBuffer* request, ::grpc::ByteBuffer* response) { return this->ListItems(context, request, response); })); - } - ~WithRawCallbackMethod_ListItems() override { - BaseClassMustBeDerivedFromService(this); - } - // disable synchronous version of this method - ::grpc::Status ListItems(::grpc::ServerContext* /*context*/, const ::io::deephaven::proto::backplane::grpc::ListItemsRequest* /*request*/, ::io::deephaven::proto::backplane::grpc::ListItemsResponse* /*response*/) override { - abort(); - return ::grpc::Status(::grpc::StatusCode::UNIMPLEMENTED, ""); - } - virtual ::grpc::ServerUnaryReactor* ListItems( - ::grpc::CallbackServerContext* /*context*/, const ::grpc::ByteBuffer* /*request*/, ::grpc::ByteBuffer* /*response*/) { return nullptr; } - }; - template - class WithRawCallbackMethod_FetchFile : public BaseClass { - private: - void BaseClassMustBeDerivedFromService(const Service* /*service*/) {} - public: - WithRawCallbackMethod_FetchFile() { - ::grpc::Service::MarkMethodRawCallback(1, - new ::grpc::internal::CallbackUnaryHandler< ::grpc::ByteBuffer, ::grpc::ByteBuffer>( - [this]( - ::grpc::CallbackServerContext* context, const ::grpc::ByteBuffer* request, ::grpc::ByteBuffer* response) { return this->FetchFile(context, request, response); })); - } - ~WithRawCallbackMethod_FetchFile() override { - BaseClassMustBeDerivedFromService(this); - } - // disable synchronous version of this method - ::grpc::Status FetchFile(::grpc::ServerContext* /*context*/, const ::io::deephaven::proto::backplane::grpc::FetchFileRequest* /*request*/, ::io::deephaven::proto::backplane::grpc::FetchFileResponse* /*response*/) override { - abort(); - return ::grpc::Status(::grpc::StatusCode::UNIMPLEMENTED, ""); - } - virtual ::grpc::ServerUnaryReactor* FetchFile( - ::grpc::CallbackServerContext* /*context*/, const ::grpc::ByteBuffer* /*request*/, ::grpc::ByteBuffer* /*response*/) { return nullptr; } - }; - template - class WithRawCallbackMethod_SaveFile : public BaseClass { - private: - void BaseClassMustBeDerivedFromService(const Service* /*service*/) {} - public: - WithRawCallbackMethod_SaveFile() { - ::grpc::Service::MarkMethodRawCallback(2, - new ::grpc::internal::CallbackUnaryHandler< ::grpc::ByteBuffer, ::grpc::ByteBuffer>( - [this]( - ::grpc::CallbackServerContext* context, const ::grpc::ByteBuffer* request, ::grpc::ByteBuffer* response) { return this->SaveFile(context, request, response); })); - } - ~WithRawCallbackMethod_SaveFile() override { - BaseClassMustBeDerivedFromService(this); - } - // disable synchronous version of this method - ::grpc::Status SaveFile(::grpc::ServerContext* /*context*/, const ::io::deephaven::proto::backplane::grpc::SaveFileRequest* /*request*/, ::io::deephaven::proto::backplane::grpc::SaveFileResponse* /*response*/) override { - abort(); - return ::grpc::Status(::grpc::StatusCode::UNIMPLEMENTED, ""); - } - virtual ::grpc::ServerUnaryReactor* SaveFile( - ::grpc::CallbackServerContext* /*context*/, const ::grpc::ByteBuffer* /*request*/, ::grpc::ByteBuffer* /*response*/) { return nullptr; } - }; - template - class WithRawCallbackMethod_MoveItem : public BaseClass { - private: - void BaseClassMustBeDerivedFromService(const Service* /*service*/) {} - public: - WithRawCallbackMethod_MoveItem() { - ::grpc::Service::MarkMethodRawCallback(3, - new ::grpc::internal::CallbackUnaryHandler< ::grpc::ByteBuffer, ::grpc::ByteBuffer>( - [this]( - ::grpc::CallbackServerContext* context, const ::grpc::ByteBuffer* request, ::grpc::ByteBuffer* response) { return this->MoveItem(context, request, response); })); - } - ~WithRawCallbackMethod_MoveItem() override { - BaseClassMustBeDerivedFromService(this); - } - // disable synchronous version of this method - ::grpc::Status MoveItem(::grpc::ServerContext* /*context*/, const ::io::deephaven::proto::backplane::grpc::MoveItemRequest* /*request*/, ::io::deephaven::proto::backplane::grpc::MoveItemResponse* /*response*/) override { - abort(); - return ::grpc::Status(::grpc::StatusCode::UNIMPLEMENTED, ""); - } - virtual ::grpc::ServerUnaryReactor* MoveItem( - ::grpc::CallbackServerContext* /*context*/, const ::grpc::ByteBuffer* /*request*/, ::grpc::ByteBuffer* /*response*/) { return nullptr; } - }; - template - class WithRawCallbackMethod_CreateDirectory : public BaseClass { - private: - void BaseClassMustBeDerivedFromService(const Service* /*service*/) {} - public: - WithRawCallbackMethod_CreateDirectory() { - ::grpc::Service::MarkMethodRawCallback(4, - new ::grpc::internal::CallbackUnaryHandler< ::grpc::ByteBuffer, ::grpc::ByteBuffer>( - [this]( - ::grpc::CallbackServerContext* context, const ::grpc::ByteBuffer* request, ::grpc::ByteBuffer* response) { return this->CreateDirectory(context, request, response); })); - } - ~WithRawCallbackMethod_CreateDirectory() override { - BaseClassMustBeDerivedFromService(this); - } - // disable synchronous version of this method - ::grpc::Status CreateDirectory(::grpc::ServerContext* /*context*/, const ::io::deephaven::proto::backplane::grpc::CreateDirectoryRequest* /*request*/, ::io::deephaven::proto::backplane::grpc::CreateDirectoryResponse* /*response*/) override { - abort(); - return ::grpc::Status(::grpc::StatusCode::UNIMPLEMENTED, ""); - } - virtual ::grpc::ServerUnaryReactor* CreateDirectory( - ::grpc::CallbackServerContext* /*context*/, const ::grpc::ByteBuffer* /*request*/, ::grpc::ByteBuffer* /*response*/) { return nullptr; } - }; - template - class WithRawCallbackMethod_DeleteItem : public BaseClass { - private: - void BaseClassMustBeDerivedFromService(const Service* /*service*/) {} - public: - WithRawCallbackMethod_DeleteItem() { - ::grpc::Service::MarkMethodRawCallback(5, - new ::grpc::internal::CallbackUnaryHandler< ::grpc::ByteBuffer, ::grpc::ByteBuffer>( - [this]( - ::grpc::CallbackServerContext* context, const ::grpc::ByteBuffer* request, ::grpc::ByteBuffer* response) { return this->DeleteItem(context, request, response); })); - } - ~WithRawCallbackMethod_DeleteItem() override { - BaseClassMustBeDerivedFromService(this); - } - // disable synchronous version of this method - ::grpc::Status DeleteItem(::grpc::ServerContext* /*context*/, const ::io::deephaven::proto::backplane::grpc::DeleteItemRequest* /*request*/, ::io::deephaven::proto::backplane::grpc::DeleteItemResponse* /*response*/) override { - abort(); - return ::grpc::Status(::grpc::StatusCode::UNIMPLEMENTED, ""); - } - virtual ::grpc::ServerUnaryReactor* DeleteItem( - ::grpc::CallbackServerContext* /*context*/, const ::grpc::ByteBuffer* /*request*/, ::grpc::ByteBuffer* /*response*/) { return nullptr; } - }; - template - class WithStreamedUnaryMethod_ListItems : public BaseClass { - private: - void BaseClassMustBeDerivedFromService(const Service* /*service*/) {} - public: - WithStreamedUnaryMethod_ListItems() { - ::grpc::Service::MarkMethodStreamed(0, - new ::grpc::internal::StreamedUnaryHandler< - ::io::deephaven::proto::backplane::grpc::ListItemsRequest, ::io::deephaven::proto::backplane::grpc::ListItemsResponse>( - [this](::grpc::ServerContext* context, - ::grpc::ServerUnaryStreamer< - ::io::deephaven::proto::backplane::grpc::ListItemsRequest, ::io::deephaven::proto::backplane::grpc::ListItemsResponse>* streamer) { - return this->StreamedListItems(context, - streamer); - })); - } - ~WithStreamedUnaryMethod_ListItems() override { - BaseClassMustBeDerivedFromService(this); - } - // disable regular version of this method - ::grpc::Status ListItems(::grpc::ServerContext* /*context*/, const ::io::deephaven::proto::backplane::grpc::ListItemsRequest* /*request*/, ::io::deephaven::proto::backplane::grpc::ListItemsResponse* /*response*/) override { - abort(); - return ::grpc::Status(::grpc::StatusCode::UNIMPLEMENTED, ""); - } - // replace default version of method with streamed unary - virtual ::grpc::Status StreamedListItems(::grpc::ServerContext* context, ::grpc::ServerUnaryStreamer< ::io::deephaven::proto::backplane::grpc::ListItemsRequest,::io::deephaven::proto::backplane::grpc::ListItemsResponse>* server_unary_streamer) = 0; - }; - template - class WithStreamedUnaryMethod_FetchFile : public BaseClass { - private: - void BaseClassMustBeDerivedFromService(const Service* /*service*/) {} - public: - WithStreamedUnaryMethod_FetchFile() { - ::grpc::Service::MarkMethodStreamed(1, - new ::grpc::internal::StreamedUnaryHandler< - ::io::deephaven::proto::backplane::grpc::FetchFileRequest, ::io::deephaven::proto::backplane::grpc::FetchFileResponse>( - [this](::grpc::ServerContext* context, - ::grpc::ServerUnaryStreamer< - ::io::deephaven::proto::backplane::grpc::FetchFileRequest, ::io::deephaven::proto::backplane::grpc::FetchFileResponse>* streamer) { - return this->StreamedFetchFile(context, - streamer); - })); - } - ~WithStreamedUnaryMethod_FetchFile() override { - BaseClassMustBeDerivedFromService(this); - } - // disable regular version of this method - ::grpc::Status FetchFile(::grpc::ServerContext* /*context*/, const ::io::deephaven::proto::backplane::grpc::FetchFileRequest* /*request*/, ::io::deephaven::proto::backplane::grpc::FetchFileResponse* /*response*/) override { - abort(); - return ::grpc::Status(::grpc::StatusCode::UNIMPLEMENTED, ""); - } - // replace default version of method with streamed unary - virtual ::grpc::Status StreamedFetchFile(::grpc::ServerContext* context, ::grpc::ServerUnaryStreamer< ::io::deephaven::proto::backplane::grpc::FetchFileRequest,::io::deephaven::proto::backplane::grpc::FetchFileResponse>* server_unary_streamer) = 0; - }; - template - class WithStreamedUnaryMethod_SaveFile : public BaseClass { - private: - void BaseClassMustBeDerivedFromService(const Service* /*service*/) {} - public: - WithStreamedUnaryMethod_SaveFile() { - ::grpc::Service::MarkMethodStreamed(2, - new ::grpc::internal::StreamedUnaryHandler< - ::io::deephaven::proto::backplane::grpc::SaveFileRequest, ::io::deephaven::proto::backplane::grpc::SaveFileResponse>( - [this](::grpc::ServerContext* context, - ::grpc::ServerUnaryStreamer< - ::io::deephaven::proto::backplane::grpc::SaveFileRequest, ::io::deephaven::proto::backplane::grpc::SaveFileResponse>* streamer) { - return this->StreamedSaveFile(context, - streamer); - })); - } - ~WithStreamedUnaryMethod_SaveFile() override { - BaseClassMustBeDerivedFromService(this); - } - // disable regular version of this method - ::grpc::Status SaveFile(::grpc::ServerContext* /*context*/, const ::io::deephaven::proto::backplane::grpc::SaveFileRequest* /*request*/, ::io::deephaven::proto::backplane::grpc::SaveFileResponse* /*response*/) override { - abort(); - return ::grpc::Status(::grpc::StatusCode::UNIMPLEMENTED, ""); - } - // replace default version of method with streamed unary - virtual ::grpc::Status StreamedSaveFile(::grpc::ServerContext* context, ::grpc::ServerUnaryStreamer< ::io::deephaven::proto::backplane::grpc::SaveFileRequest,::io::deephaven::proto::backplane::grpc::SaveFileResponse>* server_unary_streamer) = 0; - }; - template - class WithStreamedUnaryMethod_MoveItem : public BaseClass { - private: - void BaseClassMustBeDerivedFromService(const Service* /*service*/) {} - public: - WithStreamedUnaryMethod_MoveItem() { - ::grpc::Service::MarkMethodStreamed(3, - new ::grpc::internal::StreamedUnaryHandler< - ::io::deephaven::proto::backplane::grpc::MoveItemRequest, ::io::deephaven::proto::backplane::grpc::MoveItemResponse>( - [this](::grpc::ServerContext* context, - ::grpc::ServerUnaryStreamer< - ::io::deephaven::proto::backplane::grpc::MoveItemRequest, ::io::deephaven::proto::backplane::grpc::MoveItemResponse>* streamer) { - return this->StreamedMoveItem(context, - streamer); - })); - } - ~WithStreamedUnaryMethod_MoveItem() override { - BaseClassMustBeDerivedFromService(this); - } - // disable regular version of this method - ::grpc::Status MoveItem(::grpc::ServerContext* /*context*/, const ::io::deephaven::proto::backplane::grpc::MoveItemRequest* /*request*/, ::io::deephaven::proto::backplane::grpc::MoveItemResponse* /*response*/) override { - abort(); - return ::grpc::Status(::grpc::StatusCode::UNIMPLEMENTED, ""); - } - // replace default version of method with streamed unary - virtual ::grpc::Status StreamedMoveItem(::grpc::ServerContext* context, ::grpc::ServerUnaryStreamer< ::io::deephaven::proto::backplane::grpc::MoveItemRequest,::io::deephaven::proto::backplane::grpc::MoveItemResponse>* server_unary_streamer) = 0; - }; - template - class WithStreamedUnaryMethod_CreateDirectory : public BaseClass { - private: - void BaseClassMustBeDerivedFromService(const Service* /*service*/) {} - public: - WithStreamedUnaryMethod_CreateDirectory() { - ::grpc::Service::MarkMethodStreamed(4, - new ::grpc::internal::StreamedUnaryHandler< - ::io::deephaven::proto::backplane::grpc::CreateDirectoryRequest, ::io::deephaven::proto::backplane::grpc::CreateDirectoryResponse>( - [this](::grpc::ServerContext* context, - ::grpc::ServerUnaryStreamer< - ::io::deephaven::proto::backplane::grpc::CreateDirectoryRequest, ::io::deephaven::proto::backplane::grpc::CreateDirectoryResponse>* streamer) { - return this->StreamedCreateDirectory(context, - streamer); - })); - } - ~WithStreamedUnaryMethod_CreateDirectory() override { - BaseClassMustBeDerivedFromService(this); - } - // disable regular version of this method - ::grpc::Status CreateDirectory(::grpc::ServerContext* /*context*/, const ::io::deephaven::proto::backplane::grpc::CreateDirectoryRequest* /*request*/, ::io::deephaven::proto::backplane::grpc::CreateDirectoryResponse* /*response*/) override { - abort(); - return ::grpc::Status(::grpc::StatusCode::UNIMPLEMENTED, ""); - } - // replace default version of method with streamed unary - virtual ::grpc::Status StreamedCreateDirectory(::grpc::ServerContext* context, ::grpc::ServerUnaryStreamer< ::io::deephaven::proto::backplane::grpc::CreateDirectoryRequest,::io::deephaven::proto::backplane::grpc::CreateDirectoryResponse>* server_unary_streamer) = 0; - }; - template - class WithStreamedUnaryMethod_DeleteItem : public BaseClass { - private: - void BaseClassMustBeDerivedFromService(const Service* /*service*/) {} - public: - WithStreamedUnaryMethod_DeleteItem() { - ::grpc::Service::MarkMethodStreamed(5, - new ::grpc::internal::StreamedUnaryHandler< - ::io::deephaven::proto::backplane::grpc::DeleteItemRequest, ::io::deephaven::proto::backplane::grpc::DeleteItemResponse>( - [this](::grpc::ServerContext* context, - ::grpc::ServerUnaryStreamer< - ::io::deephaven::proto::backplane::grpc::DeleteItemRequest, ::io::deephaven::proto::backplane::grpc::DeleteItemResponse>* streamer) { - return this->StreamedDeleteItem(context, - streamer); - })); - } - ~WithStreamedUnaryMethod_DeleteItem() override { - BaseClassMustBeDerivedFromService(this); - } - // disable regular version of this method - ::grpc::Status DeleteItem(::grpc::ServerContext* /*context*/, const ::io::deephaven::proto::backplane::grpc::DeleteItemRequest* /*request*/, ::io::deephaven::proto::backplane::grpc::DeleteItemResponse* /*response*/) override { - abort(); - return ::grpc::Status(::grpc::StatusCode::UNIMPLEMENTED, ""); - } - // replace default version of method with streamed unary - virtual ::grpc::Status StreamedDeleteItem(::grpc::ServerContext* context, ::grpc::ServerUnaryStreamer< ::io::deephaven::proto::backplane::grpc::DeleteItemRequest,::io::deephaven::proto::backplane::grpc::DeleteItemResponse>* server_unary_streamer) = 0; - }; - typedef WithStreamedUnaryMethod_ListItems > > > > > StreamedUnaryService; - typedef Service SplitStreamedService; - typedef WithStreamedUnaryMethod_ListItems > > > > > StreamedService; -}; - -} // namespace grpc -} // namespace backplane -} // namespace proto -} // namespace deephaven -} // namespace io - - -#endif // GRPC_deephaven_2fproto_2fstorage_2eproto__INCLUDED diff --git a/cpp-client/deephaven/dhclient/proto/deephaven/proto/storage.pb.cc b/cpp-client/deephaven/dhclient/proto/deephaven/proto/storage.pb.cc deleted file mode 100644 index 58664830815..00000000000 --- a/cpp-client/deephaven/dhclient/proto/deephaven/proto/storage.pb.cc +++ /dev/null @@ -1,3569 +0,0 @@ -// 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" -// @@protoc_insertion_point(includes) - -// Must be included last. -#include "google/protobuf/port_def.inc" -PROTOBUF_PRAGMA_INIT_SEG -namespace _pb = ::google::protobuf; -namespace _pbi = ::google::protobuf::internal; -namespace _fl = ::google::protobuf::internal::field_layout; -namespace io { -namespace deephaven { -namespace proto { -namespace backplane { -namespace grpc { - -inline constexpr SaveFileResponse::Impl_::Impl_( - ::_pbi::ConstantInitialized) noexcept - : _cached_size_{0}, - etag_( - &::google::protobuf::internal::fixed_address_empty_string, - ::_pbi::ConstantInitialized()) {} - -template -PROTOBUF_CONSTEXPR SaveFileResponse::SaveFileResponse(::_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() {} - union { - SaveFileResponse _instance; - }; -}; - -PROTOBUF_ATTRIBUTE_NO_DESTROY PROTOBUF_CONSTINIT - PROTOBUF_ATTRIBUTE_INIT_PRIORITY1 SaveFileResponseDefaultTypeInternal _SaveFileResponse_default_instance_; - -inline constexpr SaveFileRequest::Impl_::Impl_( - ::_pbi::ConstantInitialized) noexcept - : path_( - &::google::protobuf::internal::fixed_address_empty_string, - ::_pbi::ConstantInitialized()), - contents_( - &::google::protobuf::internal::fixed_address_empty_string, - ::_pbi::ConstantInitialized()), - allow_overwrite_{false}, - _cached_size_{0} {} - -template -PROTOBUF_CONSTEXPR SaveFileRequest::SaveFileRequest(::_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() {} - union { - SaveFileRequest _instance; - }; -}; - -PROTOBUF_ATTRIBUTE_NO_DESTROY PROTOBUF_CONSTINIT - PROTOBUF_ATTRIBUTE_INIT_PRIORITY1 SaveFileRequestDefaultTypeInternal _SaveFileRequest_default_instance_; - 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() {} - union { - MoveItemResponse _instance; - }; -}; - -PROTOBUF_ATTRIBUTE_NO_DESTROY PROTOBUF_CONSTINIT - PROTOBUF_ATTRIBUTE_INIT_PRIORITY1 MoveItemResponseDefaultTypeInternal _MoveItemResponse_default_instance_; - -inline constexpr MoveItemRequest::Impl_::Impl_( - ::_pbi::ConstantInitialized) noexcept - : old_path_( - &::google::protobuf::internal::fixed_address_empty_string, - ::_pbi::ConstantInitialized()), - new_path_( - &::google::protobuf::internal::fixed_address_empty_string, - ::_pbi::ConstantInitialized()), - allow_overwrite_{false}, - _cached_size_{0} {} - -template -PROTOBUF_CONSTEXPR MoveItemRequest::MoveItemRequest(::_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() {} - union { - MoveItemRequest _instance; - }; -}; - -PROTOBUF_ATTRIBUTE_NO_DESTROY PROTOBUF_CONSTINIT - PROTOBUF_ATTRIBUTE_INIT_PRIORITY1 MoveItemRequestDefaultTypeInternal _MoveItemRequest_default_instance_; - -inline constexpr ListItemsRequest::Impl_::Impl_( - ::_pbi::ConstantInitialized) noexcept - : _cached_size_{0}, - path_( - &::google::protobuf::internal::fixed_address_empty_string, - ::_pbi::ConstantInitialized()), - filter_glob_( - &::google::protobuf::internal::fixed_address_empty_string, - ::_pbi::ConstantInitialized()) {} - -template -PROTOBUF_CONSTEXPR ListItemsRequest::ListItemsRequest(::_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() {} - union { - ListItemsRequest _instance; - }; -}; - -PROTOBUF_ATTRIBUTE_NO_DESTROY PROTOBUF_CONSTINIT - PROTOBUF_ATTRIBUTE_INIT_PRIORITY1 ListItemsRequestDefaultTypeInternal _ListItemsRequest_default_instance_; - -inline constexpr ItemInfo::Impl_::Impl_( - ::_pbi::ConstantInitialized) noexcept - : _cached_size_{0}, - path_( - &::google::protobuf::internal::fixed_address_empty_string, - ::_pbi::ConstantInitialized()), - etag_( - &::google::protobuf::internal::fixed_address_empty_string, - ::_pbi::ConstantInitialized()), - size_{::int64_t{0}}, - type_{static_cast< ::io::deephaven::proto::backplane::grpc::ItemType >(0)} {} - -template -PROTOBUF_CONSTEXPR ItemInfo::ItemInfo(::_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() {} - union { - ItemInfo _instance; - }; -}; - -PROTOBUF_ATTRIBUTE_NO_DESTROY PROTOBUF_CONSTINIT - PROTOBUF_ATTRIBUTE_INIT_PRIORITY1 ItemInfoDefaultTypeInternal _ItemInfo_default_instance_; - -inline constexpr FetchFileResponse::Impl_::Impl_( - ::_pbi::ConstantInitialized) noexcept - : _cached_size_{0}, - contents_( - &::google::protobuf::internal::fixed_address_empty_string, - ::_pbi::ConstantInitialized()), - etag_( - &::google::protobuf::internal::fixed_address_empty_string, - ::_pbi::ConstantInitialized()) {} - -template -PROTOBUF_CONSTEXPR FetchFileResponse::FetchFileResponse(::_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() {} - union { - FetchFileResponse _instance; - }; -}; - -PROTOBUF_ATTRIBUTE_NO_DESTROY PROTOBUF_CONSTINIT - PROTOBUF_ATTRIBUTE_INIT_PRIORITY1 FetchFileResponseDefaultTypeInternal _FetchFileResponse_default_instance_; - -inline constexpr FetchFileRequest::Impl_::Impl_( - ::_pbi::ConstantInitialized) noexcept - : _cached_size_{0}, - path_( - &::google::protobuf::internal::fixed_address_empty_string, - ::_pbi::ConstantInitialized()), - etag_( - &::google::protobuf::internal::fixed_address_empty_string, - ::_pbi::ConstantInitialized()) {} - -template -PROTOBUF_CONSTEXPR FetchFileRequest::FetchFileRequest(::_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() {} - union { - FetchFileRequest _instance; - }; -}; - -PROTOBUF_ATTRIBUTE_NO_DESTROY PROTOBUF_CONSTINIT - PROTOBUF_ATTRIBUTE_INIT_PRIORITY1 FetchFileRequestDefaultTypeInternal _FetchFileRequest_default_instance_; - 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() {} - union { - DeleteItemResponse _instance; - }; -}; - -PROTOBUF_ATTRIBUTE_NO_DESTROY PROTOBUF_CONSTINIT - PROTOBUF_ATTRIBUTE_INIT_PRIORITY1 DeleteItemResponseDefaultTypeInternal _DeleteItemResponse_default_instance_; - -inline constexpr DeleteItemRequest::Impl_::Impl_( - ::_pbi::ConstantInitialized) noexcept - : path_( - &::google::protobuf::internal::fixed_address_empty_string, - ::_pbi::ConstantInitialized()), - _cached_size_{0} {} - -template -PROTOBUF_CONSTEXPR DeleteItemRequest::DeleteItemRequest(::_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() {} - union { - DeleteItemRequest _instance; - }; -}; - -PROTOBUF_ATTRIBUTE_NO_DESTROY PROTOBUF_CONSTINIT - PROTOBUF_ATTRIBUTE_INIT_PRIORITY1 DeleteItemRequestDefaultTypeInternal _DeleteItemRequest_default_instance_; - 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() {} - union { - CreateDirectoryResponse _instance; - }; -}; - -PROTOBUF_ATTRIBUTE_NO_DESTROY PROTOBUF_CONSTINIT - PROTOBUF_ATTRIBUTE_INIT_PRIORITY1 CreateDirectoryResponseDefaultTypeInternal _CreateDirectoryResponse_default_instance_; - -inline constexpr CreateDirectoryRequest::Impl_::Impl_( - ::_pbi::ConstantInitialized) noexcept - : path_( - &::google::protobuf::internal::fixed_address_empty_string, - ::_pbi::ConstantInitialized()), - _cached_size_{0} {} - -template -PROTOBUF_CONSTEXPR CreateDirectoryRequest::CreateDirectoryRequest(::_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() {} - union { - CreateDirectoryRequest _instance; - }; -}; - -PROTOBUF_ATTRIBUTE_NO_DESTROY PROTOBUF_CONSTINIT - PROTOBUF_ATTRIBUTE_INIT_PRIORITY1 CreateDirectoryRequestDefaultTypeInternal _CreateDirectoryRequest_default_instance_; - -inline constexpr ListItemsResponse::Impl_::Impl_( - ::_pbi::ConstantInitialized) noexcept - : items_{}, - canonical_path_( - &::google::protobuf::internal::fixed_address_empty_string, - ::_pbi::ConstantInitialized()), - _cached_size_{0} {} - -template -PROTOBUF_CONSTEXPR ListItemsResponse::ListItemsResponse(::_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() {} - union { - ListItemsResponse _instance; - }; -}; - -PROTOBUF_ATTRIBUTE_NO_DESTROY PROTOBUF_CONSTINIT - PROTOBUF_ATTRIBUTE_INIT_PRIORITY1 ListItemsResponseDefaultTypeInternal _ListItemsResponse_default_instance_; -} // namespace grpc -} // namespace backplane -} // namespace proto -} // namespace deephaven -} // namespace io -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[] 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[] 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)}, - {38, 48, -1, sizeof(::io::deephaven::proto::backplane::grpc::FetchFileRequest)}, - {50, 60, -1, sizeof(::io::deephaven::proto::backplane::grpc::FetchFileResponse)}, - {62, -1, -1, sizeof(::io::deephaven::proto::backplane::grpc::SaveFileRequest)}, - {73, 82, -1, sizeof(::io::deephaven::proto::backplane::grpc::SaveFileResponse)}, - {83, -1, -1, sizeof(::io::deephaven::proto::backplane::grpc::MoveItemRequest)}, - {94, -1, -1, sizeof(::io::deephaven::proto::backplane::grpc::MoveItemResponse)}, - {102, -1, -1, sizeof(::io::deephaven::proto::backplane::grpc::CreateDirectoryRequest)}, - {111, -1, -1, sizeof(::io::deephaven::proto::backplane::grpc::CreateDirectoryResponse)}, - {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, - &::io::deephaven::proto::backplane::grpc::_ListItemsResponse_default_instance_._instance, - &::io::deephaven::proto::backplane::grpc::_FetchFileRequest_default_instance_._instance, - &::io::deephaven::proto::backplane::grpc::_FetchFileResponse_default_instance_._instance, - &::io::deephaven::proto::backplane::grpc::_SaveFileRequest_default_instance_._instance, - &::io::deephaven::proto::backplane::grpc::_SaveFileResponse_default_instance_._instance, - &::io::deephaven::proto::backplane::grpc::_MoveItemRequest_default_instance_._instance, - &::io::deephaven::proto::backplane::grpc::_MoveItemResponse_default_instance_._instance, - &::io::deephaven::proto::backplane::grpc::_CreateDirectoryRequest_default_instance_._instance, - &::io::deephaven::proto::backplane::grpc::_CreateDirectoryResponse_default_instance_._instance, - &::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[] 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(" - "\tH\000\210\001\001B\016\n\014_filter_glob\"\201\001\n\010ItemInfo\022\014\n\004p" - "ath\030\001 \001(\t\0229\n\004type\030\002 \001(\0162+.io.deephaven.p" - "roto.backplane.grpc.ItemType\022\020\n\004size\030\003 \001" - "(\022B\0020\001\022\021\n\004etag\030\004 \001(\tH\000\210\001\001B\007\n\005_etag\"g\n\021Li" - "stItemsResponse\022:\n\005items\030\001 \003(\0132+.io.deep" - "haven.proto.backplane.grpc.ItemInfo\022\026\n\016c" - "anonical_path\030\002 \001(\t\"<\n\020FetchFileRequest\022" - "\014\n\004path\030\001 \001(\t\022\021\n\004etag\030\002 \001(\tH\000\210\001\001B\007\n\005_eta" - "g\"A\n\021FetchFileResponse\022\020\n\010contents\030\001 \001(\014" - "\022\021\n\004etag\030\002 \001(\tH\000\210\001\001B\007\n\005_etag\"J\n\017SaveFile" - "Request\022\027\n\017allow_overwrite\030\001 \001(\010\022\014\n\004path" - "\030\002 \001(\t\022\020\n\010contents\030\003 \001(\014\".\n\020SaveFileResp" - "onse\022\021\n\004etag\030\001 \001(\tH\000\210\001\001B\007\n\005_etag\"N\n\017Move" - "ItemRequest\022\020\n\010old_path\030\001 \001(\t\022\020\n\010new_pat" - "h\030\002 \001(\t\022\027\n\017allow_overwrite\030\003 \001(\010\"\022\n\020Move" - "ItemResponse\"&\n\026CreateDirectoryRequest\022\014" - "\n\004path\030\001 \001(\t\"\031\n\027CreateDirectoryResponse\"" - "!\n\021DeleteItemRequest\022\014\n\004path\030\001 \001(\t\"\024\n\022De" - "leteItemResponse*0\n\010ItemType\022\013\n\007UNKNOWN\020" - "\000\022\r\n\tDIRECTORY\020\001\022\010\n\004FILE\020\0022\374\005\n\016StorageSe" - "rvice\022x\n\tListItems\0223.io.deephaven.proto." - "backplane.grpc.ListItemsRequest\0324.io.dee" - "phaven.proto.backplane.grpc.ListItemsRes" - "ponse\"\000\022x\n\tFetchFile\0223.io.deephaven.prot" - "o.backplane.grpc.FetchFileRequest\0324.io.d" - "eephaven.proto.backplane.grpc.FetchFileR" - "esponse\"\000\022u\n\010SaveFile\0222.io.deephaven.pro" - "to.backplane.grpc.SaveFileRequest\0323.io.d" - "eephaven.proto.backplane.grpc.SaveFileRe" - "sponse\"\000\022u\n\010MoveItem\0222.io.deephaven.prot" - "o.backplane.grpc.MoveItemRequest\0323.io.de" - "ephaven.proto.backplane.grpc.MoveItemRes" - "ponse\"\000\022\212\001\n\017CreateDirectory\0229.io.deephav" - "en.proto.backplane.grpc.CreateDirectoryR" - "equest\032:.io.deephaven.proto.backplane.gr" - "pc.CreateDirectoryResponse\"\000\022{\n\nDeleteIt" - "em\0224.io.deephaven.proto.backplane.grpc.D" - "eleteItemRequest\0325.io.deephaven.proto.ba" - "ckplane.grpc.DeleteItemResponse\"\000BCH\001P\001Z" - "=github.com/deephaven/deephaven-core/go/" - "internal/proto/storageb\006proto3" -}; -static ::absl::once_flag descriptor_table_deephaven_2fproto_2fstorage_2eproto_once; -PROTOBUF_CONSTINIT const ::_pbi::DescriptorTable descriptor_table_deephaven_2fproto_2fstorage_2eproto = { - false, - false, - 1750, - descriptor_table_protodef_deephaven_2fproto_2fstorage_2eproto, - "deephaven/proto/storage.proto", - &descriptor_table_deephaven_2fproto_2fstorage_2eproto_once, - nullptr, - 0, - 13, - schemas, - file_default_instances, - TableStruct_deephaven_2fproto_2fstorage_2eproto::offsets, - file_level_enum_descriptors_deephaven_2fproto_2fstorage_2eproto, - file_level_service_descriptors_deephaven_2fproto_2fstorage_2eproto, -}; -namespace io { -namespace deephaven { -namespace proto { -namespace backplane { -namespace grpc { -const ::google::protobuf::EnumDescriptor* ItemType_descriptor() { - ::google::protobuf::internal::AssignDescriptors(&descriptor_table_deephaven_2fproto_2fstorage_2eproto); - return file_level_enum_descriptors_deephaven_2fproto_2fstorage_2eproto[0]; -} -PROTOBUF_CONSTINIT const uint32_t ItemType_internal_data_[] = { - 196608u, 0u, }; -bool ItemType_IsValid(int value) { - return 0 <= value && value <= 2; -} -// =================================================================== - -class ListItemsRequest::_Internal { - public: - using HasBits = - decltype(std::declval()._impl_._has_bits_); - static constexpr ::int32_t kHasBitsOffset = - 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 ::io::deephaven::proto::backplane::grpc::ListItemsRequest& from_msg) - : _has_bits_{from._has_bits_}, - _cached_size_{0}, - path_(arena, from.path_), - filter_glob_(arena, from.filter_glob_) {} - -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_, from); - - // @@protoc_insertion_point(copy_constructor:io.deephaven.proto.backplane.grpc.ListItemsRequest) -} -inline PROTOBUF_NDEBUG_INLINE ListItemsRequest::Impl_::Impl_( - ::google::protobuf::internal::InternalVisibility visibility, - ::google::protobuf::Arena* arena) - : _cached_size_{0}, - path_(arena), - filter_glob_(arena) {} - -inline void ListItemsRequest::SharedCtor(::_pb::Arena* arena) { - new (&_impl_) Impl_(internal_visibility(), arena); -} -ListItemsRequest::~ListItemsRequest() { - // @@protoc_insertion_point(destructor:io.deephaven.proto.backplane.grpc.ListItemsRequest) - _internal_metadata_.Delete<::google::protobuf::UnknownFieldSet>(); - SharedDtor(); -} -inline void ListItemsRequest::SharedDtor() { - ABSL_DCHECK(GetArena() == nullptr); - _impl_.path_.Destroy(); - _impl_.filter_glob_.Destroy(); - _impl_.~Impl_(); -} - -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_ = { - { - PROTOBUF_FIELD_OFFSET(ListItemsRequest, _impl_._has_bits_), - 0, // no _extensions_ - 4, 8, // max_field_number, fast_idx_mask - offsetof(decltype(_table_), field_lookup_table), - 4294967286, // skipmap - offsetof(decltype(_table_), field_entries), - 2, // 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::ListItemsRequest>(), // to_prefetch - #endif // PROTOBUF_PREFETCH_PARSE_TABLE - }, {{ - // optional string filter_glob = 4; - {::_pbi::TcParser::FastUS1, - {34, 0, 0, PROTOBUF_FIELD_OFFSET(ListItemsRequest, _impl_.filter_glob_)}}, - // string path = 1; - {::_pbi::TcParser::FastUS1, - {10, 63, 0, PROTOBUF_FIELD_OFFSET(ListItemsRequest, _impl_.path_)}}, - }}, {{ - 65535, 65535 - }}, {{ - // string path = 1; - {PROTOBUF_FIELD_OFFSET(ListItemsRequest, _impl_.path_), -1, 0, - (0 | ::_fl::kFcSingular | ::_fl::kUtf8String | ::_fl::kRepAString)}, - // optional string filter_glob = 4; - {PROTOBUF_FIELD_OFFSET(ListItemsRequest, _impl_.filter_glob_), _Internal::kHasBitsOffset + 0, 0, - (0 | ::_fl::kFcOptional | ::_fl::kUtf8String | ::_fl::kRepAString)}, - }}, - // no aux_entries - {{ - "\62\4\13\0\0\0\0\0" - "io.deephaven.proto.backplane.grpc.ListItemsRequest" - "path" - "filter_glob" - }}, -}; - -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; - - _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>(); -} - -#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) - ABSL_DCHECK_NE(&from, _this); - ::uint32_t cached_has_bits = 0; - (void) cached_has_bits; - - if (!from._internal_path().empty()) { - _this->_internal_set_path(from._internal_path()); - } - 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_); -} - -void ListItemsRequest::CopyFrom(const ListItemsRequest& from) { -// @@protoc_insertion_point(class_specific_copy_from_start:io.deephaven.proto.backplane.grpc.ListItemsRequest) - if (&from == this) return; - Clear(); - MergeFrom(from); -} - - -void ListItemsRequest::InternalSwap(ListItemsRequest* PROTOBUF_RESTRICT other) { - using std::swap; - auto* arena = GetArena(); - ABSL_DCHECK_EQ(arena, other->GetArena()); - _internal_metadata_.InternalSwap(&other->_internal_metadata_); - swap(_impl_._has_bits_[0], other->_impl_._has_bits_[0]); - ::_pbi::ArenaStringPtr::InternalSwap(&_impl_.path_, &other->_impl_.path_, arena); - ::_pbi::ArenaStringPtr::InternalSwap(&_impl_.filter_glob_, &other->_impl_.filter_glob_, arena); -} - -::google::protobuf::Metadata ListItemsRequest::GetMetadata() const { - return ::google::protobuf::Message::GetMetadataImpl(GetClassData()->full()); -} -// =================================================================== - -class ItemInfo::_Internal { - public: - using HasBits = - decltype(std::declval()._impl_._has_bits_); - static constexpr ::int32_t kHasBitsOffset = - 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 ::io::deephaven::proto::backplane::grpc::ItemInfo& from_msg) - : _has_bits_{from._has_bits_}, - _cached_size_{0}, - path_(arena, from.path_), - etag_(arena, from.etag_) {} - -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_, from); - ::memcpy(reinterpret_cast(&_impl_) + - offsetof(Impl_, size_), - reinterpret_cast(&from._impl_) + - offsetof(Impl_, size_), - offsetof(Impl_, type_) - - offsetof(Impl_, size_) + - sizeof(Impl_::type_)); - - // @@protoc_insertion_point(copy_constructor:io.deephaven.proto.backplane.grpc.ItemInfo) -} -inline PROTOBUF_NDEBUG_INLINE ItemInfo::Impl_::Impl_( - ::google::protobuf::internal::InternalVisibility visibility, - ::google::protobuf::Arena* arena) - : _cached_size_{0}, - path_(arena), - etag_(arena) {} - -inline void ItemInfo::SharedCtor(::_pb::Arena* arena) { - new (&_impl_) Impl_(internal_visibility(), arena); - ::memset(reinterpret_cast(&_impl_) + - offsetof(Impl_, size_), - 0, - offsetof(Impl_, type_) - - offsetof(Impl_, size_) + - sizeof(Impl_::type_)); -} -ItemInfo::~ItemInfo() { - // @@protoc_insertion_point(destructor:io.deephaven.proto.backplane.grpc.ItemInfo) - _internal_metadata_.Delete<::google::protobuf::UnknownFieldSet>(); - SharedDtor(); -} -inline void ItemInfo::SharedDtor() { - ABSL_DCHECK(GetArena() == nullptr); - _impl_.path_.Destroy(); - _impl_.etag_.Destroy(); - _impl_.~Impl_(); -} - -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_ = { - { - PROTOBUF_FIELD_OFFSET(ItemInfo, _impl_._has_bits_), - 0, // no _extensions_ - 4, 24, // max_field_number, fast_idx_mask - offsetof(decltype(_table_), field_lookup_table), - 4294967280, // skipmap - offsetof(decltype(_table_), field_entries), - 4, // 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::ItemInfo>(), // to_prefetch - #endif // PROTOBUF_PREFETCH_PARSE_TABLE - }, {{ - // optional string etag = 4; - {::_pbi::TcParser::FastUS1, - {34, 0, 0, PROTOBUF_FIELD_OFFSET(ItemInfo, _impl_.etag_)}}, - // string path = 1; - {::_pbi::TcParser::FastUS1, - {10, 63, 0, PROTOBUF_FIELD_OFFSET(ItemInfo, _impl_.path_)}}, - // .io.deephaven.proto.backplane.grpc.ItemType type = 2; - {::_pbi::TcParser::SingularVarintNoZag1<::uint32_t, offsetof(ItemInfo, _impl_.type_), 63>(), - {16, 63, 0, PROTOBUF_FIELD_OFFSET(ItemInfo, _impl_.type_)}}, - // sint64 size = 3 [jstype = JS_STRING]; - {::_pbi::TcParser::FastZ64S1, - {24, 63, 0, PROTOBUF_FIELD_OFFSET(ItemInfo, _impl_.size_)}}, - }}, {{ - 65535, 65535 - }}, {{ - // string path = 1; - {PROTOBUF_FIELD_OFFSET(ItemInfo, _impl_.path_), -1, 0, - (0 | ::_fl::kFcSingular | ::_fl::kUtf8String | ::_fl::kRepAString)}, - // .io.deephaven.proto.backplane.grpc.ItemType type = 2; - {PROTOBUF_FIELD_OFFSET(ItemInfo, _impl_.type_), -1, 0, - (0 | ::_fl::kFcSingular | ::_fl::kOpenEnum)}, - // sint64 size = 3 [jstype = JS_STRING]; - {PROTOBUF_FIELD_OFFSET(ItemInfo, _impl_.size_), -1, 0, - (0 | ::_fl::kFcSingular | ::_fl::kSInt64)}, - // optional string etag = 4; - {PROTOBUF_FIELD_OFFSET(ItemInfo, _impl_.etag_), _Internal::kHasBitsOffset + 0, 0, - (0 | ::_fl::kFcOptional | ::_fl::kUtf8String | ::_fl::kRepAString)}, - }}, - // no aux_entries - {{ - "\52\4\0\0\4\0\0\0" - "io.deephaven.proto.backplane.grpc.ItemInfo" - "path" - "etag" - }}, -}; - -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; - - _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>(); -} - -#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) - ABSL_DCHECK_NE(&from, _this); - ::uint32_t cached_has_bits = 0; - (void) cached_has_bits; - - if (!from._internal_path().empty()) { - _this->_internal_set_path(from._internal_path()); - } - 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->_impl_.size_ = from._impl_.size_; - } - if (from._internal_type() != 0) { - _this->_impl_.type_ = from._impl_.type_; - } - _this->_impl_._has_bits_[0] |= cached_has_bits; - _this->_internal_metadata_.MergeFrom<::google::protobuf::UnknownFieldSet>(from._internal_metadata_); -} - -void ItemInfo::CopyFrom(const ItemInfo& from) { -// @@protoc_insertion_point(class_specific_copy_from_start:io.deephaven.proto.backplane.grpc.ItemInfo) - if (&from == this) return; - Clear(); - MergeFrom(from); -} - - -void ItemInfo::InternalSwap(ItemInfo* PROTOBUF_RESTRICT other) { - using std::swap; - auto* arena = GetArena(); - ABSL_DCHECK_EQ(arena, other->GetArena()); - _internal_metadata_.InternalSwap(&other->_internal_metadata_); - swap(_impl_._has_bits_[0], other->_impl_._has_bits_[0]); - ::_pbi::ArenaStringPtr::InternalSwap(&_impl_.path_, &other->_impl_.path_, arena); - ::_pbi::ArenaStringPtr::InternalSwap(&_impl_.etag_, &other->_impl_.etag_, arena); - ::google::protobuf::internal::memswap< - PROTOBUF_FIELD_OFFSET(ItemInfo, _impl_.type_) - + sizeof(ItemInfo::_impl_.type_) - - PROTOBUF_FIELD_OFFSET(ItemInfo, _impl_.size_)>( - reinterpret_cast(&_impl_.size_), - reinterpret_cast(&other->_impl_.size_)); -} - -::google::protobuf::Metadata ItemInfo::GetMetadata() const { - return ::google::protobuf::Message::GetMetadataImpl(GetClassData()->full()); -} -// =================================================================== - -class ListItemsResponse::_Internal { - public: -}; - -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 ::io::deephaven::proto::backplane::grpc::ListItemsResponse& from_msg) - : items_{visibility, arena, from.items_}, - canonical_path_(arena, from.canonical_path_), - _cached_size_{0} {} - -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_, from); - - // @@protoc_insertion_point(copy_constructor:io.deephaven.proto.backplane.grpc.ListItemsResponse) -} -inline PROTOBUF_NDEBUG_INLINE ListItemsResponse::Impl_::Impl_( - ::google::protobuf::internal::InternalVisibility visibility, - ::google::protobuf::Arena* arena) - : items_{visibility, arena}, - canonical_path_(arena), - _cached_size_{0} {} - -inline void ListItemsResponse::SharedCtor(::_pb::Arena* arena) { - new (&_impl_) Impl_(internal_visibility(), arena); -} -ListItemsResponse::~ListItemsResponse() { - // @@protoc_insertion_point(destructor:io.deephaven.proto.backplane.grpc.ListItemsResponse) - _internal_metadata_.Delete<::google::protobuf::UnknownFieldSet>(); - SharedDtor(); -} -inline void ListItemsResponse::SharedDtor() { - ABSL_DCHECK(GetArena() == nullptr); - _impl_.canonical_path_.Destroy(); - _impl_.~Impl_(); -} - -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_ = { - { - 0, // no _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::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, - {18, 63, 0, PROTOBUF_FIELD_OFFSET(ListItemsResponse, _impl_.canonical_path_)}}, - // repeated .io.deephaven.proto.backplane.grpc.ItemInfo items = 1; - {::_pbi::TcParser::FastMtR1, - {10, 63, 0, PROTOBUF_FIELD_OFFSET(ListItemsResponse, _impl_.items_)}}, - }}, {{ - 65535, 65535 - }}, {{ - // repeated .io.deephaven.proto.backplane.grpc.ItemInfo items = 1; - {PROTOBUF_FIELD_OFFSET(ListItemsResponse, _impl_.items_), 0, 0, - (0 | ::_fl::kFcRepeated | ::_fl::kMessage | ::_fl::kTvTable)}, - // string canonical_path = 2; - {PROTOBUF_FIELD_OFFSET(ListItemsResponse, _impl_.canonical_path_), 0, 0, - (0 | ::_fl::kFcSingular | ::_fl::kUtf8String | ::_fl::kRepAString)}, - }}, {{ - {::_pbi::TcParser::GetTable<::io::deephaven::proto::backplane::grpc::ItemInfo>()}, - }}, {{ - "\63\0\16\0\0\0\0\0" - "io.deephaven.proto.backplane.grpc.ListItemsResponse" - "canonical_path" - }}, -}; - -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; - - _impl_.items_.Clear(); - _impl_.canonical_path_.ClearToEmpty(); - _internal_metadata_.Clear<::google::protobuf::UnknownFieldSet>(); -} - -#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) - ABSL_DCHECK_NE(&from, _this); - ::uint32_t cached_has_bits = 0; - (void) cached_has_bits; - - _this->_internal_mutable_items()->MergeFrom( - from._internal_items()); - if (!from._internal_canonical_path().empty()) { - _this->_internal_set_canonical_path(from._internal_canonical_path()); - } - _this->_internal_metadata_.MergeFrom<::google::protobuf::UnknownFieldSet>(from._internal_metadata_); -} - -void ListItemsResponse::CopyFrom(const ListItemsResponse& from) { -// @@protoc_insertion_point(class_specific_copy_from_start:io.deephaven.proto.backplane.grpc.ListItemsResponse) - if (&from == this) return; - Clear(); - MergeFrom(from); -} - - -void ListItemsResponse::InternalSwap(ListItemsResponse* PROTOBUF_RESTRICT other) { - using std::swap; - auto* arena = GetArena(); - ABSL_DCHECK_EQ(arena, other->GetArena()); - _internal_metadata_.InternalSwap(&other->_internal_metadata_); - _impl_.items_.InternalSwap(&other->_impl_.items_); - ::_pbi::ArenaStringPtr::InternalSwap(&_impl_.canonical_path_, &other->_impl_.canonical_path_, arena); -} - -::google::protobuf::Metadata ListItemsResponse::GetMetadata() const { - return ::google::protobuf::Message::GetMetadataImpl(GetClassData()->full()); -} -// =================================================================== - -class FetchFileRequest::_Internal { - public: - using HasBits = - decltype(std::declval()._impl_._has_bits_); - static constexpr ::int32_t kHasBitsOffset = - 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 ::io::deephaven::proto::backplane::grpc::FetchFileRequest& from_msg) - : _has_bits_{from._has_bits_}, - _cached_size_{0}, - path_(arena, from.path_), - etag_(arena, from.etag_) {} - -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_, from); - - // @@protoc_insertion_point(copy_constructor:io.deephaven.proto.backplane.grpc.FetchFileRequest) -} -inline PROTOBUF_NDEBUG_INLINE FetchFileRequest::Impl_::Impl_( - ::google::protobuf::internal::InternalVisibility visibility, - ::google::protobuf::Arena* arena) - : _cached_size_{0}, - path_(arena), - etag_(arena) {} - -inline void FetchFileRequest::SharedCtor(::_pb::Arena* arena) { - new (&_impl_) Impl_(internal_visibility(), arena); -} -FetchFileRequest::~FetchFileRequest() { - // @@protoc_insertion_point(destructor:io.deephaven.proto.backplane.grpc.FetchFileRequest) - _internal_metadata_.Delete<::google::protobuf::UnknownFieldSet>(); - SharedDtor(); -} -inline void FetchFileRequest::SharedDtor() { - ABSL_DCHECK(GetArena() == nullptr); - _impl_.path_.Destroy(); - _impl_.etag_.Destroy(); - _impl_.~Impl_(); -} - -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_ = { - { - PROTOBUF_FIELD_OFFSET(FetchFileRequest, _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 - 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::FetchFileRequest>(), // to_prefetch - #endif // PROTOBUF_PREFETCH_PARSE_TABLE - }, {{ - // optional string etag = 2; - {::_pbi::TcParser::FastUS1, - {18, 0, 0, PROTOBUF_FIELD_OFFSET(FetchFileRequest, _impl_.etag_)}}, - // string path = 1; - {::_pbi::TcParser::FastUS1, - {10, 63, 0, PROTOBUF_FIELD_OFFSET(FetchFileRequest, _impl_.path_)}}, - }}, {{ - 65535, 65535 - }}, {{ - // string path = 1; - {PROTOBUF_FIELD_OFFSET(FetchFileRequest, _impl_.path_), -1, 0, - (0 | ::_fl::kFcSingular | ::_fl::kUtf8String | ::_fl::kRepAString)}, - // optional string etag = 2; - {PROTOBUF_FIELD_OFFSET(FetchFileRequest, _impl_.etag_), _Internal::kHasBitsOffset + 0, 0, - (0 | ::_fl::kFcOptional | ::_fl::kUtf8String | ::_fl::kRepAString)}, - }}, - // no aux_entries - {{ - "\62\4\4\0\0\0\0\0" - "io.deephaven.proto.backplane.grpc.FetchFileRequest" - "path" - "etag" - }}, -}; - -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; - - _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>(); -} - -#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) - ABSL_DCHECK_NE(&from, _this); - ::uint32_t cached_has_bits = 0; - (void) cached_has_bits; - - if (!from._internal_path().empty()) { - _this->_internal_set_path(from._internal_path()); - } - 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_); -} - -void FetchFileRequest::CopyFrom(const FetchFileRequest& from) { -// @@protoc_insertion_point(class_specific_copy_from_start:io.deephaven.proto.backplane.grpc.FetchFileRequest) - if (&from == this) return; - Clear(); - MergeFrom(from); -} - - -void FetchFileRequest::InternalSwap(FetchFileRequest* PROTOBUF_RESTRICT other) { - using std::swap; - auto* arena = GetArena(); - ABSL_DCHECK_EQ(arena, other->GetArena()); - _internal_metadata_.InternalSwap(&other->_internal_metadata_); - swap(_impl_._has_bits_[0], other->_impl_._has_bits_[0]); - ::_pbi::ArenaStringPtr::InternalSwap(&_impl_.path_, &other->_impl_.path_, arena); - ::_pbi::ArenaStringPtr::InternalSwap(&_impl_.etag_, &other->_impl_.etag_, arena); -} - -::google::protobuf::Metadata FetchFileRequest::GetMetadata() const { - return ::google::protobuf::Message::GetMetadataImpl(GetClassData()->full()); -} -// =================================================================== - -class FetchFileResponse::_Internal { - public: - using HasBits = - decltype(std::declval()._impl_._has_bits_); - static constexpr ::int32_t kHasBitsOffset = - 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 ::io::deephaven::proto::backplane::grpc::FetchFileResponse& from_msg) - : _has_bits_{from._has_bits_}, - _cached_size_{0}, - contents_(arena, from.contents_), - etag_(arena, from.etag_) {} - -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_, from); - - // @@protoc_insertion_point(copy_constructor:io.deephaven.proto.backplane.grpc.FetchFileResponse) -} -inline PROTOBUF_NDEBUG_INLINE FetchFileResponse::Impl_::Impl_( - ::google::protobuf::internal::InternalVisibility visibility, - ::google::protobuf::Arena* arena) - : _cached_size_{0}, - contents_(arena), - etag_(arena) {} - -inline void FetchFileResponse::SharedCtor(::_pb::Arena* arena) { - new (&_impl_) Impl_(internal_visibility(), arena); -} -FetchFileResponse::~FetchFileResponse() { - // @@protoc_insertion_point(destructor:io.deephaven.proto.backplane.grpc.FetchFileResponse) - _internal_metadata_.Delete<::google::protobuf::UnknownFieldSet>(); - SharedDtor(); -} -inline void FetchFileResponse::SharedDtor() { - ABSL_DCHECK(GetArena() == nullptr); - _impl_.contents_.Destroy(); - _impl_.etag_.Destroy(); - _impl_.~Impl_(); -} - -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_ = { - { - PROTOBUF_FIELD_OFFSET(FetchFileResponse, _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 - 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::FetchFileResponse>(), // to_prefetch - #endif // PROTOBUF_PREFETCH_PARSE_TABLE - }, {{ - // optional string etag = 2; - {::_pbi::TcParser::FastUS1, - {18, 0, 0, PROTOBUF_FIELD_OFFSET(FetchFileResponse, _impl_.etag_)}}, - // bytes contents = 1; - {::_pbi::TcParser::FastBS1, - {10, 63, 0, PROTOBUF_FIELD_OFFSET(FetchFileResponse, _impl_.contents_)}}, - }}, {{ - 65535, 65535 - }}, {{ - // bytes contents = 1; - {PROTOBUF_FIELD_OFFSET(FetchFileResponse, _impl_.contents_), -1, 0, - (0 | ::_fl::kFcSingular | ::_fl::kBytes | ::_fl::kRepAString)}, - // optional string etag = 2; - {PROTOBUF_FIELD_OFFSET(FetchFileResponse, _impl_.etag_), _Internal::kHasBitsOffset + 0, 0, - (0 | ::_fl::kFcOptional | ::_fl::kUtf8String | ::_fl::kRepAString)}, - }}, - // no aux_entries - {{ - "\63\0\4\0\0\0\0\0" - "io.deephaven.proto.backplane.grpc.FetchFileResponse" - "etag" - }}, -}; - -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; - - _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>(); -} - -#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) - ABSL_DCHECK_NE(&from, _this); - ::uint32_t cached_has_bits = 0; - (void) cached_has_bits; - - if (!from._internal_contents().empty()) { - _this->_internal_set_contents(from._internal_contents()); - } - 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_); -} - -void FetchFileResponse::CopyFrom(const FetchFileResponse& from) { -// @@protoc_insertion_point(class_specific_copy_from_start:io.deephaven.proto.backplane.grpc.FetchFileResponse) - if (&from == this) return; - Clear(); - MergeFrom(from); -} - - -void FetchFileResponse::InternalSwap(FetchFileResponse* PROTOBUF_RESTRICT other) { - using std::swap; - auto* arena = GetArena(); - ABSL_DCHECK_EQ(arena, other->GetArena()); - _internal_metadata_.InternalSwap(&other->_internal_metadata_); - swap(_impl_._has_bits_[0], other->_impl_._has_bits_[0]); - ::_pbi::ArenaStringPtr::InternalSwap(&_impl_.contents_, &other->_impl_.contents_, arena); - ::_pbi::ArenaStringPtr::InternalSwap(&_impl_.etag_, &other->_impl_.etag_, arena); -} - -::google::protobuf::Metadata FetchFileResponse::GetMetadata() const { - return ::google::protobuf::Message::GetMetadataImpl(GetClassData()->full()); -} -// =================================================================== - -class SaveFileRequest::_Internal { - public: -}; - -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 ::io::deephaven::proto::backplane::grpc::SaveFileRequest& from_msg) - : path_(arena, from.path_), - contents_(arena, from.contents_), - _cached_size_{0} {} - -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_, from); - _impl_.allow_overwrite_ = from._impl_.allow_overwrite_; - - // @@protoc_insertion_point(copy_constructor:io.deephaven.proto.backplane.grpc.SaveFileRequest) -} -inline PROTOBUF_NDEBUG_INLINE SaveFileRequest::Impl_::Impl_( - ::google::protobuf::internal::InternalVisibility visibility, - ::google::protobuf::Arena* arena) - : path_(arena), - contents_(arena), - _cached_size_{0} {} - -inline void SaveFileRequest::SharedCtor(::_pb::Arena* arena) { - new (&_impl_) Impl_(internal_visibility(), arena); - _impl_.allow_overwrite_ = {}; -} -SaveFileRequest::~SaveFileRequest() { - // @@protoc_insertion_point(destructor:io.deephaven.proto.backplane.grpc.SaveFileRequest) - _internal_metadata_.Delete<::google::protobuf::UnknownFieldSet>(); - SharedDtor(); -} -inline void SaveFileRequest::SharedDtor() { - ABSL_DCHECK(GetArena() == nullptr); - _impl_.path_.Destroy(); - _impl_.contents_.Destroy(); - _impl_.~Impl_(); -} - -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_ = { - { - 0, // no _has_bits_ - 0, // no _extensions_ - 3, 24, // max_field_number, fast_idx_mask - offsetof(decltype(_table_), field_lookup_table), - 4294967288, // skipmap - offsetof(decltype(_table_), field_entries), - 3, // 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::SaveFileRequest>(), // to_prefetch - #endif // PROTOBUF_PREFETCH_PARSE_TABLE - }, {{ - {::_pbi::TcParser::MiniParse, {}}, - // bool allow_overwrite = 1; - {::_pbi::TcParser::SingularVarintNoZag1(), - {8, 63, 0, PROTOBUF_FIELD_OFFSET(SaveFileRequest, _impl_.allow_overwrite_)}}, - // string path = 2; - {::_pbi::TcParser::FastUS1, - {18, 63, 0, PROTOBUF_FIELD_OFFSET(SaveFileRequest, _impl_.path_)}}, - // bytes contents = 3; - {::_pbi::TcParser::FastBS1, - {26, 63, 0, PROTOBUF_FIELD_OFFSET(SaveFileRequest, _impl_.contents_)}}, - }}, {{ - 65535, 65535 - }}, {{ - // bool allow_overwrite = 1; - {PROTOBUF_FIELD_OFFSET(SaveFileRequest, _impl_.allow_overwrite_), 0, 0, - (0 | ::_fl::kFcSingular | ::_fl::kBool)}, - // string path = 2; - {PROTOBUF_FIELD_OFFSET(SaveFileRequest, _impl_.path_), 0, 0, - (0 | ::_fl::kFcSingular | ::_fl::kUtf8String | ::_fl::kRepAString)}, - // bytes contents = 3; - {PROTOBUF_FIELD_OFFSET(SaveFileRequest, _impl_.contents_), 0, 0, - (0 | ::_fl::kFcSingular | ::_fl::kBytes | ::_fl::kRepAString)}, - }}, - // no aux_entries - {{ - "\61\0\4\0\0\0\0\0" - "io.deephaven.proto.backplane.grpc.SaveFileRequest" - "path" - }}, -}; - -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; - - _impl_.path_.ClearToEmpty(); - _impl_.contents_.ClearToEmpty(); - _impl_.allow_overwrite_ = false; - _internal_metadata_.Clear<::google::protobuf::UnknownFieldSet>(); -} - -#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) - ABSL_DCHECK_NE(&from, _this); - ::uint32_t cached_has_bits = 0; - (void) cached_has_bits; - - if (!from._internal_path().empty()) { - _this->_internal_set_path(from._internal_path()); - } - if (!from._internal_contents().empty()) { - _this->_internal_set_contents(from._internal_contents()); - } - if (from._internal_allow_overwrite() != 0) { - _this->_impl_.allow_overwrite_ = from._impl_.allow_overwrite_; - } - _this->_internal_metadata_.MergeFrom<::google::protobuf::UnknownFieldSet>(from._internal_metadata_); -} - -void SaveFileRequest::CopyFrom(const SaveFileRequest& from) { -// @@protoc_insertion_point(class_specific_copy_from_start:io.deephaven.proto.backplane.grpc.SaveFileRequest) - if (&from == this) return; - Clear(); - MergeFrom(from); -} - - -void SaveFileRequest::InternalSwap(SaveFileRequest* PROTOBUF_RESTRICT other) { - using std::swap; - auto* arena = GetArena(); - ABSL_DCHECK_EQ(arena, other->GetArena()); - _internal_metadata_.InternalSwap(&other->_internal_metadata_); - ::_pbi::ArenaStringPtr::InternalSwap(&_impl_.path_, &other->_impl_.path_, arena); - ::_pbi::ArenaStringPtr::InternalSwap(&_impl_.contents_, &other->_impl_.contents_, arena); - swap(_impl_.allow_overwrite_, other->_impl_.allow_overwrite_); -} - -::google::protobuf::Metadata SaveFileRequest::GetMetadata() const { - return ::google::protobuf::Message::GetMetadataImpl(GetClassData()->full()); -} -// =================================================================== - -class SaveFileResponse::_Internal { - public: - using HasBits = - decltype(std::declval()._impl_._has_bits_); - static constexpr ::int32_t kHasBitsOffset = - 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 ::io::deephaven::proto::backplane::grpc::SaveFileResponse& from_msg) - : _has_bits_{from._has_bits_}, - _cached_size_{0}, - etag_(arena, from.etag_) {} - -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_, from); - - // @@protoc_insertion_point(copy_constructor:io.deephaven.proto.backplane.grpc.SaveFileResponse) -} -inline PROTOBUF_NDEBUG_INLINE SaveFileResponse::Impl_::Impl_( - ::google::protobuf::internal::InternalVisibility visibility, - ::google::protobuf::Arena* arena) - : _cached_size_{0}, - etag_(arena) {} - -inline void SaveFileResponse::SharedCtor(::_pb::Arena* arena) { - new (&_impl_) Impl_(internal_visibility(), arena); -} -SaveFileResponse::~SaveFileResponse() { - // @@protoc_insertion_point(destructor:io.deephaven.proto.backplane.grpc.SaveFileResponse) - _internal_metadata_.Delete<::google::protobuf::UnknownFieldSet>(); - SharedDtor(); -} -inline void SaveFileResponse::SharedDtor() { - ABSL_DCHECK(GetArena() == nullptr); - _impl_.etag_.Destroy(); - _impl_.~Impl_(); -} - -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_ = { - { - PROTOBUF_FIELD_OFFSET(SaveFileResponse, _impl_._has_bits_), - 0, // no _extensions_ - 1, 0, // max_field_number, fast_idx_mask - offsetof(decltype(_table_), field_lookup_table), - 4294967294, // skipmap - offsetof(decltype(_table_), field_entries), - 1, // 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::SaveFileResponse>(), // to_prefetch - #endif // PROTOBUF_PREFETCH_PARSE_TABLE - }, {{ - // optional string etag = 1; - {::_pbi::TcParser::FastUS1, - {10, 0, 0, PROTOBUF_FIELD_OFFSET(SaveFileResponse, _impl_.etag_)}}, - }}, {{ - 65535, 65535 - }}, {{ - // optional string etag = 1; - {PROTOBUF_FIELD_OFFSET(SaveFileResponse, _impl_.etag_), _Internal::kHasBitsOffset + 0, 0, - (0 | ::_fl::kFcOptional | ::_fl::kUtf8String | ::_fl::kRepAString)}, - }}, - // no aux_entries - {{ - "\62\4\0\0\0\0\0\0" - "io.deephaven.proto.backplane.grpc.SaveFileResponse" - "etag" - }}, -}; - -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; - - 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>(); -} - -#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) - ABSL_DCHECK_NE(&from, _this); - ::uint32_t cached_has_bits = 0; - (void) cached_has_bits; - - 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_); -} - -void SaveFileResponse::CopyFrom(const SaveFileResponse& from) { -// @@protoc_insertion_point(class_specific_copy_from_start:io.deephaven.proto.backplane.grpc.SaveFileResponse) - if (&from == this) return; - Clear(); - MergeFrom(from); -} - - -void SaveFileResponse::InternalSwap(SaveFileResponse* PROTOBUF_RESTRICT other) { - using std::swap; - auto* arena = GetArena(); - ABSL_DCHECK_EQ(arena, other->GetArena()); - _internal_metadata_.InternalSwap(&other->_internal_metadata_); - swap(_impl_._has_bits_[0], other->_impl_._has_bits_[0]); - ::_pbi::ArenaStringPtr::InternalSwap(&_impl_.etag_, &other->_impl_.etag_, arena); -} - -::google::protobuf::Metadata SaveFileResponse::GetMetadata() const { - return ::google::protobuf::Message::GetMetadataImpl(GetClassData()->full()); -} -// =================================================================== - -class MoveItemRequest::_Internal { - public: -}; - -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 ::io::deephaven::proto::backplane::grpc::MoveItemRequest& from_msg) - : old_path_(arena, from.old_path_), - new_path_(arena, from.new_path_), - _cached_size_{0} {} - -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_, from); - _impl_.allow_overwrite_ = from._impl_.allow_overwrite_; - - // @@protoc_insertion_point(copy_constructor:io.deephaven.proto.backplane.grpc.MoveItemRequest) -} -inline PROTOBUF_NDEBUG_INLINE MoveItemRequest::Impl_::Impl_( - ::google::protobuf::internal::InternalVisibility visibility, - ::google::protobuf::Arena* arena) - : old_path_(arena), - new_path_(arena), - _cached_size_{0} {} - -inline void MoveItemRequest::SharedCtor(::_pb::Arena* arena) { - new (&_impl_) Impl_(internal_visibility(), arena); - _impl_.allow_overwrite_ = {}; -} -MoveItemRequest::~MoveItemRequest() { - // @@protoc_insertion_point(destructor:io.deephaven.proto.backplane.grpc.MoveItemRequest) - _internal_metadata_.Delete<::google::protobuf::UnknownFieldSet>(); - SharedDtor(); -} -inline void MoveItemRequest::SharedDtor() { - ABSL_DCHECK(GetArena() == nullptr); - _impl_.old_path_.Destroy(); - _impl_.new_path_.Destroy(); - _impl_.~Impl_(); -} - -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_ = { - { - 0, // no _has_bits_ - 0, // no _extensions_ - 3, 24, // max_field_number, fast_idx_mask - offsetof(decltype(_table_), field_lookup_table), - 4294967288, // skipmap - offsetof(decltype(_table_), field_entries), - 3, // 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::MoveItemRequest>(), // to_prefetch - #endif // PROTOBUF_PREFETCH_PARSE_TABLE - }, {{ - {::_pbi::TcParser::MiniParse, {}}, - // string old_path = 1; - {::_pbi::TcParser::FastUS1, - {10, 63, 0, PROTOBUF_FIELD_OFFSET(MoveItemRequest, _impl_.old_path_)}}, - // string new_path = 2; - {::_pbi::TcParser::FastUS1, - {18, 63, 0, PROTOBUF_FIELD_OFFSET(MoveItemRequest, _impl_.new_path_)}}, - // bool allow_overwrite = 3; - {::_pbi::TcParser::SingularVarintNoZag1(), - {24, 63, 0, PROTOBUF_FIELD_OFFSET(MoveItemRequest, _impl_.allow_overwrite_)}}, - }}, {{ - 65535, 65535 - }}, {{ - // string old_path = 1; - {PROTOBUF_FIELD_OFFSET(MoveItemRequest, _impl_.old_path_), 0, 0, - (0 | ::_fl::kFcSingular | ::_fl::kUtf8String | ::_fl::kRepAString)}, - // string new_path = 2; - {PROTOBUF_FIELD_OFFSET(MoveItemRequest, _impl_.new_path_), 0, 0, - (0 | ::_fl::kFcSingular | ::_fl::kUtf8String | ::_fl::kRepAString)}, - // bool allow_overwrite = 3; - {PROTOBUF_FIELD_OFFSET(MoveItemRequest, _impl_.allow_overwrite_), 0, 0, - (0 | ::_fl::kFcSingular | ::_fl::kBool)}, - }}, - // no aux_entries - {{ - "\61\10\10\0\0\0\0\0" - "io.deephaven.proto.backplane.grpc.MoveItemRequest" - "old_path" - "new_path" - }}, -}; - -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; - - _impl_.old_path_.ClearToEmpty(); - _impl_.new_path_.ClearToEmpty(); - _impl_.allow_overwrite_ = false; - _internal_metadata_.Clear<::google::protobuf::UnknownFieldSet>(); -} - -#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) - ABSL_DCHECK_NE(&from, _this); - ::uint32_t cached_has_bits = 0; - (void) cached_has_bits; - - if (!from._internal_old_path().empty()) { - _this->_internal_set_old_path(from._internal_old_path()); - } - if (!from._internal_new_path().empty()) { - _this->_internal_set_new_path(from._internal_new_path()); - } - if (from._internal_allow_overwrite() != 0) { - _this->_impl_.allow_overwrite_ = from._impl_.allow_overwrite_; - } - _this->_internal_metadata_.MergeFrom<::google::protobuf::UnknownFieldSet>(from._internal_metadata_); -} - -void MoveItemRequest::CopyFrom(const MoveItemRequest& from) { -// @@protoc_insertion_point(class_specific_copy_from_start:io.deephaven.proto.backplane.grpc.MoveItemRequest) - if (&from == this) return; - Clear(); - MergeFrom(from); -} - - -void MoveItemRequest::InternalSwap(MoveItemRequest* PROTOBUF_RESTRICT other) { - using std::swap; - auto* arena = GetArena(); - ABSL_DCHECK_EQ(arena, other->GetArena()); - _internal_metadata_.InternalSwap(&other->_internal_metadata_); - ::_pbi::ArenaStringPtr::InternalSwap(&_impl_.old_path_, &other->_impl_.old_path_, arena); - ::_pbi::ArenaStringPtr::InternalSwap(&_impl_.new_path_, &other->_impl_.new_path_, arena); - swap(_impl_.allow_overwrite_, other->_impl_.allow_overwrite_); -} - -::google::protobuf::Metadata MoveItemRequest::GetMetadata() const { - return ::google::protobuf::Message::GetMetadataImpl(GetClassData()->full()); -} -// =================================================================== - -class MoveItemResponse::_Internal { - public: -}; - -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>( - from._internal_metadata_); - - // @@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 - {{ - }}, -}; - - - - - - - - -::google::protobuf::Metadata MoveItemResponse::GetMetadata() const { - return ::google::protobuf::internal::ZeroFieldsBase::GetMetadataImpl(GetClassData()->full()); -} -// =================================================================== - -class CreateDirectoryRequest::_Internal { - public: -}; - -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 ::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_, from); - - // @@protoc_insertion_point(copy_constructor:io.deephaven.proto.backplane.grpc.CreateDirectoryRequest) -} -inline PROTOBUF_NDEBUG_INLINE CreateDirectoryRequest::Impl_::Impl_( - ::google::protobuf::internal::InternalVisibility visibility, - ::google::protobuf::Arena* arena) - : path_(arena), - _cached_size_{0} {} - -inline void CreateDirectoryRequest::SharedCtor(::_pb::Arena* arena) { - new (&_impl_) Impl_(internal_visibility(), arena); -} -CreateDirectoryRequest::~CreateDirectoryRequest() { - // @@protoc_insertion_point(destructor:io.deephaven.proto.backplane.grpc.CreateDirectoryRequest) - _internal_metadata_.Delete<::google::protobuf::UnknownFieldSet>(); - SharedDtor(); -} -inline void CreateDirectoryRequest::SharedDtor() { - ABSL_DCHECK(GetArena() == nullptr); - _impl_.path_.Destroy(); - _impl_.~Impl_(); -} - -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_ = { - { - 0, // no _has_bits_ - 0, // no _extensions_ - 1, 0, // max_field_number, fast_idx_mask - offsetof(decltype(_table_), field_lookup_table), - 4294967294, // skipmap - offsetof(decltype(_table_), field_entries), - 1, // 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::CreateDirectoryRequest>(), // to_prefetch - #endif // PROTOBUF_PREFETCH_PARSE_TABLE - }, {{ - // string path = 1; - {::_pbi::TcParser::FastUS1, - {10, 63, 0, PROTOBUF_FIELD_OFFSET(CreateDirectoryRequest, _impl_.path_)}}, - }}, {{ - 65535, 65535 - }}, {{ - // string path = 1; - {PROTOBUF_FIELD_OFFSET(CreateDirectoryRequest, _impl_.path_), 0, 0, - (0 | ::_fl::kFcSingular | ::_fl::kUtf8String | ::_fl::kRepAString)}, - }}, - // no aux_entries - {{ - "\70\4\0\0\0\0\0\0" - "io.deephaven.proto.backplane.grpc.CreateDirectoryRequest" - "path" - }}, -}; - -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; - - _impl_.path_.ClearToEmpty(); - _internal_metadata_.Clear<::google::protobuf::UnknownFieldSet>(); -} - -#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) - ABSL_DCHECK_NE(&from, _this); - ::uint32_t cached_has_bits = 0; - (void) cached_has_bits; - - if (!from._internal_path().empty()) { - _this->_internal_set_path(from._internal_path()); - } - _this->_internal_metadata_.MergeFrom<::google::protobuf::UnknownFieldSet>(from._internal_metadata_); -} - -void CreateDirectoryRequest::CopyFrom(const CreateDirectoryRequest& from) { -// @@protoc_insertion_point(class_specific_copy_from_start:io.deephaven.proto.backplane.grpc.CreateDirectoryRequest) - if (&from == this) return; - Clear(); - MergeFrom(from); -} - - -void CreateDirectoryRequest::InternalSwap(CreateDirectoryRequest* PROTOBUF_RESTRICT other) { - using std::swap; - auto* arena = GetArena(); - ABSL_DCHECK_EQ(arena, other->GetArena()); - _internal_metadata_.InternalSwap(&other->_internal_metadata_); - ::_pbi::ArenaStringPtr::InternalSwap(&_impl_.path_, &other->_impl_.path_, arena); -} - -::google::protobuf::Metadata CreateDirectoryRequest::GetMetadata() const { - return ::google::protobuf::Message::GetMetadataImpl(GetClassData()->full()); -} -// =================================================================== - -class CreateDirectoryResponse::_Internal { - public: -}; - -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>( - from._internal_metadata_); - - // @@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 - {{ - }}, -}; - - - - - - - - -::google::protobuf::Metadata CreateDirectoryResponse::GetMetadata() const { - return ::google::protobuf::internal::ZeroFieldsBase::GetMetadataImpl(GetClassData()->full()); -} -// =================================================================== - -class DeleteItemRequest::_Internal { - public: -}; - -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 ::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_, from); - - // @@protoc_insertion_point(copy_constructor:io.deephaven.proto.backplane.grpc.DeleteItemRequest) -} -inline PROTOBUF_NDEBUG_INLINE DeleteItemRequest::Impl_::Impl_( - ::google::protobuf::internal::InternalVisibility visibility, - ::google::protobuf::Arena* arena) - : path_(arena), - _cached_size_{0} {} - -inline void DeleteItemRequest::SharedCtor(::_pb::Arena* arena) { - new (&_impl_) Impl_(internal_visibility(), arena); -} -DeleteItemRequest::~DeleteItemRequest() { - // @@protoc_insertion_point(destructor:io.deephaven.proto.backplane.grpc.DeleteItemRequest) - _internal_metadata_.Delete<::google::protobuf::UnknownFieldSet>(); - SharedDtor(); -} -inline void DeleteItemRequest::SharedDtor() { - ABSL_DCHECK(GetArena() == nullptr); - _impl_.path_.Destroy(); - _impl_.~Impl_(); -} - -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_ = { - { - 0, // no _has_bits_ - 0, // no _extensions_ - 1, 0, // max_field_number, fast_idx_mask - offsetof(decltype(_table_), field_lookup_table), - 4294967294, // skipmap - offsetof(decltype(_table_), field_entries), - 1, // 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::DeleteItemRequest>(), // to_prefetch - #endif // PROTOBUF_PREFETCH_PARSE_TABLE - }, {{ - // string path = 1; - {::_pbi::TcParser::FastUS1, - {10, 63, 0, PROTOBUF_FIELD_OFFSET(DeleteItemRequest, _impl_.path_)}}, - }}, {{ - 65535, 65535 - }}, {{ - // string path = 1; - {PROTOBUF_FIELD_OFFSET(DeleteItemRequest, _impl_.path_), 0, 0, - (0 | ::_fl::kFcSingular | ::_fl::kUtf8String | ::_fl::kRepAString)}, - }}, - // no aux_entries - {{ - "\63\4\0\0\0\0\0\0" - "io.deephaven.proto.backplane.grpc.DeleteItemRequest" - "path" - }}, -}; - -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; - - _impl_.path_.ClearToEmpty(); - _internal_metadata_.Clear<::google::protobuf::UnknownFieldSet>(); -} - -#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) - ABSL_DCHECK_NE(&from, _this); - ::uint32_t cached_has_bits = 0; - (void) cached_has_bits; - - if (!from._internal_path().empty()) { - _this->_internal_set_path(from._internal_path()); - } - _this->_internal_metadata_.MergeFrom<::google::protobuf::UnknownFieldSet>(from._internal_metadata_); -} - -void DeleteItemRequest::CopyFrom(const DeleteItemRequest& from) { -// @@protoc_insertion_point(class_specific_copy_from_start:io.deephaven.proto.backplane.grpc.DeleteItemRequest) - if (&from == this) return; - Clear(); - MergeFrom(from); -} - - -void DeleteItemRequest::InternalSwap(DeleteItemRequest* PROTOBUF_RESTRICT other) { - using std::swap; - auto* arena = GetArena(); - ABSL_DCHECK_EQ(arena, other->GetArena()); - _internal_metadata_.InternalSwap(&other->_internal_metadata_); - ::_pbi::ArenaStringPtr::InternalSwap(&_impl_.path_, &other->_impl_.path_, arena); -} - -::google::protobuf::Metadata DeleteItemRequest::GetMetadata() const { - return ::google::protobuf::Message::GetMetadataImpl(GetClassData()->full()); -} -// =================================================================== - -class DeleteItemResponse::_Internal { - public: -}; - -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>( - from._internal_metadata_); - - // @@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 - {{ - }}, -}; - - - - - - - - -::google::protobuf::Metadata DeleteItemResponse::GetMetadata() const { - return ::google::protobuf::internal::ZeroFieldsBase::GetMetadataImpl(GetClassData()->full()); -} -// @@protoc_insertion_point(namespace_scope) -} // namespace grpc -} // namespace backplane -} // namespace proto -} // namespace deephaven -} // namespace io -namespace google { -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 deleted file mode 100644 index 826ffd18e27..00000000000 --- a/cpp-client/deephaven/dhclient/proto/deephaven/proto/storage.pb.h +++ /dev/null @@ -1,3841 +0,0 @@ -// 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 - -#ifndef GOOGLE_PROTOBUF_INCLUDED_deephaven_2fproto_2fstorage_2eproto_2epb_2eh -#define GOOGLE_PROTOBUF_INCLUDED_deephaven_2fproto_2fstorage_2eproto_2epb_2eh - -#include -#include -#include -#include - -#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" -#include "google/protobuf/generated_message_bases.h" -#include "google/protobuf/generated_message_tctable_decl.h" -#include "google/protobuf/generated_message_util.h" -#include "google/protobuf/metadata_lite.h" -#include "google/protobuf/generated_message_reflection.h" -#include "google/protobuf/message.h" -#include "google/protobuf/repeated_field.h" // IWYU pragma: export -#include "google/protobuf/extension_set.h" // IWYU pragma: export -#include "google/protobuf/generated_enum_reflection.h" -#include "google/protobuf/unknown_field_set.h" -// @@protoc_insertion_point(includes) - -// Must be included last. -#include "google/protobuf/port_def.inc" - -#define PROTOBUF_INTERNAL_EXPORT_deephaven_2fproto_2fstorage_2eproto - -namespace google { -namespace protobuf { -namespace internal { -class AnyMetadata; -} // namespace internal -} // namespace protobuf -} // namespace google - -// Internal implementation detail -- do not use these members. -struct TableStruct_deephaven_2fproto_2fstorage_2eproto { - static const ::uint32_t offsets[]; -}; -extern const ::google::protobuf::internal::DescriptorTable - descriptor_table_deephaven_2fproto_2fstorage_2eproto; -namespace io { -namespace deephaven { -namespace proto { -namespace backplane { -namespace grpc { -class CreateDirectoryRequest; -struct CreateDirectoryRequestDefaultTypeInternal; -extern CreateDirectoryRequestDefaultTypeInternal _CreateDirectoryRequest_default_instance_; -class CreateDirectoryResponse; -struct CreateDirectoryResponseDefaultTypeInternal; -extern CreateDirectoryResponseDefaultTypeInternal _CreateDirectoryResponse_default_instance_; -class DeleteItemRequest; -struct DeleteItemRequestDefaultTypeInternal; -extern DeleteItemRequestDefaultTypeInternal _DeleteItemRequest_default_instance_; -class DeleteItemResponse; -struct DeleteItemResponseDefaultTypeInternal; -extern DeleteItemResponseDefaultTypeInternal _DeleteItemResponse_default_instance_; -class FetchFileRequest; -struct FetchFileRequestDefaultTypeInternal; -extern FetchFileRequestDefaultTypeInternal _FetchFileRequest_default_instance_; -class FetchFileResponse; -struct FetchFileResponseDefaultTypeInternal; -extern FetchFileResponseDefaultTypeInternal _FetchFileResponse_default_instance_; -class ItemInfo; -struct ItemInfoDefaultTypeInternal; -extern ItemInfoDefaultTypeInternal _ItemInfo_default_instance_; -class ListItemsRequest; -struct ListItemsRequestDefaultTypeInternal; -extern ListItemsRequestDefaultTypeInternal _ListItemsRequest_default_instance_; -class ListItemsResponse; -struct ListItemsResponseDefaultTypeInternal; -extern ListItemsResponseDefaultTypeInternal _ListItemsResponse_default_instance_; -class MoveItemRequest; -struct MoveItemRequestDefaultTypeInternal; -extern MoveItemRequestDefaultTypeInternal _MoveItemRequest_default_instance_; -class MoveItemResponse; -struct MoveItemResponseDefaultTypeInternal; -extern MoveItemResponseDefaultTypeInternal _MoveItemResponse_default_instance_; -class SaveFileRequest; -struct SaveFileRequestDefaultTypeInternal; -extern SaveFileRequestDefaultTypeInternal _SaveFileRequest_default_instance_; -class SaveFileResponse; -struct SaveFileResponseDefaultTypeInternal; -extern SaveFileResponseDefaultTypeInternal _SaveFileResponse_default_instance_; -} // namespace grpc -} // namespace backplane -} // namespace proto -} // namespace deephaven -} // namespace io -namespace google { -namespace protobuf { -} // namespace protobuf -} // namespace google - -namespace io { -namespace deephaven { -namespace proto { -namespace backplane { -namespace grpc { -enum ItemType : int { - UNKNOWN = 0, - DIRECTORY = 1, - FILE = 2, - ItemType_INT_MIN_SENTINEL_DO_NOT_USE_ = - std::numeric_limits<::int32_t>::min(), - ItemType_INT_MAX_SENTINEL_DO_NOT_USE_ = - std::numeric_limits<::int32_t>::max(), -}; - -bool ItemType_IsValid(int value); -extern const uint32_t ItemType_internal_data_[]; -constexpr ItemType ItemType_MIN = static_cast(0); -constexpr ItemType ItemType_MAX = static_cast(2); -constexpr int ItemType_ARRAYSIZE = 2 + 1; -const ::google::protobuf::EnumDescriptor* -ItemType_descriptor(); -template -const std::string& ItemType_Name(T value) { - static_assert(std::is_same::value || - std::is_integral::value, - "Incorrect type passed to ItemType_Name()."); - return ItemType_Name(static_cast(value)); -} -template <> -inline const std::string& ItemType_Name(ItemType value) { - return ::google::protobuf::internal::NameOfDenseEnum( - static_cast(value)); -} -inline bool ItemType_Parse(absl::string_view name, ItemType* value) { - return ::google::protobuf::internal::ParseNamedEnum( - ItemType_descriptor(), name, value); -} - -// =================================================================== - - -// ------------------------------------------------------------------- - -class SaveFileResponse final : public ::google::protobuf::Message -/* @@protoc_insertion_point(class_definition:io.deephaven.proto.backplane.grpc.SaveFileResponse) */ { - public: - inline SaveFileResponse() : SaveFileResponse(nullptr) {} - ~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; - } - inline SaveFileResponse& operator=(SaveFileResponse&& 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 SaveFileResponse& default_instance() { - return *internal_default_instance(); - } - 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); } - 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 - if (GetArena() == other->GetArena()) { -#endif // !PROTOBUF_FORCE_COPY_IN_SWAP - InternalSwap(other); - } else { - ::google::protobuf::internal::GenericSwap(this, other); - } - } - void UnsafeArenaSwap(SaveFileResponse* other) { - if (other == this) return; - ABSL_DCHECK(GetArena() == other->GetArena()); - InternalSwap(other); - } - - // implements Message ---------------------------------------------- - - 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); } - - private: - static void MergeImpl( - ::google::protobuf::MessageLite& to_msg, - const ::google::protobuf::MessageLite& from_msg); - - 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; - #endif // PROTOBUF_CUSTOM_VTABLE - int GetCachedSize() const { return _impl_._cached_size_.Get(); } - - private: - void SharedCtor(::google::protobuf::Arena* arena); - void SharedDtor(); - void InternalSwap(SaveFileResponse* other); - private: - friend class ::google::protobuf::internal::AnyMetadata; - 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); - 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, - }; - // optional string etag = 1; - bool has_etag() const; - void clear_etag() ; - const std::string& etag() const; - template - void set_etag(Arg_&& arg, Args_... args); - std::string* mutable_etag(); - PROTOBUF_NODISCARD std::string* release_etag(); - void set_allocated_etag(std::string* value); - - private: - const std::string& _internal_etag() const; - inline PROTOBUF_ALWAYS_INLINE void _internal_set_etag( - const std::string& value); - std::string* _internal_mutable_etag(); - - public: - // @@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 - 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 SaveFileResponse& from_msg); - ::google::protobuf::internal::HasBits<1> _has_bits_; - mutable ::google::protobuf::internal::CachedSize _cached_size_; - ::google::protobuf::internal::ArenaStringPtr etag_; - PROTOBUF_TSAN_DECLARE_MEMBER - }; - 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) */ { - public: - inline SaveFileRequest() : SaveFileRequest(nullptr) {} - ~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; - } - inline SaveFileRequest& operator=(SaveFileRequest&& 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 SaveFileRequest& default_instance() { - return *internal_default_instance(); - } - 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); } - 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 - if (GetArena() == other->GetArena()) { -#endif // !PROTOBUF_FORCE_COPY_IN_SWAP - InternalSwap(other); - } else { - ::google::protobuf::internal::GenericSwap(this, other); - } - } - void UnsafeArenaSwap(SaveFileRequest* other) { - if (other == this) return; - ABSL_DCHECK(GetArena() == other->GetArena()); - InternalSwap(other); - } - - // implements Message ---------------------------------------------- - - 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); } - - private: - static void MergeImpl( - ::google::protobuf::MessageLite& to_msg, - const ::google::protobuf::MessageLite& from_msg); - - 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; - #endif // PROTOBUF_CUSTOM_VTABLE - int GetCachedSize() const { return _impl_._cached_size_.Get(); } - - private: - void SharedCtor(::google::protobuf::Arena* arena); - void SharedDtor(); - void InternalSwap(SaveFileRequest* other); - private: - friend class ::google::protobuf::internal::AnyMetadata; - 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); - 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, - kAllowOverwriteFieldNumber = 1, - }; - // string path = 2; - void clear_path() ; - const std::string& path() const; - template - void set_path(Arg_&& arg, Args_... args); - std::string* mutable_path(); - PROTOBUF_NODISCARD std::string* release_path(); - void set_allocated_path(std::string* value); - - private: - const std::string& _internal_path() const; - inline PROTOBUF_ALWAYS_INLINE void _internal_set_path( - const std::string& value); - std::string* _internal_mutable_path(); - - public: - // bytes contents = 3; - void clear_contents() ; - const std::string& contents() const; - template - void set_contents(Arg_&& arg, Args_... args); - std::string* mutable_contents(); - PROTOBUF_NODISCARD std::string* release_contents(); - void set_allocated_contents(std::string* value); - - private: - const std::string& _internal_contents() const; - inline PROTOBUF_ALWAYS_INLINE void _internal_set_contents( - const std::string& value); - std::string* _internal_mutable_contents(); - - public: - // bool allow_overwrite = 1; - void clear_allow_overwrite() ; - bool allow_overwrite() const; - void set_allow_overwrite(bool value); - - private: - bool _internal_allow_overwrite() const; - void _internal_set_allow_overwrite(bool value); - - public: - // @@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 - 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 SaveFileRequest& from_msg); - ::google::protobuf::internal::ArenaStringPtr path_; - ::google::protobuf::internal::ArenaStringPtr contents_; - bool allow_overwrite_; - mutable ::google::protobuf::internal::CachedSize _cached_size_; - PROTOBUF_TSAN_DECLARE_MEMBER - }; - 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) */ { - public: - inline MoveItemResponse() : MoveItemResponse(nullptr) {} - 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; - } - inline MoveItemResponse& operator=(MoveItemResponse&& 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 MoveItemResponse& default_instance() { - return *internal_default_instance(); - } - 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); } - 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 - if (GetArena() == other->GetArena()) { -#endif // !PROTOBUF_FORCE_COPY_IN_SWAP - InternalSwap(other); - } else { - ::google::protobuf::internal::GenericSwap(this, other); - } - } - void UnsafeArenaSwap(MoveItemResponse* other) { - if (other == this) return; - ABSL_DCHECK(GetArena() == other->GetArena()); - InternalSwap(other); - } - - // implements Message ---------------------------------------------- - - 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) { - ::google::protobuf::internal::ZeroFieldsBase::CopyImpl(*this, from); - } - using ::google::protobuf::internal::ZeroFieldsBase::MergeFrom; - void MergeFrom(const MoveItemResponse& 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.MoveItemResponse"; } - - protected: - explicit MoveItemResponse(::google::protobuf::Arena* arena); - MoveItemResponse(::google::protobuf::Arena* arena, const MoveItemResponse& from); - 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; - 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 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) */ { - public: - inline MoveItemRequest() : MoveItemRequest(nullptr) {} - ~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; - } - inline MoveItemRequest& operator=(MoveItemRequest&& 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 MoveItemRequest& default_instance() { - return *internal_default_instance(); - } - 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); } - 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 - if (GetArena() == other->GetArena()) { -#endif // !PROTOBUF_FORCE_COPY_IN_SWAP - InternalSwap(other); - } else { - ::google::protobuf::internal::GenericSwap(this, other); - } - } - void UnsafeArenaSwap(MoveItemRequest* other) { - if (other == this) return; - ABSL_DCHECK(GetArena() == other->GetArena()); - InternalSwap(other); - } - - // implements Message ---------------------------------------------- - - 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); } - - private: - static void MergeImpl( - ::google::protobuf::MessageLite& to_msg, - const ::google::protobuf::MessageLite& from_msg); - - 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; - #endif // PROTOBUF_CUSTOM_VTABLE - int GetCachedSize() const { return _impl_._cached_size_.Get(); } - - private: - void SharedCtor(::google::protobuf::Arena* arena); - void SharedDtor(); - void InternalSwap(MoveItemRequest* other); - private: - friend class ::google::protobuf::internal::AnyMetadata; - 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); - 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, - kAllowOverwriteFieldNumber = 3, - }; - // string old_path = 1; - void clear_old_path() ; - const std::string& old_path() const; - template - void set_old_path(Arg_&& arg, Args_... args); - std::string* mutable_old_path(); - PROTOBUF_NODISCARD std::string* release_old_path(); - void set_allocated_old_path(std::string* value); - - private: - const std::string& _internal_old_path() const; - inline PROTOBUF_ALWAYS_INLINE void _internal_set_old_path( - const std::string& value); - std::string* _internal_mutable_old_path(); - - public: - // string new_path = 2; - void clear_new_path() ; - const std::string& new_path() const; - template - void set_new_path(Arg_&& arg, Args_... args); - std::string* mutable_new_path(); - PROTOBUF_NODISCARD std::string* release_new_path(); - void set_allocated_new_path(std::string* value); - - private: - const std::string& _internal_new_path() const; - inline PROTOBUF_ALWAYS_INLINE void _internal_set_new_path( - const std::string& value); - std::string* _internal_mutable_new_path(); - - public: - // bool allow_overwrite = 3; - void clear_allow_overwrite() ; - bool allow_overwrite() const; - void set_allow_overwrite(bool value); - - private: - bool _internal_allow_overwrite() const; - void _internal_set_allow_overwrite(bool value); - - public: - // @@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 - 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 MoveItemRequest& from_msg); - ::google::protobuf::internal::ArenaStringPtr old_path_; - ::google::protobuf::internal::ArenaStringPtr new_path_; - bool allow_overwrite_; - mutable ::google::protobuf::internal::CachedSize _cached_size_; - PROTOBUF_TSAN_DECLARE_MEMBER - }; - 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) */ { - public: - inline ListItemsRequest() : ListItemsRequest(nullptr) {} - ~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; - } - inline ListItemsRequest& operator=(ListItemsRequest&& 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 ListItemsRequest& default_instance() { - return *internal_default_instance(); - } - 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); } - 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 - if (GetArena() == other->GetArena()) { -#endif // !PROTOBUF_FORCE_COPY_IN_SWAP - InternalSwap(other); - } else { - ::google::protobuf::internal::GenericSwap(this, other); - } - } - void UnsafeArenaSwap(ListItemsRequest* other) { - if (other == this) return; - ABSL_DCHECK(GetArena() == other->GetArena()); - InternalSwap(other); - } - - // implements Message ---------------------------------------------- - - 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); } - - private: - static void MergeImpl( - ::google::protobuf::MessageLite& to_msg, - const ::google::protobuf::MessageLite& from_msg); - - 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; - #endif // PROTOBUF_CUSTOM_VTABLE - int GetCachedSize() const { return _impl_._cached_size_.Get(); } - - private: - void SharedCtor(::google::protobuf::Arena* arena); - void SharedDtor(); - void InternalSwap(ListItemsRequest* other); - private: - friend class ::google::protobuf::internal::AnyMetadata; - 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); - 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, - }; - // string path = 1; - void clear_path() ; - const std::string& path() const; - template - void set_path(Arg_&& arg, Args_... args); - std::string* mutable_path(); - PROTOBUF_NODISCARD std::string* release_path(); - void set_allocated_path(std::string* value); - - private: - const std::string& _internal_path() const; - inline PROTOBUF_ALWAYS_INLINE void _internal_set_path( - const std::string& value); - std::string* _internal_mutable_path(); - - public: - // optional string filter_glob = 4; - bool has_filter_glob() const; - void clear_filter_glob() ; - const std::string& filter_glob() const; - template - void set_filter_glob(Arg_&& arg, Args_... args); - std::string* mutable_filter_glob(); - PROTOBUF_NODISCARD std::string* release_filter_glob(); - void set_allocated_filter_glob(std::string* value); - - private: - const std::string& _internal_filter_glob() const; - inline PROTOBUF_ALWAYS_INLINE void _internal_set_filter_glob( - const std::string& value); - std::string* _internal_mutable_filter_glob(); - - public: - // @@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 - 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 ListItemsRequest& from_msg); - ::google::protobuf::internal::HasBits<1> _has_bits_; - mutable ::google::protobuf::internal::CachedSize _cached_size_; - ::google::protobuf::internal::ArenaStringPtr path_; - ::google::protobuf::internal::ArenaStringPtr filter_glob_; - PROTOBUF_TSAN_DECLARE_MEMBER - }; - 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) */ { - public: - inline ItemInfo() : ItemInfo(nullptr) {} - ~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; - } - inline ItemInfo& operator=(ItemInfo&& 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 ItemInfo& default_instance() { - return *internal_default_instance(); - } - 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); } - 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 - if (GetArena() == other->GetArena()) { -#endif // !PROTOBUF_FORCE_COPY_IN_SWAP - InternalSwap(other); - } else { - ::google::protobuf::internal::GenericSwap(this, other); - } - } - void UnsafeArenaSwap(ItemInfo* other) { - if (other == this) return; - ABSL_DCHECK(GetArena() == other->GetArena()); - InternalSwap(other); - } - - // implements Message ---------------------------------------------- - - 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); } - - private: - static void MergeImpl( - ::google::protobuf::MessageLite& to_msg, - const ::google::protobuf::MessageLite& from_msg); - - 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; - #endif // PROTOBUF_CUSTOM_VTABLE - int GetCachedSize() const { return _impl_._cached_size_.Get(); } - - private: - void SharedCtor(::google::protobuf::Arena* arena); - void SharedDtor(); - void InternalSwap(ItemInfo* other); - private: - friend class ::google::protobuf::internal::AnyMetadata; - 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); - 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, - kSizeFieldNumber = 3, - kTypeFieldNumber = 2, - }; - // string path = 1; - void clear_path() ; - const std::string& path() const; - template - void set_path(Arg_&& arg, Args_... args); - std::string* mutable_path(); - PROTOBUF_NODISCARD std::string* release_path(); - void set_allocated_path(std::string* value); - - private: - const std::string& _internal_path() const; - inline PROTOBUF_ALWAYS_INLINE void _internal_set_path( - const std::string& value); - std::string* _internal_mutable_path(); - - public: - // optional string etag = 4; - bool has_etag() const; - void clear_etag() ; - const std::string& etag() const; - template - void set_etag(Arg_&& arg, Args_... args); - std::string* mutable_etag(); - PROTOBUF_NODISCARD std::string* release_etag(); - void set_allocated_etag(std::string* value); - - private: - const std::string& _internal_etag() const; - inline PROTOBUF_ALWAYS_INLINE void _internal_set_etag( - const std::string& value); - std::string* _internal_mutable_etag(); - - public: - // sint64 size = 3 [jstype = JS_STRING]; - void clear_size() ; - ::int64_t size() const; - void set_size(::int64_t value); - - private: - ::int64_t _internal_size() const; - void _internal_set_size(::int64_t value); - - public: - // .io.deephaven.proto.backplane.grpc.ItemType type = 2; - void clear_type() ; - ::io::deephaven::proto::backplane::grpc::ItemType type() const; - void set_type(::io::deephaven::proto::backplane::grpc::ItemType value); - - private: - ::io::deephaven::proto::backplane::grpc::ItemType _internal_type() const; - void _internal_set_type(::io::deephaven::proto::backplane::grpc::ItemType value); - - public: - // @@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 - 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 ItemInfo& from_msg); - ::google::protobuf::internal::HasBits<1> _has_bits_; - mutable ::google::protobuf::internal::CachedSize _cached_size_; - ::google::protobuf::internal::ArenaStringPtr path_; - ::google::protobuf::internal::ArenaStringPtr etag_; - ::int64_t size_; - int type_; - PROTOBUF_TSAN_DECLARE_MEMBER - }; - 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) */ { - public: - inline FetchFileResponse() : FetchFileResponse(nullptr) {} - ~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; - } - inline FetchFileResponse& operator=(FetchFileResponse&& 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 FetchFileResponse& default_instance() { - return *internal_default_instance(); - } - 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); } - 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 - if (GetArena() == other->GetArena()) { -#endif // !PROTOBUF_FORCE_COPY_IN_SWAP - InternalSwap(other); - } else { - ::google::protobuf::internal::GenericSwap(this, other); - } - } - void UnsafeArenaSwap(FetchFileResponse* other) { - if (other == this) return; - ABSL_DCHECK(GetArena() == other->GetArena()); - InternalSwap(other); - } - - // implements Message ---------------------------------------------- - - 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); } - - private: - static void MergeImpl( - ::google::protobuf::MessageLite& to_msg, - const ::google::protobuf::MessageLite& from_msg); - - 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; - #endif // PROTOBUF_CUSTOM_VTABLE - int GetCachedSize() const { return _impl_._cached_size_.Get(); } - - private: - void SharedCtor(::google::protobuf::Arena* arena); - void SharedDtor(); - void InternalSwap(FetchFileResponse* other); - private: - friend class ::google::protobuf::internal::AnyMetadata; - 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); - 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, - }; - // bytes contents = 1; - void clear_contents() ; - const std::string& contents() const; - template - void set_contents(Arg_&& arg, Args_... args); - std::string* mutable_contents(); - PROTOBUF_NODISCARD std::string* release_contents(); - void set_allocated_contents(std::string* value); - - private: - const std::string& _internal_contents() const; - inline PROTOBUF_ALWAYS_INLINE void _internal_set_contents( - const std::string& value); - std::string* _internal_mutable_contents(); - - public: - // optional string etag = 2; - bool has_etag() const; - void clear_etag() ; - const std::string& etag() const; - template - void set_etag(Arg_&& arg, Args_... args); - std::string* mutable_etag(); - PROTOBUF_NODISCARD std::string* release_etag(); - void set_allocated_etag(std::string* value); - - private: - const std::string& _internal_etag() const; - inline PROTOBUF_ALWAYS_INLINE void _internal_set_etag( - const std::string& value); - std::string* _internal_mutable_etag(); - - public: - // @@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 - 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 FetchFileResponse& from_msg); - ::google::protobuf::internal::HasBits<1> _has_bits_; - mutable ::google::protobuf::internal::CachedSize _cached_size_; - ::google::protobuf::internal::ArenaStringPtr contents_; - ::google::protobuf::internal::ArenaStringPtr etag_; - PROTOBUF_TSAN_DECLARE_MEMBER - }; - 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) */ { - public: - inline FetchFileRequest() : FetchFileRequest(nullptr) {} - ~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; - } - inline FetchFileRequest& operator=(FetchFileRequest&& 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 FetchFileRequest& default_instance() { - return *internal_default_instance(); - } - 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); } - 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 - if (GetArena() == other->GetArena()) { -#endif // !PROTOBUF_FORCE_COPY_IN_SWAP - InternalSwap(other); - } else { - ::google::protobuf::internal::GenericSwap(this, other); - } - } - void UnsafeArenaSwap(FetchFileRequest* other) { - if (other == this) return; - ABSL_DCHECK(GetArena() == other->GetArena()); - InternalSwap(other); - } - - // implements Message ---------------------------------------------- - - 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); } - - private: - static void MergeImpl( - ::google::protobuf::MessageLite& to_msg, - const ::google::protobuf::MessageLite& from_msg); - - 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; - #endif // PROTOBUF_CUSTOM_VTABLE - int GetCachedSize() const { return _impl_._cached_size_.Get(); } - - private: - void SharedCtor(::google::protobuf::Arena* arena); - void SharedDtor(); - void InternalSwap(FetchFileRequest* other); - private: - friend class ::google::protobuf::internal::AnyMetadata; - 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); - 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, - }; - // string path = 1; - void clear_path() ; - const std::string& path() const; - template - void set_path(Arg_&& arg, Args_... args); - std::string* mutable_path(); - PROTOBUF_NODISCARD std::string* release_path(); - void set_allocated_path(std::string* value); - - private: - const std::string& _internal_path() const; - inline PROTOBUF_ALWAYS_INLINE void _internal_set_path( - const std::string& value); - std::string* _internal_mutable_path(); - - public: - // optional string etag = 2; - bool has_etag() const; - void clear_etag() ; - const std::string& etag() const; - template - void set_etag(Arg_&& arg, Args_... args); - std::string* mutable_etag(); - PROTOBUF_NODISCARD std::string* release_etag(); - void set_allocated_etag(std::string* value); - - private: - const std::string& _internal_etag() const; - inline PROTOBUF_ALWAYS_INLINE void _internal_set_etag( - const std::string& value); - std::string* _internal_mutable_etag(); - - public: - // @@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 - 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 FetchFileRequest& from_msg); - ::google::protobuf::internal::HasBits<1> _has_bits_; - mutable ::google::protobuf::internal::CachedSize _cached_size_; - ::google::protobuf::internal::ArenaStringPtr path_; - ::google::protobuf::internal::ArenaStringPtr etag_; - PROTOBUF_TSAN_DECLARE_MEMBER - }; - 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) */ { - public: - inline DeleteItemResponse() : DeleteItemResponse(nullptr) {} - 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; - } - inline DeleteItemResponse& operator=(DeleteItemResponse&& 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 DeleteItemResponse& default_instance() { - return *internal_default_instance(); - } - 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); } - 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 - if (GetArena() == other->GetArena()) { -#endif // !PROTOBUF_FORCE_COPY_IN_SWAP - InternalSwap(other); - } else { - ::google::protobuf::internal::GenericSwap(this, other); - } - } - void UnsafeArenaSwap(DeleteItemResponse* other) { - if (other == this) return; - ABSL_DCHECK(GetArena() == other->GetArena()); - InternalSwap(other); - } - - // implements Message ---------------------------------------------- - - 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) { - ::google::protobuf::internal::ZeroFieldsBase::CopyImpl(*this, from); - } - using ::google::protobuf::internal::ZeroFieldsBase::MergeFrom; - void MergeFrom(const DeleteItemResponse& 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.DeleteItemResponse"; } - - protected: - explicit DeleteItemResponse(::google::protobuf::Arena* arena); - DeleteItemResponse(::google::protobuf::Arena* arena, const DeleteItemResponse& from); - 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; - 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 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) */ { - public: - inline DeleteItemRequest() : DeleteItemRequest(nullptr) {} - ~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; - } - inline DeleteItemRequest& operator=(DeleteItemRequest&& 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 DeleteItemRequest& default_instance() { - return *internal_default_instance(); - } - 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); } - 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 - if (GetArena() == other->GetArena()) { -#endif // !PROTOBUF_FORCE_COPY_IN_SWAP - InternalSwap(other); - } else { - ::google::protobuf::internal::GenericSwap(this, other); - } - } - void UnsafeArenaSwap(DeleteItemRequest* other) { - if (other == this) return; - ABSL_DCHECK(GetArena() == other->GetArena()); - InternalSwap(other); - } - - // implements Message ---------------------------------------------- - - 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); } - - private: - static void MergeImpl( - ::google::protobuf::MessageLite& to_msg, - const ::google::protobuf::MessageLite& from_msg); - - 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; - #endif // PROTOBUF_CUSTOM_VTABLE - int GetCachedSize() const { return _impl_._cached_size_.Get(); } - - private: - void SharedCtor(::google::protobuf::Arena* arena); - void SharedDtor(); - void InternalSwap(DeleteItemRequest* other); - private: - friend class ::google::protobuf::internal::AnyMetadata; - 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); - 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, - }; - // string path = 1; - void clear_path() ; - const std::string& path() const; - template - void set_path(Arg_&& arg, Args_... args); - std::string* mutable_path(); - PROTOBUF_NODISCARD std::string* release_path(); - void set_allocated_path(std::string* value); - - private: - const std::string& _internal_path() const; - inline PROTOBUF_ALWAYS_INLINE void _internal_set_path( - const std::string& value); - std::string* _internal_mutable_path(); - - public: - // @@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 - 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 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) */ { - public: - inline CreateDirectoryResponse() : CreateDirectoryResponse(nullptr) {} - 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; - } - inline CreateDirectoryResponse& operator=(CreateDirectoryResponse&& 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 CreateDirectoryResponse& default_instance() { - return *internal_default_instance(); - } - 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); } - 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 - if (GetArena() == other->GetArena()) { -#endif // !PROTOBUF_FORCE_COPY_IN_SWAP - InternalSwap(other); - } else { - ::google::protobuf::internal::GenericSwap(this, other); - } - } - void UnsafeArenaSwap(CreateDirectoryResponse* other) { - if (other == this) return; - ABSL_DCHECK(GetArena() == other->GetArena()); - InternalSwap(other); - } - - // implements Message ---------------------------------------------- - - 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) { - ::google::protobuf::internal::ZeroFieldsBase::CopyImpl(*this, from); - } - using ::google::protobuf::internal::ZeroFieldsBase::MergeFrom; - void MergeFrom(const CreateDirectoryResponse& 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.CreateDirectoryResponse"; } - - protected: - explicit CreateDirectoryResponse(::google::protobuf::Arena* arena); - CreateDirectoryResponse(::google::protobuf::Arena* arena, const CreateDirectoryResponse& from); - 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; - 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 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) */ { - public: - inline CreateDirectoryRequest() : CreateDirectoryRequest(nullptr) {} - ~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; - } - inline CreateDirectoryRequest& operator=(CreateDirectoryRequest&& 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 CreateDirectoryRequest& default_instance() { - return *internal_default_instance(); - } - 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); } - 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 - if (GetArena() == other->GetArena()) { -#endif // !PROTOBUF_FORCE_COPY_IN_SWAP - InternalSwap(other); - } else { - ::google::protobuf::internal::GenericSwap(this, other); - } - } - void UnsafeArenaSwap(CreateDirectoryRequest* other) { - if (other == this) return; - ABSL_DCHECK(GetArena() == other->GetArena()); - InternalSwap(other); - } - - // implements Message ---------------------------------------------- - - 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); } - - private: - static void MergeImpl( - ::google::protobuf::MessageLite& to_msg, - const ::google::protobuf::MessageLite& from_msg); - - 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; - #endif // PROTOBUF_CUSTOM_VTABLE - int GetCachedSize() const { return _impl_._cached_size_.Get(); } - - private: - void SharedCtor(::google::protobuf::Arena* arena); - void SharedDtor(); - void InternalSwap(CreateDirectoryRequest* other); - private: - friend class ::google::protobuf::internal::AnyMetadata; - 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); - 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, - }; - // string path = 1; - void clear_path() ; - const std::string& path() const; - template - void set_path(Arg_&& arg, Args_... args); - std::string* mutable_path(); - PROTOBUF_NODISCARD std::string* release_path(); - void set_allocated_path(std::string* value); - - private: - const std::string& _internal_path() const; - inline PROTOBUF_ALWAYS_INLINE void _internal_set_path( - const std::string& value); - std::string* _internal_mutable_path(); - - public: - // @@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 - 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 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) */ { - public: - inline ListItemsResponse() : ListItemsResponse(nullptr) {} - ~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; - } - inline ListItemsResponse& operator=(ListItemsResponse&& 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 ListItemsResponse& default_instance() { - return *internal_default_instance(); - } - 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); } - 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 - if (GetArena() == other->GetArena()) { -#endif // !PROTOBUF_FORCE_COPY_IN_SWAP - InternalSwap(other); - } else { - ::google::protobuf::internal::GenericSwap(this, other); - } - } - void UnsafeArenaSwap(ListItemsResponse* other) { - if (other == this) return; - ABSL_DCHECK(GetArena() == other->GetArena()); - InternalSwap(other); - } - - // implements Message ---------------------------------------------- - - 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); } - - private: - static void MergeImpl( - ::google::protobuf::MessageLite& to_msg, - const ::google::protobuf::MessageLite& from_msg); - - 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; - #endif // PROTOBUF_CUSTOM_VTABLE - int GetCachedSize() const { return _impl_._cached_size_.Get(); } - - private: - void SharedCtor(::google::protobuf::Arena* arena); - void SharedDtor(); - void InternalSwap(ListItemsResponse* other); - private: - friend class ::google::protobuf::internal::AnyMetadata; - 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); - 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, - }; - // repeated .io.deephaven.proto.backplane.grpc.ItemInfo items = 1; - int items_size() const; - private: - int _internal_items_size() const; - - 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(); - - 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; - // string canonical_path = 2; - void clear_canonical_path() ; - const std::string& canonical_path() const; - template - void set_canonical_path(Arg_&& arg, Args_... args); - std::string* mutable_canonical_path(); - PROTOBUF_NODISCARD std::string* release_canonical_path(); - void set_allocated_canonical_path(std::string* value); - - private: - const std::string& _internal_canonical_path() const; - inline PROTOBUF_ALWAYS_INLINE void _internal_set_canonical_path( - const std::string& value); - std::string* _internal_mutable_canonical_path(); - - public: - // @@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 - 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 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_; - PROTOBUF_TSAN_DECLARE_MEMBER - }; - union { Impl_ _impl_; }; - friend struct ::TableStruct_deephaven_2fproto_2fstorage_2eproto; -}; - -// =================================================================== - - - - -// =================================================================== - - -#ifdef __GNUC__ -#pragma GCC diagnostic push -#pragma GCC diagnostic ignored "-Wstrict-aliasing" -#endif // __GNUC__ -// ------------------------------------------------------------------- - -// ListItemsRequest - -// string path = 1; -inline void ListItemsRequest::clear_path() { - ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.path_.ClearToEmpty(); -} -inline const std::string& ListItemsRequest::path() const - ABSL_ATTRIBUTE_LIFETIME_BOUND { - // @@protoc_insertion_point(field_get:io.deephaven.proto.backplane.grpc.ListItemsRequest.path) - return _internal_path(); -} -template -inline PROTOBUF_ALWAYS_INLINE void ListItemsRequest::set_path(Arg_&& arg, - Args_... args) { - ::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) -} -inline std::string* ListItemsRequest::mutable_path() ABSL_ATTRIBUTE_LIFETIME_BOUND { - std::string* _s = _internal_mutable_path(); - // @@protoc_insertion_point(field_mutable:io.deephaven.proto.backplane.grpc.ListItemsRequest.path) - return _s; -} -inline const std::string& ListItemsRequest::_internal_path() const { - ::google::protobuf::internal::TSanRead(&_impl_); - return _impl_.path_.Get(); -} -inline void ListItemsRequest::_internal_set_path(const std::string& value) { - ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.path_.Set(value, GetArena()); -} -inline std::string* ListItemsRequest::_internal_mutable_path() { - ::google::protobuf::internal::TSanWrite(&_impl_); - return _impl_.path_.Mutable( GetArena()); -} -inline std::string* ListItemsRequest::release_path() { - ::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) { - ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.path_.SetAllocated(value, GetArena()); - #ifdef PROTOBUF_FORCE_COPY_DEFAULT_STRING - if (_impl_.path_.IsDefault()) { - _impl_.path_.Set("", GetArena()); - } - #endif // PROTOBUF_FORCE_COPY_DEFAULT_STRING - // @@protoc_insertion_point(field_set_allocated:io.deephaven.proto.backplane.grpc.ListItemsRequest.path) -} - -// optional string filter_glob = 4; -inline bool ListItemsRequest::has_filter_glob() const { - bool value = (_impl_._has_bits_[0] & 0x00000001u) != 0; - return value; -} -inline void ListItemsRequest::clear_filter_glob() { - ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.filter_glob_.ClearToEmpty(); - _impl_._has_bits_[0] &= ~0x00000001u; -} -inline const std::string& ListItemsRequest::filter_glob() const - ABSL_ATTRIBUTE_LIFETIME_BOUND { - // @@protoc_insertion_point(field_get:io.deephaven.proto.backplane.grpc.ListItemsRequest.filter_glob) - return _internal_filter_glob(); -} -template -inline PROTOBUF_ALWAYS_INLINE void ListItemsRequest::set_filter_glob(Arg_&& arg, - Args_... args) { - ::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) -} -inline std::string* ListItemsRequest::mutable_filter_glob() ABSL_ATTRIBUTE_LIFETIME_BOUND { - std::string* _s = _internal_mutable_filter_glob(); - // @@protoc_insertion_point(field_mutable:io.deephaven.proto.backplane.grpc.ListItemsRequest.filter_glob) - return _s; -} -inline const std::string& ListItemsRequest::_internal_filter_glob() const { - ::google::protobuf::internal::TSanRead(&_impl_); - return _impl_.filter_glob_.Get(); -} -inline void ListItemsRequest::_internal_set_filter_glob(const std::string& value) { - ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_._has_bits_[0] |= 0x00000001u; - _impl_.filter_glob_.Set(value, GetArena()); -} -inline std::string* ListItemsRequest::_internal_mutable_filter_glob() { - ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_._has_bits_[0] |= 0x00000001u; - return _impl_.filter_glob_.Mutable( GetArena()); -} -inline std::string* ListItemsRequest::release_filter_glob() { - ::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; - } - _impl_._has_bits_[0] &= ~0x00000001u; - auto* released = _impl_.filter_glob_.Release(); - #ifdef PROTOBUF_FORCE_COPY_DEFAULT_STRING - _impl_.filter_glob_.Set("", GetArena()); - #endif // PROTOBUF_FORCE_COPY_DEFAULT_STRING - return released; -} -inline void ListItemsRequest::set_allocated_filter_glob(std::string* value) { - ::google::protobuf::internal::TSanWrite(&_impl_); - if (value != nullptr) { - _impl_._has_bits_[0] |= 0x00000001u; - } else { - _impl_._has_bits_[0] &= ~0x00000001u; - } - _impl_.filter_glob_.SetAllocated(value, GetArena()); - #ifdef PROTOBUF_FORCE_COPY_DEFAULT_STRING - if (_impl_.filter_glob_.IsDefault()) { - _impl_.filter_glob_.Set("", GetArena()); - } - #endif // PROTOBUF_FORCE_COPY_DEFAULT_STRING - // @@protoc_insertion_point(field_set_allocated:io.deephaven.proto.backplane.grpc.ListItemsRequest.filter_glob) -} - -// ------------------------------------------------------------------- - -// ItemInfo - -// string path = 1; -inline void ItemInfo::clear_path() { - ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.path_.ClearToEmpty(); -} -inline const std::string& ItemInfo::path() const - ABSL_ATTRIBUTE_LIFETIME_BOUND { - // @@protoc_insertion_point(field_get:io.deephaven.proto.backplane.grpc.ItemInfo.path) - return _internal_path(); -} -template -inline PROTOBUF_ALWAYS_INLINE void ItemInfo::set_path(Arg_&& arg, - Args_... args) { - ::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) -} -inline std::string* ItemInfo::mutable_path() ABSL_ATTRIBUTE_LIFETIME_BOUND { - std::string* _s = _internal_mutable_path(); - // @@protoc_insertion_point(field_mutable:io.deephaven.proto.backplane.grpc.ItemInfo.path) - return _s; -} -inline const std::string& ItemInfo::_internal_path() const { - ::google::protobuf::internal::TSanRead(&_impl_); - return _impl_.path_.Get(); -} -inline void ItemInfo::_internal_set_path(const std::string& value) { - ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.path_.Set(value, GetArena()); -} -inline std::string* ItemInfo::_internal_mutable_path() { - ::google::protobuf::internal::TSanWrite(&_impl_); - return _impl_.path_.Mutable( GetArena()); -} -inline std::string* ItemInfo::release_path() { - ::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) { - ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.path_.SetAllocated(value, GetArena()); - #ifdef PROTOBUF_FORCE_COPY_DEFAULT_STRING - if (_impl_.path_.IsDefault()) { - _impl_.path_.Set("", GetArena()); - } - #endif // PROTOBUF_FORCE_COPY_DEFAULT_STRING - // @@protoc_insertion_point(field_set_allocated:io.deephaven.proto.backplane.grpc.ItemInfo.path) -} - -// .io.deephaven.proto.backplane.grpc.ItemType type = 2; -inline void ItemInfo::clear_type() { - ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.type_ = 0; -} -inline ::io::deephaven::proto::backplane::grpc::ItemType ItemInfo::type() const { - // @@protoc_insertion_point(field_get:io.deephaven.proto.backplane.grpc.ItemInfo.type) - return _internal_type(); -} -inline void ItemInfo::set_type(::io::deephaven::proto::backplane::grpc::ItemType value) { - _internal_set_type(value); - // @@protoc_insertion_point(field_set:io.deephaven.proto.backplane.grpc.ItemInfo.type) -} -inline ::io::deephaven::proto::backplane::grpc::ItemType ItemInfo::_internal_type() const { - ::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) { - ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.type_ = value; -} - -// sint64 size = 3 [jstype = JS_STRING]; -inline void ItemInfo::clear_size() { - ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.size_ = ::int64_t{0}; -} -inline ::int64_t ItemInfo::size() const { - // @@protoc_insertion_point(field_get:io.deephaven.proto.backplane.grpc.ItemInfo.size) - return _internal_size(); -} -inline void ItemInfo::set_size(::int64_t value) { - _internal_set_size(value); - // @@protoc_insertion_point(field_set:io.deephaven.proto.backplane.grpc.ItemInfo.size) -} -inline ::int64_t ItemInfo::_internal_size() const { - ::google::protobuf::internal::TSanRead(&_impl_); - return _impl_.size_; -} -inline void ItemInfo::_internal_set_size(::int64_t value) { - ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.size_ = value; -} - -// optional string etag = 4; -inline bool ItemInfo::has_etag() const { - bool value = (_impl_._has_bits_[0] & 0x00000001u) != 0; - return value; -} -inline void ItemInfo::clear_etag() { - ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.etag_.ClearToEmpty(); - _impl_._has_bits_[0] &= ~0x00000001u; -} -inline const std::string& ItemInfo::etag() const - ABSL_ATTRIBUTE_LIFETIME_BOUND { - // @@protoc_insertion_point(field_get:io.deephaven.proto.backplane.grpc.ItemInfo.etag) - return _internal_etag(); -} -template -inline PROTOBUF_ALWAYS_INLINE void ItemInfo::set_etag(Arg_&& arg, - Args_... args) { - ::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) -} -inline std::string* ItemInfo::mutable_etag() ABSL_ATTRIBUTE_LIFETIME_BOUND { - std::string* _s = _internal_mutable_etag(); - // @@protoc_insertion_point(field_mutable:io.deephaven.proto.backplane.grpc.ItemInfo.etag) - return _s; -} -inline const std::string& ItemInfo::_internal_etag() const { - ::google::protobuf::internal::TSanRead(&_impl_); - return _impl_.etag_.Get(); -} -inline void ItemInfo::_internal_set_etag(const std::string& value) { - ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_._has_bits_[0] |= 0x00000001u; - _impl_.etag_.Set(value, GetArena()); -} -inline std::string* ItemInfo::_internal_mutable_etag() { - ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_._has_bits_[0] |= 0x00000001u; - return _impl_.etag_.Mutable( GetArena()); -} -inline std::string* ItemInfo::release_etag() { - ::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; - } - _impl_._has_bits_[0] &= ~0x00000001u; - auto* released = _impl_.etag_.Release(); - #ifdef PROTOBUF_FORCE_COPY_DEFAULT_STRING - _impl_.etag_.Set("", GetArena()); - #endif // PROTOBUF_FORCE_COPY_DEFAULT_STRING - return released; -} -inline void ItemInfo::set_allocated_etag(std::string* value) { - ::google::protobuf::internal::TSanWrite(&_impl_); - if (value != nullptr) { - _impl_._has_bits_[0] |= 0x00000001u; - } else { - _impl_._has_bits_[0] &= ~0x00000001u; - } - _impl_.etag_.SetAllocated(value, GetArena()); - #ifdef PROTOBUF_FORCE_COPY_DEFAULT_STRING - if (_impl_.etag_.IsDefault()) { - _impl_.etag_.Set("", GetArena()); - } - #endif // PROTOBUF_FORCE_COPY_DEFAULT_STRING - // @@protoc_insertion_point(field_set_allocated:io.deephaven.proto.backplane.grpc.ItemInfo.etag) -} - -// ------------------------------------------------------------------- - -// ListItemsResponse - -// repeated .io.deephaven.proto.backplane.grpc.ItemInfo items = 1; -inline int ListItemsResponse::_internal_items_size() const { - return _internal_items().size(); -} -inline int ListItemsResponse::items_size() const { - return _internal_items_size(); -} -inline void ListItemsResponse::clear_items() { - ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.items_.Clear(); -} -inline ::io::deephaven::proto::backplane::grpc::ItemInfo* ListItemsResponse::mutable_items(int index) - ABSL_ATTRIBUTE_LIFETIME_BOUND { - // @@protoc_insertion_point(field_mutable:io.deephaven.proto.backplane.grpc.ListItemsResponse.items) - return _internal_mutable_items()->Mutable(index); -} -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) - ::google::protobuf::internal::TSanWrite(&_impl_); - return _internal_mutable_items(); -} -inline const ::io::deephaven::proto::backplane::grpc::ItemInfo& ListItemsResponse::items(int index) const - ABSL_ATTRIBUTE_LIFETIME_BOUND { - // @@protoc_insertion_point(field_get:io.deephaven.proto.backplane.grpc.ListItemsResponse.items) - return _internal_items().Get(index); -} -inline ::io::deephaven::proto::backplane::grpc::ItemInfo* ListItemsResponse::add_items() ABSL_ATTRIBUTE_LIFETIME_BOUND { - ::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; -} -inline const ::google::protobuf::RepeatedPtrField<::io::deephaven::proto::backplane::grpc::ItemInfo>& ListItemsResponse::items() const - ABSL_ATTRIBUTE_LIFETIME_BOUND { - // @@protoc_insertion_point(field_list:io.deephaven.proto.backplane.grpc.ListItemsResponse.items) - return _internal_items(); -} -inline const ::google::protobuf::RepeatedPtrField<::io::deephaven::proto::backplane::grpc::ItemInfo>& -ListItemsResponse::_internal_items() const { - ::google::protobuf::internal::TSanRead(&_impl_); - return _impl_.items_; -} -inline ::google::protobuf::RepeatedPtrField<::io::deephaven::proto::backplane::grpc::ItemInfo>* -ListItemsResponse::_internal_mutable_items() { - ::google::protobuf::internal::TSanRead(&_impl_); - return &_impl_.items_; -} - -// string canonical_path = 2; -inline void ListItemsResponse::clear_canonical_path() { - ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.canonical_path_.ClearToEmpty(); -} -inline const std::string& ListItemsResponse::canonical_path() const - ABSL_ATTRIBUTE_LIFETIME_BOUND { - // @@protoc_insertion_point(field_get:io.deephaven.proto.backplane.grpc.ListItemsResponse.canonical_path) - return _internal_canonical_path(); -} -template -inline PROTOBUF_ALWAYS_INLINE void ListItemsResponse::set_canonical_path(Arg_&& arg, - Args_... args) { - ::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) -} -inline std::string* ListItemsResponse::mutable_canonical_path() ABSL_ATTRIBUTE_LIFETIME_BOUND { - std::string* _s = _internal_mutable_canonical_path(); - // @@protoc_insertion_point(field_mutable:io.deephaven.proto.backplane.grpc.ListItemsResponse.canonical_path) - return _s; -} -inline const std::string& ListItemsResponse::_internal_canonical_path() const { - ::google::protobuf::internal::TSanRead(&_impl_); - return _impl_.canonical_path_.Get(); -} -inline void ListItemsResponse::_internal_set_canonical_path(const std::string& value) { - ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.canonical_path_.Set(value, GetArena()); -} -inline std::string* ListItemsResponse::_internal_mutable_canonical_path() { - ::google::protobuf::internal::TSanWrite(&_impl_); - return _impl_.canonical_path_.Mutable( GetArena()); -} -inline std::string* ListItemsResponse::release_canonical_path() { - ::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) { - ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.canonical_path_.SetAllocated(value, GetArena()); - #ifdef PROTOBUF_FORCE_COPY_DEFAULT_STRING - if (_impl_.canonical_path_.IsDefault()) { - _impl_.canonical_path_.Set("", GetArena()); - } - #endif // PROTOBUF_FORCE_COPY_DEFAULT_STRING - // @@protoc_insertion_point(field_set_allocated:io.deephaven.proto.backplane.grpc.ListItemsResponse.canonical_path) -} - -// ------------------------------------------------------------------- - -// FetchFileRequest - -// string path = 1; -inline void FetchFileRequest::clear_path() { - ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.path_.ClearToEmpty(); -} -inline const std::string& FetchFileRequest::path() const - ABSL_ATTRIBUTE_LIFETIME_BOUND { - // @@protoc_insertion_point(field_get:io.deephaven.proto.backplane.grpc.FetchFileRequest.path) - return _internal_path(); -} -template -inline PROTOBUF_ALWAYS_INLINE void FetchFileRequest::set_path(Arg_&& arg, - Args_... args) { - ::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) -} -inline std::string* FetchFileRequest::mutable_path() ABSL_ATTRIBUTE_LIFETIME_BOUND { - std::string* _s = _internal_mutable_path(); - // @@protoc_insertion_point(field_mutable:io.deephaven.proto.backplane.grpc.FetchFileRequest.path) - return _s; -} -inline const std::string& FetchFileRequest::_internal_path() const { - ::google::protobuf::internal::TSanRead(&_impl_); - return _impl_.path_.Get(); -} -inline void FetchFileRequest::_internal_set_path(const std::string& value) { - ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.path_.Set(value, GetArena()); -} -inline std::string* FetchFileRequest::_internal_mutable_path() { - ::google::protobuf::internal::TSanWrite(&_impl_); - return _impl_.path_.Mutable( GetArena()); -} -inline std::string* FetchFileRequest::release_path() { - ::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) { - ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.path_.SetAllocated(value, GetArena()); - #ifdef PROTOBUF_FORCE_COPY_DEFAULT_STRING - if (_impl_.path_.IsDefault()) { - _impl_.path_.Set("", GetArena()); - } - #endif // PROTOBUF_FORCE_COPY_DEFAULT_STRING - // @@protoc_insertion_point(field_set_allocated:io.deephaven.proto.backplane.grpc.FetchFileRequest.path) -} - -// optional string etag = 2; -inline bool FetchFileRequest::has_etag() const { - bool value = (_impl_._has_bits_[0] & 0x00000001u) != 0; - return value; -} -inline void FetchFileRequest::clear_etag() { - ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.etag_.ClearToEmpty(); - _impl_._has_bits_[0] &= ~0x00000001u; -} -inline const std::string& FetchFileRequest::etag() const - ABSL_ATTRIBUTE_LIFETIME_BOUND { - // @@protoc_insertion_point(field_get:io.deephaven.proto.backplane.grpc.FetchFileRequest.etag) - return _internal_etag(); -} -template -inline PROTOBUF_ALWAYS_INLINE void FetchFileRequest::set_etag(Arg_&& arg, - Args_... args) { - ::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) -} -inline std::string* FetchFileRequest::mutable_etag() ABSL_ATTRIBUTE_LIFETIME_BOUND { - std::string* _s = _internal_mutable_etag(); - // @@protoc_insertion_point(field_mutable:io.deephaven.proto.backplane.grpc.FetchFileRequest.etag) - return _s; -} -inline const std::string& FetchFileRequest::_internal_etag() const { - ::google::protobuf::internal::TSanRead(&_impl_); - return _impl_.etag_.Get(); -} -inline void FetchFileRequest::_internal_set_etag(const std::string& value) { - ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_._has_bits_[0] |= 0x00000001u; - _impl_.etag_.Set(value, GetArena()); -} -inline std::string* FetchFileRequest::_internal_mutable_etag() { - ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_._has_bits_[0] |= 0x00000001u; - return _impl_.etag_.Mutable( GetArena()); -} -inline std::string* FetchFileRequest::release_etag() { - ::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; - } - _impl_._has_bits_[0] &= ~0x00000001u; - auto* released = _impl_.etag_.Release(); - #ifdef PROTOBUF_FORCE_COPY_DEFAULT_STRING - _impl_.etag_.Set("", GetArena()); - #endif // PROTOBUF_FORCE_COPY_DEFAULT_STRING - return released; -} -inline void FetchFileRequest::set_allocated_etag(std::string* value) { - ::google::protobuf::internal::TSanWrite(&_impl_); - if (value != nullptr) { - _impl_._has_bits_[0] |= 0x00000001u; - } else { - _impl_._has_bits_[0] &= ~0x00000001u; - } - _impl_.etag_.SetAllocated(value, GetArena()); - #ifdef PROTOBUF_FORCE_COPY_DEFAULT_STRING - if (_impl_.etag_.IsDefault()) { - _impl_.etag_.Set("", GetArena()); - } - #endif // PROTOBUF_FORCE_COPY_DEFAULT_STRING - // @@protoc_insertion_point(field_set_allocated:io.deephaven.proto.backplane.grpc.FetchFileRequest.etag) -} - -// ------------------------------------------------------------------- - -// FetchFileResponse - -// bytes contents = 1; -inline void FetchFileResponse::clear_contents() { - ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.contents_.ClearToEmpty(); -} -inline const std::string& FetchFileResponse::contents() const - ABSL_ATTRIBUTE_LIFETIME_BOUND { - // @@protoc_insertion_point(field_get:io.deephaven.proto.backplane.grpc.FetchFileResponse.contents) - return _internal_contents(); -} -template -inline PROTOBUF_ALWAYS_INLINE void FetchFileResponse::set_contents(Arg_&& arg, - Args_... args) { - ::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) -} -inline std::string* FetchFileResponse::mutable_contents() ABSL_ATTRIBUTE_LIFETIME_BOUND { - std::string* _s = _internal_mutable_contents(); - // @@protoc_insertion_point(field_mutable:io.deephaven.proto.backplane.grpc.FetchFileResponse.contents) - return _s; -} -inline const std::string& FetchFileResponse::_internal_contents() const { - ::google::protobuf::internal::TSanRead(&_impl_); - return _impl_.contents_.Get(); -} -inline void FetchFileResponse::_internal_set_contents(const std::string& value) { - ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.contents_.Set(value, GetArena()); -} -inline std::string* FetchFileResponse::_internal_mutable_contents() { - ::google::protobuf::internal::TSanWrite(&_impl_); - return _impl_.contents_.Mutable( GetArena()); -} -inline std::string* FetchFileResponse::release_contents() { - ::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) { - ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.contents_.SetAllocated(value, GetArena()); - #ifdef PROTOBUF_FORCE_COPY_DEFAULT_STRING - if (_impl_.contents_.IsDefault()) { - _impl_.contents_.Set("", GetArena()); - } - #endif // PROTOBUF_FORCE_COPY_DEFAULT_STRING - // @@protoc_insertion_point(field_set_allocated:io.deephaven.proto.backplane.grpc.FetchFileResponse.contents) -} - -// optional string etag = 2; -inline bool FetchFileResponse::has_etag() const { - bool value = (_impl_._has_bits_[0] & 0x00000001u) != 0; - return value; -} -inline void FetchFileResponse::clear_etag() { - ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.etag_.ClearToEmpty(); - _impl_._has_bits_[0] &= ~0x00000001u; -} -inline const std::string& FetchFileResponse::etag() const - ABSL_ATTRIBUTE_LIFETIME_BOUND { - // @@protoc_insertion_point(field_get:io.deephaven.proto.backplane.grpc.FetchFileResponse.etag) - return _internal_etag(); -} -template -inline PROTOBUF_ALWAYS_INLINE void FetchFileResponse::set_etag(Arg_&& arg, - Args_... args) { - ::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) -} -inline std::string* FetchFileResponse::mutable_etag() ABSL_ATTRIBUTE_LIFETIME_BOUND { - std::string* _s = _internal_mutable_etag(); - // @@protoc_insertion_point(field_mutable:io.deephaven.proto.backplane.grpc.FetchFileResponse.etag) - return _s; -} -inline const std::string& FetchFileResponse::_internal_etag() const { - ::google::protobuf::internal::TSanRead(&_impl_); - return _impl_.etag_.Get(); -} -inline void FetchFileResponse::_internal_set_etag(const std::string& value) { - ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_._has_bits_[0] |= 0x00000001u; - _impl_.etag_.Set(value, GetArena()); -} -inline std::string* FetchFileResponse::_internal_mutable_etag() { - ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_._has_bits_[0] |= 0x00000001u; - return _impl_.etag_.Mutable( GetArena()); -} -inline std::string* FetchFileResponse::release_etag() { - ::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; - } - _impl_._has_bits_[0] &= ~0x00000001u; - auto* released = _impl_.etag_.Release(); - #ifdef PROTOBUF_FORCE_COPY_DEFAULT_STRING - _impl_.etag_.Set("", GetArena()); - #endif // PROTOBUF_FORCE_COPY_DEFAULT_STRING - return released; -} -inline void FetchFileResponse::set_allocated_etag(std::string* value) { - ::google::protobuf::internal::TSanWrite(&_impl_); - if (value != nullptr) { - _impl_._has_bits_[0] |= 0x00000001u; - } else { - _impl_._has_bits_[0] &= ~0x00000001u; - } - _impl_.etag_.SetAllocated(value, GetArena()); - #ifdef PROTOBUF_FORCE_COPY_DEFAULT_STRING - if (_impl_.etag_.IsDefault()) { - _impl_.etag_.Set("", GetArena()); - } - #endif // PROTOBUF_FORCE_COPY_DEFAULT_STRING - // @@protoc_insertion_point(field_set_allocated:io.deephaven.proto.backplane.grpc.FetchFileResponse.etag) -} - -// ------------------------------------------------------------------- - -// SaveFileRequest - -// bool allow_overwrite = 1; -inline void SaveFileRequest::clear_allow_overwrite() { - ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.allow_overwrite_ = false; -} -inline bool SaveFileRequest::allow_overwrite() const { - // @@protoc_insertion_point(field_get:io.deephaven.proto.backplane.grpc.SaveFileRequest.allow_overwrite) - return _internal_allow_overwrite(); -} -inline void SaveFileRequest::set_allow_overwrite(bool value) { - _internal_set_allow_overwrite(value); - // @@protoc_insertion_point(field_set:io.deephaven.proto.backplane.grpc.SaveFileRequest.allow_overwrite) -} -inline bool SaveFileRequest::_internal_allow_overwrite() const { - ::google::protobuf::internal::TSanRead(&_impl_); - return _impl_.allow_overwrite_; -} -inline void SaveFileRequest::_internal_set_allow_overwrite(bool value) { - ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.allow_overwrite_ = value; -} - -// string path = 2; -inline void SaveFileRequest::clear_path() { - ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.path_.ClearToEmpty(); -} -inline const std::string& SaveFileRequest::path() const - ABSL_ATTRIBUTE_LIFETIME_BOUND { - // @@protoc_insertion_point(field_get:io.deephaven.proto.backplane.grpc.SaveFileRequest.path) - return _internal_path(); -} -template -inline PROTOBUF_ALWAYS_INLINE void SaveFileRequest::set_path(Arg_&& arg, - Args_... args) { - ::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) -} -inline std::string* SaveFileRequest::mutable_path() ABSL_ATTRIBUTE_LIFETIME_BOUND { - std::string* _s = _internal_mutable_path(); - // @@protoc_insertion_point(field_mutable:io.deephaven.proto.backplane.grpc.SaveFileRequest.path) - return _s; -} -inline const std::string& SaveFileRequest::_internal_path() const { - ::google::protobuf::internal::TSanRead(&_impl_); - return _impl_.path_.Get(); -} -inline void SaveFileRequest::_internal_set_path(const std::string& value) { - ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.path_.Set(value, GetArena()); -} -inline std::string* SaveFileRequest::_internal_mutable_path() { - ::google::protobuf::internal::TSanWrite(&_impl_); - return _impl_.path_.Mutable( GetArena()); -} -inline std::string* SaveFileRequest::release_path() { - ::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) { - ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.path_.SetAllocated(value, GetArena()); - #ifdef PROTOBUF_FORCE_COPY_DEFAULT_STRING - if (_impl_.path_.IsDefault()) { - _impl_.path_.Set("", GetArena()); - } - #endif // PROTOBUF_FORCE_COPY_DEFAULT_STRING - // @@protoc_insertion_point(field_set_allocated:io.deephaven.proto.backplane.grpc.SaveFileRequest.path) -} - -// bytes contents = 3; -inline void SaveFileRequest::clear_contents() { - ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.contents_.ClearToEmpty(); -} -inline const std::string& SaveFileRequest::contents() const - ABSL_ATTRIBUTE_LIFETIME_BOUND { - // @@protoc_insertion_point(field_get:io.deephaven.proto.backplane.grpc.SaveFileRequest.contents) - return _internal_contents(); -} -template -inline PROTOBUF_ALWAYS_INLINE void SaveFileRequest::set_contents(Arg_&& arg, - Args_... args) { - ::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) -} -inline std::string* SaveFileRequest::mutable_contents() ABSL_ATTRIBUTE_LIFETIME_BOUND { - std::string* _s = _internal_mutable_contents(); - // @@protoc_insertion_point(field_mutable:io.deephaven.proto.backplane.grpc.SaveFileRequest.contents) - return _s; -} -inline const std::string& SaveFileRequest::_internal_contents() const { - ::google::protobuf::internal::TSanRead(&_impl_); - return _impl_.contents_.Get(); -} -inline void SaveFileRequest::_internal_set_contents(const std::string& value) { - ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.contents_.Set(value, GetArena()); -} -inline std::string* SaveFileRequest::_internal_mutable_contents() { - ::google::protobuf::internal::TSanWrite(&_impl_); - return _impl_.contents_.Mutable( GetArena()); -} -inline std::string* SaveFileRequest::release_contents() { - ::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) { - ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.contents_.SetAllocated(value, GetArena()); - #ifdef PROTOBUF_FORCE_COPY_DEFAULT_STRING - if (_impl_.contents_.IsDefault()) { - _impl_.contents_.Set("", GetArena()); - } - #endif // PROTOBUF_FORCE_COPY_DEFAULT_STRING - // @@protoc_insertion_point(field_set_allocated:io.deephaven.proto.backplane.grpc.SaveFileRequest.contents) -} - -// ------------------------------------------------------------------- - -// SaveFileResponse - -// optional string etag = 1; -inline bool SaveFileResponse::has_etag() const { - bool value = (_impl_._has_bits_[0] & 0x00000001u) != 0; - return value; -} -inline void SaveFileResponse::clear_etag() { - ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.etag_.ClearToEmpty(); - _impl_._has_bits_[0] &= ~0x00000001u; -} -inline const std::string& SaveFileResponse::etag() const - ABSL_ATTRIBUTE_LIFETIME_BOUND { - // @@protoc_insertion_point(field_get:io.deephaven.proto.backplane.grpc.SaveFileResponse.etag) - return _internal_etag(); -} -template -inline PROTOBUF_ALWAYS_INLINE void SaveFileResponse::set_etag(Arg_&& arg, - Args_... args) { - ::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) -} -inline std::string* SaveFileResponse::mutable_etag() ABSL_ATTRIBUTE_LIFETIME_BOUND { - std::string* _s = _internal_mutable_etag(); - // @@protoc_insertion_point(field_mutable:io.deephaven.proto.backplane.grpc.SaveFileResponse.etag) - return _s; -} -inline const std::string& SaveFileResponse::_internal_etag() const { - ::google::protobuf::internal::TSanRead(&_impl_); - return _impl_.etag_.Get(); -} -inline void SaveFileResponse::_internal_set_etag(const std::string& value) { - ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_._has_bits_[0] |= 0x00000001u; - _impl_.etag_.Set(value, GetArena()); -} -inline std::string* SaveFileResponse::_internal_mutable_etag() { - ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_._has_bits_[0] |= 0x00000001u; - return _impl_.etag_.Mutable( GetArena()); -} -inline std::string* SaveFileResponse::release_etag() { - ::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; - } - _impl_._has_bits_[0] &= ~0x00000001u; - auto* released = _impl_.etag_.Release(); - #ifdef PROTOBUF_FORCE_COPY_DEFAULT_STRING - _impl_.etag_.Set("", GetArena()); - #endif // PROTOBUF_FORCE_COPY_DEFAULT_STRING - return released; -} -inline void SaveFileResponse::set_allocated_etag(std::string* value) { - ::google::protobuf::internal::TSanWrite(&_impl_); - if (value != nullptr) { - _impl_._has_bits_[0] |= 0x00000001u; - } else { - _impl_._has_bits_[0] &= ~0x00000001u; - } - _impl_.etag_.SetAllocated(value, GetArena()); - #ifdef PROTOBUF_FORCE_COPY_DEFAULT_STRING - if (_impl_.etag_.IsDefault()) { - _impl_.etag_.Set("", GetArena()); - } - #endif // PROTOBUF_FORCE_COPY_DEFAULT_STRING - // @@protoc_insertion_point(field_set_allocated:io.deephaven.proto.backplane.grpc.SaveFileResponse.etag) -} - -// ------------------------------------------------------------------- - -// MoveItemRequest - -// string old_path = 1; -inline void MoveItemRequest::clear_old_path() { - ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.old_path_.ClearToEmpty(); -} -inline const std::string& MoveItemRequest::old_path() const - ABSL_ATTRIBUTE_LIFETIME_BOUND { - // @@protoc_insertion_point(field_get:io.deephaven.proto.backplane.grpc.MoveItemRequest.old_path) - return _internal_old_path(); -} -template -inline PROTOBUF_ALWAYS_INLINE void MoveItemRequest::set_old_path(Arg_&& arg, - Args_... args) { - ::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) -} -inline std::string* MoveItemRequest::mutable_old_path() ABSL_ATTRIBUTE_LIFETIME_BOUND { - std::string* _s = _internal_mutable_old_path(); - // @@protoc_insertion_point(field_mutable:io.deephaven.proto.backplane.grpc.MoveItemRequest.old_path) - return _s; -} -inline const std::string& MoveItemRequest::_internal_old_path() const { - ::google::protobuf::internal::TSanRead(&_impl_); - return _impl_.old_path_.Get(); -} -inline void MoveItemRequest::_internal_set_old_path(const std::string& value) { - ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.old_path_.Set(value, GetArena()); -} -inline std::string* MoveItemRequest::_internal_mutable_old_path() { - ::google::protobuf::internal::TSanWrite(&_impl_); - return _impl_.old_path_.Mutable( GetArena()); -} -inline std::string* MoveItemRequest::release_old_path() { - ::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) { - ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.old_path_.SetAllocated(value, GetArena()); - #ifdef PROTOBUF_FORCE_COPY_DEFAULT_STRING - if (_impl_.old_path_.IsDefault()) { - _impl_.old_path_.Set("", GetArena()); - } - #endif // PROTOBUF_FORCE_COPY_DEFAULT_STRING - // @@protoc_insertion_point(field_set_allocated:io.deephaven.proto.backplane.grpc.MoveItemRequest.old_path) -} - -// string new_path = 2; -inline void MoveItemRequest::clear_new_path() { - ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.new_path_.ClearToEmpty(); -} -inline const std::string& MoveItemRequest::new_path() const - ABSL_ATTRIBUTE_LIFETIME_BOUND { - // @@protoc_insertion_point(field_get:io.deephaven.proto.backplane.grpc.MoveItemRequest.new_path) - return _internal_new_path(); -} -template -inline PROTOBUF_ALWAYS_INLINE void MoveItemRequest::set_new_path(Arg_&& arg, - Args_... args) { - ::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) -} -inline std::string* MoveItemRequest::mutable_new_path() ABSL_ATTRIBUTE_LIFETIME_BOUND { - std::string* _s = _internal_mutable_new_path(); - // @@protoc_insertion_point(field_mutable:io.deephaven.proto.backplane.grpc.MoveItemRequest.new_path) - return _s; -} -inline const std::string& MoveItemRequest::_internal_new_path() const { - ::google::protobuf::internal::TSanRead(&_impl_); - return _impl_.new_path_.Get(); -} -inline void MoveItemRequest::_internal_set_new_path(const std::string& value) { - ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.new_path_.Set(value, GetArena()); -} -inline std::string* MoveItemRequest::_internal_mutable_new_path() { - ::google::protobuf::internal::TSanWrite(&_impl_); - return _impl_.new_path_.Mutable( GetArena()); -} -inline std::string* MoveItemRequest::release_new_path() { - ::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) { - ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.new_path_.SetAllocated(value, GetArena()); - #ifdef PROTOBUF_FORCE_COPY_DEFAULT_STRING - if (_impl_.new_path_.IsDefault()) { - _impl_.new_path_.Set("", GetArena()); - } - #endif // PROTOBUF_FORCE_COPY_DEFAULT_STRING - // @@protoc_insertion_point(field_set_allocated:io.deephaven.proto.backplane.grpc.MoveItemRequest.new_path) -} - -// bool allow_overwrite = 3; -inline void MoveItemRequest::clear_allow_overwrite() { - ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.allow_overwrite_ = false; -} -inline bool MoveItemRequest::allow_overwrite() const { - // @@protoc_insertion_point(field_get:io.deephaven.proto.backplane.grpc.MoveItemRequest.allow_overwrite) - return _internal_allow_overwrite(); -} -inline void MoveItemRequest::set_allow_overwrite(bool value) { - _internal_set_allow_overwrite(value); - // @@protoc_insertion_point(field_set:io.deephaven.proto.backplane.grpc.MoveItemRequest.allow_overwrite) -} -inline bool MoveItemRequest::_internal_allow_overwrite() const { - ::google::protobuf::internal::TSanRead(&_impl_); - return _impl_.allow_overwrite_; -} -inline void MoveItemRequest::_internal_set_allow_overwrite(bool value) { - ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.allow_overwrite_ = value; -} - -// ------------------------------------------------------------------- - -// MoveItemResponse - -// ------------------------------------------------------------------- - -// CreateDirectoryRequest - -// string path = 1; -inline void CreateDirectoryRequest::clear_path() { - ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.path_.ClearToEmpty(); -} -inline const std::string& CreateDirectoryRequest::path() const - ABSL_ATTRIBUTE_LIFETIME_BOUND { - // @@protoc_insertion_point(field_get:io.deephaven.proto.backplane.grpc.CreateDirectoryRequest.path) - return _internal_path(); -} -template -inline PROTOBUF_ALWAYS_INLINE void CreateDirectoryRequest::set_path(Arg_&& arg, - Args_... args) { - ::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) -} -inline std::string* CreateDirectoryRequest::mutable_path() ABSL_ATTRIBUTE_LIFETIME_BOUND { - std::string* _s = _internal_mutable_path(); - // @@protoc_insertion_point(field_mutable:io.deephaven.proto.backplane.grpc.CreateDirectoryRequest.path) - return _s; -} -inline const std::string& CreateDirectoryRequest::_internal_path() const { - ::google::protobuf::internal::TSanRead(&_impl_); - return _impl_.path_.Get(); -} -inline void CreateDirectoryRequest::_internal_set_path(const std::string& value) { - ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.path_.Set(value, GetArena()); -} -inline std::string* CreateDirectoryRequest::_internal_mutable_path() { - ::google::protobuf::internal::TSanWrite(&_impl_); - return _impl_.path_.Mutable( GetArena()); -} -inline std::string* CreateDirectoryRequest::release_path() { - ::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) { - ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.path_.SetAllocated(value, GetArena()); - #ifdef PROTOBUF_FORCE_COPY_DEFAULT_STRING - if (_impl_.path_.IsDefault()) { - _impl_.path_.Set("", GetArena()); - } - #endif // PROTOBUF_FORCE_COPY_DEFAULT_STRING - // @@protoc_insertion_point(field_set_allocated:io.deephaven.proto.backplane.grpc.CreateDirectoryRequest.path) -} - -// ------------------------------------------------------------------- - -// CreateDirectoryResponse - -// ------------------------------------------------------------------- - -// DeleteItemRequest - -// string path = 1; -inline void DeleteItemRequest::clear_path() { - ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.path_.ClearToEmpty(); -} -inline const std::string& DeleteItemRequest::path() const - ABSL_ATTRIBUTE_LIFETIME_BOUND { - // @@protoc_insertion_point(field_get:io.deephaven.proto.backplane.grpc.DeleteItemRequest.path) - return _internal_path(); -} -template -inline PROTOBUF_ALWAYS_INLINE void DeleteItemRequest::set_path(Arg_&& arg, - Args_... args) { - ::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) -} -inline std::string* DeleteItemRequest::mutable_path() ABSL_ATTRIBUTE_LIFETIME_BOUND { - std::string* _s = _internal_mutable_path(); - // @@protoc_insertion_point(field_mutable:io.deephaven.proto.backplane.grpc.DeleteItemRequest.path) - return _s; -} -inline const std::string& DeleteItemRequest::_internal_path() const { - ::google::protobuf::internal::TSanRead(&_impl_); - return _impl_.path_.Get(); -} -inline void DeleteItemRequest::_internal_set_path(const std::string& value) { - ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.path_.Set(value, GetArena()); -} -inline std::string* DeleteItemRequest::_internal_mutable_path() { - ::google::protobuf::internal::TSanWrite(&_impl_); - return _impl_.path_.Mutable( GetArena()); -} -inline std::string* DeleteItemRequest::release_path() { - ::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) { - ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.path_.SetAllocated(value, GetArena()); - #ifdef PROTOBUF_FORCE_COPY_DEFAULT_STRING - if (_impl_.path_.IsDefault()) { - _impl_.path_.Set("", GetArena()); - } - #endif // PROTOBUF_FORCE_COPY_DEFAULT_STRING - // @@protoc_insertion_point(field_set_allocated:io.deephaven.proto.backplane.grpc.DeleteItemRequest.path) -} - -// ------------------------------------------------------------------- - -// DeleteItemResponse - -#ifdef __GNUC__ -#pragma GCC diagnostic pop -#endif // __GNUC__ - -// @@protoc_insertion_point(namespace_scope) -} // namespace grpc -} // namespace backplane -} // namespace proto -} // namespace deephaven -} // namespace io - - -namespace google { -namespace protobuf { - -template <> -struct is_proto_enum<::io::deephaven::proto::backplane::grpc::ItemType> : std::true_type {}; -template <> -inline const EnumDescriptor* GetEnumDescriptor<::io::deephaven::proto::backplane::grpc::ItemType>() { - return ::io::deephaven::proto::backplane::grpc::ItemType_descriptor(); -} - -} // namespace protobuf -} // namespace google - -// @@protoc_insertion_point(global_scope) - -#include "google/protobuf/port_undef.inc" - -#endif // GOOGLE_PROTOBUF_INCLUDED_deephaven_2fproto_2fstorage_2eproto_2epb_2eh diff --git a/cpp-client/deephaven/dhclient/proto/deephaven/proto/table.grpc.pb.cc b/cpp-client/deephaven/dhclient/proto/deephaven/proto/table.grpc.pb.cc deleted file mode 100644 index abca769311a..00000000000 --- a/cpp-client/deephaven/dhclient/proto/deephaven/proto/table.grpc.pb.cc +++ /dev/null @@ -1,1928 +0,0 @@ -// Generated by the gRPC C++ plugin. -// If you make any local change, they will be lost. -// source: deephaven/proto/table.proto - -#include "deephaven/proto/table.pb.h" -#include "deephaven/proto/table.grpc.pb.h" - -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -namespace io { -namespace deephaven { -namespace proto { -namespace backplane { -namespace grpc { - -static const char* TableService_method_names[] = { - "/io.deephaven.proto.backplane.grpc.TableService/GetExportedTableCreationResponse", - "/io.deephaven.proto.backplane.grpc.TableService/FetchTable", - "/io.deephaven.proto.backplane.grpc.TableService/ApplyPreviewColumns", - "/io.deephaven.proto.backplane.grpc.TableService/EmptyTable", - "/io.deephaven.proto.backplane.grpc.TableService/TimeTable", - "/io.deephaven.proto.backplane.grpc.TableService/DropColumns", - "/io.deephaven.proto.backplane.grpc.TableService/Update", - "/io.deephaven.proto.backplane.grpc.TableService/LazyUpdate", - "/io.deephaven.proto.backplane.grpc.TableService/View", - "/io.deephaven.proto.backplane.grpc.TableService/UpdateView", - "/io.deephaven.proto.backplane.grpc.TableService/Select", - "/io.deephaven.proto.backplane.grpc.TableService/UpdateBy", - "/io.deephaven.proto.backplane.grpc.TableService/SelectDistinct", - "/io.deephaven.proto.backplane.grpc.TableService/Filter", - "/io.deephaven.proto.backplane.grpc.TableService/UnstructuredFilter", - "/io.deephaven.proto.backplane.grpc.TableService/Sort", - "/io.deephaven.proto.backplane.grpc.TableService/Head", - "/io.deephaven.proto.backplane.grpc.TableService/Tail", - "/io.deephaven.proto.backplane.grpc.TableService/HeadBy", - "/io.deephaven.proto.backplane.grpc.TableService/TailBy", - "/io.deephaven.proto.backplane.grpc.TableService/Ungroup", - "/io.deephaven.proto.backplane.grpc.TableService/MergeTables", - "/io.deephaven.proto.backplane.grpc.TableService/CrossJoinTables", - "/io.deephaven.proto.backplane.grpc.TableService/NaturalJoinTables", - "/io.deephaven.proto.backplane.grpc.TableService/ExactJoinTables", - "/io.deephaven.proto.backplane.grpc.TableService/LeftJoinTables", - "/io.deephaven.proto.backplane.grpc.TableService/AsOfJoinTables", - "/io.deephaven.proto.backplane.grpc.TableService/AjTables", - "/io.deephaven.proto.backplane.grpc.TableService/RajTables", - "/io.deephaven.proto.backplane.grpc.TableService/MultiJoinTables", - "/io.deephaven.proto.backplane.grpc.TableService/RangeJoinTables", - "/io.deephaven.proto.backplane.grpc.TableService/ComboAggregate", - "/io.deephaven.proto.backplane.grpc.TableService/AggregateAll", - "/io.deephaven.proto.backplane.grpc.TableService/Aggregate", - "/io.deephaven.proto.backplane.grpc.TableService/Snapshot", - "/io.deephaven.proto.backplane.grpc.TableService/SnapshotWhen", - "/io.deephaven.proto.backplane.grpc.TableService/Flatten", - "/io.deephaven.proto.backplane.grpc.TableService/RunChartDownsample", - "/io.deephaven.proto.backplane.grpc.TableService/CreateInputTable", - "/io.deephaven.proto.backplane.grpc.TableService/WhereIn", - "/io.deephaven.proto.backplane.grpc.TableService/Batch", - "/io.deephaven.proto.backplane.grpc.TableService/ExportedTableUpdates", - "/io.deephaven.proto.backplane.grpc.TableService/SeekRow", - "/io.deephaven.proto.backplane.grpc.TableService/MetaTable", - "/io.deephaven.proto.backplane.grpc.TableService/ComputeColumnStatistics", -}; - -std::unique_ptr< TableService::Stub> TableService::NewStub(const std::shared_ptr< ::grpc::ChannelInterface>& channel, const ::grpc::StubOptions& options) { - (void)options; - std::unique_ptr< TableService::Stub> stub(new TableService::Stub(channel, options)); - return stub; -} - -TableService::Stub::Stub(const std::shared_ptr< ::grpc::ChannelInterface>& channel, const ::grpc::StubOptions& options) - : channel_(channel), rpcmethod_GetExportedTableCreationResponse_(TableService_method_names[0], options.suffix_for_stats(),::grpc::internal::RpcMethod::NORMAL_RPC, channel) - , rpcmethod_FetchTable_(TableService_method_names[1], options.suffix_for_stats(),::grpc::internal::RpcMethod::NORMAL_RPC, channel) - , rpcmethod_ApplyPreviewColumns_(TableService_method_names[2], options.suffix_for_stats(),::grpc::internal::RpcMethod::NORMAL_RPC, channel) - , rpcmethod_EmptyTable_(TableService_method_names[3], options.suffix_for_stats(),::grpc::internal::RpcMethod::NORMAL_RPC, channel) - , rpcmethod_TimeTable_(TableService_method_names[4], options.suffix_for_stats(),::grpc::internal::RpcMethod::NORMAL_RPC, channel) - , rpcmethod_DropColumns_(TableService_method_names[5], options.suffix_for_stats(),::grpc::internal::RpcMethod::NORMAL_RPC, channel) - , rpcmethod_Update_(TableService_method_names[6], options.suffix_for_stats(),::grpc::internal::RpcMethod::NORMAL_RPC, channel) - , rpcmethod_LazyUpdate_(TableService_method_names[7], options.suffix_for_stats(),::grpc::internal::RpcMethod::NORMAL_RPC, channel) - , rpcmethod_View_(TableService_method_names[8], options.suffix_for_stats(),::grpc::internal::RpcMethod::NORMAL_RPC, channel) - , rpcmethod_UpdateView_(TableService_method_names[9], options.suffix_for_stats(),::grpc::internal::RpcMethod::NORMAL_RPC, channel) - , rpcmethod_Select_(TableService_method_names[10], options.suffix_for_stats(),::grpc::internal::RpcMethod::NORMAL_RPC, channel) - , rpcmethod_UpdateBy_(TableService_method_names[11], options.suffix_for_stats(),::grpc::internal::RpcMethod::NORMAL_RPC, channel) - , rpcmethod_SelectDistinct_(TableService_method_names[12], options.suffix_for_stats(),::grpc::internal::RpcMethod::NORMAL_RPC, channel) - , rpcmethod_Filter_(TableService_method_names[13], options.suffix_for_stats(),::grpc::internal::RpcMethod::NORMAL_RPC, channel) - , rpcmethod_UnstructuredFilter_(TableService_method_names[14], options.suffix_for_stats(),::grpc::internal::RpcMethod::NORMAL_RPC, channel) - , rpcmethod_Sort_(TableService_method_names[15], options.suffix_for_stats(),::grpc::internal::RpcMethod::NORMAL_RPC, channel) - , rpcmethod_Head_(TableService_method_names[16], options.suffix_for_stats(),::grpc::internal::RpcMethod::NORMAL_RPC, channel) - , rpcmethod_Tail_(TableService_method_names[17], options.suffix_for_stats(),::grpc::internal::RpcMethod::NORMAL_RPC, channel) - , rpcmethod_HeadBy_(TableService_method_names[18], options.suffix_for_stats(),::grpc::internal::RpcMethod::NORMAL_RPC, channel) - , rpcmethod_TailBy_(TableService_method_names[19], options.suffix_for_stats(),::grpc::internal::RpcMethod::NORMAL_RPC, channel) - , rpcmethod_Ungroup_(TableService_method_names[20], options.suffix_for_stats(),::grpc::internal::RpcMethod::NORMAL_RPC, channel) - , rpcmethod_MergeTables_(TableService_method_names[21], options.suffix_for_stats(),::grpc::internal::RpcMethod::NORMAL_RPC, channel) - , rpcmethod_CrossJoinTables_(TableService_method_names[22], options.suffix_for_stats(),::grpc::internal::RpcMethod::NORMAL_RPC, channel) - , rpcmethod_NaturalJoinTables_(TableService_method_names[23], options.suffix_for_stats(),::grpc::internal::RpcMethod::NORMAL_RPC, channel) - , rpcmethod_ExactJoinTables_(TableService_method_names[24], options.suffix_for_stats(),::grpc::internal::RpcMethod::NORMAL_RPC, channel) - , rpcmethod_LeftJoinTables_(TableService_method_names[25], options.suffix_for_stats(),::grpc::internal::RpcMethod::NORMAL_RPC, channel) - , rpcmethod_AsOfJoinTables_(TableService_method_names[26], options.suffix_for_stats(),::grpc::internal::RpcMethod::NORMAL_RPC, channel) - , rpcmethod_AjTables_(TableService_method_names[27], options.suffix_for_stats(),::grpc::internal::RpcMethod::NORMAL_RPC, channel) - , rpcmethod_RajTables_(TableService_method_names[28], options.suffix_for_stats(),::grpc::internal::RpcMethod::NORMAL_RPC, channel) - , rpcmethod_MultiJoinTables_(TableService_method_names[29], options.suffix_for_stats(),::grpc::internal::RpcMethod::NORMAL_RPC, channel) - , rpcmethod_RangeJoinTables_(TableService_method_names[30], options.suffix_for_stats(),::grpc::internal::RpcMethod::NORMAL_RPC, channel) - , rpcmethod_ComboAggregate_(TableService_method_names[31], options.suffix_for_stats(),::grpc::internal::RpcMethod::NORMAL_RPC, channel) - , rpcmethod_AggregateAll_(TableService_method_names[32], options.suffix_for_stats(),::grpc::internal::RpcMethod::NORMAL_RPC, channel) - , rpcmethod_Aggregate_(TableService_method_names[33], options.suffix_for_stats(),::grpc::internal::RpcMethod::NORMAL_RPC, channel) - , rpcmethod_Snapshot_(TableService_method_names[34], options.suffix_for_stats(),::grpc::internal::RpcMethod::NORMAL_RPC, channel) - , rpcmethod_SnapshotWhen_(TableService_method_names[35], options.suffix_for_stats(),::grpc::internal::RpcMethod::NORMAL_RPC, channel) - , rpcmethod_Flatten_(TableService_method_names[36], options.suffix_for_stats(),::grpc::internal::RpcMethod::NORMAL_RPC, channel) - , rpcmethod_RunChartDownsample_(TableService_method_names[37], options.suffix_for_stats(),::grpc::internal::RpcMethod::NORMAL_RPC, channel) - , rpcmethod_CreateInputTable_(TableService_method_names[38], options.suffix_for_stats(),::grpc::internal::RpcMethod::NORMAL_RPC, channel) - , rpcmethod_WhereIn_(TableService_method_names[39], options.suffix_for_stats(),::grpc::internal::RpcMethod::NORMAL_RPC, channel) - , rpcmethod_Batch_(TableService_method_names[40], options.suffix_for_stats(),::grpc::internal::RpcMethod::SERVER_STREAMING, channel) - , rpcmethod_ExportedTableUpdates_(TableService_method_names[41], options.suffix_for_stats(),::grpc::internal::RpcMethod::SERVER_STREAMING, channel) - , rpcmethod_SeekRow_(TableService_method_names[42], options.suffix_for_stats(),::grpc::internal::RpcMethod::NORMAL_RPC, channel) - , rpcmethod_MetaTable_(TableService_method_names[43], options.suffix_for_stats(),::grpc::internal::RpcMethod::NORMAL_RPC, channel) - , rpcmethod_ComputeColumnStatistics_(TableService_method_names[44], options.suffix_for_stats(),::grpc::internal::RpcMethod::NORMAL_RPC, channel) - {} - -::grpc::Status TableService::Stub::GetExportedTableCreationResponse(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::Ticket& request, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse* response) { - return ::grpc::internal::BlockingUnaryCall< ::io::deephaven::proto::backplane::grpc::Ticket, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse, ::grpc::protobuf::MessageLite, ::grpc::protobuf::MessageLite>(channel_.get(), rpcmethod_GetExportedTableCreationResponse_, context, request, response); -} - -void TableService::Stub::async::GetExportedTableCreationResponse(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::Ticket* request, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse* response, std::function f) { - ::grpc::internal::CallbackUnaryCall< ::io::deephaven::proto::backplane::grpc::Ticket, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse, ::grpc::protobuf::MessageLite, ::grpc::protobuf::MessageLite>(stub_->channel_.get(), stub_->rpcmethod_GetExportedTableCreationResponse_, context, request, response, std::move(f)); -} - -void TableService::Stub::async::GetExportedTableCreationResponse(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::Ticket* request, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse* response, ::grpc::ClientUnaryReactor* reactor) { - ::grpc::internal::ClientCallbackUnaryFactory::Create< ::grpc::protobuf::MessageLite, ::grpc::protobuf::MessageLite>(stub_->channel_.get(), stub_->rpcmethod_GetExportedTableCreationResponse_, context, request, response, reactor); -} - -::grpc::ClientAsyncResponseReader< ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse>* TableService::Stub::PrepareAsyncGetExportedTableCreationResponseRaw(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::Ticket& request, ::grpc::CompletionQueue* cq) { - return ::grpc::internal::ClientAsyncResponseReaderHelper::Create< ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse, ::io::deephaven::proto::backplane::grpc::Ticket, ::grpc::protobuf::MessageLite, ::grpc::protobuf::MessageLite>(channel_.get(), cq, rpcmethod_GetExportedTableCreationResponse_, context, request); -} - -::grpc::ClientAsyncResponseReader< ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse>* TableService::Stub::AsyncGetExportedTableCreationResponseRaw(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::Ticket& request, ::grpc::CompletionQueue* cq) { - auto* result = - this->PrepareAsyncGetExportedTableCreationResponseRaw(context, request, cq); - result->StartCall(); - return result; -} - -::grpc::Status TableService::Stub::FetchTable(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::FetchTableRequest& request, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse* response) { - return ::grpc::internal::BlockingUnaryCall< ::io::deephaven::proto::backplane::grpc::FetchTableRequest, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse, ::grpc::protobuf::MessageLite, ::grpc::protobuf::MessageLite>(channel_.get(), rpcmethod_FetchTable_, context, request, response); -} - -void TableService::Stub::async::FetchTable(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::FetchTableRequest* request, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse* response, std::function f) { - ::grpc::internal::CallbackUnaryCall< ::io::deephaven::proto::backplane::grpc::FetchTableRequest, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse, ::grpc::protobuf::MessageLite, ::grpc::protobuf::MessageLite>(stub_->channel_.get(), stub_->rpcmethod_FetchTable_, context, request, response, std::move(f)); -} - -void TableService::Stub::async::FetchTable(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::FetchTableRequest* request, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse* response, ::grpc::ClientUnaryReactor* reactor) { - ::grpc::internal::ClientCallbackUnaryFactory::Create< ::grpc::protobuf::MessageLite, ::grpc::protobuf::MessageLite>(stub_->channel_.get(), stub_->rpcmethod_FetchTable_, context, request, response, reactor); -} - -::grpc::ClientAsyncResponseReader< ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse>* TableService::Stub::PrepareAsyncFetchTableRaw(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::FetchTableRequest& request, ::grpc::CompletionQueue* cq) { - return ::grpc::internal::ClientAsyncResponseReaderHelper::Create< ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse, ::io::deephaven::proto::backplane::grpc::FetchTableRequest, ::grpc::protobuf::MessageLite, ::grpc::protobuf::MessageLite>(channel_.get(), cq, rpcmethod_FetchTable_, context, request); -} - -::grpc::ClientAsyncResponseReader< ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse>* TableService::Stub::AsyncFetchTableRaw(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::FetchTableRequest& request, ::grpc::CompletionQueue* cq) { - auto* result = - this->PrepareAsyncFetchTableRaw(context, request, cq); - result->StartCall(); - return result; -} - -::grpc::Status TableService::Stub::ApplyPreviewColumns(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::ApplyPreviewColumnsRequest& request, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse* response) { - return ::grpc::internal::BlockingUnaryCall< ::io::deephaven::proto::backplane::grpc::ApplyPreviewColumnsRequest, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse, ::grpc::protobuf::MessageLite, ::grpc::protobuf::MessageLite>(channel_.get(), rpcmethod_ApplyPreviewColumns_, context, request, response); -} - -void TableService::Stub::async::ApplyPreviewColumns(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::ApplyPreviewColumnsRequest* request, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse* response, std::function f) { - ::grpc::internal::CallbackUnaryCall< ::io::deephaven::proto::backplane::grpc::ApplyPreviewColumnsRequest, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse, ::grpc::protobuf::MessageLite, ::grpc::protobuf::MessageLite>(stub_->channel_.get(), stub_->rpcmethod_ApplyPreviewColumns_, context, request, response, std::move(f)); -} - -void TableService::Stub::async::ApplyPreviewColumns(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::ApplyPreviewColumnsRequest* request, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse* response, ::grpc::ClientUnaryReactor* reactor) { - ::grpc::internal::ClientCallbackUnaryFactory::Create< ::grpc::protobuf::MessageLite, ::grpc::protobuf::MessageLite>(stub_->channel_.get(), stub_->rpcmethod_ApplyPreviewColumns_, context, request, response, reactor); -} - -::grpc::ClientAsyncResponseReader< ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse>* TableService::Stub::PrepareAsyncApplyPreviewColumnsRaw(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::ApplyPreviewColumnsRequest& request, ::grpc::CompletionQueue* cq) { - return ::grpc::internal::ClientAsyncResponseReaderHelper::Create< ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse, ::io::deephaven::proto::backplane::grpc::ApplyPreviewColumnsRequest, ::grpc::protobuf::MessageLite, ::grpc::protobuf::MessageLite>(channel_.get(), cq, rpcmethod_ApplyPreviewColumns_, context, request); -} - -::grpc::ClientAsyncResponseReader< ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse>* TableService::Stub::AsyncApplyPreviewColumnsRaw(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::ApplyPreviewColumnsRequest& request, ::grpc::CompletionQueue* cq) { - auto* result = - this->PrepareAsyncApplyPreviewColumnsRaw(context, request, cq); - result->StartCall(); - return result; -} - -::grpc::Status TableService::Stub::EmptyTable(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::EmptyTableRequest& request, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse* response) { - return ::grpc::internal::BlockingUnaryCall< ::io::deephaven::proto::backplane::grpc::EmptyTableRequest, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse, ::grpc::protobuf::MessageLite, ::grpc::protobuf::MessageLite>(channel_.get(), rpcmethod_EmptyTable_, context, request, response); -} - -void TableService::Stub::async::EmptyTable(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::EmptyTableRequest* request, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse* response, std::function f) { - ::grpc::internal::CallbackUnaryCall< ::io::deephaven::proto::backplane::grpc::EmptyTableRequest, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse, ::grpc::protobuf::MessageLite, ::grpc::protobuf::MessageLite>(stub_->channel_.get(), stub_->rpcmethod_EmptyTable_, context, request, response, std::move(f)); -} - -void TableService::Stub::async::EmptyTable(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::EmptyTableRequest* request, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse* response, ::grpc::ClientUnaryReactor* reactor) { - ::grpc::internal::ClientCallbackUnaryFactory::Create< ::grpc::protobuf::MessageLite, ::grpc::protobuf::MessageLite>(stub_->channel_.get(), stub_->rpcmethod_EmptyTable_, context, request, response, reactor); -} - -::grpc::ClientAsyncResponseReader< ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse>* TableService::Stub::PrepareAsyncEmptyTableRaw(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::EmptyTableRequest& request, ::grpc::CompletionQueue* cq) { - return ::grpc::internal::ClientAsyncResponseReaderHelper::Create< ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse, ::io::deephaven::proto::backplane::grpc::EmptyTableRequest, ::grpc::protobuf::MessageLite, ::grpc::protobuf::MessageLite>(channel_.get(), cq, rpcmethod_EmptyTable_, context, request); -} - -::grpc::ClientAsyncResponseReader< ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse>* TableService::Stub::AsyncEmptyTableRaw(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::EmptyTableRequest& request, ::grpc::CompletionQueue* cq) { - auto* result = - this->PrepareAsyncEmptyTableRaw(context, request, cq); - result->StartCall(); - return result; -} - -::grpc::Status TableService::Stub::TimeTable(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::TimeTableRequest& request, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse* response) { - return ::grpc::internal::BlockingUnaryCall< ::io::deephaven::proto::backplane::grpc::TimeTableRequest, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse, ::grpc::protobuf::MessageLite, ::grpc::protobuf::MessageLite>(channel_.get(), rpcmethod_TimeTable_, context, request, response); -} - -void TableService::Stub::async::TimeTable(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::TimeTableRequest* request, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse* response, std::function f) { - ::grpc::internal::CallbackUnaryCall< ::io::deephaven::proto::backplane::grpc::TimeTableRequest, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse, ::grpc::protobuf::MessageLite, ::grpc::protobuf::MessageLite>(stub_->channel_.get(), stub_->rpcmethod_TimeTable_, context, request, response, std::move(f)); -} - -void TableService::Stub::async::TimeTable(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::TimeTableRequest* request, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse* response, ::grpc::ClientUnaryReactor* reactor) { - ::grpc::internal::ClientCallbackUnaryFactory::Create< ::grpc::protobuf::MessageLite, ::grpc::protobuf::MessageLite>(stub_->channel_.get(), stub_->rpcmethod_TimeTable_, context, request, response, reactor); -} - -::grpc::ClientAsyncResponseReader< ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse>* TableService::Stub::PrepareAsyncTimeTableRaw(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::TimeTableRequest& request, ::grpc::CompletionQueue* cq) { - return ::grpc::internal::ClientAsyncResponseReaderHelper::Create< ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse, ::io::deephaven::proto::backplane::grpc::TimeTableRequest, ::grpc::protobuf::MessageLite, ::grpc::protobuf::MessageLite>(channel_.get(), cq, rpcmethod_TimeTable_, context, request); -} - -::grpc::ClientAsyncResponseReader< ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse>* TableService::Stub::AsyncTimeTableRaw(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::TimeTableRequest& request, ::grpc::CompletionQueue* cq) { - auto* result = - this->PrepareAsyncTimeTableRaw(context, request, cq); - result->StartCall(); - return result; -} - -::grpc::Status TableService::Stub::DropColumns(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::DropColumnsRequest& request, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse* response) { - return ::grpc::internal::BlockingUnaryCall< ::io::deephaven::proto::backplane::grpc::DropColumnsRequest, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse, ::grpc::protobuf::MessageLite, ::grpc::protobuf::MessageLite>(channel_.get(), rpcmethod_DropColumns_, context, request, response); -} - -void TableService::Stub::async::DropColumns(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::DropColumnsRequest* request, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse* response, std::function f) { - ::grpc::internal::CallbackUnaryCall< ::io::deephaven::proto::backplane::grpc::DropColumnsRequest, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse, ::grpc::protobuf::MessageLite, ::grpc::protobuf::MessageLite>(stub_->channel_.get(), stub_->rpcmethod_DropColumns_, context, request, response, std::move(f)); -} - -void TableService::Stub::async::DropColumns(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::DropColumnsRequest* request, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse* response, ::grpc::ClientUnaryReactor* reactor) { - ::grpc::internal::ClientCallbackUnaryFactory::Create< ::grpc::protobuf::MessageLite, ::grpc::protobuf::MessageLite>(stub_->channel_.get(), stub_->rpcmethod_DropColumns_, context, request, response, reactor); -} - -::grpc::ClientAsyncResponseReader< ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse>* TableService::Stub::PrepareAsyncDropColumnsRaw(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::DropColumnsRequest& request, ::grpc::CompletionQueue* cq) { - return ::grpc::internal::ClientAsyncResponseReaderHelper::Create< ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse, ::io::deephaven::proto::backplane::grpc::DropColumnsRequest, ::grpc::protobuf::MessageLite, ::grpc::protobuf::MessageLite>(channel_.get(), cq, rpcmethod_DropColumns_, context, request); -} - -::grpc::ClientAsyncResponseReader< ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse>* TableService::Stub::AsyncDropColumnsRaw(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::DropColumnsRequest& request, ::grpc::CompletionQueue* cq) { - auto* result = - this->PrepareAsyncDropColumnsRaw(context, request, cq); - result->StartCall(); - return result; -} - -::grpc::Status TableService::Stub::Update(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::SelectOrUpdateRequest& request, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse* response) { - return ::grpc::internal::BlockingUnaryCall< ::io::deephaven::proto::backplane::grpc::SelectOrUpdateRequest, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse, ::grpc::protobuf::MessageLite, ::grpc::protobuf::MessageLite>(channel_.get(), rpcmethod_Update_, context, request, response); -} - -void TableService::Stub::async::Update(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::SelectOrUpdateRequest* request, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse* response, std::function f) { - ::grpc::internal::CallbackUnaryCall< ::io::deephaven::proto::backplane::grpc::SelectOrUpdateRequest, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse, ::grpc::protobuf::MessageLite, ::grpc::protobuf::MessageLite>(stub_->channel_.get(), stub_->rpcmethod_Update_, context, request, response, std::move(f)); -} - -void TableService::Stub::async::Update(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::SelectOrUpdateRequest* request, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse* response, ::grpc::ClientUnaryReactor* reactor) { - ::grpc::internal::ClientCallbackUnaryFactory::Create< ::grpc::protobuf::MessageLite, ::grpc::protobuf::MessageLite>(stub_->channel_.get(), stub_->rpcmethod_Update_, context, request, response, reactor); -} - -::grpc::ClientAsyncResponseReader< ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse>* TableService::Stub::PrepareAsyncUpdateRaw(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::SelectOrUpdateRequest& request, ::grpc::CompletionQueue* cq) { - return ::grpc::internal::ClientAsyncResponseReaderHelper::Create< ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse, ::io::deephaven::proto::backplane::grpc::SelectOrUpdateRequest, ::grpc::protobuf::MessageLite, ::grpc::protobuf::MessageLite>(channel_.get(), cq, rpcmethod_Update_, context, request); -} - -::grpc::ClientAsyncResponseReader< ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse>* TableService::Stub::AsyncUpdateRaw(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::SelectOrUpdateRequest& request, ::grpc::CompletionQueue* cq) { - auto* result = - this->PrepareAsyncUpdateRaw(context, request, cq); - result->StartCall(); - return result; -} - -::grpc::Status TableService::Stub::LazyUpdate(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::SelectOrUpdateRequest& request, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse* response) { - return ::grpc::internal::BlockingUnaryCall< ::io::deephaven::proto::backplane::grpc::SelectOrUpdateRequest, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse, ::grpc::protobuf::MessageLite, ::grpc::protobuf::MessageLite>(channel_.get(), rpcmethod_LazyUpdate_, context, request, response); -} - -void TableService::Stub::async::LazyUpdate(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::SelectOrUpdateRequest* request, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse* response, std::function f) { - ::grpc::internal::CallbackUnaryCall< ::io::deephaven::proto::backplane::grpc::SelectOrUpdateRequest, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse, ::grpc::protobuf::MessageLite, ::grpc::protobuf::MessageLite>(stub_->channel_.get(), stub_->rpcmethod_LazyUpdate_, context, request, response, std::move(f)); -} - -void TableService::Stub::async::LazyUpdate(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::SelectOrUpdateRequest* request, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse* response, ::grpc::ClientUnaryReactor* reactor) { - ::grpc::internal::ClientCallbackUnaryFactory::Create< ::grpc::protobuf::MessageLite, ::grpc::protobuf::MessageLite>(stub_->channel_.get(), stub_->rpcmethod_LazyUpdate_, context, request, response, reactor); -} - -::grpc::ClientAsyncResponseReader< ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse>* TableService::Stub::PrepareAsyncLazyUpdateRaw(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::SelectOrUpdateRequest& request, ::grpc::CompletionQueue* cq) { - return ::grpc::internal::ClientAsyncResponseReaderHelper::Create< ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse, ::io::deephaven::proto::backplane::grpc::SelectOrUpdateRequest, ::grpc::protobuf::MessageLite, ::grpc::protobuf::MessageLite>(channel_.get(), cq, rpcmethod_LazyUpdate_, context, request); -} - -::grpc::ClientAsyncResponseReader< ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse>* TableService::Stub::AsyncLazyUpdateRaw(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::SelectOrUpdateRequest& request, ::grpc::CompletionQueue* cq) { - auto* result = - this->PrepareAsyncLazyUpdateRaw(context, request, cq); - result->StartCall(); - return result; -} - -::grpc::Status TableService::Stub::View(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::SelectOrUpdateRequest& request, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse* response) { - return ::grpc::internal::BlockingUnaryCall< ::io::deephaven::proto::backplane::grpc::SelectOrUpdateRequest, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse, ::grpc::protobuf::MessageLite, ::grpc::protobuf::MessageLite>(channel_.get(), rpcmethod_View_, context, request, response); -} - -void TableService::Stub::async::View(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::SelectOrUpdateRequest* request, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse* response, std::function f) { - ::grpc::internal::CallbackUnaryCall< ::io::deephaven::proto::backplane::grpc::SelectOrUpdateRequest, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse, ::grpc::protobuf::MessageLite, ::grpc::protobuf::MessageLite>(stub_->channel_.get(), stub_->rpcmethod_View_, context, request, response, std::move(f)); -} - -void TableService::Stub::async::View(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::SelectOrUpdateRequest* request, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse* response, ::grpc::ClientUnaryReactor* reactor) { - ::grpc::internal::ClientCallbackUnaryFactory::Create< ::grpc::protobuf::MessageLite, ::grpc::protobuf::MessageLite>(stub_->channel_.get(), stub_->rpcmethod_View_, context, request, response, reactor); -} - -::grpc::ClientAsyncResponseReader< ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse>* TableService::Stub::PrepareAsyncViewRaw(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::SelectOrUpdateRequest& request, ::grpc::CompletionQueue* cq) { - return ::grpc::internal::ClientAsyncResponseReaderHelper::Create< ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse, ::io::deephaven::proto::backplane::grpc::SelectOrUpdateRequest, ::grpc::protobuf::MessageLite, ::grpc::protobuf::MessageLite>(channel_.get(), cq, rpcmethod_View_, context, request); -} - -::grpc::ClientAsyncResponseReader< ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse>* TableService::Stub::AsyncViewRaw(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::SelectOrUpdateRequest& request, ::grpc::CompletionQueue* cq) { - auto* result = - this->PrepareAsyncViewRaw(context, request, cq); - result->StartCall(); - return result; -} - -::grpc::Status TableService::Stub::UpdateView(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::SelectOrUpdateRequest& request, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse* response) { - return ::grpc::internal::BlockingUnaryCall< ::io::deephaven::proto::backplane::grpc::SelectOrUpdateRequest, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse, ::grpc::protobuf::MessageLite, ::grpc::protobuf::MessageLite>(channel_.get(), rpcmethod_UpdateView_, context, request, response); -} - -void TableService::Stub::async::UpdateView(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::SelectOrUpdateRequest* request, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse* response, std::function f) { - ::grpc::internal::CallbackUnaryCall< ::io::deephaven::proto::backplane::grpc::SelectOrUpdateRequest, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse, ::grpc::protobuf::MessageLite, ::grpc::protobuf::MessageLite>(stub_->channel_.get(), stub_->rpcmethod_UpdateView_, context, request, response, std::move(f)); -} - -void TableService::Stub::async::UpdateView(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::SelectOrUpdateRequest* request, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse* response, ::grpc::ClientUnaryReactor* reactor) { - ::grpc::internal::ClientCallbackUnaryFactory::Create< ::grpc::protobuf::MessageLite, ::grpc::protobuf::MessageLite>(stub_->channel_.get(), stub_->rpcmethod_UpdateView_, context, request, response, reactor); -} - -::grpc::ClientAsyncResponseReader< ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse>* TableService::Stub::PrepareAsyncUpdateViewRaw(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::SelectOrUpdateRequest& request, ::grpc::CompletionQueue* cq) { - return ::grpc::internal::ClientAsyncResponseReaderHelper::Create< ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse, ::io::deephaven::proto::backplane::grpc::SelectOrUpdateRequest, ::grpc::protobuf::MessageLite, ::grpc::protobuf::MessageLite>(channel_.get(), cq, rpcmethod_UpdateView_, context, request); -} - -::grpc::ClientAsyncResponseReader< ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse>* TableService::Stub::AsyncUpdateViewRaw(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::SelectOrUpdateRequest& request, ::grpc::CompletionQueue* cq) { - auto* result = - this->PrepareAsyncUpdateViewRaw(context, request, cq); - result->StartCall(); - return result; -} - -::grpc::Status TableService::Stub::Select(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::SelectOrUpdateRequest& request, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse* response) { - return ::grpc::internal::BlockingUnaryCall< ::io::deephaven::proto::backplane::grpc::SelectOrUpdateRequest, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse, ::grpc::protobuf::MessageLite, ::grpc::protobuf::MessageLite>(channel_.get(), rpcmethod_Select_, context, request, response); -} - -void TableService::Stub::async::Select(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::SelectOrUpdateRequest* request, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse* response, std::function f) { - ::grpc::internal::CallbackUnaryCall< ::io::deephaven::proto::backplane::grpc::SelectOrUpdateRequest, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse, ::grpc::protobuf::MessageLite, ::grpc::protobuf::MessageLite>(stub_->channel_.get(), stub_->rpcmethod_Select_, context, request, response, std::move(f)); -} - -void TableService::Stub::async::Select(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::SelectOrUpdateRequest* request, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse* response, ::grpc::ClientUnaryReactor* reactor) { - ::grpc::internal::ClientCallbackUnaryFactory::Create< ::grpc::protobuf::MessageLite, ::grpc::protobuf::MessageLite>(stub_->channel_.get(), stub_->rpcmethod_Select_, context, request, response, reactor); -} - -::grpc::ClientAsyncResponseReader< ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse>* TableService::Stub::PrepareAsyncSelectRaw(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::SelectOrUpdateRequest& request, ::grpc::CompletionQueue* cq) { - return ::grpc::internal::ClientAsyncResponseReaderHelper::Create< ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse, ::io::deephaven::proto::backplane::grpc::SelectOrUpdateRequest, ::grpc::protobuf::MessageLite, ::grpc::protobuf::MessageLite>(channel_.get(), cq, rpcmethod_Select_, context, request); -} - -::grpc::ClientAsyncResponseReader< ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse>* TableService::Stub::AsyncSelectRaw(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::SelectOrUpdateRequest& request, ::grpc::CompletionQueue* cq) { - auto* result = - this->PrepareAsyncSelectRaw(context, request, cq); - result->StartCall(); - return result; -} - -::grpc::Status TableService::Stub::UpdateBy(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::UpdateByRequest& request, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse* response) { - return ::grpc::internal::BlockingUnaryCall< ::io::deephaven::proto::backplane::grpc::UpdateByRequest, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse, ::grpc::protobuf::MessageLite, ::grpc::protobuf::MessageLite>(channel_.get(), rpcmethod_UpdateBy_, context, request, response); -} - -void TableService::Stub::async::UpdateBy(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::UpdateByRequest* request, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse* response, std::function f) { - ::grpc::internal::CallbackUnaryCall< ::io::deephaven::proto::backplane::grpc::UpdateByRequest, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse, ::grpc::protobuf::MessageLite, ::grpc::protobuf::MessageLite>(stub_->channel_.get(), stub_->rpcmethod_UpdateBy_, context, request, response, std::move(f)); -} - -void TableService::Stub::async::UpdateBy(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::UpdateByRequest* request, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse* response, ::grpc::ClientUnaryReactor* reactor) { - ::grpc::internal::ClientCallbackUnaryFactory::Create< ::grpc::protobuf::MessageLite, ::grpc::protobuf::MessageLite>(stub_->channel_.get(), stub_->rpcmethod_UpdateBy_, context, request, response, reactor); -} - -::grpc::ClientAsyncResponseReader< ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse>* TableService::Stub::PrepareAsyncUpdateByRaw(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::UpdateByRequest& request, ::grpc::CompletionQueue* cq) { - return ::grpc::internal::ClientAsyncResponseReaderHelper::Create< ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse, ::io::deephaven::proto::backplane::grpc::UpdateByRequest, ::grpc::protobuf::MessageLite, ::grpc::protobuf::MessageLite>(channel_.get(), cq, rpcmethod_UpdateBy_, context, request); -} - -::grpc::ClientAsyncResponseReader< ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse>* TableService::Stub::AsyncUpdateByRaw(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::UpdateByRequest& request, ::grpc::CompletionQueue* cq) { - auto* result = - this->PrepareAsyncUpdateByRaw(context, request, cq); - result->StartCall(); - return result; -} - -::grpc::Status TableService::Stub::SelectDistinct(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::SelectDistinctRequest& request, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse* response) { - return ::grpc::internal::BlockingUnaryCall< ::io::deephaven::proto::backplane::grpc::SelectDistinctRequest, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse, ::grpc::protobuf::MessageLite, ::grpc::protobuf::MessageLite>(channel_.get(), rpcmethod_SelectDistinct_, context, request, response); -} - -void TableService::Stub::async::SelectDistinct(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::SelectDistinctRequest* request, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse* response, std::function f) { - ::grpc::internal::CallbackUnaryCall< ::io::deephaven::proto::backplane::grpc::SelectDistinctRequest, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse, ::grpc::protobuf::MessageLite, ::grpc::protobuf::MessageLite>(stub_->channel_.get(), stub_->rpcmethod_SelectDistinct_, context, request, response, std::move(f)); -} - -void TableService::Stub::async::SelectDistinct(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::SelectDistinctRequest* request, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse* response, ::grpc::ClientUnaryReactor* reactor) { - ::grpc::internal::ClientCallbackUnaryFactory::Create< ::grpc::protobuf::MessageLite, ::grpc::protobuf::MessageLite>(stub_->channel_.get(), stub_->rpcmethod_SelectDistinct_, context, request, response, reactor); -} - -::grpc::ClientAsyncResponseReader< ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse>* TableService::Stub::PrepareAsyncSelectDistinctRaw(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::SelectDistinctRequest& request, ::grpc::CompletionQueue* cq) { - return ::grpc::internal::ClientAsyncResponseReaderHelper::Create< ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse, ::io::deephaven::proto::backplane::grpc::SelectDistinctRequest, ::grpc::protobuf::MessageLite, ::grpc::protobuf::MessageLite>(channel_.get(), cq, rpcmethod_SelectDistinct_, context, request); -} - -::grpc::ClientAsyncResponseReader< ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse>* TableService::Stub::AsyncSelectDistinctRaw(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::SelectDistinctRequest& request, ::grpc::CompletionQueue* cq) { - auto* result = - this->PrepareAsyncSelectDistinctRaw(context, request, cq); - result->StartCall(); - return result; -} - -::grpc::Status TableService::Stub::Filter(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::FilterTableRequest& request, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse* response) { - return ::grpc::internal::BlockingUnaryCall< ::io::deephaven::proto::backplane::grpc::FilterTableRequest, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse, ::grpc::protobuf::MessageLite, ::grpc::protobuf::MessageLite>(channel_.get(), rpcmethod_Filter_, context, request, response); -} - -void TableService::Stub::async::Filter(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::FilterTableRequest* request, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse* response, std::function f) { - ::grpc::internal::CallbackUnaryCall< ::io::deephaven::proto::backplane::grpc::FilterTableRequest, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse, ::grpc::protobuf::MessageLite, ::grpc::protobuf::MessageLite>(stub_->channel_.get(), stub_->rpcmethod_Filter_, context, request, response, std::move(f)); -} - -void TableService::Stub::async::Filter(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::FilterTableRequest* request, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse* response, ::grpc::ClientUnaryReactor* reactor) { - ::grpc::internal::ClientCallbackUnaryFactory::Create< ::grpc::protobuf::MessageLite, ::grpc::protobuf::MessageLite>(stub_->channel_.get(), stub_->rpcmethod_Filter_, context, request, response, reactor); -} - -::grpc::ClientAsyncResponseReader< ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse>* TableService::Stub::PrepareAsyncFilterRaw(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::FilterTableRequest& request, ::grpc::CompletionQueue* cq) { - return ::grpc::internal::ClientAsyncResponseReaderHelper::Create< ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse, ::io::deephaven::proto::backplane::grpc::FilterTableRequest, ::grpc::protobuf::MessageLite, ::grpc::protobuf::MessageLite>(channel_.get(), cq, rpcmethod_Filter_, context, request); -} - -::grpc::ClientAsyncResponseReader< ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse>* TableService::Stub::AsyncFilterRaw(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::FilterTableRequest& request, ::grpc::CompletionQueue* cq) { - auto* result = - this->PrepareAsyncFilterRaw(context, request, cq); - result->StartCall(); - return result; -} - -::grpc::Status TableService::Stub::UnstructuredFilter(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::UnstructuredFilterTableRequest& request, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse* response) { - return ::grpc::internal::BlockingUnaryCall< ::io::deephaven::proto::backplane::grpc::UnstructuredFilterTableRequest, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse, ::grpc::protobuf::MessageLite, ::grpc::protobuf::MessageLite>(channel_.get(), rpcmethod_UnstructuredFilter_, context, request, response); -} - -void TableService::Stub::async::UnstructuredFilter(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::UnstructuredFilterTableRequest* request, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse* response, std::function f) { - ::grpc::internal::CallbackUnaryCall< ::io::deephaven::proto::backplane::grpc::UnstructuredFilterTableRequest, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse, ::grpc::protobuf::MessageLite, ::grpc::protobuf::MessageLite>(stub_->channel_.get(), stub_->rpcmethod_UnstructuredFilter_, context, request, response, std::move(f)); -} - -void TableService::Stub::async::UnstructuredFilter(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::UnstructuredFilterTableRequest* request, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse* response, ::grpc::ClientUnaryReactor* reactor) { - ::grpc::internal::ClientCallbackUnaryFactory::Create< ::grpc::protobuf::MessageLite, ::grpc::protobuf::MessageLite>(stub_->channel_.get(), stub_->rpcmethod_UnstructuredFilter_, context, request, response, reactor); -} - -::grpc::ClientAsyncResponseReader< ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse>* TableService::Stub::PrepareAsyncUnstructuredFilterRaw(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::UnstructuredFilterTableRequest& request, ::grpc::CompletionQueue* cq) { - return ::grpc::internal::ClientAsyncResponseReaderHelper::Create< ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse, ::io::deephaven::proto::backplane::grpc::UnstructuredFilterTableRequest, ::grpc::protobuf::MessageLite, ::grpc::protobuf::MessageLite>(channel_.get(), cq, rpcmethod_UnstructuredFilter_, context, request); -} - -::grpc::ClientAsyncResponseReader< ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse>* TableService::Stub::AsyncUnstructuredFilterRaw(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::UnstructuredFilterTableRequest& request, ::grpc::CompletionQueue* cq) { - auto* result = - this->PrepareAsyncUnstructuredFilterRaw(context, request, cq); - result->StartCall(); - return result; -} - -::grpc::Status TableService::Stub::Sort(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::SortTableRequest& request, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse* response) { - return ::grpc::internal::BlockingUnaryCall< ::io::deephaven::proto::backplane::grpc::SortTableRequest, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse, ::grpc::protobuf::MessageLite, ::grpc::protobuf::MessageLite>(channel_.get(), rpcmethod_Sort_, context, request, response); -} - -void TableService::Stub::async::Sort(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::SortTableRequest* request, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse* response, std::function f) { - ::grpc::internal::CallbackUnaryCall< ::io::deephaven::proto::backplane::grpc::SortTableRequest, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse, ::grpc::protobuf::MessageLite, ::grpc::protobuf::MessageLite>(stub_->channel_.get(), stub_->rpcmethod_Sort_, context, request, response, std::move(f)); -} - -void TableService::Stub::async::Sort(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::SortTableRequest* request, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse* response, ::grpc::ClientUnaryReactor* reactor) { - ::grpc::internal::ClientCallbackUnaryFactory::Create< ::grpc::protobuf::MessageLite, ::grpc::protobuf::MessageLite>(stub_->channel_.get(), stub_->rpcmethod_Sort_, context, request, response, reactor); -} - -::grpc::ClientAsyncResponseReader< ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse>* TableService::Stub::PrepareAsyncSortRaw(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::SortTableRequest& request, ::grpc::CompletionQueue* cq) { - return ::grpc::internal::ClientAsyncResponseReaderHelper::Create< ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse, ::io::deephaven::proto::backplane::grpc::SortTableRequest, ::grpc::protobuf::MessageLite, ::grpc::protobuf::MessageLite>(channel_.get(), cq, rpcmethod_Sort_, context, request); -} - -::grpc::ClientAsyncResponseReader< ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse>* TableService::Stub::AsyncSortRaw(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::SortTableRequest& request, ::grpc::CompletionQueue* cq) { - auto* result = - this->PrepareAsyncSortRaw(context, request, cq); - result->StartCall(); - return result; -} - -::grpc::Status TableService::Stub::Head(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::HeadOrTailRequest& request, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse* response) { - return ::grpc::internal::BlockingUnaryCall< ::io::deephaven::proto::backplane::grpc::HeadOrTailRequest, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse, ::grpc::protobuf::MessageLite, ::grpc::protobuf::MessageLite>(channel_.get(), rpcmethod_Head_, context, request, response); -} - -void TableService::Stub::async::Head(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::HeadOrTailRequest* request, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse* response, std::function f) { - ::grpc::internal::CallbackUnaryCall< ::io::deephaven::proto::backplane::grpc::HeadOrTailRequest, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse, ::grpc::protobuf::MessageLite, ::grpc::protobuf::MessageLite>(stub_->channel_.get(), stub_->rpcmethod_Head_, context, request, response, std::move(f)); -} - -void TableService::Stub::async::Head(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::HeadOrTailRequest* request, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse* response, ::grpc::ClientUnaryReactor* reactor) { - ::grpc::internal::ClientCallbackUnaryFactory::Create< ::grpc::protobuf::MessageLite, ::grpc::protobuf::MessageLite>(stub_->channel_.get(), stub_->rpcmethod_Head_, context, request, response, reactor); -} - -::grpc::ClientAsyncResponseReader< ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse>* TableService::Stub::PrepareAsyncHeadRaw(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::HeadOrTailRequest& request, ::grpc::CompletionQueue* cq) { - return ::grpc::internal::ClientAsyncResponseReaderHelper::Create< ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse, ::io::deephaven::proto::backplane::grpc::HeadOrTailRequest, ::grpc::protobuf::MessageLite, ::grpc::protobuf::MessageLite>(channel_.get(), cq, rpcmethod_Head_, context, request); -} - -::grpc::ClientAsyncResponseReader< ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse>* TableService::Stub::AsyncHeadRaw(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::HeadOrTailRequest& request, ::grpc::CompletionQueue* cq) { - auto* result = - this->PrepareAsyncHeadRaw(context, request, cq); - result->StartCall(); - return result; -} - -::grpc::Status TableService::Stub::Tail(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::HeadOrTailRequest& request, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse* response) { - return ::grpc::internal::BlockingUnaryCall< ::io::deephaven::proto::backplane::grpc::HeadOrTailRequest, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse, ::grpc::protobuf::MessageLite, ::grpc::protobuf::MessageLite>(channel_.get(), rpcmethod_Tail_, context, request, response); -} - -void TableService::Stub::async::Tail(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::HeadOrTailRequest* request, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse* response, std::function f) { - ::grpc::internal::CallbackUnaryCall< ::io::deephaven::proto::backplane::grpc::HeadOrTailRequest, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse, ::grpc::protobuf::MessageLite, ::grpc::protobuf::MessageLite>(stub_->channel_.get(), stub_->rpcmethod_Tail_, context, request, response, std::move(f)); -} - -void TableService::Stub::async::Tail(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::HeadOrTailRequest* request, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse* response, ::grpc::ClientUnaryReactor* reactor) { - ::grpc::internal::ClientCallbackUnaryFactory::Create< ::grpc::protobuf::MessageLite, ::grpc::protobuf::MessageLite>(stub_->channel_.get(), stub_->rpcmethod_Tail_, context, request, response, reactor); -} - -::grpc::ClientAsyncResponseReader< ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse>* TableService::Stub::PrepareAsyncTailRaw(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::HeadOrTailRequest& request, ::grpc::CompletionQueue* cq) { - return ::grpc::internal::ClientAsyncResponseReaderHelper::Create< ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse, ::io::deephaven::proto::backplane::grpc::HeadOrTailRequest, ::grpc::protobuf::MessageLite, ::grpc::protobuf::MessageLite>(channel_.get(), cq, rpcmethod_Tail_, context, request); -} - -::grpc::ClientAsyncResponseReader< ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse>* TableService::Stub::AsyncTailRaw(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::HeadOrTailRequest& request, ::grpc::CompletionQueue* cq) { - auto* result = - this->PrepareAsyncTailRaw(context, request, cq); - result->StartCall(); - return result; -} - -::grpc::Status TableService::Stub::HeadBy(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::HeadOrTailByRequest& request, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse* response) { - return ::grpc::internal::BlockingUnaryCall< ::io::deephaven::proto::backplane::grpc::HeadOrTailByRequest, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse, ::grpc::protobuf::MessageLite, ::grpc::protobuf::MessageLite>(channel_.get(), rpcmethod_HeadBy_, context, request, response); -} - -void TableService::Stub::async::HeadBy(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::HeadOrTailByRequest* request, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse* response, std::function f) { - ::grpc::internal::CallbackUnaryCall< ::io::deephaven::proto::backplane::grpc::HeadOrTailByRequest, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse, ::grpc::protobuf::MessageLite, ::grpc::protobuf::MessageLite>(stub_->channel_.get(), stub_->rpcmethod_HeadBy_, context, request, response, std::move(f)); -} - -void TableService::Stub::async::HeadBy(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::HeadOrTailByRequest* request, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse* response, ::grpc::ClientUnaryReactor* reactor) { - ::grpc::internal::ClientCallbackUnaryFactory::Create< ::grpc::protobuf::MessageLite, ::grpc::protobuf::MessageLite>(stub_->channel_.get(), stub_->rpcmethod_HeadBy_, context, request, response, reactor); -} - -::grpc::ClientAsyncResponseReader< ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse>* TableService::Stub::PrepareAsyncHeadByRaw(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::HeadOrTailByRequest& request, ::grpc::CompletionQueue* cq) { - return ::grpc::internal::ClientAsyncResponseReaderHelper::Create< ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse, ::io::deephaven::proto::backplane::grpc::HeadOrTailByRequest, ::grpc::protobuf::MessageLite, ::grpc::protobuf::MessageLite>(channel_.get(), cq, rpcmethod_HeadBy_, context, request); -} - -::grpc::ClientAsyncResponseReader< ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse>* TableService::Stub::AsyncHeadByRaw(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::HeadOrTailByRequest& request, ::grpc::CompletionQueue* cq) { - auto* result = - this->PrepareAsyncHeadByRaw(context, request, cq); - result->StartCall(); - return result; -} - -::grpc::Status TableService::Stub::TailBy(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::HeadOrTailByRequest& request, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse* response) { - return ::grpc::internal::BlockingUnaryCall< ::io::deephaven::proto::backplane::grpc::HeadOrTailByRequest, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse, ::grpc::protobuf::MessageLite, ::grpc::protobuf::MessageLite>(channel_.get(), rpcmethod_TailBy_, context, request, response); -} - -void TableService::Stub::async::TailBy(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::HeadOrTailByRequest* request, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse* response, std::function f) { - ::grpc::internal::CallbackUnaryCall< ::io::deephaven::proto::backplane::grpc::HeadOrTailByRequest, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse, ::grpc::protobuf::MessageLite, ::grpc::protobuf::MessageLite>(stub_->channel_.get(), stub_->rpcmethod_TailBy_, context, request, response, std::move(f)); -} - -void TableService::Stub::async::TailBy(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::HeadOrTailByRequest* request, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse* response, ::grpc::ClientUnaryReactor* reactor) { - ::grpc::internal::ClientCallbackUnaryFactory::Create< ::grpc::protobuf::MessageLite, ::grpc::protobuf::MessageLite>(stub_->channel_.get(), stub_->rpcmethod_TailBy_, context, request, response, reactor); -} - -::grpc::ClientAsyncResponseReader< ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse>* TableService::Stub::PrepareAsyncTailByRaw(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::HeadOrTailByRequest& request, ::grpc::CompletionQueue* cq) { - return ::grpc::internal::ClientAsyncResponseReaderHelper::Create< ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse, ::io::deephaven::proto::backplane::grpc::HeadOrTailByRequest, ::grpc::protobuf::MessageLite, ::grpc::protobuf::MessageLite>(channel_.get(), cq, rpcmethod_TailBy_, context, request); -} - -::grpc::ClientAsyncResponseReader< ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse>* TableService::Stub::AsyncTailByRaw(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::HeadOrTailByRequest& request, ::grpc::CompletionQueue* cq) { - auto* result = - this->PrepareAsyncTailByRaw(context, request, cq); - result->StartCall(); - return result; -} - -::grpc::Status TableService::Stub::Ungroup(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::UngroupRequest& request, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse* response) { - return ::grpc::internal::BlockingUnaryCall< ::io::deephaven::proto::backplane::grpc::UngroupRequest, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse, ::grpc::protobuf::MessageLite, ::grpc::protobuf::MessageLite>(channel_.get(), rpcmethod_Ungroup_, context, request, response); -} - -void TableService::Stub::async::Ungroup(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::UngroupRequest* request, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse* response, std::function f) { - ::grpc::internal::CallbackUnaryCall< ::io::deephaven::proto::backplane::grpc::UngroupRequest, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse, ::grpc::protobuf::MessageLite, ::grpc::protobuf::MessageLite>(stub_->channel_.get(), stub_->rpcmethod_Ungroup_, context, request, response, std::move(f)); -} - -void TableService::Stub::async::Ungroup(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::UngroupRequest* request, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse* response, ::grpc::ClientUnaryReactor* reactor) { - ::grpc::internal::ClientCallbackUnaryFactory::Create< ::grpc::protobuf::MessageLite, ::grpc::protobuf::MessageLite>(stub_->channel_.get(), stub_->rpcmethod_Ungroup_, context, request, response, reactor); -} - -::grpc::ClientAsyncResponseReader< ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse>* TableService::Stub::PrepareAsyncUngroupRaw(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::UngroupRequest& request, ::grpc::CompletionQueue* cq) { - return ::grpc::internal::ClientAsyncResponseReaderHelper::Create< ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse, ::io::deephaven::proto::backplane::grpc::UngroupRequest, ::grpc::protobuf::MessageLite, ::grpc::protobuf::MessageLite>(channel_.get(), cq, rpcmethod_Ungroup_, context, request); -} - -::grpc::ClientAsyncResponseReader< ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse>* TableService::Stub::AsyncUngroupRaw(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::UngroupRequest& request, ::grpc::CompletionQueue* cq) { - auto* result = - this->PrepareAsyncUngroupRaw(context, request, cq); - result->StartCall(); - return result; -} - -::grpc::Status TableService::Stub::MergeTables(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::MergeTablesRequest& request, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse* response) { - return ::grpc::internal::BlockingUnaryCall< ::io::deephaven::proto::backplane::grpc::MergeTablesRequest, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse, ::grpc::protobuf::MessageLite, ::grpc::protobuf::MessageLite>(channel_.get(), rpcmethod_MergeTables_, context, request, response); -} - -void TableService::Stub::async::MergeTables(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::MergeTablesRequest* request, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse* response, std::function f) { - ::grpc::internal::CallbackUnaryCall< ::io::deephaven::proto::backplane::grpc::MergeTablesRequest, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse, ::grpc::protobuf::MessageLite, ::grpc::protobuf::MessageLite>(stub_->channel_.get(), stub_->rpcmethod_MergeTables_, context, request, response, std::move(f)); -} - -void TableService::Stub::async::MergeTables(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::MergeTablesRequest* request, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse* response, ::grpc::ClientUnaryReactor* reactor) { - ::grpc::internal::ClientCallbackUnaryFactory::Create< ::grpc::protobuf::MessageLite, ::grpc::protobuf::MessageLite>(stub_->channel_.get(), stub_->rpcmethod_MergeTables_, context, request, response, reactor); -} - -::grpc::ClientAsyncResponseReader< ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse>* TableService::Stub::PrepareAsyncMergeTablesRaw(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::MergeTablesRequest& request, ::grpc::CompletionQueue* cq) { - return ::grpc::internal::ClientAsyncResponseReaderHelper::Create< ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse, ::io::deephaven::proto::backplane::grpc::MergeTablesRequest, ::grpc::protobuf::MessageLite, ::grpc::protobuf::MessageLite>(channel_.get(), cq, rpcmethod_MergeTables_, context, request); -} - -::grpc::ClientAsyncResponseReader< ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse>* TableService::Stub::AsyncMergeTablesRaw(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::MergeTablesRequest& request, ::grpc::CompletionQueue* cq) { - auto* result = - this->PrepareAsyncMergeTablesRaw(context, request, cq); - result->StartCall(); - return result; -} - -::grpc::Status TableService::Stub::CrossJoinTables(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::CrossJoinTablesRequest& request, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse* response) { - return ::grpc::internal::BlockingUnaryCall< ::io::deephaven::proto::backplane::grpc::CrossJoinTablesRequest, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse, ::grpc::protobuf::MessageLite, ::grpc::protobuf::MessageLite>(channel_.get(), rpcmethod_CrossJoinTables_, context, request, response); -} - -void TableService::Stub::async::CrossJoinTables(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::CrossJoinTablesRequest* request, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse* response, std::function f) { - ::grpc::internal::CallbackUnaryCall< ::io::deephaven::proto::backplane::grpc::CrossJoinTablesRequest, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse, ::grpc::protobuf::MessageLite, ::grpc::protobuf::MessageLite>(stub_->channel_.get(), stub_->rpcmethod_CrossJoinTables_, context, request, response, std::move(f)); -} - -void TableService::Stub::async::CrossJoinTables(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::CrossJoinTablesRequest* request, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse* response, ::grpc::ClientUnaryReactor* reactor) { - ::grpc::internal::ClientCallbackUnaryFactory::Create< ::grpc::protobuf::MessageLite, ::grpc::protobuf::MessageLite>(stub_->channel_.get(), stub_->rpcmethod_CrossJoinTables_, context, request, response, reactor); -} - -::grpc::ClientAsyncResponseReader< ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse>* TableService::Stub::PrepareAsyncCrossJoinTablesRaw(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::CrossJoinTablesRequest& request, ::grpc::CompletionQueue* cq) { - return ::grpc::internal::ClientAsyncResponseReaderHelper::Create< ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse, ::io::deephaven::proto::backplane::grpc::CrossJoinTablesRequest, ::grpc::protobuf::MessageLite, ::grpc::protobuf::MessageLite>(channel_.get(), cq, rpcmethod_CrossJoinTables_, context, request); -} - -::grpc::ClientAsyncResponseReader< ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse>* TableService::Stub::AsyncCrossJoinTablesRaw(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::CrossJoinTablesRequest& request, ::grpc::CompletionQueue* cq) { - auto* result = - this->PrepareAsyncCrossJoinTablesRaw(context, request, cq); - result->StartCall(); - return result; -} - -::grpc::Status TableService::Stub::NaturalJoinTables(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::NaturalJoinTablesRequest& request, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse* response) { - return ::grpc::internal::BlockingUnaryCall< ::io::deephaven::proto::backplane::grpc::NaturalJoinTablesRequest, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse, ::grpc::protobuf::MessageLite, ::grpc::protobuf::MessageLite>(channel_.get(), rpcmethod_NaturalJoinTables_, context, request, response); -} - -void TableService::Stub::async::NaturalJoinTables(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::NaturalJoinTablesRequest* request, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse* response, std::function f) { - ::grpc::internal::CallbackUnaryCall< ::io::deephaven::proto::backplane::grpc::NaturalJoinTablesRequest, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse, ::grpc::protobuf::MessageLite, ::grpc::protobuf::MessageLite>(stub_->channel_.get(), stub_->rpcmethod_NaturalJoinTables_, context, request, response, std::move(f)); -} - -void TableService::Stub::async::NaturalJoinTables(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::NaturalJoinTablesRequest* request, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse* response, ::grpc::ClientUnaryReactor* reactor) { - ::grpc::internal::ClientCallbackUnaryFactory::Create< ::grpc::protobuf::MessageLite, ::grpc::protobuf::MessageLite>(stub_->channel_.get(), stub_->rpcmethod_NaturalJoinTables_, context, request, response, reactor); -} - -::grpc::ClientAsyncResponseReader< ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse>* TableService::Stub::PrepareAsyncNaturalJoinTablesRaw(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::NaturalJoinTablesRequest& request, ::grpc::CompletionQueue* cq) { - return ::grpc::internal::ClientAsyncResponseReaderHelper::Create< ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse, ::io::deephaven::proto::backplane::grpc::NaturalJoinTablesRequest, ::grpc::protobuf::MessageLite, ::grpc::protobuf::MessageLite>(channel_.get(), cq, rpcmethod_NaturalJoinTables_, context, request); -} - -::grpc::ClientAsyncResponseReader< ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse>* TableService::Stub::AsyncNaturalJoinTablesRaw(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::NaturalJoinTablesRequest& request, ::grpc::CompletionQueue* cq) { - auto* result = - this->PrepareAsyncNaturalJoinTablesRaw(context, request, cq); - result->StartCall(); - return result; -} - -::grpc::Status TableService::Stub::ExactJoinTables(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::ExactJoinTablesRequest& request, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse* response) { - return ::grpc::internal::BlockingUnaryCall< ::io::deephaven::proto::backplane::grpc::ExactJoinTablesRequest, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse, ::grpc::protobuf::MessageLite, ::grpc::protobuf::MessageLite>(channel_.get(), rpcmethod_ExactJoinTables_, context, request, response); -} - -void TableService::Stub::async::ExactJoinTables(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::ExactJoinTablesRequest* request, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse* response, std::function f) { - ::grpc::internal::CallbackUnaryCall< ::io::deephaven::proto::backplane::grpc::ExactJoinTablesRequest, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse, ::grpc::protobuf::MessageLite, ::grpc::protobuf::MessageLite>(stub_->channel_.get(), stub_->rpcmethod_ExactJoinTables_, context, request, response, std::move(f)); -} - -void TableService::Stub::async::ExactJoinTables(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::ExactJoinTablesRequest* request, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse* response, ::grpc::ClientUnaryReactor* reactor) { - ::grpc::internal::ClientCallbackUnaryFactory::Create< ::grpc::protobuf::MessageLite, ::grpc::protobuf::MessageLite>(stub_->channel_.get(), stub_->rpcmethod_ExactJoinTables_, context, request, response, reactor); -} - -::grpc::ClientAsyncResponseReader< ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse>* TableService::Stub::PrepareAsyncExactJoinTablesRaw(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::ExactJoinTablesRequest& request, ::grpc::CompletionQueue* cq) { - return ::grpc::internal::ClientAsyncResponseReaderHelper::Create< ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse, ::io::deephaven::proto::backplane::grpc::ExactJoinTablesRequest, ::grpc::protobuf::MessageLite, ::grpc::protobuf::MessageLite>(channel_.get(), cq, rpcmethod_ExactJoinTables_, context, request); -} - -::grpc::ClientAsyncResponseReader< ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse>* TableService::Stub::AsyncExactJoinTablesRaw(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::ExactJoinTablesRequest& request, ::grpc::CompletionQueue* cq) { - auto* result = - this->PrepareAsyncExactJoinTablesRaw(context, request, cq); - result->StartCall(); - return result; -} - -::grpc::Status TableService::Stub::LeftJoinTables(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::LeftJoinTablesRequest& request, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse* response) { - return ::grpc::internal::BlockingUnaryCall< ::io::deephaven::proto::backplane::grpc::LeftJoinTablesRequest, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse, ::grpc::protobuf::MessageLite, ::grpc::protobuf::MessageLite>(channel_.get(), rpcmethod_LeftJoinTables_, context, request, response); -} - -void TableService::Stub::async::LeftJoinTables(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::LeftJoinTablesRequest* request, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse* response, std::function f) { - ::grpc::internal::CallbackUnaryCall< ::io::deephaven::proto::backplane::grpc::LeftJoinTablesRequest, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse, ::grpc::protobuf::MessageLite, ::grpc::protobuf::MessageLite>(stub_->channel_.get(), stub_->rpcmethod_LeftJoinTables_, context, request, response, std::move(f)); -} - -void TableService::Stub::async::LeftJoinTables(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::LeftJoinTablesRequest* request, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse* response, ::grpc::ClientUnaryReactor* reactor) { - ::grpc::internal::ClientCallbackUnaryFactory::Create< ::grpc::protobuf::MessageLite, ::grpc::protobuf::MessageLite>(stub_->channel_.get(), stub_->rpcmethod_LeftJoinTables_, context, request, response, reactor); -} - -::grpc::ClientAsyncResponseReader< ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse>* TableService::Stub::PrepareAsyncLeftJoinTablesRaw(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::LeftJoinTablesRequest& request, ::grpc::CompletionQueue* cq) { - return ::grpc::internal::ClientAsyncResponseReaderHelper::Create< ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse, ::io::deephaven::proto::backplane::grpc::LeftJoinTablesRequest, ::grpc::protobuf::MessageLite, ::grpc::protobuf::MessageLite>(channel_.get(), cq, rpcmethod_LeftJoinTables_, context, request); -} - -::grpc::ClientAsyncResponseReader< ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse>* TableService::Stub::AsyncLeftJoinTablesRaw(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::LeftJoinTablesRequest& request, ::grpc::CompletionQueue* cq) { - auto* result = - this->PrepareAsyncLeftJoinTablesRaw(context, request, cq); - result->StartCall(); - return result; -} - -::grpc::Status TableService::Stub::AsOfJoinTables(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::AsOfJoinTablesRequest& request, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse* response) { - return ::grpc::internal::BlockingUnaryCall< ::io::deephaven::proto::backplane::grpc::AsOfJoinTablesRequest, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse, ::grpc::protobuf::MessageLite, ::grpc::protobuf::MessageLite>(channel_.get(), rpcmethod_AsOfJoinTables_, context, request, response); -} - -void TableService::Stub::async::AsOfJoinTables(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::AsOfJoinTablesRequest* request, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse* response, std::function f) { - ::grpc::internal::CallbackUnaryCall< ::io::deephaven::proto::backplane::grpc::AsOfJoinTablesRequest, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse, ::grpc::protobuf::MessageLite, ::grpc::protobuf::MessageLite>(stub_->channel_.get(), stub_->rpcmethod_AsOfJoinTables_, context, request, response, std::move(f)); -} - -void TableService::Stub::async::AsOfJoinTables(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::AsOfJoinTablesRequest* request, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse* response, ::grpc::ClientUnaryReactor* reactor) { - ::grpc::internal::ClientCallbackUnaryFactory::Create< ::grpc::protobuf::MessageLite, ::grpc::protobuf::MessageLite>(stub_->channel_.get(), stub_->rpcmethod_AsOfJoinTables_, context, request, response, reactor); -} - -::grpc::ClientAsyncResponseReader< ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse>* TableService::Stub::PrepareAsyncAsOfJoinTablesRaw(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::AsOfJoinTablesRequest& request, ::grpc::CompletionQueue* cq) { - return ::grpc::internal::ClientAsyncResponseReaderHelper::Create< ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse, ::io::deephaven::proto::backplane::grpc::AsOfJoinTablesRequest, ::grpc::protobuf::MessageLite, ::grpc::protobuf::MessageLite>(channel_.get(), cq, rpcmethod_AsOfJoinTables_, context, request); -} - -::grpc::ClientAsyncResponseReader< ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse>* TableService::Stub::AsyncAsOfJoinTablesRaw(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::AsOfJoinTablesRequest& request, ::grpc::CompletionQueue* cq) { - auto* result = - this->PrepareAsyncAsOfJoinTablesRaw(context, request, cq); - result->StartCall(); - return result; -} - -::grpc::Status TableService::Stub::AjTables(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::AjRajTablesRequest& request, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse* response) { - return ::grpc::internal::BlockingUnaryCall< ::io::deephaven::proto::backplane::grpc::AjRajTablesRequest, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse, ::grpc::protobuf::MessageLite, ::grpc::protobuf::MessageLite>(channel_.get(), rpcmethod_AjTables_, context, request, response); -} - -void TableService::Stub::async::AjTables(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::AjRajTablesRequest* request, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse* response, std::function f) { - ::grpc::internal::CallbackUnaryCall< ::io::deephaven::proto::backplane::grpc::AjRajTablesRequest, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse, ::grpc::protobuf::MessageLite, ::grpc::protobuf::MessageLite>(stub_->channel_.get(), stub_->rpcmethod_AjTables_, context, request, response, std::move(f)); -} - -void TableService::Stub::async::AjTables(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::AjRajTablesRequest* request, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse* response, ::grpc::ClientUnaryReactor* reactor) { - ::grpc::internal::ClientCallbackUnaryFactory::Create< ::grpc::protobuf::MessageLite, ::grpc::protobuf::MessageLite>(stub_->channel_.get(), stub_->rpcmethod_AjTables_, context, request, response, reactor); -} - -::grpc::ClientAsyncResponseReader< ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse>* TableService::Stub::PrepareAsyncAjTablesRaw(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::AjRajTablesRequest& request, ::grpc::CompletionQueue* cq) { - return ::grpc::internal::ClientAsyncResponseReaderHelper::Create< ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse, ::io::deephaven::proto::backplane::grpc::AjRajTablesRequest, ::grpc::protobuf::MessageLite, ::grpc::protobuf::MessageLite>(channel_.get(), cq, rpcmethod_AjTables_, context, request); -} - -::grpc::ClientAsyncResponseReader< ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse>* TableService::Stub::AsyncAjTablesRaw(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::AjRajTablesRequest& request, ::grpc::CompletionQueue* cq) { - auto* result = - this->PrepareAsyncAjTablesRaw(context, request, cq); - result->StartCall(); - return result; -} - -::grpc::Status TableService::Stub::RajTables(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::AjRajTablesRequest& request, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse* response) { - return ::grpc::internal::BlockingUnaryCall< ::io::deephaven::proto::backplane::grpc::AjRajTablesRequest, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse, ::grpc::protobuf::MessageLite, ::grpc::protobuf::MessageLite>(channel_.get(), rpcmethod_RajTables_, context, request, response); -} - -void TableService::Stub::async::RajTables(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::AjRajTablesRequest* request, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse* response, std::function f) { - ::grpc::internal::CallbackUnaryCall< ::io::deephaven::proto::backplane::grpc::AjRajTablesRequest, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse, ::grpc::protobuf::MessageLite, ::grpc::protobuf::MessageLite>(stub_->channel_.get(), stub_->rpcmethod_RajTables_, context, request, response, std::move(f)); -} - -void TableService::Stub::async::RajTables(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::AjRajTablesRequest* request, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse* response, ::grpc::ClientUnaryReactor* reactor) { - ::grpc::internal::ClientCallbackUnaryFactory::Create< ::grpc::protobuf::MessageLite, ::grpc::protobuf::MessageLite>(stub_->channel_.get(), stub_->rpcmethod_RajTables_, context, request, response, reactor); -} - -::grpc::ClientAsyncResponseReader< ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse>* TableService::Stub::PrepareAsyncRajTablesRaw(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::AjRajTablesRequest& request, ::grpc::CompletionQueue* cq) { - return ::grpc::internal::ClientAsyncResponseReaderHelper::Create< ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse, ::io::deephaven::proto::backplane::grpc::AjRajTablesRequest, ::grpc::protobuf::MessageLite, ::grpc::protobuf::MessageLite>(channel_.get(), cq, rpcmethod_RajTables_, context, request); -} - -::grpc::ClientAsyncResponseReader< ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse>* TableService::Stub::AsyncRajTablesRaw(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::AjRajTablesRequest& request, ::grpc::CompletionQueue* cq) { - auto* result = - this->PrepareAsyncRajTablesRaw(context, request, cq); - result->StartCall(); - return result; -} - -::grpc::Status TableService::Stub::MultiJoinTables(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::MultiJoinTablesRequest& request, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse* response) { - return ::grpc::internal::BlockingUnaryCall< ::io::deephaven::proto::backplane::grpc::MultiJoinTablesRequest, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse, ::grpc::protobuf::MessageLite, ::grpc::protobuf::MessageLite>(channel_.get(), rpcmethod_MultiJoinTables_, context, request, response); -} - -void TableService::Stub::async::MultiJoinTables(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::MultiJoinTablesRequest* request, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse* response, std::function f) { - ::grpc::internal::CallbackUnaryCall< ::io::deephaven::proto::backplane::grpc::MultiJoinTablesRequest, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse, ::grpc::protobuf::MessageLite, ::grpc::protobuf::MessageLite>(stub_->channel_.get(), stub_->rpcmethod_MultiJoinTables_, context, request, response, std::move(f)); -} - -void TableService::Stub::async::MultiJoinTables(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::MultiJoinTablesRequest* request, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse* response, ::grpc::ClientUnaryReactor* reactor) { - ::grpc::internal::ClientCallbackUnaryFactory::Create< ::grpc::protobuf::MessageLite, ::grpc::protobuf::MessageLite>(stub_->channel_.get(), stub_->rpcmethod_MultiJoinTables_, context, request, response, reactor); -} - -::grpc::ClientAsyncResponseReader< ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse>* TableService::Stub::PrepareAsyncMultiJoinTablesRaw(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::MultiJoinTablesRequest& request, ::grpc::CompletionQueue* cq) { - return ::grpc::internal::ClientAsyncResponseReaderHelper::Create< ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse, ::io::deephaven::proto::backplane::grpc::MultiJoinTablesRequest, ::grpc::protobuf::MessageLite, ::grpc::protobuf::MessageLite>(channel_.get(), cq, rpcmethod_MultiJoinTables_, context, request); -} - -::grpc::ClientAsyncResponseReader< ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse>* TableService::Stub::AsyncMultiJoinTablesRaw(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::MultiJoinTablesRequest& request, ::grpc::CompletionQueue* cq) { - auto* result = - this->PrepareAsyncMultiJoinTablesRaw(context, request, cq); - result->StartCall(); - return result; -} - -::grpc::Status TableService::Stub::RangeJoinTables(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::RangeJoinTablesRequest& request, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse* response) { - return ::grpc::internal::BlockingUnaryCall< ::io::deephaven::proto::backplane::grpc::RangeJoinTablesRequest, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse, ::grpc::protobuf::MessageLite, ::grpc::protobuf::MessageLite>(channel_.get(), rpcmethod_RangeJoinTables_, context, request, response); -} - -void TableService::Stub::async::RangeJoinTables(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::RangeJoinTablesRequest* request, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse* response, std::function f) { - ::grpc::internal::CallbackUnaryCall< ::io::deephaven::proto::backplane::grpc::RangeJoinTablesRequest, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse, ::grpc::protobuf::MessageLite, ::grpc::protobuf::MessageLite>(stub_->channel_.get(), stub_->rpcmethod_RangeJoinTables_, context, request, response, std::move(f)); -} - -void TableService::Stub::async::RangeJoinTables(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::RangeJoinTablesRequest* request, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse* response, ::grpc::ClientUnaryReactor* reactor) { - ::grpc::internal::ClientCallbackUnaryFactory::Create< ::grpc::protobuf::MessageLite, ::grpc::protobuf::MessageLite>(stub_->channel_.get(), stub_->rpcmethod_RangeJoinTables_, context, request, response, reactor); -} - -::grpc::ClientAsyncResponseReader< ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse>* TableService::Stub::PrepareAsyncRangeJoinTablesRaw(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::RangeJoinTablesRequest& request, ::grpc::CompletionQueue* cq) { - return ::grpc::internal::ClientAsyncResponseReaderHelper::Create< ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse, ::io::deephaven::proto::backplane::grpc::RangeJoinTablesRequest, ::grpc::protobuf::MessageLite, ::grpc::protobuf::MessageLite>(channel_.get(), cq, rpcmethod_RangeJoinTables_, context, request); -} - -::grpc::ClientAsyncResponseReader< ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse>* TableService::Stub::AsyncRangeJoinTablesRaw(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::RangeJoinTablesRequest& request, ::grpc::CompletionQueue* cq) { - auto* result = - this->PrepareAsyncRangeJoinTablesRaw(context, request, cq); - result->StartCall(); - return result; -} - -::grpc::Status TableService::Stub::ComboAggregate(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::ComboAggregateRequest& request, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse* response) { - return ::grpc::internal::BlockingUnaryCall< ::io::deephaven::proto::backplane::grpc::ComboAggregateRequest, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse, ::grpc::protobuf::MessageLite, ::grpc::protobuf::MessageLite>(channel_.get(), rpcmethod_ComboAggregate_, context, request, response); -} - -void TableService::Stub::async::ComboAggregate(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::ComboAggregateRequest* request, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse* response, std::function f) { - ::grpc::internal::CallbackUnaryCall< ::io::deephaven::proto::backplane::grpc::ComboAggregateRequest, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse, ::grpc::protobuf::MessageLite, ::grpc::protobuf::MessageLite>(stub_->channel_.get(), stub_->rpcmethod_ComboAggregate_, context, request, response, std::move(f)); -} - -void TableService::Stub::async::ComboAggregate(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::ComboAggregateRequest* request, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse* response, ::grpc::ClientUnaryReactor* reactor) { - ::grpc::internal::ClientCallbackUnaryFactory::Create< ::grpc::protobuf::MessageLite, ::grpc::protobuf::MessageLite>(stub_->channel_.get(), stub_->rpcmethod_ComboAggregate_, context, request, response, reactor); -} - -::grpc::ClientAsyncResponseReader< ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse>* TableService::Stub::PrepareAsyncComboAggregateRaw(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::ComboAggregateRequest& request, ::grpc::CompletionQueue* cq) { - return ::grpc::internal::ClientAsyncResponseReaderHelper::Create< ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse, ::io::deephaven::proto::backplane::grpc::ComboAggregateRequest, ::grpc::protobuf::MessageLite, ::grpc::protobuf::MessageLite>(channel_.get(), cq, rpcmethod_ComboAggregate_, context, request); -} - -::grpc::ClientAsyncResponseReader< ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse>* TableService::Stub::AsyncComboAggregateRaw(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::ComboAggregateRequest& request, ::grpc::CompletionQueue* cq) { - auto* result = - this->PrepareAsyncComboAggregateRaw(context, request, cq); - result->StartCall(); - return result; -} - -::grpc::Status TableService::Stub::AggregateAll(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::AggregateAllRequest& request, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse* response) { - return ::grpc::internal::BlockingUnaryCall< ::io::deephaven::proto::backplane::grpc::AggregateAllRequest, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse, ::grpc::protobuf::MessageLite, ::grpc::protobuf::MessageLite>(channel_.get(), rpcmethod_AggregateAll_, context, request, response); -} - -void TableService::Stub::async::AggregateAll(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::AggregateAllRequest* request, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse* response, std::function f) { - ::grpc::internal::CallbackUnaryCall< ::io::deephaven::proto::backplane::grpc::AggregateAllRequest, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse, ::grpc::protobuf::MessageLite, ::grpc::protobuf::MessageLite>(stub_->channel_.get(), stub_->rpcmethod_AggregateAll_, context, request, response, std::move(f)); -} - -void TableService::Stub::async::AggregateAll(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::AggregateAllRequest* request, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse* response, ::grpc::ClientUnaryReactor* reactor) { - ::grpc::internal::ClientCallbackUnaryFactory::Create< ::grpc::protobuf::MessageLite, ::grpc::protobuf::MessageLite>(stub_->channel_.get(), stub_->rpcmethod_AggregateAll_, context, request, response, reactor); -} - -::grpc::ClientAsyncResponseReader< ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse>* TableService::Stub::PrepareAsyncAggregateAllRaw(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::AggregateAllRequest& request, ::grpc::CompletionQueue* cq) { - return ::grpc::internal::ClientAsyncResponseReaderHelper::Create< ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse, ::io::deephaven::proto::backplane::grpc::AggregateAllRequest, ::grpc::protobuf::MessageLite, ::grpc::protobuf::MessageLite>(channel_.get(), cq, rpcmethod_AggregateAll_, context, request); -} - -::grpc::ClientAsyncResponseReader< ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse>* TableService::Stub::AsyncAggregateAllRaw(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::AggregateAllRequest& request, ::grpc::CompletionQueue* cq) { - auto* result = - this->PrepareAsyncAggregateAllRaw(context, request, cq); - result->StartCall(); - return result; -} - -::grpc::Status TableService::Stub::Aggregate(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::AggregateRequest& request, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse* response) { - return ::grpc::internal::BlockingUnaryCall< ::io::deephaven::proto::backplane::grpc::AggregateRequest, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse, ::grpc::protobuf::MessageLite, ::grpc::protobuf::MessageLite>(channel_.get(), rpcmethod_Aggregate_, context, request, response); -} - -void TableService::Stub::async::Aggregate(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::AggregateRequest* request, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse* response, std::function f) { - ::grpc::internal::CallbackUnaryCall< ::io::deephaven::proto::backplane::grpc::AggregateRequest, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse, ::grpc::protobuf::MessageLite, ::grpc::protobuf::MessageLite>(stub_->channel_.get(), stub_->rpcmethod_Aggregate_, context, request, response, std::move(f)); -} - -void TableService::Stub::async::Aggregate(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::AggregateRequest* request, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse* response, ::grpc::ClientUnaryReactor* reactor) { - ::grpc::internal::ClientCallbackUnaryFactory::Create< ::grpc::protobuf::MessageLite, ::grpc::protobuf::MessageLite>(stub_->channel_.get(), stub_->rpcmethod_Aggregate_, context, request, response, reactor); -} - -::grpc::ClientAsyncResponseReader< ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse>* TableService::Stub::PrepareAsyncAggregateRaw(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::AggregateRequest& request, ::grpc::CompletionQueue* cq) { - return ::grpc::internal::ClientAsyncResponseReaderHelper::Create< ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse, ::io::deephaven::proto::backplane::grpc::AggregateRequest, ::grpc::protobuf::MessageLite, ::grpc::protobuf::MessageLite>(channel_.get(), cq, rpcmethod_Aggregate_, context, request); -} - -::grpc::ClientAsyncResponseReader< ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse>* TableService::Stub::AsyncAggregateRaw(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::AggregateRequest& request, ::grpc::CompletionQueue* cq) { - auto* result = - this->PrepareAsyncAggregateRaw(context, request, cq); - result->StartCall(); - return result; -} - -::grpc::Status TableService::Stub::Snapshot(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::SnapshotTableRequest& request, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse* response) { - return ::grpc::internal::BlockingUnaryCall< ::io::deephaven::proto::backplane::grpc::SnapshotTableRequest, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse, ::grpc::protobuf::MessageLite, ::grpc::protobuf::MessageLite>(channel_.get(), rpcmethod_Snapshot_, context, request, response); -} - -void TableService::Stub::async::Snapshot(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::SnapshotTableRequest* request, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse* response, std::function f) { - ::grpc::internal::CallbackUnaryCall< ::io::deephaven::proto::backplane::grpc::SnapshotTableRequest, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse, ::grpc::protobuf::MessageLite, ::grpc::protobuf::MessageLite>(stub_->channel_.get(), stub_->rpcmethod_Snapshot_, context, request, response, std::move(f)); -} - -void TableService::Stub::async::Snapshot(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::SnapshotTableRequest* request, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse* response, ::grpc::ClientUnaryReactor* reactor) { - ::grpc::internal::ClientCallbackUnaryFactory::Create< ::grpc::protobuf::MessageLite, ::grpc::protobuf::MessageLite>(stub_->channel_.get(), stub_->rpcmethod_Snapshot_, context, request, response, reactor); -} - -::grpc::ClientAsyncResponseReader< ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse>* TableService::Stub::PrepareAsyncSnapshotRaw(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::SnapshotTableRequest& request, ::grpc::CompletionQueue* cq) { - return ::grpc::internal::ClientAsyncResponseReaderHelper::Create< ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse, ::io::deephaven::proto::backplane::grpc::SnapshotTableRequest, ::grpc::protobuf::MessageLite, ::grpc::protobuf::MessageLite>(channel_.get(), cq, rpcmethod_Snapshot_, context, request); -} - -::grpc::ClientAsyncResponseReader< ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse>* TableService::Stub::AsyncSnapshotRaw(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::SnapshotTableRequest& request, ::grpc::CompletionQueue* cq) { - auto* result = - this->PrepareAsyncSnapshotRaw(context, request, cq); - result->StartCall(); - return result; -} - -::grpc::Status TableService::Stub::SnapshotWhen(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::SnapshotWhenTableRequest& request, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse* response) { - return ::grpc::internal::BlockingUnaryCall< ::io::deephaven::proto::backplane::grpc::SnapshotWhenTableRequest, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse, ::grpc::protobuf::MessageLite, ::grpc::protobuf::MessageLite>(channel_.get(), rpcmethod_SnapshotWhen_, context, request, response); -} - -void TableService::Stub::async::SnapshotWhen(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::SnapshotWhenTableRequest* request, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse* response, std::function f) { - ::grpc::internal::CallbackUnaryCall< ::io::deephaven::proto::backplane::grpc::SnapshotWhenTableRequest, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse, ::grpc::protobuf::MessageLite, ::grpc::protobuf::MessageLite>(stub_->channel_.get(), stub_->rpcmethod_SnapshotWhen_, context, request, response, std::move(f)); -} - -void TableService::Stub::async::SnapshotWhen(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::SnapshotWhenTableRequest* request, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse* response, ::grpc::ClientUnaryReactor* reactor) { - ::grpc::internal::ClientCallbackUnaryFactory::Create< ::grpc::protobuf::MessageLite, ::grpc::protobuf::MessageLite>(stub_->channel_.get(), stub_->rpcmethod_SnapshotWhen_, context, request, response, reactor); -} - -::grpc::ClientAsyncResponseReader< ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse>* TableService::Stub::PrepareAsyncSnapshotWhenRaw(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::SnapshotWhenTableRequest& request, ::grpc::CompletionQueue* cq) { - return ::grpc::internal::ClientAsyncResponseReaderHelper::Create< ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse, ::io::deephaven::proto::backplane::grpc::SnapshotWhenTableRequest, ::grpc::protobuf::MessageLite, ::grpc::protobuf::MessageLite>(channel_.get(), cq, rpcmethod_SnapshotWhen_, context, request); -} - -::grpc::ClientAsyncResponseReader< ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse>* TableService::Stub::AsyncSnapshotWhenRaw(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::SnapshotWhenTableRequest& request, ::grpc::CompletionQueue* cq) { - auto* result = - this->PrepareAsyncSnapshotWhenRaw(context, request, cq); - result->StartCall(); - return result; -} - -::grpc::Status TableService::Stub::Flatten(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::FlattenRequest& request, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse* response) { - return ::grpc::internal::BlockingUnaryCall< ::io::deephaven::proto::backplane::grpc::FlattenRequest, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse, ::grpc::protobuf::MessageLite, ::grpc::protobuf::MessageLite>(channel_.get(), rpcmethod_Flatten_, context, request, response); -} - -void TableService::Stub::async::Flatten(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::FlattenRequest* request, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse* response, std::function f) { - ::grpc::internal::CallbackUnaryCall< ::io::deephaven::proto::backplane::grpc::FlattenRequest, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse, ::grpc::protobuf::MessageLite, ::grpc::protobuf::MessageLite>(stub_->channel_.get(), stub_->rpcmethod_Flatten_, context, request, response, std::move(f)); -} - -void TableService::Stub::async::Flatten(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::FlattenRequest* request, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse* response, ::grpc::ClientUnaryReactor* reactor) { - ::grpc::internal::ClientCallbackUnaryFactory::Create< ::grpc::protobuf::MessageLite, ::grpc::protobuf::MessageLite>(stub_->channel_.get(), stub_->rpcmethod_Flatten_, context, request, response, reactor); -} - -::grpc::ClientAsyncResponseReader< ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse>* TableService::Stub::PrepareAsyncFlattenRaw(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::FlattenRequest& request, ::grpc::CompletionQueue* cq) { - return ::grpc::internal::ClientAsyncResponseReaderHelper::Create< ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse, ::io::deephaven::proto::backplane::grpc::FlattenRequest, ::grpc::protobuf::MessageLite, ::grpc::protobuf::MessageLite>(channel_.get(), cq, rpcmethod_Flatten_, context, request); -} - -::grpc::ClientAsyncResponseReader< ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse>* TableService::Stub::AsyncFlattenRaw(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::FlattenRequest& request, ::grpc::CompletionQueue* cq) { - auto* result = - this->PrepareAsyncFlattenRaw(context, request, cq); - result->StartCall(); - return result; -} - -::grpc::Status TableService::Stub::RunChartDownsample(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::RunChartDownsampleRequest& request, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse* response) { - return ::grpc::internal::BlockingUnaryCall< ::io::deephaven::proto::backplane::grpc::RunChartDownsampleRequest, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse, ::grpc::protobuf::MessageLite, ::grpc::protobuf::MessageLite>(channel_.get(), rpcmethod_RunChartDownsample_, context, request, response); -} - -void TableService::Stub::async::RunChartDownsample(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::RunChartDownsampleRequest* request, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse* response, std::function f) { - ::grpc::internal::CallbackUnaryCall< ::io::deephaven::proto::backplane::grpc::RunChartDownsampleRequest, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse, ::grpc::protobuf::MessageLite, ::grpc::protobuf::MessageLite>(stub_->channel_.get(), stub_->rpcmethod_RunChartDownsample_, context, request, response, std::move(f)); -} - -void TableService::Stub::async::RunChartDownsample(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::RunChartDownsampleRequest* request, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse* response, ::grpc::ClientUnaryReactor* reactor) { - ::grpc::internal::ClientCallbackUnaryFactory::Create< ::grpc::protobuf::MessageLite, ::grpc::protobuf::MessageLite>(stub_->channel_.get(), stub_->rpcmethod_RunChartDownsample_, context, request, response, reactor); -} - -::grpc::ClientAsyncResponseReader< ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse>* TableService::Stub::PrepareAsyncRunChartDownsampleRaw(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::RunChartDownsampleRequest& request, ::grpc::CompletionQueue* cq) { - return ::grpc::internal::ClientAsyncResponseReaderHelper::Create< ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse, ::io::deephaven::proto::backplane::grpc::RunChartDownsampleRequest, ::grpc::protobuf::MessageLite, ::grpc::protobuf::MessageLite>(channel_.get(), cq, rpcmethod_RunChartDownsample_, context, request); -} - -::grpc::ClientAsyncResponseReader< ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse>* TableService::Stub::AsyncRunChartDownsampleRaw(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::RunChartDownsampleRequest& request, ::grpc::CompletionQueue* cq) { - auto* result = - this->PrepareAsyncRunChartDownsampleRaw(context, request, cq); - result->StartCall(); - return result; -} - -::grpc::Status TableService::Stub::CreateInputTable(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::CreateInputTableRequest& request, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse* response) { - return ::grpc::internal::BlockingUnaryCall< ::io::deephaven::proto::backplane::grpc::CreateInputTableRequest, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse, ::grpc::protobuf::MessageLite, ::grpc::protobuf::MessageLite>(channel_.get(), rpcmethod_CreateInputTable_, context, request, response); -} - -void TableService::Stub::async::CreateInputTable(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::CreateInputTableRequest* request, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse* response, std::function f) { - ::grpc::internal::CallbackUnaryCall< ::io::deephaven::proto::backplane::grpc::CreateInputTableRequest, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse, ::grpc::protobuf::MessageLite, ::grpc::protobuf::MessageLite>(stub_->channel_.get(), stub_->rpcmethod_CreateInputTable_, context, request, response, std::move(f)); -} - -void TableService::Stub::async::CreateInputTable(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::CreateInputTableRequest* request, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse* response, ::grpc::ClientUnaryReactor* reactor) { - ::grpc::internal::ClientCallbackUnaryFactory::Create< ::grpc::protobuf::MessageLite, ::grpc::protobuf::MessageLite>(stub_->channel_.get(), stub_->rpcmethod_CreateInputTable_, context, request, response, reactor); -} - -::grpc::ClientAsyncResponseReader< ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse>* TableService::Stub::PrepareAsyncCreateInputTableRaw(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::CreateInputTableRequest& request, ::grpc::CompletionQueue* cq) { - return ::grpc::internal::ClientAsyncResponseReaderHelper::Create< ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse, ::io::deephaven::proto::backplane::grpc::CreateInputTableRequest, ::grpc::protobuf::MessageLite, ::grpc::protobuf::MessageLite>(channel_.get(), cq, rpcmethod_CreateInputTable_, context, request); -} - -::grpc::ClientAsyncResponseReader< ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse>* TableService::Stub::AsyncCreateInputTableRaw(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::CreateInputTableRequest& request, ::grpc::CompletionQueue* cq) { - auto* result = - this->PrepareAsyncCreateInputTableRaw(context, request, cq); - result->StartCall(); - return result; -} - -::grpc::Status TableService::Stub::WhereIn(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::WhereInRequest& request, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse* response) { - return ::grpc::internal::BlockingUnaryCall< ::io::deephaven::proto::backplane::grpc::WhereInRequest, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse, ::grpc::protobuf::MessageLite, ::grpc::protobuf::MessageLite>(channel_.get(), rpcmethod_WhereIn_, context, request, response); -} - -void TableService::Stub::async::WhereIn(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::WhereInRequest* request, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse* response, std::function f) { - ::grpc::internal::CallbackUnaryCall< ::io::deephaven::proto::backplane::grpc::WhereInRequest, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse, ::grpc::protobuf::MessageLite, ::grpc::protobuf::MessageLite>(stub_->channel_.get(), stub_->rpcmethod_WhereIn_, context, request, response, std::move(f)); -} - -void TableService::Stub::async::WhereIn(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::WhereInRequest* request, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse* response, ::grpc::ClientUnaryReactor* reactor) { - ::grpc::internal::ClientCallbackUnaryFactory::Create< ::grpc::protobuf::MessageLite, ::grpc::protobuf::MessageLite>(stub_->channel_.get(), stub_->rpcmethod_WhereIn_, context, request, response, reactor); -} - -::grpc::ClientAsyncResponseReader< ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse>* TableService::Stub::PrepareAsyncWhereInRaw(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::WhereInRequest& request, ::grpc::CompletionQueue* cq) { - return ::grpc::internal::ClientAsyncResponseReaderHelper::Create< ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse, ::io::deephaven::proto::backplane::grpc::WhereInRequest, ::grpc::protobuf::MessageLite, ::grpc::protobuf::MessageLite>(channel_.get(), cq, rpcmethod_WhereIn_, context, request); -} - -::grpc::ClientAsyncResponseReader< ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse>* TableService::Stub::AsyncWhereInRaw(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::WhereInRequest& request, ::grpc::CompletionQueue* cq) { - auto* result = - this->PrepareAsyncWhereInRaw(context, request, cq); - result->StartCall(); - return result; -} - -::grpc::ClientReader< ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse>* TableService::Stub::BatchRaw(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::BatchTableRequest& request) { - return ::grpc::internal::ClientReaderFactory< ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse>::Create(channel_.get(), rpcmethod_Batch_, context, request); -} - -void TableService::Stub::async::Batch(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::BatchTableRequest* request, ::grpc::ClientReadReactor< ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse>* reactor) { - ::grpc::internal::ClientCallbackReaderFactory< ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse>::Create(stub_->channel_.get(), stub_->rpcmethod_Batch_, context, request, reactor); -} - -::grpc::ClientAsyncReader< ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse>* TableService::Stub::AsyncBatchRaw(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::BatchTableRequest& request, ::grpc::CompletionQueue* cq, void* tag) { - return ::grpc::internal::ClientAsyncReaderFactory< ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse>::Create(channel_.get(), cq, rpcmethod_Batch_, context, request, true, tag); -} - -::grpc::ClientAsyncReader< ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse>* TableService::Stub::PrepareAsyncBatchRaw(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::BatchTableRequest& request, ::grpc::CompletionQueue* cq) { - return ::grpc::internal::ClientAsyncReaderFactory< ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse>::Create(channel_.get(), cq, rpcmethod_Batch_, context, request, false, nullptr); -} - -::grpc::ClientReader< ::io::deephaven::proto::backplane::grpc::ExportedTableUpdateMessage>* TableService::Stub::ExportedTableUpdatesRaw(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::ExportedTableUpdatesRequest& request) { - return ::grpc::internal::ClientReaderFactory< ::io::deephaven::proto::backplane::grpc::ExportedTableUpdateMessage>::Create(channel_.get(), rpcmethod_ExportedTableUpdates_, context, request); -} - -void TableService::Stub::async::ExportedTableUpdates(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::ExportedTableUpdatesRequest* request, ::grpc::ClientReadReactor< ::io::deephaven::proto::backplane::grpc::ExportedTableUpdateMessage>* reactor) { - ::grpc::internal::ClientCallbackReaderFactory< ::io::deephaven::proto::backplane::grpc::ExportedTableUpdateMessage>::Create(stub_->channel_.get(), stub_->rpcmethod_ExportedTableUpdates_, context, request, reactor); -} - -::grpc::ClientAsyncReader< ::io::deephaven::proto::backplane::grpc::ExportedTableUpdateMessage>* TableService::Stub::AsyncExportedTableUpdatesRaw(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::ExportedTableUpdatesRequest& request, ::grpc::CompletionQueue* cq, void* tag) { - return ::grpc::internal::ClientAsyncReaderFactory< ::io::deephaven::proto::backplane::grpc::ExportedTableUpdateMessage>::Create(channel_.get(), cq, rpcmethod_ExportedTableUpdates_, context, request, true, tag); -} - -::grpc::ClientAsyncReader< ::io::deephaven::proto::backplane::grpc::ExportedTableUpdateMessage>* TableService::Stub::PrepareAsyncExportedTableUpdatesRaw(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::ExportedTableUpdatesRequest& request, ::grpc::CompletionQueue* cq) { - return ::grpc::internal::ClientAsyncReaderFactory< ::io::deephaven::proto::backplane::grpc::ExportedTableUpdateMessage>::Create(channel_.get(), cq, rpcmethod_ExportedTableUpdates_, context, request, false, nullptr); -} - -::grpc::Status TableService::Stub::SeekRow(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::SeekRowRequest& request, ::io::deephaven::proto::backplane::grpc::SeekRowResponse* response) { - return ::grpc::internal::BlockingUnaryCall< ::io::deephaven::proto::backplane::grpc::SeekRowRequest, ::io::deephaven::proto::backplane::grpc::SeekRowResponse, ::grpc::protobuf::MessageLite, ::grpc::protobuf::MessageLite>(channel_.get(), rpcmethod_SeekRow_, context, request, response); -} - -void TableService::Stub::async::SeekRow(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::SeekRowRequest* request, ::io::deephaven::proto::backplane::grpc::SeekRowResponse* response, std::function f) { - ::grpc::internal::CallbackUnaryCall< ::io::deephaven::proto::backplane::grpc::SeekRowRequest, ::io::deephaven::proto::backplane::grpc::SeekRowResponse, ::grpc::protobuf::MessageLite, ::grpc::protobuf::MessageLite>(stub_->channel_.get(), stub_->rpcmethod_SeekRow_, context, request, response, std::move(f)); -} - -void TableService::Stub::async::SeekRow(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::SeekRowRequest* request, ::io::deephaven::proto::backplane::grpc::SeekRowResponse* response, ::grpc::ClientUnaryReactor* reactor) { - ::grpc::internal::ClientCallbackUnaryFactory::Create< ::grpc::protobuf::MessageLite, ::grpc::protobuf::MessageLite>(stub_->channel_.get(), stub_->rpcmethod_SeekRow_, context, request, response, reactor); -} - -::grpc::ClientAsyncResponseReader< ::io::deephaven::proto::backplane::grpc::SeekRowResponse>* TableService::Stub::PrepareAsyncSeekRowRaw(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::SeekRowRequest& request, ::grpc::CompletionQueue* cq) { - return ::grpc::internal::ClientAsyncResponseReaderHelper::Create< ::io::deephaven::proto::backplane::grpc::SeekRowResponse, ::io::deephaven::proto::backplane::grpc::SeekRowRequest, ::grpc::protobuf::MessageLite, ::grpc::protobuf::MessageLite>(channel_.get(), cq, rpcmethod_SeekRow_, context, request); -} - -::grpc::ClientAsyncResponseReader< ::io::deephaven::proto::backplane::grpc::SeekRowResponse>* TableService::Stub::AsyncSeekRowRaw(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::SeekRowRequest& request, ::grpc::CompletionQueue* cq) { - auto* result = - this->PrepareAsyncSeekRowRaw(context, request, cq); - result->StartCall(); - return result; -} - -::grpc::Status TableService::Stub::MetaTable(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::MetaTableRequest& request, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse* response) { - return ::grpc::internal::BlockingUnaryCall< ::io::deephaven::proto::backplane::grpc::MetaTableRequest, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse, ::grpc::protobuf::MessageLite, ::grpc::protobuf::MessageLite>(channel_.get(), rpcmethod_MetaTable_, context, request, response); -} - -void TableService::Stub::async::MetaTable(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::MetaTableRequest* request, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse* response, std::function f) { - ::grpc::internal::CallbackUnaryCall< ::io::deephaven::proto::backplane::grpc::MetaTableRequest, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse, ::grpc::protobuf::MessageLite, ::grpc::protobuf::MessageLite>(stub_->channel_.get(), stub_->rpcmethod_MetaTable_, context, request, response, std::move(f)); -} - -void TableService::Stub::async::MetaTable(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::MetaTableRequest* request, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse* response, ::grpc::ClientUnaryReactor* reactor) { - ::grpc::internal::ClientCallbackUnaryFactory::Create< ::grpc::protobuf::MessageLite, ::grpc::protobuf::MessageLite>(stub_->channel_.get(), stub_->rpcmethod_MetaTable_, context, request, response, reactor); -} - -::grpc::ClientAsyncResponseReader< ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse>* TableService::Stub::PrepareAsyncMetaTableRaw(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::MetaTableRequest& request, ::grpc::CompletionQueue* cq) { - return ::grpc::internal::ClientAsyncResponseReaderHelper::Create< ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse, ::io::deephaven::proto::backplane::grpc::MetaTableRequest, ::grpc::protobuf::MessageLite, ::grpc::protobuf::MessageLite>(channel_.get(), cq, rpcmethod_MetaTable_, context, request); -} - -::grpc::ClientAsyncResponseReader< ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse>* TableService::Stub::AsyncMetaTableRaw(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::MetaTableRequest& request, ::grpc::CompletionQueue* cq) { - auto* result = - this->PrepareAsyncMetaTableRaw(context, request, cq); - result->StartCall(); - return result; -} - -::grpc::Status TableService::Stub::ComputeColumnStatistics(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::ColumnStatisticsRequest& request, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse* response) { - return ::grpc::internal::BlockingUnaryCall< ::io::deephaven::proto::backplane::grpc::ColumnStatisticsRequest, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse, ::grpc::protobuf::MessageLite, ::grpc::protobuf::MessageLite>(channel_.get(), rpcmethod_ComputeColumnStatistics_, context, request, response); -} - -void TableService::Stub::async::ComputeColumnStatistics(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::ColumnStatisticsRequest* request, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse* response, std::function f) { - ::grpc::internal::CallbackUnaryCall< ::io::deephaven::proto::backplane::grpc::ColumnStatisticsRequest, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse, ::grpc::protobuf::MessageLite, ::grpc::protobuf::MessageLite>(stub_->channel_.get(), stub_->rpcmethod_ComputeColumnStatistics_, context, request, response, std::move(f)); -} - -void TableService::Stub::async::ComputeColumnStatistics(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::ColumnStatisticsRequest* request, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse* response, ::grpc::ClientUnaryReactor* reactor) { - ::grpc::internal::ClientCallbackUnaryFactory::Create< ::grpc::protobuf::MessageLite, ::grpc::protobuf::MessageLite>(stub_->channel_.get(), stub_->rpcmethod_ComputeColumnStatistics_, context, request, response, reactor); -} - -::grpc::ClientAsyncResponseReader< ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse>* TableService::Stub::PrepareAsyncComputeColumnStatisticsRaw(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::ColumnStatisticsRequest& request, ::grpc::CompletionQueue* cq) { - return ::grpc::internal::ClientAsyncResponseReaderHelper::Create< ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse, ::io::deephaven::proto::backplane::grpc::ColumnStatisticsRequest, ::grpc::protobuf::MessageLite, ::grpc::protobuf::MessageLite>(channel_.get(), cq, rpcmethod_ComputeColumnStatistics_, context, request); -} - -::grpc::ClientAsyncResponseReader< ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse>* TableService::Stub::AsyncComputeColumnStatisticsRaw(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::ColumnStatisticsRequest& request, ::grpc::CompletionQueue* cq) { - auto* result = - this->PrepareAsyncComputeColumnStatisticsRaw(context, request, cq); - result->StartCall(); - return result; -} - -TableService::Service::Service() { - AddMethod(new ::grpc::internal::RpcServiceMethod( - TableService_method_names[0], - ::grpc::internal::RpcMethod::NORMAL_RPC, - new ::grpc::internal::RpcMethodHandler< TableService::Service, ::io::deephaven::proto::backplane::grpc::Ticket, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse, ::grpc::protobuf::MessageLite, ::grpc::protobuf::MessageLite>( - [](TableService::Service* service, - ::grpc::ServerContext* ctx, - const ::io::deephaven::proto::backplane::grpc::Ticket* req, - ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse* resp) { - return service->GetExportedTableCreationResponse(ctx, req, resp); - }, this))); - AddMethod(new ::grpc::internal::RpcServiceMethod( - TableService_method_names[1], - ::grpc::internal::RpcMethod::NORMAL_RPC, - new ::grpc::internal::RpcMethodHandler< TableService::Service, ::io::deephaven::proto::backplane::grpc::FetchTableRequest, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse, ::grpc::protobuf::MessageLite, ::grpc::protobuf::MessageLite>( - [](TableService::Service* service, - ::grpc::ServerContext* ctx, - const ::io::deephaven::proto::backplane::grpc::FetchTableRequest* req, - ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse* resp) { - return service->FetchTable(ctx, req, resp); - }, this))); - AddMethod(new ::grpc::internal::RpcServiceMethod( - TableService_method_names[2], - ::grpc::internal::RpcMethod::NORMAL_RPC, - new ::grpc::internal::RpcMethodHandler< TableService::Service, ::io::deephaven::proto::backplane::grpc::ApplyPreviewColumnsRequest, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse, ::grpc::protobuf::MessageLite, ::grpc::protobuf::MessageLite>( - [](TableService::Service* service, - ::grpc::ServerContext* ctx, - const ::io::deephaven::proto::backplane::grpc::ApplyPreviewColumnsRequest* req, - ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse* resp) { - return service->ApplyPreviewColumns(ctx, req, resp); - }, this))); - AddMethod(new ::grpc::internal::RpcServiceMethod( - TableService_method_names[3], - ::grpc::internal::RpcMethod::NORMAL_RPC, - new ::grpc::internal::RpcMethodHandler< TableService::Service, ::io::deephaven::proto::backplane::grpc::EmptyTableRequest, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse, ::grpc::protobuf::MessageLite, ::grpc::protobuf::MessageLite>( - [](TableService::Service* service, - ::grpc::ServerContext* ctx, - const ::io::deephaven::proto::backplane::grpc::EmptyTableRequest* req, - ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse* resp) { - return service->EmptyTable(ctx, req, resp); - }, this))); - AddMethod(new ::grpc::internal::RpcServiceMethod( - TableService_method_names[4], - ::grpc::internal::RpcMethod::NORMAL_RPC, - new ::grpc::internal::RpcMethodHandler< TableService::Service, ::io::deephaven::proto::backplane::grpc::TimeTableRequest, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse, ::grpc::protobuf::MessageLite, ::grpc::protobuf::MessageLite>( - [](TableService::Service* service, - ::grpc::ServerContext* ctx, - const ::io::deephaven::proto::backplane::grpc::TimeTableRequest* req, - ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse* resp) { - return service->TimeTable(ctx, req, resp); - }, this))); - AddMethod(new ::grpc::internal::RpcServiceMethod( - TableService_method_names[5], - ::grpc::internal::RpcMethod::NORMAL_RPC, - new ::grpc::internal::RpcMethodHandler< TableService::Service, ::io::deephaven::proto::backplane::grpc::DropColumnsRequest, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse, ::grpc::protobuf::MessageLite, ::grpc::protobuf::MessageLite>( - [](TableService::Service* service, - ::grpc::ServerContext* ctx, - const ::io::deephaven::proto::backplane::grpc::DropColumnsRequest* req, - ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse* resp) { - return service->DropColumns(ctx, req, resp); - }, this))); - AddMethod(new ::grpc::internal::RpcServiceMethod( - TableService_method_names[6], - ::grpc::internal::RpcMethod::NORMAL_RPC, - new ::grpc::internal::RpcMethodHandler< TableService::Service, ::io::deephaven::proto::backplane::grpc::SelectOrUpdateRequest, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse, ::grpc::protobuf::MessageLite, ::grpc::protobuf::MessageLite>( - [](TableService::Service* service, - ::grpc::ServerContext* ctx, - const ::io::deephaven::proto::backplane::grpc::SelectOrUpdateRequest* req, - ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse* resp) { - return service->Update(ctx, req, resp); - }, this))); - AddMethod(new ::grpc::internal::RpcServiceMethod( - TableService_method_names[7], - ::grpc::internal::RpcMethod::NORMAL_RPC, - new ::grpc::internal::RpcMethodHandler< TableService::Service, ::io::deephaven::proto::backplane::grpc::SelectOrUpdateRequest, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse, ::grpc::protobuf::MessageLite, ::grpc::protobuf::MessageLite>( - [](TableService::Service* service, - ::grpc::ServerContext* ctx, - const ::io::deephaven::proto::backplane::grpc::SelectOrUpdateRequest* req, - ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse* resp) { - return service->LazyUpdate(ctx, req, resp); - }, this))); - AddMethod(new ::grpc::internal::RpcServiceMethod( - TableService_method_names[8], - ::grpc::internal::RpcMethod::NORMAL_RPC, - new ::grpc::internal::RpcMethodHandler< TableService::Service, ::io::deephaven::proto::backplane::grpc::SelectOrUpdateRequest, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse, ::grpc::protobuf::MessageLite, ::grpc::protobuf::MessageLite>( - [](TableService::Service* service, - ::grpc::ServerContext* ctx, - const ::io::deephaven::proto::backplane::grpc::SelectOrUpdateRequest* req, - ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse* resp) { - return service->View(ctx, req, resp); - }, this))); - AddMethod(new ::grpc::internal::RpcServiceMethod( - TableService_method_names[9], - ::grpc::internal::RpcMethod::NORMAL_RPC, - new ::grpc::internal::RpcMethodHandler< TableService::Service, ::io::deephaven::proto::backplane::grpc::SelectOrUpdateRequest, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse, ::grpc::protobuf::MessageLite, ::grpc::protobuf::MessageLite>( - [](TableService::Service* service, - ::grpc::ServerContext* ctx, - const ::io::deephaven::proto::backplane::grpc::SelectOrUpdateRequest* req, - ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse* resp) { - return service->UpdateView(ctx, req, resp); - }, this))); - AddMethod(new ::grpc::internal::RpcServiceMethod( - TableService_method_names[10], - ::grpc::internal::RpcMethod::NORMAL_RPC, - new ::grpc::internal::RpcMethodHandler< TableService::Service, ::io::deephaven::proto::backplane::grpc::SelectOrUpdateRequest, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse, ::grpc::protobuf::MessageLite, ::grpc::protobuf::MessageLite>( - [](TableService::Service* service, - ::grpc::ServerContext* ctx, - const ::io::deephaven::proto::backplane::grpc::SelectOrUpdateRequest* req, - ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse* resp) { - return service->Select(ctx, req, resp); - }, this))); - AddMethod(new ::grpc::internal::RpcServiceMethod( - TableService_method_names[11], - ::grpc::internal::RpcMethod::NORMAL_RPC, - new ::grpc::internal::RpcMethodHandler< TableService::Service, ::io::deephaven::proto::backplane::grpc::UpdateByRequest, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse, ::grpc::protobuf::MessageLite, ::grpc::protobuf::MessageLite>( - [](TableService::Service* service, - ::grpc::ServerContext* ctx, - const ::io::deephaven::proto::backplane::grpc::UpdateByRequest* req, - ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse* resp) { - return service->UpdateBy(ctx, req, resp); - }, this))); - AddMethod(new ::grpc::internal::RpcServiceMethod( - TableService_method_names[12], - ::grpc::internal::RpcMethod::NORMAL_RPC, - new ::grpc::internal::RpcMethodHandler< TableService::Service, ::io::deephaven::proto::backplane::grpc::SelectDistinctRequest, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse, ::grpc::protobuf::MessageLite, ::grpc::protobuf::MessageLite>( - [](TableService::Service* service, - ::grpc::ServerContext* ctx, - const ::io::deephaven::proto::backplane::grpc::SelectDistinctRequest* req, - ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse* resp) { - return service->SelectDistinct(ctx, req, resp); - }, this))); - AddMethod(new ::grpc::internal::RpcServiceMethod( - TableService_method_names[13], - ::grpc::internal::RpcMethod::NORMAL_RPC, - new ::grpc::internal::RpcMethodHandler< TableService::Service, ::io::deephaven::proto::backplane::grpc::FilterTableRequest, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse, ::grpc::protobuf::MessageLite, ::grpc::protobuf::MessageLite>( - [](TableService::Service* service, - ::grpc::ServerContext* ctx, - const ::io::deephaven::proto::backplane::grpc::FilterTableRequest* req, - ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse* resp) { - return service->Filter(ctx, req, resp); - }, this))); - AddMethod(new ::grpc::internal::RpcServiceMethod( - TableService_method_names[14], - ::grpc::internal::RpcMethod::NORMAL_RPC, - new ::grpc::internal::RpcMethodHandler< TableService::Service, ::io::deephaven::proto::backplane::grpc::UnstructuredFilterTableRequest, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse, ::grpc::protobuf::MessageLite, ::grpc::protobuf::MessageLite>( - [](TableService::Service* service, - ::grpc::ServerContext* ctx, - const ::io::deephaven::proto::backplane::grpc::UnstructuredFilterTableRequest* req, - ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse* resp) { - return service->UnstructuredFilter(ctx, req, resp); - }, this))); - AddMethod(new ::grpc::internal::RpcServiceMethod( - TableService_method_names[15], - ::grpc::internal::RpcMethod::NORMAL_RPC, - new ::grpc::internal::RpcMethodHandler< TableService::Service, ::io::deephaven::proto::backplane::grpc::SortTableRequest, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse, ::grpc::protobuf::MessageLite, ::grpc::protobuf::MessageLite>( - [](TableService::Service* service, - ::grpc::ServerContext* ctx, - const ::io::deephaven::proto::backplane::grpc::SortTableRequest* req, - ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse* resp) { - return service->Sort(ctx, req, resp); - }, this))); - AddMethod(new ::grpc::internal::RpcServiceMethod( - TableService_method_names[16], - ::grpc::internal::RpcMethod::NORMAL_RPC, - new ::grpc::internal::RpcMethodHandler< TableService::Service, ::io::deephaven::proto::backplane::grpc::HeadOrTailRequest, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse, ::grpc::protobuf::MessageLite, ::grpc::protobuf::MessageLite>( - [](TableService::Service* service, - ::grpc::ServerContext* ctx, - const ::io::deephaven::proto::backplane::grpc::HeadOrTailRequest* req, - ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse* resp) { - return service->Head(ctx, req, resp); - }, this))); - AddMethod(new ::grpc::internal::RpcServiceMethod( - TableService_method_names[17], - ::grpc::internal::RpcMethod::NORMAL_RPC, - new ::grpc::internal::RpcMethodHandler< TableService::Service, ::io::deephaven::proto::backplane::grpc::HeadOrTailRequest, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse, ::grpc::protobuf::MessageLite, ::grpc::protobuf::MessageLite>( - [](TableService::Service* service, - ::grpc::ServerContext* ctx, - const ::io::deephaven::proto::backplane::grpc::HeadOrTailRequest* req, - ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse* resp) { - return service->Tail(ctx, req, resp); - }, this))); - AddMethod(new ::grpc::internal::RpcServiceMethod( - TableService_method_names[18], - ::grpc::internal::RpcMethod::NORMAL_RPC, - new ::grpc::internal::RpcMethodHandler< TableService::Service, ::io::deephaven::proto::backplane::grpc::HeadOrTailByRequest, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse, ::grpc::protobuf::MessageLite, ::grpc::protobuf::MessageLite>( - [](TableService::Service* service, - ::grpc::ServerContext* ctx, - const ::io::deephaven::proto::backplane::grpc::HeadOrTailByRequest* req, - ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse* resp) { - return service->HeadBy(ctx, req, resp); - }, this))); - AddMethod(new ::grpc::internal::RpcServiceMethod( - TableService_method_names[19], - ::grpc::internal::RpcMethod::NORMAL_RPC, - new ::grpc::internal::RpcMethodHandler< TableService::Service, ::io::deephaven::proto::backplane::grpc::HeadOrTailByRequest, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse, ::grpc::protobuf::MessageLite, ::grpc::protobuf::MessageLite>( - [](TableService::Service* service, - ::grpc::ServerContext* ctx, - const ::io::deephaven::proto::backplane::grpc::HeadOrTailByRequest* req, - ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse* resp) { - return service->TailBy(ctx, req, resp); - }, this))); - AddMethod(new ::grpc::internal::RpcServiceMethod( - TableService_method_names[20], - ::grpc::internal::RpcMethod::NORMAL_RPC, - new ::grpc::internal::RpcMethodHandler< TableService::Service, ::io::deephaven::proto::backplane::grpc::UngroupRequest, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse, ::grpc::protobuf::MessageLite, ::grpc::protobuf::MessageLite>( - [](TableService::Service* service, - ::grpc::ServerContext* ctx, - const ::io::deephaven::proto::backplane::grpc::UngroupRequest* req, - ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse* resp) { - return service->Ungroup(ctx, req, resp); - }, this))); - AddMethod(new ::grpc::internal::RpcServiceMethod( - TableService_method_names[21], - ::grpc::internal::RpcMethod::NORMAL_RPC, - new ::grpc::internal::RpcMethodHandler< TableService::Service, ::io::deephaven::proto::backplane::grpc::MergeTablesRequest, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse, ::grpc::protobuf::MessageLite, ::grpc::protobuf::MessageLite>( - [](TableService::Service* service, - ::grpc::ServerContext* ctx, - const ::io::deephaven::proto::backplane::grpc::MergeTablesRequest* req, - ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse* resp) { - return service->MergeTables(ctx, req, resp); - }, this))); - AddMethod(new ::grpc::internal::RpcServiceMethod( - TableService_method_names[22], - ::grpc::internal::RpcMethod::NORMAL_RPC, - new ::grpc::internal::RpcMethodHandler< TableService::Service, ::io::deephaven::proto::backplane::grpc::CrossJoinTablesRequest, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse, ::grpc::protobuf::MessageLite, ::grpc::protobuf::MessageLite>( - [](TableService::Service* service, - ::grpc::ServerContext* ctx, - const ::io::deephaven::proto::backplane::grpc::CrossJoinTablesRequest* req, - ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse* resp) { - return service->CrossJoinTables(ctx, req, resp); - }, this))); - AddMethod(new ::grpc::internal::RpcServiceMethod( - TableService_method_names[23], - ::grpc::internal::RpcMethod::NORMAL_RPC, - new ::grpc::internal::RpcMethodHandler< TableService::Service, ::io::deephaven::proto::backplane::grpc::NaturalJoinTablesRequest, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse, ::grpc::protobuf::MessageLite, ::grpc::protobuf::MessageLite>( - [](TableService::Service* service, - ::grpc::ServerContext* ctx, - const ::io::deephaven::proto::backplane::grpc::NaturalJoinTablesRequest* req, - ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse* resp) { - return service->NaturalJoinTables(ctx, req, resp); - }, this))); - AddMethod(new ::grpc::internal::RpcServiceMethod( - TableService_method_names[24], - ::grpc::internal::RpcMethod::NORMAL_RPC, - new ::grpc::internal::RpcMethodHandler< TableService::Service, ::io::deephaven::proto::backplane::grpc::ExactJoinTablesRequest, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse, ::grpc::protobuf::MessageLite, ::grpc::protobuf::MessageLite>( - [](TableService::Service* service, - ::grpc::ServerContext* ctx, - const ::io::deephaven::proto::backplane::grpc::ExactJoinTablesRequest* req, - ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse* resp) { - return service->ExactJoinTables(ctx, req, resp); - }, this))); - AddMethod(new ::grpc::internal::RpcServiceMethod( - TableService_method_names[25], - ::grpc::internal::RpcMethod::NORMAL_RPC, - new ::grpc::internal::RpcMethodHandler< TableService::Service, ::io::deephaven::proto::backplane::grpc::LeftJoinTablesRequest, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse, ::grpc::protobuf::MessageLite, ::grpc::protobuf::MessageLite>( - [](TableService::Service* service, - ::grpc::ServerContext* ctx, - const ::io::deephaven::proto::backplane::grpc::LeftJoinTablesRequest* req, - ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse* resp) { - return service->LeftJoinTables(ctx, req, resp); - }, this))); - AddMethod(new ::grpc::internal::RpcServiceMethod( - TableService_method_names[26], - ::grpc::internal::RpcMethod::NORMAL_RPC, - new ::grpc::internal::RpcMethodHandler< TableService::Service, ::io::deephaven::proto::backplane::grpc::AsOfJoinTablesRequest, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse, ::grpc::protobuf::MessageLite, ::grpc::protobuf::MessageLite>( - [](TableService::Service* service, - ::grpc::ServerContext* ctx, - const ::io::deephaven::proto::backplane::grpc::AsOfJoinTablesRequest* req, - ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse* resp) { - return service->AsOfJoinTables(ctx, req, resp); - }, this))); - AddMethod(new ::grpc::internal::RpcServiceMethod( - TableService_method_names[27], - ::grpc::internal::RpcMethod::NORMAL_RPC, - new ::grpc::internal::RpcMethodHandler< TableService::Service, ::io::deephaven::proto::backplane::grpc::AjRajTablesRequest, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse, ::grpc::protobuf::MessageLite, ::grpc::protobuf::MessageLite>( - [](TableService::Service* service, - ::grpc::ServerContext* ctx, - const ::io::deephaven::proto::backplane::grpc::AjRajTablesRequest* req, - ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse* resp) { - return service->AjTables(ctx, req, resp); - }, this))); - AddMethod(new ::grpc::internal::RpcServiceMethod( - TableService_method_names[28], - ::grpc::internal::RpcMethod::NORMAL_RPC, - new ::grpc::internal::RpcMethodHandler< TableService::Service, ::io::deephaven::proto::backplane::grpc::AjRajTablesRequest, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse, ::grpc::protobuf::MessageLite, ::grpc::protobuf::MessageLite>( - [](TableService::Service* service, - ::grpc::ServerContext* ctx, - const ::io::deephaven::proto::backplane::grpc::AjRajTablesRequest* req, - ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse* resp) { - return service->RajTables(ctx, req, resp); - }, this))); - AddMethod(new ::grpc::internal::RpcServiceMethod( - TableService_method_names[29], - ::grpc::internal::RpcMethod::NORMAL_RPC, - new ::grpc::internal::RpcMethodHandler< TableService::Service, ::io::deephaven::proto::backplane::grpc::MultiJoinTablesRequest, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse, ::grpc::protobuf::MessageLite, ::grpc::protobuf::MessageLite>( - [](TableService::Service* service, - ::grpc::ServerContext* ctx, - const ::io::deephaven::proto::backplane::grpc::MultiJoinTablesRequest* req, - ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse* resp) { - return service->MultiJoinTables(ctx, req, resp); - }, this))); - AddMethod(new ::grpc::internal::RpcServiceMethod( - TableService_method_names[30], - ::grpc::internal::RpcMethod::NORMAL_RPC, - new ::grpc::internal::RpcMethodHandler< TableService::Service, ::io::deephaven::proto::backplane::grpc::RangeJoinTablesRequest, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse, ::grpc::protobuf::MessageLite, ::grpc::protobuf::MessageLite>( - [](TableService::Service* service, - ::grpc::ServerContext* ctx, - const ::io::deephaven::proto::backplane::grpc::RangeJoinTablesRequest* req, - ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse* resp) { - return service->RangeJoinTables(ctx, req, resp); - }, this))); - AddMethod(new ::grpc::internal::RpcServiceMethod( - TableService_method_names[31], - ::grpc::internal::RpcMethod::NORMAL_RPC, - new ::grpc::internal::RpcMethodHandler< TableService::Service, ::io::deephaven::proto::backplane::grpc::ComboAggregateRequest, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse, ::grpc::protobuf::MessageLite, ::grpc::protobuf::MessageLite>( - [](TableService::Service* service, - ::grpc::ServerContext* ctx, - const ::io::deephaven::proto::backplane::grpc::ComboAggregateRequest* req, - ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse* resp) { - return service->ComboAggregate(ctx, req, resp); - }, this))); - AddMethod(new ::grpc::internal::RpcServiceMethod( - TableService_method_names[32], - ::grpc::internal::RpcMethod::NORMAL_RPC, - new ::grpc::internal::RpcMethodHandler< TableService::Service, ::io::deephaven::proto::backplane::grpc::AggregateAllRequest, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse, ::grpc::protobuf::MessageLite, ::grpc::protobuf::MessageLite>( - [](TableService::Service* service, - ::grpc::ServerContext* ctx, - const ::io::deephaven::proto::backplane::grpc::AggregateAllRequest* req, - ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse* resp) { - return service->AggregateAll(ctx, req, resp); - }, this))); - AddMethod(new ::grpc::internal::RpcServiceMethod( - TableService_method_names[33], - ::grpc::internal::RpcMethod::NORMAL_RPC, - new ::grpc::internal::RpcMethodHandler< TableService::Service, ::io::deephaven::proto::backplane::grpc::AggregateRequest, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse, ::grpc::protobuf::MessageLite, ::grpc::protobuf::MessageLite>( - [](TableService::Service* service, - ::grpc::ServerContext* ctx, - const ::io::deephaven::proto::backplane::grpc::AggregateRequest* req, - ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse* resp) { - return service->Aggregate(ctx, req, resp); - }, this))); - AddMethod(new ::grpc::internal::RpcServiceMethod( - TableService_method_names[34], - ::grpc::internal::RpcMethod::NORMAL_RPC, - new ::grpc::internal::RpcMethodHandler< TableService::Service, ::io::deephaven::proto::backplane::grpc::SnapshotTableRequest, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse, ::grpc::protobuf::MessageLite, ::grpc::protobuf::MessageLite>( - [](TableService::Service* service, - ::grpc::ServerContext* ctx, - const ::io::deephaven::proto::backplane::grpc::SnapshotTableRequest* req, - ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse* resp) { - return service->Snapshot(ctx, req, resp); - }, this))); - AddMethod(new ::grpc::internal::RpcServiceMethod( - TableService_method_names[35], - ::grpc::internal::RpcMethod::NORMAL_RPC, - new ::grpc::internal::RpcMethodHandler< TableService::Service, ::io::deephaven::proto::backplane::grpc::SnapshotWhenTableRequest, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse, ::grpc::protobuf::MessageLite, ::grpc::protobuf::MessageLite>( - [](TableService::Service* service, - ::grpc::ServerContext* ctx, - const ::io::deephaven::proto::backplane::grpc::SnapshotWhenTableRequest* req, - ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse* resp) { - return service->SnapshotWhen(ctx, req, resp); - }, this))); - AddMethod(new ::grpc::internal::RpcServiceMethod( - TableService_method_names[36], - ::grpc::internal::RpcMethod::NORMAL_RPC, - new ::grpc::internal::RpcMethodHandler< TableService::Service, ::io::deephaven::proto::backplane::grpc::FlattenRequest, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse, ::grpc::protobuf::MessageLite, ::grpc::protobuf::MessageLite>( - [](TableService::Service* service, - ::grpc::ServerContext* ctx, - const ::io::deephaven::proto::backplane::grpc::FlattenRequest* req, - ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse* resp) { - return service->Flatten(ctx, req, resp); - }, this))); - AddMethod(new ::grpc::internal::RpcServiceMethod( - TableService_method_names[37], - ::grpc::internal::RpcMethod::NORMAL_RPC, - new ::grpc::internal::RpcMethodHandler< TableService::Service, ::io::deephaven::proto::backplane::grpc::RunChartDownsampleRequest, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse, ::grpc::protobuf::MessageLite, ::grpc::protobuf::MessageLite>( - [](TableService::Service* service, - ::grpc::ServerContext* ctx, - const ::io::deephaven::proto::backplane::grpc::RunChartDownsampleRequest* req, - ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse* resp) { - return service->RunChartDownsample(ctx, req, resp); - }, this))); - AddMethod(new ::grpc::internal::RpcServiceMethod( - TableService_method_names[38], - ::grpc::internal::RpcMethod::NORMAL_RPC, - new ::grpc::internal::RpcMethodHandler< TableService::Service, ::io::deephaven::proto::backplane::grpc::CreateInputTableRequest, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse, ::grpc::protobuf::MessageLite, ::grpc::protobuf::MessageLite>( - [](TableService::Service* service, - ::grpc::ServerContext* ctx, - const ::io::deephaven::proto::backplane::grpc::CreateInputTableRequest* req, - ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse* resp) { - return service->CreateInputTable(ctx, req, resp); - }, this))); - AddMethod(new ::grpc::internal::RpcServiceMethod( - TableService_method_names[39], - ::grpc::internal::RpcMethod::NORMAL_RPC, - new ::grpc::internal::RpcMethodHandler< TableService::Service, ::io::deephaven::proto::backplane::grpc::WhereInRequest, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse, ::grpc::protobuf::MessageLite, ::grpc::protobuf::MessageLite>( - [](TableService::Service* service, - ::grpc::ServerContext* ctx, - const ::io::deephaven::proto::backplane::grpc::WhereInRequest* req, - ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse* resp) { - return service->WhereIn(ctx, req, resp); - }, this))); - AddMethod(new ::grpc::internal::RpcServiceMethod( - TableService_method_names[40], - ::grpc::internal::RpcMethod::SERVER_STREAMING, - new ::grpc::internal::ServerStreamingHandler< TableService::Service, ::io::deephaven::proto::backplane::grpc::BatchTableRequest, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse>( - [](TableService::Service* service, - ::grpc::ServerContext* ctx, - const ::io::deephaven::proto::backplane::grpc::BatchTableRequest* req, - ::grpc::ServerWriter<::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse>* writer) { - return service->Batch(ctx, req, writer); - }, this))); - AddMethod(new ::grpc::internal::RpcServiceMethod( - TableService_method_names[41], - ::grpc::internal::RpcMethod::SERVER_STREAMING, - new ::grpc::internal::ServerStreamingHandler< TableService::Service, ::io::deephaven::proto::backplane::grpc::ExportedTableUpdatesRequest, ::io::deephaven::proto::backplane::grpc::ExportedTableUpdateMessage>( - [](TableService::Service* service, - ::grpc::ServerContext* ctx, - const ::io::deephaven::proto::backplane::grpc::ExportedTableUpdatesRequest* req, - ::grpc::ServerWriter<::io::deephaven::proto::backplane::grpc::ExportedTableUpdateMessage>* writer) { - return service->ExportedTableUpdates(ctx, req, writer); - }, this))); - AddMethod(new ::grpc::internal::RpcServiceMethod( - TableService_method_names[42], - ::grpc::internal::RpcMethod::NORMAL_RPC, - new ::grpc::internal::RpcMethodHandler< TableService::Service, ::io::deephaven::proto::backplane::grpc::SeekRowRequest, ::io::deephaven::proto::backplane::grpc::SeekRowResponse, ::grpc::protobuf::MessageLite, ::grpc::protobuf::MessageLite>( - [](TableService::Service* service, - ::grpc::ServerContext* ctx, - const ::io::deephaven::proto::backplane::grpc::SeekRowRequest* req, - ::io::deephaven::proto::backplane::grpc::SeekRowResponse* resp) { - return service->SeekRow(ctx, req, resp); - }, this))); - AddMethod(new ::grpc::internal::RpcServiceMethod( - TableService_method_names[43], - ::grpc::internal::RpcMethod::NORMAL_RPC, - new ::grpc::internal::RpcMethodHandler< TableService::Service, ::io::deephaven::proto::backplane::grpc::MetaTableRequest, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse, ::grpc::protobuf::MessageLite, ::grpc::protobuf::MessageLite>( - [](TableService::Service* service, - ::grpc::ServerContext* ctx, - const ::io::deephaven::proto::backplane::grpc::MetaTableRequest* req, - ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse* resp) { - return service->MetaTable(ctx, req, resp); - }, this))); - AddMethod(new ::grpc::internal::RpcServiceMethod( - TableService_method_names[44], - ::grpc::internal::RpcMethod::NORMAL_RPC, - new ::grpc::internal::RpcMethodHandler< TableService::Service, ::io::deephaven::proto::backplane::grpc::ColumnStatisticsRequest, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse, ::grpc::protobuf::MessageLite, ::grpc::protobuf::MessageLite>( - [](TableService::Service* service, - ::grpc::ServerContext* ctx, - const ::io::deephaven::proto::backplane::grpc::ColumnStatisticsRequest* req, - ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse* resp) { - return service->ComputeColumnStatistics(ctx, req, resp); - }, this))); -} - -TableService::Service::~Service() { -} - -::grpc::Status TableService::Service::GetExportedTableCreationResponse(::grpc::ServerContext* context, const ::io::deephaven::proto::backplane::grpc::Ticket* request, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse* response) { - (void) context; - (void) request; - (void) response; - return ::grpc::Status(::grpc::StatusCode::UNIMPLEMENTED, ""); -} - -::grpc::Status TableService::Service::FetchTable(::grpc::ServerContext* context, const ::io::deephaven::proto::backplane::grpc::FetchTableRequest* request, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse* response) { - (void) context; - (void) request; - (void) response; - return ::grpc::Status(::grpc::StatusCode::UNIMPLEMENTED, ""); -} - -::grpc::Status TableService::Service::ApplyPreviewColumns(::grpc::ServerContext* context, const ::io::deephaven::proto::backplane::grpc::ApplyPreviewColumnsRequest* request, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse* response) { - (void) context; - (void) request; - (void) response; - return ::grpc::Status(::grpc::StatusCode::UNIMPLEMENTED, ""); -} - -::grpc::Status TableService::Service::EmptyTable(::grpc::ServerContext* context, const ::io::deephaven::proto::backplane::grpc::EmptyTableRequest* request, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse* response) { - (void) context; - (void) request; - (void) response; - return ::grpc::Status(::grpc::StatusCode::UNIMPLEMENTED, ""); -} - -::grpc::Status TableService::Service::TimeTable(::grpc::ServerContext* context, const ::io::deephaven::proto::backplane::grpc::TimeTableRequest* request, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse* response) { - (void) context; - (void) request; - (void) response; - return ::grpc::Status(::grpc::StatusCode::UNIMPLEMENTED, ""); -} - -::grpc::Status TableService::Service::DropColumns(::grpc::ServerContext* context, const ::io::deephaven::proto::backplane::grpc::DropColumnsRequest* request, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse* response) { - (void) context; - (void) request; - (void) response; - return ::grpc::Status(::grpc::StatusCode::UNIMPLEMENTED, ""); -} - -::grpc::Status TableService::Service::Update(::grpc::ServerContext* context, const ::io::deephaven::proto::backplane::grpc::SelectOrUpdateRequest* request, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse* response) { - (void) context; - (void) request; - (void) response; - return ::grpc::Status(::grpc::StatusCode::UNIMPLEMENTED, ""); -} - -::grpc::Status TableService::Service::LazyUpdate(::grpc::ServerContext* context, const ::io::deephaven::proto::backplane::grpc::SelectOrUpdateRequest* request, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse* response) { - (void) context; - (void) request; - (void) response; - return ::grpc::Status(::grpc::StatusCode::UNIMPLEMENTED, ""); -} - -::grpc::Status TableService::Service::View(::grpc::ServerContext* context, const ::io::deephaven::proto::backplane::grpc::SelectOrUpdateRequest* request, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse* response) { - (void) context; - (void) request; - (void) response; - return ::grpc::Status(::grpc::StatusCode::UNIMPLEMENTED, ""); -} - -::grpc::Status TableService::Service::UpdateView(::grpc::ServerContext* context, const ::io::deephaven::proto::backplane::grpc::SelectOrUpdateRequest* request, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse* response) { - (void) context; - (void) request; - (void) response; - return ::grpc::Status(::grpc::StatusCode::UNIMPLEMENTED, ""); -} - -::grpc::Status TableService::Service::Select(::grpc::ServerContext* context, const ::io::deephaven::proto::backplane::grpc::SelectOrUpdateRequest* request, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse* response) { - (void) context; - (void) request; - (void) response; - return ::grpc::Status(::grpc::StatusCode::UNIMPLEMENTED, ""); -} - -::grpc::Status TableService::Service::UpdateBy(::grpc::ServerContext* context, const ::io::deephaven::proto::backplane::grpc::UpdateByRequest* request, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse* response) { - (void) context; - (void) request; - (void) response; - return ::grpc::Status(::grpc::StatusCode::UNIMPLEMENTED, ""); -} - -::grpc::Status TableService::Service::SelectDistinct(::grpc::ServerContext* context, const ::io::deephaven::proto::backplane::grpc::SelectDistinctRequest* request, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse* response) { - (void) context; - (void) request; - (void) response; - return ::grpc::Status(::grpc::StatusCode::UNIMPLEMENTED, ""); -} - -::grpc::Status TableService::Service::Filter(::grpc::ServerContext* context, const ::io::deephaven::proto::backplane::grpc::FilterTableRequest* request, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse* response) { - (void) context; - (void) request; - (void) response; - return ::grpc::Status(::grpc::StatusCode::UNIMPLEMENTED, ""); -} - -::grpc::Status TableService::Service::UnstructuredFilter(::grpc::ServerContext* context, const ::io::deephaven::proto::backplane::grpc::UnstructuredFilterTableRequest* request, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse* response) { - (void) context; - (void) request; - (void) response; - return ::grpc::Status(::grpc::StatusCode::UNIMPLEMENTED, ""); -} - -::grpc::Status TableService::Service::Sort(::grpc::ServerContext* context, const ::io::deephaven::proto::backplane::grpc::SortTableRequest* request, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse* response) { - (void) context; - (void) request; - (void) response; - return ::grpc::Status(::grpc::StatusCode::UNIMPLEMENTED, ""); -} - -::grpc::Status TableService::Service::Head(::grpc::ServerContext* context, const ::io::deephaven::proto::backplane::grpc::HeadOrTailRequest* request, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse* response) { - (void) context; - (void) request; - (void) response; - return ::grpc::Status(::grpc::StatusCode::UNIMPLEMENTED, ""); -} - -::grpc::Status TableService::Service::Tail(::grpc::ServerContext* context, const ::io::deephaven::proto::backplane::grpc::HeadOrTailRequest* request, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse* response) { - (void) context; - (void) request; - (void) response; - return ::grpc::Status(::grpc::StatusCode::UNIMPLEMENTED, ""); -} - -::grpc::Status TableService::Service::HeadBy(::grpc::ServerContext* context, const ::io::deephaven::proto::backplane::grpc::HeadOrTailByRequest* request, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse* response) { - (void) context; - (void) request; - (void) response; - return ::grpc::Status(::grpc::StatusCode::UNIMPLEMENTED, ""); -} - -::grpc::Status TableService::Service::TailBy(::grpc::ServerContext* context, const ::io::deephaven::proto::backplane::grpc::HeadOrTailByRequest* request, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse* response) { - (void) context; - (void) request; - (void) response; - return ::grpc::Status(::grpc::StatusCode::UNIMPLEMENTED, ""); -} - -::grpc::Status TableService::Service::Ungroup(::grpc::ServerContext* context, const ::io::deephaven::proto::backplane::grpc::UngroupRequest* request, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse* response) { - (void) context; - (void) request; - (void) response; - return ::grpc::Status(::grpc::StatusCode::UNIMPLEMENTED, ""); -} - -::grpc::Status TableService::Service::MergeTables(::grpc::ServerContext* context, const ::io::deephaven::proto::backplane::grpc::MergeTablesRequest* request, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse* response) { - (void) context; - (void) request; - (void) response; - return ::grpc::Status(::grpc::StatusCode::UNIMPLEMENTED, ""); -} - -::grpc::Status TableService::Service::CrossJoinTables(::grpc::ServerContext* context, const ::io::deephaven::proto::backplane::grpc::CrossJoinTablesRequest* request, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse* response) { - (void) context; - (void) request; - (void) response; - return ::grpc::Status(::grpc::StatusCode::UNIMPLEMENTED, ""); -} - -::grpc::Status TableService::Service::NaturalJoinTables(::grpc::ServerContext* context, const ::io::deephaven::proto::backplane::grpc::NaturalJoinTablesRequest* request, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse* response) { - (void) context; - (void) request; - (void) response; - return ::grpc::Status(::grpc::StatusCode::UNIMPLEMENTED, ""); -} - -::grpc::Status TableService::Service::ExactJoinTables(::grpc::ServerContext* context, const ::io::deephaven::proto::backplane::grpc::ExactJoinTablesRequest* request, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse* response) { - (void) context; - (void) request; - (void) response; - return ::grpc::Status(::grpc::StatusCode::UNIMPLEMENTED, ""); -} - -::grpc::Status TableService::Service::LeftJoinTables(::grpc::ServerContext* context, const ::io::deephaven::proto::backplane::grpc::LeftJoinTablesRequest* request, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse* response) { - (void) context; - (void) request; - (void) response; - return ::grpc::Status(::grpc::StatusCode::UNIMPLEMENTED, ""); -} - -::grpc::Status TableService::Service::AsOfJoinTables(::grpc::ServerContext* context, const ::io::deephaven::proto::backplane::grpc::AsOfJoinTablesRequest* request, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse* response) { - (void) context; - (void) request; - (void) response; - return ::grpc::Status(::grpc::StatusCode::UNIMPLEMENTED, ""); -} - -::grpc::Status TableService::Service::AjTables(::grpc::ServerContext* context, const ::io::deephaven::proto::backplane::grpc::AjRajTablesRequest* request, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse* response) { - (void) context; - (void) request; - (void) response; - return ::grpc::Status(::grpc::StatusCode::UNIMPLEMENTED, ""); -} - -::grpc::Status TableService::Service::RajTables(::grpc::ServerContext* context, const ::io::deephaven::proto::backplane::grpc::AjRajTablesRequest* request, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse* response) { - (void) context; - (void) request; - (void) response; - return ::grpc::Status(::grpc::StatusCode::UNIMPLEMENTED, ""); -} - -::grpc::Status TableService::Service::MultiJoinTables(::grpc::ServerContext* context, const ::io::deephaven::proto::backplane::grpc::MultiJoinTablesRequest* request, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse* response) { - (void) context; - (void) request; - (void) response; - return ::grpc::Status(::grpc::StatusCode::UNIMPLEMENTED, ""); -} - -::grpc::Status TableService::Service::RangeJoinTables(::grpc::ServerContext* context, const ::io::deephaven::proto::backplane::grpc::RangeJoinTablesRequest* request, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse* response) { - (void) context; - (void) request; - (void) response; - return ::grpc::Status(::grpc::StatusCode::UNIMPLEMENTED, ""); -} - -::grpc::Status TableService::Service::ComboAggregate(::grpc::ServerContext* context, const ::io::deephaven::proto::backplane::grpc::ComboAggregateRequest* request, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse* response) { - (void) context; - (void) request; - (void) response; - return ::grpc::Status(::grpc::StatusCode::UNIMPLEMENTED, ""); -} - -::grpc::Status TableService::Service::AggregateAll(::grpc::ServerContext* context, const ::io::deephaven::proto::backplane::grpc::AggregateAllRequest* request, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse* response) { - (void) context; - (void) request; - (void) response; - return ::grpc::Status(::grpc::StatusCode::UNIMPLEMENTED, ""); -} - -::grpc::Status TableService::Service::Aggregate(::grpc::ServerContext* context, const ::io::deephaven::proto::backplane::grpc::AggregateRequest* request, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse* response) { - (void) context; - (void) request; - (void) response; - return ::grpc::Status(::grpc::StatusCode::UNIMPLEMENTED, ""); -} - -::grpc::Status TableService::Service::Snapshot(::grpc::ServerContext* context, const ::io::deephaven::proto::backplane::grpc::SnapshotTableRequest* request, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse* response) { - (void) context; - (void) request; - (void) response; - return ::grpc::Status(::grpc::StatusCode::UNIMPLEMENTED, ""); -} - -::grpc::Status TableService::Service::SnapshotWhen(::grpc::ServerContext* context, const ::io::deephaven::proto::backplane::grpc::SnapshotWhenTableRequest* request, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse* response) { - (void) context; - (void) request; - (void) response; - return ::grpc::Status(::grpc::StatusCode::UNIMPLEMENTED, ""); -} - -::grpc::Status TableService::Service::Flatten(::grpc::ServerContext* context, const ::io::deephaven::proto::backplane::grpc::FlattenRequest* request, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse* response) { - (void) context; - (void) request; - (void) response; - return ::grpc::Status(::grpc::StatusCode::UNIMPLEMENTED, ""); -} - -::grpc::Status TableService::Service::RunChartDownsample(::grpc::ServerContext* context, const ::io::deephaven::proto::backplane::grpc::RunChartDownsampleRequest* request, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse* response) { - (void) context; - (void) request; - (void) response; - return ::grpc::Status(::grpc::StatusCode::UNIMPLEMENTED, ""); -} - -::grpc::Status TableService::Service::CreateInputTable(::grpc::ServerContext* context, const ::io::deephaven::proto::backplane::grpc::CreateInputTableRequest* request, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse* response) { - (void) context; - (void) request; - (void) response; - return ::grpc::Status(::grpc::StatusCode::UNIMPLEMENTED, ""); -} - -::grpc::Status TableService::Service::WhereIn(::grpc::ServerContext* context, const ::io::deephaven::proto::backplane::grpc::WhereInRequest* request, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse* response) { - (void) context; - (void) request; - (void) response; - return ::grpc::Status(::grpc::StatusCode::UNIMPLEMENTED, ""); -} - -::grpc::Status TableService::Service::Batch(::grpc::ServerContext* context, const ::io::deephaven::proto::backplane::grpc::BatchTableRequest* request, ::grpc::ServerWriter< ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse>* writer) { - (void) context; - (void) request; - (void) writer; - return ::grpc::Status(::grpc::StatusCode::UNIMPLEMENTED, ""); -} - -::grpc::Status TableService::Service::ExportedTableUpdates(::grpc::ServerContext* context, const ::io::deephaven::proto::backplane::grpc::ExportedTableUpdatesRequest* request, ::grpc::ServerWriter< ::io::deephaven::proto::backplane::grpc::ExportedTableUpdateMessage>* writer) { - (void) context; - (void) request; - (void) writer; - return ::grpc::Status(::grpc::StatusCode::UNIMPLEMENTED, ""); -} - -::grpc::Status TableService::Service::SeekRow(::grpc::ServerContext* context, const ::io::deephaven::proto::backplane::grpc::SeekRowRequest* request, ::io::deephaven::proto::backplane::grpc::SeekRowResponse* response) { - (void) context; - (void) request; - (void) response; - return ::grpc::Status(::grpc::StatusCode::UNIMPLEMENTED, ""); -} - -::grpc::Status TableService::Service::MetaTable(::grpc::ServerContext* context, const ::io::deephaven::proto::backplane::grpc::MetaTableRequest* request, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse* response) { - (void) context; - (void) request; - (void) response; - return ::grpc::Status(::grpc::StatusCode::UNIMPLEMENTED, ""); -} - -::grpc::Status TableService::Service::ComputeColumnStatistics(::grpc::ServerContext* context, const ::io::deephaven::proto::backplane::grpc::ColumnStatisticsRequest* request, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse* response) { - (void) context; - (void) request; - (void) response; - return ::grpc::Status(::grpc::StatusCode::UNIMPLEMENTED, ""); -} - - -} // namespace io -} // namespace deephaven -} // namespace proto -} // namespace backplane -} // namespace grpc - diff --git a/cpp-client/deephaven/dhclient/proto/deephaven/proto/table.grpc.pb.h b/cpp-client/deephaven/dhclient/proto/deephaven/proto/table.grpc.pb.h deleted file mode 100644 index a1c00be0876..00000000000 --- a/cpp-client/deephaven/dhclient/proto/deephaven/proto/table.grpc.pb.h +++ /dev/null @@ -1,7502 +0,0 @@ -// Generated by the gRPC C++ plugin. -// If you make any local change, they will be lost. -// source: deephaven/proto/table.proto -// Original file comments: -// -// Copyright (c) 2016-2022 Deephaven Data Labs and Patent Pending -#ifndef GRPC_deephaven_2fproto_2ftable_2eproto__INCLUDED -#define GRPC_deephaven_2fproto_2ftable_2eproto__INCLUDED - -#include "deephaven/proto/table.pb.h" - -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include - -namespace io { -namespace deephaven { -namespace proto { -namespace backplane { -namespace grpc { - -class TableService final { - public: - static constexpr char const* service_full_name() { - return "io.deephaven.proto.backplane.grpc.TableService"; - } - class StubInterface { - public: - virtual ~StubInterface() {} - // - // Request an ETCR for this ticket. Ticket must reference a Table. - virtual ::grpc::Status GetExportedTableCreationResponse(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::Ticket& request, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse* response) = 0; - std::unique_ptr< ::grpc::ClientAsyncResponseReaderInterface< ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse>> AsyncGetExportedTableCreationResponse(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::Ticket& request, ::grpc::CompletionQueue* cq) { - return std::unique_ptr< ::grpc::ClientAsyncResponseReaderInterface< ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse>>(AsyncGetExportedTableCreationResponseRaw(context, request, cq)); - } - std::unique_ptr< ::grpc::ClientAsyncResponseReaderInterface< ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse>> PrepareAsyncGetExportedTableCreationResponse(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::Ticket& request, ::grpc::CompletionQueue* cq) { - return std::unique_ptr< ::grpc::ClientAsyncResponseReaderInterface< ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse>>(PrepareAsyncGetExportedTableCreationResponseRaw(context, request, cq)); - } - // - // Fetches a Table from an existing source ticket and exports it to the local session result ticket. - virtual ::grpc::Status FetchTable(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::FetchTableRequest& request, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse* response) = 0; - std::unique_ptr< ::grpc::ClientAsyncResponseReaderInterface< ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse>> AsyncFetchTable(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::FetchTableRequest& request, ::grpc::CompletionQueue* cq) { - return std::unique_ptr< ::grpc::ClientAsyncResponseReaderInterface< ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse>>(AsyncFetchTableRaw(context, request, cq)); - } - std::unique_ptr< ::grpc::ClientAsyncResponseReaderInterface< ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse>> PrepareAsyncFetchTable(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::FetchTableRequest& request, ::grpc::CompletionQueue* cq) { - return std::unique_ptr< ::grpc::ClientAsyncResponseReaderInterface< ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse>>(PrepareAsyncFetchTableRaw(context, request, cq)); - } - // - // Create a table that has preview columns applied to an existing source table. - virtual ::grpc::Status ApplyPreviewColumns(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::ApplyPreviewColumnsRequest& request, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse* response) = 0; - std::unique_ptr< ::grpc::ClientAsyncResponseReaderInterface< ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse>> AsyncApplyPreviewColumns(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::ApplyPreviewColumnsRequest& request, ::grpc::CompletionQueue* cq) { - return std::unique_ptr< ::grpc::ClientAsyncResponseReaderInterface< ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse>>(AsyncApplyPreviewColumnsRaw(context, request, cq)); - } - std::unique_ptr< ::grpc::ClientAsyncResponseReaderInterface< ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse>> PrepareAsyncApplyPreviewColumns(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::ApplyPreviewColumnsRequest& request, ::grpc::CompletionQueue* cq) { - return std::unique_ptr< ::grpc::ClientAsyncResponseReaderInterface< ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse>>(PrepareAsyncApplyPreviewColumnsRaw(context, request, cq)); - } - // - // Create an empty table with the given column names and types. - virtual ::grpc::Status EmptyTable(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::EmptyTableRequest& request, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse* response) = 0; - std::unique_ptr< ::grpc::ClientAsyncResponseReaderInterface< ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse>> AsyncEmptyTable(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::EmptyTableRequest& request, ::grpc::CompletionQueue* cq) { - return std::unique_ptr< ::grpc::ClientAsyncResponseReaderInterface< ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse>>(AsyncEmptyTableRaw(context, request, cq)); - } - std::unique_ptr< ::grpc::ClientAsyncResponseReaderInterface< ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse>> PrepareAsyncEmptyTable(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::EmptyTableRequest& request, ::grpc::CompletionQueue* cq) { - return std::unique_ptr< ::grpc::ClientAsyncResponseReaderInterface< ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse>>(PrepareAsyncEmptyTableRaw(context, request, cq)); - } - // - // Create a time table with the given start time and period. - virtual ::grpc::Status TimeTable(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::TimeTableRequest& request, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse* response) = 0; - std::unique_ptr< ::grpc::ClientAsyncResponseReaderInterface< ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse>> AsyncTimeTable(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::TimeTableRequest& request, ::grpc::CompletionQueue* cq) { - return std::unique_ptr< ::grpc::ClientAsyncResponseReaderInterface< ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse>>(AsyncTimeTableRaw(context, request, cq)); - } - std::unique_ptr< ::grpc::ClientAsyncResponseReaderInterface< ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse>> PrepareAsyncTimeTable(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::TimeTableRequest& request, ::grpc::CompletionQueue* cq) { - return std::unique_ptr< ::grpc::ClientAsyncResponseReaderInterface< ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse>>(PrepareAsyncTimeTableRaw(context, request, cq)); - } - // - // Drop columns from the parent table. - virtual ::grpc::Status DropColumns(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::DropColumnsRequest& request, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse* response) = 0; - std::unique_ptr< ::grpc::ClientAsyncResponseReaderInterface< ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse>> AsyncDropColumns(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::DropColumnsRequest& request, ::grpc::CompletionQueue* cq) { - return std::unique_ptr< ::grpc::ClientAsyncResponseReaderInterface< ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse>>(AsyncDropColumnsRaw(context, request, cq)); - } - std::unique_ptr< ::grpc::ClientAsyncResponseReaderInterface< ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse>> PrepareAsyncDropColumns(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::DropColumnsRequest& request, ::grpc::CompletionQueue* cq) { - return std::unique_ptr< ::grpc::ClientAsyncResponseReaderInterface< ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse>>(PrepareAsyncDropColumnsRaw(context, request, cq)); - } - // - // Add columns to the given table using the given column specifications and the update table operation. - virtual ::grpc::Status Update(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::SelectOrUpdateRequest& request, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse* response) = 0; - std::unique_ptr< ::grpc::ClientAsyncResponseReaderInterface< ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse>> AsyncUpdate(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::SelectOrUpdateRequest& request, ::grpc::CompletionQueue* cq) { - return std::unique_ptr< ::grpc::ClientAsyncResponseReaderInterface< ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse>>(AsyncUpdateRaw(context, request, cq)); - } - std::unique_ptr< ::grpc::ClientAsyncResponseReaderInterface< ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse>> PrepareAsyncUpdate(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::SelectOrUpdateRequest& request, ::grpc::CompletionQueue* cq) { - return std::unique_ptr< ::grpc::ClientAsyncResponseReaderInterface< ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse>>(PrepareAsyncUpdateRaw(context, request, cq)); - } - // - // Add columns to the given table using the given column specifications and the lazyUpdate table operation. - virtual ::grpc::Status LazyUpdate(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::SelectOrUpdateRequest& request, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse* response) = 0; - std::unique_ptr< ::grpc::ClientAsyncResponseReaderInterface< ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse>> AsyncLazyUpdate(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::SelectOrUpdateRequest& request, ::grpc::CompletionQueue* cq) { - return std::unique_ptr< ::grpc::ClientAsyncResponseReaderInterface< ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse>>(AsyncLazyUpdateRaw(context, request, cq)); - } - std::unique_ptr< ::grpc::ClientAsyncResponseReaderInterface< ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse>> PrepareAsyncLazyUpdate(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::SelectOrUpdateRequest& request, ::grpc::CompletionQueue* cq) { - return std::unique_ptr< ::grpc::ClientAsyncResponseReaderInterface< ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse>>(PrepareAsyncLazyUpdateRaw(context, request, cq)); - } - // - // Add columns to the given table using the given column specifications and the view table operation. - virtual ::grpc::Status View(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::SelectOrUpdateRequest& request, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse* response) = 0; - std::unique_ptr< ::grpc::ClientAsyncResponseReaderInterface< ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse>> AsyncView(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::SelectOrUpdateRequest& request, ::grpc::CompletionQueue* cq) { - return std::unique_ptr< ::grpc::ClientAsyncResponseReaderInterface< ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse>>(AsyncViewRaw(context, request, cq)); - } - std::unique_ptr< ::grpc::ClientAsyncResponseReaderInterface< ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse>> PrepareAsyncView(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::SelectOrUpdateRequest& request, ::grpc::CompletionQueue* cq) { - return std::unique_ptr< ::grpc::ClientAsyncResponseReaderInterface< ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse>>(PrepareAsyncViewRaw(context, request, cq)); - } - // - // Add columns to the given table using the given column specifications and the updateView table operation. - virtual ::grpc::Status UpdateView(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::SelectOrUpdateRequest& request, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse* response) = 0; - std::unique_ptr< ::grpc::ClientAsyncResponseReaderInterface< ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse>> AsyncUpdateView(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::SelectOrUpdateRequest& request, ::grpc::CompletionQueue* cq) { - return std::unique_ptr< ::grpc::ClientAsyncResponseReaderInterface< ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse>>(AsyncUpdateViewRaw(context, request, cq)); - } - std::unique_ptr< ::grpc::ClientAsyncResponseReaderInterface< ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse>> PrepareAsyncUpdateView(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::SelectOrUpdateRequest& request, ::grpc::CompletionQueue* cq) { - return std::unique_ptr< ::grpc::ClientAsyncResponseReaderInterface< ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse>>(PrepareAsyncUpdateViewRaw(context, request, cq)); - } - // - // Select the given columns from the given table. - virtual ::grpc::Status Select(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::SelectOrUpdateRequest& request, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse* response) = 0; - std::unique_ptr< ::grpc::ClientAsyncResponseReaderInterface< ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse>> AsyncSelect(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::SelectOrUpdateRequest& request, ::grpc::CompletionQueue* cq) { - return std::unique_ptr< ::grpc::ClientAsyncResponseReaderInterface< ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse>>(AsyncSelectRaw(context, request, cq)); - } - std::unique_ptr< ::grpc::ClientAsyncResponseReaderInterface< ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse>> PrepareAsyncSelect(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::SelectOrUpdateRequest& request, ::grpc::CompletionQueue* cq) { - return std::unique_ptr< ::grpc::ClientAsyncResponseReaderInterface< ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse>>(PrepareAsyncSelectRaw(context, request, cq)); - } - // - // Returns the result of an updateBy table operation. - virtual ::grpc::Status UpdateBy(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::UpdateByRequest& request, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse* response) = 0; - std::unique_ptr< ::grpc::ClientAsyncResponseReaderInterface< ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse>> AsyncUpdateBy(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::UpdateByRequest& request, ::grpc::CompletionQueue* cq) { - return std::unique_ptr< ::grpc::ClientAsyncResponseReaderInterface< ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse>>(AsyncUpdateByRaw(context, request, cq)); - } - std::unique_ptr< ::grpc::ClientAsyncResponseReaderInterface< ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse>> PrepareAsyncUpdateBy(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::UpdateByRequest& request, ::grpc::CompletionQueue* cq) { - return std::unique_ptr< ::grpc::ClientAsyncResponseReaderInterface< ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse>>(PrepareAsyncUpdateByRaw(context, request, cq)); - } - // - // Returns a new table definition with the unique tuples of the specified columns - virtual ::grpc::Status SelectDistinct(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::SelectDistinctRequest& request, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse* response) = 0; - std::unique_ptr< ::grpc::ClientAsyncResponseReaderInterface< ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse>> AsyncSelectDistinct(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::SelectDistinctRequest& request, ::grpc::CompletionQueue* cq) { - return std::unique_ptr< ::grpc::ClientAsyncResponseReaderInterface< ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse>>(AsyncSelectDistinctRaw(context, request, cq)); - } - std::unique_ptr< ::grpc::ClientAsyncResponseReaderInterface< ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse>> PrepareAsyncSelectDistinct(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::SelectDistinctRequest& request, ::grpc::CompletionQueue* cq) { - return std::unique_ptr< ::grpc::ClientAsyncResponseReaderInterface< ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse>>(PrepareAsyncSelectDistinctRaw(context, request, cq)); - } - // - // Filter parent table with structured filters. - virtual ::grpc::Status Filter(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::FilterTableRequest& request, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse* response) = 0; - std::unique_ptr< ::grpc::ClientAsyncResponseReaderInterface< ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse>> AsyncFilter(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::FilterTableRequest& request, ::grpc::CompletionQueue* cq) { - return std::unique_ptr< ::grpc::ClientAsyncResponseReaderInterface< ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse>>(AsyncFilterRaw(context, request, cq)); - } - std::unique_ptr< ::grpc::ClientAsyncResponseReaderInterface< ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse>> PrepareAsyncFilter(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::FilterTableRequest& request, ::grpc::CompletionQueue* cq) { - return std::unique_ptr< ::grpc::ClientAsyncResponseReaderInterface< ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse>>(PrepareAsyncFilterRaw(context, request, cq)); - } - // - // Filter parent table with unstructured filters. - virtual ::grpc::Status UnstructuredFilter(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::UnstructuredFilterTableRequest& request, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse* response) = 0; - std::unique_ptr< ::grpc::ClientAsyncResponseReaderInterface< ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse>> AsyncUnstructuredFilter(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::UnstructuredFilterTableRequest& request, ::grpc::CompletionQueue* cq) { - return std::unique_ptr< ::grpc::ClientAsyncResponseReaderInterface< ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse>>(AsyncUnstructuredFilterRaw(context, request, cq)); - } - std::unique_ptr< ::grpc::ClientAsyncResponseReaderInterface< ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse>> PrepareAsyncUnstructuredFilter(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::UnstructuredFilterTableRequest& request, ::grpc::CompletionQueue* cq) { - return std::unique_ptr< ::grpc::ClientAsyncResponseReaderInterface< ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse>>(PrepareAsyncUnstructuredFilterRaw(context, request, cq)); - } - // - // Sort parent table via the provide sort descriptors. - virtual ::grpc::Status Sort(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::SortTableRequest& request, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse* response) = 0; - std::unique_ptr< ::grpc::ClientAsyncResponseReaderInterface< ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse>> AsyncSort(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::SortTableRequest& request, ::grpc::CompletionQueue* cq) { - return std::unique_ptr< ::grpc::ClientAsyncResponseReaderInterface< ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse>>(AsyncSortRaw(context, request, cq)); - } - std::unique_ptr< ::grpc::ClientAsyncResponseReaderInterface< ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse>> PrepareAsyncSort(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::SortTableRequest& request, ::grpc::CompletionQueue* cq) { - return std::unique_ptr< ::grpc::ClientAsyncResponseReaderInterface< ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse>>(PrepareAsyncSortRaw(context, request, cq)); - } - // - // Extract rows from the head of the parent table. - virtual ::grpc::Status Head(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::HeadOrTailRequest& request, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse* response) = 0; - std::unique_ptr< ::grpc::ClientAsyncResponseReaderInterface< ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse>> AsyncHead(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::HeadOrTailRequest& request, ::grpc::CompletionQueue* cq) { - return std::unique_ptr< ::grpc::ClientAsyncResponseReaderInterface< ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse>>(AsyncHeadRaw(context, request, cq)); - } - std::unique_ptr< ::grpc::ClientAsyncResponseReaderInterface< ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse>> PrepareAsyncHead(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::HeadOrTailRequest& request, ::grpc::CompletionQueue* cq) { - return std::unique_ptr< ::grpc::ClientAsyncResponseReaderInterface< ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse>>(PrepareAsyncHeadRaw(context, request, cq)); - } - // - // Extract rows from the tail of the parent table. - virtual ::grpc::Status Tail(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::HeadOrTailRequest& request, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse* response) = 0; - std::unique_ptr< ::grpc::ClientAsyncResponseReaderInterface< ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse>> AsyncTail(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::HeadOrTailRequest& request, ::grpc::CompletionQueue* cq) { - return std::unique_ptr< ::grpc::ClientAsyncResponseReaderInterface< ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse>>(AsyncTailRaw(context, request, cq)); - } - std::unique_ptr< ::grpc::ClientAsyncResponseReaderInterface< ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse>> PrepareAsyncTail(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::HeadOrTailRequest& request, ::grpc::CompletionQueue* cq) { - return std::unique_ptr< ::grpc::ClientAsyncResponseReaderInterface< ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse>>(PrepareAsyncTailRaw(context, request, cq)); - } - // - // Run the headBy table operation for the given group by columns on the given table. - virtual ::grpc::Status HeadBy(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::HeadOrTailByRequest& request, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse* response) = 0; - std::unique_ptr< ::grpc::ClientAsyncResponseReaderInterface< ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse>> AsyncHeadBy(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::HeadOrTailByRequest& request, ::grpc::CompletionQueue* cq) { - return std::unique_ptr< ::grpc::ClientAsyncResponseReaderInterface< ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse>>(AsyncHeadByRaw(context, request, cq)); - } - std::unique_ptr< ::grpc::ClientAsyncResponseReaderInterface< ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse>> PrepareAsyncHeadBy(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::HeadOrTailByRequest& request, ::grpc::CompletionQueue* cq) { - return std::unique_ptr< ::grpc::ClientAsyncResponseReaderInterface< ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse>>(PrepareAsyncHeadByRaw(context, request, cq)); - } - // - // Run the tailBy operation for the given group by columns on the given table. - virtual ::grpc::Status TailBy(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::HeadOrTailByRequest& request, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse* response) = 0; - std::unique_ptr< ::grpc::ClientAsyncResponseReaderInterface< ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse>> AsyncTailBy(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::HeadOrTailByRequest& request, ::grpc::CompletionQueue* cq) { - return std::unique_ptr< ::grpc::ClientAsyncResponseReaderInterface< ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse>>(AsyncTailByRaw(context, request, cq)); - } - std::unique_ptr< ::grpc::ClientAsyncResponseReaderInterface< ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse>> PrepareAsyncTailBy(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::HeadOrTailByRequest& request, ::grpc::CompletionQueue* cq) { - return std::unique_ptr< ::grpc::ClientAsyncResponseReaderInterface< ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse>>(PrepareAsyncTailByRaw(context, request, cq)); - } - // - // Ungroup the given columns (all columns will be ungrouped if columnsToUngroup is empty or unspecified). - virtual ::grpc::Status Ungroup(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::UngroupRequest& request, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse* response) = 0; - std::unique_ptr< ::grpc::ClientAsyncResponseReaderInterface< ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse>> AsyncUngroup(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::UngroupRequest& request, ::grpc::CompletionQueue* cq) { - return std::unique_ptr< ::grpc::ClientAsyncResponseReaderInterface< ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse>>(AsyncUngroupRaw(context, request, cq)); - } - std::unique_ptr< ::grpc::ClientAsyncResponseReaderInterface< ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse>> PrepareAsyncUngroup(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::UngroupRequest& request, ::grpc::CompletionQueue* cq) { - return std::unique_ptr< ::grpc::ClientAsyncResponseReaderInterface< ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse>>(PrepareAsyncUngroupRaw(context, request, cq)); - } - // - // Create a merged table from the given input tables. If a key column is provided (not null), a sorted - // merged will be performed using that column. - virtual ::grpc::Status MergeTables(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::MergeTablesRequest& request, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse* response) = 0; - std::unique_ptr< ::grpc::ClientAsyncResponseReaderInterface< ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse>> AsyncMergeTables(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::MergeTablesRequest& request, ::grpc::CompletionQueue* cq) { - return std::unique_ptr< ::grpc::ClientAsyncResponseReaderInterface< ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse>>(AsyncMergeTablesRaw(context, request, cq)); - } - std::unique_ptr< ::grpc::ClientAsyncResponseReaderInterface< ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse>> PrepareAsyncMergeTables(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::MergeTablesRequest& request, ::grpc::CompletionQueue* cq) { - return std::unique_ptr< ::grpc::ClientAsyncResponseReaderInterface< ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse>>(PrepareAsyncMergeTablesRaw(context, request, cq)); - } - // - // Returns the result of a cross join operation. Also known as the cartesian product. - virtual ::grpc::Status CrossJoinTables(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::CrossJoinTablesRequest& request, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse* response) = 0; - std::unique_ptr< ::grpc::ClientAsyncResponseReaderInterface< ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse>> AsyncCrossJoinTables(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::CrossJoinTablesRequest& request, ::grpc::CompletionQueue* cq) { - return std::unique_ptr< ::grpc::ClientAsyncResponseReaderInterface< ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse>>(AsyncCrossJoinTablesRaw(context, request, cq)); - } - std::unique_ptr< ::grpc::ClientAsyncResponseReaderInterface< ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse>> PrepareAsyncCrossJoinTables(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::CrossJoinTablesRequest& request, ::grpc::CompletionQueue* cq) { - return std::unique_ptr< ::grpc::ClientAsyncResponseReaderInterface< ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse>>(PrepareAsyncCrossJoinTablesRaw(context, request, cq)); - } - // - // Returns the result of a natural join operation. - virtual ::grpc::Status NaturalJoinTables(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::NaturalJoinTablesRequest& request, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse* response) = 0; - std::unique_ptr< ::grpc::ClientAsyncResponseReaderInterface< ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse>> AsyncNaturalJoinTables(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::NaturalJoinTablesRequest& request, ::grpc::CompletionQueue* cq) { - return std::unique_ptr< ::grpc::ClientAsyncResponseReaderInterface< ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse>>(AsyncNaturalJoinTablesRaw(context, request, cq)); - } - std::unique_ptr< ::grpc::ClientAsyncResponseReaderInterface< ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse>> PrepareAsyncNaturalJoinTables(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::NaturalJoinTablesRequest& request, ::grpc::CompletionQueue* cq) { - return std::unique_ptr< ::grpc::ClientAsyncResponseReaderInterface< ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse>>(PrepareAsyncNaturalJoinTablesRaw(context, request, cq)); - } - // - // Returns the result of an exact join operation. - virtual ::grpc::Status ExactJoinTables(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::ExactJoinTablesRequest& request, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse* response) = 0; - std::unique_ptr< ::grpc::ClientAsyncResponseReaderInterface< ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse>> AsyncExactJoinTables(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::ExactJoinTablesRequest& request, ::grpc::CompletionQueue* cq) { - return std::unique_ptr< ::grpc::ClientAsyncResponseReaderInterface< ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse>>(AsyncExactJoinTablesRaw(context, request, cq)); - } - std::unique_ptr< ::grpc::ClientAsyncResponseReaderInterface< ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse>> PrepareAsyncExactJoinTables(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::ExactJoinTablesRequest& request, ::grpc::CompletionQueue* cq) { - return std::unique_ptr< ::grpc::ClientAsyncResponseReaderInterface< ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse>>(PrepareAsyncExactJoinTablesRaw(context, request, cq)); - } - // - // Returns the result of a left join operation. - virtual ::grpc::Status LeftJoinTables(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::LeftJoinTablesRequest& request, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse* response) = 0; - std::unique_ptr< ::grpc::ClientAsyncResponseReaderInterface< ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse>> AsyncLeftJoinTables(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::LeftJoinTablesRequest& request, ::grpc::CompletionQueue* cq) { - return std::unique_ptr< ::grpc::ClientAsyncResponseReaderInterface< ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse>>(AsyncLeftJoinTablesRaw(context, request, cq)); - } - std::unique_ptr< ::grpc::ClientAsyncResponseReaderInterface< ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse>> PrepareAsyncLeftJoinTables(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::LeftJoinTablesRequest& request, ::grpc::CompletionQueue* cq) { - return std::unique_ptr< ::grpc::ClientAsyncResponseReaderInterface< ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse>>(PrepareAsyncLeftJoinTablesRaw(context, request, cq)); - } - // - // Returns the result of an as of join operation. - // - // Deprecated: Please use AjTables or RajTables. - virtual ::grpc::Status AsOfJoinTables(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::AsOfJoinTablesRequest& request, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse* response) = 0; - std::unique_ptr< ::grpc::ClientAsyncResponseReaderInterface< ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse>> AsyncAsOfJoinTables(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::AsOfJoinTablesRequest& request, ::grpc::CompletionQueue* cq) { - return std::unique_ptr< ::grpc::ClientAsyncResponseReaderInterface< ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse>>(AsyncAsOfJoinTablesRaw(context, request, cq)); - } - std::unique_ptr< ::grpc::ClientAsyncResponseReaderInterface< ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse>> PrepareAsyncAsOfJoinTables(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::AsOfJoinTablesRequest& request, ::grpc::CompletionQueue* cq) { - return std::unique_ptr< ::grpc::ClientAsyncResponseReaderInterface< ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse>>(PrepareAsyncAsOfJoinTablesRaw(context, request, cq)); - } - // - // Returns the result of an aj operation. - virtual ::grpc::Status AjTables(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::AjRajTablesRequest& request, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse* response) = 0; - std::unique_ptr< ::grpc::ClientAsyncResponseReaderInterface< ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse>> AsyncAjTables(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::AjRajTablesRequest& request, ::grpc::CompletionQueue* cq) { - return std::unique_ptr< ::grpc::ClientAsyncResponseReaderInterface< ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse>>(AsyncAjTablesRaw(context, request, cq)); - } - std::unique_ptr< ::grpc::ClientAsyncResponseReaderInterface< ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse>> PrepareAsyncAjTables(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::AjRajTablesRequest& request, ::grpc::CompletionQueue* cq) { - return std::unique_ptr< ::grpc::ClientAsyncResponseReaderInterface< ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse>>(PrepareAsyncAjTablesRaw(context, request, cq)); - } - // - // Returns the result of an raj operation. - virtual ::grpc::Status RajTables(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::AjRajTablesRequest& request, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse* response) = 0; - std::unique_ptr< ::grpc::ClientAsyncResponseReaderInterface< ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse>> AsyncRajTables(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::AjRajTablesRequest& request, ::grpc::CompletionQueue* cq) { - return std::unique_ptr< ::grpc::ClientAsyncResponseReaderInterface< ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse>>(AsyncRajTablesRaw(context, request, cq)); - } - std::unique_ptr< ::grpc::ClientAsyncResponseReaderInterface< ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse>> PrepareAsyncRajTables(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::AjRajTablesRequest& request, ::grpc::CompletionQueue* cq) { - return std::unique_ptr< ::grpc::ClientAsyncResponseReaderInterface< ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse>>(PrepareAsyncRajTablesRaw(context, request, cq)); - } - // - // Returns the result of a multi-join operation. - virtual ::grpc::Status MultiJoinTables(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::MultiJoinTablesRequest& request, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse* response) = 0; - std::unique_ptr< ::grpc::ClientAsyncResponseReaderInterface< ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse>> AsyncMultiJoinTables(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::MultiJoinTablesRequest& request, ::grpc::CompletionQueue* cq) { - return std::unique_ptr< ::grpc::ClientAsyncResponseReaderInterface< ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse>>(AsyncMultiJoinTablesRaw(context, request, cq)); - } - std::unique_ptr< ::grpc::ClientAsyncResponseReaderInterface< ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse>> PrepareAsyncMultiJoinTables(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::MultiJoinTablesRequest& request, ::grpc::CompletionQueue* cq) { - return std::unique_ptr< ::grpc::ClientAsyncResponseReaderInterface< ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse>>(PrepareAsyncMultiJoinTablesRaw(context, request, cq)); - } - // - // Returns the result of a range join operation. - virtual ::grpc::Status RangeJoinTables(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::RangeJoinTablesRequest& request, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse* response) = 0; - std::unique_ptr< ::grpc::ClientAsyncResponseReaderInterface< ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse>> AsyncRangeJoinTables(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::RangeJoinTablesRequest& request, ::grpc::CompletionQueue* cq) { - return std::unique_ptr< ::grpc::ClientAsyncResponseReaderInterface< ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse>>(AsyncRangeJoinTablesRaw(context, request, cq)); - } - std::unique_ptr< ::grpc::ClientAsyncResponseReaderInterface< ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse>> PrepareAsyncRangeJoinTables(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::RangeJoinTablesRequest& request, ::grpc::CompletionQueue* cq) { - return std::unique_ptr< ::grpc::ClientAsyncResponseReaderInterface< ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse>>(PrepareAsyncRangeJoinTablesRaw(context, request, cq)); - } - // - // Returns the result of an aggregate table operation. - // - // Deprecated: Please use AggregateAll or Aggregate instead - virtual ::grpc::Status ComboAggregate(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::ComboAggregateRequest& request, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse* response) = 0; - std::unique_ptr< ::grpc::ClientAsyncResponseReaderInterface< ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse>> AsyncComboAggregate(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::ComboAggregateRequest& request, ::grpc::CompletionQueue* cq) { - return std::unique_ptr< ::grpc::ClientAsyncResponseReaderInterface< ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse>>(AsyncComboAggregateRaw(context, request, cq)); - } - std::unique_ptr< ::grpc::ClientAsyncResponseReaderInterface< ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse>> PrepareAsyncComboAggregate(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::ComboAggregateRequest& request, ::grpc::CompletionQueue* cq) { - return std::unique_ptr< ::grpc::ClientAsyncResponseReaderInterface< ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse>>(PrepareAsyncComboAggregateRaw(context, request, cq)); - } - // - // Aggregates all non-grouping columns against a single aggregation specification. - virtual ::grpc::Status AggregateAll(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::AggregateAllRequest& request, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse* response) = 0; - std::unique_ptr< ::grpc::ClientAsyncResponseReaderInterface< ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse>> AsyncAggregateAll(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::AggregateAllRequest& request, ::grpc::CompletionQueue* cq) { - return std::unique_ptr< ::grpc::ClientAsyncResponseReaderInterface< ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse>>(AsyncAggregateAllRaw(context, request, cq)); - } - std::unique_ptr< ::grpc::ClientAsyncResponseReaderInterface< ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse>> PrepareAsyncAggregateAll(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::AggregateAllRequest& request, ::grpc::CompletionQueue* cq) { - return std::unique_ptr< ::grpc::ClientAsyncResponseReaderInterface< ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse>>(PrepareAsyncAggregateAllRaw(context, request, cq)); - } - // - // Produce an aggregated result by grouping the source_id table according to the group_by_columns and applying - // aggregations to each resulting group of rows. The result table will have one row per group, ordered by - // the encounter order within the source_id table, thereby ensuring that the row key for a given group never - // changes. - virtual ::grpc::Status Aggregate(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::AggregateRequest& request, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse* response) = 0; - std::unique_ptr< ::grpc::ClientAsyncResponseReaderInterface< ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse>> AsyncAggregate(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::AggregateRequest& request, ::grpc::CompletionQueue* cq) { - return std::unique_ptr< ::grpc::ClientAsyncResponseReaderInterface< ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse>>(AsyncAggregateRaw(context, request, cq)); - } - std::unique_ptr< ::grpc::ClientAsyncResponseReaderInterface< ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse>> PrepareAsyncAggregate(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::AggregateRequest& request, ::grpc::CompletionQueue* cq) { - return std::unique_ptr< ::grpc::ClientAsyncResponseReaderInterface< ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse>>(PrepareAsyncAggregateRaw(context, request, cq)); - } - // - // Takes a single snapshot of the source_id table. - virtual ::grpc::Status Snapshot(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::SnapshotTableRequest& request, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse* response) = 0; - std::unique_ptr< ::grpc::ClientAsyncResponseReaderInterface< ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse>> AsyncSnapshot(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::SnapshotTableRequest& request, ::grpc::CompletionQueue* cq) { - return std::unique_ptr< ::grpc::ClientAsyncResponseReaderInterface< ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse>>(AsyncSnapshotRaw(context, request, cq)); - } - std::unique_ptr< ::grpc::ClientAsyncResponseReaderInterface< ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse>> PrepareAsyncSnapshot(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::SnapshotTableRequest& request, ::grpc::CompletionQueue* cq) { - return std::unique_ptr< ::grpc::ClientAsyncResponseReaderInterface< ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse>>(PrepareAsyncSnapshotRaw(context, request, cq)); - } - // - // Snapshot base_id, triggered by trigger_id, and export the resulting new table. - // The trigger_id table's change events cause a new snapshot to be taken. The result table includes a - // "snapshot key" which is a subset (possibly all) of the base_id table's columns. The - // remaining columns in the result table come from base_id table, the table being snapshotted. - virtual ::grpc::Status SnapshotWhen(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::SnapshotWhenTableRequest& request, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse* response) = 0; - std::unique_ptr< ::grpc::ClientAsyncResponseReaderInterface< ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse>> AsyncSnapshotWhen(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::SnapshotWhenTableRequest& request, ::grpc::CompletionQueue* cq) { - return std::unique_ptr< ::grpc::ClientAsyncResponseReaderInterface< ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse>>(AsyncSnapshotWhenRaw(context, request, cq)); - } - std::unique_ptr< ::grpc::ClientAsyncResponseReaderInterface< ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse>> PrepareAsyncSnapshotWhen(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::SnapshotWhenTableRequest& request, ::grpc::CompletionQueue* cq) { - return std::unique_ptr< ::grpc::ClientAsyncResponseReaderInterface< ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse>>(PrepareAsyncSnapshotWhenRaw(context, request, cq)); - } - // - // Returns a new table with a flattened row set. - virtual ::grpc::Status Flatten(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::FlattenRequest& request, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse* response) = 0; - std::unique_ptr< ::grpc::ClientAsyncResponseReaderInterface< ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse>> AsyncFlatten(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::FlattenRequest& request, ::grpc::CompletionQueue* cq) { - return std::unique_ptr< ::grpc::ClientAsyncResponseReaderInterface< ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse>>(AsyncFlattenRaw(context, request, cq)); - } - std::unique_ptr< ::grpc::ClientAsyncResponseReaderInterface< ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse>> PrepareAsyncFlatten(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::FlattenRequest& request, ::grpc::CompletionQueue* cq) { - return std::unique_ptr< ::grpc::ClientAsyncResponseReaderInterface< ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse>>(PrepareAsyncFlattenRaw(context, request, cq)); - } - // * - // Downsamples a table assume its contents will be rendered in a run chart, with each subsequent row holding a later - // X value (i.e., sorted on that column). Multiple Y columns can be specified, as can a range of values for the X - // column to support zooming in. - virtual ::grpc::Status RunChartDownsample(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::RunChartDownsampleRequest& request, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse* response) = 0; - std::unique_ptr< ::grpc::ClientAsyncResponseReaderInterface< ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse>> AsyncRunChartDownsample(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::RunChartDownsampleRequest& request, ::grpc::CompletionQueue* cq) { - return std::unique_ptr< ::grpc::ClientAsyncResponseReaderInterface< ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse>>(AsyncRunChartDownsampleRaw(context, request, cq)); - } - std::unique_ptr< ::grpc::ClientAsyncResponseReaderInterface< ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse>> PrepareAsyncRunChartDownsample(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::RunChartDownsampleRequest& request, ::grpc::CompletionQueue* cq) { - return std::unique_ptr< ::grpc::ClientAsyncResponseReaderInterface< ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse>>(PrepareAsyncRunChartDownsampleRaw(context, request, cq)); - } - // * - // Creates a new Table based on the provided configuration. This can be used as a regular table from the other methods - // in this interface, or can be interacted with via the InputTableService to modify its contents. - virtual ::grpc::Status CreateInputTable(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::CreateInputTableRequest& request, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse* response) = 0; - std::unique_ptr< ::grpc::ClientAsyncResponseReaderInterface< ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse>> AsyncCreateInputTable(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::CreateInputTableRequest& request, ::grpc::CompletionQueue* cq) { - return std::unique_ptr< ::grpc::ClientAsyncResponseReaderInterface< ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse>>(AsyncCreateInputTableRaw(context, request, cq)); - } - std::unique_ptr< ::grpc::ClientAsyncResponseReaderInterface< ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse>> PrepareAsyncCreateInputTable(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::CreateInputTableRequest& request, ::grpc::CompletionQueue* cq) { - return std::unique_ptr< ::grpc::ClientAsyncResponseReaderInterface< ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse>>(PrepareAsyncCreateInputTableRaw(context, request, cq)); - } - // * - // Filters the left table based on the set of values in the right table. - // - // Note that when the right table ticks, all of the rows in the left table are going to be re-evaluated, - // thus the intention is that the right table is fairly slow moving compared with the left table. - virtual ::grpc::Status WhereIn(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::WhereInRequest& request, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse* response) = 0; - std::unique_ptr< ::grpc::ClientAsyncResponseReaderInterface< ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse>> AsyncWhereIn(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::WhereInRequest& request, ::grpc::CompletionQueue* cq) { - return std::unique_ptr< ::grpc::ClientAsyncResponseReaderInterface< ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse>>(AsyncWhereInRaw(context, request, cq)); - } - std::unique_ptr< ::grpc::ClientAsyncResponseReaderInterface< ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse>> PrepareAsyncWhereIn(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::WhereInRequest& request, ::grpc::CompletionQueue* cq) { - return std::unique_ptr< ::grpc::ClientAsyncResponseReaderInterface< ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse>>(PrepareAsyncWhereInRaw(context, request, cq)); - } - // - // Batch a series of requests and send them all at once. This enables the user to create intermediate tables without - // requiring them to be exported and managed by the client. The server will automatically release any tables when they - // are no longer depended upon. - std::unique_ptr< ::grpc::ClientReaderInterface< ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse>> Batch(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::BatchTableRequest& request) { - return std::unique_ptr< ::grpc::ClientReaderInterface< ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse>>(BatchRaw(context, request)); - } - std::unique_ptr< ::grpc::ClientAsyncReaderInterface< ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse>> AsyncBatch(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::BatchTableRequest& request, ::grpc::CompletionQueue* cq, void* tag) { - return std::unique_ptr< ::grpc::ClientAsyncReaderInterface< ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse>>(AsyncBatchRaw(context, request, cq, tag)); - } - std::unique_ptr< ::grpc::ClientAsyncReaderInterface< ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse>> PrepareAsyncBatch(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::BatchTableRequest& request, ::grpc::CompletionQueue* cq) { - return std::unique_ptr< ::grpc::ClientAsyncReaderInterface< ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse>>(PrepareAsyncBatchRaw(context, request, cq)); - } - // - // Establish a stream of table updates for cheap notifications of table size updates. - // - // New streams will flush updates for all existing table exports. An export id of zero will be sent to indicate all - // exports have sent their refresh update. Table updates may be intermingled with initial refresh updates after their - // initial update had been sent. - std::unique_ptr< ::grpc::ClientReaderInterface< ::io::deephaven::proto::backplane::grpc::ExportedTableUpdateMessage>> ExportedTableUpdates(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::ExportedTableUpdatesRequest& request) { - return std::unique_ptr< ::grpc::ClientReaderInterface< ::io::deephaven::proto::backplane::grpc::ExportedTableUpdateMessage>>(ExportedTableUpdatesRaw(context, request)); - } - std::unique_ptr< ::grpc::ClientAsyncReaderInterface< ::io::deephaven::proto::backplane::grpc::ExportedTableUpdateMessage>> AsyncExportedTableUpdates(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::ExportedTableUpdatesRequest& request, ::grpc::CompletionQueue* cq, void* tag) { - return std::unique_ptr< ::grpc::ClientAsyncReaderInterface< ::io::deephaven::proto::backplane::grpc::ExportedTableUpdateMessage>>(AsyncExportedTableUpdatesRaw(context, request, cq, tag)); - } - std::unique_ptr< ::grpc::ClientAsyncReaderInterface< ::io::deephaven::proto::backplane::grpc::ExportedTableUpdateMessage>> PrepareAsyncExportedTableUpdates(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::ExportedTableUpdatesRequest& request, ::grpc::CompletionQueue* cq) { - return std::unique_ptr< ::grpc::ClientAsyncReaderInterface< ::io::deephaven::proto::backplane::grpc::ExportedTableUpdateMessage>>(PrepareAsyncExportedTableUpdatesRaw(context, request, cq)); - } - // - // Seek a row number within a table. - virtual ::grpc::Status SeekRow(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::SeekRowRequest& request, ::io::deephaven::proto::backplane::grpc::SeekRowResponse* response) = 0; - std::unique_ptr< ::grpc::ClientAsyncResponseReaderInterface< ::io::deephaven::proto::backplane::grpc::SeekRowResponse>> AsyncSeekRow(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::SeekRowRequest& request, ::grpc::CompletionQueue* cq) { - return std::unique_ptr< ::grpc::ClientAsyncResponseReaderInterface< ::io::deephaven::proto::backplane::grpc::SeekRowResponse>>(AsyncSeekRowRaw(context, request, cq)); - } - std::unique_ptr< ::grpc::ClientAsyncResponseReaderInterface< ::io::deephaven::proto::backplane::grpc::SeekRowResponse>> PrepareAsyncSeekRow(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::SeekRowRequest& request, ::grpc::CompletionQueue* cq) { - return std::unique_ptr< ::grpc::ClientAsyncResponseReaderInterface< ::io::deephaven::proto::backplane::grpc::SeekRowResponse>>(PrepareAsyncSeekRowRaw(context, request, cq)); - } - // - // Returns the meta table of a table. - virtual ::grpc::Status MetaTable(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::MetaTableRequest& request, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse* response) = 0; - std::unique_ptr< ::grpc::ClientAsyncResponseReaderInterface< ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse>> AsyncMetaTable(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::MetaTableRequest& request, ::grpc::CompletionQueue* cq) { - return std::unique_ptr< ::grpc::ClientAsyncResponseReaderInterface< ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse>>(AsyncMetaTableRaw(context, request, cq)); - } - std::unique_ptr< ::grpc::ClientAsyncResponseReaderInterface< ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse>> PrepareAsyncMetaTable(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::MetaTableRequest& request, ::grpc::CompletionQueue* cq) { - return std::unique_ptr< ::grpc::ClientAsyncResponseReaderInterface< ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse>>(PrepareAsyncMetaTableRaw(context, request, cq)); - } - // * - // Returns a new table representing statistics about a single column of the provided table. This - // result table will be static - use Aggregation() instead for updating results. Presently, the - // primary use case for this is the Deephaven Web UI. - virtual ::grpc::Status ComputeColumnStatistics(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::ColumnStatisticsRequest& request, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse* response) = 0; - std::unique_ptr< ::grpc::ClientAsyncResponseReaderInterface< ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse>> AsyncComputeColumnStatistics(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::ColumnStatisticsRequest& request, ::grpc::CompletionQueue* cq) { - return std::unique_ptr< ::grpc::ClientAsyncResponseReaderInterface< ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse>>(AsyncComputeColumnStatisticsRaw(context, request, cq)); - } - std::unique_ptr< ::grpc::ClientAsyncResponseReaderInterface< ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse>> PrepareAsyncComputeColumnStatistics(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::ColumnStatisticsRequest& request, ::grpc::CompletionQueue* cq) { - return std::unique_ptr< ::grpc::ClientAsyncResponseReaderInterface< ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse>>(PrepareAsyncComputeColumnStatisticsRaw(context, request, cq)); - } - class async_interface { - public: - virtual ~async_interface() {} - // - // Request an ETCR for this ticket. Ticket must reference a Table. - virtual void GetExportedTableCreationResponse(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::Ticket* request, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse* response, std::function) = 0; - virtual void GetExportedTableCreationResponse(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::Ticket* request, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse* response, ::grpc::ClientUnaryReactor* reactor) = 0; - // - // Fetches a Table from an existing source ticket and exports it to the local session result ticket. - virtual void FetchTable(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::FetchTableRequest* request, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse* response, std::function) = 0; - virtual void FetchTable(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::FetchTableRequest* request, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse* response, ::grpc::ClientUnaryReactor* reactor) = 0; - // - // Create a table that has preview columns applied to an existing source table. - virtual void ApplyPreviewColumns(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::ApplyPreviewColumnsRequest* request, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse* response, std::function) = 0; - virtual void ApplyPreviewColumns(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::ApplyPreviewColumnsRequest* request, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse* response, ::grpc::ClientUnaryReactor* reactor) = 0; - // - // Create an empty table with the given column names and types. - virtual void EmptyTable(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::EmptyTableRequest* request, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse* response, std::function) = 0; - virtual void EmptyTable(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::EmptyTableRequest* request, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse* response, ::grpc::ClientUnaryReactor* reactor) = 0; - // - // Create a time table with the given start time and period. - virtual void TimeTable(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::TimeTableRequest* request, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse* response, std::function) = 0; - virtual void TimeTable(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::TimeTableRequest* request, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse* response, ::grpc::ClientUnaryReactor* reactor) = 0; - // - // Drop columns from the parent table. - virtual void DropColumns(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::DropColumnsRequest* request, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse* response, std::function) = 0; - virtual void DropColumns(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::DropColumnsRequest* request, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse* response, ::grpc::ClientUnaryReactor* reactor) = 0; - // - // Add columns to the given table using the given column specifications and the update table operation. - virtual void Update(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::SelectOrUpdateRequest* request, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse* response, std::function) = 0; - virtual void Update(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::SelectOrUpdateRequest* request, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse* response, ::grpc::ClientUnaryReactor* reactor) = 0; - // - // Add columns to the given table using the given column specifications and the lazyUpdate table operation. - virtual void LazyUpdate(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::SelectOrUpdateRequest* request, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse* response, std::function) = 0; - virtual void LazyUpdate(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::SelectOrUpdateRequest* request, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse* response, ::grpc::ClientUnaryReactor* reactor) = 0; - // - // Add columns to the given table using the given column specifications and the view table operation. - virtual void View(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::SelectOrUpdateRequest* request, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse* response, std::function) = 0; - virtual void View(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::SelectOrUpdateRequest* request, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse* response, ::grpc::ClientUnaryReactor* reactor) = 0; - // - // Add columns to the given table using the given column specifications and the updateView table operation. - virtual void UpdateView(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::SelectOrUpdateRequest* request, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse* response, std::function) = 0; - virtual void UpdateView(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::SelectOrUpdateRequest* request, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse* response, ::grpc::ClientUnaryReactor* reactor) = 0; - // - // Select the given columns from the given table. - virtual void Select(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::SelectOrUpdateRequest* request, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse* response, std::function) = 0; - virtual void Select(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::SelectOrUpdateRequest* request, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse* response, ::grpc::ClientUnaryReactor* reactor) = 0; - // - // Returns the result of an updateBy table operation. - virtual void UpdateBy(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::UpdateByRequest* request, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse* response, std::function) = 0; - virtual void UpdateBy(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::UpdateByRequest* request, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse* response, ::grpc::ClientUnaryReactor* reactor) = 0; - // - // Returns a new table definition with the unique tuples of the specified columns - virtual void SelectDistinct(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::SelectDistinctRequest* request, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse* response, std::function) = 0; - virtual void SelectDistinct(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::SelectDistinctRequest* request, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse* response, ::grpc::ClientUnaryReactor* reactor) = 0; - // - // Filter parent table with structured filters. - virtual void Filter(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::FilterTableRequest* request, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse* response, std::function) = 0; - virtual void Filter(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::FilterTableRequest* request, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse* response, ::grpc::ClientUnaryReactor* reactor) = 0; - // - // Filter parent table with unstructured filters. - virtual void UnstructuredFilter(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::UnstructuredFilterTableRequest* request, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse* response, std::function) = 0; - virtual void UnstructuredFilter(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::UnstructuredFilterTableRequest* request, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse* response, ::grpc::ClientUnaryReactor* reactor) = 0; - // - // Sort parent table via the provide sort descriptors. - virtual void Sort(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::SortTableRequest* request, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse* response, std::function) = 0; - virtual void Sort(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::SortTableRequest* request, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse* response, ::grpc::ClientUnaryReactor* reactor) = 0; - // - // Extract rows from the head of the parent table. - virtual void Head(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::HeadOrTailRequest* request, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse* response, std::function) = 0; - virtual void Head(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::HeadOrTailRequest* request, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse* response, ::grpc::ClientUnaryReactor* reactor) = 0; - // - // Extract rows from the tail of the parent table. - virtual void Tail(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::HeadOrTailRequest* request, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse* response, std::function) = 0; - virtual void Tail(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::HeadOrTailRequest* request, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse* response, ::grpc::ClientUnaryReactor* reactor) = 0; - // - // Run the headBy table operation for the given group by columns on the given table. - virtual void HeadBy(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::HeadOrTailByRequest* request, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse* response, std::function) = 0; - virtual void HeadBy(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::HeadOrTailByRequest* request, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse* response, ::grpc::ClientUnaryReactor* reactor) = 0; - // - // Run the tailBy operation for the given group by columns on the given table. - virtual void TailBy(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::HeadOrTailByRequest* request, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse* response, std::function) = 0; - virtual void TailBy(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::HeadOrTailByRequest* request, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse* response, ::grpc::ClientUnaryReactor* reactor) = 0; - // - // Ungroup the given columns (all columns will be ungrouped if columnsToUngroup is empty or unspecified). - virtual void Ungroup(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::UngroupRequest* request, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse* response, std::function) = 0; - virtual void Ungroup(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::UngroupRequest* request, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse* response, ::grpc::ClientUnaryReactor* reactor) = 0; - // - // Create a merged table from the given input tables. If a key column is provided (not null), a sorted - // merged will be performed using that column. - virtual void MergeTables(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::MergeTablesRequest* request, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse* response, std::function) = 0; - virtual void MergeTables(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::MergeTablesRequest* request, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse* response, ::grpc::ClientUnaryReactor* reactor) = 0; - // - // Returns the result of a cross join operation. Also known as the cartesian product. - virtual void CrossJoinTables(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::CrossJoinTablesRequest* request, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse* response, std::function) = 0; - virtual void CrossJoinTables(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::CrossJoinTablesRequest* request, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse* response, ::grpc::ClientUnaryReactor* reactor) = 0; - // - // Returns the result of a natural join operation. - virtual void NaturalJoinTables(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::NaturalJoinTablesRequest* request, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse* response, std::function) = 0; - virtual void NaturalJoinTables(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::NaturalJoinTablesRequest* request, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse* response, ::grpc::ClientUnaryReactor* reactor) = 0; - // - // Returns the result of an exact join operation. - virtual void ExactJoinTables(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::ExactJoinTablesRequest* request, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse* response, std::function) = 0; - virtual void ExactJoinTables(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::ExactJoinTablesRequest* request, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse* response, ::grpc::ClientUnaryReactor* reactor) = 0; - // - // Returns the result of a left join operation. - virtual void LeftJoinTables(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::LeftJoinTablesRequest* request, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse* response, std::function) = 0; - virtual void LeftJoinTables(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::LeftJoinTablesRequest* request, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse* response, ::grpc::ClientUnaryReactor* reactor) = 0; - // - // Returns the result of an as of join operation. - // - // Deprecated: Please use AjTables or RajTables. - virtual void AsOfJoinTables(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::AsOfJoinTablesRequest* request, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse* response, std::function) = 0; - virtual void AsOfJoinTables(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::AsOfJoinTablesRequest* request, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse* response, ::grpc::ClientUnaryReactor* reactor) = 0; - // - // Returns the result of an aj operation. - virtual void AjTables(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::AjRajTablesRequest* request, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse* response, std::function) = 0; - virtual void AjTables(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::AjRajTablesRequest* request, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse* response, ::grpc::ClientUnaryReactor* reactor) = 0; - // - // Returns the result of an raj operation. - virtual void RajTables(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::AjRajTablesRequest* request, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse* response, std::function) = 0; - virtual void RajTables(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::AjRajTablesRequest* request, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse* response, ::grpc::ClientUnaryReactor* reactor) = 0; - // - // Returns the result of a multi-join operation. - virtual void MultiJoinTables(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::MultiJoinTablesRequest* request, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse* response, std::function) = 0; - virtual void MultiJoinTables(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::MultiJoinTablesRequest* request, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse* response, ::grpc::ClientUnaryReactor* reactor) = 0; - // - // Returns the result of a range join operation. - virtual void RangeJoinTables(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::RangeJoinTablesRequest* request, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse* response, std::function) = 0; - virtual void RangeJoinTables(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::RangeJoinTablesRequest* request, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse* response, ::grpc::ClientUnaryReactor* reactor) = 0; - // - // Returns the result of an aggregate table operation. - // - // Deprecated: Please use AggregateAll or Aggregate instead - virtual void ComboAggregate(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::ComboAggregateRequest* request, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse* response, std::function) = 0; - virtual void ComboAggregate(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::ComboAggregateRequest* request, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse* response, ::grpc::ClientUnaryReactor* reactor) = 0; - // - // Aggregates all non-grouping columns against a single aggregation specification. - virtual void AggregateAll(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::AggregateAllRequest* request, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse* response, std::function) = 0; - virtual void AggregateAll(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::AggregateAllRequest* request, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse* response, ::grpc::ClientUnaryReactor* reactor) = 0; - // - // Produce an aggregated result by grouping the source_id table according to the group_by_columns and applying - // aggregations to each resulting group of rows. The result table will have one row per group, ordered by - // the encounter order within the source_id table, thereby ensuring that the row key for a given group never - // changes. - virtual void Aggregate(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::AggregateRequest* request, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse* response, std::function) = 0; - virtual void Aggregate(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::AggregateRequest* request, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse* response, ::grpc::ClientUnaryReactor* reactor) = 0; - // - // Takes a single snapshot of the source_id table. - virtual void Snapshot(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::SnapshotTableRequest* request, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse* response, std::function) = 0; - virtual void Snapshot(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::SnapshotTableRequest* request, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse* response, ::grpc::ClientUnaryReactor* reactor) = 0; - // - // Snapshot base_id, triggered by trigger_id, and export the resulting new table. - // The trigger_id table's change events cause a new snapshot to be taken. The result table includes a - // "snapshot key" which is a subset (possibly all) of the base_id table's columns. The - // remaining columns in the result table come from base_id table, the table being snapshotted. - virtual void SnapshotWhen(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::SnapshotWhenTableRequest* request, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse* response, std::function) = 0; - virtual void SnapshotWhen(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::SnapshotWhenTableRequest* request, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse* response, ::grpc::ClientUnaryReactor* reactor) = 0; - // - // Returns a new table with a flattened row set. - virtual void Flatten(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::FlattenRequest* request, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse* response, std::function) = 0; - virtual void Flatten(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::FlattenRequest* request, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse* response, ::grpc::ClientUnaryReactor* reactor) = 0; - // * - // Downsamples a table assume its contents will be rendered in a run chart, with each subsequent row holding a later - // X value (i.e., sorted on that column). Multiple Y columns can be specified, as can a range of values for the X - // column to support zooming in. - virtual void RunChartDownsample(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::RunChartDownsampleRequest* request, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse* response, std::function) = 0; - virtual void RunChartDownsample(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::RunChartDownsampleRequest* request, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse* response, ::grpc::ClientUnaryReactor* reactor) = 0; - // * - // Creates a new Table based on the provided configuration. This can be used as a regular table from the other methods - // in this interface, or can be interacted with via the InputTableService to modify its contents. - virtual void CreateInputTable(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::CreateInputTableRequest* request, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse* response, std::function) = 0; - virtual void CreateInputTable(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::CreateInputTableRequest* request, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse* response, ::grpc::ClientUnaryReactor* reactor) = 0; - // * - // Filters the left table based on the set of values in the right table. - // - // Note that when the right table ticks, all of the rows in the left table are going to be re-evaluated, - // thus the intention is that the right table is fairly slow moving compared with the left table. - virtual void WhereIn(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::WhereInRequest* request, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse* response, std::function) = 0; - virtual void WhereIn(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::WhereInRequest* request, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse* response, ::grpc::ClientUnaryReactor* reactor) = 0; - // - // Batch a series of requests and send them all at once. This enables the user to create intermediate tables without - // requiring them to be exported and managed by the client. The server will automatically release any tables when they - // are no longer depended upon. - virtual void Batch(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::BatchTableRequest* request, ::grpc::ClientReadReactor< ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse>* reactor) = 0; - // - // Establish a stream of table updates for cheap notifications of table size updates. - // - // New streams will flush updates for all existing table exports. An export id of zero will be sent to indicate all - // exports have sent their refresh update. Table updates may be intermingled with initial refresh updates after their - // initial update had been sent. - virtual void ExportedTableUpdates(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::ExportedTableUpdatesRequest* request, ::grpc::ClientReadReactor< ::io::deephaven::proto::backplane::grpc::ExportedTableUpdateMessage>* reactor) = 0; - // - // Seek a row number within a table. - virtual void SeekRow(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::SeekRowRequest* request, ::io::deephaven::proto::backplane::grpc::SeekRowResponse* response, std::function) = 0; - virtual void SeekRow(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::SeekRowRequest* request, ::io::deephaven::proto::backplane::grpc::SeekRowResponse* response, ::grpc::ClientUnaryReactor* reactor) = 0; - // - // Returns the meta table of a table. - virtual void MetaTable(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::MetaTableRequest* request, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse* response, std::function) = 0; - virtual void MetaTable(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::MetaTableRequest* request, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse* response, ::grpc::ClientUnaryReactor* reactor) = 0; - // * - // Returns a new table representing statistics about a single column of the provided table. This - // result table will be static - use Aggregation() instead for updating results. Presently, the - // primary use case for this is the Deephaven Web UI. - virtual void ComputeColumnStatistics(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::ColumnStatisticsRequest* request, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse* response, std::function) = 0; - virtual void ComputeColumnStatistics(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::ColumnStatisticsRequest* request, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse* response, ::grpc::ClientUnaryReactor* reactor) = 0; - }; - typedef class async_interface experimental_async_interface; - virtual class async_interface* async() { return nullptr; } - class async_interface* experimental_async() { return async(); } - private: - virtual ::grpc::ClientAsyncResponseReaderInterface< ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse>* AsyncGetExportedTableCreationResponseRaw(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::Ticket& request, ::grpc::CompletionQueue* cq) = 0; - virtual ::grpc::ClientAsyncResponseReaderInterface< ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse>* PrepareAsyncGetExportedTableCreationResponseRaw(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::Ticket& request, ::grpc::CompletionQueue* cq) = 0; - virtual ::grpc::ClientAsyncResponseReaderInterface< ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse>* AsyncFetchTableRaw(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::FetchTableRequest& request, ::grpc::CompletionQueue* cq) = 0; - virtual ::grpc::ClientAsyncResponseReaderInterface< ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse>* PrepareAsyncFetchTableRaw(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::FetchTableRequest& request, ::grpc::CompletionQueue* cq) = 0; - virtual ::grpc::ClientAsyncResponseReaderInterface< ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse>* AsyncApplyPreviewColumnsRaw(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::ApplyPreviewColumnsRequest& request, ::grpc::CompletionQueue* cq) = 0; - virtual ::grpc::ClientAsyncResponseReaderInterface< ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse>* PrepareAsyncApplyPreviewColumnsRaw(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::ApplyPreviewColumnsRequest& request, ::grpc::CompletionQueue* cq) = 0; - virtual ::grpc::ClientAsyncResponseReaderInterface< ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse>* AsyncEmptyTableRaw(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::EmptyTableRequest& request, ::grpc::CompletionQueue* cq) = 0; - virtual ::grpc::ClientAsyncResponseReaderInterface< ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse>* PrepareAsyncEmptyTableRaw(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::EmptyTableRequest& request, ::grpc::CompletionQueue* cq) = 0; - virtual ::grpc::ClientAsyncResponseReaderInterface< ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse>* AsyncTimeTableRaw(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::TimeTableRequest& request, ::grpc::CompletionQueue* cq) = 0; - virtual ::grpc::ClientAsyncResponseReaderInterface< ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse>* PrepareAsyncTimeTableRaw(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::TimeTableRequest& request, ::grpc::CompletionQueue* cq) = 0; - virtual ::grpc::ClientAsyncResponseReaderInterface< ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse>* AsyncDropColumnsRaw(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::DropColumnsRequest& request, ::grpc::CompletionQueue* cq) = 0; - virtual ::grpc::ClientAsyncResponseReaderInterface< ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse>* PrepareAsyncDropColumnsRaw(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::DropColumnsRequest& request, ::grpc::CompletionQueue* cq) = 0; - virtual ::grpc::ClientAsyncResponseReaderInterface< ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse>* AsyncUpdateRaw(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::SelectOrUpdateRequest& request, ::grpc::CompletionQueue* cq) = 0; - virtual ::grpc::ClientAsyncResponseReaderInterface< ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse>* PrepareAsyncUpdateRaw(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::SelectOrUpdateRequest& request, ::grpc::CompletionQueue* cq) = 0; - virtual ::grpc::ClientAsyncResponseReaderInterface< ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse>* AsyncLazyUpdateRaw(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::SelectOrUpdateRequest& request, ::grpc::CompletionQueue* cq) = 0; - virtual ::grpc::ClientAsyncResponseReaderInterface< ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse>* PrepareAsyncLazyUpdateRaw(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::SelectOrUpdateRequest& request, ::grpc::CompletionQueue* cq) = 0; - virtual ::grpc::ClientAsyncResponseReaderInterface< ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse>* AsyncViewRaw(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::SelectOrUpdateRequest& request, ::grpc::CompletionQueue* cq) = 0; - virtual ::grpc::ClientAsyncResponseReaderInterface< ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse>* PrepareAsyncViewRaw(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::SelectOrUpdateRequest& request, ::grpc::CompletionQueue* cq) = 0; - virtual ::grpc::ClientAsyncResponseReaderInterface< ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse>* AsyncUpdateViewRaw(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::SelectOrUpdateRequest& request, ::grpc::CompletionQueue* cq) = 0; - virtual ::grpc::ClientAsyncResponseReaderInterface< ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse>* PrepareAsyncUpdateViewRaw(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::SelectOrUpdateRequest& request, ::grpc::CompletionQueue* cq) = 0; - virtual ::grpc::ClientAsyncResponseReaderInterface< ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse>* AsyncSelectRaw(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::SelectOrUpdateRequest& request, ::grpc::CompletionQueue* cq) = 0; - virtual ::grpc::ClientAsyncResponseReaderInterface< ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse>* PrepareAsyncSelectRaw(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::SelectOrUpdateRequest& request, ::grpc::CompletionQueue* cq) = 0; - virtual ::grpc::ClientAsyncResponseReaderInterface< ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse>* AsyncUpdateByRaw(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::UpdateByRequest& request, ::grpc::CompletionQueue* cq) = 0; - virtual ::grpc::ClientAsyncResponseReaderInterface< ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse>* PrepareAsyncUpdateByRaw(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::UpdateByRequest& request, ::grpc::CompletionQueue* cq) = 0; - virtual ::grpc::ClientAsyncResponseReaderInterface< ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse>* AsyncSelectDistinctRaw(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::SelectDistinctRequest& request, ::grpc::CompletionQueue* cq) = 0; - virtual ::grpc::ClientAsyncResponseReaderInterface< ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse>* PrepareAsyncSelectDistinctRaw(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::SelectDistinctRequest& request, ::grpc::CompletionQueue* cq) = 0; - virtual ::grpc::ClientAsyncResponseReaderInterface< ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse>* AsyncFilterRaw(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::FilterTableRequest& request, ::grpc::CompletionQueue* cq) = 0; - virtual ::grpc::ClientAsyncResponseReaderInterface< ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse>* PrepareAsyncFilterRaw(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::FilterTableRequest& request, ::grpc::CompletionQueue* cq) = 0; - virtual ::grpc::ClientAsyncResponseReaderInterface< ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse>* AsyncUnstructuredFilterRaw(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::UnstructuredFilterTableRequest& request, ::grpc::CompletionQueue* cq) = 0; - virtual ::grpc::ClientAsyncResponseReaderInterface< ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse>* PrepareAsyncUnstructuredFilterRaw(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::UnstructuredFilterTableRequest& request, ::grpc::CompletionQueue* cq) = 0; - virtual ::grpc::ClientAsyncResponseReaderInterface< ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse>* AsyncSortRaw(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::SortTableRequest& request, ::grpc::CompletionQueue* cq) = 0; - virtual ::grpc::ClientAsyncResponseReaderInterface< ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse>* PrepareAsyncSortRaw(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::SortTableRequest& request, ::grpc::CompletionQueue* cq) = 0; - virtual ::grpc::ClientAsyncResponseReaderInterface< ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse>* AsyncHeadRaw(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::HeadOrTailRequest& request, ::grpc::CompletionQueue* cq) = 0; - virtual ::grpc::ClientAsyncResponseReaderInterface< ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse>* PrepareAsyncHeadRaw(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::HeadOrTailRequest& request, ::grpc::CompletionQueue* cq) = 0; - virtual ::grpc::ClientAsyncResponseReaderInterface< ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse>* AsyncTailRaw(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::HeadOrTailRequest& request, ::grpc::CompletionQueue* cq) = 0; - virtual ::grpc::ClientAsyncResponseReaderInterface< ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse>* PrepareAsyncTailRaw(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::HeadOrTailRequest& request, ::grpc::CompletionQueue* cq) = 0; - virtual ::grpc::ClientAsyncResponseReaderInterface< ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse>* AsyncHeadByRaw(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::HeadOrTailByRequest& request, ::grpc::CompletionQueue* cq) = 0; - virtual ::grpc::ClientAsyncResponseReaderInterface< ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse>* PrepareAsyncHeadByRaw(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::HeadOrTailByRequest& request, ::grpc::CompletionQueue* cq) = 0; - virtual ::grpc::ClientAsyncResponseReaderInterface< ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse>* AsyncTailByRaw(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::HeadOrTailByRequest& request, ::grpc::CompletionQueue* cq) = 0; - virtual ::grpc::ClientAsyncResponseReaderInterface< ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse>* PrepareAsyncTailByRaw(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::HeadOrTailByRequest& request, ::grpc::CompletionQueue* cq) = 0; - virtual ::grpc::ClientAsyncResponseReaderInterface< ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse>* AsyncUngroupRaw(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::UngroupRequest& request, ::grpc::CompletionQueue* cq) = 0; - virtual ::grpc::ClientAsyncResponseReaderInterface< ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse>* PrepareAsyncUngroupRaw(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::UngroupRequest& request, ::grpc::CompletionQueue* cq) = 0; - virtual ::grpc::ClientAsyncResponseReaderInterface< ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse>* AsyncMergeTablesRaw(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::MergeTablesRequest& request, ::grpc::CompletionQueue* cq) = 0; - virtual ::grpc::ClientAsyncResponseReaderInterface< ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse>* PrepareAsyncMergeTablesRaw(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::MergeTablesRequest& request, ::grpc::CompletionQueue* cq) = 0; - virtual ::grpc::ClientAsyncResponseReaderInterface< ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse>* AsyncCrossJoinTablesRaw(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::CrossJoinTablesRequest& request, ::grpc::CompletionQueue* cq) = 0; - virtual ::grpc::ClientAsyncResponseReaderInterface< ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse>* PrepareAsyncCrossJoinTablesRaw(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::CrossJoinTablesRequest& request, ::grpc::CompletionQueue* cq) = 0; - virtual ::grpc::ClientAsyncResponseReaderInterface< ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse>* AsyncNaturalJoinTablesRaw(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::NaturalJoinTablesRequest& request, ::grpc::CompletionQueue* cq) = 0; - virtual ::grpc::ClientAsyncResponseReaderInterface< ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse>* PrepareAsyncNaturalJoinTablesRaw(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::NaturalJoinTablesRequest& request, ::grpc::CompletionQueue* cq) = 0; - virtual ::grpc::ClientAsyncResponseReaderInterface< ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse>* AsyncExactJoinTablesRaw(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::ExactJoinTablesRequest& request, ::grpc::CompletionQueue* cq) = 0; - virtual ::grpc::ClientAsyncResponseReaderInterface< ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse>* PrepareAsyncExactJoinTablesRaw(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::ExactJoinTablesRequest& request, ::grpc::CompletionQueue* cq) = 0; - virtual ::grpc::ClientAsyncResponseReaderInterface< ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse>* AsyncLeftJoinTablesRaw(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::LeftJoinTablesRequest& request, ::grpc::CompletionQueue* cq) = 0; - virtual ::grpc::ClientAsyncResponseReaderInterface< ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse>* PrepareAsyncLeftJoinTablesRaw(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::LeftJoinTablesRequest& request, ::grpc::CompletionQueue* cq) = 0; - virtual ::grpc::ClientAsyncResponseReaderInterface< ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse>* AsyncAsOfJoinTablesRaw(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::AsOfJoinTablesRequest& request, ::grpc::CompletionQueue* cq) = 0; - virtual ::grpc::ClientAsyncResponseReaderInterface< ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse>* PrepareAsyncAsOfJoinTablesRaw(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::AsOfJoinTablesRequest& request, ::grpc::CompletionQueue* cq) = 0; - virtual ::grpc::ClientAsyncResponseReaderInterface< ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse>* AsyncAjTablesRaw(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::AjRajTablesRequest& request, ::grpc::CompletionQueue* cq) = 0; - virtual ::grpc::ClientAsyncResponseReaderInterface< ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse>* PrepareAsyncAjTablesRaw(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::AjRajTablesRequest& request, ::grpc::CompletionQueue* cq) = 0; - virtual ::grpc::ClientAsyncResponseReaderInterface< ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse>* AsyncRajTablesRaw(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::AjRajTablesRequest& request, ::grpc::CompletionQueue* cq) = 0; - virtual ::grpc::ClientAsyncResponseReaderInterface< ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse>* PrepareAsyncRajTablesRaw(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::AjRajTablesRequest& request, ::grpc::CompletionQueue* cq) = 0; - virtual ::grpc::ClientAsyncResponseReaderInterface< ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse>* AsyncMultiJoinTablesRaw(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::MultiJoinTablesRequest& request, ::grpc::CompletionQueue* cq) = 0; - virtual ::grpc::ClientAsyncResponseReaderInterface< ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse>* PrepareAsyncMultiJoinTablesRaw(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::MultiJoinTablesRequest& request, ::grpc::CompletionQueue* cq) = 0; - virtual ::grpc::ClientAsyncResponseReaderInterface< ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse>* AsyncRangeJoinTablesRaw(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::RangeJoinTablesRequest& request, ::grpc::CompletionQueue* cq) = 0; - virtual ::grpc::ClientAsyncResponseReaderInterface< ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse>* PrepareAsyncRangeJoinTablesRaw(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::RangeJoinTablesRequest& request, ::grpc::CompletionQueue* cq) = 0; - virtual ::grpc::ClientAsyncResponseReaderInterface< ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse>* AsyncComboAggregateRaw(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::ComboAggregateRequest& request, ::grpc::CompletionQueue* cq) = 0; - virtual ::grpc::ClientAsyncResponseReaderInterface< ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse>* PrepareAsyncComboAggregateRaw(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::ComboAggregateRequest& request, ::grpc::CompletionQueue* cq) = 0; - virtual ::grpc::ClientAsyncResponseReaderInterface< ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse>* AsyncAggregateAllRaw(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::AggregateAllRequest& request, ::grpc::CompletionQueue* cq) = 0; - virtual ::grpc::ClientAsyncResponseReaderInterface< ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse>* PrepareAsyncAggregateAllRaw(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::AggregateAllRequest& request, ::grpc::CompletionQueue* cq) = 0; - virtual ::grpc::ClientAsyncResponseReaderInterface< ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse>* AsyncAggregateRaw(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::AggregateRequest& request, ::grpc::CompletionQueue* cq) = 0; - virtual ::grpc::ClientAsyncResponseReaderInterface< ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse>* PrepareAsyncAggregateRaw(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::AggregateRequest& request, ::grpc::CompletionQueue* cq) = 0; - virtual ::grpc::ClientAsyncResponseReaderInterface< ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse>* AsyncSnapshotRaw(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::SnapshotTableRequest& request, ::grpc::CompletionQueue* cq) = 0; - virtual ::grpc::ClientAsyncResponseReaderInterface< ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse>* PrepareAsyncSnapshotRaw(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::SnapshotTableRequest& request, ::grpc::CompletionQueue* cq) = 0; - virtual ::grpc::ClientAsyncResponseReaderInterface< ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse>* AsyncSnapshotWhenRaw(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::SnapshotWhenTableRequest& request, ::grpc::CompletionQueue* cq) = 0; - virtual ::grpc::ClientAsyncResponseReaderInterface< ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse>* PrepareAsyncSnapshotWhenRaw(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::SnapshotWhenTableRequest& request, ::grpc::CompletionQueue* cq) = 0; - virtual ::grpc::ClientAsyncResponseReaderInterface< ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse>* AsyncFlattenRaw(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::FlattenRequest& request, ::grpc::CompletionQueue* cq) = 0; - virtual ::grpc::ClientAsyncResponseReaderInterface< ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse>* PrepareAsyncFlattenRaw(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::FlattenRequest& request, ::grpc::CompletionQueue* cq) = 0; - virtual ::grpc::ClientAsyncResponseReaderInterface< ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse>* AsyncRunChartDownsampleRaw(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::RunChartDownsampleRequest& request, ::grpc::CompletionQueue* cq) = 0; - virtual ::grpc::ClientAsyncResponseReaderInterface< ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse>* PrepareAsyncRunChartDownsampleRaw(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::RunChartDownsampleRequest& request, ::grpc::CompletionQueue* cq) = 0; - virtual ::grpc::ClientAsyncResponseReaderInterface< ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse>* AsyncCreateInputTableRaw(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::CreateInputTableRequest& request, ::grpc::CompletionQueue* cq) = 0; - virtual ::grpc::ClientAsyncResponseReaderInterface< ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse>* PrepareAsyncCreateInputTableRaw(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::CreateInputTableRequest& request, ::grpc::CompletionQueue* cq) = 0; - virtual ::grpc::ClientAsyncResponseReaderInterface< ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse>* AsyncWhereInRaw(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::WhereInRequest& request, ::grpc::CompletionQueue* cq) = 0; - virtual ::grpc::ClientAsyncResponseReaderInterface< ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse>* PrepareAsyncWhereInRaw(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::WhereInRequest& request, ::grpc::CompletionQueue* cq) = 0; - virtual ::grpc::ClientReaderInterface< ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse>* BatchRaw(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::BatchTableRequest& request) = 0; - virtual ::grpc::ClientAsyncReaderInterface< ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse>* AsyncBatchRaw(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::BatchTableRequest& request, ::grpc::CompletionQueue* cq, void* tag) = 0; - virtual ::grpc::ClientAsyncReaderInterface< ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse>* PrepareAsyncBatchRaw(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::BatchTableRequest& request, ::grpc::CompletionQueue* cq) = 0; - virtual ::grpc::ClientReaderInterface< ::io::deephaven::proto::backplane::grpc::ExportedTableUpdateMessage>* ExportedTableUpdatesRaw(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::ExportedTableUpdatesRequest& request) = 0; - virtual ::grpc::ClientAsyncReaderInterface< ::io::deephaven::proto::backplane::grpc::ExportedTableUpdateMessage>* AsyncExportedTableUpdatesRaw(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::ExportedTableUpdatesRequest& request, ::grpc::CompletionQueue* cq, void* tag) = 0; - virtual ::grpc::ClientAsyncReaderInterface< ::io::deephaven::proto::backplane::grpc::ExportedTableUpdateMessage>* PrepareAsyncExportedTableUpdatesRaw(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::ExportedTableUpdatesRequest& request, ::grpc::CompletionQueue* cq) = 0; - virtual ::grpc::ClientAsyncResponseReaderInterface< ::io::deephaven::proto::backplane::grpc::SeekRowResponse>* AsyncSeekRowRaw(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::SeekRowRequest& request, ::grpc::CompletionQueue* cq) = 0; - virtual ::grpc::ClientAsyncResponseReaderInterface< ::io::deephaven::proto::backplane::grpc::SeekRowResponse>* PrepareAsyncSeekRowRaw(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::SeekRowRequest& request, ::grpc::CompletionQueue* cq) = 0; - virtual ::grpc::ClientAsyncResponseReaderInterface< ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse>* AsyncMetaTableRaw(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::MetaTableRequest& request, ::grpc::CompletionQueue* cq) = 0; - virtual ::grpc::ClientAsyncResponseReaderInterface< ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse>* PrepareAsyncMetaTableRaw(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::MetaTableRequest& request, ::grpc::CompletionQueue* cq) = 0; - virtual ::grpc::ClientAsyncResponseReaderInterface< ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse>* AsyncComputeColumnStatisticsRaw(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::ColumnStatisticsRequest& request, ::grpc::CompletionQueue* cq) = 0; - virtual ::grpc::ClientAsyncResponseReaderInterface< ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse>* PrepareAsyncComputeColumnStatisticsRaw(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::ColumnStatisticsRequest& request, ::grpc::CompletionQueue* cq) = 0; - }; - class Stub final : public StubInterface { - public: - Stub(const std::shared_ptr< ::grpc::ChannelInterface>& channel, const ::grpc::StubOptions& options = ::grpc::StubOptions()); - ::grpc::Status GetExportedTableCreationResponse(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::Ticket& request, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse* response) override; - std::unique_ptr< ::grpc::ClientAsyncResponseReader< ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse>> AsyncGetExportedTableCreationResponse(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::Ticket& request, ::grpc::CompletionQueue* cq) { - return std::unique_ptr< ::grpc::ClientAsyncResponseReader< ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse>>(AsyncGetExportedTableCreationResponseRaw(context, request, cq)); - } - std::unique_ptr< ::grpc::ClientAsyncResponseReader< ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse>> PrepareAsyncGetExportedTableCreationResponse(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::Ticket& request, ::grpc::CompletionQueue* cq) { - return std::unique_ptr< ::grpc::ClientAsyncResponseReader< ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse>>(PrepareAsyncGetExportedTableCreationResponseRaw(context, request, cq)); - } - ::grpc::Status FetchTable(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::FetchTableRequest& request, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse* response) override; - std::unique_ptr< ::grpc::ClientAsyncResponseReader< ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse>> AsyncFetchTable(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::FetchTableRequest& request, ::grpc::CompletionQueue* cq) { - return std::unique_ptr< ::grpc::ClientAsyncResponseReader< ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse>>(AsyncFetchTableRaw(context, request, cq)); - } - std::unique_ptr< ::grpc::ClientAsyncResponseReader< ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse>> PrepareAsyncFetchTable(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::FetchTableRequest& request, ::grpc::CompletionQueue* cq) { - return std::unique_ptr< ::grpc::ClientAsyncResponseReader< ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse>>(PrepareAsyncFetchTableRaw(context, request, cq)); - } - ::grpc::Status ApplyPreviewColumns(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::ApplyPreviewColumnsRequest& request, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse* response) override; - std::unique_ptr< ::grpc::ClientAsyncResponseReader< ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse>> AsyncApplyPreviewColumns(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::ApplyPreviewColumnsRequest& request, ::grpc::CompletionQueue* cq) { - return std::unique_ptr< ::grpc::ClientAsyncResponseReader< ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse>>(AsyncApplyPreviewColumnsRaw(context, request, cq)); - } - std::unique_ptr< ::grpc::ClientAsyncResponseReader< ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse>> PrepareAsyncApplyPreviewColumns(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::ApplyPreviewColumnsRequest& request, ::grpc::CompletionQueue* cq) { - return std::unique_ptr< ::grpc::ClientAsyncResponseReader< ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse>>(PrepareAsyncApplyPreviewColumnsRaw(context, request, cq)); - } - ::grpc::Status EmptyTable(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::EmptyTableRequest& request, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse* response) override; - std::unique_ptr< ::grpc::ClientAsyncResponseReader< ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse>> AsyncEmptyTable(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::EmptyTableRequest& request, ::grpc::CompletionQueue* cq) { - return std::unique_ptr< ::grpc::ClientAsyncResponseReader< ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse>>(AsyncEmptyTableRaw(context, request, cq)); - } - std::unique_ptr< ::grpc::ClientAsyncResponseReader< ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse>> PrepareAsyncEmptyTable(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::EmptyTableRequest& request, ::grpc::CompletionQueue* cq) { - return std::unique_ptr< ::grpc::ClientAsyncResponseReader< ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse>>(PrepareAsyncEmptyTableRaw(context, request, cq)); - } - ::grpc::Status TimeTable(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::TimeTableRequest& request, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse* response) override; - std::unique_ptr< ::grpc::ClientAsyncResponseReader< ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse>> AsyncTimeTable(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::TimeTableRequest& request, ::grpc::CompletionQueue* cq) { - return std::unique_ptr< ::grpc::ClientAsyncResponseReader< ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse>>(AsyncTimeTableRaw(context, request, cq)); - } - std::unique_ptr< ::grpc::ClientAsyncResponseReader< ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse>> PrepareAsyncTimeTable(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::TimeTableRequest& request, ::grpc::CompletionQueue* cq) { - return std::unique_ptr< ::grpc::ClientAsyncResponseReader< ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse>>(PrepareAsyncTimeTableRaw(context, request, cq)); - } - ::grpc::Status DropColumns(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::DropColumnsRequest& request, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse* response) override; - std::unique_ptr< ::grpc::ClientAsyncResponseReader< ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse>> AsyncDropColumns(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::DropColumnsRequest& request, ::grpc::CompletionQueue* cq) { - return std::unique_ptr< ::grpc::ClientAsyncResponseReader< ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse>>(AsyncDropColumnsRaw(context, request, cq)); - } - std::unique_ptr< ::grpc::ClientAsyncResponseReader< ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse>> PrepareAsyncDropColumns(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::DropColumnsRequest& request, ::grpc::CompletionQueue* cq) { - return std::unique_ptr< ::grpc::ClientAsyncResponseReader< ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse>>(PrepareAsyncDropColumnsRaw(context, request, cq)); - } - ::grpc::Status Update(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::SelectOrUpdateRequest& request, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse* response) override; - std::unique_ptr< ::grpc::ClientAsyncResponseReader< ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse>> AsyncUpdate(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::SelectOrUpdateRequest& request, ::grpc::CompletionQueue* cq) { - return std::unique_ptr< ::grpc::ClientAsyncResponseReader< ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse>>(AsyncUpdateRaw(context, request, cq)); - } - std::unique_ptr< ::grpc::ClientAsyncResponseReader< ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse>> PrepareAsyncUpdate(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::SelectOrUpdateRequest& request, ::grpc::CompletionQueue* cq) { - return std::unique_ptr< ::grpc::ClientAsyncResponseReader< ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse>>(PrepareAsyncUpdateRaw(context, request, cq)); - } - ::grpc::Status LazyUpdate(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::SelectOrUpdateRequest& request, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse* response) override; - std::unique_ptr< ::grpc::ClientAsyncResponseReader< ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse>> AsyncLazyUpdate(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::SelectOrUpdateRequest& request, ::grpc::CompletionQueue* cq) { - return std::unique_ptr< ::grpc::ClientAsyncResponseReader< ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse>>(AsyncLazyUpdateRaw(context, request, cq)); - } - std::unique_ptr< ::grpc::ClientAsyncResponseReader< ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse>> PrepareAsyncLazyUpdate(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::SelectOrUpdateRequest& request, ::grpc::CompletionQueue* cq) { - return std::unique_ptr< ::grpc::ClientAsyncResponseReader< ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse>>(PrepareAsyncLazyUpdateRaw(context, request, cq)); - } - ::grpc::Status View(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::SelectOrUpdateRequest& request, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse* response) override; - std::unique_ptr< ::grpc::ClientAsyncResponseReader< ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse>> AsyncView(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::SelectOrUpdateRequest& request, ::grpc::CompletionQueue* cq) { - return std::unique_ptr< ::grpc::ClientAsyncResponseReader< ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse>>(AsyncViewRaw(context, request, cq)); - } - std::unique_ptr< ::grpc::ClientAsyncResponseReader< ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse>> PrepareAsyncView(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::SelectOrUpdateRequest& request, ::grpc::CompletionQueue* cq) { - return std::unique_ptr< ::grpc::ClientAsyncResponseReader< ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse>>(PrepareAsyncViewRaw(context, request, cq)); - } - ::grpc::Status UpdateView(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::SelectOrUpdateRequest& request, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse* response) override; - std::unique_ptr< ::grpc::ClientAsyncResponseReader< ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse>> AsyncUpdateView(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::SelectOrUpdateRequest& request, ::grpc::CompletionQueue* cq) { - return std::unique_ptr< ::grpc::ClientAsyncResponseReader< ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse>>(AsyncUpdateViewRaw(context, request, cq)); - } - std::unique_ptr< ::grpc::ClientAsyncResponseReader< ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse>> PrepareAsyncUpdateView(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::SelectOrUpdateRequest& request, ::grpc::CompletionQueue* cq) { - return std::unique_ptr< ::grpc::ClientAsyncResponseReader< ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse>>(PrepareAsyncUpdateViewRaw(context, request, cq)); - } - ::grpc::Status Select(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::SelectOrUpdateRequest& request, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse* response) override; - std::unique_ptr< ::grpc::ClientAsyncResponseReader< ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse>> AsyncSelect(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::SelectOrUpdateRequest& request, ::grpc::CompletionQueue* cq) { - return std::unique_ptr< ::grpc::ClientAsyncResponseReader< ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse>>(AsyncSelectRaw(context, request, cq)); - } - std::unique_ptr< ::grpc::ClientAsyncResponseReader< ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse>> PrepareAsyncSelect(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::SelectOrUpdateRequest& request, ::grpc::CompletionQueue* cq) { - return std::unique_ptr< ::grpc::ClientAsyncResponseReader< ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse>>(PrepareAsyncSelectRaw(context, request, cq)); - } - ::grpc::Status UpdateBy(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::UpdateByRequest& request, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse* response) override; - std::unique_ptr< ::grpc::ClientAsyncResponseReader< ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse>> AsyncUpdateBy(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::UpdateByRequest& request, ::grpc::CompletionQueue* cq) { - return std::unique_ptr< ::grpc::ClientAsyncResponseReader< ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse>>(AsyncUpdateByRaw(context, request, cq)); - } - std::unique_ptr< ::grpc::ClientAsyncResponseReader< ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse>> PrepareAsyncUpdateBy(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::UpdateByRequest& request, ::grpc::CompletionQueue* cq) { - return std::unique_ptr< ::grpc::ClientAsyncResponseReader< ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse>>(PrepareAsyncUpdateByRaw(context, request, cq)); - } - ::grpc::Status SelectDistinct(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::SelectDistinctRequest& request, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse* response) override; - std::unique_ptr< ::grpc::ClientAsyncResponseReader< ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse>> AsyncSelectDistinct(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::SelectDistinctRequest& request, ::grpc::CompletionQueue* cq) { - return std::unique_ptr< ::grpc::ClientAsyncResponseReader< ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse>>(AsyncSelectDistinctRaw(context, request, cq)); - } - std::unique_ptr< ::grpc::ClientAsyncResponseReader< ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse>> PrepareAsyncSelectDistinct(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::SelectDistinctRequest& request, ::grpc::CompletionQueue* cq) { - return std::unique_ptr< ::grpc::ClientAsyncResponseReader< ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse>>(PrepareAsyncSelectDistinctRaw(context, request, cq)); - } - ::grpc::Status Filter(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::FilterTableRequest& request, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse* response) override; - std::unique_ptr< ::grpc::ClientAsyncResponseReader< ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse>> AsyncFilter(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::FilterTableRequest& request, ::grpc::CompletionQueue* cq) { - return std::unique_ptr< ::grpc::ClientAsyncResponseReader< ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse>>(AsyncFilterRaw(context, request, cq)); - } - std::unique_ptr< ::grpc::ClientAsyncResponseReader< ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse>> PrepareAsyncFilter(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::FilterTableRequest& request, ::grpc::CompletionQueue* cq) { - return std::unique_ptr< ::grpc::ClientAsyncResponseReader< ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse>>(PrepareAsyncFilterRaw(context, request, cq)); - } - ::grpc::Status UnstructuredFilter(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::UnstructuredFilterTableRequest& request, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse* response) override; - std::unique_ptr< ::grpc::ClientAsyncResponseReader< ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse>> AsyncUnstructuredFilter(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::UnstructuredFilterTableRequest& request, ::grpc::CompletionQueue* cq) { - return std::unique_ptr< ::grpc::ClientAsyncResponseReader< ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse>>(AsyncUnstructuredFilterRaw(context, request, cq)); - } - std::unique_ptr< ::grpc::ClientAsyncResponseReader< ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse>> PrepareAsyncUnstructuredFilter(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::UnstructuredFilterTableRequest& request, ::grpc::CompletionQueue* cq) { - return std::unique_ptr< ::grpc::ClientAsyncResponseReader< ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse>>(PrepareAsyncUnstructuredFilterRaw(context, request, cq)); - } - ::grpc::Status Sort(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::SortTableRequest& request, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse* response) override; - std::unique_ptr< ::grpc::ClientAsyncResponseReader< ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse>> AsyncSort(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::SortTableRequest& request, ::grpc::CompletionQueue* cq) { - return std::unique_ptr< ::grpc::ClientAsyncResponseReader< ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse>>(AsyncSortRaw(context, request, cq)); - } - std::unique_ptr< ::grpc::ClientAsyncResponseReader< ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse>> PrepareAsyncSort(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::SortTableRequest& request, ::grpc::CompletionQueue* cq) { - return std::unique_ptr< ::grpc::ClientAsyncResponseReader< ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse>>(PrepareAsyncSortRaw(context, request, cq)); - } - ::grpc::Status Head(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::HeadOrTailRequest& request, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse* response) override; - std::unique_ptr< ::grpc::ClientAsyncResponseReader< ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse>> AsyncHead(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::HeadOrTailRequest& request, ::grpc::CompletionQueue* cq) { - return std::unique_ptr< ::grpc::ClientAsyncResponseReader< ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse>>(AsyncHeadRaw(context, request, cq)); - } - std::unique_ptr< ::grpc::ClientAsyncResponseReader< ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse>> PrepareAsyncHead(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::HeadOrTailRequest& request, ::grpc::CompletionQueue* cq) { - return std::unique_ptr< ::grpc::ClientAsyncResponseReader< ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse>>(PrepareAsyncHeadRaw(context, request, cq)); - } - ::grpc::Status Tail(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::HeadOrTailRequest& request, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse* response) override; - std::unique_ptr< ::grpc::ClientAsyncResponseReader< ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse>> AsyncTail(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::HeadOrTailRequest& request, ::grpc::CompletionQueue* cq) { - return std::unique_ptr< ::grpc::ClientAsyncResponseReader< ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse>>(AsyncTailRaw(context, request, cq)); - } - std::unique_ptr< ::grpc::ClientAsyncResponseReader< ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse>> PrepareAsyncTail(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::HeadOrTailRequest& request, ::grpc::CompletionQueue* cq) { - return std::unique_ptr< ::grpc::ClientAsyncResponseReader< ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse>>(PrepareAsyncTailRaw(context, request, cq)); - } - ::grpc::Status HeadBy(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::HeadOrTailByRequest& request, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse* response) override; - std::unique_ptr< ::grpc::ClientAsyncResponseReader< ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse>> AsyncHeadBy(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::HeadOrTailByRequest& request, ::grpc::CompletionQueue* cq) { - return std::unique_ptr< ::grpc::ClientAsyncResponseReader< ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse>>(AsyncHeadByRaw(context, request, cq)); - } - std::unique_ptr< ::grpc::ClientAsyncResponseReader< ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse>> PrepareAsyncHeadBy(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::HeadOrTailByRequest& request, ::grpc::CompletionQueue* cq) { - return std::unique_ptr< ::grpc::ClientAsyncResponseReader< ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse>>(PrepareAsyncHeadByRaw(context, request, cq)); - } - ::grpc::Status TailBy(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::HeadOrTailByRequest& request, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse* response) override; - std::unique_ptr< ::grpc::ClientAsyncResponseReader< ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse>> AsyncTailBy(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::HeadOrTailByRequest& request, ::grpc::CompletionQueue* cq) { - return std::unique_ptr< ::grpc::ClientAsyncResponseReader< ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse>>(AsyncTailByRaw(context, request, cq)); - } - std::unique_ptr< ::grpc::ClientAsyncResponseReader< ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse>> PrepareAsyncTailBy(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::HeadOrTailByRequest& request, ::grpc::CompletionQueue* cq) { - return std::unique_ptr< ::grpc::ClientAsyncResponseReader< ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse>>(PrepareAsyncTailByRaw(context, request, cq)); - } - ::grpc::Status Ungroup(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::UngroupRequest& request, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse* response) override; - std::unique_ptr< ::grpc::ClientAsyncResponseReader< ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse>> AsyncUngroup(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::UngroupRequest& request, ::grpc::CompletionQueue* cq) { - return std::unique_ptr< ::grpc::ClientAsyncResponseReader< ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse>>(AsyncUngroupRaw(context, request, cq)); - } - std::unique_ptr< ::grpc::ClientAsyncResponseReader< ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse>> PrepareAsyncUngroup(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::UngroupRequest& request, ::grpc::CompletionQueue* cq) { - return std::unique_ptr< ::grpc::ClientAsyncResponseReader< ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse>>(PrepareAsyncUngroupRaw(context, request, cq)); - } - ::grpc::Status MergeTables(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::MergeTablesRequest& request, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse* response) override; - std::unique_ptr< ::grpc::ClientAsyncResponseReader< ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse>> AsyncMergeTables(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::MergeTablesRequest& request, ::grpc::CompletionQueue* cq) { - return std::unique_ptr< ::grpc::ClientAsyncResponseReader< ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse>>(AsyncMergeTablesRaw(context, request, cq)); - } - std::unique_ptr< ::grpc::ClientAsyncResponseReader< ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse>> PrepareAsyncMergeTables(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::MergeTablesRequest& request, ::grpc::CompletionQueue* cq) { - return std::unique_ptr< ::grpc::ClientAsyncResponseReader< ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse>>(PrepareAsyncMergeTablesRaw(context, request, cq)); - } - ::grpc::Status CrossJoinTables(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::CrossJoinTablesRequest& request, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse* response) override; - std::unique_ptr< ::grpc::ClientAsyncResponseReader< ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse>> AsyncCrossJoinTables(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::CrossJoinTablesRequest& request, ::grpc::CompletionQueue* cq) { - return std::unique_ptr< ::grpc::ClientAsyncResponseReader< ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse>>(AsyncCrossJoinTablesRaw(context, request, cq)); - } - std::unique_ptr< ::grpc::ClientAsyncResponseReader< ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse>> PrepareAsyncCrossJoinTables(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::CrossJoinTablesRequest& request, ::grpc::CompletionQueue* cq) { - return std::unique_ptr< ::grpc::ClientAsyncResponseReader< ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse>>(PrepareAsyncCrossJoinTablesRaw(context, request, cq)); - } - ::grpc::Status NaturalJoinTables(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::NaturalJoinTablesRequest& request, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse* response) override; - std::unique_ptr< ::grpc::ClientAsyncResponseReader< ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse>> AsyncNaturalJoinTables(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::NaturalJoinTablesRequest& request, ::grpc::CompletionQueue* cq) { - return std::unique_ptr< ::grpc::ClientAsyncResponseReader< ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse>>(AsyncNaturalJoinTablesRaw(context, request, cq)); - } - std::unique_ptr< ::grpc::ClientAsyncResponseReader< ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse>> PrepareAsyncNaturalJoinTables(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::NaturalJoinTablesRequest& request, ::grpc::CompletionQueue* cq) { - return std::unique_ptr< ::grpc::ClientAsyncResponseReader< ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse>>(PrepareAsyncNaturalJoinTablesRaw(context, request, cq)); - } - ::grpc::Status ExactJoinTables(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::ExactJoinTablesRequest& request, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse* response) override; - std::unique_ptr< ::grpc::ClientAsyncResponseReader< ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse>> AsyncExactJoinTables(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::ExactJoinTablesRequest& request, ::grpc::CompletionQueue* cq) { - return std::unique_ptr< ::grpc::ClientAsyncResponseReader< ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse>>(AsyncExactJoinTablesRaw(context, request, cq)); - } - std::unique_ptr< ::grpc::ClientAsyncResponseReader< ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse>> PrepareAsyncExactJoinTables(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::ExactJoinTablesRequest& request, ::grpc::CompletionQueue* cq) { - return std::unique_ptr< ::grpc::ClientAsyncResponseReader< ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse>>(PrepareAsyncExactJoinTablesRaw(context, request, cq)); - } - ::grpc::Status LeftJoinTables(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::LeftJoinTablesRequest& request, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse* response) override; - std::unique_ptr< ::grpc::ClientAsyncResponseReader< ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse>> AsyncLeftJoinTables(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::LeftJoinTablesRequest& request, ::grpc::CompletionQueue* cq) { - return std::unique_ptr< ::grpc::ClientAsyncResponseReader< ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse>>(AsyncLeftJoinTablesRaw(context, request, cq)); - } - std::unique_ptr< ::grpc::ClientAsyncResponseReader< ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse>> PrepareAsyncLeftJoinTables(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::LeftJoinTablesRequest& request, ::grpc::CompletionQueue* cq) { - return std::unique_ptr< ::grpc::ClientAsyncResponseReader< ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse>>(PrepareAsyncLeftJoinTablesRaw(context, request, cq)); - } - ::grpc::Status AsOfJoinTables(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::AsOfJoinTablesRequest& request, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse* response) override; - std::unique_ptr< ::grpc::ClientAsyncResponseReader< ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse>> AsyncAsOfJoinTables(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::AsOfJoinTablesRequest& request, ::grpc::CompletionQueue* cq) { - return std::unique_ptr< ::grpc::ClientAsyncResponseReader< ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse>>(AsyncAsOfJoinTablesRaw(context, request, cq)); - } - std::unique_ptr< ::grpc::ClientAsyncResponseReader< ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse>> PrepareAsyncAsOfJoinTables(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::AsOfJoinTablesRequest& request, ::grpc::CompletionQueue* cq) { - return std::unique_ptr< ::grpc::ClientAsyncResponseReader< ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse>>(PrepareAsyncAsOfJoinTablesRaw(context, request, cq)); - } - ::grpc::Status AjTables(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::AjRajTablesRequest& request, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse* response) override; - std::unique_ptr< ::grpc::ClientAsyncResponseReader< ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse>> AsyncAjTables(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::AjRajTablesRequest& request, ::grpc::CompletionQueue* cq) { - return std::unique_ptr< ::grpc::ClientAsyncResponseReader< ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse>>(AsyncAjTablesRaw(context, request, cq)); - } - std::unique_ptr< ::grpc::ClientAsyncResponseReader< ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse>> PrepareAsyncAjTables(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::AjRajTablesRequest& request, ::grpc::CompletionQueue* cq) { - return std::unique_ptr< ::grpc::ClientAsyncResponseReader< ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse>>(PrepareAsyncAjTablesRaw(context, request, cq)); - } - ::grpc::Status RajTables(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::AjRajTablesRequest& request, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse* response) override; - std::unique_ptr< ::grpc::ClientAsyncResponseReader< ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse>> AsyncRajTables(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::AjRajTablesRequest& request, ::grpc::CompletionQueue* cq) { - return std::unique_ptr< ::grpc::ClientAsyncResponseReader< ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse>>(AsyncRajTablesRaw(context, request, cq)); - } - std::unique_ptr< ::grpc::ClientAsyncResponseReader< ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse>> PrepareAsyncRajTables(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::AjRajTablesRequest& request, ::grpc::CompletionQueue* cq) { - return std::unique_ptr< ::grpc::ClientAsyncResponseReader< ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse>>(PrepareAsyncRajTablesRaw(context, request, cq)); - } - ::grpc::Status MultiJoinTables(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::MultiJoinTablesRequest& request, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse* response) override; - std::unique_ptr< ::grpc::ClientAsyncResponseReader< ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse>> AsyncMultiJoinTables(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::MultiJoinTablesRequest& request, ::grpc::CompletionQueue* cq) { - return std::unique_ptr< ::grpc::ClientAsyncResponseReader< ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse>>(AsyncMultiJoinTablesRaw(context, request, cq)); - } - std::unique_ptr< ::grpc::ClientAsyncResponseReader< ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse>> PrepareAsyncMultiJoinTables(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::MultiJoinTablesRequest& request, ::grpc::CompletionQueue* cq) { - return std::unique_ptr< ::grpc::ClientAsyncResponseReader< ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse>>(PrepareAsyncMultiJoinTablesRaw(context, request, cq)); - } - ::grpc::Status RangeJoinTables(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::RangeJoinTablesRequest& request, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse* response) override; - std::unique_ptr< ::grpc::ClientAsyncResponseReader< ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse>> AsyncRangeJoinTables(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::RangeJoinTablesRequest& request, ::grpc::CompletionQueue* cq) { - return std::unique_ptr< ::grpc::ClientAsyncResponseReader< ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse>>(AsyncRangeJoinTablesRaw(context, request, cq)); - } - std::unique_ptr< ::grpc::ClientAsyncResponseReader< ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse>> PrepareAsyncRangeJoinTables(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::RangeJoinTablesRequest& request, ::grpc::CompletionQueue* cq) { - return std::unique_ptr< ::grpc::ClientAsyncResponseReader< ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse>>(PrepareAsyncRangeJoinTablesRaw(context, request, cq)); - } - ::grpc::Status ComboAggregate(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::ComboAggregateRequest& request, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse* response) override; - std::unique_ptr< ::grpc::ClientAsyncResponseReader< ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse>> AsyncComboAggregate(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::ComboAggregateRequest& request, ::grpc::CompletionQueue* cq) { - return std::unique_ptr< ::grpc::ClientAsyncResponseReader< ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse>>(AsyncComboAggregateRaw(context, request, cq)); - } - std::unique_ptr< ::grpc::ClientAsyncResponseReader< ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse>> PrepareAsyncComboAggregate(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::ComboAggregateRequest& request, ::grpc::CompletionQueue* cq) { - return std::unique_ptr< ::grpc::ClientAsyncResponseReader< ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse>>(PrepareAsyncComboAggregateRaw(context, request, cq)); - } - ::grpc::Status AggregateAll(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::AggregateAllRequest& request, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse* response) override; - std::unique_ptr< ::grpc::ClientAsyncResponseReader< ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse>> AsyncAggregateAll(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::AggregateAllRequest& request, ::grpc::CompletionQueue* cq) { - return std::unique_ptr< ::grpc::ClientAsyncResponseReader< ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse>>(AsyncAggregateAllRaw(context, request, cq)); - } - std::unique_ptr< ::grpc::ClientAsyncResponseReader< ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse>> PrepareAsyncAggregateAll(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::AggregateAllRequest& request, ::grpc::CompletionQueue* cq) { - return std::unique_ptr< ::grpc::ClientAsyncResponseReader< ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse>>(PrepareAsyncAggregateAllRaw(context, request, cq)); - } - ::grpc::Status Aggregate(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::AggregateRequest& request, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse* response) override; - std::unique_ptr< ::grpc::ClientAsyncResponseReader< ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse>> AsyncAggregate(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::AggregateRequest& request, ::grpc::CompletionQueue* cq) { - return std::unique_ptr< ::grpc::ClientAsyncResponseReader< ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse>>(AsyncAggregateRaw(context, request, cq)); - } - std::unique_ptr< ::grpc::ClientAsyncResponseReader< ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse>> PrepareAsyncAggregate(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::AggregateRequest& request, ::grpc::CompletionQueue* cq) { - return std::unique_ptr< ::grpc::ClientAsyncResponseReader< ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse>>(PrepareAsyncAggregateRaw(context, request, cq)); - } - ::grpc::Status Snapshot(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::SnapshotTableRequest& request, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse* response) override; - std::unique_ptr< ::grpc::ClientAsyncResponseReader< ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse>> AsyncSnapshot(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::SnapshotTableRequest& request, ::grpc::CompletionQueue* cq) { - return std::unique_ptr< ::grpc::ClientAsyncResponseReader< ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse>>(AsyncSnapshotRaw(context, request, cq)); - } - std::unique_ptr< ::grpc::ClientAsyncResponseReader< ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse>> PrepareAsyncSnapshot(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::SnapshotTableRequest& request, ::grpc::CompletionQueue* cq) { - return std::unique_ptr< ::grpc::ClientAsyncResponseReader< ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse>>(PrepareAsyncSnapshotRaw(context, request, cq)); - } - ::grpc::Status SnapshotWhen(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::SnapshotWhenTableRequest& request, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse* response) override; - std::unique_ptr< ::grpc::ClientAsyncResponseReader< ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse>> AsyncSnapshotWhen(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::SnapshotWhenTableRequest& request, ::grpc::CompletionQueue* cq) { - return std::unique_ptr< ::grpc::ClientAsyncResponseReader< ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse>>(AsyncSnapshotWhenRaw(context, request, cq)); - } - std::unique_ptr< ::grpc::ClientAsyncResponseReader< ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse>> PrepareAsyncSnapshotWhen(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::SnapshotWhenTableRequest& request, ::grpc::CompletionQueue* cq) { - return std::unique_ptr< ::grpc::ClientAsyncResponseReader< ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse>>(PrepareAsyncSnapshotWhenRaw(context, request, cq)); - } - ::grpc::Status Flatten(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::FlattenRequest& request, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse* response) override; - std::unique_ptr< ::grpc::ClientAsyncResponseReader< ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse>> AsyncFlatten(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::FlattenRequest& request, ::grpc::CompletionQueue* cq) { - return std::unique_ptr< ::grpc::ClientAsyncResponseReader< ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse>>(AsyncFlattenRaw(context, request, cq)); - } - std::unique_ptr< ::grpc::ClientAsyncResponseReader< ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse>> PrepareAsyncFlatten(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::FlattenRequest& request, ::grpc::CompletionQueue* cq) { - return std::unique_ptr< ::grpc::ClientAsyncResponseReader< ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse>>(PrepareAsyncFlattenRaw(context, request, cq)); - } - ::grpc::Status RunChartDownsample(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::RunChartDownsampleRequest& request, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse* response) override; - std::unique_ptr< ::grpc::ClientAsyncResponseReader< ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse>> AsyncRunChartDownsample(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::RunChartDownsampleRequest& request, ::grpc::CompletionQueue* cq) { - return std::unique_ptr< ::grpc::ClientAsyncResponseReader< ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse>>(AsyncRunChartDownsampleRaw(context, request, cq)); - } - std::unique_ptr< ::grpc::ClientAsyncResponseReader< ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse>> PrepareAsyncRunChartDownsample(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::RunChartDownsampleRequest& request, ::grpc::CompletionQueue* cq) { - return std::unique_ptr< ::grpc::ClientAsyncResponseReader< ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse>>(PrepareAsyncRunChartDownsampleRaw(context, request, cq)); - } - ::grpc::Status CreateInputTable(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::CreateInputTableRequest& request, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse* response) override; - std::unique_ptr< ::grpc::ClientAsyncResponseReader< ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse>> AsyncCreateInputTable(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::CreateInputTableRequest& request, ::grpc::CompletionQueue* cq) { - return std::unique_ptr< ::grpc::ClientAsyncResponseReader< ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse>>(AsyncCreateInputTableRaw(context, request, cq)); - } - std::unique_ptr< ::grpc::ClientAsyncResponseReader< ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse>> PrepareAsyncCreateInputTable(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::CreateInputTableRequest& request, ::grpc::CompletionQueue* cq) { - return std::unique_ptr< ::grpc::ClientAsyncResponseReader< ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse>>(PrepareAsyncCreateInputTableRaw(context, request, cq)); - } - ::grpc::Status WhereIn(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::WhereInRequest& request, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse* response) override; - std::unique_ptr< ::grpc::ClientAsyncResponseReader< ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse>> AsyncWhereIn(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::WhereInRequest& request, ::grpc::CompletionQueue* cq) { - return std::unique_ptr< ::grpc::ClientAsyncResponseReader< ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse>>(AsyncWhereInRaw(context, request, cq)); - } - std::unique_ptr< ::grpc::ClientAsyncResponseReader< ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse>> PrepareAsyncWhereIn(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::WhereInRequest& request, ::grpc::CompletionQueue* cq) { - return std::unique_ptr< ::grpc::ClientAsyncResponseReader< ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse>>(PrepareAsyncWhereInRaw(context, request, cq)); - } - std::unique_ptr< ::grpc::ClientReader< ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse>> Batch(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::BatchTableRequest& request) { - return std::unique_ptr< ::grpc::ClientReader< ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse>>(BatchRaw(context, request)); - } - std::unique_ptr< ::grpc::ClientAsyncReader< ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse>> AsyncBatch(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::BatchTableRequest& request, ::grpc::CompletionQueue* cq, void* tag) { - return std::unique_ptr< ::grpc::ClientAsyncReader< ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse>>(AsyncBatchRaw(context, request, cq, tag)); - } - std::unique_ptr< ::grpc::ClientAsyncReader< ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse>> PrepareAsyncBatch(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::BatchTableRequest& request, ::grpc::CompletionQueue* cq) { - return std::unique_ptr< ::grpc::ClientAsyncReader< ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse>>(PrepareAsyncBatchRaw(context, request, cq)); - } - std::unique_ptr< ::grpc::ClientReader< ::io::deephaven::proto::backplane::grpc::ExportedTableUpdateMessage>> ExportedTableUpdates(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::ExportedTableUpdatesRequest& request) { - return std::unique_ptr< ::grpc::ClientReader< ::io::deephaven::proto::backplane::grpc::ExportedTableUpdateMessage>>(ExportedTableUpdatesRaw(context, request)); - } - std::unique_ptr< ::grpc::ClientAsyncReader< ::io::deephaven::proto::backplane::grpc::ExportedTableUpdateMessage>> AsyncExportedTableUpdates(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::ExportedTableUpdatesRequest& request, ::grpc::CompletionQueue* cq, void* tag) { - return std::unique_ptr< ::grpc::ClientAsyncReader< ::io::deephaven::proto::backplane::grpc::ExportedTableUpdateMessage>>(AsyncExportedTableUpdatesRaw(context, request, cq, tag)); - } - std::unique_ptr< ::grpc::ClientAsyncReader< ::io::deephaven::proto::backplane::grpc::ExportedTableUpdateMessage>> PrepareAsyncExportedTableUpdates(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::ExportedTableUpdatesRequest& request, ::grpc::CompletionQueue* cq) { - return std::unique_ptr< ::grpc::ClientAsyncReader< ::io::deephaven::proto::backplane::grpc::ExportedTableUpdateMessage>>(PrepareAsyncExportedTableUpdatesRaw(context, request, cq)); - } - ::grpc::Status SeekRow(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::SeekRowRequest& request, ::io::deephaven::proto::backplane::grpc::SeekRowResponse* response) override; - std::unique_ptr< ::grpc::ClientAsyncResponseReader< ::io::deephaven::proto::backplane::grpc::SeekRowResponse>> AsyncSeekRow(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::SeekRowRequest& request, ::grpc::CompletionQueue* cq) { - return std::unique_ptr< ::grpc::ClientAsyncResponseReader< ::io::deephaven::proto::backplane::grpc::SeekRowResponse>>(AsyncSeekRowRaw(context, request, cq)); - } - std::unique_ptr< ::grpc::ClientAsyncResponseReader< ::io::deephaven::proto::backplane::grpc::SeekRowResponse>> PrepareAsyncSeekRow(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::SeekRowRequest& request, ::grpc::CompletionQueue* cq) { - return std::unique_ptr< ::grpc::ClientAsyncResponseReader< ::io::deephaven::proto::backplane::grpc::SeekRowResponse>>(PrepareAsyncSeekRowRaw(context, request, cq)); - } - ::grpc::Status MetaTable(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::MetaTableRequest& request, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse* response) override; - std::unique_ptr< ::grpc::ClientAsyncResponseReader< ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse>> AsyncMetaTable(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::MetaTableRequest& request, ::grpc::CompletionQueue* cq) { - return std::unique_ptr< ::grpc::ClientAsyncResponseReader< ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse>>(AsyncMetaTableRaw(context, request, cq)); - } - std::unique_ptr< ::grpc::ClientAsyncResponseReader< ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse>> PrepareAsyncMetaTable(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::MetaTableRequest& request, ::grpc::CompletionQueue* cq) { - return std::unique_ptr< ::grpc::ClientAsyncResponseReader< ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse>>(PrepareAsyncMetaTableRaw(context, request, cq)); - } - ::grpc::Status ComputeColumnStatistics(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::ColumnStatisticsRequest& request, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse* response) override; - std::unique_ptr< ::grpc::ClientAsyncResponseReader< ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse>> AsyncComputeColumnStatistics(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::ColumnStatisticsRequest& request, ::grpc::CompletionQueue* cq) { - return std::unique_ptr< ::grpc::ClientAsyncResponseReader< ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse>>(AsyncComputeColumnStatisticsRaw(context, request, cq)); - } - std::unique_ptr< ::grpc::ClientAsyncResponseReader< ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse>> PrepareAsyncComputeColumnStatistics(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::ColumnStatisticsRequest& request, ::grpc::CompletionQueue* cq) { - return std::unique_ptr< ::grpc::ClientAsyncResponseReader< ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse>>(PrepareAsyncComputeColumnStatisticsRaw(context, request, cq)); - } - class async final : - public StubInterface::async_interface { - public: - void GetExportedTableCreationResponse(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::Ticket* request, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse* response, std::function) override; - void GetExportedTableCreationResponse(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::Ticket* request, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse* response, ::grpc::ClientUnaryReactor* reactor) override; - void FetchTable(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::FetchTableRequest* request, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse* response, std::function) override; - void FetchTable(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::FetchTableRequest* request, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse* response, ::grpc::ClientUnaryReactor* reactor) override; - void ApplyPreviewColumns(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::ApplyPreviewColumnsRequest* request, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse* response, std::function) override; - void ApplyPreviewColumns(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::ApplyPreviewColumnsRequest* request, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse* response, ::grpc::ClientUnaryReactor* reactor) override; - void EmptyTable(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::EmptyTableRequest* request, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse* response, std::function) override; - void EmptyTable(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::EmptyTableRequest* request, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse* response, ::grpc::ClientUnaryReactor* reactor) override; - void TimeTable(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::TimeTableRequest* request, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse* response, std::function) override; - void TimeTable(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::TimeTableRequest* request, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse* response, ::grpc::ClientUnaryReactor* reactor) override; - void DropColumns(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::DropColumnsRequest* request, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse* response, std::function) override; - void DropColumns(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::DropColumnsRequest* request, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse* response, ::grpc::ClientUnaryReactor* reactor) override; - void Update(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::SelectOrUpdateRequest* request, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse* response, std::function) override; - void Update(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::SelectOrUpdateRequest* request, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse* response, ::grpc::ClientUnaryReactor* reactor) override; - void LazyUpdate(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::SelectOrUpdateRequest* request, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse* response, std::function) override; - void LazyUpdate(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::SelectOrUpdateRequest* request, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse* response, ::grpc::ClientUnaryReactor* reactor) override; - void View(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::SelectOrUpdateRequest* request, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse* response, std::function) override; - void View(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::SelectOrUpdateRequest* request, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse* response, ::grpc::ClientUnaryReactor* reactor) override; - void UpdateView(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::SelectOrUpdateRequest* request, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse* response, std::function) override; - void UpdateView(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::SelectOrUpdateRequest* request, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse* response, ::grpc::ClientUnaryReactor* reactor) override; - void Select(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::SelectOrUpdateRequest* request, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse* response, std::function) override; - void Select(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::SelectOrUpdateRequest* request, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse* response, ::grpc::ClientUnaryReactor* reactor) override; - void UpdateBy(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::UpdateByRequest* request, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse* response, std::function) override; - void UpdateBy(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::UpdateByRequest* request, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse* response, ::grpc::ClientUnaryReactor* reactor) override; - void SelectDistinct(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::SelectDistinctRequest* request, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse* response, std::function) override; - void SelectDistinct(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::SelectDistinctRequest* request, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse* response, ::grpc::ClientUnaryReactor* reactor) override; - void Filter(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::FilterTableRequest* request, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse* response, std::function) override; - void Filter(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::FilterTableRequest* request, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse* response, ::grpc::ClientUnaryReactor* reactor) override; - void UnstructuredFilter(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::UnstructuredFilterTableRequest* request, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse* response, std::function) override; - void UnstructuredFilter(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::UnstructuredFilterTableRequest* request, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse* response, ::grpc::ClientUnaryReactor* reactor) override; - void Sort(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::SortTableRequest* request, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse* response, std::function) override; - void Sort(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::SortTableRequest* request, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse* response, ::grpc::ClientUnaryReactor* reactor) override; - void Head(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::HeadOrTailRequest* request, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse* response, std::function) override; - void Head(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::HeadOrTailRequest* request, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse* response, ::grpc::ClientUnaryReactor* reactor) override; - void Tail(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::HeadOrTailRequest* request, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse* response, std::function) override; - void Tail(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::HeadOrTailRequest* request, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse* response, ::grpc::ClientUnaryReactor* reactor) override; - void HeadBy(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::HeadOrTailByRequest* request, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse* response, std::function) override; - void HeadBy(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::HeadOrTailByRequest* request, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse* response, ::grpc::ClientUnaryReactor* reactor) override; - void TailBy(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::HeadOrTailByRequest* request, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse* response, std::function) override; - void TailBy(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::HeadOrTailByRequest* request, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse* response, ::grpc::ClientUnaryReactor* reactor) override; - void Ungroup(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::UngroupRequest* request, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse* response, std::function) override; - void Ungroup(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::UngroupRequest* request, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse* response, ::grpc::ClientUnaryReactor* reactor) override; - void MergeTables(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::MergeTablesRequest* request, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse* response, std::function) override; - void MergeTables(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::MergeTablesRequest* request, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse* response, ::grpc::ClientUnaryReactor* reactor) override; - void CrossJoinTables(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::CrossJoinTablesRequest* request, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse* response, std::function) override; - void CrossJoinTables(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::CrossJoinTablesRequest* request, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse* response, ::grpc::ClientUnaryReactor* reactor) override; - void NaturalJoinTables(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::NaturalJoinTablesRequest* request, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse* response, std::function) override; - void NaturalJoinTables(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::NaturalJoinTablesRequest* request, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse* response, ::grpc::ClientUnaryReactor* reactor) override; - void ExactJoinTables(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::ExactJoinTablesRequest* request, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse* response, std::function) override; - void ExactJoinTables(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::ExactJoinTablesRequest* request, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse* response, ::grpc::ClientUnaryReactor* reactor) override; - void LeftJoinTables(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::LeftJoinTablesRequest* request, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse* response, std::function) override; - void LeftJoinTables(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::LeftJoinTablesRequest* request, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse* response, ::grpc::ClientUnaryReactor* reactor) override; - void AsOfJoinTables(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::AsOfJoinTablesRequest* request, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse* response, std::function) override; - void AsOfJoinTables(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::AsOfJoinTablesRequest* request, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse* response, ::grpc::ClientUnaryReactor* reactor) override; - void AjTables(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::AjRajTablesRequest* request, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse* response, std::function) override; - void AjTables(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::AjRajTablesRequest* request, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse* response, ::grpc::ClientUnaryReactor* reactor) override; - void RajTables(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::AjRajTablesRequest* request, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse* response, std::function) override; - void RajTables(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::AjRajTablesRequest* request, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse* response, ::grpc::ClientUnaryReactor* reactor) override; - void MultiJoinTables(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::MultiJoinTablesRequest* request, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse* response, std::function) override; - void MultiJoinTables(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::MultiJoinTablesRequest* request, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse* response, ::grpc::ClientUnaryReactor* reactor) override; - void RangeJoinTables(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::RangeJoinTablesRequest* request, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse* response, std::function) override; - void RangeJoinTables(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::RangeJoinTablesRequest* request, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse* response, ::grpc::ClientUnaryReactor* reactor) override; - void ComboAggregate(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::ComboAggregateRequest* request, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse* response, std::function) override; - void ComboAggregate(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::ComboAggregateRequest* request, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse* response, ::grpc::ClientUnaryReactor* reactor) override; - void AggregateAll(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::AggregateAllRequest* request, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse* response, std::function) override; - void AggregateAll(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::AggregateAllRequest* request, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse* response, ::grpc::ClientUnaryReactor* reactor) override; - void Aggregate(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::AggregateRequest* request, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse* response, std::function) override; - void Aggregate(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::AggregateRequest* request, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse* response, ::grpc::ClientUnaryReactor* reactor) override; - void Snapshot(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::SnapshotTableRequest* request, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse* response, std::function) override; - void Snapshot(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::SnapshotTableRequest* request, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse* response, ::grpc::ClientUnaryReactor* reactor) override; - void SnapshotWhen(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::SnapshotWhenTableRequest* request, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse* response, std::function) override; - void SnapshotWhen(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::SnapshotWhenTableRequest* request, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse* response, ::grpc::ClientUnaryReactor* reactor) override; - void Flatten(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::FlattenRequest* request, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse* response, std::function) override; - void Flatten(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::FlattenRequest* request, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse* response, ::grpc::ClientUnaryReactor* reactor) override; - void RunChartDownsample(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::RunChartDownsampleRequest* request, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse* response, std::function) override; - void RunChartDownsample(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::RunChartDownsampleRequest* request, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse* response, ::grpc::ClientUnaryReactor* reactor) override; - void CreateInputTable(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::CreateInputTableRequest* request, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse* response, std::function) override; - void CreateInputTable(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::CreateInputTableRequest* request, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse* response, ::grpc::ClientUnaryReactor* reactor) override; - void WhereIn(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::WhereInRequest* request, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse* response, std::function) override; - void WhereIn(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::WhereInRequest* request, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse* response, ::grpc::ClientUnaryReactor* reactor) override; - void Batch(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::BatchTableRequest* request, ::grpc::ClientReadReactor< ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse>* reactor) override; - void ExportedTableUpdates(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::ExportedTableUpdatesRequest* request, ::grpc::ClientReadReactor< ::io::deephaven::proto::backplane::grpc::ExportedTableUpdateMessage>* reactor) override; - void SeekRow(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::SeekRowRequest* request, ::io::deephaven::proto::backplane::grpc::SeekRowResponse* response, std::function) override; - void SeekRow(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::SeekRowRequest* request, ::io::deephaven::proto::backplane::grpc::SeekRowResponse* response, ::grpc::ClientUnaryReactor* reactor) override; - void MetaTable(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::MetaTableRequest* request, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse* response, std::function) override; - void MetaTable(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::MetaTableRequest* request, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse* response, ::grpc::ClientUnaryReactor* reactor) override; - void ComputeColumnStatistics(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::ColumnStatisticsRequest* request, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse* response, std::function) override; - void ComputeColumnStatistics(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::ColumnStatisticsRequest* request, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse* response, ::grpc::ClientUnaryReactor* reactor) override; - private: - friend class Stub; - explicit async(Stub* stub): stub_(stub) { } - Stub* stub() { return stub_; } - Stub* stub_; - }; - class async* async() override { return &async_stub_; } - - private: - std::shared_ptr< ::grpc::ChannelInterface> channel_; - class async async_stub_{this}; - ::grpc::ClientAsyncResponseReader< ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse>* AsyncGetExportedTableCreationResponseRaw(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::Ticket& request, ::grpc::CompletionQueue* cq) override; - ::grpc::ClientAsyncResponseReader< ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse>* PrepareAsyncGetExportedTableCreationResponseRaw(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::Ticket& request, ::grpc::CompletionQueue* cq) override; - ::grpc::ClientAsyncResponseReader< ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse>* AsyncFetchTableRaw(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::FetchTableRequest& request, ::grpc::CompletionQueue* cq) override; - ::grpc::ClientAsyncResponseReader< ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse>* PrepareAsyncFetchTableRaw(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::FetchTableRequest& request, ::grpc::CompletionQueue* cq) override; - ::grpc::ClientAsyncResponseReader< ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse>* AsyncApplyPreviewColumnsRaw(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::ApplyPreviewColumnsRequest& request, ::grpc::CompletionQueue* cq) override; - ::grpc::ClientAsyncResponseReader< ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse>* PrepareAsyncApplyPreviewColumnsRaw(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::ApplyPreviewColumnsRequest& request, ::grpc::CompletionQueue* cq) override; - ::grpc::ClientAsyncResponseReader< ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse>* AsyncEmptyTableRaw(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::EmptyTableRequest& request, ::grpc::CompletionQueue* cq) override; - ::grpc::ClientAsyncResponseReader< ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse>* PrepareAsyncEmptyTableRaw(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::EmptyTableRequest& request, ::grpc::CompletionQueue* cq) override; - ::grpc::ClientAsyncResponseReader< ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse>* AsyncTimeTableRaw(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::TimeTableRequest& request, ::grpc::CompletionQueue* cq) override; - ::grpc::ClientAsyncResponseReader< ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse>* PrepareAsyncTimeTableRaw(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::TimeTableRequest& request, ::grpc::CompletionQueue* cq) override; - ::grpc::ClientAsyncResponseReader< ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse>* AsyncDropColumnsRaw(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::DropColumnsRequest& request, ::grpc::CompletionQueue* cq) override; - ::grpc::ClientAsyncResponseReader< ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse>* PrepareAsyncDropColumnsRaw(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::DropColumnsRequest& request, ::grpc::CompletionQueue* cq) override; - ::grpc::ClientAsyncResponseReader< ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse>* AsyncUpdateRaw(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::SelectOrUpdateRequest& request, ::grpc::CompletionQueue* cq) override; - ::grpc::ClientAsyncResponseReader< ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse>* PrepareAsyncUpdateRaw(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::SelectOrUpdateRequest& request, ::grpc::CompletionQueue* cq) override; - ::grpc::ClientAsyncResponseReader< ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse>* AsyncLazyUpdateRaw(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::SelectOrUpdateRequest& request, ::grpc::CompletionQueue* cq) override; - ::grpc::ClientAsyncResponseReader< ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse>* PrepareAsyncLazyUpdateRaw(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::SelectOrUpdateRequest& request, ::grpc::CompletionQueue* cq) override; - ::grpc::ClientAsyncResponseReader< ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse>* AsyncViewRaw(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::SelectOrUpdateRequest& request, ::grpc::CompletionQueue* cq) override; - ::grpc::ClientAsyncResponseReader< ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse>* PrepareAsyncViewRaw(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::SelectOrUpdateRequest& request, ::grpc::CompletionQueue* cq) override; - ::grpc::ClientAsyncResponseReader< ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse>* AsyncUpdateViewRaw(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::SelectOrUpdateRequest& request, ::grpc::CompletionQueue* cq) override; - ::grpc::ClientAsyncResponseReader< ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse>* PrepareAsyncUpdateViewRaw(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::SelectOrUpdateRequest& request, ::grpc::CompletionQueue* cq) override; - ::grpc::ClientAsyncResponseReader< ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse>* AsyncSelectRaw(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::SelectOrUpdateRequest& request, ::grpc::CompletionQueue* cq) override; - ::grpc::ClientAsyncResponseReader< ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse>* PrepareAsyncSelectRaw(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::SelectOrUpdateRequest& request, ::grpc::CompletionQueue* cq) override; - ::grpc::ClientAsyncResponseReader< ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse>* AsyncUpdateByRaw(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::UpdateByRequest& request, ::grpc::CompletionQueue* cq) override; - ::grpc::ClientAsyncResponseReader< ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse>* PrepareAsyncUpdateByRaw(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::UpdateByRequest& request, ::grpc::CompletionQueue* cq) override; - ::grpc::ClientAsyncResponseReader< ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse>* AsyncSelectDistinctRaw(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::SelectDistinctRequest& request, ::grpc::CompletionQueue* cq) override; - ::grpc::ClientAsyncResponseReader< ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse>* PrepareAsyncSelectDistinctRaw(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::SelectDistinctRequest& request, ::grpc::CompletionQueue* cq) override; - ::grpc::ClientAsyncResponseReader< ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse>* AsyncFilterRaw(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::FilterTableRequest& request, ::grpc::CompletionQueue* cq) override; - ::grpc::ClientAsyncResponseReader< ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse>* PrepareAsyncFilterRaw(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::FilterTableRequest& request, ::grpc::CompletionQueue* cq) override; - ::grpc::ClientAsyncResponseReader< ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse>* AsyncUnstructuredFilterRaw(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::UnstructuredFilterTableRequest& request, ::grpc::CompletionQueue* cq) override; - ::grpc::ClientAsyncResponseReader< ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse>* PrepareAsyncUnstructuredFilterRaw(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::UnstructuredFilterTableRequest& request, ::grpc::CompletionQueue* cq) override; - ::grpc::ClientAsyncResponseReader< ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse>* AsyncSortRaw(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::SortTableRequest& request, ::grpc::CompletionQueue* cq) override; - ::grpc::ClientAsyncResponseReader< ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse>* PrepareAsyncSortRaw(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::SortTableRequest& request, ::grpc::CompletionQueue* cq) override; - ::grpc::ClientAsyncResponseReader< ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse>* AsyncHeadRaw(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::HeadOrTailRequest& request, ::grpc::CompletionQueue* cq) override; - ::grpc::ClientAsyncResponseReader< ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse>* PrepareAsyncHeadRaw(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::HeadOrTailRequest& request, ::grpc::CompletionQueue* cq) override; - ::grpc::ClientAsyncResponseReader< ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse>* AsyncTailRaw(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::HeadOrTailRequest& request, ::grpc::CompletionQueue* cq) override; - ::grpc::ClientAsyncResponseReader< ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse>* PrepareAsyncTailRaw(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::HeadOrTailRequest& request, ::grpc::CompletionQueue* cq) override; - ::grpc::ClientAsyncResponseReader< ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse>* AsyncHeadByRaw(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::HeadOrTailByRequest& request, ::grpc::CompletionQueue* cq) override; - ::grpc::ClientAsyncResponseReader< ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse>* PrepareAsyncHeadByRaw(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::HeadOrTailByRequest& request, ::grpc::CompletionQueue* cq) override; - ::grpc::ClientAsyncResponseReader< ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse>* AsyncTailByRaw(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::HeadOrTailByRequest& request, ::grpc::CompletionQueue* cq) override; - ::grpc::ClientAsyncResponseReader< ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse>* PrepareAsyncTailByRaw(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::HeadOrTailByRequest& request, ::grpc::CompletionQueue* cq) override; - ::grpc::ClientAsyncResponseReader< ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse>* AsyncUngroupRaw(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::UngroupRequest& request, ::grpc::CompletionQueue* cq) override; - ::grpc::ClientAsyncResponseReader< ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse>* PrepareAsyncUngroupRaw(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::UngroupRequest& request, ::grpc::CompletionQueue* cq) override; - ::grpc::ClientAsyncResponseReader< ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse>* AsyncMergeTablesRaw(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::MergeTablesRequest& request, ::grpc::CompletionQueue* cq) override; - ::grpc::ClientAsyncResponseReader< ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse>* PrepareAsyncMergeTablesRaw(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::MergeTablesRequest& request, ::grpc::CompletionQueue* cq) override; - ::grpc::ClientAsyncResponseReader< ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse>* AsyncCrossJoinTablesRaw(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::CrossJoinTablesRequest& request, ::grpc::CompletionQueue* cq) override; - ::grpc::ClientAsyncResponseReader< ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse>* PrepareAsyncCrossJoinTablesRaw(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::CrossJoinTablesRequest& request, ::grpc::CompletionQueue* cq) override; - ::grpc::ClientAsyncResponseReader< ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse>* AsyncNaturalJoinTablesRaw(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::NaturalJoinTablesRequest& request, ::grpc::CompletionQueue* cq) override; - ::grpc::ClientAsyncResponseReader< ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse>* PrepareAsyncNaturalJoinTablesRaw(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::NaturalJoinTablesRequest& request, ::grpc::CompletionQueue* cq) override; - ::grpc::ClientAsyncResponseReader< ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse>* AsyncExactJoinTablesRaw(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::ExactJoinTablesRequest& request, ::grpc::CompletionQueue* cq) override; - ::grpc::ClientAsyncResponseReader< ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse>* PrepareAsyncExactJoinTablesRaw(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::ExactJoinTablesRequest& request, ::grpc::CompletionQueue* cq) override; - ::grpc::ClientAsyncResponseReader< ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse>* AsyncLeftJoinTablesRaw(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::LeftJoinTablesRequest& request, ::grpc::CompletionQueue* cq) override; - ::grpc::ClientAsyncResponseReader< ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse>* PrepareAsyncLeftJoinTablesRaw(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::LeftJoinTablesRequest& request, ::grpc::CompletionQueue* cq) override; - ::grpc::ClientAsyncResponseReader< ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse>* AsyncAsOfJoinTablesRaw(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::AsOfJoinTablesRequest& request, ::grpc::CompletionQueue* cq) override; - ::grpc::ClientAsyncResponseReader< ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse>* PrepareAsyncAsOfJoinTablesRaw(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::AsOfJoinTablesRequest& request, ::grpc::CompletionQueue* cq) override; - ::grpc::ClientAsyncResponseReader< ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse>* AsyncAjTablesRaw(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::AjRajTablesRequest& request, ::grpc::CompletionQueue* cq) override; - ::grpc::ClientAsyncResponseReader< ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse>* PrepareAsyncAjTablesRaw(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::AjRajTablesRequest& request, ::grpc::CompletionQueue* cq) override; - ::grpc::ClientAsyncResponseReader< ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse>* AsyncRajTablesRaw(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::AjRajTablesRequest& request, ::grpc::CompletionQueue* cq) override; - ::grpc::ClientAsyncResponseReader< ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse>* PrepareAsyncRajTablesRaw(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::AjRajTablesRequest& request, ::grpc::CompletionQueue* cq) override; - ::grpc::ClientAsyncResponseReader< ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse>* AsyncMultiJoinTablesRaw(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::MultiJoinTablesRequest& request, ::grpc::CompletionQueue* cq) override; - ::grpc::ClientAsyncResponseReader< ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse>* PrepareAsyncMultiJoinTablesRaw(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::MultiJoinTablesRequest& request, ::grpc::CompletionQueue* cq) override; - ::grpc::ClientAsyncResponseReader< ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse>* AsyncRangeJoinTablesRaw(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::RangeJoinTablesRequest& request, ::grpc::CompletionQueue* cq) override; - ::grpc::ClientAsyncResponseReader< ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse>* PrepareAsyncRangeJoinTablesRaw(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::RangeJoinTablesRequest& request, ::grpc::CompletionQueue* cq) override; - ::grpc::ClientAsyncResponseReader< ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse>* AsyncComboAggregateRaw(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::ComboAggregateRequest& request, ::grpc::CompletionQueue* cq) override; - ::grpc::ClientAsyncResponseReader< ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse>* PrepareAsyncComboAggregateRaw(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::ComboAggregateRequest& request, ::grpc::CompletionQueue* cq) override; - ::grpc::ClientAsyncResponseReader< ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse>* AsyncAggregateAllRaw(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::AggregateAllRequest& request, ::grpc::CompletionQueue* cq) override; - ::grpc::ClientAsyncResponseReader< ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse>* PrepareAsyncAggregateAllRaw(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::AggregateAllRequest& request, ::grpc::CompletionQueue* cq) override; - ::grpc::ClientAsyncResponseReader< ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse>* AsyncAggregateRaw(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::AggregateRequest& request, ::grpc::CompletionQueue* cq) override; - ::grpc::ClientAsyncResponseReader< ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse>* PrepareAsyncAggregateRaw(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::AggregateRequest& request, ::grpc::CompletionQueue* cq) override; - ::grpc::ClientAsyncResponseReader< ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse>* AsyncSnapshotRaw(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::SnapshotTableRequest& request, ::grpc::CompletionQueue* cq) override; - ::grpc::ClientAsyncResponseReader< ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse>* PrepareAsyncSnapshotRaw(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::SnapshotTableRequest& request, ::grpc::CompletionQueue* cq) override; - ::grpc::ClientAsyncResponseReader< ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse>* AsyncSnapshotWhenRaw(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::SnapshotWhenTableRequest& request, ::grpc::CompletionQueue* cq) override; - ::grpc::ClientAsyncResponseReader< ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse>* PrepareAsyncSnapshotWhenRaw(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::SnapshotWhenTableRequest& request, ::grpc::CompletionQueue* cq) override; - ::grpc::ClientAsyncResponseReader< ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse>* AsyncFlattenRaw(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::FlattenRequest& request, ::grpc::CompletionQueue* cq) override; - ::grpc::ClientAsyncResponseReader< ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse>* PrepareAsyncFlattenRaw(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::FlattenRequest& request, ::grpc::CompletionQueue* cq) override; - ::grpc::ClientAsyncResponseReader< ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse>* AsyncRunChartDownsampleRaw(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::RunChartDownsampleRequest& request, ::grpc::CompletionQueue* cq) override; - ::grpc::ClientAsyncResponseReader< ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse>* PrepareAsyncRunChartDownsampleRaw(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::RunChartDownsampleRequest& request, ::grpc::CompletionQueue* cq) override; - ::grpc::ClientAsyncResponseReader< ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse>* AsyncCreateInputTableRaw(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::CreateInputTableRequest& request, ::grpc::CompletionQueue* cq) override; - ::grpc::ClientAsyncResponseReader< ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse>* PrepareAsyncCreateInputTableRaw(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::CreateInputTableRequest& request, ::grpc::CompletionQueue* cq) override; - ::grpc::ClientAsyncResponseReader< ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse>* AsyncWhereInRaw(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::WhereInRequest& request, ::grpc::CompletionQueue* cq) override; - ::grpc::ClientAsyncResponseReader< ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse>* PrepareAsyncWhereInRaw(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::WhereInRequest& request, ::grpc::CompletionQueue* cq) override; - ::grpc::ClientReader< ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse>* BatchRaw(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::BatchTableRequest& request) override; - ::grpc::ClientAsyncReader< ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse>* AsyncBatchRaw(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::BatchTableRequest& request, ::grpc::CompletionQueue* cq, void* tag) override; - ::grpc::ClientAsyncReader< ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse>* PrepareAsyncBatchRaw(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::BatchTableRequest& request, ::grpc::CompletionQueue* cq) override; - ::grpc::ClientReader< ::io::deephaven::proto::backplane::grpc::ExportedTableUpdateMessage>* ExportedTableUpdatesRaw(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::ExportedTableUpdatesRequest& request) override; - ::grpc::ClientAsyncReader< ::io::deephaven::proto::backplane::grpc::ExportedTableUpdateMessage>* AsyncExportedTableUpdatesRaw(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::ExportedTableUpdatesRequest& request, ::grpc::CompletionQueue* cq, void* tag) override; - ::grpc::ClientAsyncReader< ::io::deephaven::proto::backplane::grpc::ExportedTableUpdateMessage>* PrepareAsyncExportedTableUpdatesRaw(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::ExportedTableUpdatesRequest& request, ::grpc::CompletionQueue* cq) override; - ::grpc::ClientAsyncResponseReader< ::io::deephaven::proto::backplane::grpc::SeekRowResponse>* AsyncSeekRowRaw(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::SeekRowRequest& request, ::grpc::CompletionQueue* cq) override; - ::grpc::ClientAsyncResponseReader< ::io::deephaven::proto::backplane::grpc::SeekRowResponse>* PrepareAsyncSeekRowRaw(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::SeekRowRequest& request, ::grpc::CompletionQueue* cq) override; - ::grpc::ClientAsyncResponseReader< ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse>* AsyncMetaTableRaw(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::MetaTableRequest& request, ::grpc::CompletionQueue* cq) override; - ::grpc::ClientAsyncResponseReader< ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse>* PrepareAsyncMetaTableRaw(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::MetaTableRequest& request, ::grpc::CompletionQueue* cq) override; - ::grpc::ClientAsyncResponseReader< ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse>* AsyncComputeColumnStatisticsRaw(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::ColumnStatisticsRequest& request, ::grpc::CompletionQueue* cq) override; - ::grpc::ClientAsyncResponseReader< ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse>* PrepareAsyncComputeColumnStatisticsRaw(::grpc::ClientContext* context, const ::io::deephaven::proto::backplane::grpc::ColumnStatisticsRequest& request, ::grpc::CompletionQueue* cq) override; - const ::grpc::internal::RpcMethod rpcmethod_GetExportedTableCreationResponse_; - const ::grpc::internal::RpcMethod rpcmethod_FetchTable_; - const ::grpc::internal::RpcMethod rpcmethod_ApplyPreviewColumns_; - const ::grpc::internal::RpcMethod rpcmethod_EmptyTable_; - const ::grpc::internal::RpcMethod rpcmethod_TimeTable_; - const ::grpc::internal::RpcMethod rpcmethod_DropColumns_; - const ::grpc::internal::RpcMethod rpcmethod_Update_; - const ::grpc::internal::RpcMethod rpcmethod_LazyUpdate_; - const ::grpc::internal::RpcMethod rpcmethod_View_; - const ::grpc::internal::RpcMethod rpcmethod_UpdateView_; - const ::grpc::internal::RpcMethod rpcmethod_Select_; - const ::grpc::internal::RpcMethod rpcmethod_UpdateBy_; - const ::grpc::internal::RpcMethod rpcmethod_SelectDistinct_; - const ::grpc::internal::RpcMethod rpcmethod_Filter_; - const ::grpc::internal::RpcMethod rpcmethod_UnstructuredFilter_; - const ::grpc::internal::RpcMethod rpcmethod_Sort_; - const ::grpc::internal::RpcMethod rpcmethod_Head_; - const ::grpc::internal::RpcMethod rpcmethod_Tail_; - const ::grpc::internal::RpcMethod rpcmethod_HeadBy_; - const ::grpc::internal::RpcMethod rpcmethod_TailBy_; - const ::grpc::internal::RpcMethod rpcmethod_Ungroup_; - const ::grpc::internal::RpcMethod rpcmethod_MergeTables_; - const ::grpc::internal::RpcMethod rpcmethod_CrossJoinTables_; - const ::grpc::internal::RpcMethod rpcmethod_NaturalJoinTables_; - const ::grpc::internal::RpcMethod rpcmethod_ExactJoinTables_; - const ::grpc::internal::RpcMethod rpcmethod_LeftJoinTables_; - const ::grpc::internal::RpcMethod rpcmethod_AsOfJoinTables_; - const ::grpc::internal::RpcMethod rpcmethod_AjTables_; - const ::grpc::internal::RpcMethod rpcmethod_RajTables_; - const ::grpc::internal::RpcMethod rpcmethod_MultiJoinTables_; - const ::grpc::internal::RpcMethod rpcmethod_RangeJoinTables_; - const ::grpc::internal::RpcMethod rpcmethod_ComboAggregate_; - const ::grpc::internal::RpcMethod rpcmethod_AggregateAll_; - const ::grpc::internal::RpcMethod rpcmethod_Aggregate_; - const ::grpc::internal::RpcMethod rpcmethod_Snapshot_; - const ::grpc::internal::RpcMethod rpcmethod_SnapshotWhen_; - const ::grpc::internal::RpcMethod rpcmethod_Flatten_; - const ::grpc::internal::RpcMethod rpcmethod_RunChartDownsample_; - const ::grpc::internal::RpcMethod rpcmethod_CreateInputTable_; - const ::grpc::internal::RpcMethod rpcmethod_WhereIn_; - const ::grpc::internal::RpcMethod rpcmethod_Batch_; - const ::grpc::internal::RpcMethod rpcmethod_ExportedTableUpdates_; - const ::grpc::internal::RpcMethod rpcmethod_SeekRow_; - const ::grpc::internal::RpcMethod rpcmethod_MetaTable_; - const ::grpc::internal::RpcMethod rpcmethod_ComputeColumnStatistics_; - }; - static std::unique_ptr NewStub(const std::shared_ptr< ::grpc::ChannelInterface>& channel, const ::grpc::StubOptions& options = ::grpc::StubOptions()); - - class Service : public ::grpc::Service { - public: - Service(); - virtual ~Service(); - // - // Request an ETCR for this ticket. Ticket must reference a Table. - virtual ::grpc::Status GetExportedTableCreationResponse(::grpc::ServerContext* context, const ::io::deephaven::proto::backplane::grpc::Ticket* request, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse* response); - // - // Fetches a Table from an existing source ticket and exports it to the local session result ticket. - virtual ::grpc::Status FetchTable(::grpc::ServerContext* context, const ::io::deephaven::proto::backplane::grpc::FetchTableRequest* request, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse* response); - // - // Create a table that has preview columns applied to an existing source table. - virtual ::grpc::Status ApplyPreviewColumns(::grpc::ServerContext* context, const ::io::deephaven::proto::backplane::grpc::ApplyPreviewColumnsRequest* request, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse* response); - // - // Create an empty table with the given column names and types. - virtual ::grpc::Status EmptyTable(::grpc::ServerContext* context, const ::io::deephaven::proto::backplane::grpc::EmptyTableRequest* request, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse* response); - // - // Create a time table with the given start time and period. - virtual ::grpc::Status TimeTable(::grpc::ServerContext* context, const ::io::deephaven::proto::backplane::grpc::TimeTableRequest* request, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse* response); - // - // Drop columns from the parent table. - virtual ::grpc::Status DropColumns(::grpc::ServerContext* context, const ::io::deephaven::proto::backplane::grpc::DropColumnsRequest* request, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse* response); - // - // Add columns to the given table using the given column specifications and the update table operation. - virtual ::grpc::Status Update(::grpc::ServerContext* context, const ::io::deephaven::proto::backplane::grpc::SelectOrUpdateRequest* request, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse* response); - // - // Add columns to the given table using the given column specifications and the lazyUpdate table operation. - virtual ::grpc::Status LazyUpdate(::grpc::ServerContext* context, const ::io::deephaven::proto::backplane::grpc::SelectOrUpdateRequest* request, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse* response); - // - // Add columns to the given table using the given column specifications and the view table operation. - virtual ::grpc::Status View(::grpc::ServerContext* context, const ::io::deephaven::proto::backplane::grpc::SelectOrUpdateRequest* request, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse* response); - // - // Add columns to the given table using the given column specifications and the updateView table operation. - virtual ::grpc::Status UpdateView(::grpc::ServerContext* context, const ::io::deephaven::proto::backplane::grpc::SelectOrUpdateRequest* request, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse* response); - // - // Select the given columns from the given table. - virtual ::grpc::Status Select(::grpc::ServerContext* context, const ::io::deephaven::proto::backplane::grpc::SelectOrUpdateRequest* request, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse* response); - // - // Returns the result of an updateBy table operation. - virtual ::grpc::Status UpdateBy(::grpc::ServerContext* context, const ::io::deephaven::proto::backplane::grpc::UpdateByRequest* request, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse* response); - // - // Returns a new table definition with the unique tuples of the specified columns - virtual ::grpc::Status SelectDistinct(::grpc::ServerContext* context, const ::io::deephaven::proto::backplane::grpc::SelectDistinctRequest* request, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse* response); - // - // Filter parent table with structured filters. - virtual ::grpc::Status Filter(::grpc::ServerContext* context, const ::io::deephaven::proto::backplane::grpc::FilterTableRequest* request, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse* response); - // - // Filter parent table with unstructured filters. - virtual ::grpc::Status UnstructuredFilter(::grpc::ServerContext* context, const ::io::deephaven::proto::backplane::grpc::UnstructuredFilterTableRequest* request, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse* response); - // - // Sort parent table via the provide sort descriptors. - virtual ::grpc::Status Sort(::grpc::ServerContext* context, const ::io::deephaven::proto::backplane::grpc::SortTableRequest* request, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse* response); - // - // Extract rows from the head of the parent table. - virtual ::grpc::Status Head(::grpc::ServerContext* context, const ::io::deephaven::proto::backplane::grpc::HeadOrTailRequest* request, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse* response); - // - // Extract rows from the tail of the parent table. - virtual ::grpc::Status Tail(::grpc::ServerContext* context, const ::io::deephaven::proto::backplane::grpc::HeadOrTailRequest* request, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse* response); - // - // Run the headBy table operation for the given group by columns on the given table. - virtual ::grpc::Status HeadBy(::grpc::ServerContext* context, const ::io::deephaven::proto::backplane::grpc::HeadOrTailByRequest* request, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse* response); - // - // Run the tailBy operation for the given group by columns on the given table. - virtual ::grpc::Status TailBy(::grpc::ServerContext* context, const ::io::deephaven::proto::backplane::grpc::HeadOrTailByRequest* request, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse* response); - // - // Ungroup the given columns (all columns will be ungrouped if columnsToUngroup is empty or unspecified). - virtual ::grpc::Status Ungroup(::grpc::ServerContext* context, const ::io::deephaven::proto::backplane::grpc::UngroupRequest* request, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse* response); - // - // Create a merged table from the given input tables. If a key column is provided (not null), a sorted - // merged will be performed using that column. - virtual ::grpc::Status MergeTables(::grpc::ServerContext* context, const ::io::deephaven::proto::backplane::grpc::MergeTablesRequest* request, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse* response); - // - // Returns the result of a cross join operation. Also known as the cartesian product. - virtual ::grpc::Status CrossJoinTables(::grpc::ServerContext* context, const ::io::deephaven::proto::backplane::grpc::CrossJoinTablesRequest* request, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse* response); - // - // Returns the result of a natural join operation. - virtual ::grpc::Status NaturalJoinTables(::grpc::ServerContext* context, const ::io::deephaven::proto::backplane::grpc::NaturalJoinTablesRequest* request, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse* response); - // - // Returns the result of an exact join operation. - virtual ::grpc::Status ExactJoinTables(::grpc::ServerContext* context, const ::io::deephaven::proto::backplane::grpc::ExactJoinTablesRequest* request, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse* response); - // - // Returns the result of a left join operation. - virtual ::grpc::Status LeftJoinTables(::grpc::ServerContext* context, const ::io::deephaven::proto::backplane::grpc::LeftJoinTablesRequest* request, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse* response); - // - // Returns the result of an as of join operation. - // - // Deprecated: Please use AjTables or RajTables. - virtual ::grpc::Status AsOfJoinTables(::grpc::ServerContext* context, const ::io::deephaven::proto::backplane::grpc::AsOfJoinTablesRequest* request, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse* response); - // - // Returns the result of an aj operation. - virtual ::grpc::Status AjTables(::grpc::ServerContext* context, const ::io::deephaven::proto::backplane::grpc::AjRajTablesRequest* request, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse* response); - // - // Returns the result of an raj operation. - virtual ::grpc::Status RajTables(::grpc::ServerContext* context, const ::io::deephaven::proto::backplane::grpc::AjRajTablesRequest* request, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse* response); - // - // Returns the result of a multi-join operation. - virtual ::grpc::Status MultiJoinTables(::grpc::ServerContext* context, const ::io::deephaven::proto::backplane::grpc::MultiJoinTablesRequest* request, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse* response); - // - // Returns the result of a range join operation. - virtual ::grpc::Status RangeJoinTables(::grpc::ServerContext* context, const ::io::deephaven::proto::backplane::grpc::RangeJoinTablesRequest* request, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse* response); - // - // Returns the result of an aggregate table operation. - // - // Deprecated: Please use AggregateAll or Aggregate instead - virtual ::grpc::Status ComboAggregate(::grpc::ServerContext* context, const ::io::deephaven::proto::backplane::grpc::ComboAggregateRequest* request, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse* response); - // - // Aggregates all non-grouping columns against a single aggregation specification. - virtual ::grpc::Status AggregateAll(::grpc::ServerContext* context, const ::io::deephaven::proto::backplane::grpc::AggregateAllRequest* request, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse* response); - // - // Produce an aggregated result by grouping the source_id table according to the group_by_columns and applying - // aggregations to each resulting group of rows. The result table will have one row per group, ordered by - // the encounter order within the source_id table, thereby ensuring that the row key for a given group never - // changes. - virtual ::grpc::Status Aggregate(::grpc::ServerContext* context, const ::io::deephaven::proto::backplane::grpc::AggregateRequest* request, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse* response); - // - // Takes a single snapshot of the source_id table. - virtual ::grpc::Status Snapshot(::grpc::ServerContext* context, const ::io::deephaven::proto::backplane::grpc::SnapshotTableRequest* request, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse* response); - // - // Snapshot base_id, triggered by trigger_id, and export the resulting new table. - // The trigger_id table's change events cause a new snapshot to be taken. The result table includes a - // "snapshot key" which is a subset (possibly all) of the base_id table's columns. The - // remaining columns in the result table come from base_id table, the table being snapshotted. - virtual ::grpc::Status SnapshotWhen(::grpc::ServerContext* context, const ::io::deephaven::proto::backplane::grpc::SnapshotWhenTableRequest* request, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse* response); - // - // Returns a new table with a flattened row set. - virtual ::grpc::Status Flatten(::grpc::ServerContext* context, const ::io::deephaven::proto::backplane::grpc::FlattenRequest* request, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse* response); - // * - // Downsamples a table assume its contents will be rendered in a run chart, with each subsequent row holding a later - // X value (i.e., sorted on that column). Multiple Y columns can be specified, as can a range of values for the X - // column to support zooming in. - virtual ::grpc::Status RunChartDownsample(::grpc::ServerContext* context, const ::io::deephaven::proto::backplane::grpc::RunChartDownsampleRequest* request, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse* response); - // * - // Creates a new Table based on the provided configuration. This can be used as a regular table from the other methods - // in this interface, or can be interacted with via the InputTableService to modify its contents. - virtual ::grpc::Status CreateInputTable(::grpc::ServerContext* context, const ::io::deephaven::proto::backplane::grpc::CreateInputTableRequest* request, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse* response); - // * - // Filters the left table based on the set of values in the right table. - // - // Note that when the right table ticks, all of the rows in the left table are going to be re-evaluated, - // thus the intention is that the right table is fairly slow moving compared with the left table. - virtual ::grpc::Status WhereIn(::grpc::ServerContext* context, const ::io::deephaven::proto::backplane::grpc::WhereInRequest* request, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse* response); - // - // Batch a series of requests and send them all at once. This enables the user to create intermediate tables without - // requiring them to be exported and managed by the client. The server will automatically release any tables when they - // are no longer depended upon. - virtual ::grpc::Status Batch(::grpc::ServerContext* context, const ::io::deephaven::proto::backplane::grpc::BatchTableRequest* request, ::grpc::ServerWriter< ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse>* writer); - // - // Establish a stream of table updates for cheap notifications of table size updates. - // - // New streams will flush updates for all existing table exports. An export id of zero will be sent to indicate all - // exports have sent their refresh update. Table updates may be intermingled with initial refresh updates after their - // initial update had been sent. - virtual ::grpc::Status ExportedTableUpdates(::grpc::ServerContext* context, const ::io::deephaven::proto::backplane::grpc::ExportedTableUpdatesRequest* request, ::grpc::ServerWriter< ::io::deephaven::proto::backplane::grpc::ExportedTableUpdateMessage>* writer); - // - // Seek a row number within a table. - virtual ::grpc::Status SeekRow(::grpc::ServerContext* context, const ::io::deephaven::proto::backplane::grpc::SeekRowRequest* request, ::io::deephaven::proto::backplane::grpc::SeekRowResponse* response); - // - // Returns the meta table of a table. - virtual ::grpc::Status MetaTable(::grpc::ServerContext* context, const ::io::deephaven::proto::backplane::grpc::MetaTableRequest* request, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse* response); - // * - // Returns a new table representing statistics about a single column of the provided table. This - // result table will be static - use Aggregation() instead for updating results. Presently, the - // primary use case for this is the Deephaven Web UI. - virtual ::grpc::Status ComputeColumnStatistics(::grpc::ServerContext* context, const ::io::deephaven::proto::backplane::grpc::ColumnStatisticsRequest* request, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse* response); - }; - template - class WithAsyncMethod_GetExportedTableCreationResponse : public BaseClass { - private: - void BaseClassMustBeDerivedFromService(const Service* /*service*/) {} - public: - WithAsyncMethod_GetExportedTableCreationResponse() { - ::grpc::Service::MarkMethodAsync(0); - } - ~WithAsyncMethod_GetExportedTableCreationResponse() override { - BaseClassMustBeDerivedFromService(this); - } - // disable synchronous version of this method - ::grpc::Status GetExportedTableCreationResponse(::grpc::ServerContext* /*context*/, const ::io::deephaven::proto::backplane::grpc::Ticket* /*request*/, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse* /*response*/) override { - abort(); - return ::grpc::Status(::grpc::StatusCode::UNIMPLEMENTED, ""); - } - void RequestGetExportedTableCreationResponse(::grpc::ServerContext* context, ::io::deephaven::proto::backplane::grpc::Ticket* request, ::grpc::ServerAsyncResponseWriter< ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse>* response, ::grpc::CompletionQueue* new_call_cq, ::grpc::ServerCompletionQueue* notification_cq, void *tag) { - ::grpc::Service::RequestAsyncUnary(0, context, request, response, new_call_cq, notification_cq, tag); - } - }; - template - class WithAsyncMethod_FetchTable : public BaseClass { - private: - void BaseClassMustBeDerivedFromService(const Service* /*service*/) {} - public: - WithAsyncMethod_FetchTable() { - ::grpc::Service::MarkMethodAsync(1); - } - ~WithAsyncMethod_FetchTable() override { - BaseClassMustBeDerivedFromService(this); - } - // disable synchronous version of this method - ::grpc::Status FetchTable(::grpc::ServerContext* /*context*/, const ::io::deephaven::proto::backplane::grpc::FetchTableRequest* /*request*/, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse* /*response*/) override { - abort(); - return ::grpc::Status(::grpc::StatusCode::UNIMPLEMENTED, ""); - } - void RequestFetchTable(::grpc::ServerContext* context, ::io::deephaven::proto::backplane::grpc::FetchTableRequest* request, ::grpc::ServerAsyncResponseWriter< ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse>* response, ::grpc::CompletionQueue* new_call_cq, ::grpc::ServerCompletionQueue* notification_cq, void *tag) { - ::grpc::Service::RequestAsyncUnary(1, context, request, response, new_call_cq, notification_cq, tag); - } - }; - template - class WithAsyncMethod_ApplyPreviewColumns : public BaseClass { - private: - void BaseClassMustBeDerivedFromService(const Service* /*service*/) {} - public: - WithAsyncMethod_ApplyPreviewColumns() { - ::grpc::Service::MarkMethodAsync(2); - } - ~WithAsyncMethod_ApplyPreviewColumns() override { - BaseClassMustBeDerivedFromService(this); - } - // disable synchronous version of this method - ::grpc::Status ApplyPreviewColumns(::grpc::ServerContext* /*context*/, const ::io::deephaven::proto::backplane::grpc::ApplyPreviewColumnsRequest* /*request*/, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse* /*response*/) override { - abort(); - return ::grpc::Status(::grpc::StatusCode::UNIMPLEMENTED, ""); - } - void RequestApplyPreviewColumns(::grpc::ServerContext* context, ::io::deephaven::proto::backplane::grpc::ApplyPreviewColumnsRequest* request, ::grpc::ServerAsyncResponseWriter< ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse>* response, ::grpc::CompletionQueue* new_call_cq, ::grpc::ServerCompletionQueue* notification_cq, void *tag) { - ::grpc::Service::RequestAsyncUnary(2, context, request, response, new_call_cq, notification_cq, tag); - } - }; - template - class WithAsyncMethod_EmptyTable : public BaseClass { - private: - void BaseClassMustBeDerivedFromService(const Service* /*service*/) {} - public: - WithAsyncMethod_EmptyTable() { - ::grpc::Service::MarkMethodAsync(3); - } - ~WithAsyncMethod_EmptyTable() override { - BaseClassMustBeDerivedFromService(this); - } - // disable synchronous version of this method - ::grpc::Status EmptyTable(::grpc::ServerContext* /*context*/, const ::io::deephaven::proto::backplane::grpc::EmptyTableRequest* /*request*/, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse* /*response*/) override { - abort(); - return ::grpc::Status(::grpc::StatusCode::UNIMPLEMENTED, ""); - } - void RequestEmptyTable(::grpc::ServerContext* context, ::io::deephaven::proto::backplane::grpc::EmptyTableRequest* request, ::grpc::ServerAsyncResponseWriter< ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse>* response, ::grpc::CompletionQueue* new_call_cq, ::grpc::ServerCompletionQueue* notification_cq, void *tag) { - ::grpc::Service::RequestAsyncUnary(3, context, request, response, new_call_cq, notification_cq, tag); - } - }; - template - class WithAsyncMethod_TimeTable : public BaseClass { - private: - void BaseClassMustBeDerivedFromService(const Service* /*service*/) {} - public: - WithAsyncMethod_TimeTable() { - ::grpc::Service::MarkMethodAsync(4); - } - ~WithAsyncMethod_TimeTable() override { - BaseClassMustBeDerivedFromService(this); - } - // disable synchronous version of this method - ::grpc::Status TimeTable(::grpc::ServerContext* /*context*/, const ::io::deephaven::proto::backplane::grpc::TimeTableRequest* /*request*/, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse* /*response*/) override { - abort(); - return ::grpc::Status(::grpc::StatusCode::UNIMPLEMENTED, ""); - } - void RequestTimeTable(::grpc::ServerContext* context, ::io::deephaven::proto::backplane::grpc::TimeTableRequest* request, ::grpc::ServerAsyncResponseWriter< ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse>* response, ::grpc::CompletionQueue* new_call_cq, ::grpc::ServerCompletionQueue* notification_cq, void *tag) { - ::grpc::Service::RequestAsyncUnary(4, context, request, response, new_call_cq, notification_cq, tag); - } - }; - template - class WithAsyncMethod_DropColumns : public BaseClass { - private: - void BaseClassMustBeDerivedFromService(const Service* /*service*/) {} - public: - WithAsyncMethod_DropColumns() { - ::grpc::Service::MarkMethodAsync(5); - } - ~WithAsyncMethod_DropColumns() override { - BaseClassMustBeDerivedFromService(this); - } - // disable synchronous version of this method - ::grpc::Status DropColumns(::grpc::ServerContext* /*context*/, const ::io::deephaven::proto::backplane::grpc::DropColumnsRequest* /*request*/, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse* /*response*/) override { - abort(); - return ::grpc::Status(::grpc::StatusCode::UNIMPLEMENTED, ""); - } - void RequestDropColumns(::grpc::ServerContext* context, ::io::deephaven::proto::backplane::grpc::DropColumnsRequest* request, ::grpc::ServerAsyncResponseWriter< ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse>* response, ::grpc::CompletionQueue* new_call_cq, ::grpc::ServerCompletionQueue* notification_cq, void *tag) { - ::grpc::Service::RequestAsyncUnary(5, context, request, response, new_call_cq, notification_cq, tag); - } - }; - template - class WithAsyncMethod_Update : public BaseClass { - private: - void BaseClassMustBeDerivedFromService(const Service* /*service*/) {} - public: - WithAsyncMethod_Update() { - ::grpc::Service::MarkMethodAsync(6); - } - ~WithAsyncMethod_Update() override { - BaseClassMustBeDerivedFromService(this); - } - // disable synchronous version of this method - ::grpc::Status Update(::grpc::ServerContext* /*context*/, const ::io::deephaven::proto::backplane::grpc::SelectOrUpdateRequest* /*request*/, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse* /*response*/) override { - abort(); - return ::grpc::Status(::grpc::StatusCode::UNIMPLEMENTED, ""); - } - void RequestUpdate(::grpc::ServerContext* context, ::io::deephaven::proto::backplane::grpc::SelectOrUpdateRequest* request, ::grpc::ServerAsyncResponseWriter< ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse>* response, ::grpc::CompletionQueue* new_call_cq, ::grpc::ServerCompletionQueue* notification_cq, void *tag) { - ::grpc::Service::RequestAsyncUnary(6, context, request, response, new_call_cq, notification_cq, tag); - } - }; - template - class WithAsyncMethod_LazyUpdate : public BaseClass { - private: - void BaseClassMustBeDerivedFromService(const Service* /*service*/) {} - public: - WithAsyncMethod_LazyUpdate() { - ::grpc::Service::MarkMethodAsync(7); - } - ~WithAsyncMethod_LazyUpdate() override { - BaseClassMustBeDerivedFromService(this); - } - // disable synchronous version of this method - ::grpc::Status LazyUpdate(::grpc::ServerContext* /*context*/, const ::io::deephaven::proto::backplane::grpc::SelectOrUpdateRequest* /*request*/, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse* /*response*/) override { - abort(); - return ::grpc::Status(::grpc::StatusCode::UNIMPLEMENTED, ""); - } - void RequestLazyUpdate(::grpc::ServerContext* context, ::io::deephaven::proto::backplane::grpc::SelectOrUpdateRequest* request, ::grpc::ServerAsyncResponseWriter< ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse>* response, ::grpc::CompletionQueue* new_call_cq, ::grpc::ServerCompletionQueue* notification_cq, void *tag) { - ::grpc::Service::RequestAsyncUnary(7, context, request, response, new_call_cq, notification_cq, tag); - } - }; - template - class WithAsyncMethod_View : public BaseClass { - private: - void BaseClassMustBeDerivedFromService(const Service* /*service*/) {} - public: - WithAsyncMethod_View() { - ::grpc::Service::MarkMethodAsync(8); - } - ~WithAsyncMethod_View() override { - BaseClassMustBeDerivedFromService(this); - } - // disable synchronous version of this method - ::grpc::Status View(::grpc::ServerContext* /*context*/, const ::io::deephaven::proto::backplane::grpc::SelectOrUpdateRequest* /*request*/, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse* /*response*/) override { - abort(); - return ::grpc::Status(::grpc::StatusCode::UNIMPLEMENTED, ""); - } - void RequestView(::grpc::ServerContext* context, ::io::deephaven::proto::backplane::grpc::SelectOrUpdateRequest* request, ::grpc::ServerAsyncResponseWriter< ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse>* response, ::grpc::CompletionQueue* new_call_cq, ::grpc::ServerCompletionQueue* notification_cq, void *tag) { - ::grpc::Service::RequestAsyncUnary(8, context, request, response, new_call_cq, notification_cq, tag); - } - }; - template - class WithAsyncMethod_UpdateView : public BaseClass { - private: - void BaseClassMustBeDerivedFromService(const Service* /*service*/) {} - public: - WithAsyncMethod_UpdateView() { - ::grpc::Service::MarkMethodAsync(9); - } - ~WithAsyncMethod_UpdateView() override { - BaseClassMustBeDerivedFromService(this); - } - // disable synchronous version of this method - ::grpc::Status UpdateView(::grpc::ServerContext* /*context*/, const ::io::deephaven::proto::backplane::grpc::SelectOrUpdateRequest* /*request*/, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse* /*response*/) override { - abort(); - return ::grpc::Status(::grpc::StatusCode::UNIMPLEMENTED, ""); - } - void RequestUpdateView(::grpc::ServerContext* context, ::io::deephaven::proto::backplane::grpc::SelectOrUpdateRequest* request, ::grpc::ServerAsyncResponseWriter< ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse>* response, ::grpc::CompletionQueue* new_call_cq, ::grpc::ServerCompletionQueue* notification_cq, void *tag) { - ::grpc::Service::RequestAsyncUnary(9, context, request, response, new_call_cq, notification_cq, tag); - } - }; - template - class WithAsyncMethod_Select : public BaseClass { - private: - void BaseClassMustBeDerivedFromService(const Service* /*service*/) {} - public: - WithAsyncMethod_Select() { - ::grpc::Service::MarkMethodAsync(10); - } - ~WithAsyncMethod_Select() override { - BaseClassMustBeDerivedFromService(this); - } - // disable synchronous version of this method - ::grpc::Status Select(::grpc::ServerContext* /*context*/, const ::io::deephaven::proto::backplane::grpc::SelectOrUpdateRequest* /*request*/, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse* /*response*/) override { - abort(); - return ::grpc::Status(::grpc::StatusCode::UNIMPLEMENTED, ""); - } - void RequestSelect(::grpc::ServerContext* context, ::io::deephaven::proto::backplane::grpc::SelectOrUpdateRequest* request, ::grpc::ServerAsyncResponseWriter< ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse>* response, ::grpc::CompletionQueue* new_call_cq, ::grpc::ServerCompletionQueue* notification_cq, void *tag) { - ::grpc::Service::RequestAsyncUnary(10, context, request, response, new_call_cq, notification_cq, tag); - } - }; - template - class WithAsyncMethod_UpdateBy : public BaseClass { - private: - void BaseClassMustBeDerivedFromService(const Service* /*service*/) {} - public: - WithAsyncMethod_UpdateBy() { - ::grpc::Service::MarkMethodAsync(11); - } - ~WithAsyncMethod_UpdateBy() override { - BaseClassMustBeDerivedFromService(this); - } - // disable synchronous version of this method - ::grpc::Status UpdateBy(::grpc::ServerContext* /*context*/, const ::io::deephaven::proto::backplane::grpc::UpdateByRequest* /*request*/, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse* /*response*/) override { - abort(); - return ::grpc::Status(::grpc::StatusCode::UNIMPLEMENTED, ""); - } - void RequestUpdateBy(::grpc::ServerContext* context, ::io::deephaven::proto::backplane::grpc::UpdateByRequest* request, ::grpc::ServerAsyncResponseWriter< ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse>* response, ::grpc::CompletionQueue* new_call_cq, ::grpc::ServerCompletionQueue* notification_cq, void *tag) { - ::grpc::Service::RequestAsyncUnary(11, context, request, response, new_call_cq, notification_cq, tag); - } - }; - template - class WithAsyncMethod_SelectDistinct : public BaseClass { - private: - void BaseClassMustBeDerivedFromService(const Service* /*service*/) {} - public: - WithAsyncMethod_SelectDistinct() { - ::grpc::Service::MarkMethodAsync(12); - } - ~WithAsyncMethod_SelectDistinct() override { - BaseClassMustBeDerivedFromService(this); - } - // disable synchronous version of this method - ::grpc::Status SelectDistinct(::grpc::ServerContext* /*context*/, const ::io::deephaven::proto::backplane::grpc::SelectDistinctRequest* /*request*/, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse* /*response*/) override { - abort(); - return ::grpc::Status(::grpc::StatusCode::UNIMPLEMENTED, ""); - } - void RequestSelectDistinct(::grpc::ServerContext* context, ::io::deephaven::proto::backplane::grpc::SelectDistinctRequest* request, ::grpc::ServerAsyncResponseWriter< ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse>* response, ::grpc::CompletionQueue* new_call_cq, ::grpc::ServerCompletionQueue* notification_cq, void *tag) { - ::grpc::Service::RequestAsyncUnary(12, context, request, response, new_call_cq, notification_cq, tag); - } - }; - template - class WithAsyncMethod_Filter : public BaseClass { - private: - void BaseClassMustBeDerivedFromService(const Service* /*service*/) {} - public: - WithAsyncMethod_Filter() { - ::grpc::Service::MarkMethodAsync(13); - } - ~WithAsyncMethod_Filter() override { - BaseClassMustBeDerivedFromService(this); - } - // disable synchronous version of this method - ::grpc::Status Filter(::grpc::ServerContext* /*context*/, const ::io::deephaven::proto::backplane::grpc::FilterTableRequest* /*request*/, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse* /*response*/) override { - abort(); - return ::grpc::Status(::grpc::StatusCode::UNIMPLEMENTED, ""); - } - void RequestFilter(::grpc::ServerContext* context, ::io::deephaven::proto::backplane::grpc::FilterTableRequest* request, ::grpc::ServerAsyncResponseWriter< ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse>* response, ::grpc::CompletionQueue* new_call_cq, ::grpc::ServerCompletionQueue* notification_cq, void *tag) { - ::grpc::Service::RequestAsyncUnary(13, context, request, response, new_call_cq, notification_cq, tag); - } - }; - template - class WithAsyncMethod_UnstructuredFilter : public BaseClass { - private: - void BaseClassMustBeDerivedFromService(const Service* /*service*/) {} - public: - WithAsyncMethod_UnstructuredFilter() { - ::grpc::Service::MarkMethodAsync(14); - } - ~WithAsyncMethod_UnstructuredFilter() override { - BaseClassMustBeDerivedFromService(this); - } - // disable synchronous version of this method - ::grpc::Status UnstructuredFilter(::grpc::ServerContext* /*context*/, const ::io::deephaven::proto::backplane::grpc::UnstructuredFilterTableRequest* /*request*/, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse* /*response*/) override { - abort(); - return ::grpc::Status(::grpc::StatusCode::UNIMPLEMENTED, ""); - } - void RequestUnstructuredFilter(::grpc::ServerContext* context, ::io::deephaven::proto::backplane::grpc::UnstructuredFilterTableRequest* request, ::grpc::ServerAsyncResponseWriter< ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse>* response, ::grpc::CompletionQueue* new_call_cq, ::grpc::ServerCompletionQueue* notification_cq, void *tag) { - ::grpc::Service::RequestAsyncUnary(14, context, request, response, new_call_cq, notification_cq, tag); - } - }; - template - class WithAsyncMethod_Sort : public BaseClass { - private: - void BaseClassMustBeDerivedFromService(const Service* /*service*/) {} - public: - WithAsyncMethod_Sort() { - ::grpc::Service::MarkMethodAsync(15); - } - ~WithAsyncMethod_Sort() override { - BaseClassMustBeDerivedFromService(this); - } - // disable synchronous version of this method - ::grpc::Status Sort(::grpc::ServerContext* /*context*/, const ::io::deephaven::proto::backplane::grpc::SortTableRequest* /*request*/, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse* /*response*/) override { - abort(); - return ::grpc::Status(::grpc::StatusCode::UNIMPLEMENTED, ""); - } - void RequestSort(::grpc::ServerContext* context, ::io::deephaven::proto::backplane::grpc::SortTableRequest* request, ::grpc::ServerAsyncResponseWriter< ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse>* response, ::grpc::CompletionQueue* new_call_cq, ::grpc::ServerCompletionQueue* notification_cq, void *tag) { - ::grpc::Service::RequestAsyncUnary(15, context, request, response, new_call_cq, notification_cq, tag); - } - }; - template - class WithAsyncMethod_Head : public BaseClass { - private: - void BaseClassMustBeDerivedFromService(const Service* /*service*/) {} - public: - WithAsyncMethod_Head() { - ::grpc::Service::MarkMethodAsync(16); - } - ~WithAsyncMethod_Head() override { - BaseClassMustBeDerivedFromService(this); - } - // disable synchronous version of this method - ::grpc::Status Head(::grpc::ServerContext* /*context*/, const ::io::deephaven::proto::backplane::grpc::HeadOrTailRequest* /*request*/, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse* /*response*/) override { - abort(); - return ::grpc::Status(::grpc::StatusCode::UNIMPLEMENTED, ""); - } - void RequestHead(::grpc::ServerContext* context, ::io::deephaven::proto::backplane::grpc::HeadOrTailRequest* request, ::grpc::ServerAsyncResponseWriter< ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse>* response, ::grpc::CompletionQueue* new_call_cq, ::grpc::ServerCompletionQueue* notification_cq, void *tag) { - ::grpc::Service::RequestAsyncUnary(16, context, request, response, new_call_cq, notification_cq, tag); - } - }; - template - class WithAsyncMethod_Tail : public BaseClass { - private: - void BaseClassMustBeDerivedFromService(const Service* /*service*/) {} - public: - WithAsyncMethod_Tail() { - ::grpc::Service::MarkMethodAsync(17); - } - ~WithAsyncMethod_Tail() override { - BaseClassMustBeDerivedFromService(this); - } - // disable synchronous version of this method - ::grpc::Status Tail(::grpc::ServerContext* /*context*/, const ::io::deephaven::proto::backplane::grpc::HeadOrTailRequest* /*request*/, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse* /*response*/) override { - abort(); - return ::grpc::Status(::grpc::StatusCode::UNIMPLEMENTED, ""); - } - void RequestTail(::grpc::ServerContext* context, ::io::deephaven::proto::backplane::grpc::HeadOrTailRequest* request, ::grpc::ServerAsyncResponseWriter< ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse>* response, ::grpc::CompletionQueue* new_call_cq, ::grpc::ServerCompletionQueue* notification_cq, void *tag) { - ::grpc::Service::RequestAsyncUnary(17, context, request, response, new_call_cq, notification_cq, tag); - } - }; - template - class WithAsyncMethod_HeadBy : public BaseClass { - private: - void BaseClassMustBeDerivedFromService(const Service* /*service*/) {} - public: - WithAsyncMethod_HeadBy() { - ::grpc::Service::MarkMethodAsync(18); - } - ~WithAsyncMethod_HeadBy() override { - BaseClassMustBeDerivedFromService(this); - } - // disable synchronous version of this method - ::grpc::Status HeadBy(::grpc::ServerContext* /*context*/, const ::io::deephaven::proto::backplane::grpc::HeadOrTailByRequest* /*request*/, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse* /*response*/) override { - abort(); - return ::grpc::Status(::grpc::StatusCode::UNIMPLEMENTED, ""); - } - void RequestHeadBy(::grpc::ServerContext* context, ::io::deephaven::proto::backplane::grpc::HeadOrTailByRequest* request, ::grpc::ServerAsyncResponseWriter< ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse>* response, ::grpc::CompletionQueue* new_call_cq, ::grpc::ServerCompletionQueue* notification_cq, void *tag) { - ::grpc::Service::RequestAsyncUnary(18, context, request, response, new_call_cq, notification_cq, tag); - } - }; - template - class WithAsyncMethod_TailBy : public BaseClass { - private: - void BaseClassMustBeDerivedFromService(const Service* /*service*/) {} - public: - WithAsyncMethod_TailBy() { - ::grpc::Service::MarkMethodAsync(19); - } - ~WithAsyncMethod_TailBy() override { - BaseClassMustBeDerivedFromService(this); - } - // disable synchronous version of this method - ::grpc::Status TailBy(::grpc::ServerContext* /*context*/, const ::io::deephaven::proto::backplane::grpc::HeadOrTailByRequest* /*request*/, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse* /*response*/) override { - abort(); - return ::grpc::Status(::grpc::StatusCode::UNIMPLEMENTED, ""); - } - void RequestTailBy(::grpc::ServerContext* context, ::io::deephaven::proto::backplane::grpc::HeadOrTailByRequest* request, ::grpc::ServerAsyncResponseWriter< ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse>* response, ::grpc::CompletionQueue* new_call_cq, ::grpc::ServerCompletionQueue* notification_cq, void *tag) { - ::grpc::Service::RequestAsyncUnary(19, context, request, response, new_call_cq, notification_cq, tag); - } - }; - template - class WithAsyncMethod_Ungroup : public BaseClass { - private: - void BaseClassMustBeDerivedFromService(const Service* /*service*/) {} - public: - WithAsyncMethod_Ungroup() { - ::grpc::Service::MarkMethodAsync(20); - } - ~WithAsyncMethod_Ungroup() override { - BaseClassMustBeDerivedFromService(this); - } - // disable synchronous version of this method - ::grpc::Status Ungroup(::grpc::ServerContext* /*context*/, const ::io::deephaven::proto::backplane::grpc::UngroupRequest* /*request*/, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse* /*response*/) override { - abort(); - return ::grpc::Status(::grpc::StatusCode::UNIMPLEMENTED, ""); - } - void RequestUngroup(::grpc::ServerContext* context, ::io::deephaven::proto::backplane::grpc::UngroupRequest* request, ::grpc::ServerAsyncResponseWriter< ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse>* response, ::grpc::CompletionQueue* new_call_cq, ::grpc::ServerCompletionQueue* notification_cq, void *tag) { - ::grpc::Service::RequestAsyncUnary(20, context, request, response, new_call_cq, notification_cq, tag); - } - }; - template - class WithAsyncMethod_MergeTables : public BaseClass { - private: - void BaseClassMustBeDerivedFromService(const Service* /*service*/) {} - public: - WithAsyncMethod_MergeTables() { - ::grpc::Service::MarkMethodAsync(21); - } - ~WithAsyncMethod_MergeTables() override { - BaseClassMustBeDerivedFromService(this); - } - // disable synchronous version of this method - ::grpc::Status MergeTables(::grpc::ServerContext* /*context*/, const ::io::deephaven::proto::backplane::grpc::MergeTablesRequest* /*request*/, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse* /*response*/) override { - abort(); - return ::grpc::Status(::grpc::StatusCode::UNIMPLEMENTED, ""); - } - void RequestMergeTables(::grpc::ServerContext* context, ::io::deephaven::proto::backplane::grpc::MergeTablesRequest* request, ::grpc::ServerAsyncResponseWriter< ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse>* response, ::grpc::CompletionQueue* new_call_cq, ::grpc::ServerCompletionQueue* notification_cq, void *tag) { - ::grpc::Service::RequestAsyncUnary(21, context, request, response, new_call_cq, notification_cq, tag); - } - }; - template - class WithAsyncMethod_CrossJoinTables : public BaseClass { - private: - void BaseClassMustBeDerivedFromService(const Service* /*service*/) {} - public: - WithAsyncMethod_CrossJoinTables() { - ::grpc::Service::MarkMethodAsync(22); - } - ~WithAsyncMethod_CrossJoinTables() override { - BaseClassMustBeDerivedFromService(this); - } - // disable synchronous version of this method - ::grpc::Status CrossJoinTables(::grpc::ServerContext* /*context*/, const ::io::deephaven::proto::backplane::grpc::CrossJoinTablesRequest* /*request*/, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse* /*response*/) override { - abort(); - return ::grpc::Status(::grpc::StatusCode::UNIMPLEMENTED, ""); - } - void RequestCrossJoinTables(::grpc::ServerContext* context, ::io::deephaven::proto::backplane::grpc::CrossJoinTablesRequest* request, ::grpc::ServerAsyncResponseWriter< ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse>* response, ::grpc::CompletionQueue* new_call_cq, ::grpc::ServerCompletionQueue* notification_cq, void *tag) { - ::grpc::Service::RequestAsyncUnary(22, context, request, response, new_call_cq, notification_cq, tag); - } - }; - template - class WithAsyncMethod_NaturalJoinTables : public BaseClass { - private: - void BaseClassMustBeDerivedFromService(const Service* /*service*/) {} - public: - WithAsyncMethod_NaturalJoinTables() { - ::grpc::Service::MarkMethodAsync(23); - } - ~WithAsyncMethod_NaturalJoinTables() override { - BaseClassMustBeDerivedFromService(this); - } - // disable synchronous version of this method - ::grpc::Status NaturalJoinTables(::grpc::ServerContext* /*context*/, const ::io::deephaven::proto::backplane::grpc::NaturalJoinTablesRequest* /*request*/, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse* /*response*/) override { - abort(); - return ::grpc::Status(::grpc::StatusCode::UNIMPLEMENTED, ""); - } - void RequestNaturalJoinTables(::grpc::ServerContext* context, ::io::deephaven::proto::backplane::grpc::NaturalJoinTablesRequest* request, ::grpc::ServerAsyncResponseWriter< ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse>* response, ::grpc::CompletionQueue* new_call_cq, ::grpc::ServerCompletionQueue* notification_cq, void *tag) { - ::grpc::Service::RequestAsyncUnary(23, context, request, response, new_call_cq, notification_cq, tag); - } - }; - template - class WithAsyncMethod_ExactJoinTables : public BaseClass { - private: - void BaseClassMustBeDerivedFromService(const Service* /*service*/) {} - public: - WithAsyncMethod_ExactJoinTables() { - ::grpc::Service::MarkMethodAsync(24); - } - ~WithAsyncMethod_ExactJoinTables() override { - BaseClassMustBeDerivedFromService(this); - } - // disable synchronous version of this method - ::grpc::Status ExactJoinTables(::grpc::ServerContext* /*context*/, const ::io::deephaven::proto::backplane::grpc::ExactJoinTablesRequest* /*request*/, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse* /*response*/) override { - abort(); - return ::grpc::Status(::grpc::StatusCode::UNIMPLEMENTED, ""); - } - void RequestExactJoinTables(::grpc::ServerContext* context, ::io::deephaven::proto::backplane::grpc::ExactJoinTablesRequest* request, ::grpc::ServerAsyncResponseWriter< ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse>* response, ::grpc::CompletionQueue* new_call_cq, ::grpc::ServerCompletionQueue* notification_cq, void *tag) { - ::grpc::Service::RequestAsyncUnary(24, context, request, response, new_call_cq, notification_cq, tag); - } - }; - template - class WithAsyncMethod_LeftJoinTables : public BaseClass { - private: - void BaseClassMustBeDerivedFromService(const Service* /*service*/) {} - public: - WithAsyncMethod_LeftJoinTables() { - ::grpc::Service::MarkMethodAsync(25); - } - ~WithAsyncMethod_LeftJoinTables() override { - BaseClassMustBeDerivedFromService(this); - } - // disable synchronous version of this method - ::grpc::Status LeftJoinTables(::grpc::ServerContext* /*context*/, const ::io::deephaven::proto::backplane::grpc::LeftJoinTablesRequest* /*request*/, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse* /*response*/) override { - abort(); - return ::grpc::Status(::grpc::StatusCode::UNIMPLEMENTED, ""); - } - void RequestLeftJoinTables(::grpc::ServerContext* context, ::io::deephaven::proto::backplane::grpc::LeftJoinTablesRequest* request, ::grpc::ServerAsyncResponseWriter< ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse>* response, ::grpc::CompletionQueue* new_call_cq, ::grpc::ServerCompletionQueue* notification_cq, void *tag) { - ::grpc::Service::RequestAsyncUnary(25, context, request, response, new_call_cq, notification_cq, tag); - } - }; - template - class WithAsyncMethod_AsOfJoinTables : public BaseClass { - private: - void BaseClassMustBeDerivedFromService(const Service* /*service*/) {} - public: - WithAsyncMethod_AsOfJoinTables() { - ::grpc::Service::MarkMethodAsync(26); - } - ~WithAsyncMethod_AsOfJoinTables() override { - BaseClassMustBeDerivedFromService(this); - } - // disable synchronous version of this method - ::grpc::Status AsOfJoinTables(::grpc::ServerContext* /*context*/, const ::io::deephaven::proto::backplane::grpc::AsOfJoinTablesRequest* /*request*/, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse* /*response*/) override { - abort(); - return ::grpc::Status(::grpc::StatusCode::UNIMPLEMENTED, ""); - } - void RequestAsOfJoinTables(::grpc::ServerContext* context, ::io::deephaven::proto::backplane::grpc::AsOfJoinTablesRequest* request, ::grpc::ServerAsyncResponseWriter< ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse>* response, ::grpc::CompletionQueue* new_call_cq, ::grpc::ServerCompletionQueue* notification_cq, void *tag) { - ::grpc::Service::RequestAsyncUnary(26, context, request, response, new_call_cq, notification_cq, tag); - } - }; - template - class WithAsyncMethod_AjTables : public BaseClass { - private: - void BaseClassMustBeDerivedFromService(const Service* /*service*/) {} - public: - WithAsyncMethod_AjTables() { - ::grpc::Service::MarkMethodAsync(27); - } - ~WithAsyncMethod_AjTables() override { - BaseClassMustBeDerivedFromService(this); - } - // disable synchronous version of this method - ::grpc::Status AjTables(::grpc::ServerContext* /*context*/, const ::io::deephaven::proto::backplane::grpc::AjRajTablesRequest* /*request*/, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse* /*response*/) override { - abort(); - return ::grpc::Status(::grpc::StatusCode::UNIMPLEMENTED, ""); - } - void RequestAjTables(::grpc::ServerContext* context, ::io::deephaven::proto::backplane::grpc::AjRajTablesRequest* request, ::grpc::ServerAsyncResponseWriter< ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse>* response, ::grpc::CompletionQueue* new_call_cq, ::grpc::ServerCompletionQueue* notification_cq, void *tag) { - ::grpc::Service::RequestAsyncUnary(27, context, request, response, new_call_cq, notification_cq, tag); - } - }; - template - class WithAsyncMethod_RajTables : public BaseClass { - private: - void BaseClassMustBeDerivedFromService(const Service* /*service*/) {} - public: - WithAsyncMethod_RajTables() { - ::grpc::Service::MarkMethodAsync(28); - } - ~WithAsyncMethod_RajTables() override { - BaseClassMustBeDerivedFromService(this); - } - // disable synchronous version of this method - ::grpc::Status RajTables(::grpc::ServerContext* /*context*/, const ::io::deephaven::proto::backplane::grpc::AjRajTablesRequest* /*request*/, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse* /*response*/) override { - abort(); - return ::grpc::Status(::grpc::StatusCode::UNIMPLEMENTED, ""); - } - void RequestRajTables(::grpc::ServerContext* context, ::io::deephaven::proto::backplane::grpc::AjRajTablesRequest* request, ::grpc::ServerAsyncResponseWriter< ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse>* response, ::grpc::CompletionQueue* new_call_cq, ::grpc::ServerCompletionQueue* notification_cq, void *tag) { - ::grpc::Service::RequestAsyncUnary(28, context, request, response, new_call_cq, notification_cq, tag); - } - }; - template - class WithAsyncMethod_MultiJoinTables : public BaseClass { - private: - void BaseClassMustBeDerivedFromService(const Service* /*service*/) {} - public: - WithAsyncMethod_MultiJoinTables() { - ::grpc::Service::MarkMethodAsync(29); - } - ~WithAsyncMethod_MultiJoinTables() override { - BaseClassMustBeDerivedFromService(this); - } - // disable synchronous version of this method - ::grpc::Status MultiJoinTables(::grpc::ServerContext* /*context*/, const ::io::deephaven::proto::backplane::grpc::MultiJoinTablesRequest* /*request*/, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse* /*response*/) override { - abort(); - return ::grpc::Status(::grpc::StatusCode::UNIMPLEMENTED, ""); - } - void RequestMultiJoinTables(::grpc::ServerContext* context, ::io::deephaven::proto::backplane::grpc::MultiJoinTablesRequest* request, ::grpc::ServerAsyncResponseWriter< ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse>* response, ::grpc::CompletionQueue* new_call_cq, ::grpc::ServerCompletionQueue* notification_cq, void *tag) { - ::grpc::Service::RequestAsyncUnary(29, context, request, response, new_call_cq, notification_cq, tag); - } - }; - template - class WithAsyncMethod_RangeJoinTables : public BaseClass { - private: - void BaseClassMustBeDerivedFromService(const Service* /*service*/) {} - public: - WithAsyncMethod_RangeJoinTables() { - ::grpc::Service::MarkMethodAsync(30); - } - ~WithAsyncMethod_RangeJoinTables() override { - BaseClassMustBeDerivedFromService(this); - } - // disable synchronous version of this method - ::grpc::Status RangeJoinTables(::grpc::ServerContext* /*context*/, const ::io::deephaven::proto::backplane::grpc::RangeJoinTablesRequest* /*request*/, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse* /*response*/) override { - abort(); - return ::grpc::Status(::grpc::StatusCode::UNIMPLEMENTED, ""); - } - void RequestRangeJoinTables(::grpc::ServerContext* context, ::io::deephaven::proto::backplane::grpc::RangeJoinTablesRequest* request, ::grpc::ServerAsyncResponseWriter< ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse>* response, ::grpc::CompletionQueue* new_call_cq, ::grpc::ServerCompletionQueue* notification_cq, void *tag) { - ::grpc::Service::RequestAsyncUnary(30, context, request, response, new_call_cq, notification_cq, tag); - } - }; - template - class WithAsyncMethod_ComboAggregate : public BaseClass { - private: - void BaseClassMustBeDerivedFromService(const Service* /*service*/) {} - public: - WithAsyncMethod_ComboAggregate() { - ::grpc::Service::MarkMethodAsync(31); - } - ~WithAsyncMethod_ComboAggregate() override { - BaseClassMustBeDerivedFromService(this); - } - // disable synchronous version of this method - ::grpc::Status ComboAggregate(::grpc::ServerContext* /*context*/, const ::io::deephaven::proto::backplane::grpc::ComboAggregateRequest* /*request*/, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse* /*response*/) override { - abort(); - return ::grpc::Status(::grpc::StatusCode::UNIMPLEMENTED, ""); - } - void RequestComboAggregate(::grpc::ServerContext* context, ::io::deephaven::proto::backplane::grpc::ComboAggregateRequest* request, ::grpc::ServerAsyncResponseWriter< ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse>* response, ::grpc::CompletionQueue* new_call_cq, ::grpc::ServerCompletionQueue* notification_cq, void *tag) { - ::grpc::Service::RequestAsyncUnary(31, context, request, response, new_call_cq, notification_cq, tag); - } - }; - template - class WithAsyncMethod_AggregateAll : public BaseClass { - private: - void BaseClassMustBeDerivedFromService(const Service* /*service*/) {} - public: - WithAsyncMethod_AggregateAll() { - ::grpc::Service::MarkMethodAsync(32); - } - ~WithAsyncMethod_AggregateAll() override { - BaseClassMustBeDerivedFromService(this); - } - // disable synchronous version of this method - ::grpc::Status AggregateAll(::grpc::ServerContext* /*context*/, const ::io::deephaven::proto::backplane::grpc::AggregateAllRequest* /*request*/, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse* /*response*/) override { - abort(); - return ::grpc::Status(::grpc::StatusCode::UNIMPLEMENTED, ""); - } - void RequestAggregateAll(::grpc::ServerContext* context, ::io::deephaven::proto::backplane::grpc::AggregateAllRequest* request, ::grpc::ServerAsyncResponseWriter< ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse>* response, ::grpc::CompletionQueue* new_call_cq, ::grpc::ServerCompletionQueue* notification_cq, void *tag) { - ::grpc::Service::RequestAsyncUnary(32, context, request, response, new_call_cq, notification_cq, tag); - } - }; - template - class WithAsyncMethod_Aggregate : public BaseClass { - private: - void BaseClassMustBeDerivedFromService(const Service* /*service*/) {} - public: - WithAsyncMethod_Aggregate() { - ::grpc::Service::MarkMethodAsync(33); - } - ~WithAsyncMethod_Aggregate() override { - BaseClassMustBeDerivedFromService(this); - } - // disable synchronous version of this method - ::grpc::Status Aggregate(::grpc::ServerContext* /*context*/, const ::io::deephaven::proto::backplane::grpc::AggregateRequest* /*request*/, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse* /*response*/) override { - abort(); - return ::grpc::Status(::grpc::StatusCode::UNIMPLEMENTED, ""); - } - void RequestAggregate(::grpc::ServerContext* context, ::io::deephaven::proto::backplane::grpc::AggregateRequest* request, ::grpc::ServerAsyncResponseWriter< ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse>* response, ::grpc::CompletionQueue* new_call_cq, ::grpc::ServerCompletionQueue* notification_cq, void *tag) { - ::grpc::Service::RequestAsyncUnary(33, context, request, response, new_call_cq, notification_cq, tag); - } - }; - template - class WithAsyncMethod_Snapshot : public BaseClass { - private: - void BaseClassMustBeDerivedFromService(const Service* /*service*/) {} - public: - WithAsyncMethod_Snapshot() { - ::grpc::Service::MarkMethodAsync(34); - } - ~WithAsyncMethod_Snapshot() override { - BaseClassMustBeDerivedFromService(this); - } - // disable synchronous version of this method - ::grpc::Status Snapshot(::grpc::ServerContext* /*context*/, const ::io::deephaven::proto::backplane::grpc::SnapshotTableRequest* /*request*/, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse* /*response*/) override { - abort(); - return ::grpc::Status(::grpc::StatusCode::UNIMPLEMENTED, ""); - } - void RequestSnapshot(::grpc::ServerContext* context, ::io::deephaven::proto::backplane::grpc::SnapshotTableRequest* request, ::grpc::ServerAsyncResponseWriter< ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse>* response, ::grpc::CompletionQueue* new_call_cq, ::grpc::ServerCompletionQueue* notification_cq, void *tag) { - ::grpc::Service::RequestAsyncUnary(34, context, request, response, new_call_cq, notification_cq, tag); - } - }; - template - class WithAsyncMethod_SnapshotWhen : public BaseClass { - private: - void BaseClassMustBeDerivedFromService(const Service* /*service*/) {} - public: - WithAsyncMethod_SnapshotWhen() { - ::grpc::Service::MarkMethodAsync(35); - } - ~WithAsyncMethod_SnapshotWhen() override { - BaseClassMustBeDerivedFromService(this); - } - // disable synchronous version of this method - ::grpc::Status SnapshotWhen(::grpc::ServerContext* /*context*/, const ::io::deephaven::proto::backplane::grpc::SnapshotWhenTableRequest* /*request*/, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse* /*response*/) override { - abort(); - return ::grpc::Status(::grpc::StatusCode::UNIMPLEMENTED, ""); - } - void RequestSnapshotWhen(::grpc::ServerContext* context, ::io::deephaven::proto::backplane::grpc::SnapshotWhenTableRequest* request, ::grpc::ServerAsyncResponseWriter< ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse>* response, ::grpc::CompletionQueue* new_call_cq, ::grpc::ServerCompletionQueue* notification_cq, void *tag) { - ::grpc::Service::RequestAsyncUnary(35, context, request, response, new_call_cq, notification_cq, tag); - } - }; - template - class WithAsyncMethod_Flatten : public BaseClass { - private: - void BaseClassMustBeDerivedFromService(const Service* /*service*/) {} - public: - WithAsyncMethod_Flatten() { - ::grpc::Service::MarkMethodAsync(36); - } - ~WithAsyncMethod_Flatten() override { - BaseClassMustBeDerivedFromService(this); - } - // disable synchronous version of this method - ::grpc::Status Flatten(::grpc::ServerContext* /*context*/, const ::io::deephaven::proto::backplane::grpc::FlattenRequest* /*request*/, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse* /*response*/) override { - abort(); - return ::grpc::Status(::grpc::StatusCode::UNIMPLEMENTED, ""); - } - void RequestFlatten(::grpc::ServerContext* context, ::io::deephaven::proto::backplane::grpc::FlattenRequest* request, ::grpc::ServerAsyncResponseWriter< ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse>* response, ::grpc::CompletionQueue* new_call_cq, ::grpc::ServerCompletionQueue* notification_cq, void *tag) { - ::grpc::Service::RequestAsyncUnary(36, context, request, response, new_call_cq, notification_cq, tag); - } - }; - template - class WithAsyncMethod_RunChartDownsample : public BaseClass { - private: - void BaseClassMustBeDerivedFromService(const Service* /*service*/) {} - public: - WithAsyncMethod_RunChartDownsample() { - ::grpc::Service::MarkMethodAsync(37); - } - ~WithAsyncMethod_RunChartDownsample() override { - BaseClassMustBeDerivedFromService(this); - } - // disable synchronous version of this method - ::grpc::Status RunChartDownsample(::grpc::ServerContext* /*context*/, const ::io::deephaven::proto::backplane::grpc::RunChartDownsampleRequest* /*request*/, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse* /*response*/) override { - abort(); - return ::grpc::Status(::grpc::StatusCode::UNIMPLEMENTED, ""); - } - void RequestRunChartDownsample(::grpc::ServerContext* context, ::io::deephaven::proto::backplane::grpc::RunChartDownsampleRequest* request, ::grpc::ServerAsyncResponseWriter< ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse>* response, ::grpc::CompletionQueue* new_call_cq, ::grpc::ServerCompletionQueue* notification_cq, void *tag) { - ::grpc::Service::RequestAsyncUnary(37, context, request, response, new_call_cq, notification_cq, tag); - } - }; - template - class WithAsyncMethod_CreateInputTable : public BaseClass { - private: - void BaseClassMustBeDerivedFromService(const Service* /*service*/) {} - public: - WithAsyncMethod_CreateInputTable() { - ::grpc::Service::MarkMethodAsync(38); - } - ~WithAsyncMethod_CreateInputTable() override { - BaseClassMustBeDerivedFromService(this); - } - // disable synchronous version of this method - ::grpc::Status CreateInputTable(::grpc::ServerContext* /*context*/, const ::io::deephaven::proto::backplane::grpc::CreateInputTableRequest* /*request*/, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse* /*response*/) override { - abort(); - return ::grpc::Status(::grpc::StatusCode::UNIMPLEMENTED, ""); - } - void RequestCreateInputTable(::grpc::ServerContext* context, ::io::deephaven::proto::backplane::grpc::CreateInputTableRequest* request, ::grpc::ServerAsyncResponseWriter< ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse>* response, ::grpc::CompletionQueue* new_call_cq, ::grpc::ServerCompletionQueue* notification_cq, void *tag) { - ::grpc::Service::RequestAsyncUnary(38, context, request, response, new_call_cq, notification_cq, tag); - } - }; - template - class WithAsyncMethod_WhereIn : public BaseClass { - private: - void BaseClassMustBeDerivedFromService(const Service* /*service*/) {} - public: - WithAsyncMethod_WhereIn() { - ::grpc::Service::MarkMethodAsync(39); - } - ~WithAsyncMethod_WhereIn() override { - BaseClassMustBeDerivedFromService(this); - } - // disable synchronous version of this method - ::grpc::Status WhereIn(::grpc::ServerContext* /*context*/, const ::io::deephaven::proto::backplane::grpc::WhereInRequest* /*request*/, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse* /*response*/) override { - abort(); - return ::grpc::Status(::grpc::StatusCode::UNIMPLEMENTED, ""); - } - void RequestWhereIn(::grpc::ServerContext* context, ::io::deephaven::proto::backplane::grpc::WhereInRequest* request, ::grpc::ServerAsyncResponseWriter< ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse>* response, ::grpc::CompletionQueue* new_call_cq, ::grpc::ServerCompletionQueue* notification_cq, void *tag) { - ::grpc::Service::RequestAsyncUnary(39, context, request, response, new_call_cq, notification_cq, tag); - } - }; - template - class WithAsyncMethod_Batch : public BaseClass { - private: - void BaseClassMustBeDerivedFromService(const Service* /*service*/) {} - public: - WithAsyncMethod_Batch() { - ::grpc::Service::MarkMethodAsync(40); - } - ~WithAsyncMethod_Batch() override { - BaseClassMustBeDerivedFromService(this); - } - // disable synchronous version of this method - ::grpc::Status Batch(::grpc::ServerContext* /*context*/, const ::io::deephaven::proto::backplane::grpc::BatchTableRequest* /*request*/, ::grpc::ServerWriter< ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse>* /*writer*/) override { - abort(); - return ::grpc::Status(::grpc::StatusCode::UNIMPLEMENTED, ""); - } - void RequestBatch(::grpc::ServerContext* context, ::io::deephaven::proto::backplane::grpc::BatchTableRequest* request, ::grpc::ServerAsyncWriter< ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse>* writer, ::grpc::CompletionQueue* new_call_cq, ::grpc::ServerCompletionQueue* notification_cq, void *tag) { - ::grpc::Service::RequestAsyncServerStreaming(40, context, request, writer, new_call_cq, notification_cq, tag); - } - }; - template - class WithAsyncMethod_ExportedTableUpdates : public BaseClass { - private: - void BaseClassMustBeDerivedFromService(const Service* /*service*/) {} - public: - WithAsyncMethod_ExportedTableUpdates() { - ::grpc::Service::MarkMethodAsync(41); - } - ~WithAsyncMethod_ExportedTableUpdates() override { - BaseClassMustBeDerivedFromService(this); - } - // disable synchronous version of this method - ::grpc::Status ExportedTableUpdates(::grpc::ServerContext* /*context*/, const ::io::deephaven::proto::backplane::grpc::ExportedTableUpdatesRequest* /*request*/, ::grpc::ServerWriter< ::io::deephaven::proto::backplane::grpc::ExportedTableUpdateMessage>* /*writer*/) override { - abort(); - return ::grpc::Status(::grpc::StatusCode::UNIMPLEMENTED, ""); - } - void RequestExportedTableUpdates(::grpc::ServerContext* context, ::io::deephaven::proto::backplane::grpc::ExportedTableUpdatesRequest* request, ::grpc::ServerAsyncWriter< ::io::deephaven::proto::backplane::grpc::ExportedTableUpdateMessage>* writer, ::grpc::CompletionQueue* new_call_cq, ::grpc::ServerCompletionQueue* notification_cq, void *tag) { - ::grpc::Service::RequestAsyncServerStreaming(41, context, request, writer, new_call_cq, notification_cq, tag); - } - }; - template - class WithAsyncMethod_SeekRow : public BaseClass { - private: - void BaseClassMustBeDerivedFromService(const Service* /*service*/) {} - public: - WithAsyncMethod_SeekRow() { - ::grpc::Service::MarkMethodAsync(42); - } - ~WithAsyncMethod_SeekRow() override { - BaseClassMustBeDerivedFromService(this); - } - // disable synchronous version of this method - ::grpc::Status SeekRow(::grpc::ServerContext* /*context*/, const ::io::deephaven::proto::backplane::grpc::SeekRowRequest* /*request*/, ::io::deephaven::proto::backplane::grpc::SeekRowResponse* /*response*/) override { - abort(); - return ::grpc::Status(::grpc::StatusCode::UNIMPLEMENTED, ""); - } - void RequestSeekRow(::grpc::ServerContext* context, ::io::deephaven::proto::backplane::grpc::SeekRowRequest* request, ::grpc::ServerAsyncResponseWriter< ::io::deephaven::proto::backplane::grpc::SeekRowResponse>* response, ::grpc::CompletionQueue* new_call_cq, ::grpc::ServerCompletionQueue* notification_cq, void *tag) { - ::grpc::Service::RequestAsyncUnary(42, context, request, response, new_call_cq, notification_cq, tag); - } - }; - template - class WithAsyncMethod_MetaTable : public BaseClass { - private: - void BaseClassMustBeDerivedFromService(const Service* /*service*/) {} - public: - WithAsyncMethod_MetaTable() { - ::grpc::Service::MarkMethodAsync(43); - } - ~WithAsyncMethod_MetaTable() override { - BaseClassMustBeDerivedFromService(this); - } - // disable synchronous version of this method - ::grpc::Status MetaTable(::grpc::ServerContext* /*context*/, const ::io::deephaven::proto::backplane::grpc::MetaTableRequest* /*request*/, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse* /*response*/) override { - abort(); - return ::grpc::Status(::grpc::StatusCode::UNIMPLEMENTED, ""); - } - void RequestMetaTable(::grpc::ServerContext* context, ::io::deephaven::proto::backplane::grpc::MetaTableRequest* request, ::grpc::ServerAsyncResponseWriter< ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse>* response, ::grpc::CompletionQueue* new_call_cq, ::grpc::ServerCompletionQueue* notification_cq, void *tag) { - ::grpc::Service::RequestAsyncUnary(43, context, request, response, new_call_cq, notification_cq, tag); - } - }; - template - class WithAsyncMethod_ComputeColumnStatistics : public BaseClass { - private: - void BaseClassMustBeDerivedFromService(const Service* /*service*/) {} - public: - WithAsyncMethod_ComputeColumnStatistics() { - ::grpc::Service::MarkMethodAsync(44); - } - ~WithAsyncMethod_ComputeColumnStatistics() override { - BaseClassMustBeDerivedFromService(this); - } - // disable synchronous version of this method - ::grpc::Status ComputeColumnStatistics(::grpc::ServerContext* /*context*/, const ::io::deephaven::proto::backplane::grpc::ColumnStatisticsRequest* /*request*/, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse* /*response*/) override { - abort(); - return ::grpc::Status(::grpc::StatusCode::UNIMPLEMENTED, ""); - } - void RequestComputeColumnStatistics(::grpc::ServerContext* context, ::io::deephaven::proto::backplane::grpc::ColumnStatisticsRequest* request, ::grpc::ServerAsyncResponseWriter< ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse>* response, ::grpc::CompletionQueue* new_call_cq, ::grpc::ServerCompletionQueue* notification_cq, void *tag) { - ::grpc::Service::RequestAsyncUnary(44, context, request, response, new_call_cq, notification_cq, tag); - } - }; - typedef WithAsyncMethod_GetExportedTableCreationResponse > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > AsyncService; - template - class WithCallbackMethod_GetExportedTableCreationResponse : public BaseClass { - private: - void BaseClassMustBeDerivedFromService(const Service* /*service*/) {} - public: - WithCallbackMethod_GetExportedTableCreationResponse() { - ::grpc::Service::MarkMethodCallback(0, - new ::grpc::internal::CallbackUnaryHandler< ::io::deephaven::proto::backplane::grpc::Ticket, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse>( - [this]( - ::grpc::CallbackServerContext* context, const ::io::deephaven::proto::backplane::grpc::Ticket* request, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse* response) { return this->GetExportedTableCreationResponse(context, request, response); }));} - void SetMessageAllocatorFor_GetExportedTableCreationResponse( - ::grpc::MessageAllocator< ::io::deephaven::proto::backplane::grpc::Ticket, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse>* allocator) { - ::grpc::internal::MethodHandler* const handler = ::grpc::Service::GetHandler(0); - static_cast<::grpc::internal::CallbackUnaryHandler< ::io::deephaven::proto::backplane::grpc::Ticket, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse>*>(handler) - ->SetMessageAllocator(allocator); - } - ~WithCallbackMethod_GetExportedTableCreationResponse() override { - BaseClassMustBeDerivedFromService(this); - } - // disable synchronous version of this method - ::grpc::Status GetExportedTableCreationResponse(::grpc::ServerContext* /*context*/, const ::io::deephaven::proto::backplane::grpc::Ticket* /*request*/, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse* /*response*/) override { - abort(); - return ::grpc::Status(::grpc::StatusCode::UNIMPLEMENTED, ""); - } - virtual ::grpc::ServerUnaryReactor* GetExportedTableCreationResponse( - ::grpc::CallbackServerContext* /*context*/, const ::io::deephaven::proto::backplane::grpc::Ticket* /*request*/, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse* /*response*/) { return nullptr; } - }; - template - class WithCallbackMethod_FetchTable : public BaseClass { - private: - void BaseClassMustBeDerivedFromService(const Service* /*service*/) {} - public: - WithCallbackMethod_FetchTable() { - ::grpc::Service::MarkMethodCallback(1, - new ::grpc::internal::CallbackUnaryHandler< ::io::deephaven::proto::backplane::grpc::FetchTableRequest, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse>( - [this]( - ::grpc::CallbackServerContext* context, const ::io::deephaven::proto::backplane::grpc::FetchTableRequest* request, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse* response) { return this->FetchTable(context, request, response); }));} - void SetMessageAllocatorFor_FetchTable( - ::grpc::MessageAllocator< ::io::deephaven::proto::backplane::grpc::FetchTableRequest, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse>* allocator) { - ::grpc::internal::MethodHandler* const handler = ::grpc::Service::GetHandler(1); - static_cast<::grpc::internal::CallbackUnaryHandler< ::io::deephaven::proto::backplane::grpc::FetchTableRequest, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse>*>(handler) - ->SetMessageAllocator(allocator); - } - ~WithCallbackMethod_FetchTable() override { - BaseClassMustBeDerivedFromService(this); - } - // disable synchronous version of this method - ::grpc::Status FetchTable(::grpc::ServerContext* /*context*/, const ::io::deephaven::proto::backplane::grpc::FetchTableRequest* /*request*/, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse* /*response*/) override { - abort(); - return ::grpc::Status(::grpc::StatusCode::UNIMPLEMENTED, ""); - } - virtual ::grpc::ServerUnaryReactor* FetchTable( - ::grpc::CallbackServerContext* /*context*/, const ::io::deephaven::proto::backplane::grpc::FetchTableRequest* /*request*/, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse* /*response*/) { return nullptr; } - }; - template - class WithCallbackMethod_ApplyPreviewColumns : public BaseClass { - private: - void BaseClassMustBeDerivedFromService(const Service* /*service*/) {} - public: - WithCallbackMethod_ApplyPreviewColumns() { - ::grpc::Service::MarkMethodCallback(2, - new ::grpc::internal::CallbackUnaryHandler< ::io::deephaven::proto::backplane::grpc::ApplyPreviewColumnsRequest, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse>( - [this]( - ::grpc::CallbackServerContext* context, const ::io::deephaven::proto::backplane::grpc::ApplyPreviewColumnsRequest* request, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse* response) { return this->ApplyPreviewColumns(context, request, response); }));} - void SetMessageAllocatorFor_ApplyPreviewColumns( - ::grpc::MessageAllocator< ::io::deephaven::proto::backplane::grpc::ApplyPreviewColumnsRequest, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse>* allocator) { - ::grpc::internal::MethodHandler* const handler = ::grpc::Service::GetHandler(2); - static_cast<::grpc::internal::CallbackUnaryHandler< ::io::deephaven::proto::backplane::grpc::ApplyPreviewColumnsRequest, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse>*>(handler) - ->SetMessageAllocator(allocator); - } - ~WithCallbackMethod_ApplyPreviewColumns() override { - BaseClassMustBeDerivedFromService(this); - } - // disable synchronous version of this method - ::grpc::Status ApplyPreviewColumns(::grpc::ServerContext* /*context*/, const ::io::deephaven::proto::backplane::grpc::ApplyPreviewColumnsRequest* /*request*/, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse* /*response*/) override { - abort(); - return ::grpc::Status(::grpc::StatusCode::UNIMPLEMENTED, ""); - } - virtual ::grpc::ServerUnaryReactor* ApplyPreviewColumns( - ::grpc::CallbackServerContext* /*context*/, const ::io::deephaven::proto::backplane::grpc::ApplyPreviewColumnsRequest* /*request*/, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse* /*response*/) { return nullptr; } - }; - template - class WithCallbackMethod_EmptyTable : public BaseClass { - private: - void BaseClassMustBeDerivedFromService(const Service* /*service*/) {} - public: - WithCallbackMethod_EmptyTable() { - ::grpc::Service::MarkMethodCallback(3, - new ::grpc::internal::CallbackUnaryHandler< ::io::deephaven::proto::backplane::grpc::EmptyTableRequest, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse>( - [this]( - ::grpc::CallbackServerContext* context, const ::io::deephaven::proto::backplane::grpc::EmptyTableRequest* request, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse* response) { return this->EmptyTable(context, request, response); }));} - void SetMessageAllocatorFor_EmptyTable( - ::grpc::MessageAllocator< ::io::deephaven::proto::backplane::grpc::EmptyTableRequest, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse>* allocator) { - ::grpc::internal::MethodHandler* const handler = ::grpc::Service::GetHandler(3); - static_cast<::grpc::internal::CallbackUnaryHandler< ::io::deephaven::proto::backplane::grpc::EmptyTableRequest, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse>*>(handler) - ->SetMessageAllocator(allocator); - } - ~WithCallbackMethod_EmptyTable() override { - BaseClassMustBeDerivedFromService(this); - } - // disable synchronous version of this method - ::grpc::Status EmptyTable(::grpc::ServerContext* /*context*/, const ::io::deephaven::proto::backplane::grpc::EmptyTableRequest* /*request*/, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse* /*response*/) override { - abort(); - return ::grpc::Status(::grpc::StatusCode::UNIMPLEMENTED, ""); - } - virtual ::grpc::ServerUnaryReactor* EmptyTable( - ::grpc::CallbackServerContext* /*context*/, const ::io::deephaven::proto::backplane::grpc::EmptyTableRequest* /*request*/, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse* /*response*/) { return nullptr; } - }; - template - class WithCallbackMethod_TimeTable : public BaseClass { - private: - void BaseClassMustBeDerivedFromService(const Service* /*service*/) {} - public: - WithCallbackMethod_TimeTable() { - ::grpc::Service::MarkMethodCallback(4, - new ::grpc::internal::CallbackUnaryHandler< ::io::deephaven::proto::backplane::grpc::TimeTableRequest, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse>( - [this]( - ::grpc::CallbackServerContext* context, const ::io::deephaven::proto::backplane::grpc::TimeTableRequest* request, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse* response) { return this->TimeTable(context, request, response); }));} - void SetMessageAllocatorFor_TimeTable( - ::grpc::MessageAllocator< ::io::deephaven::proto::backplane::grpc::TimeTableRequest, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse>* allocator) { - ::grpc::internal::MethodHandler* const handler = ::grpc::Service::GetHandler(4); - static_cast<::grpc::internal::CallbackUnaryHandler< ::io::deephaven::proto::backplane::grpc::TimeTableRequest, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse>*>(handler) - ->SetMessageAllocator(allocator); - } - ~WithCallbackMethod_TimeTable() override { - BaseClassMustBeDerivedFromService(this); - } - // disable synchronous version of this method - ::grpc::Status TimeTable(::grpc::ServerContext* /*context*/, const ::io::deephaven::proto::backplane::grpc::TimeTableRequest* /*request*/, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse* /*response*/) override { - abort(); - return ::grpc::Status(::grpc::StatusCode::UNIMPLEMENTED, ""); - } - virtual ::grpc::ServerUnaryReactor* TimeTable( - ::grpc::CallbackServerContext* /*context*/, const ::io::deephaven::proto::backplane::grpc::TimeTableRequest* /*request*/, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse* /*response*/) { return nullptr; } - }; - template - class WithCallbackMethod_DropColumns : public BaseClass { - private: - void BaseClassMustBeDerivedFromService(const Service* /*service*/) {} - public: - WithCallbackMethod_DropColumns() { - ::grpc::Service::MarkMethodCallback(5, - new ::grpc::internal::CallbackUnaryHandler< ::io::deephaven::proto::backplane::grpc::DropColumnsRequest, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse>( - [this]( - ::grpc::CallbackServerContext* context, const ::io::deephaven::proto::backplane::grpc::DropColumnsRequest* request, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse* response) { return this->DropColumns(context, request, response); }));} - void SetMessageAllocatorFor_DropColumns( - ::grpc::MessageAllocator< ::io::deephaven::proto::backplane::grpc::DropColumnsRequest, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse>* allocator) { - ::grpc::internal::MethodHandler* const handler = ::grpc::Service::GetHandler(5); - static_cast<::grpc::internal::CallbackUnaryHandler< ::io::deephaven::proto::backplane::grpc::DropColumnsRequest, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse>*>(handler) - ->SetMessageAllocator(allocator); - } - ~WithCallbackMethod_DropColumns() override { - BaseClassMustBeDerivedFromService(this); - } - // disable synchronous version of this method - ::grpc::Status DropColumns(::grpc::ServerContext* /*context*/, const ::io::deephaven::proto::backplane::grpc::DropColumnsRequest* /*request*/, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse* /*response*/) override { - abort(); - return ::grpc::Status(::grpc::StatusCode::UNIMPLEMENTED, ""); - } - virtual ::grpc::ServerUnaryReactor* DropColumns( - ::grpc::CallbackServerContext* /*context*/, const ::io::deephaven::proto::backplane::grpc::DropColumnsRequest* /*request*/, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse* /*response*/) { return nullptr; } - }; - template - class WithCallbackMethod_Update : public BaseClass { - private: - void BaseClassMustBeDerivedFromService(const Service* /*service*/) {} - public: - WithCallbackMethod_Update() { - ::grpc::Service::MarkMethodCallback(6, - new ::grpc::internal::CallbackUnaryHandler< ::io::deephaven::proto::backplane::grpc::SelectOrUpdateRequest, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse>( - [this]( - ::grpc::CallbackServerContext* context, const ::io::deephaven::proto::backplane::grpc::SelectOrUpdateRequest* request, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse* response) { return this->Update(context, request, response); }));} - void SetMessageAllocatorFor_Update( - ::grpc::MessageAllocator< ::io::deephaven::proto::backplane::grpc::SelectOrUpdateRequest, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse>* allocator) { - ::grpc::internal::MethodHandler* const handler = ::grpc::Service::GetHandler(6); - static_cast<::grpc::internal::CallbackUnaryHandler< ::io::deephaven::proto::backplane::grpc::SelectOrUpdateRequest, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse>*>(handler) - ->SetMessageAllocator(allocator); - } - ~WithCallbackMethod_Update() override { - BaseClassMustBeDerivedFromService(this); - } - // disable synchronous version of this method - ::grpc::Status Update(::grpc::ServerContext* /*context*/, const ::io::deephaven::proto::backplane::grpc::SelectOrUpdateRequest* /*request*/, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse* /*response*/) override { - abort(); - return ::grpc::Status(::grpc::StatusCode::UNIMPLEMENTED, ""); - } - virtual ::grpc::ServerUnaryReactor* Update( - ::grpc::CallbackServerContext* /*context*/, const ::io::deephaven::proto::backplane::grpc::SelectOrUpdateRequest* /*request*/, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse* /*response*/) { return nullptr; } - }; - template - class WithCallbackMethod_LazyUpdate : public BaseClass { - private: - void BaseClassMustBeDerivedFromService(const Service* /*service*/) {} - public: - WithCallbackMethod_LazyUpdate() { - ::grpc::Service::MarkMethodCallback(7, - new ::grpc::internal::CallbackUnaryHandler< ::io::deephaven::proto::backplane::grpc::SelectOrUpdateRequest, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse>( - [this]( - ::grpc::CallbackServerContext* context, const ::io::deephaven::proto::backplane::grpc::SelectOrUpdateRequest* request, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse* response) { return this->LazyUpdate(context, request, response); }));} - void SetMessageAllocatorFor_LazyUpdate( - ::grpc::MessageAllocator< ::io::deephaven::proto::backplane::grpc::SelectOrUpdateRequest, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse>* allocator) { - ::grpc::internal::MethodHandler* const handler = ::grpc::Service::GetHandler(7); - static_cast<::grpc::internal::CallbackUnaryHandler< ::io::deephaven::proto::backplane::grpc::SelectOrUpdateRequest, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse>*>(handler) - ->SetMessageAllocator(allocator); - } - ~WithCallbackMethod_LazyUpdate() override { - BaseClassMustBeDerivedFromService(this); - } - // disable synchronous version of this method - ::grpc::Status LazyUpdate(::grpc::ServerContext* /*context*/, const ::io::deephaven::proto::backplane::grpc::SelectOrUpdateRequest* /*request*/, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse* /*response*/) override { - abort(); - return ::grpc::Status(::grpc::StatusCode::UNIMPLEMENTED, ""); - } - virtual ::grpc::ServerUnaryReactor* LazyUpdate( - ::grpc::CallbackServerContext* /*context*/, const ::io::deephaven::proto::backplane::grpc::SelectOrUpdateRequest* /*request*/, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse* /*response*/) { return nullptr; } - }; - template - class WithCallbackMethod_View : public BaseClass { - private: - void BaseClassMustBeDerivedFromService(const Service* /*service*/) {} - public: - WithCallbackMethod_View() { - ::grpc::Service::MarkMethodCallback(8, - new ::grpc::internal::CallbackUnaryHandler< ::io::deephaven::proto::backplane::grpc::SelectOrUpdateRequest, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse>( - [this]( - ::grpc::CallbackServerContext* context, const ::io::deephaven::proto::backplane::grpc::SelectOrUpdateRequest* request, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse* response) { return this->View(context, request, response); }));} - void SetMessageAllocatorFor_View( - ::grpc::MessageAllocator< ::io::deephaven::proto::backplane::grpc::SelectOrUpdateRequest, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse>* allocator) { - ::grpc::internal::MethodHandler* const handler = ::grpc::Service::GetHandler(8); - static_cast<::grpc::internal::CallbackUnaryHandler< ::io::deephaven::proto::backplane::grpc::SelectOrUpdateRequest, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse>*>(handler) - ->SetMessageAllocator(allocator); - } - ~WithCallbackMethod_View() override { - BaseClassMustBeDerivedFromService(this); - } - // disable synchronous version of this method - ::grpc::Status View(::grpc::ServerContext* /*context*/, const ::io::deephaven::proto::backplane::grpc::SelectOrUpdateRequest* /*request*/, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse* /*response*/) override { - abort(); - return ::grpc::Status(::grpc::StatusCode::UNIMPLEMENTED, ""); - } - virtual ::grpc::ServerUnaryReactor* View( - ::grpc::CallbackServerContext* /*context*/, const ::io::deephaven::proto::backplane::grpc::SelectOrUpdateRequest* /*request*/, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse* /*response*/) { return nullptr; } - }; - template - class WithCallbackMethod_UpdateView : public BaseClass { - private: - void BaseClassMustBeDerivedFromService(const Service* /*service*/) {} - public: - WithCallbackMethod_UpdateView() { - ::grpc::Service::MarkMethodCallback(9, - new ::grpc::internal::CallbackUnaryHandler< ::io::deephaven::proto::backplane::grpc::SelectOrUpdateRequest, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse>( - [this]( - ::grpc::CallbackServerContext* context, const ::io::deephaven::proto::backplane::grpc::SelectOrUpdateRequest* request, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse* response) { return this->UpdateView(context, request, response); }));} - void SetMessageAllocatorFor_UpdateView( - ::grpc::MessageAllocator< ::io::deephaven::proto::backplane::grpc::SelectOrUpdateRequest, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse>* allocator) { - ::grpc::internal::MethodHandler* const handler = ::grpc::Service::GetHandler(9); - static_cast<::grpc::internal::CallbackUnaryHandler< ::io::deephaven::proto::backplane::grpc::SelectOrUpdateRequest, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse>*>(handler) - ->SetMessageAllocator(allocator); - } - ~WithCallbackMethod_UpdateView() override { - BaseClassMustBeDerivedFromService(this); - } - // disable synchronous version of this method - ::grpc::Status UpdateView(::grpc::ServerContext* /*context*/, const ::io::deephaven::proto::backplane::grpc::SelectOrUpdateRequest* /*request*/, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse* /*response*/) override { - abort(); - return ::grpc::Status(::grpc::StatusCode::UNIMPLEMENTED, ""); - } - virtual ::grpc::ServerUnaryReactor* UpdateView( - ::grpc::CallbackServerContext* /*context*/, const ::io::deephaven::proto::backplane::grpc::SelectOrUpdateRequest* /*request*/, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse* /*response*/) { return nullptr; } - }; - template - class WithCallbackMethod_Select : public BaseClass { - private: - void BaseClassMustBeDerivedFromService(const Service* /*service*/) {} - public: - WithCallbackMethod_Select() { - ::grpc::Service::MarkMethodCallback(10, - new ::grpc::internal::CallbackUnaryHandler< ::io::deephaven::proto::backplane::grpc::SelectOrUpdateRequest, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse>( - [this]( - ::grpc::CallbackServerContext* context, const ::io::deephaven::proto::backplane::grpc::SelectOrUpdateRequest* request, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse* response) { return this->Select(context, request, response); }));} - void SetMessageAllocatorFor_Select( - ::grpc::MessageAllocator< ::io::deephaven::proto::backplane::grpc::SelectOrUpdateRequest, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse>* allocator) { - ::grpc::internal::MethodHandler* const handler = ::grpc::Service::GetHandler(10); - static_cast<::grpc::internal::CallbackUnaryHandler< ::io::deephaven::proto::backplane::grpc::SelectOrUpdateRequest, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse>*>(handler) - ->SetMessageAllocator(allocator); - } - ~WithCallbackMethod_Select() override { - BaseClassMustBeDerivedFromService(this); - } - // disable synchronous version of this method - ::grpc::Status Select(::grpc::ServerContext* /*context*/, const ::io::deephaven::proto::backplane::grpc::SelectOrUpdateRequest* /*request*/, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse* /*response*/) override { - abort(); - return ::grpc::Status(::grpc::StatusCode::UNIMPLEMENTED, ""); - } - virtual ::grpc::ServerUnaryReactor* Select( - ::grpc::CallbackServerContext* /*context*/, const ::io::deephaven::proto::backplane::grpc::SelectOrUpdateRequest* /*request*/, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse* /*response*/) { return nullptr; } - }; - template - class WithCallbackMethod_UpdateBy : public BaseClass { - private: - void BaseClassMustBeDerivedFromService(const Service* /*service*/) {} - public: - WithCallbackMethod_UpdateBy() { - ::grpc::Service::MarkMethodCallback(11, - new ::grpc::internal::CallbackUnaryHandler< ::io::deephaven::proto::backplane::grpc::UpdateByRequest, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse>( - [this]( - ::grpc::CallbackServerContext* context, const ::io::deephaven::proto::backplane::grpc::UpdateByRequest* request, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse* response) { return this->UpdateBy(context, request, response); }));} - void SetMessageAllocatorFor_UpdateBy( - ::grpc::MessageAllocator< ::io::deephaven::proto::backplane::grpc::UpdateByRequest, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse>* allocator) { - ::grpc::internal::MethodHandler* const handler = ::grpc::Service::GetHandler(11); - static_cast<::grpc::internal::CallbackUnaryHandler< ::io::deephaven::proto::backplane::grpc::UpdateByRequest, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse>*>(handler) - ->SetMessageAllocator(allocator); - } - ~WithCallbackMethod_UpdateBy() override { - BaseClassMustBeDerivedFromService(this); - } - // disable synchronous version of this method - ::grpc::Status UpdateBy(::grpc::ServerContext* /*context*/, const ::io::deephaven::proto::backplane::grpc::UpdateByRequest* /*request*/, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse* /*response*/) override { - abort(); - return ::grpc::Status(::grpc::StatusCode::UNIMPLEMENTED, ""); - } - virtual ::grpc::ServerUnaryReactor* UpdateBy( - ::grpc::CallbackServerContext* /*context*/, const ::io::deephaven::proto::backplane::grpc::UpdateByRequest* /*request*/, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse* /*response*/) { return nullptr; } - }; - template - class WithCallbackMethod_SelectDistinct : public BaseClass { - private: - void BaseClassMustBeDerivedFromService(const Service* /*service*/) {} - public: - WithCallbackMethod_SelectDistinct() { - ::grpc::Service::MarkMethodCallback(12, - new ::grpc::internal::CallbackUnaryHandler< ::io::deephaven::proto::backplane::grpc::SelectDistinctRequest, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse>( - [this]( - ::grpc::CallbackServerContext* context, const ::io::deephaven::proto::backplane::grpc::SelectDistinctRequest* request, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse* response) { return this->SelectDistinct(context, request, response); }));} - void SetMessageAllocatorFor_SelectDistinct( - ::grpc::MessageAllocator< ::io::deephaven::proto::backplane::grpc::SelectDistinctRequest, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse>* allocator) { - ::grpc::internal::MethodHandler* const handler = ::grpc::Service::GetHandler(12); - static_cast<::grpc::internal::CallbackUnaryHandler< ::io::deephaven::proto::backplane::grpc::SelectDistinctRequest, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse>*>(handler) - ->SetMessageAllocator(allocator); - } - ~WithCallbackMethod_SelectDistinct() override { - BaseClassMustBeDerivedFromService(this); - } - // disable synchronous version of this method - ::grpc::Status SelectDistinct(::grpc::ServerContext* /*context*/, const ::io::deephaven::proto::backplane::grpc::SelectDistinctRequest* /*request*/, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse* /*response*/) override { - abort(); - return ::grpc::Status(::grpc::StatusCode::UNIMPLEMENTED, ""); - } - virtual ::grpc::ServerUnaryReactor* SelectDistinct( - ::grpc::CallbackServerContext* /*context*/, const ::io::deephaven::proto::backplane::grpc::SelectDistinctRequest* /*request*/, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse* /*response*/) { return nullptr; } - }; - template - class WithCallbackMethod_Filter : public BaseClass { - private: - void BaseClassMustBeDerivedFromService(const Service* /*service*/) {} - public: - WithCallbackMethod_Filter() { - ::grpc::Service::MarkMethodCallback(13, - new ::grpc::internal::CallbackUnaryHandler< ::io::deephaven::proto::backplane::grpc::FilterTableRequest, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse>( - [this]( - ::grpc::CallbackServerContext* context, const ::io::deephaven::proto::backplane::grpc::FilterTableRequest* request, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse* response) { return this->Filter(context, request, response); }));} - void SetMessageAllocatorFor_Filter( - ::grpc::MessageAllocator< ::io::deephaven::proto::backplane::grpc::FilterTableRequest, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse>* allocator) { - ::grpc::internal::MethodHandler* const handler = ::grpc::Service::GetHandler(13); - static_cast<::grpc::internal::CallbackUnaryHandler< ::io::deephaven::proto::backplane::grpc::FilterTableRequest, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse>*>(handler) - ->SetMessageAllocator(allocator); - } - ~WithCallbackMethod_Filter() override { - BaseClassMustBeDerivedFromService(this); - } - // disable synchronous version of this method - ::grpc::Status Filter(::grpc::ServerContext* /*context*/, const ::io::deephaven::proto::backplane::grpc::FilterTableRequest* /*request*/, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse* /*response*/) override { - abort(); - return ::grpc::Status(::grpc::StatusCode::UNIMPLEMENTED, ""); - } - virtual ::grpc::ServerUnaryReactor* Filter( - ::grpc::CallbackServerContext* /*context*/, const ::io::deephaven::proto::backplane::grpc::FilterTableRequest* /*request*/, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse* /*response*/) { return nullptr; } - }; - template - class WithCallbackMethod_UnstructuredFilter : public BaseClass { - private: - void BaseClassMustBeDerivedFromService(const Service* /*service*/) {} - public: - WithCallbackMethod_UnstructuredFilter() { - ::grpc::Service::MarkMethodCallback(14, - new ::grpc::internal::CallbackUnaryHandler< ::io::deephaven::proto::backplane::grpc::UnstructuredFilterTableRequest, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse>( - [this]( - ::grpc::CallbackServerContext* context, const ::io::deephaven::proto::backplane::grpc::UnstructuredFilterTableRequest* request, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse* response) { return this->UnstructuredFilter(context, request, response); }));} - void SetMessageAllocatorFor_UnstructuredFilter( - ::grpc::MessageAllocator< ::io::deephaven::proto::backplane::grpc::UnstructuredFilterTableRequest, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse>* allocator) { - ::grpc::internal::MethodHandler* const handler = ::grpc::Service::GetHandler(14); - static_cast<::grpc::internal::CallbackUnaryHandler< ::io::deephaven::proto::backplane::grpc::UnstructuredFilterTableRequest, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse>*>(handler) - ->SetMessageAllocator(allocator); - } - ~WithCallbackMethod_UnstructuredFilter() override { - BaseClassMustBeDerivedFromService(this); - } - // disable synchronous version of this method - ::grpc::Status UnstructuredFilter(::grpc::ServerContext* /*context*/, const ::io::deephaven::proto::backplane::grpc::UnstructuredFilterTableRequest* /*request*/, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse* /*response*/) override { - abort(); - return ::grpc::Status(::grpc::StatusCode::UNIMPLEMENTED, ""); - } - virtual ::grpc::ServerUnaryReactor* UnstructuredFilter( - ::grpc::CallbackServerContext* /*context*/, const ::io::deephaven::proto::backplane::grpc::UnstructuredFilterTableRequest* /*request*/, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse* /*response*/) { return nullptr; } - }; - template - class WithCallbackMethod_Sort : public BaseClass { - private: - void BaseClassMustBeDerivedFromService(const Service* /*service*/) {} - public: - WithCallbackMethod_Sort() { - ::grpc::Service::MarkMethodCallback(15, - new ::grpc::internal::CallbackUnaryHandler< ::io::deephaven::proto::backplane::grpc::SortTableRequest, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse>( - [this]( - ::grpc::CallbackServerContext* context, const ::io::deephaven::proto::backplane::grpc::SortTableRequest* request, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse* response) { return this->Sort(context, request, response); }));} - void SetMessageAllocatorFor_Sort( - ::grpc::MessageAllocator< ::io::deephaven::proto::backplane::grpc::SortTableRequest, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse>* allocator) { - ::grpc::internal::MethodHandler* const handler = ::grpc::Service::GetHandler(15); - static_cast<::grpc::internal::CallbackUnaryHandler< ::io::deephaven::proto::backplane::grpc::SortTableRequest, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse>*>(handler) - ->SetMessageAllocator(allocator); - } - ~WithCallbackMethod_Sort() override { - BaseClassMustBeDerivedFromService(this); - } - // disable synchronous version of this method - ::grpc::Status Sort(::grpc::ServerContext* /*context*/, const ::io::deephaven::proto::backplane::grpc::SortTableRequest* /*request*/, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse* /*response*/) override { - abort(); - return ::grpc::Status(::grpc::StatusCode::UNIMPLEMENTED, ""); - } - virtual ::grpc::ServerUnaryReactor* Sort( - ::grpc::CallbackServerContext* /*context*/, const ::io::deephaven::proto::backplane::grpc::SortTableRequest* /*request*/, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse* /*response*/) { return nullptr; } - }; - template - class WithCallbackMethod_Head : public BaseClass { - private: - void BaseClassMustBeDerivedFromService(const Service* /*service*/) {} - public: - WithCallbackMethod_Head() { - ::grpc::Service::MarkMethodCallback(16, - new ::grpc::internal::CallbackUnaryHandler< ::io::deephaven::proto::backplane::grpc::HeadOrTailRequest, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse>( - [this]( - ::grpc::CallbackServerContext* context, const ::io::deephaven::proto::backplane::grpc::HeadOrTailRequest* request, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse* response) { return this->Head(context, request, response); }));} - void SetMessageAllocatorFor_Head( - ::grpc::MessageAllocator< ::io::deephaven::proto::backplane::grpc::HeadOrTailRequest, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse>* allocator) { - ::grpc::internal::MethodHandler* const handler = ::grpc::Service::GetHandler(16); - static_cast<::grpc::internal::CallbackUnaryHandler< ::io::deephaven::proto::backplane::grpc::HeadOrTailRequest, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse>*>(handler) - ->SetMessageAllocator(allocator); - } - ~WithCallbackMethod_Head() override { - BaseClassMustBeDerivedFromService(this); - } - // disable synchronous version of this method - ::grpc::Status Head(::grpc::ServerContext* /*context*/, const ::io::deephaven::proto::backplane::grpc::HeadOrTailRequest* /*request*/, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse* /*response*/) override { - abort(); - return ::grpc::Status(::grpc::StatusCode::UNIMPLEMENTED, ""); - } - virtual ::grpc::ServerUnaryReactor* Head( - ::grpc::CallbackServerContext* /*context*/, const ::io::deephaven::proto::backplane::grpc::HeadOrTailRequest* /*request*/, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse* /*response*/) { return nullptr; } - }; - template - class WithCallbackMethod_Tail : public BaseClass { - private: - void BaseClassMustBeDerivedFromService(const Service* /*service*/) {} - public: - WithCallbackMethod_Tail() { - ::grpc::Service::MarkMethodCallback(17, - new ::grpc::internal::CallbackUnaryHandler< ::io::deephaven::proto::backplane::grpc::HeadOrTailRequest, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse>( - [this]( - ::grpc::CallbackServerContext* context, const ::io::deephaven::proto::backplane::grpc::HeadOrTailRequest* request, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse* response) { return this->Tail(context, request, response); }));} - void SetMessageAllocatorFor_Tail( - ::grpc::MessageAllocator< ::io::deephaven::proto::backplane::grpc::HeadOrTailRequest, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse>* allocator) { - ::grpc::internal::MethodHandler* const handler = ::grpc::Service::GetHandler(17); - static_cast<::grpc::internal::CallbackUnaryHandler< ::io::deephaven::proto::backplane::grpc::HeadOrTailRequest, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse>*>(handler) - ->SetMessageAllocator(allocator); - } - ~WithCallbackMethod_Tail() override { - BaseClassMustBeDerivedFromService(this); - } - // disable synchronous version of this method - ::grpc::Status Tail(::grpc::ServerContext* /*context*/, const ::io::deephaven::proto::backplane::grpc::HeadOrTailRequest* /*request*/, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse* /*response*/) override { - abort(); - return ::grpc::Status(::grpc::StatusCode::UNIMPLEMENTED, ""); - } - virtual ::grpc::ServerUnaryReactor* Tail( - ::grpc::CallbackServerContext* /*context*/, const ::io::deephaven::proto::backplane::grpc::HeadOrTailRequest* /*request*/, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse* /*response*/) { return nullptr; } - }; - template - class WithCallbackMethod_HeadBy : public BaseClass { - private: - void BaseClassMustBeDerivedFromService(const Service* /*service*/) {} - public: - WithCallbackMethod_HeadBy() { - ::grpc::Service::MarkMethodCallback(18, - new ::grpc::internal::CallbackUnaryHandler< ::io::deephaven::proto::backplane::grpc::HeadOrTailByRequest, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse>( - [this]( - ::grpc::CallbackServerContext* context, const ::io::deephaven::proto::backplane::grpc::HeadOrTailByRequest* request, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse* response) { return this->HeadBy(context, request, response); }));} - void SetMessageAllocatorFor_HeadBy( - ::grpc::MessageAllocator< ::io::deephaven::proto::backplane::grpc::HeadOrTailByRequest, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse>* allocator) { - ::grpc::internal::MethodHandler* const handler = ::grpc::Service::GetHandler(18); - static_cast<::grpc::internal::CallbackUnaryHandler< ::io::deephaven::proto::backplane::grpc::HeadOrTailByRequest, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse>*>(handler) - ->SetMessageAllocator(allocator); - } - ~WithCallbackMethod_HeadBy() override { - BaseClassMustBeDerivedFromService(this); - } - // disable synchronous version of this method - ::grpc::Status HeadBy(::grpc::ServerContext* /*context*/, const ::io::deephaven::proto::backplane::grpc::HeadOrTailByRequest* /*request*/, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse* /*response*/) override { - abort(); - return ::grpc::Status(::grpc::StatusCode::UNIMPLEMENTED, ""); - } - virtual ::grpc::ServerUnaryReactor* HeadBy( - ::grpc::CallbackServerContext* /*context*/, const ::io::deephaven::proto::backplane::grpc::HeadOrTailByRequest* /*request*/, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse* /*response*/) { return nullptr; } - }; - template - class WithCallbackMethod_TailBy : public BaseClass { - private: - void BaseClassMustBeDerivedFromService(const Service* /*service*/) {} - public: - WithCallbackMethod_TailBy() { - ::grpc::Service::MarkMethodCallback(19, - new ::grpc::internal::CallbackUnaryHandler< ::io::deephaven::proto::backplane::grpc::HeadOrTailByRequest, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse>( - [this]( - ::grpc::CallbackServerContext* context, const ::io::deephaven::proto::backplane::grpc::HeadOrTailByRequest* request, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse* response) { return this->TailBy(context, request, response); }));} - void SetMessageAllocatorFor_TailBy( - ::grpc::MessageAllocator< ::io::deephaven::proto::backplane::grpc::HeadOrTailByRequest, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse>* allocator) { - ::grpc::internal::MethodHandler* const handler = ::grpc::Service::GetHandler(19); - static_cast<::grpc::internal::CallbackUnaryHandler< ::io::deephaven::proto::backplane::grpc::HeadOrTailByRequest, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse>*>(handler) - ->SetMessageAllocator(allocator); - } - ~WithCallbackMethod_TailBy() override { - BaseClassMustBeDerivedFromService(this); - } - // disable synchronous version of this method - ::grpc::Status TailBy(::grpc::ServerContext* /*context*/, const ::io::deephaven::proto::backplane::grpc::HeadOrTailByRequest* /*request*/, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse* /*response*/) override { - abort(); - return ::grpc::Status(::grpc::StatusCode::UNIMPLEMENTED, ""); - } - virtual ::grpc::ServerUnaryReactor* TailBy( - ::grpc::CallbackServerContext* /*context*/, const ::io::deephaven::proto::backplane::grpc::HeadOrTailByRequest* /*request*/, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse* /*response*/) { return nullptr; } - }; - template - class WithCallbackMethod_Ungroup : public BaseClass { - private: - void BaseClassMustBeDerivedFromService(const Service* /*service*/) {} - public: - WithCallbackMethod_Ungroup() { - ::grpc::Service::MarkMethodCallback(20, - new ::grpc::internal::CallbackUnaryHandler< ::io::deephaven::proto::backplane::grpc::UngroupRequest, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse>( - [this]( - ::grpc::CallbackServerContext* context, const ::io::deephaven::proto::backplane::grpc::UngroupRequest* request, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse* response) { return this->Ungroup(context, request, response); }));} - void SetMessageAllocatorFor_Ungroup( - ::grpc::MessageAllocator< ::io::deephaven::proto::backplane::grpc::UngroupRequest, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse>* allocator) { - ::grpc::internal::MethodHandler* const handler = ::grpc::Service::GetHandler(20); - static_cast<::grpc::internal::CallbackUnaryHandler< ::io::deephaven::proto::backplane::grpc::UngroupRequest, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse>*>(handler) - ->SetMessageAllocator(allocator); - } - ~WithCallbackMethod_Ungroup() override { - BaseClassMustBeDerivedFromService(this); - } - // disable synchronous version of this method - ::grpc::Status Ungroup(::grpc::ServerContext* /*context*/, const ::io::deephaven::proto::backplane::grpc::UngroupRequest* /*request*/, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse* /*response*/) override { - abort(); - return ::grpc::Status(::grpc::StatusCode::UNIMPLEMENTED, ""); - } - virtual ::grpc::ServerUnaryReactor* Ungroup( - ::grpc::CallbackServerContext* /*context*/, const ::io::deephaven::proto::backplane::grpc::UngroupRequest* /*request*/, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse* /*response*/) { return nullptr; } - }; - template - class WithCallbackMethod_MergeTables : public BaseClass { - private: - void BaseClassMustBeDerivedFromService(const Service* /*service*/) {} - public: - WithCallbackMethod_MergeTables() { - ::grpc::Service::MarkMethodCallback(21, - new ::grpc::internal::CallbackUnaryHandler< ::io::deephaven::proto::backplane::grpc::MergeTablesRequest, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse>( - [this]( - ::grpc::CallbackServerContext* context, const ::io::deephaven::proto::backplane::grpc::MergeTablesRequest* request, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse* response) { return this->MergeTables(context, request, response); }));} - void SetMessageAllocatorFor_MergeTables( - ::grpc::MessageAllocator< ::io::deephaven::proto::backplane::grpc::MergeTablesRequest, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse>* allocator) { - ::grpc::internal::MethodHandler* const handler = ::grpc::Service::GetHandler(21); - static_cast<::grpc::internal::CallbackUnaryHandler< ::io::deephaven::proto::backplane::grpc::MergeTablesRequest, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse>*>(handler) - ->SetMessageAllocator(allocator); - } - ~WithCallbackMethod_MergeTables() override { - BaseClassMustBeDerivedFromService(this); - } - // disable synchronous version of this method - ::grpc::Status MergeTables(::grpc::ServerContext* /*context*/, const ::io::deephaven::proto::backplane::grpc::MergeTablesRequest* /*request*/, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse* /*response*/) override { - abort(); - return ::grpc::Status(::grpc::StatusCode::UNIMPLEMENTED, ""); - } - virtual ::grpc::ServerUnaryReactor* MergeTables( - ::grpc::CallbackServerContext* /*context*/, const ::io::deephaven::proto::backplane::grpc::MergeTablesRequest* /*request*/, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse* /*response*/) { return nullptr; } - }; - template - class WithCallbackMethod_CrossJoinTables : public BaseClass { - private: - void BaseClassMustBeDerivedFromService(const Service* /*service*/) {} - public: - WithCallbackMethod_CrossJoinTables() { - ::grpc::Service::MarkMethodCallback(22, - new ::grpc::internal::CallbackUnaryHandler< ::io::deephaven::proto::backplane::grpc::CrossJoinTablesRequest, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse>( - [this]( - ::grpc::CallbackServerContext* context, const ::io::deephaven::proto::backplane::grpc::CrossJoinTablesRequest* request, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse* response) { return this->CrossJoinTables(context, request, response); }));} - void SetMessageAllocatorFor_CrossJoinTables( - ::grpc::MessageAllocator< ::io::deephaven::proto::backplane::grpc::CrossJoinTablesRequest, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse>* allocator) { - ::grpc::internal::MethodHandler* const handler = ::grpc::Service::GetHandler(22); - static_cast<::grpc::internal::CallbackUnaryHandler< ::io::deephaven::proto::backplane::grpc::CrossJoinTablesRequest, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse>*>(handler) - ->SetMessageAllocator(allocator); - } - ~WithCallbackMethod_CrossJoinTables() override { - BaseClassMustBeDerivedFromService(this); - } - // disable synchronous version of this method - ::grpc::Status CrossJoinTables(::grpc::ServerContext* /*context*/, const ::io::deephaven::proto::backplane::grpc::CrossJoinTablesRequest* /*request*/, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse* /*response*/) override { - abort(); - return ::grpc::Status(::grpc::StatusCode::UNIMPLEMENTED, ""); - } - virtual ::grpc::ServerUnaryReactor* CrossJoinTables( - ::grpc::CallbackServerContext* /*context*/, const ::io::deephaven::proto::backplane::grpc::CrossJoinTablesRequest* /*request*/, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse* /*response*/) { return nullptr; } - }; - template - class WithCallbackMethod_NaturalJoinTables : public BaseClass { - private: - void BaseClassMustBeDerivedFromService(const Service* /*service*/) {} - public: - WithCallbackMethod_NaturalJoinTables() { - ::grpc::Service::MarkMethodCallback(23, - new ::grpc::internal::CallbackUnaryHandler< ::io::deephaven::proto::backplane::grpc::NaturalJoinTablesRequest, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse>( - [this]( - ::grpc::CallbackServerContext* context, const ::io::deephaven::proto::backplane::grpc::NaturalJoinTablesRequest* request, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse* response) { return this->NaturalJoinTables(context, request, response); }));} - void SetMessageAllocatorFor_NaturalJoinTables( - ::grpc::MessageAllocator< ::io::deephaven::proto::backplane::grpc::NaturalJoinTablesRequest, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse>* allocator) { - ::grpc::internal::MethodHandler* const handler = ::grpc::Service::GetHandler(23); - static_cast<::grpc::internal::CallbackUnaryHandler< ::io::deephaven::proto::backplane::grpc::NaturalJoinTablesRequest, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse>*>(handler) - ->SetMessageAllocator(allocator); - } - ~WithCallbackMethod_NaturalJoinTables() override { - BaseClassMustBeDerivedFromService(this); - } - // disable synchronous version of this method - ::grpc::Status NaturalJoinTables(::grpc::ServerContext* /*context*/, const ::io::deephaven::proto::backplane::grpc::NaturalJoinTablesRequest* /*request*/, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse* /*response*/) override { - abort(); - return ::grpc::Status(::grpc::StatusCode::UNIMPLEMENTED, ""); - } - virtual ::grpc::ServerUnaryReactor* NaturalJoinTables( - ::grpc::CallbackServerContext* /*context*/, const ::io::deephaven::proto::backplane::grpc::NaturalJoinTablesRequest* /*request*/, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse* /*response*/) { return nullptr; } - }; - template - class WithCallbackMethod_ExactJoinTables : public BaseClass { - private: - void BaseClassMustBeDerivedFromService(const Service* /*service*/) {} - public: - WithCallbackMethod_ExactJoinTables() { - ::grpc::Service::MarkMethodCallback(24, - new ::grpc::internal::CallbackUnaryHandler< ::io::deephaven::proto::backplane::grpc::ExactJoinTablesRequest, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse>( - [this]( - ::grpc::CallbackServerContext* context, const ::io::deephaven::proto::backplane::grpc::ExactJoinTablesRequest* request, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse* response) { return this->ExactJoinTables(context, request, response); }));} - void SetMessageAllocatorFor_ExactJoinTables( - ::grpc::MessageAllocator< ::io::deephaven::proto::backplane::grpc::ExactJoinTablesRequest, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse>* allocator) { - ::grpc::internal::MethodHandler* const handler = ::grpc::Service::GetHandler(24); - static_cast<::grpc::internal::CallbackUnaryHandler< ::io::deephaven::proto::backplane::grpc::ExactJoinTablesRequest, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse>*>(handler) - ->SetMessageAllocator(allocator); - } - ~WithCallbackMethod_ExactJoinTables() override { - BaseClassMustBeDerivedFromService(this); - } - // disable synchronous version of this method - ::grpc::Status ExactJoinTables(::grpc::ServerContext* /*context*/, const ::io::deephaven::proto::backplane::grpc::ExactJoinTablesRequest* /*request*/, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse* /*response*/) override { - abort(); - return ::grpc::Status(::grpc::StatusCode::UNIMPLEMENTED, ""); - } - virtual ::grpc::ServerUnaryReactor* ExactJoinTables( - ::grpc::CallbackServerContext* /*context*/, const ::io::deephaven::proto::backplane::grpc::ExactJoinTablesRequest* /*request*/, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse* /*response*/) { return nullptr; } - }; - template - class WithCallbackMethod_LeftJoinTables : public BaseClass { - private: - void BaseClassMustBeDerivedFromService(const Service* /*service*/) {} - public: - WithCallbackMethod_LeftJoinTables() { - ::grpc::Service::MarkMethodCallback(25, - new ::grpc::internal::CallbackUnaryHandler< ::io::deephaven::proto::backplane::grpc::LeftJoinTablesRequest, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse>( - [this]( - ::grpc::CallbackServerContext* context, const ::io::deephaven::proto::backplane::grpc::LeftJoinTablesRequest* request, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse* response) { return this->LeftJoinTables(context, request, response); }));} - void SetMessageAllocatorFor_LeftJoinTables( - ::grpc::MessageAllocator< ::io::deephaven::proto::backplane::grpc::LeftJoinTablesRequest, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse>* allocator) { - ::grpc::internal::MethodHandler* const handler = ::grpc::Service::GetHandler(25); - static_cast<::grpc::internal::CallbackUnaryHandler< ::io::deephaven::proto::backplane::grpc::LeftJoinTablesRequest, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse>*>(handler) - ->SetMessageAllocator(allocator); - } - ~WithCallbackMethod_LeftJoinTables() override { - BaseClassMustBeDerivedFromService(this); - } - // disable synchronous version of this method - ::grpc::Status LeftJoinTables(::grpc::ServerContext* /*context*/, const ::io::deephaven::proto::backplane::grpc::LeftJoinTablesRequest* /*request*/, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse* /*response*/) override { - abort(); - return ::grpc::Status(::grpc::StatusCode::UNIMPLEMENTED, ""); - } - virtual ::grpc::ServerUnaryReactor* LeftJoinTables( - ::grpc::CallbackServerContext* /*context*/, const ::io::deephaven::proto::backplane::grpc::LeftJoinTablesRequest* /*request*/, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse* /*response*/) { return nullptr; } - }; - template - class WithCallbackMethod_AsOfJoinTables : public BaseClass { - private: - void BaseClassMustBeDerivedFromService(const Service* /*service*/) {} - public: - WithCallbackMethod_AsOfJoinTables() { - ::grpc::Service::MarkMethodCallback(26, - new ::grpc::internal::CallbackUnaryHandler< ::io::deephaven::proto::backplane::grpc::AsOfJoinTablesRequest, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse>( - [this]( - ::grpc::CallbackServerContext* context, const ::io::deephaven::proto::backplane::grpc::AsOfJoinTablesRequest* request, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse* response) { return this->AsOfJoinTables(context, request, response); }));} - void SetMessageAllocatorFor_AsOfJoinTables( - ::grpc::MessageAllocator< ::io::deephaven::proto::backplane::grpc::AsOfJoinTablesRequest, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse>* allocator) { - ::grpc::internal::MethodHandler* const handler = ::grpc::Service::GetHandler(26); - static_cast<::grpc::internal::CallbackUnaryHandler< ::io::deephaven::proto::backplane::grpc::AsOfJoinTablesRequest, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse>*>(handler) - ->SetMessageAllocator(allocator); - } - ~WithCallbackMethod_AsOfJoinTables() override { - BaseClassMustBeDerivedFromService(this); - } - // disable synchronous version of this method - ::grpc::Status AsOfJoinTables(::grpc::ServerContext* /*context*/, const ::io::deephaven::proto::backplane::grpc::AsOfJoinTablesRequest* /*request*/, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse* /*response*/) override { - abort(); - return ::grpc::Status(::grpc::StatusCode::UNIMPLEMENTED, ""); - } - virtual ::grpc::ServerUnaryReactor* AsOfJoinTables( - ::grpc::CallbackServerContext* /*context*/, const ::io::deephaven::proto::backplane::grpc::AsOfJoinTablesRequest* /*request*/, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse* /*response*/) { return nullptr; } - }; - template - class WithCallbackMethod_AjTables : public BaseClass { - private: - void BaseClassMustBeDerivedFromService(const Service* /*service*/) {} - public: - WithCallbackMethod_AjTables() { - ::grpc::Service::MarkMethodCallback(27, - new ::grpc::internal::CallbackUnaryHandler< ::io::deephaven::proto::backplane::grpc::AjRajTablesRequest, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse>( - [this]( - ::grpc::CallbackServerContext* context, const ::io::deephaven::proto::backplane::grpc::AjRajTablesRequest* request, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse* response) { return this->AjTables(context, request, response); }));} - void SetMessageAllocatorFor_AjTables( - ::grpc::MessageAllocator< ::io::deephaven::proto::backplane::grpc::AjRajTablesRequest, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse>* allocator) { - ::grpc::internal::MethodHandler* const handler = ::grpc::Service::GetHandler(27); - static_cast<::grpc::internal::CallbackUnaryHandler< ::io::deephaven::proto::backplane::grpc::AjRajTablesRequest, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse>*>(handler) - ->SetMessageAllocator(allocator); - } - ~WithCallbackMethod_AjTables() override { - BaseClassMustBeDerivedFromService(this); - } - // disable synchronous version of this method - ::grpc::Status AjTables(::grpc::ServerContext* /*context*/, const ::io::deephaven::proto::backplane::grpc::AjRajTablesRequest* /*request*/, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse* /*response*/) override { - abort(); - return ::grpc::Status(::grpc::StatusCode::UNIMPLEMENTED, ""); - } - virtual ::grpc::ServerUnaryReactor* AjTables( - ::grpc::CallbackServerContext* /*context*/, const ::io::deephaven::proto::backplane::grpc::AjRajTablesRequest* /*request*/, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse* /*response*/) { return nullptr; } - }; - template - class WithCallbackMethod_RajTables : public BaseClass { - private: - void BaseClassMustBeDerivedFromService(const Service* /*service*/) {} - public: - WithCallbackMethod_RajTables() { - ::grpc::Service::MarkMethodCallback(28, - new ::grpc::internal::CallbackUnaryHandler< ::io::deephaven::proto::backplane::grpc::AjRajTablesRequest, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse>( - [this]( - ::grpc::CallbackServerContext* context, const ::io::deephaven::proto::backplane::grpc::AjRajTablesRequest* request, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse* response) { return this->RajTables(context, request, response); }));} - void SetMessageAllocatorFor_RajTables( - ::grpc::MessageAllocator< ::io::deephaven::proto::backplane::grpc::AjRajTablesRequest, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse>* allocator) { - ::grpc::internal::MethodHandler* const handler = ::grpc::Service::GetHandler(28); - static_cast<::grpc::internal::CallbackUnaryHandler< ::io::deephaven::proto::backplane::grpc::AjRajTablesRequest, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse>*>(handler) - ->SetMessageAllocator(allocator); - } - ~WithCallbackMethod_RajTables() override { - BaseClassMustBeDerivedFromService(this); - } - // disable synchronous version of this method - ::grpc::Status RajTables(::grpc::ServerContext* /*context*/, const ::io::deephaven::proto::backplane::grpc::AjRajTablesRequest* /*request*/, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse* /*response*/) override { - abort(); - return ::grpc::Status(::grpc::StatusCode::UNIMPLEMENTED, ""); - } - virtual ::grpc::ServerUnaryReactor* RajTables( - ::grpc::CallbackServerContext* /*context*/, const ::io::deephaven::proto::backplane::grpc::AjRajTablesRequest* /*request*/, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse* /*response*/) { return nullptr; } - }; - template - class WithCallbackMethod_MultiJoinTables : public BaseClass { - private: - void BaseClassMustBeDerivedFromService(const Service* /*service*/) {} - public: - WithCallbackMethod_MultiJoinTables() { - ::grpc::Service::MarkMethodCallback(29, - new ::grpc::internal::CallbackUnaryHandler< ::io::deephaven::proto::backplane::grpc::MultiJoinTablesRequest, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse>( - [this]( - ::grpc::CallbackServerContext* context, const ::io::deephaven::proto::backplane::grpc::MultiJoinTablesRequest* request, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse* response) { return this->MultiJoinTables(context, request, response); }));} - void SetMessageAllocatorFor_MultiJoinTables( - ::grpc::MessageAllocator< ::io::deephaven::proto::backplane::grpc::MultiJoinTablesRequest, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse>* allocator) { - ::grpc::internal::MethodHandler* const handler = ::grpc::Service::GetHandler(29); - static_cast<::grpc::internal::CallbackUnaryHandler< ::io::deephaven::proto::backplane::grpc::MultiJoinTablesRequest, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse>*>(handler) - ->SetMessageAllocator(allocator); - } - ~WithCallbackMethod_MultiJoinTables() override { - BaseClassMustBeDerivedFromService(this); - } - // disable synchronous version of this method - ::grpc::Status MultiJoinTables(::grpc::ServerContext* /*context*/, const ::io::deephaven::proto::backplane::grpc::MultiJoinTablesRequest* /*request*/, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse* /*response*/) override { - abort(); - return ::grpc::Status(::grpc::StatusCode::UNIMPLEMENTED, ""); - } - virtual ::grpc::ServerUnaryReactor* MultiJoinTables( - ::grpc::CallbackServerContext* /*context*/, const ::io::deephaven::proto::backplane::grpc::MultiJoinTablesRequest* /*request*/, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse* /*response*/) { return nullptr; } - }; - template - class WithCallbackMethod_RangeJoinTables : public BaseClass { - private: - void BaseClassMustBeDerivedFromService(const Service* /*service*/) {} - public: - WithCallbackMethod_RangeJoinTables() { - ::grpc::Service::MarkMethodCallback(30, - new ::grpc::internal::CallbackUnaryHandler< ::io::deephaven::proto::backplane::grpc::RangeJoinTablesRequest, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse>( - [this]( - ::grpc::CallbackServerContext* context, const ::io::deephaven::proto::backplane::grpc::RangeJoinTablesRequest* request, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse* response) { return this->RangeJoinTables(context, request, response); }));} - void SetMessageAllocatorFor_RangeJoinTables( - ::grpc::MessageAllocator< ::io::deephaven::proto::backplane::grpc::RangeJoinTablesRequest, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse>* allocator) { - ::grpc::internal::MethodHandler* const handler = ::grpc::Service::GetHandler(30); - static_cast<::grpc::internal::CallbackUnaryHandler< ::io::deephaven::proto::backplane::grpc::RangeJoinTablesRequest, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse>*>(handler) - ->SetMessageAllocator(allocator); - } - ~WithCallbackMethod_RangeJoinTables() override { - BaseClassMustBeDerivedFromService(this); - } - // disable synchronous version of this method - ::grpc::Status RangeJoinTables(::grpc::ServerContext* /*context*/, const ::io::deephaven::proto::backplane::grpc::RangeJoinTablesRequest* /*request*/, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse* /*response*/) override { - abort(); - return ::grpc::Status(::grpc::StatusCode::UNIMPLEMENTED, ""); - } - virtual ::grpc::ServerUnaryReactor* RangeJoinTables( - ::grpc::CallbackServerContext* /*context*/, const ::io::deephaven::proto::backplane::grpc::RangeJoinTablesRequest* /*request*/, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse* /*response*/) { return nullptr; } - }; - template - class WithCallbackMethod_ComboAggregate : public BaseClass { - private: - void BaseClassMustBeDerivedFromService(const Service* /*service*/) {} - public: - WithCallbackMethod_ComboAggregate() { - ::grpc::Service::MarkMethodCallback(31, - new ::grpc::internal::CallbackUnaryHandler< ::io::deephaven::proto::backplane::grpc::ComboAggregateRequest, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse>( - [this]( - ::grpc::CallbackServerContext* context, const ::io::deephaven::proto::backplane::grpc::ComboAggregateRequest* request, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse* response) { return this->ComboAggregate(context, request, response); }));} - void SetMessageAllocatorFor_ComboAggregate( - ::grpc::MessageAllocator< ::io::deephaven::proto::backplane::grpc::ComboAggregateRequest, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse>* allocator) { - ::grpc::internal::MethodHandler* const handler = ::grpc::Service::GetHandler(31); - static_cast<::grpc::internal::CallbackUnaryHandler< ::io::deephaven::proto::backplane::grpc::ComboAggregateRequest, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse>*>(handler) - ->SetMessageAllocator(allocator); - } - ~WithCallbackMethod_ComboAggregate() override { - BaseClassMustBeDerivedFromService(this); - } - // disable synchronous version of this method - ::grpc::Status ComboAggregate(::grpc::ServerContext* /*context*/, const ::io::deephaven::proto::backplane::grpc::ComboAggregateRequest* /*request*/, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse* /*response*/) override { - abort(); - return ::grpc::Status(::grpc::StatusCode::UNIMPLEMENTED, ""); - } - virtual ::grpc::ServerUnaryReactor* ComboAggregate( - ::grpc::CallbackServerContext* /*context*/, const ::io::deephaven::proto::backplane::grpc::ComboAggregateRequest* /*request*/, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse* /*response*/) { return nullptr; } - }; - template - class WithCallbackMethod_AggregateAll : public BaseClass { - private: - void BaseClassMustBeDerivedFromService(const Service* /*service*/) {} - public: - WithCallbackMethod_AggregateAll() { - ::grpc::Service::MarkMethodCallback(32, - new ::grpc::internal::CallbackUnaryHandler< ::io::deephaven::proto::backplane::grpc::AggregateAllRequest, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse>( - [this]( - ::grpc::CallbackServerContext* context, const ::io::deephaven::proto::backplane::grpc::AggregateAllRequest* request, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse* response) { return this->AggregateAll(context, request, response); }));} - void SetMessageAllocatorFor_AggregateAll( - ::grpc::MessageAllocator< ::io::deephaven::proto::backplane::grpc::AggregateAllRequest, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse>* allocator) { - ::grpc::internal::MethodHandler* const handler = ::grpc::Service::GetHandler(32); - static_cast<::grpc::internal::CallbackUnaryHandler< ::io::deephaven::proto::backplane::grpc::AggregateAllRequest, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse>*>(handler) - ->SetMessageAllocator(allocator); - } - ~WithCallbackMethod_AggregateAll() override { - BaseClassMustBeDerivedFromService(this); - } - // disable synchronous version of this method - ::grpc::Status AggregateAll(::grpc::ServerContext* /*context*/, const ::io::deephaven::proto::backplane::grpc::AggregateAllRequest* /*request*/, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse* /*response*/) override { - abort(); - return ::grpc::Status(::grpc::StatusCode::UNIMPLEMENTED, ""); - } - virtual ::grpc::ServerUnaryReactor* AggregateAll( - ::grpc::CallbackServerContext* /*context*/, const ::io::deephaven::proto::backplane::grpc::AggregateAllRequest* /*request*/, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse* /*response*/) { return nullptr; } - }; - template - class WithCallbackMethod_Aggregate : public BaseClass { - private: - void BaseClassMustBeDerivedFromService(const Service* /*service*/) {} - public: - WithCallbackMethod_Aggregate() { - ::grpc::Service::MarkMethodCallback(33, - new ::grpc::internal::CallbackUnaryHandler< ::io::deephaven::proto::backplane::grpc::AggregateRequest, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse>( - [this]( - ::grpc::CallbackServerContext* context, const ::io::deephaven::proto::backplane::grpc::AggregateRequest* request, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse* response) { return this->Aggregate(context, request, response); }));} - void SetMessageAllocatorFor_Aggregate( - ::grpc::MessageAllocator< ::io::deephaven::proto::backplane::grpc::AggregateRequest, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse>* allocator) { - ::grpc::internal::MethodHandler* const handler = ::grpc::Service::GetHandler(33); - static_cast<::grpc::internal::CallbackUnaryHandler< ::io::deephaven::proto::backplane::grpc::AggregateRequest, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse>*>(handler) - ->SetMessageAllocator(allocator); - } - ~WithCallbackMethod_Aggregate() override { - BaseClassMustBeDerivedFromService(this); - } - // disable synchronous version of this method - ::grpc::Status Aggregate(::grpc::ServerContext* /*context*/, const ::io::deephaven::proto::backplane::grpc::AggregateRequest* /*request*/, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse* /*response*/) override { - abort(); - return ::grpc::Status(::grpc::StatusCode::UNIMPLEMENTED, ""); - } - virtual ::grpc::ServerUnaryReactor* Aggregate( - ::grpc::CallbackServerContext* /*context*/, const ::io::deephaven::proto::backplane::grpc::AggregateRequest* /*request*/, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse* /*response*/) { return nullptr; } - }; - template - class WithCallbackMethod_Snapshot : public BaseClass { - private: - void BaseClassMustBeDerivedFromService(const Service* /*service*/) {} - public: - WithCallbackMethod_Snapshot() { - ::grpc::Service::MarkMethodCallback(34, - new ::grpc::internal::CallbackUnaryHandler< ::io::deephaven::proto::backplane::grpc::SnapshotTableRequest, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse>( - [this]( - ::grpc::CallbackServerContext* context, const ::io::deephaven::proto::backplane::grpc::SnapshotTableRequest* request, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse* response) { return this->Snapshot(context, request, response); }));} - void SetMessageAllocatorFor_Snapshot( - ::grpc::MessageAllocator< ::io::deephaven::proto::backplane::grpc::SnapshotTableRequest, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse>* allocator) { - ::grpc::internal::MethodHandler* const handler = ::grpc::Service::GetHandler(34); - static_cast<::grpc::internal::CallbackUnaryHandler< ::io::deephaven::proto::backplane::grpc::SnapshotTableRequest, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse>*>(handler) - ->SetMessageAllocator(allocator); - } - ~WithCallbackMethod_Snapshot() override { - BaseClassMustBeDerivedFromService(this); - } - // disable synchronous version of this method - ::grpc::Status Snapshot(::grpc::ServerContext* /*context*/, const ::io::deephaven::proto::backplane::grpc::SnapshotTableRequest* /*request*/, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse* /*response*/) override { - abort(); - return ::grpc::Status(::grpc::StatusCode::UNIMPLEMENTED, ""); - } - virtual ::grpc::ServerUnaryReactor* Snapshot( - ::grpc::CallbackServerContext* /*context*/, const ::io::deephaven::proto::backplane::grpc::SnapshotTableRequest* /*request*/, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse* /*response*/) { return nullptr; } - }; - template - class WithCallbackMethod_SnapshotWhen : public BaseClass { - private: - void BaseClassMustBeDerivedFromService(const Service* /*service*/) {} - public: - WithCallbackMethod_SnapshotWhen() { - ::grpc::Service::MarkMethodCallback(35, - new ::grpc::internal::CallbackUnaryHandler< ::io::deephaven::proto::backplane::grpc::SnapshotWhenTableRequest, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse>( - [this]( - ::grpc::CallbackServerContext* context, const ::io::deephaven::proto::backplane::grpc::SnapshotWhenTableRequest* request, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse* response) { return this->SnapshotWhen(context, request, response); }));} - void SetMessageAllocatorFor_SnapshotWhen( - ::grpc::MessageAllocator< ::io::deephaven::proto::backplane::grpc::SnapshotWhenTableRequest, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse>* allocator) { - ::grpc::internal::MethodHandler* const handler = ::grpc::Service::GetHandler(35); - static_cast<::grpc::internal::CallbackUnaryHandler< ::io::deephaven::proto::backplane::grpc::SnapshotWhenTableRequest, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse>*>(handler) - ->SetMessageAllocator(allocator); - } - ~WithCallbackMethod_SnapshotWhen() override { - BaseClassMustBeDerivedFromService(this); - } - // disable synchronous version of this method - ::grpc::Status SnapshotWhen(::grpc::ServerContext* /*context*/, const ::io::deephaven::proto::backplane::grpc::SnapshotWhenTableRequest* /*request*/, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse* /*response*/) override { - abort(); - return ::grpc::Status(::grpc::StatusCode::UNIMPLEMENTED, ""); - } - virtual ::grpc::ServerUnaryReactor* SnapshotWhen( - ::grpc::CallbackServerContext* /*context*/, const ::io::deephaven::proto::backplane::grpc::SnapshotWhenTableRequest* /*request*/, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse* /*response*/) { return nullptr; } - }; - template - class WithCallbackMethod_Flatten : public BaseClass { - private: - void BaseClassMustBeDerivedFromService(const Service* /*service*/) {} - public: - WithCallbackMethod_Flatten() { - ::grpc::Service::MarkMethodCallback(36, - new ::grpc::internal::CallbackUnaryHandler< ::io::deephaven::proto::backplane::grpc::FlattenRequest, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse>( - [this]( - ::grpc::CallbackServerContext* context, const ::io::deephaven::proto::backplane::grpc::FlattenRequest* request, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse* response) { return this->Flatten(context, request, response); }));} - void SetMessageAllocatorFor_Flatten( - ::grpc::MessageAllocator< ::io::deephaven::proto::backplane::grpc::FlattenRequest, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse>* allocator) { - ::grpc::internal::MethodHandler* const handler = ::grpc::Service::GetHandler(36); - static_cast<::grpc::internal::CallbackUnaryHandler< ::io::deephaven::proto::backplane::grpc::FlattenRequest, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse>*>(handler) - ->SetMessageAllocator(allocator); - } - ~WithCallbackMethod_Flatten() override { - BaseClassMustBeDerivedFromService(this); - } - // disable synchronous version of this method - ::grpc::Status Flatten(::grpc::ServerContext* /*context*/, const ::io::deephaven::proto::backplane::grpc::FlattenRequest* /*request*/, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse* /*response*/) override { - abort(); - return ::grpc::Status(::grpc::StatusCode::UNIMPLEMENTED, ""); - } - virtual ::grpc::ServerUnaryReactor* Flatten( - ::grpc::CallbackServerContext* /*context*/, const ::io::deephaven::proto::backplane::grpc::FlattenRequest* /*request*/, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse* /*response*/) { return nullptr; } - }; - template - class WithCallbackMethod_RunChartDownsample : public BaseClass { - private: - void BaseClassMustBeDerivedFromService(const Service* /*service*/) {} - public: - WithCallbackMethod_RunChartDownsample() { - ::grpc::Service::MarkMethodCallback(37, - new ::grpc::internal::CallbackUnaryHandler< ::io::deephaven::proto::backplane::grpc::RunChartDownsampleRequest, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse>( - [this]( - ::grpc::CallbackServerContext* context, const ::io::deephaven::proto::backplane::grpc::RunChartDownsampleRequest* request, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse* response) { return this->RunChartDownsample(context, request, response); }));} - void SetMessageAllocatorFor_RunChartDownsample( - ::grpc::MessageAllocator< ::io::deephaven::proto::backplane::grpc::RunChartDownsampleRequest, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse>* allocator) { - ::grpc::internal::MethodHandler* const handler = ::grpc::Service::GetHandler(37); - static_cast<::grpc::internal::CallbackUnaryHandler< ::io::deephaven::proto::backplane::grpc::RunChartDownsampleRequest, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse>*>(handler) - ->SetMessageAllocator(allocator); - } - ~WithCallbackMethod_RunChartDownsample() override { - BaseClassMustBeDerivedFromService(this); - } - // disable synchronous version of this method - ::grpc::Status RunChartDownsample(::grpc::ServerContext* /*context*/, const ::io::deephaven::proto::backplane::grpc::RunChartDownsampleRequest* /*request*/, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse* /*response*/) override { - abort(); - return ::grpc::Status(::grpc::StatusCode::UNIMPLEMENTED, ""); - } - virtual ::grpc::ServerUnaryReactor* RunChartDownsample( - ::grpc::CallbackServerContext* /*context*/, const ::io::deephaven::proto::backplane::grpc::RunChartDownsampleRequest* /*request*/, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse* /*response*/) { return nullptr; } - }; - template - class WithCallbackMethod_CreateInputTable : public BaseClass { - private: - void BaseClassMustBeDerivedFromService(const Service* /*service*/) {} - public: - WithCallbackMethod_CreateInputTable() { - ::grpc::Service::MarkMethodCallback(38, - new ::grpc::internal::CallbackUnaryHandler< ::io::deephaven::proto::backplane::grpc::CreateInputTableRequest, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse>( - [this]( - ::grpc::CallbackServerContext* context, const ::io::deephaven::proto::backplane::grpc::CreateInputTableRequest* request, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse* response) { return this->CreateInputTable(context, request, response); }));} - void SetMessageAllocatorFor_CreateInputTable( - ::grpc::MessageAllocator< ::io::deephaven::proto::backplane::grpc::CreateInputTableRequest, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse>* allocator) { - ::grpc::internal::MethodHandler* const handler = ::grpc::Service::GetHandler(38); - static_cast<::grpc::internal::CallbackUnaryHandler< ::io::deephaven::proto::backplane::grpc::CreateInputTableRequest, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse>*>(handler) - ->SetMessageAllocator(allocator); - } - ~WithCallbackMethod_CreateInputTable() override { - BaseClassMustBeDerivedFromService(this); - } - // disable synchronous version of this method - ::grpc::Status CreateInputTable(::grpc::ServerContext* /*context*/, const ::io::deephaven::proto::backplane::grpc::CreateInputTableRequest* /*request*/, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse* /*response*/) override { - abort(); - return ::grpc::Status(::grpc::StatusCode::UNIMPLEMENTED, ""); - } - virtual ::grpc::ServerUnaryReactor* CreateInputTable( - ::grpc::CallbackServerContext* /*context*/, const ::io::deephaven::proto::backplane::grpc::CreateInputTableRequest* /*request*/, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse* /*response*/) { return nullptr; } - }; - template - class WithCallbackMethod_WhereIn : public BaseClass { - private: - void BaseClassMustBeDerivedFromService(const Service* /*service*/) {} - public: - WithCallbackMethod_WhereIn() { - ::grpc::Service::MarkMethodCallback(39, - new ::grpc::internal::CallbackUnaryHandler< ::io::deephaven::proto::backplane::grpc::WhereInRequest, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse>( - [this]( - ::grpc::CallbackServerContext* context, const ::io::deephaven::proto::backplane::grpc::WhereInRequest* request, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse* response) { return this->WhereIn(context, request, response); }));} - void SetMessageAllocatorFor_WhereIn( - ::grpc::MessageAllocator< ::io::deephaven::proto::backplane::grpc::WhereInRequest, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse>* allocator) { - ::grpc::internal::MethodHandler* const handler = ::grpc::Service::GetHandler(39); - static_cast<::grpc::internal::CallbackUnaryHandler< ::io::deephaven::proto::backplane::grpc::WhereInRequest, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse>*>(handler) - ->SetMessageAllocator(allocator); - } - ~WithCallbackMethod_WhereIn() override { - BaseClassMustBeDerivedFromService(this); - } - // disable synchronous version of this method - ::grpc::Status WhereIn(::grpc::ServerContext* /*context*/, const ::io::deephaven::proto::backplane::grpc::WhereInRequest* /*request*/, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse* /*response*/) override { - abort(); - return ::grpc::Status(::grpc::StatusCode::UNIMPLEMENTED, ""); - } - virtual ::grpc::ServerUnaryReactor* WhereIn( - ::grpc::CallbackServerContext* /*context*/, const ::io::deephaven::proto::backplane::grpc::WhereInRequest* /*request*/, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse* /*response*/) { return nullptr; } - }; - template - class WithCallbackMethod_Batch : public BaseClass { - private: - void BaseClassMustBeDerivedFromService(const Service* /*service*/) {} - public: - WithCallbackMethod_Batch() { - ::grpc::Service::MarkMethodCallback(40, - new ::grpc::internal::CallbackServerStreamingHandler< ::io::deephaven::proto::backplane::grpc::BatchTableRequest, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse>( - [this]( - ::grpc::CallbackServerContext* context, const ::io::deephaven::proto::backplane::grpc::BatchTableRequest* request) { return this->Batch(context, request); })); - } - ~WithCallbackMethod_Batch() override { - BaseClassMustBeDerivedFromService(this); - } - // disable synchronous version of this method - ::grpc::Status Batch(::grpc::ServerContext* /*context*/, const ::io::deephaven::proto::backplane::grpc::BatchTableRequest* /*request*/, ::grpc::ServerWriter< ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse>* /*writer*/) override { - abort(); - return ::grpc::Status(::grpc::StatusCode::UNIMPLEMENTED, ""); - } - virtual ::grpc::ServerWriteReactor< ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse>* Batch( - ::grpc::CallbackServerContext* /*context*/, const ::io::deephaven::proto::backplane::grpc::BatchTableRequest* /*request*/) { return nullptr; } - }; - template - class WithCallbackMethod_ExportedTableUpdates : public BaseClass { - private: - void BaseClassMustBeDerivedFromService(const Service* /*service*/) {} - public: - WithCallbackMethod_ExportedTableUpdates() { - ::grpc::Service::MarkMethodCallback(41, - new ::grpc::internal::CallbackServerStreamingHandler< ::io::deephaven::proto::backplane::grpc::ExportedTableUpdatesRequest, ::io::deephaven::proto::backplane::grpc::ExportedTableUpdateMessage>( - [this]( - ::grpc::CallbackServerContext* context, const ::io::deephaven::proto::backplane::grpc::ExportedTableUpdatesRequest* request) { return this->ExportedTableUpdates(context, request); })); - } - ~WithCallbackMethod_ExportedTableUpdates() override { - BaseClassMustBeDerivedFromService(this); - } - // disable synchronous version of this method - ::grpc::Status ExportedTableUpdates(::grpc::ServerContext* /*context*/, const ::io::deephaven::proto::backplane::grpc::ExportedTableUpdatesRequest* /*request*/, ::grpc::ServerWriter< ::io::deephaven::proto::backplane::grpc::ExportedTableUpdateMessage>* /*writer*/) override { - abort(); - return ::grpc::Status(::grpc::StatusCode::UNIMPLEMENTED, ""); - } - virtual ::grpc::ServerWriteReactor< ::io::deephaven::proto::backplane::grpc::ExportedTableUpdateMessage>* ExportedTableUpdates( - ::grpc::CallbackServerContext* /*context*/, const ::io::deephaven::proto::backplane::grpc::ExportedTableUpdatesRequest* /*request*/) { return nullptr; } - }; - template - class WithCallbackMethod_SeekRow : public BaseClass { - private: - void BaseClassMustBeDerivedFromService(const Service* /*service*/) {} - public: - WithCallbackMethod_SeekRow() { - ::grpc::Service::MarkMethodCallback(42, - new ::grpc::internal::CallbackUnaryHandler< ::io::deephaven::proto::backplane::grpc::SeekRowRequest, ::io::deephaven::proto::backplane::grpc::SeekRowResponse>( - [this]( - ::grpc::CallbackServerContext* context, const ::io::deephaven::proto::backplane::grpc::SeekRowRequest* request, ::io::deephaven::proto::backplane::grpc::SeekRowResponse* response) { return this->SeekRow(context, request, response); }));} - void SetMessageAllocatorFor_SeekRow( - ::grpc::MessageAllocator< ::io::deephaven::proto::backplane::grpc::SeekRowRequest, ::io::deephaven::proto::backplane::grpc::SeekRowResponse>* allocator) { - ::grpc::internal::MethodHandler* const handler = ::grpc::Service::GetHandler(42); - static_cast<::grpc::internal::CallbackUnaryHandler< ::io::deephaven::proto::backplane::grpc::SeekRowRequest, ::io::deephaven::proto::backplane::grpc::SeekRowResponse>*>(handler) - ->SetMessageAllocator(allocator); - } - ~WithCallbackMethod_SeekRow() override { - BaseClassMustBeDerivedFromService(this); - } - // disable synchronous version of this method - ::grpc::Status SeekRow(::grpc::ServerContext* /*context*/, const ::io::deephaven::proto::backplane::grpc::SeekRowRequest* /*request*/, ::io::deephaven::proto::backplane::grpc::SeekRowResponse* /*response*/) override { - abort(); - return ::grpc::Status(::grpc::StatusCode::UNIMPLEMENTED, ""); - } - virtual ::grpc::ServerUnaryReactor* SeekRow( - ::grpc::CallbackServerContext* /*context*/, const ::io::deephaven::proto::backplane::grpc::SeekRowRequest* /*request*/, ::io::deephaven::proto::backplane::grpc::SeekRowResponse* /*response*/) { return nullptr; } - }; - template - class WithCallbackMethod_MetaTable : public BaseClass { - private: - void BaseClassMustBeDerivedFromService(const Service* /*service*/) {} - public: - WithCallbackMethod_MetaTable() { - ::grpc::Service::MarkMethodCallback(43, - new ::grpc::internal::CallbackUnaryHandler< ::io::deephaven::proto::backplane::grpc::MetaTableRequest, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse>( - [this]( - ::grpc::CallbackServerContext* context, const ::io::deephaven::proto::backplane::grpc::MetaTableRequest* request, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse* response) { return this->MetaTable(context, request, response); }));} - void SetMessageAllocatorFor_MetaTable( - ::grpc::MessageAllocator< ::io::deephaven::proto::backplane::grpc::MetaTableRequest, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse>* allocator) { - ::grpc::internal::MethodHandler* const handler = ::grpc::Service::GetHandler(43); - static_cast<::grpc::internal::CallbackUnaryHandler< ::io::deephaven::proto::backplane::grpc::MetaTableRequest, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse>*>(handler) - ->SetMessageAllocator(allocator); - } - ~WithCallbackMethod_MetaTable() override { - BaseClassMustBeDerivedFromService(this); - } - // disable synchronous version of this method - ::grpc::Status MetaTable(::grpc::ServerContext* /*context*/, const ::io::deephaven::proto::backplane::grpc::MetaTableRequest* /*request*/, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse* /*response*/) override { - abort(); - return ::grpc::Status(::grpc::StatusCode::UNIMPLEMENTED, ""); - } - virtual ::grpc::ServerUnaryReactor* MetaTable( - ::grpc::CallbackServerContext* /*context*/, const ::io::deephaven::proto::backplane::grpc::MetaTableRequest* /*request*/, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse* /*response*/) { return nullptr; } - }; - template - class WithCallbackMethod_ComputeColumnStatistics : public BaseClass { - private: - void BaseClassMustBeDerivedFromService(const Service* /*service*/) {} - public: - WithCallbackMethod_ComputeColumnStatistics() { - ::grpc::Service::MarkMethodCallback(44, - new ::grpc::internal::CallbackUnaryHandler< ::io::deephaven::proto::backplane::grpc::ColumnStatisticsRequest, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse>( - [this]( - ::grpc::CallbackServerContext* context, const ::io::deephaven::proto::backplane::grpc::ColumnStatisticsRequest* request, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse* response) { return this->ComputeColumnStatistics(context, request, response); }));} - void SetMessageAllocatorFor_ComputeColumnStatistics( - ::grpc::MessageAllocator< ::io::deephaven::proto::backplane::grpc::ColumnStatisticsRequest, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse>* allocator) { - ::grpc::internal::MethodHandler* const handler = ::grpc::Service::GetHandler(44); - static_cast<::grpc::internal::CallbackUnaryHandler< ::io::deephaven::proto::backplane::grpc::ColumnStatisticsRequest, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse>*>(handler) - ->SetMessageAllocator(allocator); - } - ~WithCallbackMethod_ComputeColumnStatistics() override { - BaseClassMustBeDerivedFromService(this); - } - // disable synchronous version of this method - ::grpc::Status ComputeColumnStatistics(::grpc::ServerContext* /*context*/, const ::io::deephaven::proto::backplane::grpc::ColumnStatisticsRequest* /*request*/, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse* /*response*/) override { - abort(); - return ::grpc::Status(::grpc::StatusCode::UNIMPLEMENTED, ""); - } - virtual ::grpc::ServerUnaryReactor* ComputeColumnStatistics( - ::grpc::CallbackServerContext* /*context*/, const ::io::deephaven::proto::backplane::grpc::ColumnStatisticsRequest* /*request*/, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse* /*response*/) { return nullptr; } - }; - typedef WithCallbackMethod_GetExportedTableCreationResponse > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > CallbackService; - typedef CallbackService ExperimentalCallbackService; - template - class WithGenericMethod_GetExportedTableCreationResponse : public BaseClass { - private: - void BaseClassMustBeDerivedFromService(const Service* /*service*/) {} - public: - WithGenericMethod_GetExportedTableCreationResponse() { - ::grpc::Service::MarkMethodGeneric(0); - } - ~WithGenericMethod_GetExportedTableCreationResponse() override { - BaseClassMustBeDerivedFromService(this); - } - // disable synchronous version of this method - ::grpc::Status GetExportedTableCreationResponse(::grpc::ServerContext* /*context*/, const ::io::deephaven::proto::backplane::grpc::Ticket* /*request*/, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse* /*response*/) override { - abort(); - return ::grpc::Status(::grpc::StatusCode::UNIMPLEMENTED, ""); - } - }; - template - class WithGenericMethod_FetchTable : public BaseClass { - private: - void BaseClassMustBeDerivedFromService(const Service* /*service*/) {} - public: - WithGenericMethod_FetchTable() { - ::grpc::Service::MarkMethodGeneric(1); - } - ~WithGenericMethod_FetchTable() override { - BaseClassMustBeDerivedFromService(this); - } - // disable synchronous version of this method - ::grpc::Status FetchTable(::grpc::ServerContext* /*context*/, const ::io::deephaven::proto::backplane::grpc::FetchTableRequest* /*request*/, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse* /*response*/) override { - abort(); - return ::grpc::Status(::grpc::StatusCode::UNIMPLEMENTED, ""); - } - }; - template - class WithGenericMethod_ApplyPreviewColumns : public BaseClass { - private: - void BaseClassMustBeDerivedFromService(const Service* /*service*/) {} - public: - WithGenericMethod_ApplyPreviewColumns() { - ::grpc::Service::MarkMethodGeneric(2); - } - ~WithGenericMethod_ApplyPreviewColumns() override { - BaseClassMustBeDerivedFromService(this); - } - // disable synchronous version of this method - ::grpc::Status ApplyPreviewColumns(::grpc::ServerContext* /*context*/, const ::io::deephaven::proto::backplane::grpc::ApplyPreviewColumnsRequest* /*request*/, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse* /*response*/) override { - abort(); - return ::grpc::Status(::grpc::StatusCode::UNIMPLEMENTED, ""); - } - }; - template - class WithGenericMethod_EmptyTable : public BaseClass { - private: - void BaseClassMustBeDerivedFromService(const Service* /*service*/) {} - public: - WithGenericMethod_EmptyTable() { - ::grpc::Service::MarkMethodGeneric(3); - } - ~WithGenericMethod_EmptyTable() override { - BaseClassMustBeDerivedFromService(this); - } - // disable synchronous version of this method - ::grpc::Status EmptyTable(::grpc::ServerContext* /*context*/, const ::io::deephaven::proto::backplane::grpc::EmptyTableRequest* /*request*/, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse* /*response*/) override { - abort(); - return ::grpc::Status(::grpc::StatusCode::UNIMPLEMENTED, ""); - } - }; - template - class WithGenericMethod_TimeTable : public BaseClass { - private: - void BaseClassMustBeDerivedFromService(const Service* /*service*/) {} - public: - WithGenericMethod_TimeTable() { - ::grpc::Service::MarkMethodGeneric(4); - } - ~WithGenericMethod_TimeTable() override { - BaseClassMustBeDerivedFromService(this); - } - // disable synchronous version of this method - ::grpc::Status TimeTable(::grpc::ServerContext* /*context*/, const ::io::deephaven::proto::backplane::grpc::TimeTableRequest* /*request*/, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse* /*response*/) override { - abort(); - return ::grpc::Status(::grpc::StatusCode::UNIMPLEMENTED, ""); - } - }; - template - class WithGenericMethod_DropColumns : public BaseClass { - private: - void BaseClassMustBeDerivedFromService(const Service* /*service*/) {} - public: - WithGenericMethod_DropColumns() { - ::grpc::Service::MarkMethodGeneric(5); - } - ~WithGenericMethod_DropColumns() override { - BaseClassMustBeDerivedFromService(this); - } - // disable synchronous version of this method - ::grpc::Status DropColumns(::grpc::ServerContext* /*context*/, const ::io::deephaven::proto::backplane::grpc::DropColumnsRequest* /*request*/, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse* /*response*/) override { - abort(); - return ::grpc::Status(::grpc::StatusCode::UNIMPLEMENTED, ""); - } - }; - template - class WithGenericMethod_Update : public BaseClass { - private: - void BaseClassMustBeDerivedFromService(const Service* /*service*/) {} - public: - WithGenericMethod_Update() { - ::grpc::Service::MarkMethodGeneric(6); - } - ~WithGenericMethod_Update() override { - BaseClassMustBeDerivedFromService(this); - } - // disable synchronous version of this method - ::grpc::Status Update(::grpc::ServerContext* /*context*/, const ::io::deephaven::proto::backplane::grpc::SelectOrUpdateRequest* /*request*/, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse* /*response*/) override { - abort(); - return ::grpc::Status(::grpc::StatusCode::UNIMPLEMENTED, ""); - } - }; - template - class WithGenericMethod_LazyUpdate : public BaseClass { - private: - void BaseClassMustBeDerivedFromService(const Service* /*service*/) {} - public: - WithGenericMethod_LazyUpdate() { - ::grpc::Service::MarkMethodGeneric(7); - } - ~WithGenericMethod_LazyUpdate() override { - BaseClassMustBeDerivedFromService(this); - } - // disable synchronous version of this method - ::grpc::Status LazyUpdate(::grpc::ServerContext* /*context*/, const ::io::deephaven::proto::backplane::grpc::SelectOrUpdateRequest* /*request*/, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse* /*response*/) override { - abort(); - return ::grpc::Status(::grpc::StatusCode::UNIMPLEMENTED, ""); - } - }; - template - class WithGenericMethod_View : public BaseClass { - private: - void BaseClassMustBeDerivedFromService(const Service* /*service*/) {} - public: - WithGenericMethod_View() { - ::grpc::Service::MarkMethodGeneric(8); - } - ~WithGenericMethod_View() override { - BaseClassMustBeDerivedFromService(this); - } - // disable synchronous version of this method - ::grpc::Status View(::grpc::ServerContext* /*context*/, const ::io::deephaven::proto::backplane::grpc::SelectOrUpdateRequest* /*request*/, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse* /*response*/) override { - abort(); - return ::grpc::Status(::grpc::StatusCode::UNIMPLEMENTED, ""); - } - }; - template - class WithGenericMethod_UpdateView : public BaseClass { - private: - void BaseClassMustBeDerivedFromService(const Service* /*service*/) {} - public: - WithGenericMethod_UpdateView() { - ::grpc::Service::MarkMethodGeneric(9); - } - ~WithGenericMethod_UpdateView() override { - BaseClassMustBeDerivedFromService(this); - } - // disable synchronous version of this method - ::grpc::Status UpdateView(::grpc::ServerContext* /*context*/, const ::io::deephaven::proto::backplane::grpc::SelectOrUpdateRequest* /*request*/, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse* /*response*/) override { - abort(); - return ::grpc::Status(::grpc::StatusCode::UNIMPLEMENTED, ""); - } - }; - template - class WithGenericMethod_Select : public BaseClass { - private: - void BaseClassMustBeDerivedFromService(const Service* /*service*/) {} - public: - WithGenericMethod_Select() { - ::grpc::Service::MarkMethodGeneric(10); - } - ~WithGenericMethod_Select() override { - BaseClassMustBeDerivedFromService(this); - } - // disable synchronous version of this method - ::grpc::Status Select(::grpc::ServerContext* /*context*/, const ::io::deephaven::proto::backplane::grpc::SelectOrUpdateRequest* /*request*/, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse* /*response*/) override { - abort(); - return ::grpc::Status(::grpc::StatusCode::UNIMPLEMENTED, ""); - } - }; - template - class WithGenericMethod_UpdateBy : public BaseClass { - private: - void BaseClassMustBeDerivedFromService(const Service* /*service*/) {} - public: - WithGenericMethod_UpdateBy() { - ::grpc::Service::MarkMethodGeneric(11); - } - ~WithGenericMethod_UpdateBy() override { - BaseClassMustBeDerivedFromService(this); - } - // disable synchronous version of this method - ::grpc::Status UpdateBy(::grpc::ServerContext* /*context*/, const ::io::deephaven::proto::backplane::grpc::UpdateByRequest* /*request*/, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse* /*response*/) override { - abort(); - return ::grpc::Status(::grpc::StatusCode::UNIMPLEMENTED, ""); - } - }; - template - class WithGenericMethod_SelectDistinct : public BaseClass { - private: - void BaseClassMustBeDerivedFromService(const Service* /*service*/) {} - public: - WithGenericMethod_SelectDistinct() { - ::grpc::Service::MarkMethodGeneric(12); - } - ~WithGenericMethod_SelectDistinct() override { - BaseClassMustBeDerivedFromService(this); - } - // disable synchronous version of this method - ::grpc::Status SelectDistinct(::grpc::ServerContext* /*context*/, const ::io::deephaven::proto::backplane::grpc::SelectDistinctRequest* /*request*/, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse* /*response*/) override { - abort(); - return ::grpc::Status(::grpc::StatusCode::UNIMPLEMENTED, ""); - } - }; - template - class WithGenericMethod_Filter : public BaseClass { - private: - void BaseClassMustBeDerivedFromService(const Service* /*service*/) {} - public: - WithGenericMethod_Filter() { - ::grpc::Service::MarkMethodGeneric(13); - } - ~WithGenericMethod_Filter() override { - BaseClassMustBeDerivedFromService(this); - } - // disable synchronous version of this method - ::grpc::Status Filter(::grpc::ServerContext* /*context*/, const ::io::deephaven::proto::backplane::grpc::FilterTableRequest* /*request*/, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse* /*response*/) override { - abort(); - return ::grpc::Status(::grpc::StatusCode::UNIMPLEMENTED, ""); - } - }; - template - class WithGenericMethod_UnstructuredFilter : public BaseClass { - private: - void BaseClassMustBeDerivedFromService(const Service* /*service*/) {} - public: - WithGenericMethod_UnstructuredFilter() { - ::grpc::Service::MarkMethodGeneric(14); - } - ~WithGenericMethod_UnstructuredFilter() override { - BaseClassMustBeDerivedFromService(this); - } - // disable synchronous version of this method - ::grpc::Status UnstructuredFilter(::grpc::ServerContext* /*context*/, const ::io::deephaven::proto::backplane::grpc::UnstructuredFilterTableRequest* /*request*/, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse* /*response*/) override { - abort(); - return ::grpc::Status(::grpc::StatusCode::UNIMPLEMENTED, ""); - } - }; - template - class WithGenericMethod_Sort : public BaseClass { - private: - void BaseClassMustBeDerivedFromService(const Service* /*service*/) {} - public: - WithGenericMethod_Sort() { - ::grpc::Service::MarkMethodGeneric(15); - } - ~WithGenericMethod_Sort() override { - BaseClassMustBeDerivedFromService(this); - } - // disable synchronous version of this method - ::grpc::Status Sort(::grpc::ServerContext* /*context*/, const ::io::deephaven::proto::backplane::grpc::SortTableRequest* /*request*/, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse* /*response*/) override { - abort(); - return ::grpc::Status(::grpc::StatusCode::UNIMPLEMENTED, ""); - } - }; - template - class WithGenericMethod_Head : public BaseClass { - private: - void BaseClassMustBeDerivedFromService(const Service* /*service*/) {} - public: - WithGenericMethod_Head() { - ::grpc::Service::MarkMethodGeneric(16); - } - ~WithGenericMethod_Head() override { - BaseClassMustBeDerivedFromService(this); - } - // disable synchronous version of this method - ::grpc::Status Head(::grpc::ServerContext* /*context*/, const ::io::deephaven::proto::backplane::grpc::HeadOrTailRequest* /*request*/, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse* /*response*/) override { - abort(); - return ::grpc::Status(::grpc::StatusCode::UNIMPLEMENTED, ""); - } - }; - template - class WithGenericMethod_Tail : public BaseClass { - private: - void BaseClassMustBeDerivedFromService(const Service* /*service*/) {} - public: - WithGenericMethod_Tail() { - ::grpc::Service::MarkMethodGeneric(17); - } - ~WithGenericMethod_Tail() override { - BaseClassMustBeDerivedFromService(this); - } - // disable synchronous version of this method - ::grpc::Status Tail(::grpc::ServerContext* /*context*/, const ::io::deephaven::proto::backplane::grpc::HeadOrTailRequest* /*request*/, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse* /*response*/) override { - abort(); - return ::grpc::Status(::grpc::StatusCode::UNIMPLEMENTED, ""); - } - }; - template - class WithGenericMethod_HeadBy : public BaseClass { - private: - void BaseClassMustBeDerivedFromService(const Service* /*service*/) {} - public: - WithGenericMethod_HeadBy() { - ::grpc::Service::MarkMethodGeneric(18); - } - ~WithGenericMethod_HeadBy() override { - BaseClassMustBeDerivedFromService(this); - } - // disable synchronous version of this method - ::grpc::Status HeadBy(::grpc::ServerContext* /*context*/, const ::io::deephaven::proto::backplane::grpc::HeadOrTailByRequest* /*request*/, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse* /*response*/) override { - abort(); - return ::grpc::Status(::grpc::StatusCode::UNIMPLEMENTED, ""); - } - }; - template - class WithGenericMethod_TailBy : public BaseClass { - private: - void BaseClassMustBeDerivedFromService(const Service* /*service*/) {} - public: - WithGenericMethod_TailBy() { - ::grpc::Service::MarkMethodGeneric(19); - } - ~WithGenericMethod_TailBy() override { - BaseClassMustBeDerivedFromService(this); - } - // disable synchronous version of this method - ::grpc::Status TailBy(::grpc::ServerContext* /*context*/, const ::io::deephaven::proto::backplane::grpc::HeadOrTailByRequest* /*request*/, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse* /*response*/) override { - abort(); - return ::grpc::Status(::grpc::StatusCode::UNIMPLEMENTED, ""); - } - }; - template - class WithGenericMethod_Ungroup : public BaseClass { - private: - void BaseClassMustBeDerivedFromService(const Service* /*service*/) {} - public: - WithGenericMethod_Ungroup() { - ::grpc::Service::MarkMethodGeneric(20); - } - ~WithGenericMethod_Ungroup() override { - BaseClassMustBeDerivedFromService(this); - } - // disable synchronous version of this method - ::grpc::Status Ungroup(::grpc::ServerContext* /*context*/, const ::io::deephaven::proto::backplane::grpc::UngroupRequest* /*request*/, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse* /*response*/) override { - abort(); - return ::grpc::Status(::grpc::StatusCode::UNIMPLEMENTED, ""); - } - }; - template - class WithGenericMethod_MergeTables : public BaseClass { - private: - void BaseClassMustBeDerivedFromService(const Service* /*service*/) {} - public: - WithGenericMethod_MergeTables() { - ::grpc::Service::MarkMethodGeneric(21); - } - ~WithGenericMethod_MergeTables() override { - BaseClassMustBeDerivedFromService(this); - } - // disable synchronous version of this method - ::grpc::Status MergeTables(::grpc::ServerContext* /*context*/, const ::io::deephaven::proto::backplane::grpc::MergeTablesRequest* /*request*/, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse* /*response*/) override { - abort(); - return ::grpc::Status(::grpc::StatusCode::UNIMPLEMENTED, ""); - } - }; - template - class WithGenericMethod_CrossJoinTables : public BaseClass { - private: - void BaseClassMustBeDerivedFromService(const Service* /*service*/) {} - public: - WithGenericMethod_CrossJoinTables() { - ::grpc::Service::MarkMethodGeneric(22); - } - ~WithGenericMethod_CrossJoinTables() override { - BaseClassMustBeDerivedFromService(this); - } - // disable synchronous version of this method - ::grpc::Status CrossJoinTables(::grpc::ServerContext* /*context*/, const ::io::deephaven::proto::backplane::grpc::CrossJoinTablesRequest* /*request*/, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse* /*response*/) override { - abort(); - return ::grpc::Status(::grpc::StatusCode::UNIMPLEMENTED, ""); - } - }; - template - class WithGenericMethod_NaturalJoinTables : public BaseClass { - private: - void BaseClassMustBeDerivedFromService(const Service* /*service*/) {} - public: - WithGenericMethod_NaturalJoinTables() { - ::grpc::Service::MarkMethodGeneric(23); - } - ~WithGenericMethod_NaturalJoinTables() override { - BaseClassMustBeDerivedFromService(this); - } - // disable synchronous version of this method - ::grpc::Status NaturalJoinTables(::grpc::ServerContext* /*context*/, const ::io::deephaven::proto::backplane::grpc::NaturalJoinTablesRequest* /*request*/, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse* /*response*/) override { - abort(); - return ::grpc::Status(::grpc::StatusCode::UNIMPLEMENTED, ""); - } - }; - template - class WithGenericMethod_ExactJoinTables : public BaseClass { - private: - void BaseClassMustBeDerivedFromService(const Service* /*service*/) {} - public: - WithGenericMethod_ExactJoinTables() { - ::grpc::Service::MarkMethodGeneric(24); - } - ~WithGenericMethod_ExactJoinTables() override { - BaseClassMustBeDerivedFromService(this); - } - // disable synchronous version of this method - ::grpc::Status ExactJoinTables(::grpc::ServerContext* /*context*/, const ::io::deephaven::proto::backplane::grpc::ExactJoinTablesRequest* /*request*/, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse* /*response*/) override { - abort(); - return ::grpc::Status(::grpc::StatusCode::UNIMPLEMENTED, ""); - } - }; - template - class WithGenericMethod_LeftJoinTables : public BaseClass { - private: - void BaseClassMustBeDerivedFromService(const Service* /*service*/) {} - public: - WithGenericMethod_LeftJoinTables() { - ::grpc::Service::MarkMethodGeneric(25); - } - ~WithGenericMethod_LeftJoinTables() override { - BaseClassMustBeDerivedFromService(this); - } - // disable synchronous version of this method - ::grpc::Status LeftJoinTables(::grpc::ServerContext* /*context*/, const ::io::deephaven::proto::backplane::grpc::LeftJoinTablesRequest* /*request*/, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse* /*response*/) override { - abort(); - return ::grpc::Status(::grpc::StatusCode::UNIMPLEMENTED, ""); - } - }; - template - class WithGenericMethod_AsOfJoinTables : public BaseClass { - private: - void BaseClassMustBeDerivedFromService(const Service* /*service*/) {} - public: - WithGenericMethod_AsOfJoinTables() { - ::grpc::Service::MarkMethodGeneric(26); - } - ~WithGenericMethod_AsOfJoinTables() override { - BaseClassMustBeDerivedFromService(this); - } - // disable synchronous version of this method - ::grpc::Status AsOfJoinTables(::grpc::ServerContext* /*context*/, const ::io::deephaven::proto::backplane::grpc::AsOfJoinTablesRequest* /*request*/, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse* /*response*/) override { - abort(); - return ::grpc::Status(::grpc::StatusCode::UNIMPLEMENTED, ""); - } - }; - template - class WithGenericMethod_AjTables : public BaseClass { - private: - void BaseClassMustBeDerivedFromService(const Service* /*service*/) {} - public: - WithGenericMethod_AjTables() { - ::grpc::Service::MarkMethodGeneric(27); - } - ~WithGenericMethod_AjTables() override { - BaseClassMustBeDerivedFromService(this); - } - // disable synchronous version of this method - ::grpc::Status AjTables(::grpc::ServerContext* /*context*/, const ::io::deephaven::proto::backplane::grpc::AjRajTablesRequest* /*request*/, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse* /*response*/) override { - abort(); - return ::grpc::Status(::grpc::StatusCode::UNIMPLEMENTED, ""); - } - }; - template - class WithGenericMethod_RajTables : public BaseClass { - private: - void BaseClassMustBeDerivedFromService(const Service* /*service*/) {} - public: - WithGenericMethod_RajTables() { - ::grpc::Service::MarkMethodGeneric(28); - } - ~WithGenericMethod_RajTables() override { - BaseClassMustBeDerivedFromService(this); - } - // disable synchronous version of this method - ::grpc::Status RajTables(::grpc::ServerContext* /*context*/, const ::io::deephaven::proto::backplane::grpc::AjRajTablesRequest* /*request*/, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse* /*response*/) override { - abort(); - return ::grpc::Status(::grpc::StatusCode::UNIMPLEMENTED, ""); - } - }; - template - class WithGenericMethod_MultiJoinTables : public BaseClass { - private: - void BaseClassMustBeDerivedFromService(const Service* /*service*/) {} - public: - WithGenericMethod_MultiJoinTables() { - ::grpc::Service::MarkMethodGeneric(29); - } - ~WithGenericMethod_MultiJoinTables() override { - BaseClassMustBeDerivedFromService(this); - } - // disable synchronous version of this method - ::grpc::Status MultiJoinTables(::grpc::ServerContext* /*context*/, const ::io::deephaven::proto::backplane::grpc::MultiJoinTablesRequest* /*request*/, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse* /*response*/) override { - abort(); - return ::grpc::Status(::grpc::StatusCode::UNIMPLEMENTED, ""); - } - }; - template - class WithGenericMethod_RangeJoinTables : public BaseClass { - private: - void BaseClassMustBeDerivedFromService(const Service* /*service*/) {} - public: - WithGenericMethod_RangeJoinTables() { - ::grpc::Service::MarkMethodGeneric(30); - } - ~WithGenericMethod_RangeJoinTables() override { - BaseClassMustBeDerivedFromService(this); - } - // disable synchronous version of this method - ::grpc::Status RangeJoinTables(::grpc::ServerContext* /*context*/, const ::io::deephaven::proto::backplane::grpc::RangeJoinTablesRequest* /*request*/, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse* /*response*/) override { - abort(); - return ::grpc::Status(::grpc::StatusCode::UNIMPLEMENTED, ""); - } - }; - template - class WithGenericMethod_ComboAggregate : public BaseClass { - private: - void BaseClassMustBeDerivedFromService(const Service* /*service*/) {} - public: - WithGenericMethod_ComboAggregate() { - ::grpc::Service::MarkMethodGeneric(31); - } - ~WithGenericMethod_ComboAggregate() override { - BaseClassMustBeDerivedFromService(this); - } - // disable synchronous version of this method - ::grpc::Status ComboAggregate(::grpc::ServerContext* /*context*/, const ::io::deephaven::proto::backplane::grpc::ComboAggregateRequest* /*request*/, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse* /*response*/) override { - abort(); - return ::grpc::Status(::grpc::StatusCode::UNIMPLEMENTED, ""); - } - }; - template - class WithGenericMethod_AggregateAll : public BaseClass { - private: - void BaseClassMustBeDerivedFromService(const Service* /*service*/) {} - public: - WithGenericMethod_AggregateAll() { - ::grpc::Service::MarkMethodGeneric(32); - } - ~WithGenericMethod_AggregateAll() override { - BaseClassMustBeDerivedFromService(this); - } - // disable synchronous version of this method - ::grpc::Status AggregateAll(::grpc::ServerContext* /*context*/, const ::io::deephaven::proto::backplane::grpc::AggregateAllRequest* /*request*/, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse* /*response*/) override { - abort(); - return ::grpc::Status(::grpc::StatusCode::UNIMPLEMENTED, ""); - } - }; - template - class WithGenericMethod_Aggregate : public BaseClass { - private: - void BaseClassMustBeDerivedFromService(const Service* /*service*/) {} - public: - WithGenericMethod_Aggregate() { - ::grpc::Service::MarkMethodGeneric(33); - } - ~WithGenericMethod_Aggregate() override { - BaseClassMustBeDerivedFromService(this); - } - // disable synchronous version of this method - ::grpc::Status Aggregate(::grpc::ServerContext* /*context*/, const ::io::deephaven::proto::backplane::grpc::AggregateRequest* /*request*/, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse* /*response*/) override { - abort(); - return ::grpc::Status(::grpc::StatusCode::UNIMPLEMENTED, ""); - } - }; - template - class WithGenericMethod_Snapshot : public BaseClass { - private: - void BaseClassMustBeDerivedFromService(const Service* /*service*/) {} - public: - WithGenericMethod_Snapshot() { - ::grpc::Service::MarkMethodGeneric(34); - } - ~WithGenericMethod_Snapshot() override { - BaseClassMustBeDerivedFromService(this); - } - // disable synchronous version of this method - ::grpc::Status Snapshot(::grpc::ServerContext* /*context*/, const ::io::deephaven::proto::backplane::grpc::SnapshotTableRequest* /*request*/, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse* /*response*/) override { - abort(); - return ::grpc::Status(::grpc::StatusCode::UNIMPLEMENTED, ""); - } - }; - template - class WithGenericMethod_SnapshotWhen : public BaseClass { - private: - void BaseClassMustBeDerivedFromService(const Service* /*service*/) {} - public: - WithGenericMethod_SnapshotWhen() { - ::grpc::Service::MarkMethodGeneric(35); - } - ~WithGenericMethod_SnapshotWhen() override { - BaseClassMustBeDerivedFromService(this); - } - // disable synchronous version of this method - ::grpc::Status SnapshotWhen(::grpc::ServerContext* /*context*/, const ::io::deephaven::proto::backplane::grpc::SnapshotWhenTableRequest* /*request*/, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse* /*response*/) override { - abort(); - return ::grpc::Status(::grpc::StatusCode::UNIMPLEMENTED, ""); - } - }; - template - class WithGenericMethod_Flatten : public BaseClass { - private: - void BaseClassMustBeDerivedFromService(const Service* /*service*/) {} - public: - WithGenericMethod_Flatten() { - ::grpc::Service::MarkMethodGeneric(36); - } - ~WithGenericMethod_Flatten() override { - BaseClassMustBeDerivedFromService(this); - } - // disable synchronous version of this method - ::grpc::Status Flatten(::grpc::ServerContext* /*context*/, const ::io::deephaven::proto::backplane::grpc::FlattenRequest* /*request*/, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse* /*response*/) override { - abort(); - return ::grpc::Status(::grpc::StatusCode::UNIMPLEMENTED, ""); - } - }; - template - class WithGenericMethod_RunChartDownsample : public BaseClass { - private: - void BaseClassMustBeDerivedFromService(const Service* /*service*/) {} - public: - WithGenericMethod_RunChartDownsample() { - ::grpc::Service::MarkMethodGeneric(37); - } - ~WithGenericMethod_RunChartDownsample() override { - BaseClassMustBeDerivedFromService(this); - } - // disable synchronous version of this method - ::grpc::Status RunChartDownsample(::grpc::ServerContext* /*context*/, const ::io::deephaven::proto::backplane::grpc::RunChartDownsampleRequest* /*request*/, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse* /*response*/) override { - abort(); - return ::grpc::Status(::grpc::StatusCode::UNIMPLEMENTED, ""); - } - }; - template - class WithGenericMethod_CreateInputTable : public BaseClass { - private: - void BaseClassMustBeDerivedFromService(const Service* /*service*/) {} - public: - WithGenericMethod_CreateInputTable() { - ::grpc::Service::MarkMethodGeneric(38); - } - ~WithGenericMethod_CreateInputTable() override { - BaseClassMustBeDerivedFromService(this); - } - // disable synchronous version of this method - ::grpc::Status CreateInputTable(::grpc::ServerContext* /*context*/, const ::io::deephaven::proto::backplane::grpc::CreateInputTableRequest* /*request*/, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse* /*response*/) override { - abort(); - return ::grpc::Status(::grpc::StatusCode::UNIMPLEMENTED, ""); - } - }; - template - class WithGenericMethod_WhereIn : public BaseClass { - private: - void BaseClassMustBeDerivedFromService(const Service* /*service*/) {} - public: - WithGenericMethod_WhereIn() { - ::grpc::Service::MarkMethodGeneric(39); - } - ~WithGenericMethod_WhereIn() override { - BaseClassMustBeDerivedFromService(this); - } - // disable synchronous version of this method - ::grpc::Status WhereIn(::grpc::ServerContext* /*context*/, const ::io::deephaven::proto::backplane::grpc::WhereInRequest* /*request*/, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse* /*response*/) override { - abort(); - return ::grpc::Status(::grpc::StatusCode::UNIMPLEMENTED, ""); - } - }; - template - class WithGenericMethod_Batch : public BaseClass { - private: - void BaseClassMustBeDerivedFromService(const Service* /*service*/) {} - public: - WithGenericMethod_Batch() { - ::grpc::Service::MarkMethodGeneric(40); - } - ~WithGenericMethod_Batch() override { - BaseClassMustBeDerivedFromService(this); - } - // disable synchronous version of this method - ::grpc::Status Batch(::grpc::ServerContext* /*context*/, const ::io::deephaven::proto::backplane::grpc::BatchTableRequest* /*request*/, ::grpc::ServerWriter< ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse>* /*writer*/) override { - abort(); - return ::grpc::Status(::grpc::StatusCode::UNIMPLEMENTED, ""); - } - }; - template - class WithGenericMethod_ExportedTableUpdates : public BaseClass { - private: - void BaseClassMustBeDerivedFromService(const Service* /*service*/) {} - public: - WithGenericMethod_ExportedTableUpdates() { - ::grpc::Service::MarkMethodGeneric(41); - } - ~WithGenericMethod_ExportedTableUpdates() override { - BaseClassMustBeDerivedFromService(this); - } - // disable synchronous version of this method - ::grpc::Status ExportedTableUpdates(::grpc::ServerContext* /*context*/, const ::io::deephaven::proto::backplane::grpc::ExportedTableUpdatesRequest* /*request*/, ::grpc::ServerWriter< ::io::deephaven::proto::backplane::grpc::ExportedTableUpdateMessage>* /*writer*/) override { - abort(); - return ::grpc::Status(::grpc::StatusCode::UNIMPLEMENTED, ""); - } - }; - template - class WithGenericMethod_SeekRow : public BaseClass { - private: - void BaseClassMustBeDerivedFromService(const Service* /*service*/) {} - public: - WithGenericMethod_SeekRow() { - ::grpc::Service::MarkMethodGeneric(42); - } - ~WithGenericMethod_SeekRow() override { - BaseClassMustBeDerivedFromService(this); - } - // disable synchronous version of this method - ::grpc::Status SeekRow(::grpc::ServerContext* /*context*/, const ::io::deephaven::proto::backplane::grpc::SeekRowRequest* /*request*/, ::io::deephaven::proto::backplane::grpc::SeekRowResponse* /*response*/) override { - abort(); - return ::grpc::Status(::grpc::StatusCode::UNIMPLEMENTED, ""); - } - }; - template - class WithGenericMethod_MetaTable : public BaseClass { - private: - void BaseClassMustBeDerivedFromService(const Service* /*service*/) {} - public: - WithGenericMethod_MetaTable() { - ::grpc::Service::MarkMethodGeneric(43); - } - ~WithGenericMethod_MetaTable() override { - BaseClassMustBeDerivedFromService(this); - } - // disable synchronous version of this method - ::grpc::Status MetaTable(::grpc::ServerContext* /*context*/, const ::io::deephaven::proto::backplane::grpc::MetaTableRequest* /*request*/, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse* /*response*/) override { - abort(); - return ::grpc::Status(::grpc::StatusCode::UNIMPLEMENTED, ""); - } - }; - template - class WithGenericMethod_ComputeColumnStatistics : public BaseClass { - private: - void BaseClassMustBeDerivedFromService(const Service* /*service*/) {} - public: - WithGenericMethod_ComputeColumnStatistics() { - ::grpc::Service::MarkMethodGeneric(44); - } - ~WithGenericMethod_ComputeColumnStatistics() override { - BaseClassMustBeDerivedFromService(this); - } - // disable synchronous version of this method - ::grpc::Status ComputeColumnStatistics(::grpc::ServerContext* /*context*/, const ::io::deephaven::proto::backplane::grpc::ColumnStatisticsRequest* /*request*/, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse* /*response*/) override { - abort(); - return ::grpc::Status(::grpc::StatusCode::UNIMPLEMENTED, ""); - } - }; - template - class WithRawMethod_GetExportedTableCreationResponse : public BaseClass { - private: - void BaseClassMustBeDerivedFromService(const Service* /*service*/) {} - public: - WithRawMethod_GetExportedTableCreationResponse() { - ::grpc::Service::MarkMethodRaw(0); - } - ~WithRawMethod_GetExportedTableCreationResponse() override { - BaseClassMustBeDerivedFromService(this); - } - // disable synchronous version of this method - ::grpc::Status GetExportedTableCreationResponse(::grpc::ServerContext* /*context*/, const ::io::deephaven::proto::backplane::grpc::Ticket* /*request*/, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse* /*response*/) override { - abort(); - return ::grpc::Status(::grpc::StatusCode::UNIMPLEMENTED, ""); - } - void RequestGetExportedTableCreationResponse(::grpc::ServerContext* context, ::grpc::ByteBuffer* request, ::grpc::ServerAsyncResponseWriter< ::grpc::ByteBuffer>* response, ::grpc::CompletionQueue* new_call_cq, ::grpc::ServerCompletionQueue* notification_cq, void *tag) { - ::grpc::Service::RequestAsyncUnary(0, context, request, response, new_call_cq, notification_cq, tag); - } - }; - template - class WithRawMethod_FetchTable : public BaseClass { - private: - void BaseClassMustBeDerivedFromService(const Service* /*service*/) {} - public: - WithRawMethod_FetchTable() { - ::grpc::Service::MarkMethodRaw(1); - } - ~WithRawMethod_FetchTable() override { - BaseClassMustBeDerivedFromService(this); - } - // disable synchronous version of this method - ::grpc::Status FetchTable(::grpc::ServerContext* /*context*/, const ::io::deephaven::proto::backplane::grpc::FetchTableRequest* /*request*/, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse* /*response*/) override { - abort(); - return ::grpc::Status(::grpc::StatusCode::UNIMPLEMENTED, ""); - } - void RequestFetchTable(::grpc::ServerContext* context, ::grpc::ByteBuffer* request, ::grpc::ServerAsyncResponseWriter< ::grpc::ByteBuffer>* response, ::grpc::CompletionQueue* new_call_cq, ::grpc::ServerCompletionQueue* notification_cq, void *tag) { - ::grpc::Service::RequestAsyncUnary(1, context, request, response, new_call_cq, notification_cq, tag); - } - }; - template - class WithRawMethod_ApplyPreviewColumns : public BaseClass { - private: - void BaseClassMustBeDerivedFromService(const Service* /*service*/) {} - public: - WithRawMethod_ApplyPreviewColumns() { - ::grpc::Service::MarkMethodRaw(2); - } - ~WithRawMethod_ApplyPreviewColumns() override { - BaseClassMustBeDerivedFromService(this); - } - // disable synchronous version of this method - ::grpc::Status ApplyPreviewColumns(::grpc::ServerContext* /*context*/, const ::io::deephaven::proto::backplane::grpc::ApplyPreviewColumnsRequest* /*request*/, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse* /*response*/) override { - abort(); - return ::grpc::Status(::grpc::StatusCode::UNIMPLEMENTED, ""); - } - void RequestApplyPreviewColumns(::grpc::ServerContext* context, ::grpc::ByteBuffer* request, ::grpc::ServerAsyncResponseWriter< ::grpc::ByteBuffer>* response, ::grpc::CompletionQueue* new_call_cq, ::grpc::ServerCompletionQueue* notification_cq, void *tag) { - ::grpc::Service::RequestAsyncUnary(2, context, request, response, new_call_cq, notification_cq, tag); - } - }; - template - class WithRawMethod_EmptyTable : public BaseClass { - private: - void BaseClassMustBeDerivedFromService(const Service* /*service*/) {} - public: - WithRawMethod_EmptyTable() { - ::grpc::Service::MarkMethodRaw(3); - } - ~WithRawMethod_EmptyTable() override { - BaseClassMustBeDerivedFromService(this); - } - // disable synchronous version of this method - ::grpc::Status EmptyTable(::grpc::ServerContext* /*context*/, const ::io::deephaven::proto::backplane::grpc::EmptyTableRequest* /*request*/, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse* /*response*/) override { - abort(); - return ::grpc::Status(::grpc::StatusCode::UNIMPLEMENTED, ""); - } - void RequestEmptyTable(::grpc::ServerContext* context, ::grpc::ByteBuffer* request, ::grpc::ServerAsyncResponseWriter< ::grpc::ByteBuffer>* response, ::grpc::CompletionQueue* new_call_cq, ::grpc::ServerCompletionQueue* notification_cq, void *tag) { - ::grpc::Service::RequestAsyncUnary(3, context, request, response, new_call_cq, notification_cq, tag); - } - }; - template - class WithRawMethod_TimeTable : public BaseClass { - private: - void BaseClassMustBeDerivedFromService(const Service* /*service*/) {} - public: - WithRawMethod_TimeTable() { - ::grpc::Service::MarkMethodRaw(4); - } - ~WithRawMethod_TimeTable() override { - BaseClassMustBeDerivedFromService(this); - } - // disable synchronous version of this method - ::grpc::Status TimeTable(::grpc::ServerContext* /*context*/, const ::io::deephaven::proto::backplane::grpc::TimeTableRequest* /*request*/, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse* /*response*/) override { - abort(); - return ::grpc::Status(::grpc::StatusCode::UNIMPLEMENTED, ""); - } - void RequestTimeTable(::grpc::ServerContext* context, ::grpc::ByteBuffer* request, ::grpc::ServerAsyncResponseWriter< ::grpc::ByteBuffer>* response, ::grpc::CompletionQueue* new_call_cq, ::grpc::ServerCompletionQueue* notification_cq, void *tag) { - ::grpc::Service::RequestAsyncUnary(4, context, request, response, new_call_cq, notification_cq, tag); - } - }; - template - class WithRawMethod_DropColumns : public BaseClass { - private: - void BaseClassMustBeDerivedFromService(const Service* /*service*/) {} - public: - WithRawMethod_DropColumns() { - ::grpc::Service::MarkMethodRaw(5); - } - ~WithRawMethod_DropColumns() override { - BaseClassMustBeDerivedFromService(this); - } - // disable synchronous version of this method - ::grpc::Status DropColumns(::grpc::ServerContext* /*context*/, const ::io::deephaven::proto::backplane::grpc::DropColumnsRequest* /*request*/, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse* /*response*/) override { - abort(); - return ::grpc::Status(::grpc::StatusCode::UNIMPLEMENTED, ""); - } - void RequestDropColumns(::grpc::ServerContext* context, ::grpc::ByteBuffer* request, ::grpc::ServerAsyncResponseWriter< ::grpc::ByteBuffer>* response, ::grpc::CompletionQueue* new_call_cq, ::grpc::ServerCompletionQueue* notification_cq, void *tag) { - ::grpc::Service::RequestAsyncUnary(5, context, request, response, new_call_cq, notification_cq, tag); - } - }; - template - class WithRawMethod_Update : public BaseClass { - private: - void BaseClassMustBeDerivedFromService(const Service* /*service*/) {} - public: - WithRawMethod_Update() { - ::grpc::Service::MarkMethodRaw(6); - } - ~WithRawMethod_Update() override { - BaseClassMustBeDerivedFromService(this); - } - // disable synchronous version of this method - ::grpc::Status Update(::grpc::ServerContext* /*context*/, const ::io::deephaven::proto::backplane::grpc::SelectOrUpdateRequest* /*request*/, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse* /*response*/) override { - abort(); - return ::grpc::Status(::grpc::StatusCode::UNIMPLEMENTED, ""); - } - void RequestUpdate(::grpc::ServerContext* context, ::grpc::ByteBuffer* request, ::grpc::ServerAsyncResponseWriter< ::grpc::ByteBuffer>* response, ::grpc::CompletionQueue* new_call_cq, ::grpc::ServerCompletionQueue* notification_cq, void *tag) { - ::grpc::Service::RequestAsyncUnary(6, context, request, response, new_call_cq, notification_cq, tag); - } - }; - template - class WithRawMethod_LazyUpdate : public BaseClass { - private: - void BaseClassMustBeDerivedFromService(const Service* /*service*/) {} - public: - WithRawMethod_LazyUpdate() { - ::grpc::Service::MarkMethodRaw(7); - } - ~WithRawMethod_LazyUpdate() override { - BaseClassMustBeDerivedFromService(this); - } - // disable synchronous version of this method - ::grpc::Status LazyUpdate(::grpc::ServerContext* /*context*/, const ::io::deephaven::proto::backplane::grpc::SelectOrUpdateRequest* /*request*/, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse* /*response*/) override { - abort(); - return ::grpc::Status(::grpc::StatusCode::UNIMPLEMENTED, ""); - } - void RequestLazyUpdate(::grpc::ServerContext* context, ::grpc::ByteBuffer* request, ::grpc::ServerAsyncResponseWriter< ::grpc::ByteBuffer>* response, ::grpc::CompletionQueue* new_call_cq, ::grpc::ServerCompletionQueue* notification_cq, void *tag) { - ::grpc::Service::RequestAsyncUnary(7, context, request, response, new_call_cq, notification_cq, tag); - } - }; - template - class WithRawMethod_View : public BaseClass { - private: - void BaseClassMustBeDerivedFromService(const Service* /*service*/) {} - public: - WithRawMethod_View() { - ::grpc::Service::MarkMethodRaw(8); - } - ~WithRawMethod_View() override { - BaseClassMustBeDerivedFromService(this); - } - // disable synchronous version of this method - ::grpc::Status View(::grpc::ServerContext* /*context*/, const ::io::deephaven::proto::backplane::grpc::SelectOrUpdateRequest* /*request*/, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse* /*response*/) override { - abort(); - return ::grpc::Status(::grpc::StatusCode::UNIMPLEMENTED, ""); - } - void RequestView(::grpc::ServerContext* context, ::grpc::ByteBuffer* request, ::grpc::ServerAsyncResponseWriter< ::grpc::ByteBuffer>* response, ::grpc::CompletionQueue* new_call_cq, ::grpc::ServerCompletionQueue* notification_cq, void *tag) { - ::grpc::Service::RequestAsyncUnary(8, context, request, response, new_call_cq, notification_cq, tag); - } - }; - template - class WithRawMethod_UpdateView : public BaseClass { - private: - void BaseClassMustBeDerivedFromService(const Service* /*service*/) {} - public: - WithRawMethod_UpdateView() { - ::grpc::Service::MarkMethodRaw(9); - } - ~WithRawMethod_UpdateView() override { - BaseClassMustBeDerivedFromService(this); - } - // disable synchronous version of this method - ::grpc::Status UpdateView(::grpc::ServerContext* /*context*/, const ::io::deephaven::proto::backplane::grpc::SelectOrUpdateRequest* /*request*/, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse* /*response*/) override { - abort(); - return ::grpc::Status(::grpc::StatusCode::UNIMPLEMENTED, ""); - } - void RequestUpdateView(::grpc::ServerContext* context, ::grpc::ByteBuffer* request, ::grpc::ServerAsyncResponseWriter< ::grpc::ByteBuffer>* response, ::grpc::CompletionQueue* new_call_cq, ::grpc::ServerCompletionQueue* notification_cq, void *tag) { - ::grpc::Service::RequestAsyncUnary(9, context, request, response, new_call_cq, notification_cq, tag); - } - }; - template - class WithRawMethod_Select : public BaseClass { - private: - void BaseClassMustBeDerivedFromService(const Service* /*service*/) {} - public: - WithRawMethod_Select() { - ::grpc::Service::MarkMethodRaw(10); - } - ~WithRawMethod_Select() override { - BaseClassMustBeDerivedFromService(this); - } - // disable synchronous version of this method - ::grpc::Status Select(::grpc::ServerContext* /*context*/, const ::io::deephaven::proto::backplane::grpc::SelectOrUpdateRequest* /*request*/, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse* /*response*/) override { - abort(); - return ::grpc::Status(::grpc::StatusCode::UNIMPLEMENTED, ""); - } - void RequestSelect(::grpc::ServerContext* context, ::grpc::ByteBuffer* request, ::grpc::ServerAsyncResponseWriter< ::grpc::ByteBuffer>* response, ::grpc::CompletionQueue* new_call_cq, ::grpc::ServerCompletionQueue* notification_cq, void *tag) { - ::grpc::Service::RequestAsyncUnary(10, context, request, response, new_call_cq, notification_cq, tag); - } - }; - template - class WithRawMethod_UpdateBy : public BaseClass { - private: - void BaseClassMustBeDerivedFromService(const Service* /*service*/) {} - public: - WithRawMethod_UpdateBy() { - ::grpc::Service::MarkMethodRaw(11); - } - ~WithRawMethod_UpdateBy() override { - BaseClassMustBeDerivedFromService(this); - } - // disable synchronous version of this method - ::grpc::Status UpdateBy(::grpc::ServerContext* /*context*/, const ::io::deephaven::proto::backplane::grpc::UpdateByRequest* /*request*/, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse* /*response*/) override { - abort(); - return ::grpc::Status(::grpc::StatusCode::UNIMPLEMENTED, ""); - } - void RequestUpdateBy(::grpc::ServerContext* context, ::grpc::ByteBuffer* request, ::grpc::ServerAsyncResponseWriter< ::grpc::ByteBuffer>* response, ::grpc::CompletionQueue* new_call_cq, ::grpc::ServerCompletionQueue* notification_cq, void *tag) { - ::grpc::Service::RequestAsyncUnary(11, context, request, response, new_call_cq, notification_cq, tag); - } - }; - template - class WithRawMethod_SelectDistinct : public BaseClass { - private: - void BaseClassMustBeDerivedFromService(const Service* /*service*/) {} - public: - WithRawMethod_SelectDistinct() { - ::grpc::Service::MarkMethodRaw(12); - } - ~WithRawMethod_SelectDistinct() override { - BaseClassMustBeDerivedFromService(this); - } - // disable synchronous version of this method - ::grpc::Status SelectDistinct(::grpc::ServerContext* /*context*/, const ::io::deephaven::proto::backplane::grpc::SelectDistinctRequest* /*request*/, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse* /*response*/) override { - abort(); - return ::grpc::Status(::grpc::StatusCode::UNIMPLEMENTED, ""); - } - void RequestSelectDistinct(::grpc::ServerContext* context, ::grpc::ByteBuffer* request, ::grpc::ServerAsyncResponseWriter< ::grpc::ByteBuffer>* response, ::grpc::CompletionQueue* new_call_cq, ::grpc::ServerCompletionQueue* notification_cq, void *tag) { - ::grpc::Service::RequestAsyncUnary(12, context, request, response, new_call_cq, notification_cq, tag); - } - }; - template - class WithRawMethod_Filter : public BaseClass { - private: - void BaseClassMustBeDerivedFromService(const Service* /*service*/) {} - public: - WithRawMethod_Filter() { - ::grpc::Service::MarkMethodRaw(13); - } - ~WithRawMethod_Filter() override { - BaseClassMustBeDerivedFromService(this); - } - // disable synchronous version of this method - ::grpc::Status Filter(::grpc::ServerContext* /*context*/, const ::io::deephaven::proto::backplane::grpc::FilterTableRequest* /*request*/, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse* /*response*/) override { - abort(); - return ::grpc::Status(::grpc::StatusCode::UNIMPLEMENTED, ""); - } - void RequestFilter(::grpc::ServerContext* context, ::grpc::ByteBuffer* request, ::grpc::ServerAsyncResponseWriter< ::grpc::ByteBuffer>* response, ::grpc::CompletionQueue* new_call_cq, ::grpc::ServerCompletionQueue* notification_cq, void *tag) { - ::grpc::Service::RequestAsyncUnary(13, context, request, response, new_call_cq, notification_cq, tag); - } - }; - template - class WithRawMethod_UnstructuredFilter : public BaseClass { - private: - void BaseClassMustBeDerivedFromService(const Service* /*service*/) {} - public: - WithRawMethod_UnstructuredFilter() { - ::grpc::Service::MarkMethodRaw(14); - } - ~WithRawMethod_UnstructuredFilter() override { - BaseClassMustBeDerivedFromService(this); - } - // disable synchronous version of this method - ::grpc::Status UnstructuredFilter(::grpc::ServerContext* /*context*/, const ::io::deephaven::proto::backplane::grpc::UnstructuredFilterTableRequest* /*request*/, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse* /*response*/) override { - abort(); - return ::grpc::Status(::grpc::StatusCode::UNIMPLEMENTED, ""); - } - void RequestUnstructuredFilter(::grpc::ServerContext* context, ::grpc::ByteBuffer* request, ::grpc::ServerAsyncResponseWriter< ::grpc::ByteBuffer>* response, ::grpc::CompletionQueue* new_call_cq, ::grpc::ServerCompletionQueue* notification_cq, void *tag) { - ::grpc::Service::RequestAsyncUnary(14, context, request, response, new_call_cq, notification_cq, tag); - } - }; - template - class WithRawMethod_Sort : public BaseClass { - private: - void BaseClassMustBeDerivedFromService(const Service* /*service*/) {} - public: - WithRawMethod_Sort() { - ::grpc::Service::MarkMethodRaw(15); - } - ~WithRawMethod_Sort() override { - BaseClassMustBeDerivedFromService(this); - } - // disable synchronous version of this method - ::grpc::Status Sort(::grpc::ServerContext* /*context*/, const ::io::deephaven::proto::backplane::grpc::SortTableRequest* /*request*/, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse* /*response*/) override { - abort(); - return ::grpc::Status(::grpc::StatusCode::UNIMPLEMENTED, ""); - } - void RequestSort(::grpc::ServerContext* context, ::grpc::ByteBuffer* request, ::grpc::ServerAsyncResponseWriter< ::grpc::ByteBuffer>* response, ::grpc::CompletionQueue* new_call_cq, ::grpc::ServerCompletionQueue* notification_cq, void *tag) { - ::grpc::Service::RequestAsyncUnary(15, context, request, response, new_call_cq, notification_cq, tag); - } - }; - template - class WithRawMethod_Head : public BaseClass { - private: - void BaseClassMustBeDerivedFromService(const Service* /*service*/) {} - public: - WithRawMethod_Head() { - ::grpc::Service::MarkMethodRaw(16); - } - ~WithRawMethod_Head() override { - BaseClassMustBeDerivedFromService(this); - } - // disable synchronous version of this method - ::grpc::Status Head(::grpc::ServerContext* /*context*/, const ::io::deephaven::proto::backplane::grpc::HeadOrTailRequest* /*request*/, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse* /*response*/) override { - abort(); - return ::grpc::Status(::grpc::StatusCode::UNIMPLEMENTED, ""); - } - void RequestHead(::grpc::ServerContext* context, ::grpc::ByteBuffer* request, ::grpc::ServerAsyncResponseWriter< ::grpc::ByteBuffer>* response, ::grpc::CompletionQueue* new_call_cq, ::grpc::ServerCompletionQueue* notification_cq, void *tag) { - ::grpc::Service::RequestAsyncUnary(16, context, request, response, new_call_cq, notification_cq, tag); - } - }; - template - class WithRawMethod_Tail : public BaseClass { - private: - void BaseClassMustBeDerivedFromService(const Service* /*service*/) {} - public: - WithRawMethod_Tail() { - ::grpc::Service::MarkMethodRaw(17); - } - ~WithRawMethod_Tail() override { - BaseClassMustBeDerivedFromService(this); - } - // disable synchronous version of this method - ::grpc::Status Tail(::grpc::ServerContext* /*context*/, const ::io::deephaven::proto::backplane::grpc::HeadOrTailRequest* /*request*/, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse* /*response*/) override { - abort(); - return ::grpc::Status(::grpc::StatusCode::UNIMPLEMENTED, ""); - } - void RequestTail(::grpc::ServerContext* context, ::grpc::ByteBuffer* request, ::grpc::ServerAsyncResponseWriter< ::grpc::ByteBuffer>* response, ::grpc::CompletionQueue* new_call_cq, ::grpc::ServerCompletionQueue* notification_cq, void *tag) { - ::grpc::Service::RequestAsyncUnary(17, context, request, response, new_call_cq, notification_cq, tag); - } - }; - template - class WithRawMethod_HeadBy : public BaseClass { - private: - void BaseClassMustBeDerivedFromService(const Service* /*service*/) {} - public: - WithRawMethod_HeadBy() { - ::grpc::Service::MarkMethodRaw(18); - } - ~WithRawMethod_HeadBy() override { - BaseClassMustBeDerivedFromService(this); - } - // disable synchronous version of this method - ::grpc::Status HeadBy(::grpc::ServerContext* /*context*/, const ::io::deephaven::proto::backplane::grpc::HeadOrTailByRequest* /*request*/, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse* /*response*/) override { - abort(); - return ::grpc::Status(::grpc::StatusCode::UNIMPLEMENTED, ""); - } - void RequestHeadBy(::grpc::ServerContext* context, ::grpc::ByteBuffer* request, ::grpc::ServerAsyncResponseWriter< ::grpc::ByteBuffer>* response, ::grpc::CompletionQueue* new_call_cq, ::grpc::ServerCompletionQueue* notification_cq, void *tag) { - ::grpc::Service::RequestAsyncUnary(18, context, request, response, new_call_cq, notification_cq, tag); - } - }; - template - class WithRawMethod_TailBy : public BaseClass { - private: - void BaseClassMustBeDerivedFromService(const Service* /*service*/) {} - public: - WithRawMethod_TailBy() { - ::grpc::Service::MarkMethodRaw(19); - } - ~WithRawMethod_TailBy() override { - BaseClassMustBeDerivedFromService(this); - } - // disable synchronous version of this method - ::grpc::Status TailBy(::grpc::ServerContext* /*context*/, const ::io::deephaven::proto::backplane::grpc::HeadOrTailByRequest* /*request*/, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse* /*response*/) override { - abort(); - return ::grpc::Status(::grpc::StatusCode::UNIMPLEMENTED, ""); - } - void RequestTailBy(::grpc::ServerContext* context, ::grpc::ByteBuffer* request, ::grpc::ServerAsyncResponseWriter< ::grpc::ByteBuffer>* response, ::grpc::CompletionQueue* new_call_cq, ::grpc::ServerCompletionQueue* notification_cq, void *tag) { - ::grpc::Service::RequestAsyncUnary(19, context, request, response, new_call_cq, notification_cq, tag); - } - }; - template - class WithRawMethod_Ungroup : public BaseClass { - private: - void BaseClassMustBeDerivedFromService(const Service* /*service*/) {} - public: - WithRawMethod_Ungroup() { - ::grpc::Service::MarkMethodRaw(20); - } - ~WithRawMethod_Ungroup() override { - BaseClassMustBeDerivedFromService(this); - } - // disable synchronous version of this method - ::grpc::Status Ungroup(::grpc::ServerContext* /*context*/, const ::io::deephaven::proto::backplane::grpc::UngroupRequest* /*request*/, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse* /*response*/) override { - abort(); - return ::grpc::Status(::grpc::StatusCode::UNIMPLEMENTED, ""); - } - void RequestUngroup(::grpc::ServerContext* context, ::grpc::ByteBuffer* request, ::grpc::ServerAsyncResponseWriter< ::grpc::ByteBuffer>* response, ::grpc::CompletionQueue* new_call_cq, ::grpc::ServerCompletionQueue* notification_cq, void *tag) { - ::grpc::Service::RequestAsyncUnary(20, context, request, response, new_call_cq, notification_cq, tag); - } - }; - template - class WithRawMethod_MergeTables : public BaseClass { - private: - void BaseClassMustBeDerivedFromService(const Service* /*service*/) {} - public: - WithRawMethod_MergeTables() { - ::grpc::Service::MarkMethodRaw(21); - } - ~WithRawMethod_MergeTables() override { - BaseClassMustBeDerivedFromService(this); - } - // disable synchronous version of this method - ::grpc::Status MergeTables(::grpc::ServerContext* /*context*/, const ::io::deephaven::proto::backplane::grpc::MergeTablesRequest* /*request*/, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse* /*response*/) override { - abort(); - return ::grpc::Status(::grpc::StatusCode::UNIMPLEMENTED, ""); - } - void RequestMergeTables(::grpc::ServerContext* context, ::grpc::ByteBuffer* request, ::grpc::ServerAsyncResponseWriter< ::grpc::ByteBuffer>* response, ::grpc::CompletionQueue* new_call_cq, ::grpc::ServerCompletionQueue* notification_cq, void *tag) { - ::grpc::Service::RequestAsyncUnary(21, context, request, response, new_call_cq, notification_cq, tag); - } - }; - template - class WithRawMethod_CrossJoinTables : public BaseClass { - private: - void BaseClassMustBeDerivedFromService(const Service* /*service*/) {} - public: - WithRawMethod_CrossJoinTables() { - ::grpc::Service::MarkMethodRaw(22); - } - ~WithRawMethod_CrossJoinTables() override { - BaseClassMustBeDerivedFromService(this); - } - // disable synchronous version of this method - ::grpc::Status CrossJoinTables(::grpc::ServerContext* /*context*/, const ::io::deephaven::proto::backplane::grpc::CrossJoinTablesRequest* /*request*/, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse* /*response*/) override { - abort(); - return ::grpc::Status(::grpc::StatusCode::UNIMPLEMENTED, ""); - } - void RequestCrossJoinTables(::grpc::ServerContext* context, ::grpc::ByteBuffer* request, ::grpc::ServerAsyncResponseWriter< ::grpc::ByteBuffer>* response, ::grpc::CompletionQueue* new_call_cq, ::grpc::ServerCompletionQueue* notification_cq, void *tag) { - ::grpc::Service::RequestAsyncUnary(22, context, request, response, new_call_cq, notification_cq, tag); - } - }; - template - class WithRawMethod_NaturalJoinTables : public BaseClass { - private: - void BaseClassMustBeDerivedFromService(const Service* /*service*/) {} - public: - WithRawMethod_NaturalJoinTables() { - ::grpc::Service::MarkMethodRaw(23); - } - ~WithRawMethod_NaturalJoinTables() override { - BaseClassMustBeDerivedFromService(this); - } - // disable synchronous version of this method - ::grpc::Status NaturalJoinTables(::grpc::ServerContext* /*context*/, const ::io::deephaven::proto::backplane::grpc::NaturalJoinTablesRequest* /*request*/, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse* /*response*/) override { - abort(); - return ::grpc::Status(::grpc::StatusCode::UNIMPLEMENTED, ""); - } - void RequestNaturalJoinTables(::grpc::ServerContext* context, ::grpc::ByteBuffer* request, ::grpc::ServerAsyncResponseWriter< ::grpc::ByteBuffer>* response, ::grpc::CompletionQueue* new_call_cq, ::grpc::ServerCompletionQueue* notification_cq, void *tag) { - ::grpc::Service::RequestAsyncUnary(23, context, request, response, new_call_cq, notification_cq, tag); - } - }; - template - class WithRawMethod_ExactJoinTables : public BaseClass { - private: - void BaseClassMustBeDerivedFromService(const Service* /*service*/) {} - public: - WithRawMethod_ExactJoinTables() { - ::grpc::Service::MarkMethodRaw(24); - } - ~WithRawMethod_ExactJoinTables() override { - BaseClassMustBeDerivedFromService(this); - } - // disable synchronous version of this method - ::grpc::Status ExactJoinTables(::grpc::ServerContext* /*context*/, const ::io::deephaven::proto::backplane::grpc::ExactJoinTablesRequest* /*request*/, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse* /*response*/) override { - abort(); - return ::grpc::Status(::grpc::StatusCode::UNIMPLEMENTED, ""); - } - void RequestExactJoinTables(::grpc::ServerContext* context, ::grpc::ByteBuffer* request, ::grpc::ServerAsyncResponseWriter< ::grpc::ByteBuffer>* response, ::grpc::CompletionQueue* new_call_cq, ::grpc::ServerCompletionQueue* notification_cq, void *tag) { - ::grpc::Service::RequestAsyncUnary(24, context, request, response, new_call_cq, notification_cq, tag); - } - }; - template - class WithRawMethod_LeftJoinTables : public BaseClass { - private: - void BaseClassMustBeDerivedFromService(const Service* /*service*/) {} - public: - WithRawMethod_LeftJoinTables() { - ::grpc::Service::MarkMethodRaw(25); - } - ~WithRawMethod_LeftJoinTables() override { - BaseClassMustBeDerivedFromService(this); - } - // disable synchronous version of this method - ::grpc::Status LeftJoinTables(::grpc::ServerContext* /*context*/, const ::io::deephaven::proto::backplane::grpc::LeftJoinTablesRequest* /*request*/, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse* /*response*/) override { - abort(); - return ::grpc::Status(::grpc::StatusCode::UNIMPLEMENTED, ""); - } - void RequestLeftJoinTables(::grpc::ServerContext* context, ::grpc::ByteBuffer* request, ::grpc::ServerAsyncResponseWriter< ::grpc::ByteBuffer>* response, ::grpc::CompletionQueue* new_call_cq, ::grpc::ServerCompletionQueue* notification_cq, void *tag) { - ::grpc::Service::RequestAsyncUnary(25, context, request, response, new_call_cq, notification_cq, tag); - } - }; - template - class WithRawMethod_AsOfJoinTables : public BaseClass { - private: - void BaseClassMustBeDerivedFromService(const Service* /*service*/) {} - public: - WithRawMethod_AsOfJoinTables() { - ::grpc::Service::MarkMethodRaw(26); - } - ~WithRawMethod_AsOfJoinTables() override { - BaseClassMustBeDerivedFromService(this); - } - // disable synchronous version of this method - ::grpc::Status AsOfJoinTables(::grpc::ServerContext* /*context*/, const ::io::deephaven::proto::backplane::grpc::AsOfJoinTablesRequest* /*request*/, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse* /*response*/) override { - abort(); - return ::grpc::Status(::grpc::StatusCode::UNIMPLEMENTED, ""); - } - void RequestAsOfJoinTables(::grpc::ServerContext* context, ::grpc::ByteBuffer* request, ::grpc::ServerAsyncResponseWriter< ::grpc::ByteBuffer>* response, ::grpc::CompletionQueue* new_call_cq, ::grpc::ServerCompletionQueue* notification_cq, void *tag) { - ::grpc::Service::RequestAsyncUnary(26, context, request, response, new_call_cq, notification_cq, tag); - } - }; - template - class WithRawMethod_AjTables : public BaseClass { - private: - void BaseClassMustBeDerivedFromService(const Service* /*service*/) {} - public: - WithRawMethod_AjTables() { - ::grpc::Service::MarkMethodRaw(27); - } - ~WithRawMethod_AjTables() override { - BaseClassMustBeDerivedFromService(this); - } - // disable synchronous version of this method - ::grpc::Status AjTables(::grpc::ServerContext* /*context*/, const ::io::deephaven::proto::backplane::grpc::AjRajTablesRequest* /*request*/, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse* /*response*/) override { - abort(); - return ::grpc::Status(::grpc::StatusCode::UNIMPLEMENTED, ""); - } - void RequestAjTables(::grpc::ServerContext* context, ::grpc::ByteBuffer* request, ::grpc::ServerAsyncResponseWriter< ::grpc::ByteBuffer>* response, ::grpc::CompletionQueue* new_call_cq, ::grpc::ServerCompletionQueue* notification_cq, void *tag) { - ::grpc::Service::RequestAsyncUnary(27, context, request, response, new_call_cq, notification_cq, tag); - } - }; - template - class WithRawMethod_RajTables : public BaseClass { - private: - void BaseClassMustBeDerivedFromService(const Service* /*service*/) {} - public: - WithRawMethod_RajTables() { - ::grpc::Service::MarkMethodRaw(28); - } - ~WithRawMethod_RajTables() override { - BaseClassMustBeDerivedFromService(this); - } - // disable synchronous version of this method - ::grpc::Status RajTables(::grpc::ServerContext* /*context*/, const ::io::deephaven::proto::backplane::grpc::AjRajTablesRequest* /*request*/, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse* /*response*/) override { - abort(); - return ::grpc::Status(::grpc::StatusCode::UNIMPLEMENTED, ""); - } - void RequestRajTables(::grpc::ServerContext* context, ::grpc::ByteBuffer* request, ::grpc::ServerAsyncResponseWriter< ::grpc::ByteBuffer>* response, ::grpc::CompletionQueue* new_call_cq, ::grpc::ServerCompletionQueue* notification_cq, void *tag) { - ::grpc::Service::RequestAsyncUnary(28, context, request, response, new_call_cq, notification_cq, tag); - } - }; - template - class WithRawMethod_MultiJoinTables : public BaseClass { - private: - void BaseClassMustBeDerivedFromService(const Service* /*service*/) {} - public: - WithRawMethod_MultiJoinTables() { - ::grpc::Service::MarkMethodRaw(29); - } - ~WithRawMethod_MultiJoinTables() override { - BaseClassMustBeDerivedFromService(this); - } - // disable synchronous version of this method - ::grpc::Status MultiJoinTables(::grpc::ServerContext* /*context*/, const ::io::deephaven::proto::backplane::grpc::MultiJoinTablesRequest* /*request*/, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse* /*response*/) override { - abort(); - return ::grpc::Status(::grpc::StatusCode::UNIMPLEMENTED, ""); - } - void RequestMultiJoinTables(::grpc::ServerContext* context, ::grpc::ByteBuffer* request, ::grpc::ServerAsyncResponseWriter< ::grpc::ByteBuffer>* response, ::grpc::CompletionQueue* new_call_cq, ::grpc::ServerCompletionQueue* notification_cq, void *tag) { - ::grpc::Service::RequestAsyncUnary(29, context, request, response, new_call_cq, notification_cq, tag); - } - }; - template - class WithRawMethod_RangeJoinTables : public BaseClass { - private: - void BaseClassMustBeDerivedFromService(const Service* /*service*/) {} - public: - WithRawMethod_RangeJoinTables() { - ::grpc::Service::MarkMethodRaw(30); - } - ~WithRawMethod_RangeJoinTables() override { - BaseClassMustBeDerivedFromService(this); - } - // disable synchronous version of this method - ::grpc::Status RangeJoinTables(::grpc::ServerContext* /*context*/, const ::io::deephaven::proto::backplane::grpc::RangeJoinTablesRequest* /*request*/, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse* /*response*/) override { - abort(); - return ::grpc::Status(::grpc::StatusCode::UNIMPLEMENTED, ""); - } - void RequestRangeJoinTables(::grpc::ServerContext* context, ::grpc::ByteBuffer* request, ::grpc::ServerAsyncResponseWriter< ::grpc::ByteBuffer>* response, ::grpc::CompletionQueue* new_call_cq, ::grpc::ServerCompletionQueue* notification_cq, void *tag) { - ::grpc::Service::RequestAsyncUnary(30, context, request, response, new_call_cq, notification_cq, tag); - } - }; - template - class WithRawMethod_ComboAggregate : public BaseClass { - private: - void BaseClassMustBeDerivedFromService(const Service* /*service*/) {} - public: - WithRawMethod_ComboAggregate() { - ::grpc::Service::MarkMethodRaw(31); - } - ~WithRawMethod_ComboAggregate() override { - BaseClassMustBeDerivedFromService(this); - } - // disable synchronous version of this method - ::grpc::Status ComboAggregate(::grpc::ServerContext* /*context*/, const ::io::deephaven::proto::backplane::grpc::ComboAggregateRequest* /*request*/, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse* /*response*/) override { - abort(); - return ::grpc::Status(::grpc::StatusCode::UNIMPLEMENTED, ""); - } - void RequestComboAggregate(::grpc::ServerContext* context, ::grpc::ByteBuffer* request, ::grpc::ServerAsyncResponseWriter< ::grpc::ByteBuffer>* response, ::grpc::CompletionQueue* new_call_cq, ::grpc::ServerCompletionQueue* notification_cq, void *tag) { - ::grpc::Service::RequestAsyncUnary(31, context, request, response, new_call_cq, notification_cq, tag); - } - }; - template - class WithRawMethod_AggregateAll : public BaseClass { - private: - void BaseClassMustBeDerivedFromService(const Service* /*service*/) {} - public: - WithRawMethod_AggregateAll() { - ::grpc::Service::MarkMethodRaw(32); - } - ~WithRawMethod_AggregateAll() override { - BaseClassMustBeDerivedFromService(this); - } - // disable synchronous version of this method - ::grpc::Status AggregateAll(::grpc::ServerContext* /*context*/, const ::io::deephaven::proto::backplane::grpc::AggregateAllRequest* /*request*/, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse* /*response*/) override { - abort(); - return ::grpc::Status(::grpc::StatusCode::UNIMPLEMENTED, ""); - } - void RequestAggregateAll(::grpc::ServerContext* context, ::grpc::ByteBuffer* request, ::grpc::ServerAsyncResponseWriter< ::grpc::ByteBuffer>* response, ::grpc::CompletionQueue* new_call_cq, ::grpc::ServerCompletionQueue* notification_cq, void *tag) { - ::grpc::Service::RequestAsyncUnary(32, context, request, response, new_call_cq, notification_cq, tag); - } - }; - template - class WithRawMethod_Aggregate : public BaseClass { - private: - void BaseClassMustBeDerivedFromService(const Service* /*service*/) {} - public: - WithRawMethod_Aggregate() { - ::grpc::Service::MarkMethodRaw(33); - } - ~WithRawMethod_Aggregate() override { - BaseClassMustBeDerivedFromService(this); - } - // disable synchronous version of this method - ::grpc::Status Aggregate(::grpc::ServerContext* /*context*/, const ::io::deephaven::proto::backplane::grpc::AggregateRequest* /*request*/, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse* /*response*/) override { - abort(); - return ::grpc::Status(::grpc::StatusCode::UNIMPLEMENTED, ""); - } - void RequestAggregate(::grpc::ServerContext* context, ::grpc::ByteBuffer* request, ::grpc::ServerAsyncResponseWriter< ::grpc::ByteBuffer>* response, ::grpc::CompletionQueue* new_call_cq, ::grpc::ServerCompletionQueue* notification_cq, void *tag) { - ::grpc::Service::RequestAsyncUnary(33, context, request, response, new_call_cq, notification_cq, tag); - } - }; - template - class WithRawMethod_Snapshot : public BaseClass { - private: - void BaseClassMustBeDerivedFromService(const Service* /*service*/) {} - public: - WithRawMethod_Snapshot() { - ::grpc::Service::MarkMethodRaw(34); - } - ~WithRawMethod_Snapshot() override { - BaseClassMustBeDerivedFromService(this); - } - // disable synchronous version of this method - ::grpc::Status Snapshot(::grpc::ServerContext* /*context*/, const ::io::deephaven::proto::backplane::grpc::SnapshotTableRequest* /*request*/, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse* /*response*/) override { - abort(); - return ::grpc::Status(::grpc::StatusCode::UNIMPLEMENTED, ""); - } - void RequestSnapshot(::grpc::ServerContext* context, ::grpc::ByteBuffer* request, ::grpc::ServerAsyncResponseWriter< ::grpc::ByteBuffer>* response, ::grpc::CompletionQueue* new_call_cq, ::grpc::ServerCompletionQueue* notification_cq, void *tag) { - ::grpc::Service::RequestAsyncUnary(34, context, request, response, new_call_cq, notification_cq, tag); - } - }; - template - class WithRawMethod_SnapshotWhen : public BaseClass { - private: - void BaseClassMustBeDerivedFromService(const Service* /*service*/) {} - public: - WithRawMethod_SnapshotWhen() { - ::grpc::Service::MarkMethodRaw(35); - } - ~WithRawMethod_SnapshotWhen() override { - BaseClassMustBeDerivedFromService(this); - } - // disable synchronous version of this method - ::grpc::Status SnapshotWhen(::grpc::ServerContext* /*context*/, const ::io::deephaven::proto::backplane::grpc::SnapshotWhenTableRequest* /*request*/, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse* /*response*/) override { - abort(); - return ::grpc::Status(::grpc::StatusCode::UNIMPLEMENTED, ""); - } - void RequestSnapshotWhen(::grpc::ServerContext* context, ::grpc::ByteBuffer* request, ::grpc::ServerAsyncResponseWriter< ::grpc::ByteBuffer>* response, ::grpc::CompletionQueue* new_call_cq, ::grpc::ServerCompletionQueue* notification_cq, void *tag) { - ::grpc::Service::RequestAsyncUnary(35, context, request, response, new_call_cq, notification_cq, tag); - } - }; - template - class WithRawMethod_Flatten : public BaseClass { - private: - void BaseClassMustBeDerivedFromService(const Service* /*service*/) {} - public: - WithRawMethod_Flatten() { - ::grpc::Service::MarkMethodRaw(36); - } - ~WithRawMethod_Flatten() override { - BaseClassMustBeDerivedFromService(this); - } - // disable synchronous version of this method - ::grpc::Status Flatten(::grpc::ServerContext* /*context*/, const ::io::deephaven::proto::backplane::grpc::FlattenRequest* /*request*/, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse* /*response*/) override { - abort(); - return ::grpc::Status(::grpc::StatusCode::UNIMPLEMENTED, ""); - } - void RequestFlatten(::grpc::ServerContext* context, ::grpc::ByteBuffer* request, ::grpc::ServerAsyncResponseWriter< ::grpc::ByteBuffer>* response, ::grpc::CompletionQueue* new_call_cq, ::grpc::ServerCompletionQueue* notification_cq, void *tag) { - ::grpc::Service::RequestAsyncUnary(36, context, request, response, new_call_cq, notification_cq, tag); - } - }; - template - class WithRawMethod_RunChartDownsample : public BaseClass { - private: - void BaseClassMustBeDerivedFromService(const Service* /*service*/) {} - public: - WithRawMethod_RunChartDownsample() { - ::grpc::Service::MarkMethodRaw(37); - } - ~WithRawMethod_RunChartDownsample() override { - BaseClassMustBeDerivedFromService(this); - } - // disable synchronous version of this method - ::grpc::Status RunChartDownsample(::grpc::ServerContext* /*context*/, const ::io::deephaven::proto::backplane::grpc::RunChartDownsampleRequest* /*request*/, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse* /*response*/) override { - abort(); - return ::grpc::Status(::grpc::StatusCode::UNIMPLEMENTED, ""); - } - void RequestRunChartDownsample(::grpc::ServerContext* context, ::grpc::ByteBuffer* request, ::grpc::ServerAsyncResponseWriter< ::grpc::ByteBuffer>* response, ::grpc::CompletionQueue* new_call_cq, ::grpc::ServerCompletionQueue* notification_cq, void *tag) { - ::grpc::Service::RequestAsyncUnary(37, context, request, response, new_call_cq, notification_cq, tag); - } - }; - template - class WithRawMethod_CreateInputTable : public BaseClass { - private: - void BaseClassMustBeDerivedFromService(const Service* /*service*/) {} - public: - WithRawMethod_CreateInputTable() { - ::grpc::Service::MarkMethodRaw(38); - } - ~WithRawMethod_CreateInputTable() override { - BaseClassMustBeDerivedFromService(this); - } - // disable synchronous version of this method - ::grpc::Status CreateInputTable(::grpc::ServerContext* /*context*/, const ::io::deephaven::proto::backplane::grpc::CreateInputTableRequest* /*request*/, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse* /*response*/) override { - abort(); - return ::grpc::Status(::grpc::StatusCode::UNIMPLEMENTED, ""); - } - void RequestCreateInputTable(::grpc::ServerContext* context, ::grpc::ByteBuffer* request, ::grpc::ServerAsyncResponseWriter< ::grpc::ByteBuffer>* response, ::grpc::CompletionQueue* new_call_cq, ::grpc::ServerCompletionQueue* notification_cq, void *tag) { - ::grpc::Service::RequestAsyncUnary(38, context, request, response, new_call_cq, notification_cq, tag); - } - }; - template - class WithRawMethod_WhereIn : public BaseClass { - private: - void BaseClassMustBeDerivedFromService(const Service* /*service*/) {} - public: - WithRawMethod_WhereIn() { - ::grpc::Service::MarkMethodRaw(39); - } - ~WithRawMethod_WhereIn() override { - BaseClassMustBeDerivedFromService(this); - } - // disable synchronous version of this method - ::grpc::Status WhereIn(::grpc::ServerContext* /*context*/, const ::io::deephaven::proto::backplane::grpc::WhereInRequest* /*request*/, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse* /*response*/) override { - abort(); - return ::grpc::Status(::grpc::StatusCode::UNIMPLEMENTED, ""); - } - void RequestWhereIn(::grpc::ServerContext* context, ::grpc::ByteBuffer* request, ::grpc::ServerAsyncResponseWriter< ::grpc::ByteBuffer>* response, ::grpc::CompletionQueue* new_call_cq, ::grpc::ServerCompletionQueue* notification_cq, void *tag) { - ::grpc::Service::RequestAsyncUnary(39, context, request, response, new_call_cq, notification_cq, tag); - } - }; - template - class WithRawMethod_Batch : public BaseClass { - private: - void BaseClassMustBeDerivedFromService(const Service* /*service*/) {} - public: - WithRawMethod_Batch() { - ::grpc::Service::MarkMethodRaw(40); - } - ~WithRawMethod_Batch() override { - BaseClassMustBeDerivedFromService(this); - } - // disable synchronous version of this method - ::grpc::Status Batch(::grpc::ServerContext* /*context*/, const ::io::deephaven::proto::backplane::grpc::BatchTableRequest* /*request*/, ::grpc::ServerWriter< ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse>* /*writer*/) override { - abort(); - return ::grpc::Status(::grpc::StatusCode::UNIMPLEMENTED, ""); - } - void RequestBatch(::grpc::ServerContext* context, ::grpc::ByteBuffer* request, ::grpc::ServerAsyncWriter< ::grpc::ByteBuffer>* writer, ::grpc::CompletionQueue* new_call_cq, ::grpc::ServerCompletionQueue* notification_cq, void *tag) { - ::grpc::Service::RequestAsyncServerStreaming(40, context, request, writer, new_call_cq, notification_cq, tag); - } - }; - template - class WithRawMethod_ExportedTableUpdates : public BaseClass { - private: - void BaseClassMustBeDerivedFromService(const Service* /*service*/) {} - public: - WithRawMethod_ExportedTableUpdates() { - ::grpc::Service::MarkMethodRaw(41); - } - ~WithRawMethod_ExportedTableUpdates() override { - BaseClassMustBeDerivedFromService(this); - } - // disable synchronous version of this method - ::grpc::Status ExportedTableUpdates(::grpc::ServerContext* /*context*/, const ::io::deephaven::proto::backplane::grpc::ExportedTableUpdatesRequest* /*request*/, ::grpc::ServerWriter< ::io::deephaven::proto::backplane::grpc::ExportedTableUpdateMessage>* /*writer*/) override { - abort(); - return ::grpc::Status(::grpc::StatusCode::UNIMPLEMENTED, ""); - } - void RequestExportedTableUpdates(::grpc::ServerContext* context, ::grpc::ByteBuffer* request, ::grpc::ServerAsyncWriter< ::grpc::ByteBuffer>* writer, ::grpc::CompletionQueue* new_call_cq, ::grpc::ServerCompletionQueue* notification_cq, void *tag) { - ::grpc::Service::RequestAsyncServerStreaming(41, context, request, writer, new_call_cq, notification_cq, tag); - } - }; - template - class WithRawMethod_SeekRow : public BaseClass { - private: - void BaseClassMustBeDerivedFromService(const Service* /*service*/) {} - public: - WithRawMethod_SeekRow() { - ::grpc::Service::MarkMethodRaw(42); - } - ~WithRawMethod_SeekRow() override { - BaseClassMustBeDerivedFromService(this); - } - // disable synchronous version of this method - ::grpc::Status SeekRow(::grpc::ServerContext* /*context*/, const ::io::deephaven::proto::backplane::grpc::SeekRowRequest* /*request*/, ::io::deephaven::proto::backplane::grpc::SeekRowResponse* /*response*/) override { - abort(); - return ::grpc::Status(::grpc::StatusCode::UNIMPLEMENTED, ""); - } - void RequestSeekRow(::grpc::ServerContext* context, ::grpc::ByteBuffer* request, ::grpc::ServerAsyncResponseWriter< ::grpc::ByteBuffer>* response, ::grpc::CompletionQueue* new_call_cq, ::grpc::ServerCompletionQueue* notification_cq, void *tag) { - ::grpc::Service::RequestAsyncUnary(42, context, request, response, new_call_cq, notification_cq, tag); - } - }; - template - class WithRawMethod_MetaTable : public BaseClass { - private: - void BaseClassMustBeDerivedFromService(const Service* /*service*/) {} - public: - WithRawMethod_MetaTable() { - ::grpc::Service::MarkMethodRaw(43); - } - ~WithRawMethod_MetaTable() override { - BaseClassMustBeDerivedFromService(this); - } - // disable synchronous version of this method - ::grpc::Status MetaTable(::grpc::ServerContext* /*context*/, const ::io::deephaven::proto::backplane::grpc::MetaTableRequest* /*request*/, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse* /*response*/) override { - abort(); - return ::grpc::Status(::grpc::StatusCode::UNIMPLEMENTED, ""); - } - void RequestMetaTable(::grpc::ServerContext* context, ::grpc::ByteBuffer* request, ::grpc::ServerAsyncResponseWriter< ::grpc::ByteBuffer>* response, ::grpc::CompletionQueue* new_call_cq, ::grpc::ServerCompletionQueue* notification_cq, void *tag) { - ::grpc::Service::RequestAsyncUnary(43, context, request, response, new_call_cq, notification_cq, tag); - } - }; - template - class WithRawMethod_ComputeColumnStatistics : public BaseClass { - private: - void BaseClassMustBeDerivedFromService(const Service* /*service*/) {} - public: - WithRawMethod_ComputeColumnStatistics() { - ::grpc::Service::MarkMethodRaw(44); - } - ~WithRawMethod_ComputeColumnStatistics() override { - BaseClassMustBeDerivedFromService(this); - } - // disable synchronous version of this method - ::grpc::Status ComputeColumnStatistics(::grpc::ServerContext* /*context*/, const ::io::deephaven::proto::backplane::grpc::ColumnStatisticsRequest* /*request*/, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse* /*response*/) override { - abort(); - return ::grpc::Status(::grpc::StatusCode::UNIMPLEMENTED, ""); - } - void RequestComputeColumnStatistics(::grpc::ServerContext* context, ::grpc::ByteBuffer* request, ::grpc::ServerAsyncResponseWriter< ::grpc::ByteBuffer>* response, ::grpc::CompletionQueue* new_call_cq, ::grpc::ServerCompletionQueue* notification_cq, void *tag) { - ::grpc::Service::RequestAsyncUnary(44, context, request, response, new_call_cq, notification_cq, tag); - } - }; - template - class WithRawCallbackMethod_GetExportedTableCreationResponse : public BaseClass { - private: - void BaseClassMustBeDerivedFromService(const Service* /*service*/) {} - public: - WithRawCallbackMethod_GetExportedTableCreationResponse() { - ::grpc::Service::MarkMethodRawCallback(0, - new ::grpc::internal::CallbackUnaryHandler< ::grpc::ByteBuffer, ::grpc::ByteBuffer>( - [this]( - ::grpc::CallbackServerContext* context, const ::grpc::ByteBuffer* request, ::grpc::ByteBuffer* response) { return this->GetExportedTableCreationResponse(context, request, response); })); - } - ~WithRawCallbackMethod_GetExportedTableCreationResponse() override { - BaseClassMustBeDerivedFromService(this); - } - // disable synchronous version of this method - ::grpc::Status GetExportedTableCreationResponse(::grpc::ServerContext* /*context*/, const ::io::deephaven::proto::backplane::grpc::Ticket* /*request*/, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse* /*response*/) override { - abort(); - return ::grpc::Status(::grpc::StatusCode::UNIMPLEMENTED, ""); - } - virtual ::grpc::ServerUnaryReactor* GetExportedTableCreationResponse( - ::grpc::CallbackServerContext* /*context*/, const ::grpc::ByteBuffer* /*request*/, ::grpc::ByteBuffer* /*response*/) { return nullptr; } - }; - template - class WithRawCallbackMethod_FetchTable : public BaseClass { - private: - void BaseClassMustBeDerivedFromService(const Service* /*service*/) {} - public: - WithRawCallbackMethod_FetchTable() { - ::grpc::Service::MarkMethodRawCallback(1, - new ::grpc::internal::CallbackUnaryHandler< ::grpc::ByteBuffer, ::grpc::ByteBuffer>( - [this]( - ::grpc::CallbackServerContext* context, const ::grpc::ByteBuffer* request, ::grpc::ByteBuffer* response) { return this->FetchTable(context, request, response); })); - } - ~WithRawCallbackMethod_FetchTable() override { - BaseClassMustBeDerivedFromService(this); - } - // disable synchronous version of this method - ::grpc::Status FetchTable(::grpc::ServerContext* /*context*/, const ::io::deephaven::proto::backplane::grpc::FetchTableRequest* /*request*/, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse* /*response*/) override { - abort(); - return ::grpc::Status(::grpc::StatusCode::UNIMPLEMENTED, ""); - } - virtual ::grpc::ServerUnaryReactor* FetchTable( - ::grpc::CallbackServerContext* /*context*/, const ::grpc::ByteBuffer* /*request*/, ::grpc::ByteBuffer* /*response*/) { return nullptr; } - }; - template - class WithRawCallbackMethod_ApplyPreviewColumns : public BaseClass { - private: - void BaseClassMustBeDerivedFromService(const Service* /*service*/) {} - public: - WithRawCallbackMethod_ApplyPreviewColumns() { - ::grpc::Service::MarkMethodRawCallback(2, - new ::grpc::internal::CallbackUnaryHandler< ::grpc::ByteBuffer, ::grpc::ByteBuffer>( - [this]( - ::grpc::CallbackServerContext* context, const ::grpc::ByteBuffer* request, ::grpc::ByteBuffer* response) { return this->ApplyPreviewColumns(context, request, response); })); - } - ~WithRawCallbackMethod_ApplyPreviewColumns() override { - BaseClassMustBeDerivedFromService(this); - } - // disable synchronous version of this method - ::grpc::Status ApplyPreviewColumns(::grpc::ServerContext* /*context*/, const ::io::deephaven::proto::backplane::grpc::ApplyPreviewColumnsRequest* /*request*/, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse* /*response*/) override { - abort(); - return ::grpc::Status(::grpc::StatusCode::UNIMPLEMENTED, ""); - } - virtual ::grpc::ServerUnaryReactor* ApplyPreviewColumns( - ::grpc::CallbackServerContext* /*context*/, const ::grpc::ByteBuffer* /*request*/, ::grpc::ByteBuffer* /*response*/) { return nullptr; } - }; - template - class WithRawCallbackMethod_EmptyTable : public BaseClass { - private: - void BaseClassMustBeDerivedFromService(const Service* /*service*/) {} - public: - WithRawCallbackMethod_EmptyTable() { - ::grpc::Service::MarkMethodRawCallback(3, - new ::grpc::internal::CallbackUnaryHandler< ::grpc::ByteBuffer, ::grpc::ByteBuffer>( - [this]( - ::grpc::CallbackServerContext* context, const ::grpc::ByteBuffer* request, ::grpc::ByteBuffer* response) { return this->EmptyTable(context, request, response); })); - } - ~WithRawCallbackMethod_EmptyTable() override { - BaseClassMustBeDerivedFromService(this); - } - // disable synchronous version of this method - ::grpc::Status EmptyTable(::grpc::ServerContext* /*context*/, const ::io::deephaven::proto::backplane::grpc::EmptyTableRequest* /*request*/, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse* /*response*/) override { - abort(); - return ::grpc::Status(::grpc::StatusCode::UNIMPLEMENTED, ""); - } - virtual ::grpc::ServerUnaryReactor* EmptyTable( - ::grpc::CallbackServerContext* /*context*/, const ::grpc::ByteBuffer* /*request*/, ::grpc::ByteBuffer* /*response*/) { return nullptr; } - }; - template - class WithRawCallbackMethod_TimeTable : public BaseClass { - private: - void BaseClassMustBeDerivedFromService(const Service* /*service*/) {} - public: - WithRawCallbackMethod_TimeTable() { - ::grpc::Service::MarkMethodRawCallback(4, - new ::grpc::internal::CallbackUnaryHandler< ::grpc::ByteBuffer, ::grpc::ByteBuffer>( - [this]( - ::grpc::CallbackServerContext* context, const ::grpc::ByteBuffer* request, ::grpc::ByteBuffer* response) { return this->TimeTable(context, request, response); })); - } - ~WithRawCallbackMethod_TimeTable() override { - BaseClassMustBeDerivedFromService(this); - } - // disable synchronous version of this method - ::grpc::Status TimeTable(::grpc::ServerContext* /*context*/, const ::io::deephaven::proto::backplane::grpc::TimeTableRequest* /*request*/, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse* /*response*/) override { - abort(); - return ::grpc::Status(::grpc::StatusCode::UNIMPLEMENTED, ""); - } - virtual ::grpc::ServerUnaryReactor* TimeTable( - ::grpc::CallbackServerContext* /*context*/, const ::grpc::ByteBuffer* /*request*/, ::grpc::ByteBuffer* /*response*/) { return nullptr; } - }; - template - class WithRawCallbackMethod_DropColumns : public BaseClass { - private: - void BaseClassMustBeDerivedFromService(const Service* /*service*/) {} - public: - WithRawCallbackMethod_DropColumns() { - ::grpc::Service::MarkMethodRawCallback(5, - new ::grpc::internal::CallbackUnaryHandler< ::grpc::ByteBuffer, ::grpc::ByteBuffer>( - [this]( - ::grpc::CallbackServerContext* context, const ::grpc::ByteBuffer* request, ::grpc::ByteBuffer* response) { return this->DropColumns(context, request, response); })); - } - ~WithRawCallbackMethod_DropColumns() override { - BaseClassMustBeDerivedFromService(this); - } - // disable synchronous version of this method - ::grpc::Status DropColumns(::grpc::ServerContext* /*context*/, const ::io::deephaven::proto::backplane::grpc::DropColumnsRequest* /*request*/, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse* /*response*/) override { - abort(); - return ::grpc::Status(::grpc::StatusCode::UNIMPLEMENTED, ""); - } - virtual ::grpc::ServerUnaryReactor* DropColumns( - ::grpc::CallbackServerContext* /*context*/, const ::grpc::ByteBuffer* /*request*/, ::grpc::ByteBuffer* /*response*/) { return nullptr; } - }; - template - class WithRawCallbackMethod_Update : public BaseClass { - private: - void BaseClassMustBeDerivedFromService(const Service* /*service*/) {} - public: - WithRawCallbackMethod_Update() { - ::grpc::Service::MarkMethodRawCallback(6, - new ::grpc::internal::CallbackUnaryHandler< ::grpc::ByteBuffer, ::grpc::ByteBuffer>( - [this]( - ::grpc::CallbackServerContext* context, const ::grpc::ByteBuffer* request, ::grpc::ByteBuffer* response) { return this->Update(context, request, response); })); - } - ~WithRawCallbackMethod_Update() override { - BaseClassMustBeDerivedFromService(this); - } - // disable synchronous version of this method - ::grpc::Status Update(::grpc::ServerContext* /*context*/, const ::io::deephaven::proto::backplane::grpc::SelectOrUpdateRequest* /*request*/, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse* /*response*/) override { - abort(); - return ::grpc::Status(::grpc::StatusCode::UNIMPLEMENTED, ""); - } - virtual ::grpc::ServerUnaryReactor* Update( - ::grpc::CallbackServerContext* /*context*/, const ::grpc::ByteBuffer* /*request*/, ::grpc::ByteBuffer* /*response*/) { return nullptr; } - }; - template - class WithRawCallbackMethod_LazyUpdate : public BaseClass { - private: - void BaseClassMustBeDerivedFromService(const Service* /*service*/) {} - public: - WithRawCallbackMethod_LazyUpdate() { - ::grpc::Service::MarkMethodRawCallback(7, - new ::grpc::internal::CallbackUnaryHandler< ::grpc::ByteBuffer, ::grpc::ByteBuffer>( - [this]( - ::grpc::CallbackServerContext* context, const ::grpc::ByteBuffer* request, ::grpc::ByteBuffer* response) { return this->LazyUpdate(context, request, response); })); - } - ~WithRawCallbackMethod_LazyUpdate() override { - BaseClassMustBeDerivedFromService(this); - } - // disable synchronous version of this method - ::grpc::Status LazyUpdate(::grpc::ServerContext* /*context*/, const ::io::deephaven::proto::backplane::grpc::SelectOrUpdateRequest* /*request*/, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse* /*response*/) override { - abort(); - return ::grpc::Status(::grpc::StatusCode::UNIMPLEMENTED, ""); - } - virtual ::grpc::ServerUnaryReactor* LazyUpdate( - ::grpc::CallbackServerContext* /*context*/, const ::grpc::ByteBuffer* /*request*/, ::grpc::ByteBuffer* /*response*/) { return nullptr; } - }; - template - class WithRawCallbackMethod_View : public BaseClass { - private: - void BaseClassMustBeDerivedFromService(const Service* /*service*/) {} - public: - WithRawCallbackMethod_View() { - ::grpc::Service::MarkMethodRawCallback(8, - new ::grpc::internal::CallbackUnaryHandler< ::grpc::ByteBuffer, ::grpc::ByteBuffer>( - [this]( - ::grpc::CallbackServerContext* context, const ::grpc::ByteBuffer* request, ::grpc::ByteBuffer* response) { return this->View(context, request, response); })); - } - ~WithRawCallbackMethod_View() override { - BaseClassMustBeDerivedFromService(this); - } - // disable synchronous version of this method - ::grpc::Status View(::grpc::ServerContext* /*context*/, const ::io::deephaven::proto::backplane::grpc::SelectOrUpdateRequest* /*request*/, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse* /*response*/) override { - abort(); - return ::grpc::Status(::grpc::StatusCode::UNIMPLEMENTED, ""); - } - virtual ::grpc::ServerUnaryReactor* View( - ::grpc::CallbackServerContext* /*context*/, const ::grpc::ByteBuffer* /*request*/, ::grpc::ByteBuffer* /*response*/) { return nullptr; } - }; - template - class WithRawCallbackMethod_UpdateView : public BaseClass { - private: - void BaseClassMustBeDerivedFromService(const Service* /*service*/) {} - public: - WithRawCallbackMethod_UpdateView() { - ::grpc::Service::MarkMethodRawCallback(9, - new ::grpc::internal::CallbackUnaryHandler< ::grpc::ByteBuffer, ::grpc::ByteBuffer>( - [this]( - ::grpc::CallbackServerContext* context, const ::grpc::ByteBuffer* request, ::grpc::ByteBuffer* response) { return this->UpdateView(context, request, response); })); - } - ~WithRawCallbackMethod_UpdateView() override { - BaseClassMustBeDerivedFromService(this); - } - // disable synchronous version of this method - ::grpc::Status UpdateView(::grpc::ServerContext* /*context*/, const ::io::deephaven::proto::backplane::grpc::SelectOrUpdateRequest* /*request*/, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse* /*response*/) override { - abort(); - return ::grpc::Status(::grpc::StatusCode::UNIMPLEMENTED, ""); - } - virtual ::grpc::ServerUnaryReactor* UpdateView( - ::grpc::CallbackServerContext* /*context*/, const ::grpc::ByteBuffer* /*request*/, ::grpc::ByteBuffer* /*response*/) { return nullptr; } - }; - template - class WithRawCallbackMethod_Select : public BaseClass { - private: - void BaseClassMustBeDerivedFromService(const Service* /*service*/) {} - public: - WithRawCallbackMethod_Select() { - ::grpc::Service::MarkMethodRawCallback(10, - new ::grpc::internal::CallbackUnaryHandler< ::grpc::ByteBuffer, ::grpc::ByteBuffer>( - [this]( - ::grpc::CallbackServerContext* context, const ::grpc::ByteBuffer* request, ::grpc::ByteBuffer* response) { return this->Select(context, request, response); })); - } - ~WithRawCallbackMethod_Select() override { - BaseClassMustBeDerivedFromService(this); - } - // disable synchronous version of this method - ::grpc::Status Select(::grpc::ServerContext* /*context*/, const ::io::deephaven::proto::backplane::grpc::SelectOrUpdateRequest* /*request*/, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse* /*response*/) override { - abort(); - return ::grpc::Status(::grpc::StatusCode::UNIMPLEMENTED, ""); - } - virtual ::grpc::ServerUnaryReactor* Select( - ::grpc::CallbackServerContext* /*context*/, const ::grpc::ByteBuffer* /*request*/, ::grpc::ByteBuffer* /*response*/) { return nullptr; } - }; - template - class WithRawCallbackMethod_UpdateBy : public BaseClass { - private: - void BaseClassMustBeDerivedFromService(const Service* /*service*/) {} - public: - WithRawCallbackMethod_UpdateBy() { - ::grpc::Service::MarkMethodRawCallback(11, - new ::grpc::internal::CallbackUnaryHandler< ::grpc::ByteBuffer, ::grpc::ByteBuffer>( - [this]( - ::grpc::CallbackServerContext* context, const ::grpc::ByteBuffer* request, ::grpc::ByteBuffer* response) { return this->UpdateBy(context, request, response); })); - } - ~WithRawCallbackMethod_UpdateBy() override { - BaseClassMustBeDerivedFromService(this); - } - // disable synchronous version of this method - ::grpc::Status UpdateBy(::grpc::ServerContext* /*context*/, const ::io::deephaven::proto::backplane::grpc::UpdateByRequest* /*request*/, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse* /*response*/) override { - abort(); - return ::grpc::Status(::grpc::StatusCode::UNIMPLEMENTED, ""); - } - virtual ::grpc::ServerUnaryReactor* UpdateBy( - ::grpc::CallbackServerContext* /*context*/, const ::grpc::ByteBuffer* /*request*/, ::grpc::ByteBuffer* /*response*/) { return nullptr; } - }; - template - class WithRawCallbackMethod_SelectDistinct : public BaseClass { - private: - void BaseClassMustBeDerivedFromService(const Service* /*service*/) {} - public: - WithRawCallbackMethod_SelectDistinct() { - ::grpc::Service::MarkMethodRawCallback(12, - new ::grpc::internal::CallbackUnaryHandler< ::grpc::ByteBuffer, ::grpc::ByteBuffer>( - [this]( - ::grpc::CallbackServerContext* context, const ::grpc::ByteBuffer* request, ::grpc::ByteBuffer* response) { return this->SelectDistinct(context, request, response); })); - } - ~WithRawCallbackMethod_SelectDistinct() override { - BaseClassMustBeDerivedFromService(this); - } - // disable synchronous version of this method - ::grpc::Status SelectDistinct(::grpc::ServerContext* /*context*/, const ::io::deephaven::proto::backplane::grpc::SelectDistinctRequest* /*request*/, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse* /*response*/) override { - abort(); - return ::grpc::Status(::grpc::StatusCode::UNIMPLEMENTED, ""); - } - virtual ::grpc::ServerUnaryReactor* SelectDistinct( - ::grpc::CallbackServerContext* /*context*/, const ::grpc::ByteBuffer* /*request*/, ::grpc::ByteBuffer* /*response*/) { return nullptr; } - }; - template - class WithRawCallbackMethod_Filter : public BaseClass { - private: - void BaseClassMustBeDerivedFromService(const Service* /*service*/) {} - public: - WithRawCallbackMethod_Filter() { - ::grpc::Service::MarkMethodRawCallback(13, - new ::grpc::internal::CallbackUnaryHandler< ::grpc::ByteBuffer, ::grpc::ByteBuffer>( - [this]( - ::grpc::CallbackServerContext* context, const ::grpc::ByteBuffer* request, ::grpc::ByteBuffer* response) { return this->Filter(context, request, response); })); - } - ~WithRawCallbackMethod_Filter() override { - BaseClassMustBeDerivedFromService(this); - } - // disable synchronous version of this method - ::grpc::Status Filter(::grpc::ServerContext* /*context*/, const ::io::deephaven::proto::backplane::grpc::FilterTableRequest* /*request*/, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse* /*response*/) override { - abort(); - return ::grpc::Status(::grpc::StatusCode::UNIMPLEMENTED, ""); - } - virtual ::grpc::ServerUnaryReactor* Filter( - ::grpc::CallbackServerContext* /*context*/, const ::grpc::ByteBuffer* /*request*/, ::grpc::ByteBuffer* /*response*/) { return nullptr; } - }; - template - class WithRawCallbackMethod_UnstructuredFilter : public BaseClass { - private: - void BaseClassMustBeDerivedFromService(const Service* /*service*/) {} - public: - WithRawCallbackMethod_UnstructuredFilter() { - ::grpc::Service::MarkMethodRawCallback(14, - new ::grpc::internal::CallbackUnaryHandler< ::grpc::ByteBuffer, ::grpc::ByteBuffer>( - [this]( - ::grpc::CallbackServerContext* context, const ::grpc::ByteBuffer* request, ::grpc::ByteBuffer* response) { return this->UnstructuredFilter(context, request, response); })); - } - ~WithRawCallbackMethod_UnstructuredFilter() override { - BaseClassMustBeDerivedFromService(this); - } - // disable synchronous version of this method - ::grpc::Status UnstructuredFilter(::grpc::ServerContext* /*context*/, const ::io::deephaven::proto::backplane::grpc::UnstructuredFilterTableRequest* /*request*/, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse* /*response*/) override { - abort(); - return ::grpc::Status(::grpc::StatusCode::UNIMPLEMENTED, ""); - } - virtual ::grpc::ServerUnaryReactor* UnstructuredFilter( - ::grpc::CallbackServerContext* /*context*/, const ::grpc::ByteBuffer* /*request*/, ::grpc::ByteBuffer* /*response*/) { return nullptr; } - }; - template - class WithRawCallbackMethod_Sort : public BaseClass { - private: - void BaseClassMustBeDerivedFromService(const Service* /*service*/) {} - public: - WithRawCallbackMethod_Sort() { - ::grpc::Service::MarkMethodRawCallback(15, - new ::grpc::internal::CallbackUnaryHandler< ::grpc::ByteBuffer, ::grpc::ByteBuffer>( - [this]( - ::grpc::CallbackServerContext* context, const ::grpc::ByteBuffer* request, ::grpc::ByteBuffer* response) { return this->Sort(context, request, response); })); - } - ~WithRawCallbackMethod_Sort() override { - BaseClassMustBeDerivedFromService(this); - } - // disable synchronous version of this method - ::grpc::Status Sort(::grpc::ServerContext* /*context*/, const ::io::deephaven::proto::backplane::grpc::SortTableRequest* /*request*/, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse* /*response*/) override { - abort(); - return ::grpc::Status(::grpc::StatusCode::UNIMPLEMENTED, ""); - } - virtual ::grpc::ServerUnaryReactor* Sort( - ::grpc::CallbackServerContext* /*context*/, const ::grpc::ByteBuffer* /*request*/, ::grpc::ByteBuffer* /*response*/) { return nullptr; } - }; - template - class WithRawCallbackMethod_Head : public BaseClass { - private: - void BaseClassMustBeDerivedFromService(const Service* /*service*/) {} - public: - WithRawCallbackMethod_Head() { - ::grpc::Service::MarkMethodRawCallback(16, - new ::grpc::internal::CallbackUnaryHandler< ::grpc::ByteBuffer, ::grpc::ByteBuffer>( - [this]( - ::grpc::CallbackServerContext* context, const ::grpc::ByteBuffer* request, ::grpc::ByteBuffer* response) { return this->Head(context, request, response); })); - } - ~WithRawCallbackMethod_Head() override { - BaseClassMustBeDerivedFromService(this); - } - // disable synchronous version of this method - ::grpc::Status Head(::grpc::ServerContext* /*context*/, const ::io::deephaven::proto::backplane::grpc::HeadOrTailRequest* /*request*/, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse* /*response*/) override { - abort(); - return ::grpc::Status(::grpc::StatusCode::UNIMPLEMENTED, ""); - } - virtual ::grpc::ServerUnaryReactor* Head( - ::grpc::CallbackServerContext* /*context*/, const ::grpc::ByteBuffer* /*request*/, ::grpc::ByteBuffer* /*response*/) { return nullptr; } - }; - template - class WithRawCallbackMethod_Tail : public BaseClass { - private: - void BaseClassMustBeDerivedFromService(const Service* /*service*/) {} - public: - WithRawCallbackMethod_Tail() { - ::grpc::Service::MarkMethodRawCallback(17, - new ::grpc::internal::CallbackUnaryHandler< ::grpc::ByteBuffer, ::grpc::ByteBuffer>( - [this]( - ::grpc::CallbackServerContext* context, const ::grpc::ByteBuffer* request, ::grpc::ByteBuffer* response) { return this->Tail(context, request, response); })); - } - ~WithRawCallbackMethod_Tail() override { - BaseClassMustBeDerivedFromService(this); - } - // disable synchronous version of this method - ::grpc::Status Tail(::grpc::ServerContext* /*context*/, const ::io::deephaven::proto::backplane::grpc::HeadOrTailRequest* /*request*/, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse* /*response*/) override { - abort(); - return ::grpc::Status(::grpc::StatusCode::UNIMPLEMENTED, ""); - } - virtual ::grpc::ServerUnaryReactor* Tail( - ::grpc::CallbackServerContext* /*context*/, const ::grpc::ByteBuffer* /*request*/, ::grpc::ByteBuffer* /*response*/) { return nullptr; } - }; - template - class WithRawCallbackMethod_HeadBy : public BaseClass { - private: - void BaseClassMustBeDerivedFromService(const Service* /*service*/) {} - public: - WithRawCallbackMethod_HeadBy() { - ::grpc::Service::MarkMethodRawCallback(18, - new ::grpc::internal::CallbackUnaryHandler< ::grpc::ByteBuffer, ::grpc::ByteBuffer>( - [this]( - ::grpc::CallbackServerContext* context, const ::grpc::ByteBuffer* request, ::grpc::ByteBuffer* response) { return this->HeadBy(context, request, response); })); - } - ~WithRawCallbackMethod_HeadBy() override { - BaseClassMustBeDerivedFromService(this); - } - // disable synchronous version of this method - ::grpc::Status HeadBy(::grpc::ServerContext* /*context*/, const ::io::deephaven::proto::backplane::grpc::HeadOrTailByRequest* /*request*/, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse* /*response*/) override { - abort(); - return ::grpc::Status(::grpc::StatusCode::UNIMPLEMENTED, ""); - } - virtual ::grpc::ServerUnaryReactor* HeadBy( - ::grpc::CallbackServerContext* /*context*/, const ::grpc::ByteBuffer* /*request*/, ::grpc::ByteBuffer* /*response*/) { return nullptr; } - }; - template - class WithRawCallbackMethod_TailBy : public BaseClass { - private: - void BaseClassMustBeDerivedFromService(const Service* /*service*/) {} - public: - WithRawCallbackMethod_TailBy() { - ::grpc::Service::MarkMethodRawCallback(19, - new ::grpc::internal::CallbackUnaryHandler< ::grpc::ByteBuffer, ::grpc::ByteBuffer>( - [this]( - ::grpc::CallbackServerContext* context, const ::grpc::ByteBuffer* request, ::grpc::ByteBuffer* response) { return this->TailBy(context, request, response); })); - } - ~WithRawCallbackMethod_TailBy() override { - BaseClassMustBeDerivedFromService(this); - } - // disable synchronous version of this method - ::grpc::Status TailBy(::grpc::ServerContext* /*context*/, const ::io::deephaven::proto::backplane::grpc::HeadOrTailByRequest* /*request*/, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse* /*response*/) override { - abort(); - return ::grpc::Status(::grpc::StatusCode::UNIMPLEMENTED, ""); - } - virtual ::grpc::ServerUnaryReactor* TailBy( - ::grpc::CallbackServerContext* /*context*/, const ::grpc::ByteBuffer* /*request*/, ::grpc::ByteBuffer* /*response*/) { return nullptr; } - }; - template - class WithRawCallbackMethod_Ungroup : public BaseClass { - private: - void BaseClassMustBeDerivedFromService(const Service* /*service*/) {} - public: - WithRawCallbackMethod_Ungroup() { - ::grpc::Service::MarkMethodRawCallback(20, - new ::grpc::internal::CallbackUnaryHandler< ::grpc::ByteBuffer, ::grpc::ByteBuffer>( - [this]( - ::grpc::CallbackServerContext* context, const ::grpc::ByteBuffer* request, ::grpc::ByteBuffer* response) { return this->Ungroup(context, request, response); })); - } - ~WithRawCallbackMethod_Ungroup() override { - BaseClassMustBeDerivedFromService(this); - } - // disable synchronous version of this method - ::grpc::Status Ungroup(::grpc::ServerContext* /*context*/, const ::io::deephaven::proto::backplane::grpc::UngroupRequest* /*request*/, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse* /*response*/) override { - abort(); - return ::grpc::Status(::grpc::StatusCode::UNIMPLEMENTED, ""); - } - virtual ::grpc::ServerUnaryReactor* Ungroup( - ::grpc::CallbackServerContext* /*context*/, const ::grpc::ByteBuffer* /*request*/, ::grpc::ByteBuffer* /*response*/) { return nullptr; } - }; - template - class WithRawCallbackMethod_MergeTables : public BaseClass { - private: - void BaseClassMustBeDerivedFromService(const Service* /*service*/) {} - public: - WithRawCallbackMethod_MergeTables() { - ::grpc::Service::MarkMethodRawCallback(21, - new ::grpc::internal::CallbackUnaryHandler< ::grpc::ByteBuffer, ::grpc::ByteBuffer>( - [this]( - ::grpc::CallbackServerContext* context, const ::grpc::ByteBuffer* request, ::grpc::ByteBuffer* response) { return this->MergeTables(context, request, response); })); - } - ~WithRawCallbackMethod_MergeTables() override { - BaseClassMustBeDerivedFromService(this); - } - // disable synchronous version of this method - ::grpc::Status MergeTables(::grpc::ServerContext* /*context*/, const ::io::deephaven::proto::backplane::grpc::MergeTablesRequest* /*request*/, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse* /*response*/) override { - abort(); - return ::grpc::Status(::grpc::StatusCode::UNIMPLEMENTED, ""); - } - virtual ::grpc::ServerUnaryReactor* MergeTables( - ::grpc::CallbackServerContext* /*context*/, const ::grpc::ByteBuffer* /*request*/, ::grpc::ByteBuffer* /*response*/) { return nullptr; } - }; - template - class WithRawCallbackMethod_CrossJoinTables : public BaseClass { - private: - void BaseClassMustBeDerivedFromService(const Service* /*service*/) {} - public: - WithRawCallbackMethod_CrossJoinTables() { - ::grpc::Service::MarkMethodRawCallback(22, - new ::grpc::internal::CallbackUnaryHandler< ::grpc::ByteBuffer, ::grpc::ByteBuffer>( - [this]( - ::grpc::CallbackServerContext* context, const ::grpc::ByteBuffer* request, ::grpc::ByteBuffer* response) { return this->CrossJoinTables(context, request, response); })); - } - ~WithRawCallbackMethod_CrossJoinTables() override { - BaseClassMustBeDerivedFromService(this); - } - // disable synchronous version of this method - ::grpc::Status CrossJoinTables(::grpc::ServerContext* /*context*/, const ::io::deephaven::proto::backplane::grpc::CrossJoinTablesRequest* /*request*/, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse* /*response*/) override { - abort(); - return ::grpc::Status(::grpc::StatusCode::UNIMPLEMENTED, ""); - } - virtual ::grpc::ServerUnaryReactor* CrossJoinTables( - ::grpc::CallbackServerContext* /*context*/, const ::grpc::ByteBuffer* /*request*/, ::grpc::ByteBuffer* /*response*/) { return nullptr; } - }; - template - class WithRawCallbackMethod_NaturalJoinTables : public BaseClass { - private: - void BaseClassMustBeDerivedFromService(const Service* /*service*/) {} - public: - WithRawCallbackMethod_NaturalJoinTables() { - ::grpc::Service::MarkMethodRawCallback(23, - new ::grpc::internal::CallbackUnaryHandler< ::grpc::ByteBuffer, ::grpc::ByteBuffer>( - [this]( - ::grpc::CallbackServerContext* context, const ::grpc::ByteBuffer* request, ::grpc::ByteBuffer* response) { return this->NaturalJoinTables(context, request, response); })); - } - ~WithRawCallbackMethod_NaturalJoinTables() override { - BaseClassMustBeDerivedFromService(this); - } - // disable synchronous version of this method - ::grpc::Status NaturalJoinTables(::grpc::ServerContext* /*context*/, const ::io::deephaven::proto::backplane::grpc::NaturalJoinTablesRequest* /*request*/, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse* /*response*/) override { - abort(); - return ::grpc::Status(::grpc::StatusCode::UNIMPLEMENTED, ""); - } - virtual ::grpc::ServerUnaryReactor* NaturalJoinTables( - ::grpc::CallbackServerContext* /*context*/, const ::grpc::ByteBuffer* /*request*/, ::grpc::ByteBuffer* /*response*/) { return nullptr; } - }; - template - class WithRawCallbackMethod_ExactJoinTables : public BaseClass { - private: - void BaseClassMustBeDerivedFromService(const Service* /*service*/) {} - public: - WithRawCallbackMethod_ExactJoinTables() { - ::grpc::Service::MarkMethodRawCallback(24, - new ::grpc::internal::CallbackUnaryHandler< ::grpc::ByteBuffer, ::grpc::ByteBuffer>( - [this]( - ::grpc::CallbackServerContext* context, const ::grpc::ByteBuffer* request, ::grpc::ByteBuffer* response) { return this->ExactJoinTables(context, request, response); })); - } - ~WithRawCallbackMethod_ExactJoinTables() override { - BaseClassMustBeDerivedFromService(this); - } - // disable synchronous version of this method - ::grpc::Status ExactJoinTables(::grpc::ServerContext* /*context*/, const ::io::deephaven::proto::backplane::grpc::ExactJoinTablesRequest* /*request*/, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse* /*response*/) override { - abort(); - return ::grpc::Status(::grpc::StatusCode::UNIMPLEMENTED, ""); - } - virtual ::grpc::ServerUnaryReactor* ExactJoinTables( - ::grpc::CallbackServerContext* /*context*/, const ::grpc::ByteBuffer* /*request*/, ::grpc::ByteBuffer* /*response*/) { return nullptr; } - }; - template - class WithRawCallbackMethod_LeftJoinTables : public BaseClass { - private: - void BaseClassMustBeDerivedFromService(const Service* /*service*/) {} - public: - WithRawCallbackMethod_LeftJoinTables() { - ::grpc::Service::MarkMethodRawCallback(25, - new ::grpc::internal::CallbackUnaryHandler< ::grpc::ByteBuffer, ::grpc::ByteBuffer>( - [this]( - ::grpc::CallbackServerContext* context, const ::grpc::ByteBuffer* request, ::grpc::ByteBuffer* response) { return this->LeftJoinTables(context, request, response); })); - } - ~WithRawCallbackMethod_LeftJoinTables() override { - BaseClassMustBeDerivedFromService(this); - } - // disable synchronous version of this method - ::grpc::Status LeftJoinTables(::grpc::ServerContext* /*context*/, const ::io::deephaven::proto::backplane::grpc::LeftJoinTablesRequest* /*request*/, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse* /*response*/) override { - abort(); - return ::grpc::Status(::grpc::StatusCode::UNIMPLEMENTED, ""); - } - virtual ::grpc::ServerUnaryReactor* LeftJoinTables( - ::grpc::CallbackServerContext* /*context*/, const ::grpc::ByteBuffer* /*request*/, ::grpc::ByteBuffer* /*response*/) { return nullptr; } - }; - template - class WithRawCallbackMethod_AsOfJoinTables : public BaseClass { - private: - void BaseClassMustBeDerivedFromService(const Service* /*service*/) {} - public: - WithRawCallbackMethod_AsOfJoinTables() { - ::grpc::Service::MarkMethodRawCallback(26, - new ::grpc::internal::CallbackUnaryHandler< ::grpc::ByteBuffer, ::grpc::ByteBuffer>( - [this]( - ::grpc::CallbackServerContext* context, const ::grpc::ByteBuffer* request, ::grpc::ByteBuffer* response) { return this->AsOfJoinTables(context, request, response); })); - } - ~WithRawCallbackMethod_AsOfJoinTables() override { - BaseClassMustBeDerivedFromService(this); - } - // disable synchronous version of this method - ::grpc::Status AsOfJoinTables(::grpc::ServerContext* /*context*/, const ::io::deephaven::proto::backplane::grpc::AsOfJoinTablesRequest* /*request*/, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse* /*response*/) override { - abort(); - return ::grpc::Status(::grpc::StatusCode::UNIMPLEMENTED, ""); - } - virtual ::grpc::ServerUnaryReactor* AsOfJoinTables( - ::grpc::CallbackServerContext* /*context*/, const ::grpc::ByteBuffer* /*request*/, ::grpc::ByteBuffer* /*response*/) { return nullptr; } - }; - template - class WithRawCallbackMethod_AjTables : public BaseClass { - private: - void BaseClassMustBeDerivedFromService(const Service* /*service*/) {} - public: - WithRawCallbackMethod_AjTables() { - ::grpc::Service::MarkMethodRawCallback(27, - new ::grpc::internal::CallbackUnaryHandler< ::grpc::ByteBuffer, ::grpc::ByteBuffer>( - [this]( - ::grpc::CallbackServerContext* context, const ::grpc::ByteBuffer* request, ::grpc::ByteBuffer* response) { return this->AjTables(context, request, response); })); - } - ~WithRawCallbackMethod_AjTables() override { - BaseClassMustBeDerivedFromService(this); - } - // disable synchronous version of this method - ::grpc::Status AjTables(::grpc::ServerContext* /*context*/, const ::io::deephaven::proto::backplane::grpc::AjRajTablesRequest* /*request*/, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse* /*response*/) override { - abort(); - return ::grpc::Status(::grpc::StatusCode::UNIMPLEMENTED, ""); - } - virtual ::grpc::ServerUnaryReactor* AjTables( - ::grpc::CallbackServerContext* /*context*/, const ::grpc::ByteBuffer* /*request*/, ::grpc::ByteBuffer* /*response*/) { return nullptr; } - }; - template - class WithRawCallbackMethod_RajTables : public BaseClass { - private: - void BaseClassMustBeDerivedFromService(const Service* /*service*/) {} - public: - WithRawCallbackMethod_RajTables() { - ::grpc::Service::MarkMethodRawCallback(28, - new ::grpc::internal::CallbackUnaryHandler< ::grpc::ByteBuffer, ::grpc::ByteBuffer>( - [this]( - ::grpc::CallbackServerContext* context, const ::grpc::ByteBuffer* request, ::grpc::ByteBuffer* response) { return this->RajTables(context, request, response); })); - } - ~WithRawCallbackMethod_RajTables() override { - BaseClassMustBeDerivedFromService(this); - } - // disable synchronous version of this method - ::grpc::Status RajTables(::grpc::ServerContext* /*context*/, const ::io::deephaven::proto::backplane::grpc::AjRajTablesRequest* /*request*/, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse* /*response*/) override { - abort(); - return ::grpc::Status(::grpc::StatusCode::UNIMPLEMENTED, ""); - } - virtual ::grpc::ServerUnaryReactor* RajTables( - ::grpc::CallbackServerContext* /*context*/, const ::grpc::ByteBuffer* /*request*/, ::grpc::ByteBuffer* /*response*/) { return nullptr; } - }; - template - class WithRawCallbackMethod_MultiJoinTables : public BaseClass { - private: - void BaseClassMustBeDerivedFromService(const Service* /*service*/) {} - public: - WithRawCallbackMethod_MultiJoinTables() { - ::grpc::Service::MarkMethodRawCallback(29, - new ::grpc::internal::CallbackUnaryHandler< ::grpc::ByteBuffer, ::grpc::ByteBuffer>( - [this]( - ::grpc::CallbackServerContext* context, const ::grpc::ByteBuffer* request, ::grpc::ByteBuffer* response) { return this->MultiJoinTables(context, request, response); })); - } - ~WithRawCallbackMethod_MultiJoinTables() override { - BaseClassMustBeDerivedFromService(this); - } - // disable synchronous version of this method - ::grpc::Status MultiJoinTables(::grpc::ServerContext* /*context*/, const ::io::deephaven::proto::backplane::grpc::MultiJoinTablesRequest* /*request*/, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse* /*response*/) override { - abort(); - return ::grpc::Status(::grpc::StatusCode::UNIMPLEMENTED, ""); - } - virtual ::grpc::ServerUnaryReactor* MultiJoinTables( - ::grpc::CallbackServerContext* /*context*/, const ::grpc::ByteBuffer* /*request*/, ::grpc::ByteBuffer* /*response*/) { return nullptr; } - }; - template - class WithRawCallbackMethod_RangeJoinTables : public BaseClass { - private: - void BaseClassMustBeDerivedFromService(const Service* /*service*/) {} - public: - WithRawCallbackMethod_RangeJoinTables() { - ::grpc::Service::MarkMethodRawCallback(30, - new ::grpc::internal::CallbackUnaryHandler< ::grpc::ByteBuffer, ::grpc::ByteBuffer>( - [this]( - ::grpc::CallbackServerContext* context, const ::grpc::ByteBuffer* request, ::grpc::ByteBuffer* response) { return this->RangeJoinTables(context, request, response); })); - } - ~WithRawCallbackMethod_RangeJoinTables() override { - BaseClassMustBeDerivedFromService(this); - } - // disable synchronous version of this method - ::grpc::Status RangeJoinTables(::grpc::ServerContext* /*context*/, const ::io::deephaven::proto::backplane::grpc::RangeJoinTablesRequest* /*request*/, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse* /*response*/) override { - abort(); - return ::grpc::Status(::grpc::StatusCode::UNIMPLEMENTED, ""); - } - virtual ::grpc::ServerUnaryReactor* RangeJoinTables( - ::grpc::CallbackServerContext* /*context*/, const ::grpc::ByteBuffer* /*request*/, ::grpc::ByteBuffer* /*response*/) { return nullptr; } - }; - template - class WithRawCallbackMethod_ComboAggregate : public BaseClass { - private: - void BaseClassMustBeDerivedFromService(const Service* /*service*/) {} - public: - WithRawCallbackMethod_ComboAggregate() { - ::grpc::Service::MarkMethodRawCallback(31, - new ::grpc::internal::CallbackUnaryHandler< ::grpc::ByteBuffer, ::grpc::ByteBuffer>( - [this]( - ::grpc::CallbackServerContext* context, const ::grpc::ByteBuffer* request, ::grpc::ByteBuffer* response) { return this->ComboAggregate(context, request, response); })); - } - ~WithRawCallbackMethod_ComboAggregate() override { - BaseClassMustBeDerivedFromService(this); - } - // disable synchronous version of this method - ::grpc::Status ComboAggregate(::grpc::ServerContext* /*context*/, const ::io::deephaven::proto::backplane::grpc::ComboAggregateRequest* /*request*/, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse* /*response*/) override { - abort(); - return ::grpc::Status(::grpc::StatusCode::UNIMPLEMENTED, ""); - } - virtual ::grpc::ServerUnaryReactor* ComboAggregate( - ::grpc::CallbackServerContext* /*context*/, const ::grpc::ByteBuffer* /*request*/, ::grpc::ByteBuffer* /*response*/) { return nullptr; } - }; - template - class WithRawCallbackMethod_AggregateAll : public BaseClass { - private: - void BaseClassMustBeDerivedFromService(const Service* /*service*/) {} - public: - WithRawCallbackMethod_AggregateAll() { - ::grpc::Service::MarkMethodRawCallback(32, - new ::grpc::internal::CallbackUnaryHandler< ::grpc::ByteBuffer, ::grpc::ByteBuffer>( - [this]( - ::grpc::CallbackServerContext* context, const ::grpc::ByteBuffer* request, ::grpc::ByteBuffer* response) { return this->AggregateAll(context, request, response); })); - } - ~WithRawCallbackMethod_AggregateAll() override { - BaseClassMustBeDerivedFromService(this); - } - // disable synchronous version of this method - ::grpc::Status AggregateAll(::grpc::ServerContext* /*context*/, const ::io::deephaven::proto::backplane::grpc::AggregateAllRequest* /*request*/, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse* /*response*/) override { - abort(); - return ::grpc::Status(::grpc::StatusCode::UNIMPLEMENTED, ""); - } - virtual ::grpc::ServerUnaryReactor* AggregateAll( - ::grpc::CallbackServerContext* /*context*/, const ::grpc::ByteBuffer* /*request*/, ::grpc::ByteBuffer* /*response*/) { return nullptr; } - }; - template - class WithRawCallbackMethod_Aggregate : public BaseClass { - private: - void BaseClassMustBeDerivedFromService(const Service* /*service*/) {} - public: - WithRawCallbackMethod_Aggregate() { - ::grpc::Service::MarkMethodRawCallback(33, - new ::grpc::internal::CallbackUnaryHandler< ::grpc::ByteBuffer, ::grpc::ByteBuffer>( - [this]( - ::grpc::CallbackServerContext* context, const ::grpc::ByteBuffer* request, ::grpc::ByteBuffer* response) { return this->Aggregate(context, request, response); })); - } - ~WithRawCallbackMethod_Aggregate() override { - BaseClassMustBeDerivedFromService(this); - } - // disable synchronous version of this method - ::grpc::Status Aggregate(::grpc::ServerContext* /*context*/, const ::io::deephaven::proto::backplane::grpc::AggregateRequest* /*request*/, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse* /*response*/) override { - abort(); - return ::grpc::Status(::grpc::StatusCode::UNIMPLEMENTED, ""); - } - virtual ::grpc::ServerUnaryReactor* Aggregate( - ::grpc::CallbackServerContext* /*context*/, const ::grpc::ByteBuffer* /*request*/, ::grpc::ByteBuffer* /*response*/) { return nullptr; } - }; - template - class WithRawCallbackMethod_Snapshot : public BaseClass { - private: - void BaseClassMustBeDerivedFromService(const Service* /*service*/) {} - public: - WithRawCallbackMethod_Snapshot() { - ::grpc::Service::MarkMethodRawCallback(34, - new ::grpc::internal::CallbackUnaryHandler< ::grpc::ByteBuffer, ::grpc::ByteBuffer>( - [this]( - ::grpc::CallbackServerContext* context, const ::grpc::ByteBuffer* request, ::grpc::ByteBuffer* response) { return this->Snapshot(context, request, response); })); - } - ~WithRawCallbackMethod_Snapshot() override { - BaseClassMustBeDerivedFromService(this); - } - // disable synchronous version of this method - ::grpc::Status Snapshot(::grpc::ServerContext* /*context*/, const ::io::deephaven::proto::backplane::grpc::SnapshotTableRequest* /*request*/, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse* /*response*/) override { - abort(); - return ::grpc::Status(::grpc::StatusCode::UNIMPLEMENTED, ""); - } - virtual ::grpc::ServerUnaryReactor* Snapshot( - ::grpc::CallbackServerContext* /*context*/, const ::grpc::ByteBuffer* /*request*/, ::grpc::ByteBuffer* /*response*/) { return nullptr; } - }; - template - class WithRawCallbackMethod_SnapshotWhen : public BaseClass { - private: - void BaseClassMustBeDerivedFromService(const Service* /*service*/) {} - public: - WithRawCallbackMethod_SnapshotWhen() { - ::grpc::Service::MarkMethodRawCallback(35, - new ::grpc::internal::CallbackUnaryHandler< ::grpc::ByteBuffer, ::grpc::ByteBuffer>( - [this]( - ::grpc::CallbackServerContext* context, const ::grpc::ByteBuffer* request, ::grpc::ByteBuffer* response) { return this->SnapshotWhen(context, request, response); })); - } - ~WithRawCallbackMethod_SnapshotWhen() override { - BaseClassMustBeDerivedFromService(this); - } - // disable synchronous version of this method - ::grpc::Status SnapshotWhen(::grpc::ServerContext* /*context*/, const ::io::deephaven::proto::backplane::grpc::SnapshotWhenTableRequest* /*request*/, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse* /*response*/) override { - abort(); - return ::grpc::Status(::grpc::StatusCode::UNIMPLEMENTED, ""); - } - virtual ::grpc::ServerUnaryReactor* SnapshotWhen( - ::grpc::CallbackServerContext* /*context*/, const ::grpc::ByteBuffer* /*request*/, ::grpc::ByteBuffer* /*response*/) { return nullptr; } - }; - template - class WithRawCallbackMethod_Flatten : public BaseClass { - private: - void BaseClassMustBeDerivedFromService(const Service* /*service*/) {} - public: - WithRawCallbackMethod_Flatten() { - ::grpc::Service::MarkMethodRawCallback(36, - new ::grpc::internal::CallbackUnaryHandler< ::grpc::ByteBuffer, ::grpc::ByteBuffer>( - [this]( - ::grpc::CallbackServerContext* context, const ::grpc::ByteBuffer* request, ::grpc::ByteBuffer* response) { return this->Flatten(context, request, response); })); - } - ~WithRawCallbackMethod_Flatten() override { - BaseClassMustBeDerivedFromService(this); - } - // disable synchronous version of this method - ::grpc::Status Flatten(::grpc::ServerContext* /*context*/, const ::io::deephaven::proto::backplane::grpc::FlattenRequest* /*request*/, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse* /*response*/) override { - abort(); - return ::grpc::Status(::grpc::StatusCode::UNIMPLEMENTED, ""); - } - virtual ::grpc::ServerUnaryReactor* Flatten( - ::grpc::CallbackServerContext* /*context*/, const ::grpc::ByteBuffer* /*request*/, ::grpc::ByteBuffer* /*response*/) { return nullptr; } - }; - template - class WithRawCallbackMethod_RunChartDownsample : public BaseClass { - private: - void BaseClassMustBeDerivedFromService(const Service* /*service*/) {} - public: - WithRawCallbackMethod_RunChartDownsample() { - ::grpc::Service::MarkMethodRawCallback(37, - new ::grpc::internal::CallbackUnaryHandler< ::grpc::ByteBuffer, ::grpc::ByteBuffer>( - [this]( - ::grpc::CallbackServerContext* context, const ::grpc::ByteBuffer* request, ::grpc::ByteBuffer* response) { return this->RunChartDownsample(context, request, response); })); - } - ~WithRawCallbackMethod_RunChartDownsample() override { - BaseClassMustBeDerivedFromService(this); - } - // disable synchronous version of this method - ::grpc::Status RunChartDownsample(::grpc::ServerContext* /*context*/, const ::io::deephaven::proto::backplane::grpc::RunChartDownsampleRequest* /*request*/, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse* /*response*/) override { - abort(); - return ::grpc::Status(::grpc::StatusCode::UNIMPLEMENTED, ""); - } - virtual ::grpc::ServerUnaryReactor* RunChartDownsample( - ::grpc::CallbackServerContext* /*context*/, const ::grpc::ByteBuffer* /*request*/, ::grpc::ByteBuffer* /*response*/) { return nullptr; } - }; - template - class WithRawCallbackMethod_CreateInputTable : public BaseClass { - private: - void BaseClassMustBeDerivedFromService(const Service* /*service*/) {} - public: - WithRawCallbackMethod_CreateInputTable() { - ::grpc::Service::MarkMethodRawCallback(38, - new ::grpc::internal::CallbackUnaryHandler< ::grpc::ByteBuffer, ::grpc::ByteBuffer>( - [this]( - ::grpc::CallbackServerContext* context, const ::grpc::ByteBuffer* request, ::grpc::ByteBuffer* response) { return this->CreateInputTable(context, request, response); })); - } - ~WithRawCallbackMethod_CreateInputTable() override { - BaseClassMustBeDerivedFromService(this); - } - // disable synchronous version of this method - ::grpc::Status CreateInputTable(::grpc::ServerContext* /*context*/, const ::io::deephaven::proto::backplane::grpc::CreateInputTableRequest* /*request*/, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse* /*response*/) override { - abort(); - return ::grpc::Status(::grpc::StatusCode::UNIMPLEMENTED, ""); - } - virtual ::grpc::ServerUnaryReactor* CreateInputTable( - ::grpc::CallbackServerContext* /*context*/, const ::grpc::ByteBuffer* /*request*/, ::grpc::ByteBuffer* /*response*/) { return nullptr; } - }; - template - class WithRawCallbackMethod_WhereIn : public BaseClass { - private: - void BaseClassMustBeDerivedFromService(const Service* /*service*/) {} - public: - WithRawCallbackMethod_WhereIn() { - ::grpc::Service::MarkMethodRawCallback(39, - new ::grpc::internal::CallbackUnaryHandler< ::grpc::ByteBuffer, ::grpc::ByteBuffer>( - [this]( - ::grpc::CallbackServerContext* context, const ::grpc::ByteBuffer* request, ::grpc::ByteBuffer* response) { return this->WhereIn(context, request, response); })); - } - ~WithRawCallbackMethod_WhereIn() override { - BaseClassMustBeDerivedFromService(this); - } - // disable synchronous version of this method - ::grpc::Status WhereIn(::grpc::ServerContext* /*context*/, const ::io::deephaven::proto::backplane::grpc::WhereInRequest* /*request*/, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse* /*response*/) override { - abort(); - return ::grpc::Status(::grpc::StatusCode::UNIMPLEMENTED, ""); - } - virtual ::grpc::ServerUnaryReactor* WhereIn( - ::grpc::CallbackServerContext* /*context*/, const ::grpc::ByteBuffer* /*request*/, ::grpc::ByteBuffer* /*response*/) { return nullptr; } - }; - template - class WithRawCallbackMethod_Batch : public BaseClass { - private: - void BaseClassMustBeDerivedFromService(const Service* /*service*/) {} - public: - WithRawCallbackMethod_Batch() { - ::grpc::Service::MarkMethodRawCallback(40, - new ::grpc::internal::CallbackServerStreamingHandler< ::grpc::ByteBuffer, ::grpc::ByteBuffer>( - [this]( - ::grpc::CallbackServerContext* context, const::grpc::ByteBuffer* request) { return this->Batch(context, request); })); - } - ~WithRawCallbackMethod_Batch() override { - BaseClassMustBeDerivedFromService(this); - } - // disable synchronous version of this method - ::grpc::Status Batch(::grpc::ServerContext* /*context*/, const ::io::deephaven::proto::backplane::grpc::BatchTableRequest* /*request*/, ::grpc::ServerWriter< ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse>* /*writer*/) override { - abort(); - return ::grpc::Status(::grpc::StatusCode::UNIMPLEMENTED, ""); - } - virtual ::grpc::ServerWriteReactor< ::grpc::ByteBuffer>* Batch( - ::grpc::CallbackServerContext* /*context*/, const ::grpc::ByteBuffer* /*request*/) { return nullptr; } - }; - template - class WithRawCallbackMethod_ExportedTableUpdates : public BaseClass { - private: - void BaseClassMustBeDerivedFromService(const Service* /*service*/) {} - public: - WithRawCallbackMethod_ExportedTableUpdates() { - ::grpc::Service::MarkMethodRawCallback(41, - new ::grpc::internal::CallbackServerStreamingHandler< ::grpc::ByteBuffer, ::grpc::ByteBuffer>( - [this]( - ::grpc::CallbackServerContext* context, const::grpc::ByteBuffer* request) { return this->ExportedTableUpdates(context, request); })); - } - ~WithRawCallbackMethod_ExportedTableUpdates() override { - BaseClassMustBeDerivedFromService(this); - } - // disable synchronous version of this method - ::grpc::Status ExportedTableUpdates(::grpc::ServerContext* /*context*/, const ::io::deephaven::proto::backplane::grpc::ExportedTableUpdatesRequest* /*request*/, ::grpc::ServerWriter< ::io::deephaven::proto::backplane::grpc::ExportedTableUpdateMessage>* /*writer*/) override { - abort(); - return ::grpc::Status(::grpc::StatusCode::UNIMPLEMENTED, ""); - } - virtual ::grpc::ServerWriteReactor< ::grpc::ByteBuffer>* ExportedTableUpdates( - ::grpc::CallbackServerContext* /*context*/, const ::grpc::ByteBuffer* /*request*/) { return nullptr; } - }; - template - class WithRawCallbackMethod_SeekRow : public BaseClass { - private: - void BaseClassMustBeDerivedFromService(const Service* /*service*/) {} - public: - WithRawCallbackMethod_SeekRow() { - ::grpc::Service::MarkMethodRawCallback(42, - new ::grpc::internal::CallbackUnaryHandler< ::grpc::ByteBuffer, ::grpc::ByteBuffer>( - [this]( - ::grpc::CallbackServerContext* context, const ::grpc::ByteBuffer* request, ::grpc::ByteBuffer* response) { return this->SeekRow(context, request, response); })); - } - ~WithRawCallbackMethod_SeekRow() override { - BaseClassMustBeDerivedFromService(this); - } - // disable synchronous version of this method - ::grpc::Status SeekRow(::grpc::ServerContext* /*context*/, const ::io::deephaven::proto::backplane::grpc::SeekRowRequest* /*request*/, ::io::deephaven::proto::backplane::grpc::SeekRowResponse* /*response*/) override { - abort(); - return ::grpc::Status(::grpc::StatusCode::UNIMPLEMENTED, ""); - } - virtual ::grpc::ServerUnaryReactor* SeekRow( - ::grpc::CallbackServerContext* /*context*/, const ::grpc::ByteBuffer* /*request*/, ::grpc::ByteBuffer* /*response*/) { return nullptr; } - }; - template - class WithRawCallbackMethod_MetaTable : public BaseClass { - private: - void BaseClassMustBeDerivedFromService(const Service* /*service*/) {} - public: - WithRawCallbackMethod_MetaTable() { - ::grpc::Service::MarkMethodRawCallback(43, - new ::grpc::internal::CallbackUnaryHandler< ::grpc::ByteBuffer, ::grpc::ByteBuffer>( - [this]( - ::grpc::CallbackServerContext* context, const ::grpc::ByteBuffer* request, ::grpc::ByteBuffer* response) { return this->MetaTable(context, request, response); })); - } - ~WithRawCallbackMethod_MetaTable() override { - BaseClassMustBeDerivedFromService(this); - } - // disable synchronous version of this method - ::grpc::Status MetaTable(::grpc::ServerContext* /*context*/, const ::io::deephaven::proto::backplane::grpc::MetaTableRequest* /*request*/, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse* /*response*/) override { - abort(); - return ::grpc::Status(::grpc::StatusCode::UNIMPLEMENTED, ""); - } - virtual ::grpc::ServerUnaryReactor* MetaTable( - ::grpc::CallbackServerContext* /*context*/, const ::grpc::ByteBuffer* /*request*/, ::grpc::ByteBuffer* /*response*/) { return nullptr; } - }; - template - class WithRawCallbackMethod_ComputeColumnStatistics : public BaseClass { - private: - void BaseClassMustBeDerivedFromService(const Service* /*service*/) {} - public: - WithRawCallbackMethod_ComputeColumnStatistics() { - ::grpc::Service::MarkMethodRawCallback(44, - new ::grpc::internal::CallbackUnaryHandler< ::grpc::ByteBuffer, ::grpc::ByteBuffer>( - [this]( - ::grpc::CallbackServerContext* context, const ::grpc::ByteBuffer* request, ::grpc::ByteBuffer* response) { return this->ComputeColumnStatistics(context, request, response); })); - } - ~WithRawCallbackMethod_ComputeColumnStatistics() override { - BaseClassMustBeDerivedFromService(this); - } - // disable synchronous version of this method - ::grpc::Status ComputeColumnStatistics(::grpc::ServerContext* /*context*/, const ::io::deephaven::proto::backplane::grpc::ColumnStatisticsRequest* /*request*/, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse* /*response*/) override { - abort(); - return ::grpc::Status(::grpc::StatusCode::UNIMPLEMENTED, ""); - } - virtual ::grpc::ServerUnaryReactor* ComputeColumnStatistics( - ::grpc::CallbackServerContext* /*context*/, const ::grpc::ByteBuffer* /*request*/, ::grpc::ByteBuffer* /*response*/) { return nullptr; } - }; - template - class WithStreamedUnaryMethod_GetExportedTableCreationResponse : public BaseClass { - private: - void BaseClassMustBeDerivedFromService(const Service* /*service*/) {} - public: - WithStreamedUnaryMethod_GetExportedTableCreationResponse() { - ::grpc::Service::MarkMethodStreamed(0, - new ::grpc::internal::StreamedUnaryHandler< - ::io::deephaven::proto::backplane::grpc::Ticket, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse>( - [this](::grpc::ServerContext* context, - ::grpc::ServerUnaryStreamer< - ::io::deephaven::proto::backplane::grpc::Ticket, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse>* streamer) { - return this->StreamedGetExportedTableCreationResponse(context, - streamer); - })); - } - ~WithStreamedUnaryMethod_GetExportedTableCreationResponse() override { - BaseClassMustBeDerivedFromService(this); - } - // disable regular version of this method - ::grpc::Status GetExportedTableCreationResponse(::grpc::ServerContext* /*context*/, const ::io::deephaven::proto::backplane::grpc::Ticket* /*request*/, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse* /*response*/) override { - abort(); - return ::grpc::Status(::grpc::StatusCode::UNIMPLEMENTED, ""); - } - // replace default version of method with streamed unary - virtual ::grpc::Status StreamedGetExportedTableCreationResponse(::grpc::ServerContext* context, ::grpc::ServerUnaryStreamer< ::io::deephaven::proto::backplane::grpc::Ticket,::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse>* server_unary_streamer) = 0; - }; - template - class WithStreamedUnaryMethod_FetchTable : public BaseClass { - private: - void BaseClassMustBeDerivedFromService(const Service* /*service*/) {} - public: - WithStreamedUnaryMethod_FetchTable() { - ::grpc::Service::MarkMethodStreamed(1, - new ::grpc::internal::StreamedUnaryHandler< - ::io::deephaven::proto::backplane::grpc::FetchTableRequest, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse>( - [this](::grpc::ServerContext* context, - ::grpc::ServerUnaryStreamer< - ::io::deephaven::proto::backplane::grpc::FetchTableRequest, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse>* streamer) { - return this->StreamedFetchTable(context, - streamer); - })); - } - ~WithStreamedUnaryMethod_FetchTable() override { - BaseClassMustBeDerivedFromService(this); - } - // disable regular version of this method - ::grpc::Status FetchTable(::grpc::ServerContext* /*context*/, const ::io::deephaven::proto::backplane::grpc::FetchTableRequest* /*request*/, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse* /*response*/) override { - abort(); - return ::grpc::Status(::grpc::StatusCode::UNIMPLEMENTED, ""); - } - // replace default version of method with streamed unary - virtual ::grpc::Status StreamedFetchTable(::grpc::ServerContext* context, ::grpc::ServerUnaryStreamer< ::io::deephaven::proto::backplane::grpc::FetchTableRequest,::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse>* server_unary_streamer) = 0; - }; - template - class WithStreamedUnaryMethod_ApplyPreviewColumns : public BaseClass { - private: - void BaseClassMustBeDerivedFromService(const Service* /*service*/) {} - public: - WithStreamedUnaryMethod_ApplyPreviewColumns() { - ::grpc::Service::MarkMethodStreamed(2, - new ::grpc::internal::StreamedUnaryHandler< - ::io::deephaven::proto::backplane::grpc::ApplyPreviewColumnsRequest, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse>( - [this](::grpc::ServerContext* context, - ::grpc::ServerUnaryStreamer< - ::io::deephaven::proto::backplane::grpc::ApplyPreviewColumnsRequest, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse>* streamer) { - return this->StreamedApplyPreviewColumns(context, - streamer); - })); - } - ~WithStreamedUnaryMethod_ApplyPreviewColumns() override { - BaseClassMustBeDerivedFromService(this); - } - // disable regular version of this method - ::grpc::Status ApplyPreviewColumns(::grpc::ServerContext* /*context*/, const ::io::deephaven::proto::backplane::grpc::ApplyPreviewColumnsRequest* /*request*/, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse* /*response*/) override { - abort(); - return ::grpc::Status(::grpc::StatusCode::UNIMPLEMENTED, ""); - } - // replace default version of method with streamed unary - virtual ::grpc::Status StreamedApplyPreviewColumns(::grpc::ServerContext* context, ::grpc::ServerUnaryStreamer< ::io::deephaven::proto::backplane::grpc::ApplyPreviewColumnsRequest,::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse>* server_unary_streamer) = 0; - }; - template - class WithStreamedUnaryMethod_EmptyTable : public BaseClass { - private: - void BaseClassMustBeDerivedFromService(const Service* /*service*/) {} - public: - WithStreamedUnaryMethod_EmptyTable() { - ::grpc::Service::MarkMethodStreamed(3, - new ::grpc::internal::StreamedUnaryHandler< - ::io::deephaven::proto::backplane::grpc::EmptyTableRequest, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse>( - [this](::grpc::ServerContext* context, - ::grpc::ServerUnaryStreamer< - ::io::deephaven::proto::backplane::grpc::EmptyTableRequest, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse>* streamer) { - return this->StreamedEmptyTable(context, - streamer); - })); - } - ~WithStreamedUnaryMethod_EmptyTable() override { - BaseClassMustBeDerivedFromService(this); - } - // disable regular version of this method - ::grpc::Status EmptyTable(::grpc::ServerContext* /*context*/, const ::io::deephaven::proto::backplane::grpc::EmptyTableRequest* /*request*/, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse* /*response*/) override { - abort(); - return ::grpc::Status(::grpc::StatusCode::UNIMPLEMENTED, ""); - } - // replace default version of method with streamed unary - virtual ::grpc::Status StreamedEmptyTable(::grpc::ServerContext* context, ::grpc::ServerUnaryStreamer< ::io::deephaven::proto::backplane::grpc::EmptyTableRequest,::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse>* server_unary_streamer) = 0; - }; - template - class WithStreamedUnaryMethod_TimeTable : public BaseClass { - private: - void BaseClassMustBeDerivedFromService(const Service* /*service*/) {} - public: - WithStreamedUnaryMethod_TimeTable() { - ::grpc::Service::MarkMethodStreamed(4, - new ::grpc::internal::StreamedUnaryHandler< - ::io::deephaven::proto::backplane::grpc::TimeTableRequest, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse>( - [this](::grpc::ServerContext* context, - ::grpc::ServerUnaryStreamer< - ::io::deephaven::proto::backplane::grpc::TimeTableRequest, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse>* streamer) { - return this->StreamedTimeTable(context, - streamer); - })); - } - ~WithStreamedUnaryMethod_TimeTable() override { - BaseClassMustBeDerivedFromService(this); - } - // disable regular version of this method - ::grpc::Status TimeTable(::grpc::ServerContext* /*context*/, const ::io::deephaven::proto::backplane::grpc::TimeTableRequest* /*request*/, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse* /*response*/) override { - abort(); - return ::grpc::Status(::grpc::StatusCode::UNIMPLEMENTED, ""); - } - // replace default version of method with streamed unary - virtual ::grpc::Status StreamedTimeTable(::grpc::ServerContext* context, ::grpc::ServerUnaryStreamer< ::io::deephaven::proto::backplane::grpc::TimeTableRequest,::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse>* server_unary_streamer) = 0; - }; - template - class WithStreamedUnaryMethod_DropColumns : public BaseClass { - private: - void BaseClassMustBeDerivedFromService(const Service* /*service*/) {} - public: - WithStreamedUnaryMethod_DropColumns() { - ::grpc::Service::MarkMethodStreamed(5, - new ::grpc::internal::StreamedUnaryHandler< - ::io::deephaven::proto::backplane::grpc::DropColumnsRequest, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse>( - [this](::grpc::ServerContext* context, - ::grpc::ServerUnaryStreamer< - ::io::deephaven::proto::backplane::grpc::DropColumnsRequest, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse>* streamer) { - return this->StreamedDropColumns(context, - streamer); - })); - } - ~WithStreamedUnaryMethod_DropColumns() override { - BaseClassMustBeDerivedFromService(this); - } - // disable regular version of this method - ::grpc::Status DropColumns(::grpc::ServerContext* /*context*/, const ::io::deephaven::proto::backplane::grpc::DropColumnsRequest* /*request*/, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse* /*response*/) override { - abort(); - return ::grpc::Status(::grpc::StatusCode::UNIMPLEMENTED, ""); - } - // replace default version of method with streamed unary - virtual ::grpc::Status StreamedDropColumns(::grpc::ServerContext* context, ::grpc::ServerUnaryStreamer< ::io::deephaven::proto::backplane::grpc::DropColumnsRequest,::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse>* server_unary_streamer) = 0; - }; - template - class WithStreamedUnaryMethod_Update : public BaseClass { - private: - void BaseClassMustBeDerivedFromService(const Service* /*service*/) {} - public: - WithStreamedUnaryMethod_Update() { - ::grpc::Service::MarkMethodStreamed(6, - new ::grpc::internal::StreamedUnaryHandler< - ::io::deephaven::proto::backplane::grpc::SelectOrUpdateRequest, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse>( - [this](::grpc::ServerContext* context, - ::grpc::ServerUnaryStreamer< - ::io::deephaven::proto::backplane::grpc::SelectOrUpdateRequest, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse>* streamer) { - return this->StreamedUpdate(context, - streamer); - })); - } - ~WithStreamedUnaryMethod_Update() override { - BaseClassMustBeDerivedFromService(this); - } - // disable regular version of this method - ::grpc::Status Update(::grpc::ServerContext* /*context*/, const ::io::deephaven::proto::backplane::grpc::SelectOrUpdateRequest* /*request*/, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse* /*response*/) override { - abort(); - return ::grpc::Status(::grpc::StatusCode::UNIMPLEMENTED, ""); - } - // replace default version of method with streamed unary - virtual ::grpc::Status StreamedUpdate(::grpc::ServerContext* context, ::grpc::ServerUnaryStreamer< ::io::deephaven::proto::backplane::grpc::SelectOrUpdateRequest,::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse>* server_unary_streamer) = 0; - }; - template - class WithStreamedUnaryMethod_LazyUpdate : public BaseClass { - private: - void BaseClassMustBeDerivedFromService(const Service* /*service*/) {} - public: - WithStreamedUnaryMethod_LazyUpdate() { - ::grpc::Service::MarkMethodStreamed(7, - new ::grpc::internal::StreamedUnaryHandler< - ::io::deephaven::proto::backplane::grpc::SelectOrUpdateRequest, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse>( - [this](::grpc::ServerContext* context, - ::grpc::ServerUnaryStreamer< - ::io::deephaven::proto::backplane::grpc::SelectOrUpdateRequest, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse>* streamer) { - return this->StreamedLazyUpdate(context, - streamer); - })); - } - ~WithStreamedUnaryMethod_LazyUpdate() override { - BaseClassMustBeDerivedFromService(this); - } - // disable regular version of this method - ::grpc::Status LazyUpdate(::grpc::ServerContext* /*context*/, const ::io::deephaven::proto::backplane::grpc::SelectOrUpdateRequest* /*request*/, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse* /*response*/) override { - abort(); - return ::grpc::Status(::grpc::StatusCode::UNIMPLEMENTED, ""); - } - // replace default version of method with streamed unary - virtual ::grpc::Status StreamedLazyUpdate(::grpc::ServerContext* context, ::grpc::ServerUnaryStreamer< ::io::deephaven::proto::backplane::grpc::SelectOrUpdateRequest,::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse>* server_unary_streamer) = 0; - }; - template - class WithStreamedUnaryMethod_View : public BaseClass { - private: - void BaseClassMustBeDerivedFromService(const Service* /*service*/) {} - public: - WithStreamedUnaryMethod_View() { - ::grpc::Service::MarkMethodStreamed(8, - new ::grpc::internal::StreamedUnaryHandler< - ::io::deephaven::proto::backplane::grpc::SelectOrUpdateRequest, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse>( - [this](::grpc::ServerContext* context, - ::grpc::ServerUnaryStreamer< - ::io::deephaven::proto::backplane::grpc::SelectOrUpdateRequest, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse>* streamer) { - return this->StreamedView(context, - streamer); - })); - } - ~WithStreamedUnaryMethod_View() override { - BaseClassMustBeDerivedFromService(this); - } - // disable regular version of this method - ::grpc::Status View(::grpc::ServerContext* /*context*/, const ::io::deephaven::proto::backplane::grpc::SelectOrUpdateRequest* /*request*/, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse* /*response*/) override { - abort(); - return ::grpc::Status(::grpc::StatusCode::UNIMPLEMENTED, ""); - } - // replace default version of method with streamed unary - virtual ::grpc::Status StreamedView(::grpc::ServerContext* context, ::grpc::ServerUnaryStreamer< ::io::deephaven::proto::backplane::grpc::SelectOrUpdateRequest,::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse>* server_unary_streamer) = 0; - }; - template - class WithStreamedUnaryMethod_UpdateView : public BaseClass { - private: - void BaseClassMustBeDerivedFromService(const Service* /*service*/) {} - public: - WithStreamedUnaryMethod_UpdateView() { - ::grpc::Service::MarkMethodStreamed(9, - new ::grpc::internal::StreamedUnaryHandler< - ::io::deephaven::proto::backplane::grpc::SelectOrUpdateRequest, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse>( - [this](::grpc::ServerContext* context, - ::grpc::ServerUnaryStreamer< - ::io::deephaven::proto::backplane::grpc::SelectOrUpdateRequest, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse>* streamer) { - return this->StreamedUpdateView(context, - streamer); - })); - } - ~WithStreamedUnaryMethod_UpdateView() override { - BaseClassMustBeDerivedFromService(this); - } - // disable regular version of this method - ::grpc::Status UpdateView(::grpc::ServerContext* /*context*/, const ::io::deephaven::proto::backplane::grpc::SelectOrUpdateRequest* /*request*/, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse* /*response*/) override { - abort(); - return ::grpc::Status(::grpc::StatusCode::UNIMPLEMENTED, ""); - } - // replace default version of method with streamed unary - virtual ::grpc::Status StreamedUpdateView(::grpc::ServerContext* context, ::grpc::ServerUnaryStreamer< ::io::deephaven::proto::backplane::grpc::SelectOrUpdateRequest,::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse>* server_unary_streamer) = 0; - }; - template - class WithStreamedUnaryMethod_Select : public BaseClass { - private: - void BaseClassMustBeDerivedFromService(const Service* /*service*/) {} - public: - WithStreamedUnaryMethod_Select() { - ::grpc::Service::MarkMethodStreamed(10, - new ::grpc::internal::StreamedUnaryHandler< - ::io::deephaven::proto::backplane::grpc::SelectOrUpdateRequest, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse>( - [this](::grpc::ServerContext* context, - ::grpc::ServerUnaryStreamer< - ::io::deephaven::proto::backplane::grpc::SelectOrUpdateRequest, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse>* streamer) { - return this->StreamedSelect(context, - streamer); - })); - } - ~WithStreamedUnaryMethod_Select() override { - BaseClassMustBeDerivedFromService(this); - } - // disable regular version of this method - ::grpc::Status Select(::grpc::ServerContext* /*context*/, const ::io::deephaven::proto::backplane::grpc::SelectOrUpdateRequest* /*request*/, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse* /*response*/) override { - abort(); - return ::grpc::Status(::grpc::StatusCode::UNIMPLEMENTED, ""); - } - // replace default version of method with streamed unary - virtual ::grpc::Status StreamedSelect(::grpc::ServerContext* context, ::grpc::ServerUnaryStreamer< ::io::deephaven::proto::backplane::grpc::SelectOrUpdateRequest,::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse>* server_unary_streamer) = 0; - }; - template - class WithStreamedUnaryMethod_UpdateBy : public BaseClass { - private: - void BaseClassMustBeDerivedFromService(const Service* /*service*/) {} - public: - WithStreamedUnaryMethod_UpdateBy() { - ::grpc::Service::MarkMethodStreamed(11, - new ::grpc::internal::StreamedUnaryHandler< - ::io::deephaven::proto::backplane::grpc::UpdateByRequest, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse>( - [this](::grpc::ServerContext* context, - ::grpc::ServerUnaryStreamer< - ::io::deephaven::proto::backplane::grpc::UpdateByRequest, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse>* streamer) { - return this->StreamedUpdateBy(context, - streamer); - })); - } - ~WithStreamedUnaryMethod_UpdateBy() override { - BaseClassMustBeDerivedFromService(this); - } - // disable regular version of this method - ::grpc::Status UpdateBy(::grpc::ServerContext* /*context*/, const ::io::deephaven::proto::backplane::grpc::UpdateByRequest* /*request*/, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse* /*response*/) override { - abort(); - return ::grpc::Status(::grpc::StatusCode::UNIMPLEMENTED, ""); - } - // replace default version of method with streamed unary - virtual ::grpc::Status StreamedUpdateBy(::grpc::ServerContext* context, ::grpc::ServerUnaryStreamer< ::io::deephaven::proto::backplane::grpc::UpdateByRequest,::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse>* server_unary_streamer) = 0; - }; - template - class WithStreamedUnaryMethod_SelectDistinct : public BaseClass { - private: - void BaseClassMustBeDerivedFromService(const Service* /*service*/) {} - public: - WithStreamedUnaryMethod_SelectDistinct() { - ::grpc::Service::MarkMethodStreamed(12, - new ::grpc::internal::StreamedUnaryHandler< - ::io::deephaven::proto::backplane::grpc::SelectDistinctRequest, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse>( - [this](::grpc::ServerContext* context, - ::grpc::ServerUnaryStreamer< - ::io::deephaven::proto::backplane::grpc::SelectDistinctRequest, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse>* streamer) { - return this->StreamedSelectDistinct(context, - streamer); - })); - } - ~WithStreamedUnaryMethod_SelectDistinct() override { - BaseClassMustBeDerivedFromService(this); - } - // disable regular version of this method - ::grpc::Status SelectDistinct(::grpc::ServerContext* /*context*/, const ::io::deephaven::proto::backplane::grpc::SelectDistinctRequest* /*request*/, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse* /*response*/) override { - abort(); - return ::grpc::Status(::grpc::StatusCode::UNIMPLEMENTED, ""); - } - // replace default version of method with streamed unary - virtual ::grpc::Status StreamedSelectDistinct(::grpc::ServerContext* context, ::grpc::ServerUnaryStreamer< ::io::deephaven::proto::backplane::grpc::SelectDistinctRequest,::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse>* server_unary_streamer) = 0; - }; - template - class WithStreamedUnaryMethod_Filter : public BaseClass { - private: - void BaseClassMustBeDerivedFromService(const Service* /*service*/) {} - public: - WithStreamedUnaryMethod_Filter() { - ::grpc::Service::MarkMethodStreamed(13, - new ::grpc::internal::StreamedUnaryHandler< - ::io::deephaven::proto::backplane::grpc::FilterTableRequest, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse>( - [this](::grpc::ServerContext* context, - ::grpc::ServerUnaryStreamer< - ::io::deephaven::proto::backplane::grpc::FilterTableRequest, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse>* streamer) { - return this->StreamedFilter(context, - streamer); - })); - } - ~WithStreamedUnaryMethod_Filter() override { - BaseClassMustBeDerivedFromService(this); - } - // disable regular version of this method - ::grpc::Status Filter(::grpc::ServerContext* /*context*/, const ::io::deephaven::proto::backplane::grpc::FilterTableRequest* /*request*/, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse* /*response*/) override { - abort(); - return ::grpc::Status(::grpc::StatusCode::UNIMPLEMENTED, ""); - } - // replace default version of method with streamed unary - virtual ::grpc::Status StreamedFilter(::grpc::ServerContext* context, ::grpc::ServerUnaryStreamer< ::io::deephaven::proto::backplane::grpc::FilterTableRequest,::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse>* server_unary_streamer) = 0; - }; - template - class WithStreamedUnaryMethod_UnstructuredFilter : public BaseClass { - private: - void BaseClassMustBeDerivedFromService(const Service* /*service*/) {} - public: - WithStreamedUnaryMethod_UnstructuredFilter() { - ::grpc::Service::MarkMethodStreamed(14, - new ::grpc::internal::StreamedUnaryHandler< - ::io::deephaven::proto::backplane::grpc::UnstructuredFilterTableRequest, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse>( - [this](::grpc::ServerContext* context, - ::grpc::ServerUnaryStreamer< - ::io::deephaven::proto::backplane::grpc::UnstructuredFilterTableRequest, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse>* streamer) { - return this->StreamedUnstructuredFilter(context, - streamer); - })); - } - ~WithStreamedUnaryMethod_UnstructuredFilter() override { - BaseClassMustBeDerivedFromService(this); - } - // disable regular version of this method - ::grpc::Status UnstructuredFilter(::grpc::ServerContext* /*context*/, const ::io::deephaven::proto::backplane::grpc::UnstructuredFilterTableRequest* /*request*/, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse* /*response*/) override { - abort(); - return ::grpc::Status(::grpc::StatusCode::UNIMPLEMENTED, ""); - } - // replace default version of method with streamed unary - virtual ::grpc::Status StreamedUnstructuredFilter(::grpc::ServerContext* context, ::grpc::ServerUnaryStreamer< ::io::deephaven::proto::backplane::grpc::UnstructuredFilterTableRequest,::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse>* server_unary_streamer) = 0; - }; - template - class WithStreamedUnaryMethod_Sort : public BaseClass { - private: - void BaseClassMustBeDerivedFromService(const Service* /*service*/) {} - public: - WithStreamedUnaryMethod_Sort() { - ::grpc::Service::MarkMethodStreamed(15, - new ::grpc::internal::StreamedUnaryHandler< - ::io::deephaven::proto::backplane::grpc::SortTableRequest, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse>( - [this](::grpc::ServerContext* context, - ::grpc::ServerUnaryStreamer< - ::io::deephaven::proto::backplane::grpc::SortTableRequest, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse>* streamer) { - return this->StreamedSort(context, - streamer); - })); - } - ~WithStreamedUnaryMethod_Sort() override { - BaseClassMustBeDerivedFromService(this); - } - // disable regular version of this method - ::grpc::Status Sort(::grpc::ServerContext* /*context*/, const ::io::deephaven::proto::backplane::grpc::SortTableRequest* /*request*/, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse* /*response*/) override { - abort(); - return ::grpc::Status(::grpc::StatusCode::UNIMPLEMENTED, ""); - } - // replace default version of method with streamed unary - virtual ::grpc::Status StreamedSort(::grpc::ServerContext* context, ::grpc::ServerUnaryStreamer< ::io::deephaven::proto::backplane::grpc::SortTableRequest,::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse>* server_unary_streamer) = 0; - }; - template - class WithStreamedUnaryMethod_Head : public BaseClass { - private: - void BaseClassMustBeDerivedFromService(const Service* /*service*/) {} - public: - WithStreamedUnaryMethod_Head() { - ::grpc::Service::MarkMethodStreamed(16, - new ::grpc::internal::StreamedUnaryHandler< - ::io::deephaven::proto::backplane::grpc::HeadOrTailRequest, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse>( - [this](::grpc::ServerContext* context, - ::grpc::ServerUnaryStreamer< - ::io::deephaven::proto::backplane::grpc::HeadOrTailRequest, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse>* streamer) { - return this->StreamedHead(context, - streamer); - })); - } - ~WithStreamedUnaryMethod_Head() override { - BaseClassMustBeDerivedFromService(this); - } - // disable regular version of this method - ::grpc::Status Head(::grpc::ServerContext* /*context*/, const ::io::deephaven::proto::backplane::grpc::HeadOrTailRequest* /*request*/, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse* /*response*/) override { - abort(); - return ::grpc::Status(::grpc::StatusCode::UNIMPLEMENTED, ""); - } - // replace default version of method with streamed unary - virtual ::grpc::Status StreamedHead(::grpc::ServerContext* context, ::grpc::ServerUnaryStreamer< ::io::deephaven::proto::backplane::grpc::HeadOrTailRequest,::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse>* server_unary_streamer) = 0; - }; - template - class WithStreamedUnaryMethod_Tail : public BaseClass { - private: - void BaseClassMustBeDerivedFromService(const Service* /*service*/) {} - public: - WithStreamedUnaryMethod_Tail() { - ::grpc::Service::MarkMethodStreamed(17, - new ::grpc::internal::StreamedUnaryHandler< - ::io::deephaven::proto::backplane::grpc::HeadOrTailRequest, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse>( - [this](::grpc::ServerContext* context, - ::grpc::ServerUnaryStreamer< - ::io::deephaven::proto::backplane::grpc::HeadOrTailRequest, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse>* streamer) { - return this->StreamedTail(context, - streamer); - })); - } - ~WithStreamedUnaryMethod_Tail() override { - BaseClassMustBeDerivedFromService(this); - } - // disable regular version of this method - ::grpc::Status Tail(::grpc::ServerContext* /*context*/, const ::io::deephaven::proto::backplane::grpc::HeadOrTailRequest* /*request*/, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse* /*response*/) override { - abort(); - return ::grpc::Status(::grpc::StatusCode::UNIMPLEMENTED, ""); - } - // replace default version of method with streamed unary - virtual ::grpc::Status StreamedTail(::grpc::ServerContext* context, ::grpc::ServerUnaryStreamer< ::io::deephaven::proto::backplane::grpc::HeadOrTailRequest,::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse>* server_unary_streamer) = 0; - }; - template - class WithStreamedUnaryMethod_HeadBy : public BaseClass { - private: - void BaseClassMustBeDerivedFromService(const Service* /*service*/) {} - public: - WithStreamedUnaryMethod_HeadBy() { - ::grpc::Service::MarkMethodStreamed(18, - new ::grpc::internal::StreamedUnaryHandler< - ::io::deephaven::proto::backplane::grpc::HeadOrTailByRequest, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse>( - [this](::grpc::ServerContext* context, - ::grpc::ServerUnaryStreamer< - ::io::deephaven::proto::backplane::grpc::HeadOrTailByRequest, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse>* streamer) { - return this->StreamedHeadBy(context, - streamer); - })); - } - ~WithStreamedUnaryMethod_HeadBy() override { - BaseClassMustBeDerivedFromService(this); - } - // disable regular version of this method - ::grpc::Status HeadBy(::grpc::ServerContext* /*context*/, const ::io::deephaven::proto::backplane::grpc::HeadOrTailByRequest* /*request*/, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse* /*response*/) override { - abort(); - return ::grpc::Status(::grpc::StatusCode::UNIMPLEMENTED, ""); - } - // replace default version of method with streamed unary - virtual ::grpc::Status StreamedHeadBy(::grpc::ServerContext* context, ::grpc::ServerUnaryStreamer< ::io::deephaven::proto::backplane::grpc::HeadOrTailByRequest,::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse>* server_unary_streamer) = 0; - }; - template - class WithStreamedUnaryMethod_TailBy : public BaseClass { - private: - void BaseClassMustBeDerivedFromService(const Service* /*service*/) {} - public: - WithStreamedUnaryMethod_TailBy() { - ::grpc::Service::MarkMethodStreamed(19, - new ::grpc::internal::StreamedUnaryHandler< - ::io::deephaven::proto::backplane::grpc::HeadOrTailByRequest, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse>( - [this](::grpc::ServerContext* context, - ::grpc::ServerUnaryStreamer< - ::io::deephaven::proto::backplane::grpc::HeadOrTailByRequest, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse>* streamer) { - return this->StreamedTailBy(context, - streamer); - })); - } - ~WithStreamedUnaryMethod_TailBy() override { - BaseClassMustBeDerivedFromService(this); - } - // disable regular version of this method - ::grpc::Status TailBy(::grpc::ServerContext* /*context*/, const ::io::deephaven::proto::backplane::grpc::HeadOrTailByRequest* /*request*/, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse* /*response*/) override { - abort(); - return ::grpc::Status(::grpc::StatusCode::UNIMPLEMENTED, ""); - } - // replace default version of method with streamed unary - virtual ::grpc::Status StreamedTailBy(::grpc::ServerContext* context, ::grpc::ServerUnaryStreamer< ::io::deephaven::proto::backplane::grpc::HeadOrTailByRequest,::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse>* server_unary_streamer) = 0; - }; - template - class WithStreamedUnaryMethod_Ungroup : public BaseClass { - private: - void BaseClassMustBeDerivedFromService(const Service* /*service*/) {} - public: - WithStreamedUnaryMethod_Ungroup() { - ::grpc::Service::MarkMethodStreamed(20, - new ::grpc::internal::StreamedUnaryHandler< - ::io::deephaven::proto::backplane::grpc::UngroupRequest, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse>( - [this](::grpc::ServerContext* context, - ::grpc::ServerUnaryStreamer< - ::io::deephaven::proto::backplane::grpc::UngroupRequest, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse>* streamer) { - return this->StreamedUngroup(context, - streamer); - })); - } - ~WithStreamedUnaryMethod_Ungroup() override { - BaseClassMustBeDerivedFromService(this); - } - // disable regular version of this method - ::grpc::Status Ungroup(::grpc::ServerContext* /*context*/, const ::io::deephaven::proto::backplane::grpc::UngroupRequest* /*request*/, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse* /*response*/) override { - abort(); - return ::grpc::Status(::grpc::StatusCode::UNIMPLEMENTED, ""); - } - // replace default version of method with streamed unary - virtual ::grpc::Status StreamedUngroup(::grpc::ServerContext* context, ::grpc::ServerUnaryStreamer< ::io::deephaven::proto::backplane::grpc::UngroupRequest,::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse>* server_unary_streamer) = 0; - }; - template - class WithStreamedUnaryMethod_MergeTables : public BaseClass { - private: - void BaseClassMustBeDerivedFromService(const Service* /*service*/) {} - public: - WithStreamedUnaryMethod_MergeTables() { - ::grpc::Service::MarkMethodStreamed(21, - new ::grpc::internal::StreamedUnaryHandler< - ::io::deephaven::proto::backplane::grpc::MergeTablesRequest, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse>( - [this](::grpc::ServerContext* context, - ::grpc::ServerUnaryStreamer< - ::io::deephaven::proto::backplane::grpc::MergeTablesRequest, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse>* streamer) { - return this->StreamedMergeTables(context, - streamer); - })); - } - ~WithStreamedUnaryMethod_MergeTables() override { - BaseClassMustBeDerivedFromService(this); - } - // disable regular version of this method - ::grpc::Status MergeTables(::grpc::ServerContext* /*context*/, const ::io::deephaven::proto::backplane::grpc::MergeTablesRequest* /*request*/, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse* /*response*/) override { - abort(); - return ::grpc::Status(::grpc::StatusCode::UNIMPLEMENTED, ""); - } - // replace default version of method with streamed unary - virtual ::grpc::Status StreamedMergeTables(::grpc::ServerContext* context, ::grpc::ServerUnaryStreamer< ::io::deephaven::proto::backplane::grpc::MergeTablesRequest,::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse>* server_unary_streamer) = 0; - }; - template - class WithStreamedUnaryMethod_CrossJoinTables : public BaseClass { - private: - void BaseClassMustBeDerivedFromService(const Service* /*service*/) {} - public: - WithStreamedUnaryMethod_CrossJoinTables() { - ::grpc::Service::MarkMethodStreamed(22, - new ::grpc::internal::StreamedUnaryHandler< - ::io::deephaven::proto::backplane::grpc::CrossJoinTablesRequest, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse>( - [this](::grpc::ServerContext* context, - ::grpc::ServerUnaryStreamer< - ::io::deephaven::proto::backplane::grpc::CrossJoinTablesRequest, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse>* streamer) { - return this->StreamedCrossJoinTables(context, - streamer); - })); - } - ~WithStreamedUnaryMethod_CrossJoinTables() override { - BaseClassMustBeDerivedFromService(this); - } - // disable regular version of this method - ::grpc::Status CrossJoinTables(::grpc::ServerContext* /*context*/, const ::io::deephaven::proto::backplane::grpc::CrossJoinTablesRequest* /*request*/, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse* /*response*/) override { - abort(); - return ::grpc::Status(::grpc::StatusCode::UNIMPLEMENTED, ""); - } - // replace default version of method with streamed unary - virtual ::grpc::Status StreamedCrossJoinTables(::grpc::ServerContext* context, ::grpc::ServerUnaryStreamer< ::io::deephaven::proto::backplane::grpc::CrossJoinTablesRequest,::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse>* server_unary_streamer) = 0; - }; - template - class WithStreamedUnaryMethod_NaturalJoinTables : public BaseClass { - private: - void BaseClassMustBeDerivedFromService(const Service* /*service*/) {} - public: - WithStreamedUnaryMethod_NaturalJoinTables() { - ::grpc::Service::MarkMethodStreamed(23, - new ::grpc::internal::StreamedUnaryHandler< - ::io::deephaven::proto::backplane::grpc::NaturalJoinTablesRequest, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse>( - [this](::grpc::ServerContext* context, - ::grpc::ServerUnaryStreamer< - ::io::deephaven::proto::backplane::grpc::NaturalJoinTablesRequest, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse>* streamer) { - return this->StreamedNaturalJoinTables(context, - streamer); - })); - } - ~WithStreamedUnaryMethod_NaturalJoinTables() override { - BaseClassMustBeDerivedFromService(this); - } - // disable regular version of this method - ::grpc::Status NaturalJoinTables(::grpc::ServerContext* /*context*/, const ::io::deephaven::proto::backplane::grpc::NaturalJoinTablesRequest* /*request*/, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse* /*response*/) override { - abort(); - return ::grpc::Status(::grpc::StatusCode::UNIMPLEMENTED, ""); - } - // replace default version of method with streamed unary - virtual ::grpc::Status StreamedNaturalJoinTables(::grpc::ServerContext* context, ::grpc::ServerUnaryStreamer< ::io::deephaven::proto::backplane::grpc::NaturalJoinTablesRequest,::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse>* server_unary_streamer) = 0; - }; - template - class WithStreamedUnaryMethod_ExactJoinTables : public BaseClass { - private: - void BaseClassMustBeDerivedFromService(const Service* /*service*/) {} - public: - WithStreamedUnaryMethod_ExactJoinTables() { - ::grpc::Service::MarkMethodStreamed(24, - new ::grpc::internal::StreamedUnaryHandler< - ::io::deephaven::proto::backplane::grpc::ExactJoinTablesRequest, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse>( - [this](::grpc::ServerContext* context, - ::grpc::ServerUnaryStreamer< - ::io::deephaven::proto::backplane::grpc::ExactJoinTablesRequest, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse>* streamer) { - return this->StreamedExactJoinTables(context, - streamer); - })); - } - ~WithStreamedUnaryMethod_ExactJoinTables() override { - BaseClassMustBeDerivedFromService(this); - } - // disable regular version of this method - ::grpc::Status ExactJoinTables(::grpc::ServerContext* /*context*/, const ::io::deephaven::proto::backplane::grpc::ExactJoinTablesRequest* /*request*/, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse* /*response*/) override { - abort(); - return ::grpc::Status(::grpc::StatusCode::UNIMPLEMENTED, ""); - } - // replace default version of method with streamed unary - virtual ::grpc::Status StreamedExactJoinTables(::grpc::ServerContext* context, ::grpc::ServerUnaryStreamer< ::io::deephaven::proto::backplane::grpc::ExactJoinTablesRequest,::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse>* server_unary_streamer) = 0; - }; - template - class WithStreamedUnaryMethod_LeftJoinTables : public BaseClass { - private: - void BaseClassMustBeDerivedFromService(const Service* /*service*/) {} - public: - WithStreamedUnaryMethod_LeftJoinTables() { - ::grpc::Service::MarkMethodStreamed(25, - new ::grpc::internal::StreamedUnaryHandler< - ::io::deephaven::proto::backplane::grpc::LeftJoinTablesRequest, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse>( - [this](::grpc::ServerContext* context, - ::grpc::ServerUnaryStreamer< - ::io::deephaven::proto::backplane::grpc::LeftJoinTablesRequest, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse>* streamer) { - return this->StreamedLeftJoinTables(context, - streamer); - })); - } - ~WithStreamedUnaryMethod_LeftJoinTables() override { - BaseClassMustBeDerivedFromService(this); - } - // disable regular version of this method - ::grpc::Status LeftJoinTables(::grpc::ServerContext* /*context*/, const ::io::deephaven::proto::backplane::grpc::LeftJoinTablesRequest* /*request*/, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse* /*response*/) override { - abort(); - return ::grpc::Status(::grpc::StatusCode::UNIMPLEMENTED, ""); - } - // replace default version of method with streamed unary - virtual ::grpc::Status StreamedLeftJoinTables(::grpc::ServerContext* context, ::grpc::ServerUnaryStreamer< ::io::deephaven::proto::backplane::grpc::LeftJoinTablesRequest,::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse>* server_unary_streamer) = 0; - }; - template - class WithStreamedUnaryMethod_AsOfJoinTables : public BaseClass { - private: - void BaseClassMustBeDerivedFromService(const Service* /*service*/) {} - public: - WithStreamedUnaryMethod_AsOfJoinTables() { - ::grpc::Service::MarkMethodStreamed(26, - new ::grpc::internal::StreamedUnaryHandler< - ::io::deephaven::proto::backplane::grpc::AsOfJoinTablesRequest, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse>( - [this](::grpc::ServerContext* context, - ::grpc::ServerUnaryStreamer< - ::io::deephaven::proto::backplane::grpc::AsOfJoinTablesRequest, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse>* streamer) { - return this->StreamedAsOfJoinTables(context, - streamer); - })); - } - ~WithStreamedUnaryMethod_AsOfJoinTables() override { - BaseClassMustBeDerivedFromService(this); - } - // disable regular version of this method - ::grpc::Status AsOfJoinTables(::grpc::ServerContext* /*context*/, const ::io::deephaven::proto::backplane::grpc::AsOfJoinTablesRequest* /*request*/, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse* /*response*/) override { - abort(); - return ::grpc::Status(::grpc::StatusCode::UNIMPLEMENTED, ""); - } - // replace default version of method with streamed unary - virtual ::grpc::Status StreamedAsOfJoinTables(::grpc::ServerContext* context, ::grpc::ServerUnaryStreamer< ::io::deephaven::proto::backplane::grpc::AsOfJoinTablesRequest,::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse>* server_unary_streamer) = 0; - }; - template - class WithStreamedUnaryMethod_AjTables : public BaseClass { - private: - void BaseClassMustBeDerivedFromService(const Service* /*service*/) {} - public: - WithStreamedUnaryMethod_AjTables() { - ::grpc::Service::MarkMethodStreamed(27, - new ::grpc::internal::StreamedUnaryHandler< - ::io::deephaven::proto::backplane::grpc::AjRajTablesRequest, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse>( - [this](::grpc::ServerContext* context, - ::grpc::ServerUnaryStreamer< - ::io::deephaven::proto::backplane::grpc::AjRajTablesRequest, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse>* streamer) { - return this->StreamedAjTables(context, - streamer); - })); - } - ~WithStreamedUnaryMethod_AjTables() override { - BaseClassMustBeDerivedFromService(this); - } - // disable regular version of this method - ::grpc::Status AjTables(::grpc::ServerContext* /*context*/, const ::io::deephaven::proto::backplane::grpc::AjRajTablesRequest* /*request*/, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse* /*response*/) override { - abort(); - return ::grpc::Status(::grpc::StatusCode::UNIMPLEMENTED, ""); - } - // replace default version of method with streamed unary - virtual ::grpc::Status StreamedAjTables(::grpc::ServerContext* context, ::grpc::ServerUnaryStreamer< ::io::deephaven::proto::backplane::grpc::AjRajTablesRequest,::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse>* server_unary_streamer) = 0; - }; - template - class WithStreamedUnaryMethod_RajTables : public BaseClass { - private: - void BaseClassMustBeDerivedFromService(const Service* /*service*/) {} - public: - WithStreamedUnaryMethod_RajTables() { - ::grpc::Service::MarkMethodStreamed(28, - new ::grpc::internal::StreamedUnaryHandler< - ::io::deephaven::proto::backplane::grpc::AjRajTablesRequest, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse>( - [this](::grpc::ServerContext* context, - ::grpc::ServerUnaryStreamer< - ::io::deephaven::proto::backplane::grpc::AjRajTablesRequest, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse>* streamer) { - return this->StreamedRajTables(context, - streamer); - })); - } - ~WithStreamedUnaryMethod_RajTables() override { - BaseClassMustBeDerivedFromService(this); - } - // disable regular version of this method - ::grpc::Status RajTables(::grpc::ServerContext* /*context*/, const ::io::deephaven::proto::backplane::grpc::AjRajTablesRequest* /*request*/, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse* /*response*/) override { - abort(); - return ::grpc::Status(::grpc::StatusCode::UNIMPLEMENTED, ""); - } - // replace default version of method with streamed unary - virtual ::grpc::Status StreamedRajTables(::grpc::ServerContext* context, ::grpc::ServerUnaryStreamer< ::io::deephaven::proto::backplane::grpc::AjRajTablesRequest,::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse>* server_unary_streamer) = 0; - }; - template - class WithStreamedUnaryMethod_MultiJoinTables : public BaseClass { - private: - void BaseClassMustBeDerivedFromService(const Service* /*service*/) {} - public: - WithStreamedUnaryMethod_MultiJoinTables() { - ::grpc::Service::MarkMethodStreamed(29, - new ::grpc::internal::StreamedUnaryHandler< - ::io::deephaven::proto::backplane::grpc::MultiJoinTablesRequest, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse>( - [this](::grpc::ServerContext* context, - ::grpc::ServerUnaryStreamer< - ::io::deephaven::proto::backplane::grpc::MultiJoinTablesRequest, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse>* streamer) { - return this->StreamedMultiJoinTables(context, - streamer); - })); - } - ~WithStreamedUnaryMethod_MultiJoinTables() override { - BaseClassMustBeDerivedFromService(this); - } - // disable regular version of this method - ::grpc::Status MultiJoinTables(::grpc::ServerContext* /*context*/, const ::io::deephaven::proto::backplane::grpc::MultiJoinTablesRequest* /*request*/, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse* /*response*/) override { - abort(); - return ::grpc::Status(::grpc::StatusCode::UNIMPLEMENTED, ""); - } - // replace default version of method with streamed unary - virtual ::grpc::Status StreamedMultiJoinTables(::grpc::ServerContext* context, ::grpc::ServerUnaryStreamer< ::io::deephaven::proto::backplane::grpc::MultiJoinTablesRequest,::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse>* server_unary_streamer) = 0; - }; - template - class WithStreamedUnaryMethod_RangeJoinTables : public BaseClass { - private: - void BaseClassMustBeDerivedFromService(const Service* /*service*/) {} - public: - WithStreamedUnaryMethod_RangeJoinTables() { - ::grpc::Service::MarkMethodStreamed(30, - new ::grpc::internal::StreamedUnaryHandler< - ::io::deephaven::proto::backplane::grpc::RangeJoinTablesRequest, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse>( - [this](::grpc::ServerContext* context, - ::grpc::ServerUnaryStreamer< - ::io::deephaven::proto::backplane::grpc::RangeJoinTablesRequest, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse>* streamer) { - return this->StreamedRangeJoinTables(context, - streamer); - })); - } - ~WithStreamedUnaryMethod_RangeJoinTables() override { - BaseClassMustBeDerivedFromService(this); - } - // disable regular version of this method - ::grpc::Status RangeJoinTables(::grpc::ServerContext* /*context*/, const ::io::deephaven::proto::backplane::grpc::RangeJoinTablesRequest* /*request*/, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse* /*response*/) override { - abort(); - return ::grpc::Status(::grpc::StatusCode::UNIMPLEMENTED, ""); - } - // replace default version of method with streamed unary - virtual ::grpc::Status StreamedRangeJoinTables(::grpc::ServerContext* context, ::grpc::ServerUnaryStreamer< ::io::deephaven::proto::backplane::grpc::RangeJoinTablesRequest,::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse>* server_unary_streamer) = 0; - }; - template - class WithStreamedUnaryMethod_ComboAggregate : public BaseClass { - private: - void BaseClassMustBeDerivedFromService(const Service* /*service*/) {} - public: - WithStreamedUnaryMethod_ComboAggregate() { - ::grpc::Service::MarkMethodStreamed(31, - new ::grpc::internal::StreamedUnaryHandler< - ::io::deephaven::proto::backplane::grpc::ComboAggregateRequest, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse>( - [this](::grpc::ServerContext* context, - ::grpc::ServerUnaryStreamer< - ::io::deephaven::proto::backplane::grpc::ComboAggregateRequest, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse>* streamer) { - return this->StreamedComboAggregate(context, - streamer); - })); - } - ~WithStreamedUnaryMethod_ComboAggregate() override { - BaseClassMustBeDerivedFromService(this); - } - // disable regular version of this method - ::grpc::Status ComboAggregate(::grpc::ServerContext* /*context*/, const ::io::deephaven::proto::backplane::grpc::ComboAggregateRequest* /*request*/, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse* /*response*/) override { - abort(); - return ::grpc::Status(::grpc::StatusCode::UNIMPLEMENTED, ""); - } - // replace default version of method with streamed unary - virtual ::grpc::Status StreamedComboAggregate(::grpc::ServerContext* context, ::grpc::ServerUnaryStreamer< ::io::deephaven::proto::backplane::grpc::ComboAggregateRequest,::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse>* server_unary_streamer) = 0; - }; - template - class WithStreamedUnaryMethod_AggregateAll : public BaseClass { - private: - void BaseClassMustBeDerivedFromService(const Service* /*service*/) {} - public: - WithStreamedUnaryMethod_AggregateAll() { - ::grpc::Service::MarkMethodStreamed(32, - new ::grpc::internal::StreamedUnaryHandler< - ::io::deephaven::proto::backplane::grpc::AggregateAllRequest, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse>( - [this](::grpc::ServerContext* context, - ::grpc::ServerUnaryStreamer< - ::io::deephaven::proto::backplane::grpc::AggregateAllRequest, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse>* streamer) { - return this->StreamedAggregateAll(context, - streamer); - })); - } - ~WithStreamedUnaryMethod_AggregateAll() override { - BaseClassMustBeDerivedFromService(this); - } - // disable regular version of this method - ::grpc::Status AggregateAll(::grpc::ServerContext* /*context*/, const ::io::deephaven::proto::backplane::grpc::AggregateAllRequest* /*request*/, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse* /*response*/) override { - abort(); - return ::grpc::Status(::grpc::StatusCode::UNIMPLEMENTED, ""); - } - // replace default version of method with streamed unary - virtual ::grpc::Status StreamedAggregateAll(::grpc::ServerContext* context, ::grpc::ServerUnaryStreamer< ::io::deephaven::proto::backplane::grpc::AggregateAllRequest,::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse>* server_unary_streamer) = 0; - }; - template - class WithStreamedUnaryMethod_Aggregate : public BaseClass { - private: - void BaseClassMustBeDerivedFromService(const Service* /*service*/) {} - public: - WithStreamedUnaryMethod_Aggregate() { - ::grpc::Service::MarkMethodStreamed(33, - new ::grpc::internal::StreamedUnaryHandler< - ::io::deephaven::proto::backplane::grpc::AggregateRequest, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse>( - [this](::grpc::ServerContext* context, - ::grpc::ServerUnaryStreamer< - ::io::deephaven::proto::backplane::grpc::AggregateRequest, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse>* streamer) { - return this->StreamedAggregate(context, - streamer); - })); - } - ~WithStreamedUnaryMethod_Aggregate() override { - BaseClassMustBeDerivedFromService(this); - } - // disable regular version of this method - ::grpc::Status Aggregate(::grpc::ServerContext* /*context*/, const ::io::deephaven::proto::backplane::grpc::AggregateRequest* /*request*/, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse* /*response*/) override { - abort(); - return ::grpc::Status(::grpc::StatusCode::UNIMPLEMENTED, ""); - } - // replace default version of method with streamed unary - virtual ::grpc::Status StreamedAggregate(::grpc::ServerContext* context, ::grpc::ServerUnaryStreamer< ::io::deephaven::proto::backplane::grpc::AggregateRequest,::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse>* server_unary_streamer) = 0; - }; - template - class WithStreamedUnaryMethod_Snapshot : public BaseClass { - private: - void BaseClassMustBeDerivedFromService(const Service* /*service*/) {} - public: - WithStreamedUnaryMethod_Snapshot() { - ::grpc::Service::MarkMethodStreamed(34, - new ::grpc::internal::StreamedUnaryHandler< - ::io::deephaven::proto::backplane::grpc::SnapshotTableRequest, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse>( - [this](::grpc::ServerContext* context, - ::grpc::ServerUnaryStreamer< - ::io::deephaven::proto::backplane::grpc::SnapshotTableRequest, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse>* streamer) { - return this->StreamedSnapshot(context, - streamer); - })); - } - ~WithStreamedUnaryMethod_Snapshot() override { - BaseClassMustBeDerivedFromService(this); - } - // disable regular version of this method - ::grpc::Status Snapshot(::grpc::ServerContext* /*context*/, const ::io::deephaven::proto::backplane::grpc::SnapshotTableRequest* /*request*/, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse* /*response*/) override { - abort(); - return ::grpc::Status(::grpc::StatusCode::UNIMPLEMENTED, ""); - } - // replace default version of method with streamed unary - virtual ::grpc::Status StreamedSnapshot(::grpc::ServerContext* context, ::grpc::ServerUnaryStreamer< ::io::deephaven::proto::backplane::grpc::SnapshotTableRequest,::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse>* server_unary_streamer) = 0; - }; - template - class WithStreamedUnaryMethod_SnapshotWhen : public BaseClass { - private: - void BaseClassMustBeDerivedFromService(const Service* /*service*/) {} - public: - WithStreamedUnaryMethod_SnapshotWhen() { - ::grpc::Service::MarkMethodStreamed(35, - new ::grpc::internal::StreamedUnaryHandler< - ::io::deephaven::proto::backplane::grpc::SnapshotWhenTableRequest, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse>( - [this](::grpc::ServerContext* context, - ::grpc::ServerUnaryStreamer< - ::io::deephaven::proto::backplane::grpc::SnapshotWhenTableRequest, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse>* streamer) { - return this->StreamedSnapshotWhen(context, - streamer); - })); - } - ~WithStreamedUnaryMethod_SnapshotWhen() override { - BaseClassMustBeDerivedFromService(this); - } - // disable regular version of this method - ::grpc::Status SnapshotWhen(::grpc::ServerContext* /*context*/, const ::io::deephaven::proto::backplane::grpc::SnapshotWhenTableRequest* /*request*/, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse* /*response*/) override { - abort(); - return ::grpc::Status(::grpc::StatusCode::UNIMPLEMENTED, ""); - } - // replace default version of method with streamed unary - virtual ::grpc::Status StreamedSnapshotWhen(::grpc::ServerContext* context, ::grpc::ServerUnaryStreamer< ::io::deephaven::proto::backplane::grpc::SnapshotWhenTableRequest,::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse>* server_unary_streamer) = 0; - }; - template - class WithStreamedUnaryMethod_Flatten : public BaseClass { - private: - void BaseClassMustBeDerivedFromService(const Service* /*service*/) {} - public: - WithStreamedUnaryMethod_Flatten() { - ::grpc::Service::MarkMethodStreamed(36, - new ::grpc::internal::StreamedUnaryHandler< - ::io::deephaven::proto::backplane::grpc::FlattenRequest, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse>( - [this](::grpc::ServerContext* context, - ::grpc::ServerUnaryStreamer< - ::io::deephaven::proto::backplane::grpc::FlattenRequest, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse>* streamer) { - return this->StreamedFlatten(context, - streamer); - })); - } - ~WithStreamedUnaryMethod_Flatten() override { - BaseClassMustBeDerivedFromService(this); - } - // disable regular version of this method - ::grpc::Status Flatten(::grpc::ServerContext* /*context*/, const ::io::deephaven::proto::backplane::grpc::FlattenRequest* /*request*/, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse* /*response*/) override { - abort(); - return ::grpc::Status(::grpc::StatusCode::UNIMPLEMENTED, ""); - } - // replace default version of method with streamed unary - virtual ::grpc::Status StreamedFlatten(::grpc::ServerContext* context, ::grpc::ServerUnaryStreamer< ::io::deephaven::proto::backplane::grpc::FlattenRequest,::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse>* server_unary_streamer) = 0; - }; - template - class WithStreamedUnaryMethod_RunChartDownsample : public BaseClass { - private: - void BaseClassMustBeDerivedFromService(const Service* /*service*/) {} - public: - WithStreamedUnaryMethod_RunChartDownsample() { - ::grpc::Service::MarkMethodStreamed(37, - new ::grpc::internal::StreamedUnaryHandler< - ::io::deephaven::proto::backplane::grpc::RunChartDownsampleRequest, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse>( - [this](::grpc::ServerContext* context, - ::grpc::ServerUnaryStreamer< - ::io::deephaven::proto::backplane::grpc::RunChartDownsampleRequest, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse>* streamer) { - return this->StreamedRunChartDownsample(context, - streamer); - })); - } - ~WithStreamedUnaryMethod_RunChartDownsample() override { - BaseClassMustBeDerivedFromService(this); - } - // disable regular version of this method - ::grpc::Status RunChartDownsample(::grpc::ServerContext* /*context*/, const ::io::deephaven::proto::backplane::grpc::RunChartDownsampleRequest* /*request*/, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse* /*response*/) override { - abort(); - return ::grpc::Status(::grpc::StatusCode::UNIMPLEMENTED, ""); - } - // replace default version of method with streamed unary - virtual ::grpc::Status StreamedRunChartDownsample(::grpc::ServerContext* context, ::grpc::ServerUnaryStreamer< ::io::deephaven::proto::backplane::grpc::RunChartDownsampleRequest,::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse>* server_unary_streamer) = 0; - }; - template - class WithStreamedUnaryMethod_CreateInputTable : public BaseClass { - private: - void BaseClassMustBeDerivedFromService(const Service* /*service*/) {} - public: - WithStreamedUnaryMethod_CreateInputTable() { - ::grpc::Service::MarkMethodStreamed(38, - new ::grpc::internal::StreamedUnaryHandler< - ::io::deephaven::proto::backplane::grpc::CreateInputTableRequest, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse>( - [this](::grpc::ServerContext* context, - ::grpc::ServerUnaryStreamer< - ::io::deephaven::proto::backplane::grpc::CreateInputTableRequest, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse>* streamer) { - return this->StreamedCreateInputTable(context, - streamer); - })); - } - ~WithStreamedUnaryMethod_CreateInputTable() override { - BaseClassMustBeDerivedFromService(this); - } - // disable regular version of this method - ::grpc::Status CreateInputTable(::grpc::ServerContext* /*context*/, const ::io::deephaven::proto::backplane::grpc::CreateInputTableRequest* /*request*/, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse* /*response*/) override { - abort(); - return ::grpc::Status(::grpc::StatusCode::UNIMPLEMENTED, ""); - } - // replace default version of method with streamed unary - virtual ::grpc::Status StreamedCreateInputTable(::grpc::ServerContext* context, ::grpc::ServerUnaryStreamer< ::io::deephaven::proto::backplane::grpc::CreateInputTableRequest,::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse>* server_unary_streamer) = 0; - }; - template - class WithStreamedUnaryMethod_WhereIn : public BaseClass { - private: - void BaseClassMustBeDerivedFromService(const Service* /*service*/) {} - public: - WithStreamedUnaryMethod_WhereIn() { - ::grpc::Service::MarkMethodStreamed(39, - new ::grpc::internal::StreamedUnaryHandler< - ::io::deephaven::proto::backplane::grpc::WhereInRequest, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse>( - [this](::grpc::ServerContext* context, - ::grpc::ServerUnaryStreamer< - ::io::deephaven::proto::backplane::grpc::WhereInRequest, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse>* streamer) { - return this->StreamedWhereIn(context, - streamer); - })); - } - ~WithStreamedUnaryMethod_WhereIn() override { - BaseClassMustBeDerivedFromService(this); - } - // disable regular version of this method - ::grpc::Status WhereIn(::grpc::ServerContext* /*context*/, const ::io::deephaven::proto::backplane::grpc::WhereInRequest* /*request*/, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse* /*response*/) override { - abort(); - return ::grpc::Status(::grpc::StatusCode::UNIMPLEMENTED, ""); - } - // replace default version of method with streamed unary - virtual ::grpc::Status StreamedWhereIn(::grpc::ServerContext* context, ::grpc::ServerUnaryStreamer< ::io::deephaven::proto::backplane::grpc::WhereInRequest,::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse>* server_unary_streamer) = 0; - }; - template - class WithStreamedUnaryMethod_SeekRow : public BaseClass { - private: - void BaseClassMustBeDerivedFromService(const Service* /*service*/) {} - public: - WithStreamedUnaryMethod_SeekRow() { - ::grpc::Service::MarkMethodStreamed(42, - new ::grpc::internal::StreamedUnaryHandler< - ::io::deephaven::proto::backplane::grpc::SeekRowRequest, ::io::deephaven::proto::backplane::grpc::SeekRowResponse>( - [this](::grpc::ServerContext* context, - ::grpc::ServerUnaryStreamer< - ::io::deephaven::proto::backplane::grpc::SeekRowRequest, ::io::deephaven::proto::backplane::grpc::SeekRowResponse>* streamer) { - return this->StreamedSeekRow(context, - streamer); - })); - } - ~WithStreamedUnaryMethod_SeekRow() override { - BaseClassMustBeDerivedFromService(this); - } - // disable regular version of this method - ::grpc::Status SeekRow(::grpc::ServerContext* /*context*/, const ::io::deephaven::proto::backplane::grpc::SeekRowRequest* /*request*/, ::io::deephaven::proto::backplane::grpc::SeekRowResponse* /*response*/) override { - abort(); - return ::grpc::Status(::grpc::StatusCode::UNIMPLEMENTED, ""); - } - // replace default version of method with streamed unary - virtual ::grpc::Status StreamedSeekRow(::grpc::ServerContext* context, ::grpc::ServerUnaryStreamer< ::io::deephaven::proto::backplane::grpc::SeekRowRequest,::io::deephaven::proto::backplane::grpc::SeekRowResponse>* server_unary_streamer) = 0; - }; - template - class WithStreamedUnaryMethod_MetaTable : public BaseClass { - private: - void BaseClassMustBeDerivedFromService(const Service* /*service*/) {} - public: - WithStreamedUnaryMethod_MetaTable() { - ::grpc::Service::MarkMethodStreamed(43, - new ::grpc::internal::StreamedUnaryHandler< - ::io::deephaven::proto::backplane::grpc::MetaTableRequest, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse>( - [this](::grpc::ServerContext* context, - ::grpc::ServerUnaryStreamer< - ::io::deephaven::proto::backplane::grpc::MetaTableRequest, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse>* streamer) { - return this->StreamedMetaTable(context, - streamer); - })); - } - ~WithStreamedUnaryMethod_MetaTable() override { - BaseClassMustBeDerivedFromService(this); - } - // disable regular version of this method - ::grpc::Status MetaTable(::grpc::ServerContext* /*context*/, const ::io::deephaven::proto::backplane::grpc::MetaTableRequest* /*request*/, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse* /*response*/) override { - abort(); - return ::grpc::Status(::grpc::StatusCode::UNIMPLEMENTED, ""); - } - // replace default version of method with streamed unary - virtual ::grpc::Status StreamedMetaTable(::grpc::ServerContext* context, ::grpc::ServerUnaryStreamer< ::io::deephaven::proto::backplane::grpc::MetaTableRequest,::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse>* server_unary_streamer) = 0; - }; - template - class WithStreamedUnaryMethod_ComputeColumnStatistics : public BaseClass { - private: - void BaseClassMustBeDerivedFromService(const Service* /*service*/) {} - public: - WithStreamedUnaryMethod_ComputeColumnStatistics() { - ::grpc::Service::MarkMethodStreamed(44, - new ::grpc::internal::StreamedUnaryHandler< - ::io::deephaven::proto::backplane::grpc::ColumnStatisticsRequest, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse>( - [this](::grpc::ServerContext* context, - ::grpc::ServerUnaryStreamer< - ::io::deephaven::proto::backplane::grpc::ColumnStatisticsRequest, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse>* streamer) { - return this->StreamedComputeColumnStatistics(context, - streamer); - })); - } - ~WithStreamedUnaryMethod_ComputeColumnStatistics() override { - BaseClassMustBeDerivedFromService(this); - } - // disable regular version of this method - ::grpc::Status ComputeColumnStatistics(::grpc::ServerContext* /*context*/, const ::io::deephaven::proto::backplane::grpc::ColumnStatisticsRequest* /*request*/, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse* /*response*/) override { - abort(); - return ::grpc::Status(::grpc::StatusCode::UNIMPLEMENTED, ""); - } - // replace default version of method with streamed unary - virtual ::grpc::Status StreamedComputeColumnStatistics(::grpc::ServerContext* context, ::grpc::ServerUnaryStreamer< ::io::deephaven::proto::backplane::grpc::ColumnStatisticsRequest,::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse>* server_unary_streamer) = 0; - }; - typedef WithStreamedUnaryMethod_GetExportedTableCreationResponse > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > StreamedUnaryService; - template - class WithSplitStreamingMethod_Batch : public BaseClass { - private: - void BaseClassMustBeDerivedFromService(const Service* /*service*/) {} - public: - WithSplitStreamingMethod_Batch() { - ::grpc::Service::MarkMethodStreamed(40, - new ::grpc::internal::SplitServerStreamingHandler< - ::io::deephaven::proto::backplane::grpc::BatchTableRequest, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse>( - [this](::grpc::ServerContext* context, - ::grpc::ServerSplitStreamer< - ::io::deephaven::proto::backplane::grpc::BatchTableRequest, ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse>* streamer) { - return this->StreamedBatch(context, - streamer); - })); - } - ~WithSplitStreamingMethod_Batch() override { - BaseClassMustBeDerivedFromService(this); - } - // disable regular version of this method - ::grpc::Status Batch(::grpc::ServerContext* /*context*/, const ::io::deephaven::proto::backplane::grpc::BatchTableRequest* /*request*/, ::grpc::ServerWriter< ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse>* /*writer*/) override { - abort(); - return ::grpc::Status(::grpc::StatusCode::UNIMPLEMENTED, ""); - } - // replace default version of method with split streamed - virtual ::grpc::Status StreamedBatch(::grpc::ServerContext* context, ::grpc::ServerSplitStreamer< ::io::deephaven::proto::backplane::grpc::BatchTableRequest,::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse>* server_split_streamer) = 0; - }; - template - class WithSplitStreamingMethod_ExportedTableUpdates : public BaseClass { - private: - void BaseClassMustBeDerivedFromService(const Service* /*service*/) {} - public: - WithSplitStreamingMethod_ExportedTableUpdates() { - ::grpc::Service::MarkMethodStreamed(41, - new ::grpc::internal::SplitServerStreamingHandler< - ::io::deephaven::proto::backplane::grpc::ExportedTableUpdatesRequest, ::io::deephaven::proto::backplane::grpc::ExportedTableUpdateMessage>( - [this](::grpc::ServerContext* context, - ::grpc::ServerSplitStreamer< - ::io::deephaven::proto::backplane::grpc::ExportedTableUpdatesRequest, ::io::deephaven::proto::backplane::grpc::ExportedTableUpdateMessage>* streamer) { - return this->StreamedExportedTableUpdates(context, - streamer); - })); - } - ~WithSplitStreamingMethod_ExportedTableUpdates() override { - BaseClassMustBeDerivedFromService(this); - } - // disable regular version of this method - ::grpc::Status ExportedTableUpdates(::grpc::ServerContext* /*context*/, const ::io::deephaven::proto::backplane::grpc::ExportedTableUpdatesRequest* /*request*/, ::grpc::ServerWriter< ::io::deephaven::proto::backplane::grpc::ExportedTableUpdateMessage>* /*writer*/) override { - abort(); - return ::grpc::Status(::grpc::StatusCode::UNIMPLEMENTED, ""); - } - // replace default version of method with split streamed - virtual ::grpc::Status StreamedExportedTableUpdates(::grpc::ServerContext* context, ::grpc::ServerSplitStreamer< ::io::deephaven::proto::backplane::grpc::ExportedTableUpdatesRequest,::io::deephaven::proto::backplane::grpc::ExportedTableUpdateMessage>* server_split_streamer) = 0; - }; - typedef WithSplitStreamingMethod_Batch > SplitStreamedService; - typedef WithStreamedUnaryMethod_GetExportedTableCreationResponse > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > StreamedService; -}; - -} // namespace grpc -} // namespace backplane -} // namespace proto -} // namespace deephaven -} // namespace io - - -#endif // GRPC_deephaven_2fproto_2ftable_2eproto__INCLUDED diff --git a/cpp-client/deephaven/dhclient/proto/deephaven/proto/table.pb.cc b/cpp-client/deephaven/dhclient/proto/deephaven/proto/table.pb.cc deleted file mode 100644 index 690522a6519..00000000000 --- a/cpp-client/deephaven/dhclient/proto/deephaven/proto/table.pb.cc +++ /dev/null @@ -1,45621 +0,0 @@ -// 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" -// @@protoc_insertion_point(includes) - -// Must be included last. -#include "google/protobuf/port_def.inc" -PROTOBUF_PRAGMA_INIT_SEG -namespace _pb = ::google::protobuf; -namespace _pbi = ::google::protobuf::internal; -namespace _fl = ::google::protobuf::internal::field_layout; -namespace io { -namespace deephaven { -namespace proto { -namespace backplane { -namespace grpc { - -inline constexpr UpdateByWindowScale_UpdateByWindowTime::Impl_::Impl_( - ::_pbi::ConstantInitialized) noexcept - : column_( - &::google::protobuf::internal::fixed_address_empty_string, - ::_pbi::ConstantInitialized()), - window_{}, - _cached_size_{0}, - _oneof_case_{} {} - -template -PROTOBUF_CONSTEXPR UpdateByWindowScale_UpdateByWindowTime::UpdateByWindowScale_UpdateByWindowTime(::_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() {} - union { - UpdateByWindowScale_UpdateByWindowTime _instance; - }; -}; - -PROTOBUF_ATTRIBUTE_NO_DESTROY PROTOBUF_CONSTINIT - PROTOBUF_ATTRIBUTE_INIT_PRIORITY1 UpdateByWindowScale_UpdateByWindowTimeDefaultTypeInternal _UpdateByWindowScale_UpdateByWindowTime_default_instance_; - -inline constexpr UpdateByWindowScale_UpdateByWindowTicks::Impl_::Impl_( - ::_pbi::ConstantInitialized) noexcept - : ticks_{0}, - _cached_size_{0} {} - -template -PROTOBUF_CONSTEXPR UpdateByWindowScale_UpdateByWindowTicks::UpdateByWindowScale_UpdateByWindowTicks(::_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() {} - union { - UpdateByWindowScale_UpdateByWindowTicks _instance; - }; -}; - -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) -#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() {} - union { - UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByFill _instance; - }; -}; - -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) -#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() {} - union { - UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByCumulativeSum _instance; - }; -}; - -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) -#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() {} - union { - UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByCumulativeProduct _instance; - }; -}; - -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) -#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() {} - union { - UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByCumulativeMin _instance; - }; -}; - -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) -#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() {} - union { - UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByCumulativeMax _instance; - }; -}; - -PROTOBUF_ATTRIBUTE_NO_DESTROY PROTOBUF_CONSTINIT - PROTOBUF_ATTRIBUTE_INIT_PRIORITY1 UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByCumulativeMaxDefaultTypeInternal _UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByCumulativeMax_default_instance_; - -inline constexpr UpdateByDeltaOptions::Impl_::Impl_( - ::_pbi::ConstantInitialized) noexcept - : null_behavior_{static_cast< ::io::deephaven::proto::backplane::grpc::UpdateByNullBehavior >(0)}, - _cached_size_{0} {} - -template -PROTOBUF_CONSTEXPR UpdateByDeltaOptions::UpdateByDeltaOptions(::_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() {} - union { - UpdateByDeltaOptions _instance; - }; -}; - -PROTOBUF_ATTRIBUTE_NO_DESTROY PROTOBUF_CONSTINIT - PROTOBUF_ATTRIBUTE_INIT_PRIORITY1 UpdateByDeltaOptionsDefaultTypeInternal _UpdateByDeltaOptions_default_instance_; - -inline constexpr SortDescriptor::Impl_::Impl_( - ::_pbi::ConstantInitialized) noexcept - : column_name_( - &::google::protobuf::internal::fixed_address_empty_string, - ::_pbi::ConstantInitialized()), - is_absolute_{false}, - direction_{static_cast< ::io::deephaven::proto::backplane::grpc::SortDescriptor_SortDirection >(0)}, - _cached_size_{0} {} - -template -PROTOBUF_CONSTEXPR SortDescriptor::SortDescriptor(::_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() {} - union { - SortDescriptor _instance; - }; -}; - -PROTOBUF_ATTRIBUTE_NO_DESTROY PROTOBUF_CONSTINIT - PROTOBUF_ATTRIBUTE_INIT_PRIORITY1 SortDescriptorDefaultTypeInternal _SortDescriptor_default_instance_; - -inline constexpr SeekRowResponse::Impl_::Impl_( - ::_pbi::ConstantInitialized) noexcept - : result_row_{::int64_t{0}}, - _cached_size_{0} {} - -template -PROTOBUF_CONSTEXPR SeekRowResponse::SeekRowResponse(::_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() {} - union { - SeekRowResponse _instance; - }; -}; - -PROTOBUF_ATTRIBUTE_NO_DESTROY PROTOBUF_CONSTINIT - PROTOBUF_ATTRIBUTE_INIT_PRIORITY1 SeekRowResponseDefaultTypeInternal _SeekRowResponse_default_instance_; - -inline constexpr RunChartDownsampleRequest_ZoomRange::Impl_::Impl_( - ::_pbi::ConstantInitialized) noexcept - : _cached_size_{0}, - min_date_nanos_{::int64_t{0}}, - max_date_nanos_{::int64_t{0}} {} - -template -PROTOBUF_CONSTEXPR RunChartDownsampleRequest_ZoomRange::RunChartDownsampleRequest_ZoomRange(::_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() {} - union { - RunChartDownsampleRequest_ZoomRange _instance; - }; -}; - -PROTOBUF_ATTRIBUTE_NO_DESTROY PROTOBUF_CONSTINIT - PROTOBUF_ATTRIBUTE_INIT_PRIORITY1 RunChartDownsampleRequest_ZoomRangeDefaultTypeInternal _RunChartDownsampleRequest_ZoomRange_default_instance_; - -inline constexpr Reference::Impl_::Impl_( - ::_pbi::ConstantInitialized) noexcept - : column_name_( - &::google::protobuf::internal::fixed_address_empty_string, - ::_pbi::ConstantInitialized()), - _cached_size_{0} {} - -template -PROTOBUF_CONSTEXPR Reference::Reference(::_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() {} - union { - Reference _instance; - }; -}; - -PROTOBUF_ATTRIBUTE_NO_DESTROY PROTOBUF_CONSTINIT - PROTOBUF_ATTRIBUTE_INIT_PRIORITY1 ReferenceDefaultTypeInternal _Reference_default_instance_; - -inline constexpr MathContext::Impl_::Impl_( - ::_pbi::ConstantInitialized) noexcept - : precision_{0}, - rounding_mode_{static_cast< ::io::deephaven::proto::backplane::grpc::MathContext_RoundingMode >(0)}, - _cached_size_{0} {} - -template -PROTOBUF_CONSTEXPR MathContext::MathContext(::_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() {} - union { - MathContext _instance; - }; -}; - -PROTOBUF_ATTRIBUTE_NO_DESTROY PROTOBUF_CONSTINIT - PROTOBUF_ATTRIBUTE_INIT_PRIORITY1 MathContextDefaultTypeInternal _MathContext_default_instance_; - -inline constexpr Literal::Impl_::Impl_( - ::_pbi::ConstantInitialized) noexcept - : value_{}, - _cached_size_{0}, - _oneof_case_{} {} - -template -PROTOBUF_CONSTEXPR Literal::Literal(::_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() {} - union { - Literal _instance; - }; -}; - -PROTOBUF_ATTRIBUTE_NO_DESTROY PROTOBUF_CONSTINIT - PROTOBUF_ATTRIBUTE_INIT_PRIORITY1 LiteralDefaultTypeInternal _Literal_default_instance_; - 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() {} - union { - ExportedTableUpdatesRequest _instance; - }; -}; - -PROTOBUF_ATTRIBUTE_NO_DESTROY PROTOBUF_CONSTINIT - PROTOBUF_ATTRIBUTE_INIT_PRIORITY1 ExportedTableUpdatesRequestDefaultTypeInternal _ExportedTableUpdatesRequest_default_instance_; - -inline constexpr CreateInputTableRequest_InputTableKind_InMemoryKeyBacked::Impl_::Impl_( - ::_pbi::ConstantInitialized) noexcept - : key_columns_{}, - _cached_size_{0} {} - -template -PROTOBUF_CONSTEXPR CreateInputTableRequest_InputTableKind_InMemoryKeyBacked::CreateInputTableRequest_InputTableKind_InMemoryKeyBacked(::_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() {} - union { - CreateInputTableRequest_InputTableKind_InMemoryKeyBacked _instance; - }; -}; - -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) -#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() {} - union { - CreateInputTableRequest_InputTableKind_InMemoryAppendOnly _instance; - }; -}; - -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) -#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() {} - union { - CreateInputTableRequest_InputTableKind_Blink _instance; - }; -}; - -PROTOBUF_ATTRIBUTE_NO_DESTROY PROTOBUF_CONSTINIT - PROTOBUF_ATTRIBUTE_INIT_PRIORITY1 CreateInputTableRequest_InputTableKind_BlinkDefaultTypeInternal _CreateInputTableRequest_InputTableKind_Blink_default_instance_; - -inline constexpr ComboAggregateRequest_Aggregate::Impl_::Impl_( - ::_pbi::ConstantInitialized) noexcept - : match_pairs_{}, - column_name_( - &::google::protobuf::internal::fixed_address_empty_string, - ::_pbi::ConstantInitialized()), - type_{static_cast< ::io::deephaven::proto::backplane::grpc::ComboAggregateRequest_AggType >(0)}, - avg_median_{false}, - percentile_{0}, - _cached_size_{0} {} - -template -PROTOBUF_CONSTEXPR ComboAggregateRequest_Aggregate::ComboAggregateRequest_Aggregate(::_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() {} - union { - ComboAggregateRequest_Aggregate _instance; - }; -}; - -PROTOBUF_ATTRIBUTE_NO_DESTROY PROTOBUF_CONSTINIT - PROTOBUF_ATTRIBUTE_INIT_PRIORITY1 ComboAggregateRequest_AggregateDefaultTypeInternal _ComboAggregateRequest_Aggregate_default_instance_; - -inline constexpr Aggregation_AggregationRowKey::Impl_::Impl_( - ::_pbi::ConstantInitialized) noexcept - : column_name_( - &::google::protobuf::internal::fixed_address_empty_string, - ::_pbi::ConstantInitialized()), - _cached_size_{0} {} - -template -PROTOBUF_CONSTEXPR Aggregation_AggregationRowKey::Aggregation_AggregationRowKey(::_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() {} - union { - Aggregation_AggregationRowKey _instance; - }; -}; - -PROTOBUF_ATTRIBUTE_NO_DESTROY PROTOBUF_CONSTINIT - PROTOBUF_ATTRIBUTE_INIT_PRIORITY1 Aggregation_AggregationRowKeyDefaultTypeInternal _Aggregation_AggregationRowKey_default_instance_; - -inline constexpr Aggregation_AggregationPartition::Impl_::Impl_( - ::_pbi::ConstantInitialized) noexcept - : column_name_( - &::google::protobuf::internal::fixed_address_empty_string, - ::_pbi::ConstantInitialized()), - include_group_by_columns_{false}, - _cached_size_{0} {} - -template -PROTOBUF_CONSTEXPR Aggregation_AggregationPartition::Aggregation_AggregationPartition(::_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() {} - union { - Aggregation_AggregationPartition _instance; - }; -}; - -PROTOBUF_ATTRIBUTE_NO_DESTROY PROTOBUF_CONSTINIT - PROTOBUF_ATTRIBUTE_INIT_PRIORITY1 Aggregation_AggregationPartitionDefaultTypeInternal _Aggregation_AggregationPartition_default_instance_; - -inline constexpr Aggregation_AggregationCount::Impl_::Impl_( - ::_pbi::ConstantInitialized) noexcept - : column_name_( - &::google::protobuf::internal::fixed_address_empty_string, - ::_pbi::ConstantInitialized()), - _cached_size_{0} {} - -template -PROTOBUF_CONSTEXPR Aggregation_AggregationCount::Aggregation_AggregationCount(::_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() {} - union { - Aggregation_AggregationCount _instance; - }; -}; - -PROTOBUF_ATTRIBUTE_NO_DESTROY PROTOBUF_CONSTINIT - PROTOBUF_ATTRIBUTE_INIT_PRIORITY1 Aggregation_AggregationCountDefaultTypeInternal _Aggregation_AggregationCount_default_instance_; - -inline constexpr AggSpec_AggSpecWeighted::Impl_::Impl_( - ::_pbi::ConstantInitialized) noexcept - : weight_column_( - &::google::protobuf::internal::fixed_address_empty_string, - ::_pbi::ConstantInitialized()), - _cached_size_{0} {} - -template -PROTOBUF_CONSTEXPR AggSpec_AggSpecWeighted::AggSpec_AggSpecWeighted(::_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() {} - union { - AggSpec_AggSpecWeighted _instance; - }; -}; - -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) -#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() {} - union { - AggSpec_AggSpecVar _instance; - }; -}; - -PROTOBUF_ATTRIBUTE_NO_DESTROY PROTOBUF_CONSTINIT - PROTOBUF_ATTRIBUTE_INIT_PRIORITY1 AggSpec_AggSpecVarDefaultTypeInternal _AggSpec_AggSpecVar_default_instance_; - -inline constexpr AggSpec_AggSpecTDigest::Impl_::Impl_( - ::_pbi::ConstantInitialized) noexcept - : _cached_size_{0}, - compression_{0} {} - -template -PROTOBUF_CONSTEXPR AggSpec_AggSpecTDigest::AggSpec_AggSpecTDigest(::_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() {} - union { - AggSpec_AggSpecTDigest _instance; - }; -}; - -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) -#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() {} - union { - AggSpec_AggSpecSum _instance; - }; -}; - -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) -#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() {} - union { - AggSpec_AggSpecStd _instance; - }; -}; - -PROTOBUF_ATTRIBUTE_NO_DESTROY PROTOBUF_CONSTINIT - PROTOBUF_ATTRIBUTE_INIT_PRIORITY1 AggSpec_AggSpecStdDefaultTypeInternal _AggSpec_AggSpecStd_default_instance_; - -inline constexpr AggSpec_AggSpecSortedColumn::Impl_::Impl_( - ::_pbi::ConstantInitialized) noexcept - : column_name_( - &::google::protobuf::internal::fixed_address_empty_string, - ::_pbi::ConstantInitialized()), - _cached_size_{0} {} - -template -PROTOBUF_CONSTEXPR AggSpec_AggSpecSortedColumn::AggSpec_AggSpecSortedColumn(::_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() {} - union { - AggSpec_AggSpecSortedColumn _instance; - }; -}; - -PROTOBUF_ATTRIBUTE_NO_DESTROY PROTOBUF_CONSTINIT - PROTOBUF_ATTRIBUTE_INIT_PRIORITY1 AggSpec_AggSpecSortedColumnDefaultTypeInternal _AggSpec_AggSpecSortedColumn_default_instance_; - -inline constexpr AggSpec_AggSpecPercentile::Impl_::Impl_( - ::_pbi::ConstantInitialized) noexcept - : percentile_{0}, - average_evenly_divided_{false}, - _cached_size_{0} {} - -template -PROTOBUF_CONSTEXPR AggSpec_AggSpecPercentile::AggSpec_AggSpecPercentile(::_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() {} - union { - AggSpec_AggSpecPercentile _instance; - }; -}; - -PROTOBUF_ATTRIBUTE_NO_DESTROY PROTOBUF_CONSTINIT - PROTOBUF_ATTRIBUTE_INIT_PRIORITY1 AggSpec_AggSpecPercentileDefaultTypeInternal _AggSpec_AggSpecPercentile_default_instance_; - -inline constexpr AggSpec_AggSpecNonUniqueSentinel::Impl_::Impl_( - ::_pbi::ConstantInitialized) noexcept - : type_{}, - _cached_size_{0}, - _oneof_case_{} {} - -template -PROTOBUF_CONSTEXPR AggSpec_AggSpecNonUniqueSentinel::AggSpec_AggSpecNonUniqueSentinel(::_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() {} - union { - AggSpec_AggSpecNonUniqueSentinel _instance; - }; -}; - -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) -#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() {} - union { - AggSpec_AggSpecMin _instance; - }; -}; - -PROTOBUF_ATTRIBUTE_NO_DESTROY PROTOBUF_CONSTINIT - PROTOBUF_ATTRIBUTE_INIT_PRIORITY1 AggSpec_AggSpecMinDefaultTypeInternal _AggSpec_AggSpecMin_default_instance_; - -inline constexpr AggSpec_AggSpecMedian::Impl_::Impl_( - ::_pbi::ConstantInitialized) noexcept - : average_evenly_divided_{false}, - _cached_size_{0} {} - -template -PROTOBUF_CONSTEXPR AggSpec_AggSpecMedian::AggSpec_AggSpecMedian(::_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() {} - union { - AggSpec_AggSpecMedian _instance; - }; -}; - -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) -#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() {} - union { - AggSpec_AggSpecMax _instance; - }; -}; - -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) -#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() {} - union { - AggSpec_AggSpecLast _instance; - }; -}; - -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) -#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() {} - union { - AggSpec_AggSpecGroup _instance; - }; -}; - -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) -#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() {} - union { - AggSpec_AggSpecFreeze _instance; - }; -}; - -PROTOBUF_ATTRIBUTE_NO_DESTROY PROTOBUF_CONSTINIT - PROTOBUF_ATTRIBUTE_INIT_PRIORITY1 AggSpec_AggSpecFreezeDefaultTypeInternal _AggSpec_AggSpecFreeze_default_instance_; - -inline constexpr AggSpec_AggSpecFormula::Impl_::Impl_( - ::_pbi::ConstantInitialized) noexcept - : formula_( - &::google::protobuf::internal::fixed_address_empty_string, - ::_pbi::ConstantInitialized()), - param_token_( - &::google::protobuf::internal::fixed_address_empty_string, - ::_pbi::ConstantInitialized()), - _cached_size_{0} {} - -template -PROTOBUF_CONSTEXPR AggSpec_AggSpecFormula::AggSpec_AggSpecFormula(::_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() {} - union { - AggSpec_AggSpecFormula _instance; - }; -}; - -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) -#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() {} - union { - AggSpec_AggSpecFirst _instance; - }; -}; - -PROTOBUF_ATTRIBUTE_NO_DESTROY PROTOBUF_CONSTINIT - PROTOBUF_ATTRIBUTE_INIT_PRIORITY1 AggSpec_AggSpecFirstDefaultTypeInternal _AggSpec_AggSpecFirst_default_instance_; - -inline constexpr AggSpec_AggSpecDistinct::Impl_::Impl_( - ::_pbi::ConstantInitialized) noexcept - : include_nulls_{false}, - _cached_size_{0} {} - -template -PROTOBUF_CONSTEXPR AggSpec_AggSpecDistinct::AggSpec_AggSpecDistinct(::_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() {} - union { - AggSpec_AggSpecDistinct _instance; - }; -}; - -PROTOBUF_ATTRIBUTE_NO_DESTROY PROTOBUF_CONSTINIT - PROTOBUF_ATTRIBUTE_INIT_PRIORITY1 AggSpec_AggSpecDistinctDefaultTypeInternal _AggSpec_AggSpecDistinct_default_instance_; - -inline constexpr AggSpec_AggSpecCountDistinct::Impl_::Impl_( - ::_pbi::ConstantInitialized) noexcept - : count_nulls_{false}, - _cached_size_{0} {} - -template -PROTOBUF_CONSTEXPR AggSpec_AggSpecCountDistinct::AggSpec_AggSpecCountDistinct(::_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() {} - union { - AggSpec_AggSpecCountDistinct _instance; - }; -}; - -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) -#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() {} - union { - AggSpec_AggSpecAvg _instance; - }; -}; - -PROTOBUF_ATTRIBUTE_NO_DESTROY PROTOBUF_CONSTINIT - PROTOBUF_ATTRIBUTE_INIT_PRIORITY1 AggSpec_AggSpecAvgDefaultTypeInternal _AggSpec_AggSpecAvg_default_instance_; - -inline constexpr AggSpec_AggSpecApproximatePercentile::Impl_::Impl_( - ::_pbi::ConstantInitialized) noexcept - : _cached_size_{0}, - percentile_{0}, - compression_{0} {} - -template -PROTOBUF_CONSTEXPR AggSpec_AggSpecApproximatePercentile::AggSpec_AggSpecApproximatePercentile(::_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() {} - union { - AggSpec_AggSpecApproximatePercentile _instance; - }; -}; - -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) -#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() {} - union { - AggSpec_AggSpecAbsSum _instance; - }; -}; - -PROTOBUF_ATTRIBUTE_NO_DESTROY PROTOBUF_CONSTINIT - PROTOBUF_ATTRIBUTE_INIT_PRIORITY1 AggSpec_AggSpecAbsSumDefaultTypeInternal _AggSpec_AggSpecAbsSum_default_instance_; - -inline constexpr Value::Impl_::Impl_( - ::_pbi::ConstantInitialized) noexcept - : data_{}, - _cached_size_{0}, - _oneof_case_{} {} - -template -PROTOBUF_CONSTEXPR Value::Value(::_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() {} - union { - Value _instance; - }; -}; - -PROTOBUF_ATTRIBUTE_NO_DESTROY PROTOBUF_CONSTINIT - PROTOBUF_ATTRIBUTE_INIT_PRIORITY1 ValueDefaultTypeInternal _Value_default_instance_; - -inline constexpr UpdateByWindowScale::Impl_::Impl_( - ::_pbi::ConstantInitialized) noexcept - : type_{}, - _cached_size_{0}, - _oneof_case_{} {} - -template -PROTOBUF_CONSTEXPR UpdateByWindowScale::UpdateByWindowScale(::_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() {} - union { - UpdateByWindowScale _instance; - }; -}; - -PROTOBUF_ATTRIBUTE_NO_DESTROY PROTOBUF_CONSTINIT - PROTOBUF_ATTRIBUTE_INIT_PRIORITY1 UpdateByWindowScaleDefaultTypeInternal _UpdateByWindowScale_default_instance_; - -inline constexpr UpdateByRequest_UpdateByOptions::Impl_::Impl_( - ::_pbi::ConstantInitialized) noexcept - : _cached_size_{0}, - math_context_{nullptr}, - use_redirection_{false}, - chunk_capacity_{0}, - max_static_sparse_memory_overhead_{0}, - maximum_load_factor_{0}, - target_load_factor_{0}, - initial_hash_table_size_{0} {} - -template -PROTOBUF_CONSTEXPR UpdateByRequest_UpdateByOptions::UpdateByRequest_UpdateByOptions(::_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() {} - union { - UpdateByRequest_UpdateByOptions _instance; - }; -}; - -PROTOBUF_ATTRIBUTE_NO_DESTROY PROTOBUF_CONSTINIT - PROTOBUF_ATTRIBUTE_INIT_PRIORITY1 UpdateByRequest_UpdateByOptionsDefaultTypeInternal _UpdateByRequest_UpdateByOptions_default_instance_; - -inline constexpr UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByDelta::Impl_::Impl_( - ::_pbi::ConstantInitialized) noexcept - : _cached_size_{0}, - options_{nullptr} {} - -template -PROTOBUF_CONSTEXPR UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByDelta::UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByDelta(::_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() {} - union { - UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByDelta _instance; - }; -}; - -PROTOBUF_ATTRIBUTE_NO_DESTROY PROTOBUF_CONSTINIT - PROTOBUF_ATTRIBUTE_INIT_PRIORITY1 UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByDeltaDefaultTypeInternal _UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByDelta_default_instance_; - -inline constexpr UpdateByEmOptions::Impl_::Impl_( - ::_pbi::ConstantInitialized) noexcept - : _cached_size_{0}, - big_value_context_{nullptr}, - on_null_value_{static_cast< ::io::deephaven::proto::backplane::grpc::BadDataBehavior >(0)}, - on_nan_value_{static_cast< ::io::deephaven::proto::backplane::grpc::BadDataBehavior >(0)}, - on_null_time_{static_cast< ::io::deephaven::proto::backplane::grpc::BadDataBehavior >(0)}, - on_negative_delta_time_{static_cast< ::io::deephaven::proto::backplane::grpc::BadDataBehavior >(0)}, - on_zero_delta_time_{static_cast< ::io::deephaven::proto::backplane::grpc::BadDataBehavior >(0)} {} - -template -PROTOBUF_CONSTEXPR UpdateByEmOptions::UpdateByEmOptions(::_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() {} - union { - UpdateByEmOptions _instance; - }; -}; - -PROTOBUF_ATTRIBUTE_NO_DESTROY PROTOBUF_CONSTINIT - PROTOBUF_ATTRIBUTE_INIT_PRIORITY1 UpdateByEmOptionsDefaultTypeInternal _UpdateByEmOptions_default_instance_; - -inline constexpr TimeTableRequest::Impl_::Impl_( - ::_pbi::ConstantInitialized) noexcept - : _cached_size_{0}, - result_id_{nullptr}, - blink_table_{false}, - start_time_{}, - period_{}, - _oneof_case_{} {} - -template -PROTOBUF_CONSTEXPR TimeTableRequest::TimeTableRequest(::_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() {} - union { - TimeTableRequest _instance; - }; -}; - -PROTOBUF_ATTRIBUTE_NO_DESTROY PROTOBUF_CONSTINIT - PROTOBUF_ATTRIBUTE_INIT_PRIORITY1 TimeTableRequestDefaultTypeInternal _TimeTableRequest_default_instance_; - -inline constexpr TableReference::Impl_::Impl_( - ::_pbi::ConstantInitialized) noexcept - : ref_{}, - _cached_size_{0}, - _oneof_case_{} {} - -template -PROTOBUF_CONSTEXPR TableReference::TableReference(::_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() {} - union { - TableReference _instance; - }; -}; - -PROTOBUF_ATTRIBUTE_NO_DESTROY PROTOBUF_CONSTINIT - PROTOBUF_ATTRIBUTE_INIT_PRIORITY1 TableReferenceDefaultTypeInternal _TableReference_default_instance_; - -inline constexpr SeekRowRequest::Impl_::Impl_( - ::_pbi::ConstantInitialized) noexcept - : _cached_size_{0}, - column_name_( - &::google::protobuf::internal::fixed_address_empty_string, - ::_pbi::ConstantInitialized()), - source_id_{nullptr}, - seek_value_{nullptr}, - starting_row_{::int64_t{0}}, - insensitive_{false}, - contains_{false}, - is_backward_{false} {} - -template -PROTOBUF_CONSTEXPR SeekRowRequest::SeekRowRequest(::_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() {} - union { - SeekRowRequest _instance; - }; -}; - -PROTOBUF_ATTRIBUTE_NO_DESTROY PROTOBUF_CONSTINIT - PROTOBUF_ATTRIBUTE_INIT_PRIORITY1 SeekRowRequestDefaultTypeInternal _SeekRowRequest_default_instance_; - -inline constexpr SearchCondition::Impl_::Impl_( - ::_pbi::ConstantInitialized) noexcept - : optional_references_{}, - search_string_( - &::google::protobuf::internal::fixed_address_empty_string, - ::_pbi::ConstantInitialized()), - _cached_size_{0} {} - -template -PROTOBUF_CONSTEXPR SearchCondition::SearchCondition(::_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() {} - union { - SearchCondition _instance; - }; -}; - -PROTOBUF_ATTRIBUTE_NO_DESTROY PROTOBUF_CONSTINIT - PROTOBUF_ATTRIBUTE_INIT_PRIORITY1 SearchConditionDefaultTypeInternal _SearchCondition_default_instance_; - -inline constexpr MatchesCondition::Impl_::Impl_( - ::_pbi::ConstantInitialized) noexcept - : _cached_size_{0}, - regex_( - &::google::protobuf::internal::fixed_address_empty_string, - ::_pbi::ConstantInitialized()), - reference_{nullptr}, - case_sensitivity_{static_cast< ::io::deephaven::proto::backplane::grpc::CaseSensitivity >(0)}, - match_type_{static_cast< ::io::deephaven::proto::backplane::grpc::MatchType >(0)} {} - -template -PROTOBUF_CONSTEXPR MatchesCondition::MatchesCondition(::_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() {} - union { - MatchesCondition _instance; - }; -}; - -PROTOBUF_ATTRIBUTE_NO_DESTROY PROTOBUF_CONSTINIT - PROTOBUF_ATTRIBUTE_INIT_PRIORITY1 MatchesConditionDefaultTypeInternal _MatchesCondition_default_instance_; - -inline constexpr IsNullCondition::Impl_::Impl_( - ::_pbi::ConstantInitialized) noexcept - : _cached_size_{0}, - reference_{nullptr} {} - -template -PROTOBUF_CONSTEXPR IsNullCondition::IsNullCondition(::_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() {} - union { - IsNullCondition _instance; - }; -}; - -PROTOBUF_ATTRIBUTE_NO_DESTROY PROTOBUF_CONSTINIT - PROTOBUF_ATTRIBUTE_INIT_PRIORITY1 IsNullConditionDefaultTypeInternal _IsNullCondition_default_instance_; - -inline constexpr ExportedTableUpdateMessage::Impl_::Impl_( - ::_pbi::ConstantInitialized) noexcept - : _cached_size_{0}, - update_failure_message_( - &::google::protobuf::internal::fixed_address_empty_string, - ::_pbi::ConstantInitialized()), - export_id_{nullptr}, - size_{::int64_t{0}} {} - -template -PROTOBUF_CONSTEXPR ExportedTableUpdateMessage::ExportedTableUpdateMessage(::_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() {} - union { - ExportedTableUpdateMessage _instance; - }; -}; - -PROTOBUF_ATTRIBUTE_NO_DESTROY PROTOBUF_CONSTINIT - PROTOBUF_ATTRIBUTE_INIT_PRIORITY1 ExportedTableUpdateMessageDefaultTypeInternal _ExportedTableUpdateMessage_default_instance_; - -inline constexpr EmptyTableRequest::Impl_::Impl_( - ::_pbi::ConstantInitialized) noexcept - : _cached_size_{0}, - result_id_{nullptr}, - size_{::int64_t{0}} {} - -template -PROTOBUF_CONSTEXPR EmptyTableRequest::EmptyTableRequest(::_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() {} - union { - EmptyTableRequest _instance; - }; -}; - -PROTOBUF_ATTRIBUTE_NO_DESTROY PROTOBUF_CONSTINIT - PROTOBUF_ATTRIBUTE_INIT_PRIORITY1 EmptyTableRequestDefaultTypeInternal _EmptyTableRequest_default_instance_; - -inline constexpr CreateInputTableRequest_InputTableKind::Impl_::Impl_( - ::_pbi::ConstantInitialized) noexcept - : kind_{}, - _cached_size_{0}, - _oneof_case_{} {} - -template -PROTOBUF_CONSTEXPR CreateInputTableRequest_InputTableKind::CreateInputTableRequest_InputTableKind(::_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() {} - union { - CreateInputTableRequest_InputTableKind _instance; - }; -}; - -PROTOBUF_ATTRIBUTE_NO_DESTROY PROTOBUF_CONSTINIT - PROTOBUF_ATTRIBUTE_INIT_PRIORITY1 CreateInputTableRequest_InputTableKindDefaultTypeInternal _CreateInputTableRequest_InputTableKind_default_instance_; - -inline constexpr ContainsCondition::Impl_::Impl_( - ::_pbi::ConstantInitialized) noexcept - : _cached_size_{0}, - search_string_( - &::google::protobuf::internal::fixed_address_empty_string, - ::_pbi::ConstantInitialized()), - reference_{nullptr}, - case_sensitivity_{static_cast< ::io::deephaven::proto::backplane::grpc::CaseSensitivity >(0)}, - match_type_{static_cast< ::io::deephaven::proto::backplane::grpc::MatchType >(0)} {} - -template -PROTOBUF_CONSTEXPR ContainsCondition::ContainsCondition(::_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() {} - union { - ContainsCondition _instance; - }; -}; - -PROTOBUF_ATTRIBUTE_NO_DESTROY PROTOBUF_CONSTINIT - PROTOBUF_ATTRIBUTE_INIT_PRIORITY1 ContainsConditionDefaultTypeInternal _ContainsCondition_default_instance_; - -inline constexpr AggSpec_AggSpecUnique::Impl_::Impl_( - ::_pbi::ConstantInitialized) noexcept - : _cached_size_{0}, - non_unique_sentinel_{nullptr}, - include_nulls_{false} {} - -template -PROTOBUF_CONSTEXPR AggSpec_AggSpecUnique::AggSpec_AggSpecUnique(::_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() {} - union { - AggSpec_AggSpecUnique _instance; - }; -}; - -PROTOBUF_ATTRIBUTE_NO_DESTROY PROTOBUF_CONSTINIT - PROTOBUF_ATTRIBUTE_INIT_PRIORITY1 AggSpec_AggSpecUniqueDefaultTypeInternal _AggSpec_AggSpecUnique_default_instance_; - -inline constexpr AggSpec_AggSpecSorted::Impl_::Impl_( - ::_pbi::ConstantInitialized) noexcept - : columns_{}, - _cached_size_{0} {} - -template -PROTOBUF_CONSTEXPR AggSpec_AggSpecSorted::AggSpec_AggSpecSorted(::_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() {} - union { - AggSpec_AggSpecSorted _instance; - }; -}; - -PROTOBUF_ATTRIBUTE_NO_DESTROY PROTOBUF_CONSTINIT - PROTOBUF_ATTRIBUTE_INIT_PRIORITY1 AggSpec_AggSpecSortedDefaultTypeInternal _AggSpec_AggSpecSorted_default_instance_; - -inline constexpr WhereInRequest::Impl_::Impl_( - ::_pbi::ConstantInitialized) noexcept - : _cached_size_{0}, - columns_to_match_{}, - result_id_{nullptr}, - left_id_{nullptr}, - right_id_{nullptr}, - inverted_{false} {} - -template -PROTOBUF_CONSTEXPR WhereInRequest::WhereInRequest(::_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() {} - union { - WhereInRequest _instance; - }; -}; - -PROTOBUF_ATTRIBUTE_NO_DESTROY PROTOBUF_CONSTINIT - PROTOBUF_ATTRIBUTE_INIT_PRIORITY1 WhereInRequestDefaultTypeInternal _WhereInRequest_default_instance_; - -inline constexpr UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingWAvg::Impl_::Impl_( - ::_pbi::ConstantInitialized) noexcept - : _cached_size_{0}, - weight_column_( - &::google::protobuf::internal::fixed_address_empty_string, - ::_pbi::ConstantInitialized()), - reverse_window_scale_{nullptr}, - forward_window_scale_{nullptr} {} - -template -PROTOBUF_CONSTEXPR UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingWAvg::UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingWAvg(::_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() {} - union { - UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingWAvg _instance; - }; -}; - -PROTOBUF_ATTRIBUTE_NO_DESTROY PROTOBUF_CONSTINIT - PROTOBUF_ATTRIBUTE_INIT_PRIORITY1 UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingWAvgDefaultTypeInternal _UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingWAvg_default_instance_; - -inline constexpr UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingSum::Impl_::Impl_( - ::_pbi::ConstantInitialized) noexcept - : _cached_size_{0}, - reverse_window_scale_{nullptr}, - forward_window_scale_{nullptr} {} - -template -PROTOBUF_CONSTEXPR UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingSum::UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingSum(::_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() {} - union { - UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingSum _instance; - }; -}; - -PROTOBUF_ATTRIBUTE_NO_DESTROY PROTOBUF_CONSTINIT - PROTOBUF_ATTRIBUTE_INIT_PRIORITY1 UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingSumDefaultTypeInternal _UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingSum_default_instance_; - -inline constexpr UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingStd::Impl_::Impl_( - ::_pbi::ConstantInitialized) noexcept - : _cached_size_{0}, - reverse_window_scale_{nullptr}, - forward_window_scale_{nullptr} {} - -template -PROTOBUF_CONSTEXPR UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingStd::UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingStd(::_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() {} - union { - UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingStd _instance; - }; -}; - -PROTOBUF_ATTRIBUTE_NO_DESTROY PROTOBUF_CONSTINIT - PROTOBUF_ATTRIBUTE_INIT_PRIORITY1 UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingStdDefaultTypeInternal _UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingStd_default_instance_; - -inline constexpr UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingProduct::Impl_::Impl_( - ::_pbi::ConstantInitialized) noexcept - : _cached_size_{0}, - reverse_window_scale_{nullptr}, - forward_window_scale_{nullptr} {} - -template -PROTOBUF_CONSTEXPR UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingProduct::UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingProduct(::_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() {} - union { - UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingProduct _instance; - }; -}; - -PROTOBUF_ATTRIBUTE_NO_DESTROY PROTOBUF_CONSTINIT - PROTOBUF_ATTRIBUTE_INIT_PRIORITY1 UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingProductDefaultTypeInternal _UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingProduct_default_instance_; - -inline constexpr UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingMin::Impl_::Impl_( - ::_pbi::ConstantInitialized) noexcept - : _cached_size_{0}, - reverse_window_scale_{nullptr}, - forward_window_scale_{nullptr} {} - -template -PROTOBUF_CONSTEXPR UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingMin::UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingMin(::_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() {} - union { - UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingMin _instance; - }; -}; - -PROTOBUF_ATTRIBUTE_NO_DESTROY PROTOBUF_CONSTINIT - PROTOBUF_ATTRIBUTE_INIT_PRIORITY1 UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingMinDefaultTypeInternal _UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingMin_default_instance_; - -inline constexpr UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingMax::Impl_::Impl_( - ::_pbi::ConstantInitialized) noexcept - : _cached_size_{0}, - reverse_window_scale_{nullptr}, - forward_window_scale_{nullptr} {} - -template -PROTOBUF_CONSTEXPR UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingMax::UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingMax(::_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() {} - union { - UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingMax _instance; - }; -}; - -PROTOBUF_ATTRIBUTE_NO_DESTROY PROTOBUF_CONSTINIT - PROTOBUF_ATTRIBUTE_INIT_PRIORITY1 UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingMaxDefaultTypeInternal _UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingMax_default_instance_; - -inline constexpr UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingGroup::Impl_::Impl_( - ::_pbi::ConstantInitialized) noexcept - : _cached_size_{0}, - reverse_window_scale_{nullptr}, - forward_window_scale_{nullptr} {} - -template -PROTOBUF_CONSTEXPR UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingGroup::UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingGroup(::_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() {} - union { - UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingGroup _instance; - }; -}; - -PROTOBUF_ATTRIBUTE_NO_DESTROY PROTOBUF_CONSTINIT - PROTOBUF_ATTRIBUTE_INIT_PRIORITY1 UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingGroupDefaultTypeInternal _UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingGroup_default_instance_; - -inline constexpr UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingFormula::Impl_::Impl_( - ::_pbi::ConstantInitialized) noexcept - : _cached_size_{0}, - formula_( - &::google::protobuf::internal::fixed_address_empty_string, - ::_pbi::ConstantInitialized()), - param_token_( - &::google::protobuf::internal::fixed_address_empty_string, - ::_pbi::ConstantInitialized()), - reverse_window_scale_{nullptr}, - forward_window_scale_{nullptr} {} - -template -PROTOBUF_CONSTEXPR UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingFormula::UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingFormula(::_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() {} - union { - UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingFormula _instance; - }; -}; - -PROTOBUF_ATTRIBUTE_NO_DESTROY PROTOBUF_CONSTINIT - PROTOBUF_ATTRIBUTE_INIT_PRIORITY1 UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingFormulaDefaultTypeInternal _UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingFormula_default_instance_; - -inline constexpr UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingCount::Impl_::Impl_( - ::_pbi::ConstantInitialized) noexcept - : _cached_size_{0}, - reverse_window_scale_{nullptr}, - forward_window_scale_{nullptr} {} - -template -PROTOBUF_CONSTEXPR UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingCount::UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingCount(::_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() {} - union { - UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingCount _instance; - }; -}; - -PROTOBUF_ATTRIBUTE_NO_DESTROY PROTOBUF_CONSTINIT - PROTOBUF_ATTRIBUTE_INIT_PRIORITY1 UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingCountDefaultTypeInternal _UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingCount_default_instance_; - -inline constexpr UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingAvg::Impl_::Impl_( - ::_pbi::ConstantInitialized) noexcept - : _cached_size_{0}, - reverse_window_scale_{nullptr}, - forward_window_scale_{nullptr} {} - -template -PROTOBUF_CONSTEXPR UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingAvg::UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingAvg(::_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() {} - union { - UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingAvg _instance; - }; -}; - -PROTOBUF_ATTRIBUTE_NO_DESTROY PROTOBUF_CONSTINIT - PROTOBUF_ATTRIBUTE_INIT_PRIORITY1 UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingAvgDefaultTypeInternal _UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingAvg_default_instance_; - -inline constexpr UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByEms::Impl_::Impl_( - ::_pbi::ConstantInitialized) noexcept - : _cached_size_{0}, - options_{nullptr}, - window_scale_{nullptr} {} - -template -PROTOBUF_CONSTEXPR UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByEms::UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByEms(::_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() {} - union { - UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByEms _instance; - }; -}; - -PROTOBUF_ATTRIBUTE_NO_DESTROY PROTOBUF_CONSTINIT - PROTOBUF_ATTRIBUTE_INIT_PRIORITY1 UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByEmsDefaultTypeInternal _UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByEms_default_instance_; - -inline constexpr UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByEma::Impl_::Impl_( - ::_pbi::ConstantInitialized) noexcept - : _cached_size_{0}, - options_{nullptr}, - window_scale_{nullptr} {} - -template -PROTOBUF_CONSTEXPR UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByEma::UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByEma(::_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() {} - union { - UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByEma _instance; - }; -}; - -PROTOBUF_ATTRIBUTE_NO_DESTROY PROTOBUF_CONSTINIT - PROTOBUF_ATTRIBUTE_INIT_PRIORITY1 UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByEmaDefaultTypeInternal _UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByEma_default_instance_; - -inline constexpr UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByEmStd::Impl_::Impl_( - ::_pbi::ConstantInitialized) noexcept - : _cached_size_{0}, - options_{nullptr}, - window_scale_{nullptr} {} - -template -PROTOBUF_CONSTEXPR UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByEmStd::UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByEmStd(::_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() {} - union { - UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByEmStd _instance; - }; -}; - -PROTOBUF_ATTRIBUTE_NO_DESTROY PROTOBUF_CONSTINIT - PROTOBUF_ATTRIBUTE_INIT_PRIORITY1 UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByEmStdDefaultTypeInternal _UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByEmStd_default_instance_; - -inline constexpr UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByEmMin::Impl_::Impl_( - ::_pbi::ConstantInitialized) noexcept - : _cached_size_{0}, - options_{nullptr}, - window_scale_{nullptr} {} - -template -PROTOBUF_CONSTEXPR UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByEmMin::UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByEmMin(::_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() {} - union { - UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByEmMin _instance; - }; -}; - -PROTOBUF_ATTRIBUTE_NO_DESTROY PROTOBUF_CONSTINIT - PROTOBUF_ATTRIBUTE_INIT_PRIORITY1 UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByEmMinDefaultTypeInternal _UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByEmMin_default_instance_; - -inline constexpr UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByEmMax::Impl_::Impl_( - ::_pbi::ConstantInitialized) noexcept - : _cached_size_{0}, - options_{nullptr}, - window_scale_{nullptr} {} - -template -PROTOBUF_CONSTEXPR UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByEmMax::UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByEmMax(::_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() {} - union { - UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByEmMax _instance; - }; -}; - -PROTOBUF_ATTRIBUTE_NO_DESTROY PROTOBUF_CONSTINIT - PROTOBUF_ATTRIBUTE_INIT_PRIORITY1 UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByEmMaxDefaultTypeInternal _UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByEmMax_default_instance_; - -inline constexpr UnstructuredFilterTableRequest::Impl_::Impl_( - ::_pbi::ConstantInitialized) noexcept - : _cached_size_{0}, - filters_{}, - result_id_{nullptr}, - source_id_{nullptr} {} - -template -PROTOBUF_CONSTEXPR UnstructuredFilterTableRequest::UnstructuredFilterTableRequest(::_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() {} - union { - UnstructuredFilterTableRequest _instance; - }; -}; - -PROTOBUF_ATTRIBUTE_NO_DESTROY PROTOBUF_CONSTINIT - PROTOBUF_ATTRIBUTE_INIT_PRIORITY1 UnstructuredFilterTableRequestDefaultTypeInternal _UnstructuredFilterTableRequest_default_instance_; - -inline constexpr UngroupRequest::Impl_::Impl_( - ::_pbi::ConstantInitialized) noexcept - : _cached_size_{0}, - columns_to_ungroup_{}, - result_id_{nullptr}, - source_id_{nullptr}, - null_fill_{false} {} - -template -PROTOBUF_CONSTEXPR UngroupRequest::UngroupRequest(::_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() {} - union { - UngroupRequest _instance; - }; -}; - -PROTOBUF_ATTRIBUTE_NO_DESTROY PROTOBUF_CONSTINIT - PROTOBUF_ATTRIBUTE_INIT_PRIORITY1 UngroupRequestDefaultTypeInternal _UngroupRequest_default_instance_; - -inline constexpr SortTableRequest::Impl_::Impl_( - ::_pbi::ConstantInitialized) noexcept - : _cached_size_{0}, - sorts_{}, - result_id_{nullptr}, - source_id_{nullptr} {} - -template -PROTOBUF_CONSTEXPR SortTableRequest::SortTableRequest(::_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() {} - union { - SortTableRequest _instance; - }; -}; - -PROTOBUF_ATTRIBUTE_NO_DESTROY PROTOBUF_CONSTINIT - PROTOBUF_ATTRIBUTE_INIT_PRIORITY1 SortTableRequestDefaultTypeInternal _SortTableRequest_default_instance_; - -inline constexpr SnapshotWhenTableRequest::Impl_::Impl_( - ::_pbi::ConstantInitialized) noexcept - : _cached_size_{0}, - stamp_columns_{}, - result_id_{nullptr}, - base_id_{nullptr}, - trigger_id_{nullptr}, - initial_{false}, - incremental_{false}, - history_{false} {} - -template -PROTOBUF_CONSTEXPR SnapshotWhenTableRequest::SnapshotWhenTableRequest(::_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() {} - union { - SnapshotWhenTableRequest _instance; - }; -}; - -PROTOBUF_ATTRIBUTE_NO_DESTROY PROTOBUF_CONSTINIT - PROTOBUF_ATTRIBUTE_INIT_PRIORITY1 SnapshotWhenTableRequestDefaultTypeInternal _SnapshotWhenTableRequest_default_instance_; - -inline constexpr SnapshotTableRequest::Impl_::Impl_( - ::_pbi::ConstantInitialized) noexcept - : _cached_size_{0}, - result_id_{nullptr}, - source_id_{nullptr} {} - -template -PROTOBUF_CONSTEXPR SnapshotTableRequest::SnapshotTableRequest(::_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() {} - union { - SnapshotTableRequest _instance; - }; -}; - -PROTOBUF_ATTRIBUTE_NO_DESTROY PROTOBUF_CONSTINIT - PROTOBUF_ATTRIBUTE_INIT_PRIORITY1 SnapshotTableRequestDefaultTypeInternal _SnapshotTableRequest_default_instance_; - -inline constexpr SelectOrUpdateRequest::Impl_::Impl_( - ::_pbi::ConstantInitialized) noexcept - : _cached_size_{0}, - column_specs_{}, - result_id_{nullptr}, - source_id_{nullptr} {} - -template -PROTOBUF_CONSTEXPR SelectOrUpdateRequest::SelectOrUpdateRequest(::_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() {} - union { - SelectOrUpdateRequest _instance; - }; -}; - -PROTOBUF_ATTRIBUTE_NO_DESTROY PROTOBUF_CONSTINIT - PROTOBUF_ATTRIBUTE_INIT_PRIORITY1 SelectOrUpdateRequestDefaultTypeInternal _SelectOrUpdateRequest_default_instance_; - -inline constexpr SelectDistinctRequest::Impl_::Impl_( - ::_pbi::ConstantInitialized) noexcept - : _cached_size_{0}, - column_names_{}, - result_id_{nullptr}, - source_id_{nullptr} {} - -template -PROTOBUF_CONSTEXPR SelectDistinctRequest::SelectDistinctRequest(::_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() {} - union { - SelectDistinctRequest _instance; - }; -}; - -PROTOBUF_ATTRIBUTE_NO_DESTROY PROTOBUF_CONSTINIT - PROTOBUF_ATTRIBUTE_INIT_PRIORITY1 SelectDistinctRequestDefaultTypeInternal _SelectDistinctRequest_default_instance_; - -inline constexpr RunChartDownsampleRequest::Impl_::Impl_( - ::_pbi::ConstantInitialized) noexcept - : _cached_size_{0}, - y_column_names_{}, - x_column_name_( - &::google::protobuf::internal::fixed_address_empty_string, - ::_pbi::ConstantInitialized()), - result_id_{nullptr}, - source_id_{nullptr}, - zoom_range_{nullptr}, - pixel_count_{0} {} - -template -PROTOBUF_CONSTEXPR RunChartDownsampleRequest::RunChartDownsampleRequest(::_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() {} - union { - RunChartDownsampleRequest _instance; - }; -}; - -PROTOBUF_ATTRIBUTE_NO_DESTROY PROTOBUF_CONSTINIT - PROTOBUF_ATTRIBUTE_INIT_PRIORITY1 RunChartDownsampleRequestDefaultTypeInternal _RunChartDownsampleRequest_default_instance_; - -inline constexpr NaturalJoinTablesRequest::Impl_::Impl_( - ::_pbi::ConstantInitialized) noexcept - : _cached_size_{0}, - columns_to_match_{}, - columns_to_add_{}, - result_id_{nullptr}, - left_id_{nullptr}, - right_id_{nullptr} {} - -template -PROTOBUF_CONSTEXPR NaturalJoinTablesRequest::NaturalJoinTablesRequest(::_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() {} - union { - NaturalJoinTablesRequest _instance; - }; -}; - -PROTOBUF_ATTRIBUTE_NO_DESTROY PROTOBUF_CONSTINIT - PROTOBUF_ATTRIBUTE_INIT_PRIORITY1 NaturalJoinTablesRequestDefaultTypeInternal _NaturalJoinTablesRequest_default_instance_; - -inline constexpr MultiJoinInput::Impl_::Impl_( - ::_pbi::ConstantInitialized) noexcept - : _cached_size_{0}, - columns_to_match_{}, - columns_to_add_{}, - source_id_{nullptr} {} - -template -PROTOBUF_CONSTEXPR MultiJoinInput::MultiJoinInput(::_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() {} - union { - MultiJoinInput _instance; - }; -}; - -PROTOBUF_ATTRIBUTE_NO_DESTROY PROTOBUF_CONSTINIT - PROTOBUF_ATTRIBUTE_INIT_PRIORITY1 MultiJoinInputDefaultTypeInternal _MultiJoinInput_default_instance_; - -inline constexpr MetaTableRequest::Impl_::Impl_( - ::_pbi::ConstantInitialized) noexcept - : _cached_size_{0}, - result_id_{nullptr}, - source_id_{nullptr} {} - -template -PROTOBUF_CONSTEXPR MetaTableRequest::MetaTableRequest(::_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() {} - union { - MetaTableRequest _instance; - }; -}; - -PROTOBUF_ATTRIBUTE_NO_DESTROY PROTOBUF_CONSTINIT - PROTOBUF_ATTRIBUTE_INIT_PRIORITY1 MetaTableRequestDefaultTypeInternal _MetaTableRequest_default_instance_; - -inline constexpr MergeTablesRequest::Impl_::Impl_( - ::_pbi::ConstantInitialized) noexcept - : _cached_size_{0}, - source_ids_{}, - key_column_( - &::google::protobuf::internal::fixed_address_empty_string, - ::_pbi::ConstantInitialized()), - result_id_{nullptr} {} - -template -PROTOBUF_CONSTEXPR MergeTablesRequest::MergeTablesRequest(::_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() {} - union { - MergeTablesRequest _instance; - }; -}; - -PROTOBUF_ATTRIBUTE_NO_DESTROY PROTOBUF_CONSTINIT - PROTOBUF_ATTRIBUTE_INIT_PRIORITY1 MergeTablesRequestDefaultTypeInternal _MergeTablesRequest_default_instance_; - -inline constexpr LeftJoinTablesRequest::Impl_::Impl_( - ::_pbi::ConstantInitialized) noexcept - : _cached_size_{0}, - columns_to_match_{}, - columns_to_add_{}, - result_id_{nullptr}, - left_id_{nullptr}, - right_id_{nullptr} {} - -template -PROTOBUF_CONSTEXPR LeftJoinTablesRequest::LeftJoinTablesRequest(::_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() {} - union { - LeftJoinTablesRequest _instance; - }; -}; - -PROTOBUF_ATTRIBUTE_NO_DESTROY PROTOBUF_CONSTINIT - PROTOBUF_ATTRIBUTE_INIT_PRIORITY1 LeftJoinTablesRequestDefaultTypeInternal _LeftJoinTablesRequest_default_instance_; - -inline constexpr InvokeCondition::Impl_::Impl_( - ::_pbi::ConstantInitialized) noexcept - : _cached_size_{0}, - arguments_{}, - method_( - &::google::protobuf::internal::fixed_address_empty_string, - ::_pbi::ConstantInitialized()), - target_{nullptr} {} - -template -PROTOBUF_CONSTEXPR InvokeCondition::InvokeCondition(::_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() {} - union { - InvokeCondition _instance; - }; -}; - -PROTOBUF_ATTRIBUTE_NO_DESTROY PROTOBUF_CONSTINIT - PROTOBUF_ATTRIBUTE_INIT_PRIORITY1 InvokeConditionDefaultTypeInternal _InvokeCondition_default_instance_; - -inline constexpr InCondition::Impl_::Impl_( - ::_pbi::ConstantInitialized) noexcept - : _cached_size_{0}, - candidates_{}, - target_{nullptr}, - case_sensitivity_{static_cast< ::io::deephaven::proto::backplane::grpc::CaseSensitivity >(0)}, - match_type_{static_cast< ::io::deephaven::proto::backplane::grpc::MatchType >(0)} {} - -template -PROTOBUF_CONSTEXPR InCondition::InCondition(::_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() {} - union { - InCondition _instance; - }; -}; - -PROTOBUF_ATTRIBUTE_NO_DESTROY PROTOBUF_CONSTINIT - PROTOBUF_ATTRIBUTE_INIT_PRIORITY1 InConditionDefaultTypeInternal _InCondition_default_instance_; - -inline constexpr HeadOrTailRequest::Impl_::Impl_( - ::_pbi::ConstantInitialized) noexcept - : _cached_size_{0}, - result_id_{nullptr}, - source_id_{nullptr}, - num_rows_{::int64_t{0}} {} - -template -PROTOBUF_CONSTEXPR HeadOrTailRequest::HeadOrTailRequest(::_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() {} - union { - HeadOrTailRequest _instance; - }; -}; - -PROTOBUF_ATTRIBUTE_NO_DESTROY PROTOBUF_CONSTINIT - PROTOBUF_ATTRIBUTE_INIT_PRIORITY1 HeadOrTailRequestDefaultTypeInternal _HeadOrTailRequest_default_instance_; - -inline constexpr HeadOrTailByRequest::Impl_::Impl_( - ::_pbi::ConstantInitialized) noexcept - : _cached_size_{0}, - group_by_column_specs_{}, - result_id_{nullptr}, - source_id_{nullptr}, - num_rows_{::int64_t{0}} {} - -template -PROTOBUF_CONSTEXPR HeadOrTailByRequest::HeadOrTailByRequest(::_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() {} - union { - HeadOrTailByRequest _instance; - }; -}; - -PROTOBUF_ATTRIBUTE_NO_DESTROY PROTOBUF_CONSTINIT - PROTOBUF_ATTRIBUTE_INIT_PRIORITY1 HeadOrTailByRequestDefaultTypeInternal _HeadOrTailByRequest_default_instance_; - -inline constexpr FlattenRequest::Impl_::Impl_( - ::_pbi::ConstantInitialized) noexcept - : _cached_size_{0}, - result_id_{nullptr}, - source_id_{nullptr} {} - -template -PROTOBUF_CONSTEXPR FlattenRequest::FlattenRequest(::_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() {} - union { - FlattenRequest _instance; - }; -}; - -PROTOBUF_ATTRIBUTE_NO_DESTROY PROTOBUF_CONSTINIT - PROTOBUF_ATTRIBUTE_INIT_PRIORITY1 FlattenRequestDefaultTypeInternal _FlattenRequest_default_instance_; - -inline constexpr FetchTableRequest::Impl_::Impl_( - ::_pbi::ConstantInitialized) noexcept - : _cached_size_{0}, - source_id_{nullptr}, - result_id_{nullptr} {} - -template -PROTOBUF_CONSTEXPR FetchTableRequest::FetchTableRequest(::_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() {} - union { - FetchTableRequest _instance; - }; -}; - -PROTOBUF_ATTRIBUTE_NO_DESTROY PROTOBUF_CONSTINIT - PROTOBUF_ATTRIBUTE_INIT_PRIORITY1 FetchTableRequestDefaultTypeInternal _FetchTableRequest_default_instance_; - -inline constexpr ExportedTableCreationResponse::Impl_::Impl_( - ::_pbi::ConstantInitialized) noexcept - : _cached_size_{0}, - error_info_( - &::google::protobuf::internal::fixed_address_empty_string, - ::_pbi::ConstantInitialized()), - schema_header_( - &::google::protobuf::internal::fixed_address_empty_string, - ::_pbi::ConstantInitialized()), - result_id_{nullptr}, - size_{::int64_t{0}}, - success_{false}, - is_static_{false} {} - -template -PROTOBUF_CONSTEXPR ExportedTableCreationResponse::ExportedTableCreationResponse(::_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() {} - union { - ExportedTableCreationResponse _instance; - }; -}; - -PROTOBUF_ATTRIBUTE_NO_DESTROY PROTOBUF_CONSTINIT - PROTOBUF_ATTRIBUTE_INIT_PRIORITY1 ExportedTableCreationResponseDefaultTypeInternal _ExportedTableCreationResponse_default_instance_; - -inline constexpr ExactJoinTablesRequest::Impl_::Impl_( - ::_pbi::ConstantInitialized) noexcept - : _cached_size_{0}, - columns_to_match_{}, - columns_to_add_{}, - result_id_{nullptr}, - left_id_{nullptr}, - right_id_{nullptr} {} - -template -PROTOBUF_CONSTEXPR ExactJoinTablesRequest::ExactJoinTablesRequest(::_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() {} - union { - ExactJoinTablesRequest _instance; - }; -}; - -PROTOBUF_ATTRIBUTE_NO_DESTROY PROTOBUF_CONSTINIT - PROTOBUF_ATTRIBUTE_INIT_PRIORITY1 ExactJoinTablesRequestDefaultTypeInternal _ExactJoinTablesRequest_default_instance_; - -inline constexpr DropColumnsRequest::Impl_::Impl_( - ::_pbi::ConstantInitialized) noexcept - : _cached_size_{0}, - column_names_{}, - result_id_{nullptr}, - source_id_{nullptr} {} - -template -PROTOBUF_CONSTEXPR DropColumnsRequest::DropColumnsRequest(::_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() {} - union { - DropColumnsRequest _instance; - }; -}; - -PROTOBUF_ATTRIBUTE_NO_DESTROY PROTOBUF_CONSTINIT - PROTOBUF_ATTRIBUTE_INIT_PRIORITY1 DropColumnsRequestDefaultTypeInternal _DropColumnsRequest_default_instance_; - -inline constexpr CrossJoinTablesRequest::Impl_::Impl_( - ::_pbi::ConstantInitialized) noexcept - : _cached_size_{0}, - columns_to_match_{}, - columns_to_add_{}, - result_id_{nullptr}, - left_id_{nullptr}, - right_id_{nullptr}, - reserve_bits_{0} {} - -template -PROTOBUF_CONSTEXPR CrossJoinTablesRequest::CrossJoinTablesRequest(::_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() {} - union { - CrossJoinTablesRequest _instance; - }; -}; - -PROTOBUF_ATTRIBUTE_NO_DESTROY PROTOBUF_CONSTINIT - PROTOBUF_ATTRIBUTE_INIT_PRIORITY1 CrossJoinTablesRequestDefaultTypeInternal _CrossJoinTablesRequest_default_instance_; - -inline constexpr CreateInputTableRequest::Impl_::Impl_( - ::_pbi::ConstantInitialized) noexcept - : _cached_size_{0}, - result_id_{nullptr}, - kind_{nullptr}, - definition_{}, - _oneof_case_{} {} - -template -PROTOBUF_CONSTEXPR CreateInputTableRequest::CreateInputTableRequest(::_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() {} - union { - CreateInputTableRequest _instance; - }; -}; - -PROTOBUF_ATTRIBUTE_NO_DESTROY PROTOBUF_CONSTINIT - PROTOBUF_ATTRIBUTE_INIT_PRIORITY1 CreateInputTableRequestDefaultTypeInternal _CreateInputTableRequest_default_instance_; - -inline constexpr CompareCondition::Impl_::Impl_( - ::_pbi::ConstantInitialized) noexcept - : _cached_size_{0}, - lhs_{nullptr}, - rhs_{nullptr}, - operation_{static_cast< ::io::deephaven::proto::backplane::grpc::CompareCondition_CompareOperation >(0)}, - case_sensitivity_{static_cast< ::io::deephaven::proto::backplane::grpc::CaseSensitivity >(0)} {} - -template -PROTOBUF_CONSTEXPR CompareCondition::CompareCondition(::_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() {} - union { - CompareCondition _instance; - }; -}; - -PROTOBUF_ATTRIBUTE_NO_DESTROY PROTOBUF_CONSTINIT - PROTOBUF_ATTRIBUTE_INIT_PRIORITY1 CompareConditionDefaultTypeInternal _CompareCondition_default_instance_; - -inline constexpr ComboAggregateRequest::Impl_::Impl_( - ::_pbi::ConstantInitialized) noexcept - : _cached_size_{0}, - aggregates_{}, - group_by_columns_{}, - result_id_{nullptr}, - source_id_{nullptr}, - force_combo_{false} {} - -template -PROTOBUF_CONSTEXPR ComboAggregateRequest::ComboAggregateRequest(::_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() {} - union { - ComboAggregateRequest _instance; - }; -}; - -PROTOBUF_ATTRIBUTE_NO_DESTROY PROTOBUF_CONSTINIT - PROTOBUF_ATTRIBUTE_INIT_PRIORITY1 ComboAggregateRequestDefaultTypeInternal _ComboAggregateRequest_default_instance_; - -inline constexpr ColumnStatisticsRequest::Impl_::Impl_( - ::_pbi::ConstantInitialized) noexcept - : _cached_size_{0}, - column_name_( - &::google::protobuf::internal::fixed_address_empty_string, - ::_pbi::ConstantInitialized()), - result_id_{nullptr}, - source_id_{nullptr}, - unique_value_limit_{0} {} - -template -PROTOBUF_CONSTEXPR ColumnStatisticsRequest::ColumnStatisticsRequest(::_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() {} - union { - ColumnStatisticsRequest _instance; - }; -}; - -PROTOBUF_ATTRIBUTE_NO_DESTROY PROTOBUF_CONSTINIT - PROTOBUF_ATTRIBUTE_INIT_PRIORITY1 ColumnStatisticsRequestDefaultTypeInternal _ColumnStatisticsRequest_default_instance_; - -inline constexpr AsOfJoinTablesRequest::Impl_::Impl_( - ::_pbi::ConstantInitialized) noexcept - : _cached_size_{0}, - columns_to_match_{}, - columns_to_add_{}, - result_id_{nullptr}, - left_id_{nullptr}, - right_id_{nullptr}, - as_of_match_rule_{static_cast< ::io::deephaven::proto::backplane::grpc::AsOfJoinTablesRequest_MatchRule >(0)} {} - -template -PROTOBUF_CONSTEXPR AsOfJoinTablesRequest::AsOfJoinTablesRequest(::_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() {} - union { - AsOfJoinTablesRequest _instance; - }; -}; - -PROTOBUF_ATTRIBUTE_NO_DESTROY PROTOBUF_CONSTINIT - PROTOBUF_ATTRIBUTE_INIT_PRIORITY1 AsOfJoinTablesRequestDefaultTypeInternal _AsOfJoinTablesRequest_default_instance_; - -inline constexpr ApplyPreviewColumnsRequest::Impl_::Impl_( - ::_pbi::ConstantInitialized) noexcept - : _cached_size_{0}, - source_id_{nullptr}, - result_id_{nullptr} {} - -template -PROTOBUF_CONSTEXPR ApplyPreviewColumnsRequest::ApplyPreviewColumnsRequest(::_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() {} - union { - ApplyPreviewColumnsRequest _instance; - }; -}; - -PROTOBUF_ATTRIBUTE_NO_DESTROY PROTOBUF_CONSTINIT - PROTOBUF_ATTRIBUTE_INIT_PRIORITY1 ApplyPreviewColumnsRequestDefaultTypeInternal _ApplyPreviewColumnsRequest_default_instance_; - -inline constexpr AjRajTablesRequest::Impl_::Impl_( - ::_pbi::ConstantInitialized) noexcept - : _cached_size_{0}, - exact_match_columns_{}, - columns_to_add_{}, - as_of_column_( - &::google::protobuf::internal::fixed_address_empty_string, - ::_pbi::ConstantInitialized()), - result_id_{nullptr}, - left_id_{nullptr}, - right_id_{nullptr} {} - -template -PROTOBUF_CONSTEXPR AjRajTablesRequest::AjRajTablesRequest(::_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() {} - union { - AjRajTablesRequest _instance; - }; -}; - -PROTOBUF_ATTRIBUTE_NO_DESTROY PROTOBUF_CONSTINIT - PROTOBUF_ATTRIBUTE_INIT_PRIORITY1 AjRajTablesRequestDefaultTypeInternal _AjRajTablesRequest_default_instance_; - -inline constexpr AggSpec::Impl_::Impl_( - ::_pbi::ConstantInitialized) noexcept - : type_{}, - _cached_size_{0}, - _oneof_case_{} {} - -template -PROTOBUF_CONSTEXPR AggSpec::AggSpec(::_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() {} - union { - AggSpec _instance; - }; -}; - -PROTOBUF_ATTRIBUTE_NO_DESTROY PROTOBUF_CONSTINIT - PROTOBUF_ATTRIBUTE_INIT_PRIORITY1 AggSpecDefaultTypeInternal _AggSpec_default_instance_; - -inline constexpr UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec::Impl_::Impl_( - ::_pbi::ConstantInitialized) noexcept - : type_{}, - _cached_size_{0}, - _oneof_case_{} {} - -template -PROTOBUF_CONSTEXPR UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec::UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec(::_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() {} - union { - UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec _instance; - }; -}; - -PROTOBUF_ATTRIBUTE_NO_DESTROY PROTOBUF_CONSTINIT - PROTOBUF_ATTRIBUTE_INIT_PRIORITY1 UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpecDefaultTypeInternal _UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_default_instance_; - -inline constexpr MultiJoinTablesRequest::Impl_::Impl_( - ::_pbi::ConstantInitialized) noexcept - : _cached_size_{0}, - multi_join_inputs_{}, - result_id_{nullptr} {} - -template -PROTOBUF_CONSTEXPR MultiJoinTablesRequest::MultiJoinTablesRequest(::_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() {} - union { - MultiJoinTablesRequest _instance; - }; -}; - -PROTOBUF_ATTRIBUTE_NO_DESTROY PROTOBUF_CONSTINIT - PROTOBUF_ATTRIBUTE_INIT_PRIORITY1 MultiJoinTablesRequestDefaultTypeInternal _MultiJoinTablesRequest_default_instance_; - -inline constexpr AndCondition::Impl_::Impl_( - ::_pbi::ConstantInitialized) noexcept - : filters_{}, - _cached_size_{0} {} - -template -PROTOBUF_CONSTEXPR AndCondition::AndCondition(::_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() {} - union { - AndCondition _instance; - }; -}; - -PROTOBUF_ATTRIBUTE_NO_DESTROY PROTOBUF_CONSTINIT - PROTOBUF_ATTRIBUTE_INIT_PRIORITY1 AndConditionDefaultTypeInternal _AndCondition_default_instance_; - -inline constexpr Condition::Impl_::Impl_( - ::_pbi::ConstantInitialized) noexcept - : data_{}, - _cached_size_{0}, - _oneof_case_{} {} - -template -PROTOBUF_CONSTEXPR Condition::Condition(::_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() {} - union { - Condition _instance; - }; -}; - -PROTOBUF_ATTRIBUTE_NO_DESTROY PROTOBUF_CONSTINIT - PROTOBUF_ATTRIBUTE_INIT_PRIORITY1 ConditionDefaultTypeInternal _Condition_default_instance_; - -inline constexpr NotCondition::Impl_::Impl_( - ::_pbi::ConstantInitialized) noexcept - : _cached_size_{0}, - filter_{nullptr} {} - -template -PROTOBUF_CONSTEXPR NotCondition::NotCondition(::_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() {} - union { - NotCondition _instance; - }; -}; - -PROTOBUF_ATTRIBUTE_NO_DESTROY PROTOBUF_CONSTINIT - PROTOBUF_ATTRIBUTE_INIT_PRIORITY1 NotConditionDefaultTypeInternal _NotCondition_default_instance_; - -inline constexpr OrCondition::Impl_::Impl_( - ::_pbi::ConstantInitialized) noexcept - : filters_{}, - _cached_size_{0} {} - -template -PROTOBUF_CONSTEXPR OrCondition::OrCondition(::_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() {} - union { - OrCondition _instance; - }; -}; - -PROTOBUF_ATTRIBUTE_NO_DESTROY PROTOBUF_CONSTINIT - PROTOBUF_ATTRIBUTE_INIT_PRIORITY1 OrConditionDefaultTypeInternal _OrCondition_default_instance_; - -inline constexpr Aggregation_AggregationColumns::Impl_::Impl_( - ::_pbi::ConstantInitialized) noexcept - : _cached_size_{0}, - match_pairs_{}, - spec_{nullptr} {} - -template -PROTOBUF_CONSTEXPR Aggregation_AggregationColumns::Aggregation_AggregationColumns(::_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() {} - union { - Aggregation_AggregationColumns _instance; - }; -}; - -PROTOBUF_ATTRIBUTE_NO_DESTROY PROTOBUF_CONSTINIT - PROTOBUF_ATTRIBUTE_INIT_PRIORITY1 Aggregation_AggregationColumnsDefaultTypeInternal _Aggregation_AggregationColumns_default_instance_; - -inline constexpr AggregateAllRequest::Impl_::Impl_( - ::_pbi::ConstantInitialized) noexcept - : _cached_size_{0}, - group_by_columns_{}, - result_id_{nullptr}, - source_id_{nullptr}, - spec_{nullptr} {} - -template -PROTOBUF_CONSTEXPR AggregateAllRequest::AggregateAllRequest(::_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() {} - union { - AggregateAllRequest _instance; - }; -}; - -PROTOBUF_ATTRIBUTE_NO_DESTROY PROTOBUF_CONSTINIT - PROTOBUF_ATTRIBUTE_INIT_PRIORITY1 AggregateAllRequestDefaultTypeInternal _AggregateAllRequest_default_instance_; - -inline constexpr UpdateByRequest_UpdateByOperation_UpdateByColumn::Impl_::Impl_( - ::_pbi::ConstantInitialized) noexcept - : _cached_size_{0}, - match_pairs_{}, - spec_{nullptr} {} - -template -PROTOBUF_CONSTEXPR UpdateByRequest_UpdateByOperation_UpdateByColumn::UpdateByRequest_UpdateByOperation_UpdateByColumn(::_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() {} - union { - UpdateByRequest_UpdateByOperation_UpdateByColumn _instance; - }; -}; - -PROTOBUF_ATTRIBUTE_NO_DESTROY PROTOBUF_CONSTINIT - PROTOBUF_ATTRIBUTE_INIT_PRIORITY1 UpdateByRequest_UpdateByOperation_UpdateByColumnDefaultTypeInternal _UpdateByRequest_UpdateByOperation_UpdateByColumn_default_instance_; - -inline constexpr FilterTableRequest::Impl_::Impl_( - ::_pbi::ConstantInitialized) noexcept - : _cached_size_{0}, - filters_{}, - result_id_{nullptr}, - source_id_{nullptr} {} - -template -PROTOBUF_CONSTEXPR FilterTableRequest::FilterTableRequest(::_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() {} - union { - FilterTableRequest _instance; - }; -}; - -PROTOBUF_ATTRIBUTE_NO_DESTROY PROTOBUF_CONSTINIT - PROTOBUF_ATTRIBUTE_INIT_PRIORITY1 FilterTableRequestDefaultTypeInternal _FilterTableRequest_default_instance_; - -inline constexpr Aggregation::Impl_::Impl_( - ::_pbi::ConstantInitialized) noexcept - : type_{}, - _cached_size_{0}, - _oneof_case_{} {} - -template -PROTOBUF_CONSTEXPR Aggregation::Aggregation(::_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() {} - union { - Aggregation _instance; - }; -}; - -PROTOBUF_ATTRIBUTE_NO_DESTROY PROTOBUF_CONSTINIT - PROTOBUF_ATTRIBUTE_INIT_PRIORITY1 AggregationDefaultTypeInternal _Aggregation_default_instance_; - -inline constexpr UpdateByRequest_UpdateByOperation::Impl_::Impl_( - ::_pbi::ConstantInitialized) noexcept - : type_{}, - _cached_size_{0}, - _oneof_case_{} {} - -template -PROTOBUF_CONSTEXPR UpdateByRequest_UpdateByOperation::UpdateByRequest_UpdateByOperation(::_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() {} - union { - UpdateByRequest_UpdateByOperation _instance; - }; -}; - -PROTOBUF_ATTRIBUTE_NO_DESTROY PROTOBUF_CONSTINIT - PROTOBUF_ATTRIBUTE_INIT_PRIORITY1 UpdateByRequest_UpdateByOperationDefaultTypeInternal _UpdateByRequest_UpdateByOperation_default_instance_; - -inline constexpr RangeJoinTablesRequest::Impl_::Impl_( - ::_pbi::ConstantInitialized) noexcept - : _cached_size_{0}, - exact_match_columns_{}, - aggregations_{}, - left_start_column_( - &::google::protobuf::internal::fixed_address_empty_string, - ::_pbi::ConstantInitialized()), - right_range_column_( - &::google::protobuf::internal::fixed_address_empty_string, - ::_pbi::ConstantInitialized()), - left_end_column_( - &::google::protobuf::internal::fixed_address_empty_string, - ::_pbi::ConstantInitialized()), - range_match_( - &::google::protobuf::internal::fixed_address_empty_string, - ::_pbi::ConstantInitialized()), - result_id_{nullptr}, - left_id_{nullptr}, - right_id_{nullptr}, - range_start_rule_{static_cast< ::io::deephaven::proto::backplane::grpc::RangeJoinTablesRequest_RangeStartRule >(0)}, - range_end_rule_{static_cast< ::io::deephaven::proto::backplane::grpc::RangeJoinTablesRequest_RangeEndRule >(0)} {} - -template -PROTOBUF_CONSTEXPR RangeJoinTablesRequest::RangeJoinTablesRequest(::_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() {} - union { - RangeJoinTablesRequest _instance; - }; -}; - -PROTOBUF_ATTRIBUTE_NO_DESTROY PROTOBUF_CONSTINIT - PROTOBUF_ATTRIBUTE_INIT_PRIORITY1 RangeJoinTablesRequestDefaultTypeInternal _RangeJoinTablesRequest_default_instance_; - -inline constexpr AggregateRequest::Impl_::Impl_( - ::_pbi::ConstantInitialized) noexcept - : _cached_size_{0}, - aggregations_{}, - group_by_columns_{}, - result_id_{nullptr}, - source_id_{nullptr}, - initial_groups_id_{nullptr}, - preserve_empty_{false} {} - -template -PROTOBUF_CONSTEXPR AggregateRequest::AggregateRequest(::_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() {} - union { - AggregateRequest _instance; - }; -}; - -PROTOBUF_ATTRIBUTE_NO_DESTROY PROTOBUF_CONSTINIT - PROTOBUF_ATTRIBUTE_INIT_PRIORITY1 AggregateRequestDefaultTypeInternal _AggregateRequest_default_instance_; - -inline constexpr UpdateByRequest::Impl_::Impl_( - ::_pbi::ConstantInitialized) noexcept - : _cached_size_{0}, - operations_{}, - group_by_columns_{}, - result_id_{nullptr}, - source_id_{nullptr}, - options_{nullptr} {} - -template -PROTOBUF_CONSTEXPR UpdateByRequest::UpdateByRequest(::_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() {} - union { - UpdateByRequest _instance; - }; -}; - -PROTOBUF_ATTRIBUTE_NO_DESTROY PROTOBUF_CONSTINIT - PROTOBUF_ATTRIBUTE_INIT_PRIORITY1 UpdateByRequestDefaultTypeInternal _UpdateByRequest_default_instance_; - -inline constexpr BatchTableRequest_Operation::Impl_::Impl_( - ::_pbi::ConstantInitialized) noexcept - : op_{}, - _cached_size_{0}, - _oneof_case_{} {} - -template -PROTOBUF_CONSTEXPR BatchTableRequest_Operation::BatchTableRequest_Operation(::_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() {} - union { - BatchTableRequest_Operation _instance; - }; -}; - -PROTOBUF_ATTRIBUTE_NO_DESTROY PROTOBUF_CONSTINIT - PROTOBUF_ATTRIBUTE_INIT_PRIORITY1 BatchTableRequest_OperationDefaultTypeInternal _BatchTableRequest_Operation_default_instance_; - -inline constexpr BatchTableRequest::Impl_::Impl_( - ::_pbi::ConstantInitialized) noexcept - : ops_{}, - _cached_size_{0} {} - -template -PROTOBUF_CONSTEXPR BatchTableRequest::BatchTableRequest(::_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() {} - union { - BatchTableRequest _instance; - }; -}; - -PROTOBUF_ATTRIBUTE_NO_DESTROY PROTOBUF_CONSTINIT - PROTOBUF_ATTRIBUTE_INIT_PRIORITY1 BatchTableRequestDefaultTypeInternal _BatchTableRequest_default_instance_; -} // namespace grpc -} // namespace backplane -} // namespace proto -} // namespace deephaven -} // namespace io -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[] 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[] 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)}, - {43, 53, -1, sizeof(::io::deephaven::proto::backplane::grpc::ApplyPreviewColumnsRequest)}, - {55, -1, -1, sizeof(::io::deephaven::proto::backplane::grpc::ExportedTableUpdatesRequest)}, - {63, 74, -1, sizeof(::io::deephaven::proto::backplane::grpc::ExportedTableUpdateMessage)}, - {77, 87, -1, sizeof(::io::deephaven::proto::backplane::grpc::EmptyTableRequest)}, - {89, 105, -1, sizeof(::io::deephaven::proto::backplane::grpc::TimeTableRequest)}, - {111, 122, -1, sizeof(::io::deephaven::proto::backplane::grpc::SelectOrUpdateRequest)}, - {125, -1, -1, sizeof(::io::deephaven::proto::backplane::grpc::MathContext)}, - {135, -1, -1, sizeof(::io::deephaven::proto::backplane::grpc::UpdateByWindowScale_UpdateByWindowTicks)}, - {144, -1, -1, sizeof(::io::deephaven::proto::backplane::grpc::UpdateByWindowScale_UpdateByWindowTime)}, - {156, -1, -1, sizeof(::io::deephaven::proto::backplane::grpc::UpdateByWindowScale)}, - {167, 181, -1, sizeof(::io::deephaven::proto::backplane::grpc::UpdateByEmOptions)}, - {187, -1, -1, sizeof(::io::deephaven::proto::backplane::grpc::UpdateByDeltaOptions)}, - {196, 211, -1, sizeof(::io::deephaven::proto::backplane::grpc::UpdateByRequest_UpdateByOptions)}, - {218, -1, -1, sizeof(::io::deephaven::proto::backplane::grpc::UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByCumulativeSum)}, - {226, -1, -1, sizeof(::io::deephaven::proto::backplane::grpc::UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByCumulativeMin)}, - {234, -1, -1, sizeof(::io::deephaven::proto::backplane::grpc::UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByCumulativeMax)}, - {242, -1, -1, sizeof(::io::deephaven::proto::backplane::grpc::UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByCumulativeProduct)}, - {250, -1, -1, sizeof(::io::deephaven::proto::backplane::grpc::UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByFill)}, - {258, 268, -1, sizeof(::io::deephaven::proto::backplane::grpc::UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByEma)}, - {270, 280, -1, sizeof(::io::deephaven::proto::backplane::grpc::UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByEms)}, - {282, 292, -1, sizeof(::io::deephaven::proto::backplane::grpc::UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByEmMin)}, - {294, 304, -1, sizeof(::io::deephaven::proto::backplane::grpc::UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByEmMax)}, - {306, 316, -1, sizeof(::io::deephaven::proto::backplane::grpc::UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByEmStd)}, - {318, 327, -1, sizeof(::io::deephaven::proto::backplane::grpc::UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByDelta)}, - {328, 338, -1, sizeof(::io::deephaven::proto::backplane::grpc::UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingSum)}, - {340, 350, -1, sizeof(::io::deephaven::proto::backplane::grpc::UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingGroup)}, - {352, 362, -1, sizeof(::io::deephaven::proto::backplane::grpc::UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingAvg)}, - {364, 374, -1, sizeof(::io::deephaven::proto::backplane::grpc::UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingMin)}, - {376, 386, -1, sizeof(::io::deephaven::proto::backplane::grpc::UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingMax)}, - {388, 398, -1, sizeof(::io::deephaven::proto::backplane::grpc::UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingProduct)}, - {400, 410, -1, sizeof(::io::deephaven::proto::backplane::grpc::UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingCount)}, - {412, 422, -1, sizeof(::io::deephaven::proto::backplane::grpc::UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingStd)}, - {424, 435, -1, sizeof(::io::deephaven::proto::backplane::grpc::UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingWAvg)}, - {438, 450, -1, sizeof(::io::deephaven::proto::backplane::grpc::UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingFormula)}, - {454, -1, -1, sizeof(::io::deephaven::proto::backplane::grpc::UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec)}, - {484, 494, -1, sizeof(::io::deephaven::proto::backplane::grpc::UpdateByRequest_UpdateByOperation_UpdateByColumn)}, - {496, -1, -1, sizeof(::io::deephaven::proto::backplane::grpc::UpdateByRequest_UpdateByOperation)}, - {506, 519, -1, sizeof(::io::deephaven::proto::backplane::grpc::UpdateByRequest)}, - {524, 535, -1, sizeof(::io::deephaven::proto::backplane::grpc::SelectDistinctRequest)}, - {538, 549, -1, sizeof(::io::deephaven::proto::backplane::grpc::DropColumnsRequest)}, - {552, 563, -1, sizeof(::io::deephaven::proto::backplane::grpc::UnstructuredFilterTableRequest)}, - {566, 577, -1, sizeof(::io::deephaven::proto::backplane::grpc::HeadOrTailRequest)}, - {580, 592, -1, sizeof(::io::deephaven::proto::backplane::grpc::HeadOrTailByRequest)}, - {596, 608, -1, sizeof(::io::deephaven::proto::backplane::grpc::UngroupRequest)}, - {612, 623, -1, sizeof(::io::deephaven::proto::backplane::grpc::MergeTablesRequest)}, - {626, 636, -1, sizeof(::io::deephaven::proto::backplane::grpc::SnapshotTableRequest)}, - {638, 653, -1, sizeof(::io::deephaven::proto::backplane::grpc::SnapshotWhenTableRequest)}, - {660, 674, -1, sizeof(::io::deephaven::proto::backplane::grpc::CrossJoinTablesRequest)}, - {680, 693, -1, sizeof(::io::deephaven::proto::backplane::grpc::NaturalJoinTablesRequest)}, - {698, 711, -1, sizeof(::io::deephaven::proto::backplane::grpc::ExactJoinTablesRequest)}, - {716, 729, -1, sizeof(::io::deephaven::proto::backplane::grpc::LeftJoinTablesRequest)}, - {734, 748, -1, sizeof(::io::deephaven::proto::backplane::grpc::AsOfJoinTablesRequest)}, - {754, 768, -1, sizeof(::io::deephaven::proto::backplane::grpc::AjRajTablesRequest)}, - {774, 785, -1, sizeof(::io::deephaven::proto::backplane::grpc::MultiJoinInput)}, - {788, 798, -1, sizeof(::io::deephaven::proto::backplane::grpc::MultiJoinTablesRequest)}, - {800, 819, -1, sizeof(::io::deephaven::proto::backplane::grpc::RangeJoinTablesRequest)}, - {830, -1, -1, sizeof(::io::deephaven::proto::backplane::grpc::ComboAggregateRequest_Aggregate)}, - {843, 856, -1, sizeof(::io::deephaven::proto::backplane::grpc::ComboAggregateRequest)}, - {861, 873, -1, sizeof(::io::deephaven::proto::backplane::grpc::AggregateAllRequest)}, - {877, 887, -1, sizeof(::io::deephaven::proto::backplane::grpc::AggSpec_AggSpecApproximatePercentile)}, - {889, -1, -1, sizeof(::io::deephaven::proto::backplane::grpc::AggSpec_AggSpecCountDistinct)}, - {898, -1, -1, sizeof(::io::deephaven::proto::backplane::grpc::AggSpec_AggSpecDistinct)}, - {907, -1, -1, sizeof(::io::deephaven::proto::backplane::grpc::AggSpec_AggSpecFormula)}, - {917, -1, -1, sizeof(::io::deephaven::proto::backplane::grpc::AggSpec_AggSpecMedian)}, - {926, -1, -1, sizeof(::io::deephaven::proto::backplane::grpc::AggSpec_AggSpecPercentile)}, - {936, -1, -1, sizeof(::io::deephaven::proto::backplane::grpc::AggSpec_AggSpecSorted)}, - {945, -1, -1, sizeof(::io::deephaven::proto::backplane::grpc::AggSpec_AggSpecSortedColumn)}, - {954, 963, -1, sizeof(::io::deephaven::proto::backplane::grpc::AggSpec_AggSpecTDigest)}, - {964, 974, -1, sizeof(::io::deephaven::proto::backplane::grpc::AggSpec_AggSpecUnique)}, - {976, -1, -1, sizeof(::io::deephaven::proto::backplane::grpc::AggSpec_AggSpecNonUniqueSentinel)}, - {995, -1, -1, sizeof(::io::deephaven::proto::backplane::grpc::AggSpec_AggSpecWeighted)}, - {1004, -1, -1, sizeof(::io::deephaven::proto::backplane::grpc::AggSpec_AggSpecAbsSum)}, - {1012, -1, -1, sizeof(::io::deephaven::proto::backplane::grpc::AggSpec_AggSpecAvg)}, - {1020, -1, -1, sizeof(::io::deephaven::proto::backplane::grpc::AggSpec_AggSpecFirst)}, - {1028, -1, -1, sizeof(::io::deephaven::proto::backplane::grpc::AggSpec_AggSpecFreeze)}, - {1036, -1, -1, sizeof(::io::deephaven::proto::backplane::grpc::AggSpec_AggSpecGroup)}, - {1044, -1, -1, sizeof(::io::deephaven::proto::backplane::grpc::AggSpec_AggSpecLast)}, - {1052, -1, -1, sizeof(::io::deephaven::proto::backplane::grpc::AggSpec_AggSpecMax)}, - {1060, -1, -1, sizeof(::io::deephaven::proto::backplane::grpc::AggSpec_AggSpecMin)}, - {1068, -1, -1, sizeof(::io::deephaven::proto::backplane::grpc::AggSpec_AggSpecStd)}, - {1076, -1, -1, sizeof(::io::deephaven::proto::backplane::grpc::AggSpec_AggSpecSum)}, - {1084, -1, -1, sizeof(::io::deephaven::proto::backplane::grpc::AggSpec_AggSpecVar)}, - {1092, -1, -1, sizeof(::io::deephaven::proto::backplane::grpc::AggSpec)}, - {1124, 1138, -1, sizeof(::io::deephaven::proto::backplane::grpc::AggregateRequest)}, - {1144, 1154, -1, sizeof(::io::deephaven::proto::backplane::grpc::Aggregation_AggregationColumns)}, - {1156, -1, -1, sizeof(::io::deephaven::proto::backplane::grpc::Aggregation_AggregationCount)}, - {1165, -1, -1, sizeof(::io::deephaven::proto::backplane::grpc::Aggregation_AggregationRowKey)}, - {1174, -1, -1, sizeof(::io::deephaven::proto::backplane::grpc::Aggregation_AggregationPartition)}, - {1184, -1, -1, sizeof(::io::deephaven::proto::backplane::grpc::Aggregation)}, - {1198, -1, -1, sizeof(::io::deephaven::proto::backplane::grpc::SortDescriptor)}, - {1209, 1220, -1, sizeof(::io::deephaven::proto::backplane::grpc::SortTableRequest)}, - {1223, 1234, -1, sizeof(::io::deephaven::proto::backplane::grpc::FilterTableRequest)}, - {1237, 1252, -1, sizeof(::io::deephaven::proto::backplane::grpc::SeekRowRequest)}, - {1259, -1, -1, sizeof(::io::deephaven::proto::backplane::grpc::SeekRowResponse)}, - {1268, -1, -1, sizeof(::io::deephaven::proto::backplane::grpc::Reference)}, - {1277, -1, -1, sizeof(::io::deephaven::proto::backplane::grpc::Literal)}, - {1291, -1, -1, sizeof(::io::deephaven::proto::backplane::grpc::Value)}, - {1302, -1, -1, sizeof(::io::deephaven::proto::backplane::grpc::Condition)}, - {1321, -1, -1, sizeof(::io::deephaven::proto::backplane::grpc::AndCondition)}, - {1330, -1, -1, sizeof(::io::deephaven::proto::backplane::grpc::OrCondition)}, - {1339, 1348, -1, sizeof(::io::deephaven::proto::backplane::grpc::NotCondition)}, - {1349, 1361, -1, sizeof(::io::deephaven::proto::backplane::grpc::CompareCondition)}, - {1365, 1377, -1, sizeof(::io::deephaven::proto::backplane::grpc::InCondition)}, - {1381, 1392, -1, sizeof(::io::deephaven::proto::backplane::grpc::InvokeCondition)}, - {1395, 1404, -1, sizeof(::io::deephaven::proto::backplane::grpc::IsNullCondition)}, - {1405, 1417, -1, sizeof(::io::deephaven::proto::backplane::grpc::MatchesCondition)}, - {1421, 1433, -1, sizeof(::io::deephaven::proto::backplane::grpc::ContainsCondition)}, - {1437, -1, -1, sizeof(::io::deephaven::proto::backplane::grpc::SearchCondition)}, - {1447, 1457, -1, sizeof(::io::deephaven::proto::backplane::grpc::FlattenRequest)}, - {1459, 1469, -1, sizeof(::io::deephaven::proto::backplane::grpc::MetaTableRequest)}, - {1471, 1481, -1, sizeof(::io::deephaven::proto::backplane::grpc::RunChartDownsampleRequest_ZoomRange)}, - {1483, 1497, -1, sizeof(::io::deephaven::proto::backplane::grpc::RunChartDownsampleRequest)}, - {1503, -1, -1, sizeof(::io::deephaven::proto::backplane::grpc::CreateInputTableRequest_InputTableKind_InMemoryAppendOnly)}, - {1511, -1, -1, sizeof(::io::deephaven::proto::backplane::grpc::CreateInputTableRequest_InputTableKind_InMemoryKeyBacked)}, - {1520, -1, -1, sizeof(::io::deephaven::proto::backplane::grpc::CreateInputTableRequest_InputTableKind_Blink)}, - {1528, -1, -1, sizeof(::io::deephaven::proto::backplane::grpc::CreateInputTableRequest_InputTableKind)}, - {1540, 1553, -1, sizeof(::io::deephaven::proto::backplane::grpc::CreateInputTableRequest)}, - {1557, 1570, -1, sizeof(::io::deephaven::proto::backplane::grpc::WhereInRequest)}, - {1575, 1587, -1, sizeof(::io::deephaven::proto::backplane::grpc::ColumnStatisticsRequest)}, - {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, - &::io::deephaven::proto::backplane::grpc::_FetchTableRequest_default_instance_._instance, - &::io::deephaven::proto::backplane::grpc::_ApplyPreviewColumnsRequest_default_instance_._instance, - &::io::deephaven::proto::backplane::grpc::_ExportedTableUpdatesRequest_default_instance_._instance, - &::io::deephaven::proto::backplane::grpc::_ExportedTableUpdateMessage_default_instance_._instance, - &::io::deephaven::proto::backplane::grpc::_EmptyTableRequest_default_instance_._instance, - &::io::deephaven::proto::backplane::grpc::_TimeTableRequest_default_instance_._instance, - &::io::deephaven::proto::backplane::grpc::_SelectOrUpdateRequest_default_instance_._instance, - &::io::deephaven::proto::backplane::grpc::_MathContext_default_instance_._instance, - &::io::deephaven::proto::backplane::grpc::_UpdateByWindowScale_UpdateByWindowTicks_default_instance_._instance, - &::io::deephaven::proto::backplane::grpc::_UpdateByWindowScale_UpdateByWindowTime_default_instance_._instance, - &::io::deephaven::proto::backplane::grpc::_UpdateByWindowScale_default_instance_._instance, - &::io::deephaven::proto::backplane::grpc::_UpdateByEmOptions_default_instance_._instance, - &::io::deephaven::proto::backplane::grpc::_UpdateByDeltaOptions_default_instance_._instance, - &::io::deephaven::proto::backplane::grpc::_UpdateByRequest_UpdateByOptions_default_instance_._instance, - &::io::deephaven::proto::backplane::grpc::_UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByCumulativeSum_default_instance_._instance, - &::io::deephaven::proto::backplane::grpc::_UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByCumulativeMin_default_instance_._instance, - &::io::deephaven::proto::backplane::grpc::_UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByCumulativeMax_default_instance_._instance, - &::io::deephaven::proto::backplane::grpc::_UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByCumulativeProduct_default_instance_._instance, - &::io::deephaven::proto::backplane::grpc::_UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByFill_default_instance_._instance, - &::io::deephaven::proto::backplane::grpc::_UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByEma_default_instance_._instance, - &::io::deephaven::proto::backplane::grpc::_UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByEms_default_instance_._instance, - &::io::deephaven::proto::backplane::grpc::_UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByEmMin_default_instance_._instance, - &::io::deephaven::proto::backplane::grpc::_UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByEmMax_default_instance_._instance, - &::io::deephaven::proto::backplane::grpc::_UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByEmStd_default_instance_._instance, - &::io::deephaven::proto::backplane::grpc::_UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByDelta_default_instance_._instance, - &::io::deephaven::proto::backplane::grpc::_UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingSum_default_instance_._instance, - &::io::deephaven::proto::backplane::grpc::_UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingGroup_default_instance_._instance, - &::io::deephaven::proto::backplane::grpc::_UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingAvg_default_instance_._instance, - &::io::deephaven::proto::backplane::grpc::_UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingMin_default_instance_._instance, - &::io::deephaven::proto::backplane::grpc::_UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingMax_default_instance_._instance, - &::io::deephaven::proto::backplane::grpc::_UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingProduct_default_instance_._instance, - &::io::deephaven::proto::backplane::grpc::_UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingCount_default_instance_._instance, - &::io::deephaven::proto::backplane::grpc::_UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingStd_default_instance_._instance, - &::io::deephaven::proto::backplane::grpc::_UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingWAvg_default_instance_._instance, - &::io::deephaven::proto::backplane::grpc::_UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingFormula_default_instance_._instance, - &::io::deephaven::proto::backplane::grpc::_UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_default_instance_._instance, - &::io::deephaven::proto::backplane::grpc::_UpdateByRequest_UpdateByOperation_UpdateByColumn_default_instance_._instance, - &::io::deephaven::proto::backplane::grpc::_UpdateByRequest_UpdateByOperation_default_instance_._instance, - &::io::deephaven::proto::backplane::grpc::_UpdateByRequest_default_instance_._instance, - &::io::deephaven::proto::backplane::grpc::_SelectDistinctRequest_default_instance_._instance, - &::io::deephaven::proto::backplane::grpc::_DropColumnsRequest_default_instance_._instance, - &::io::deephaven::proto::backplane::grpc::_UnstructuredFilterTableRequest_default_instance_._instance, - &::io::deephaven::proto::backplane::grpc::_HeadOrTailRequest_default_instance_._instance, - &::io::deephaven::proto::backplane::grpc::_HeadOrTailByRequest_default_instance_._instance, - &::io::deephaven::proto::backplane::grpc::_UngroupRequest_default_instance_._instance, - &::io::deephaven::proto::backplane::grpc::_MergeTablesRequest_default_instance_._instance, - &::io::deephaven::proto::backplane::grpc::_SnapshotTableRequest_default_instance_._instance, - &::io::deephaven::proto::backplane::grpc::_SnapshotWhenTableRequest_default_instance_._instance, - &::io::deephaven::proto::backplane::grpc::_CrossJoinTablesRequest_default_instance_._instance, - &::io::deephaven::proto::backplane::grpc::_NaturalJoinTablesRequest_default_instance_._instance, - &::io::deephaven::proto::backplane::grpc::_ExactJoinTablesRequest_default_instance_._instance, - &::io::deephaven::proto::backplane::grpc::_LeftJoinTablesRequest_default_instance_._instance, - &::io::deephaven::proto::backplane::grpc::_AsOfJoinTablesRequest_default_instance_._instance, - &::io::deephaven::proto::backplane::grpc::_AjRajTablesRequest_default_instance_._instance, - &::io::deephaven::proto::backplane::grpc::_MultiJoinInput_default_instance_._instance, - &::io::deephaven::proto::backplane::grpc::_MultiJoinTablesRequest_default_instance_._instance, - &::io::deephaven::proto::backplane::grpc::_RangeJoinTablesRequest_default_instance_._instance, - &::io::deephaven::proto::backplane::grpc::_ComboAggregateRequest_Aggregate_default_instance_._instance, - &::io::deephaven::proto::backplane::grpc::_ComboAggregateRequest_default_instance_._instance, - &::io::deephaven::proto::backplane::grpc::_AggregateAllRequest_default_instance_._instance, - &::io::deephaven::proto::backplane::grpc::_AggSpec_AggSpecApproximatePercentile_default_instance_._instance, - &::io::deephaven::proto::backplane::grpc::_AggSpec_AggSpecCountDistinct_default_instance_._instance, - &::io::deephaven::proto::backplane::grpc::_AggSpec_AggSpecDistinct_default_instance_._instance, - &::io::deephaven::proto::backplane::grpc::_AggSpec_AggSpecFormula_default_instance_._instance, - &::io::deephaven::proto::backplane::grpc::_AggSpec_AggSpecMedian_default_instance_._instance, - &::io::deephaven::proto::backplane::grpc::_AggSpec_AggSpecPercentile_default_instance_._instance, - &::io::deephaven::proto::backplane::grpc::_AggSpec_AggSpecSorted_default_instance_._instance, - &::io::deephaven::proto::backplane::grpc::_AggSpec_AggSpecSortedColumn_default_instance_._instance, - &::io::deephaven::proto::backplane::grpc::_AggSpec_AggSpecTDigest_default_instance_._instance, - &::io::deephaven::proto::backplane::grpc::_AggSpec_AggSpecUnique_default_instance_._instance, - &::io::deephaven::proto::backplane::grpc::_AggSpec_AggSpecNonUniqueSentinel_default_instance_._instance, - &::io::deephaven::proto::backplane::grpc::_AggSpec_AggSpecWeighted_default_instance_._instance, - &::io::deephaven::proto::backplane::grpc::_AggSpec_AggSpecAbsSum_default_instance_._instance, - &::io::deephaven::proto::backplane::grpc::_AggSpec_AggSpecAvg_default_instance_._instance, - &::io::deephaven::proto::backplane::grpc::_AggSpec_AggSpecFirst_default_instance_._instance, - &::io::deephaven::proto::backplane::grpc::_AggSpec_AggSpecFreeze_default_instance_._instance, - &::io::deephaven::proto::backplane::grpc::_AggSpec_AggSpecGroup_default_instance_._instance, - &::io::deephaven::proto::backplane::grpc::_AggSpec_AggSpecLast_default_instance_._instance, - &::io::deephaven::proto::backplane::grpc::_AggSpec_AggSpecMax_default_instance_._instance, - &::io::deephaven::proto::backplane::grpc::_AggSpec_AggSpecMin_default_instance_._instance, - &::io::deephaven::proto::backplane::grpc::_AggSpec_AggSpecStd_default_instance_._instance, - &::io::deephaven::proto::backplane::grpc::_AggSpec_AggSpecSum_default_instance_._instance, - &::io::deephaven::proto::backplane::grpc::_AggSpec_AggSpecVar_default_instance_._instance, - &::io::deephaven::proto::backplane::grpc::_AggSpec_default_instance_._instance, - &::io::deephaven::proto::backplane::grpc::_AggregateRequest_default_instance_._instance, - &::io::deephaven::proto::backplane::grpc::_Aggregation_AggregationColumns_default_instance_._instance, - &::io::deephaven::proto::backplane::grpc::_Aggregation_AggregationCount_default_instance_._instance, - &::io::deephaven::proto::backplane::grpc::_Aggregation_AggregationRowKey_default_instance_._instance, - &::io::deephaven::proto::backplane::grpc::_Aggregation_AggregationPartition_default_instance_._instance, - &::io::deephaven::proto::backplane::grpc::_Aggregation_default_instance_._instance, - &::io::deephaven::proto::backplane::grpc::_SortDescriptor_default_instance_._instance, - &::io::deephaven::proto::backplane::grpc::_SortTableRequest_default_instance_._instance, - &::io::deephaven::proto::backplane::grpc::_FilterTableRequest_default_instance_._instance, - &::io::deephaven::proto::backplane::grpc::_SeekRowRequest_default_instance_._instance, - &::io::deephaven::proto::backplane::grpc::_SeekRowResponse_default_instance_._instance, - &::io::deephaven::proto::backplane::grpc::_Reference_default_instance_._instance, - &::io::deephaven::proto::backplane::grpc::_Literal_default_instance_._instance, - &::io::deephaven::proto::backplane::grpc::_Value_default_instance_._instance, - &::io::deephaven::proto::backplane::grpc::_Condition_default_instance_._instance, - &::io::deephaven::proto::backplane::grpc::_AndCondition_default_instance_._instance, - &::io::deephaven::proto::backplane::grpc::_OrCondition_default_instance_._instance, - &::io::deephaven::proto::backplane::grpc::_NotCondition_default_instance_._instance, - &::io::deephaven::proto::backplane::grpc::_CompareCondition_default_instance_._instance, - &::io::deephaven::proto::backplane::grpc::_InCondition_default_instance_._instance, - &::io::deephaven::proto::backplane::grpc::_InvokeCondition_default_instance_._instance, - &::io::deephaven::proto::backplane::grpc::_IsNullCondition_default_instance_._instance, - &::io::deephaven::proto::backplane::grpc::_MatchesCondition_default_instance_._instance, - &::io::deephaven::proto::backplane::grpc::_ContainsCondition_default_instance_._instance, - &::io::deephaven::proto::backplane::grpc::_SearchCondition_default_instance_._instance, - &::io::deephaven::proto::backplane::grpc::_FlattenRequest_default_instance_._instance, - &::io::deephaven::proto::backplane::grpc::_MetaTableRequest_default_instance_._instance, - &::io::deephaven::proto::backplane::grpc::_RunChartDownsampleRequest_ZoomRange_default_instance_._instance, - &::io::deephaven::proto::backplane::grpc::_RunChartDownsampleRequest_default_instance_._instance, - &::io::deephaven::proto::backplane::grpc::_CreateInputTableRequest_InputTableKind_InMemoryAppendOnly_default_instance_._instance, - &::io::deephaven::proto::backplane::grpc::_CreateInputTableRequest_InputTableKind_InMemoryKeyBacked_default_instance_._instance, - &::io::deephaven::proto::backplane::grpc::_CreateInputTableRequest_InputTableKind_Blink_default_instance_._instance, - &::io::deephaven::proto::backplane::grpc::_CreateInputTableRequest_InputTableKind_default_instance_._instance, - &::io::deephaven::proto::backplane::grpc::_CreateInputTableRequest_default_instance_._instance, - &::io::deephaven::proto::backplane::grpc::_WhereInRequest_default_instance_._instance, - &::io::deephaven::proto::backplane::grpc::_ColumnStatisticsRequest_default_instance_._instance, - &::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[] 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" - "et\030\001 \001(\0132).io.deephaven.proto.backplane." - "grpc.TicketH\000\022\026\n\014batch_offset\030\002 \001(\021H\000B\005\n" - "\003ref\"\306\001\n\035ExportedTableCreationResponse\022D" - "\n\tresult_id\030\001 \001(\01321.io.deephaven.proto.b" - "ackplane.grpc.TableReference\022\017\n\007success\030" - "\002 \001(\010\022\022\n\nerror_info\030\003 \001(\t\022\025\n\rschema_head" - "er\030\004 \001(\014\022\021\n\tis_static\030\005 \001(\010\022\020\n\004size\030\006 \001(" - "\022B\0020\001\"\227\001\n\021FetchTableRequest\022D\n\tsource_id" - "\030\001 \001(\01321.io.deephaven.proto.backplane.gr" - "pc.TableReference\022<\n\tresult_id\030\002 \001(\0132).i" - "o.deephaven.proto.backplane.grpc.Ticket\"" - "\240\001\n\032ApplyPreviewColumnsRequest\022D\n\tsource" - "_id\030\001 \001(\01321.io.deephaven.proto.backplane" - ".grpc.TableReference\022<\n\tresult_id\030\002 \001(\0132" - ").io.deephaven.proto.backplane.grpc.Tick" - "et\"\035\n\033ExportedTableUpdatesRequest\"\214\001\n\032Ex" - "portedTableUpdateMessage\022<\n\texport_id\030\001 " - "\001(\0132).io.deephaven.proto.backplane.grpc." - "Ticket\022\020\n\004size\030\002 \001(\022B\0020\001\022\036\n\026update_failu" - "re_message\030\003 \001(\t\"c\n\021EmptyTableRequest\022<\n" - "\tresult_id\030\001 \001(\0132).io.deephaven.proto.ba" - "ckplane.grpc.Ticket\022\020\n\004size\030\002 \001(\022B\0020\001\"\357\001" - "\n\020TimeTableRequest\022<\n\tresult_id\030\001 \001(\0132)." - "io.deephaven.proto.backplane.grpc.Ticket" - "\022\036\n\020start_time_nanos\030\002 \001(\022B\0020\001H\000\022\033\n\021star" - "t_time_string\030\005 \001(\tH\000\022\032\n\014period_nanos\030\003 " - "\001(\022B\0020\001H\001\022\027\n\rperiod_string\030\006 \001(\tH\001\022\023\n\013bl" - "ink_table\030\004 \001(\010B\014\n\nstart_timeB\010\n\006period\"" - "\261\001\n\025SelectOrUpdateRequest\022<\n\tresult_id\030\001" - " \001(\0132).io.deephaven.proto.backplane.grpc" - ".Ticket\022D\n\tsource_id\030\002 \001(\01321.io.deephave" - "n.proto.backplane.grpc.TableReference\022\024\n" - "\014column_specs\030\003 \003(\t\"\214\002\n\013MathContext\022\021\n\tp" - "recision\030\001 \001(\021\022R\n\rrounding_mode\030\002 \001(\0162;." - "io.deephaven.proto.backplane.grpc.MathCo" - "ntext.RoundingMode\"\225\001\n\014RoundingMode\022\037\n\033R" - "OUNDING_MODE_NOT_SPECIFIED\020\000\022\006\n\002UP\020\001\022\010\n\004" - "DOWN\020\002\022\013\n\007CEILING\020\003\022\t\n\005FLOOR\020\004\022\013\n\007HALF_U" - "P\020\005\022\r\n\tHALF_DOWN\020\006\022\r\n\tHALF_EVEN\020\007\022\017\n\013UNN" - "ECESSARY\020\010\"\333\002\n\023UpdateByWindowScale\022[\n\005ti" - "cks\030\001 \001(\0132J.io.deephaven.proto.backplane" - ".grpc.UpdateByWindowScale.UpdateByWindow" - "TicksH\000\022Y\n\004time\030\002 \001(\0132I.io.deephaven.pro" - "to.backplane.grpc.UpdateByWindowScale.Up" - "dateByWindowTimeH\000\032$\n\023UpdateByWindowTick" - "s\022\r\n\005ticks\030\001 \001(\001\032^\n\022UpdateByWindowTime\022\016" - "\n\006column\030\001 \001(\t\022\023\n\005nanos\030\002 \001(\022B\0020\001H\000\022\031\n\017d" - "uration_string\030\003 \001(\tH\000B\010\n\006windowB\006\n\004type" - "\"\341\003\n\021UpdateByEmOptions\022I\n\ron_null_value\030" - "\001 \001(\01622.io.deephaven.proto.backplane.grp" - "c.BadDataBehavior\022H\n\014on_nan_value\030\002 \001(\0162" - "2.io.deephaven.proto.backplane.grpc.BadD" - "ataBehavior\022H\n\014on_null_time\030\003 \001(\01622.io.d" - "eephaven.proto.backplane.grpc.BadDataBeh" - "avior\022R\n\026on_negative_delta_time\030\004 \001(\01622." - "io.deephaven.proto.backplane.grpc.BadDat" - "aBehavior\022N\n\022on_zero_delta_time\030\005 \001(\01622." - "io.deephaven.proto.backplane.grpc.BadDat" - "aBehavior\022I\n\021big_value_context\030\006 \001(\0132..i" - "o.deephaven.proto.backplane.grpc.MathCon" - "text\"f\n\024UpdateByDeltaOptions\022N\n\rnull_beh" - "avior\030\001 \001(\01627.io.deephaven.proto.backpla" - "ne.grpc.UpdateByNullBehavior\"\2337\n\017UpdateB" - "yRequest\022<\n\tresult_id\030\001 \001(\0132).io.deephav" - "en.proto.backplane.grpc.Ticket\022D\n\tsource" - "_id\030\002 \001(\01321.io.deephaven.proto.backplane" - ".grpc.TableReference\022S\n\007options\030\003 \001(\0132B." - "io.deephaven.proto.backplane.grpc.Update" - "ByRequest.UpdateByOptions\022X\n\noperations\030" - "\004 \003(\0132D.io.deephaven.proto.backplane.grp" - "c.UpdateByRequest.UpdateByOperation\022\030\n\020g" - "roup_by_columns\030\005 \003(\t\032\303\003\n\017UpdateByOption" - "s\022\034\n\017use_redirection\030\001 \001(\010H\000\210\001\001\022\033\n\016chunk" - "_capacity\030\002 \001(\005H\001\210\001\001\022.\n!max_static_spars" - "e_memory_overhead\030\003 \001(\001H\002\210\001\001\022$\n\027initial_" - "hash_table_size\030\004 \001(\005H\003\210\001\001\022 \n\023maximum_lo" - "ad_factor\030\005 \001(\001H\004\210\001\001\022\037\n\022target_load_fact" - "or\030\006 \001(\001H\005\210\001\001\022D\n\014math_context\030\007 \001(\0132..io" - ".deephaven.proto.backplane.grpc.MathCont" - "extB\022\n\020_use_redirectionB\021\n\017_chunk_capaci" - "tyB$\n\"_max_static_sparse_memory_overhead" - "B\032\n\030_initial_hash_table_sizeB\026\n\024_maximum" - "_load_factorB\025\n\023_target_load_factor\032\3640\n\021" - "UpdateByOperation\022e\n\006column\030\001 \001(\0132S.io.d" - "eephaven.proto.backplane.grpc.UpdateByRe" - "quest.UpdateByOperation.UpdateByColumnH\000" - "\032\357/\n\016UpdateByColumn\022n\n\004spec\030\001 \001(\0132`.io.d" - "eephaven.proto.backplane.grpc.UpdateByRe" - "quest.UpdateByOperation.UpdateByColumn.U" - "pdateBySpec\022\023\n\013match_pairs\030\002 \003(\t\032\327.\n\014Upd" - "ateBySpec\022\205\001\n\003sum\030\001 \001(\0132v.io.deephaven.p" - "roto.backplane.grpc.UpdateByRequest.Upda" - "teByOperation.UpdateByColumn.UpdateBySpe" - "c.UpdateByCumulativeSumH\000\022\205\001\n\003min\030\002 \001(\0132" - "v.io.deephaven.proto.backplane.grpc.Upda" - "teByRequest.UpdateByOperation.UpdateByCo" - "lumn.UpdateBySpec.UpdateByCumulativeMinH" - "\000\022\205\001\n\003max\030\003 \001(\0132v.io.deephaven.proto.bac" - "kplane.grpc.UpdateByRequest.UpdateByOper" - "ation.UpdateByColumn.UpdateBySpec.Update" - "ByCumulativeMaxH\000\022\215\001\n\007product\030\004 \001(\0132z.io" - ".deephaven.proto.backplane.grpc.UpdateBy" - "Request.UpdateByOperation.UpdateByColumn" - ".UpdateBySpec.UpdateByCumulativeProductH" - "\000\022}\n\004fill\030\005 \001(\0132m.io.deephaven.proto.bac" - "kplane.grpc.UpdateByRequest.UpdateByOper" - "ation.UpdateByColumn.UpdateBySpec.Update" - "ByFillH\000\022{\n\003ema\030\006 \001(\0132l.io.deephaven.pro" - "to.backplane.grpc.UpdateByRequest.Update" - "ByOperation.UpdateByColumn.UpdateBySpec." - "UpdateByEmaH\000\022\212\001\n\013rolling_sum\030\007 \001(\0132s.io" - ".deephaven.proto.backplane.grpc.UpdateBy" - "Request.UpdateByOperation.UpdateByColumn" - ".UpdateBySpec.UpdateByRollingSumH\000\022\216\001\n\rr" - "olling_group\030\010 \001(\0132u.io.deephaven.proto." - "backplane.grpc.UpdateByRequest.UpdateByO" - "peration.UpdateByColumn.UpdateBySpec.Upd" - "ateByRollingGroupH\000\022\212\001\n\013rolling_avg\030\t \001(" - "\0132s.io.deephaven.proto.backplane.grpc.Up" - "dateByRequest.UpdateByOperation.UpdateBy" - "Column.UpdateBySpec.UpdateByRollingAvgH\000" - "\022\212\001\n\013rolling_min\030\n \001(\0132s.io.deephaven.pr" - "oto.backplane.grpc.UpdateByRequest.Updat" - "eByOperation.UpdateByColumn.UpdateBySpec" - ".UpdateByRollingMinH\000\022\212\001\n\013rolling_max\030\013 " - "\001(\0132s.io.deephaven.proto.backplane.grpc." - "UpdateByRequest.UpdateByOperation.Update" - "ByColumn.UpdateBySpec.UpdateByRollingMax" - "H\000\022\222\001\n\017rolling_product\030\014 \001(\0132w.io.deepha" - "ven.proto.backplane.grpc.UpdateByRequest" - ".UpdateByOperation.UpdateByColumn.Update" - "BySpec.UpdateByRollingProductH\000\022\177\n\005delta" - "\030\r \001(\0132n.io.deephaven.proto.backplane.gr" - "pc.UpdateByRequest.UpdateByOperation.Upd" - "ateByColumn.UpdateBySpec.UpdateByDeltaH\000" - "\022{\n\003ems\030\016 \001(\0132l.io.deephaven.proto.backp" - "lane.grpc.UpdateByRequest.UpdateByOperat" - "ion.UpdateByColumn.UpdateBySpec.UpdateBy" - "EmsH\000\022\200\001\n\006em_min\030\017 \001(\0132n.io.deephaven.pr" - "oto.backplane.grpc.UpdateByRequest.Updat" - "eByOperation.UpdateByColumn.UpdateBySpec" - ".UpdateByEmMinH\000\022\200\001\n\006em_max\030\020 \001(\0132n.io.d" - "eephaven.proto.backplane.grpc.UpdateByRe" - "quest.UpdateByOperation.UpdateByColumn.U" - "pdateBySpec.UpdateByEmMaxH\000\022\200\001\n\006em_std\030\021" - " \001(\0132n.io.deephaven.proto.backplane.grpc" - ".UpdateByRequest.UpdateByOperation.Updat" - "eByColumn.UpdateBySpec.UpdateByEmStdH\000\022\216" - "\001\n\rrolling_count\030\022 \001(\0132u.io.deephaven.pr" - "oto.backplane.grpc.UpdateByRequest.Updat" - "eByOperation.UpdateByColumn.UpdateBySpec" - ".UpdateByRollingCountH\000\022\212\001\n\013rolling_std\030" - "\023 \001(\0132s.io.deephaven.proto.backplane.grp" - "c.UpdateByRequest.UpdateByOperation.Upda" - "teByColumn.UpdateBySpec.UpdateByRollingS" - "tdH\000\022\214\001\n\014rolling_wavg\030\024 \001(\0132t.io.deephav" - "en.proto.backplane.grpc.UpdateByRequest." - "UpdateByOperation.UpdateByColumn.UpdateB" - "ySpec.UpdateByRollingWAvgH\000\022\222\001\n\017rolling_" - "formula\030\025 \001(\0132w.io.deephaven.proto.backp" - "lane.grpc.UpdateByRequest.UpdateByOperat" - "ion.UpdateByColumn.UpdateBySpec.UpdateBy" - "RollingFormulaH\000\032\027\n\025UpdateByCumulativeSu" - "m\032\027\n\025UpdateByCumulativeMin\032\027\n\025UpdateByCu" - "mulativeMax\032\033\n\031UpdateByCumulativeProduct" - "\032\016\n\014UpdateByFill\032\242\001\n\013UpdateByEma\022E\n\007opti" - "ons\030\001 \001(\01324.io.deephaven.proto.backplane" - ".grpc.UpdateByEmOptions\022L\n\014window_scale\030" - "\002 \001(\01326.io.deephaven.proto.backplane.grp" - "c.UpdateByWindowScale\032\242\001\n\013UpdateByEms\022E\n" - "\007options\030\001 \001(\01324.io.deephaven.proto.back" - "plane.grpc.UpdateByEmOptions\022L\n\014window_s" - "cale\030\002 \001(\01326.io.deephaven.proto.backplan" - "e.grpc.UpdateByWindowScale\032\244\001\n\rUpdateByE" - "mMin\022E\n\007options\030\001 \001(\01324.io.deephaven.pro" - "to.backplane.grpc.UpdateByEmOptions\022L\n\014w" - "indow_scale\030\002 \001(\01326.io.deephaven.proto.b" - "ackplane.grpc.UpdateByWindowScale\032\244\001\n\rUp" - "dateByEmMax\022E\n\007options\030\001 \001(\01324.io.deepha" - "ven.proto.backplane.grpc.UpdateByEmOptio" - "ns\022L\n\014window_scale\030\002 \001(\01326.io.deephaven." - "proto.backplane.grpc.UpdateByWindowScale" - "\032\244\001\n\rUpdateByEmStd\022E\n\007options\030\001 \001(\01324.io" - ".deephaven.proto.backplane.grpc.UpdateBy" - "EmOptions\022L\n\014window_scale\030\002 \001(\01326.io.dee" - "phaven.proto.backplane.grpc.UpdateByWind" - "owScale\032Y\n\rUpdateByDelta\022H\n\007options\030\001 \001(" - "\01327.io.deephaven.proto.backplane.grpc.Up" - "dateByDeltaOptions\032\300\001\n\022UpdateByRollingSu" - "m\022T\n\024reverse_window_scale\030\001 \001(\01326.io.dee" - "phaven.proto.backplane.grpc.UpdateByWind" - "owScale\022T\n\024forward_window_scale\030\002 \001(\01326." - "io.deephaven.proto.backplane.grpc.Update" - "ByWindowScale\032\302\001\n\024UpdateByRollingGroup\022T" - "\n\024reverse_window_scale\030\001 \001(\01326.io.deepha" - "ven.proto.backplane.grpc.UpdateByWindowS" - "cale\022T\n\024forward_window_scale\030\002 \001(\01326.io." - "deephaven.proto.backplane.grpc.UpdateByW" - "indowScale\032\300\001\n\022UpdateByRollingAvg\022T\n\024rev" - "erse_window_scale\030\001 \001(\01326.io.deephaven.p" - "roto.backplane.grpc.UpdateByWindowScale\022" - "T\n\024forward_window_scale\030\002 \001(\01326.io.deeph" - "aven.proto.backplane.grpc.UpdateByWindow" - "Scale\032\300\001\n\022UpdateByRollingMin\022T\n\024reverse_" - "window_scale\030\001 \001(\01326.io.deephaven.proto." - "backplane.grpc.UpdateByWindowScale\022T\n\024fo" - "rward_window_scale\030\002 \001(\01326.io.deephaven." - "proto.backplane.grpc.UpdateByWindowScale" - "\032\300\001\n\022UpdateByRollingMax\022T\n\024reverse_windo" - "w_scale\030\001 \001(\01326.io.deephaven.proto.backp" - "lane.grpc.UpdateByWindowScale\022T\n\024forward" - "_window_scale\030\002 \001(\01326.io.deephaven.proto" - ".backplane.grpc.UpdateByWindowScale\032\304\001\n\026" - "UpdateByRollingProduct\022T\n\024reverse_window" - "_scale\030\001 \001(\01326.io.deephaven.proto.backpl" - "ane.grpc.UpdateByWindowScale\022T\n\024forward_" - "window_scale\030\002 \001(\01326.io.deephaven.proto." - "backplane.grpc.UpdateByWindowScale\032\302\001\n\024U" - "pdateByRollingCount\022T\n\024reverse_window_sc" - "ale\030\001 \001(\01326.io.deephaven.proto.backplane" - ".grpc.UpdateByWindowScale\022T\n\024forward_win" - "dow_scale\030\002 \001(\01326.io.deephaven.proto.bac" - "kplane.grpc.UpdateByWindowScale\032\300\001\n\022Upda" - "teByRollingStd\022T\n\024reverse_window_scale\030\001" - " \001(\01326.io.deephaven.proto.backplane.grpc" - ".UpdateByWindowScale\022T\n\024forward_window_s" - "cale\030\002 \001(\01326.io.deephaven.proto.backplan" - "e.grpc.UpdateByWindowScale\032\330\001\n\023UpdateByR" - "ollingWAvg\022T\n\024reverse_window_scale\030\001 \001(\013" - "26.io.deephaven.proto.backplane.grpc.Upd" - "ateByWindowScale\022T\n\024forward_window_scale" - "\030\002 \001(\01326.io.deephaven.proto.backplane.gr" - "pc.UpdateByWindowScale\022\025\n\rweight_column\030" - "\003 \001(\t\032\352\001\n\026UpdateByRollingFormula\022T\n\024reve" - "rse_window_scale\030\001 \001(\01326.io.deephaven.pr" - "oto.backplane.grpc.UpdateByWindowScale\022T" - "\n\024forward_window_scale\030\002 \001(\01326.io.deepha" - "ven.proto.backplane.grpc.UpdateByWindowS" - "cale\022\017\n\007formula\030\003 \001(\t\022\023\n\013param_token\030\004 \001" - "(\tB\006\n\004typeB\006\n\004type\"\261\001\n\025SelectDistinctReq" - "uest\022<\n\tresult_id\030\001 \001(\0132).io.deephaven.p" - "roto.backplane.grpc.Ticket\022D\n\tsource_id\030" - "\002 \001(\01321.io.deephaven.proto.backplane.grp" - "c.TableReference\022\024\n\014column_names\030\003 \003(\t\"\256" - "\001\n\022DropColumnsRequest\022<\n\tresult_id\030\001 \001(\013" - "2).io.deephaven.proto.backplane.grpc.Tic" - "ket\022D\n\tsource_id\030\002 \001(\01321.io.deephaven.pr" - "oto.backplane.grpc.TableReference\022\024\n\014col" - "umn_names\030\003 \003(\t\"\265\001\n\036UnstructuredFilterTa" - "bleRequest\022<\n\tresult_id\030\001 \001(\0132).io.deeph" - "aven.proto.backplane.grpc.Ticket\022D\n\tsour" - "ce_id\030\002 \001(\01321.io.deephaven.proto.backpla" - "ne.grpc.TableReference\022\017\n\007filters\030\003 \003(\t\"" - "\255\001\n\021HeadOrTailRequest\022<\n\tresult_id\030\001 \001(\013" - "2).io.deephaven.proto.backplane.grpc.Tic" - "ket\022D\n\tsource_id\030\002 \001(\01321.io.deephaven.pr" - "oto.backplane.grpc.TableReference\022\024\n\010num" - "_rows\030\003 \001(\022B\0020\001\"\316\001\n\023HeadOrTailByRequest\022" - "<\n\tresult_id\030\001 \001(\0132).io.deephaven.proto." - "backplane.grpc.Ticket\022D\n\tsource_id\030\002 \001(\013" - "21.io.deephaven.proto.backplane.grpc.Tab" - "leReference\022\024\n\010num_rows\030\003 \001(\022B\0020\001\022\035\n\025gro" - "up_by_column_specs\030\004 \003(\t\"\303\001\n\016UngroupRequ" - "est\022<\n\tresult_id\030\001 \001(\0132).io.deephaven.pr" - "oto.backplane.grpc.Ticket\022D\n\tsource_id\030\002" - " \001(\01321.io.deephaven.proto.backplane.grpc" - ".TableReference\022\021\n\tnull_fill\030\003 \001(\010\022\032\n\022co" - "lumns_to_ungroup\030\004 \003(\t\"\255\001\n\022MergeTablesRe" - "quest\022<\n\tresult_id\030\001 \001(\0132).io.deephaven." - "proto.backplane.grpc.Ticket\022E\n\nsource_id" - "s\030\002 \003(\01321.io.deephaven.proto.backplane.g" - "rpc.TableReference\022\022\n\nkey_column\030\003 \001(\t\"\232" - "\001\n\024SnapshotTableRequest\022<\n\tresult_id\030\001 \001" - "(\0132).io.deephaven.proto.backplane.grpc.T" - "icket\022D\n\tsource_id\030\002 \001(\01321.io.deephaven." - "proto.backplane.grpc.TableReference\"\261\002\n\030" - "SnapshotWhenTableRequest\022<\n\tresult_id\030\001 " - "\001(\0132).io.deephaven.proto.backplane.grpc." - "Ticket\022B\n\007base_id\030\002 \001(\01321.io.deephaven.p" - "roto.backplane.grpc.TableReference\022E\n\ntr" - "igger_id\030\003 \001(\01321.io.deephaven.proto.back" - "plane.grpc.TableReference\022\017\n\007initial\030\004 \001" - "(\010\022\023\n\013incremental\030\005 \001(\010\022\017\n\007history\030\006 \001(\010" - "\022\025\n\rstamp_columns\030\007 \003(\t\"\247\002\n\026CrossJoinTab" - "lesRequest\022<\n\tresult_id\030\001 \001(\0132).io.deeph" - "aven.proto.backplane.grpc.Ticket\022B\n\007left" - "_id\030\002 \001(\01321.io.deephaven.proto.backplane" - ".grpc.TableReference\022C\n\010right_id\030\003 \001(\01321" - ".io.deephaven.proto.backplane.grpc.Table" - "Reference\022\030\n\020columns_to_match\030\004 \003(\t\022\026\n\016c" - "olumns_to_add\030\005 \003(\t\022\024\n\014reserve_bits\030\006 \001(" - "\005\"\223\002\n\030NaturalJoinTablesRequest\022<\n\tresult" - "_id\030\001 \001(\0132).io.deephaven.proto.backplane" - ".grpc.Ticket\022B\n\007left_id\030\002 \001(\01321.io.deeph" - "aven.proto.backplane.grpc.TableReference" - "\022C\n\010right_id\030\003 \001(\01321.io.deephaven.proto." - "backplane.grpc.TableReference\022\030\n\020columns" - "_to_match\030\004 \003(\t\022\026\n\016columns_to_add\030\005 \003(\t\"" - "\221\002\n\026ExactJoinTablesRequest\022<\n\tresult_id\030" - "\001 \001(\0132).io.deephaven.proto.backplane.grp" - "c.Ticket\022B\n\007left_id\030\002 \001(\01321.io.deephaven" - ".proto.backplane.grpc.TableReference\022C\n\010" - "right_id\030\003 \001(\01321.io.deephaven.proto.back" - "plane.grpc.TableReference\022\030\n\020columns_to_" - "match\030\004 \003(\t\022\026\n\016columns_to_add\030\005 \003(\t\"\220\002\n\025" - "LeftJoinTablesRequest\022<\n\tresult_id\030\001 \001(\013" - "2).io.deephaven.proto.backplane.grpc.Tic" - "ket\022B\n\007left_id\030\002 \001(\01321.io.deephaven.prot" - "o.backplane.grpc.TableReference\022C\n\010right" - "_id\030\003 \001(\01321.io.deephaven.proto.backplane" - ".grpc.TableReference\022\030\n\020columns_to_match" - "\030\004 \003(\t\022\026\n\016columns_to_add\030\005 \003(\t\"\321\003\n\025AsOfJ" - "oinTablesRequest\022<\n\tresult_id\030\001 \001(\0132).io" - ".deephaven.proto.backplane.grpc.Ticket\022B" - "\n\007left_id\030\002 \001(\01321.io.deephaven.proto.bac" - "kplane.grpc.TableReference\022C\n\010right_id\030\003" - " \001(\01321.io.deephaven.proto.backplane.grpc" - ".TableReference\022\030\n\020columns_to_match\030\004 \003(" - "\t\022\026\n\016columns_to_add\030\005 \003(\t\022\\\n\020as_of_match" - "_rule\030\007 \001(\0162B.io.deephaven.proto.backpla" - "ne.grpc.AsOfJoinTablesRequest.MatchRule\"" - "]\n\tMatchRule\022\023\n\017LESS_THAN_EQUAL\020\000\022\r\n\tLES" - "S_THAN\020\001\022\026\n\022GREATER_THAN_EQUAL\020\002\022\020\n\014GREA" - "TER_THAN\020\003\032\002\030\001:\002\030\001\"\246\002\n\022AjRajTablesReques" - "t\022<\n\tresult_id\030\001 \001(\0132).io.deephaven.prot" - "o.backplane.grpc.Ticket\022B\n\007left_id\030\002 \001(\013" - "21.io.deephaven.proto.backplane.grpc.Tab" - "leReference\022C\n\010right_id\030\003 \001(\01321.io.deeph" - "aven.proto.backplane.grpc.TableReference" - "\022\033\n\023exact_match_columns\030\004 \003(\t\022\024\n\014as_of_c" - "olumn\030\005 \001(\t\022\026\n\016columns_to_add\030\006 \003(\t\"\210\001\n\016" - "MultiJoinInput\022D\n\tsource_id\030\001 \001(\01321.io.d" - "eephaven.proto.backplane.grpc.TableRefer" - "ence\022\030\n\020columns_to_match\030\002 \003(\t\022\026\n\016column" - "s_to_add\030\003 \003(\t\"\244\001\n\026MultiJoinTablesReques" - "t\022<\n\tresult_id\030\001 \001(\0132).io.deephaven.prot" - "o.backplane.grpc.Ticket\022L\n\021multi_join_in" - "puts\030\002 \003(\01321.io.deephaven.proto.backplan" - "e.grpc.MultiJoinInput\"\340\006\n\026RangeJoinTable" - "sRequest\022<\n\tresult_id\030\001 \001(\0132).io.deephav" - "en.proto.backplane.grpc.Ticket\022B\n\007left_i" - "d\030\002 \001(\01321.io.deephaven.proto.backplane.g" - "rpc.TableReference\022C\n\010right_id\030\003 \001(\01321.i" - "o.deephaven.proto.backplane.grpc.TableRe" - "ference\022\033\n\023exact_match_columns\030\004 \003(\t\022\031\n\021" - "left_start_column\030\005 \001(\t\022b\n\020range_start_r" - "ule\030\006 \001(\0162H.io.deephaven.proto.backplane" - ".grpc.RangeJoinTablesRequest.RangeStartR" - "ule\022\032\n\022right_range_column\030\007 \001(\t\022^\n\016range" - "_end_rule\030\010 \001(\0162F.io.deephaven.proto.bac" - "kplane.grpc.RangeJoinTablesRequest.Range" - "EndRule\022\027\n\017left_end_column\030\t \001(\t\022D\n\014aggr" - "egations\030\n \003(\0132..io.deephaven.proto.back" - "plane.grpc.Aggregation\022\023\n\013range_match\030\013 " - "\001(\t\"v\n\016RangeStartRule\022\025\n\021START_UNSPECIFI" - "ED\020\000\022\r\n\tLESS_THAN\020\001\022\026\n\022LESS_THAN_OR_EQUA" - "L\020\002\022&\n\"LESS_THAN_OR_EQUAL_ALLOW_PRECEDIN" - "G\020\003\"{\n\014RangeEndRule\022\023\n\017END_UNSPECIFIED\020\000" - "\022\020\n\014GREATER_THAN\020\001\022\031\n\025GREATER_THAN_OR_EQ" - "UAL\020\002\022)\n%GREATER_THAN_OR_EQUAL_ALLOW_FOL" - "LOWING\020\003\"\376\004\n\025ComboAggregateRequest\022<\n\tre" - "sult_id\030\001 \001(\0132).io.deephaven.proto.backp" - "lane.grpc.Ticket\022D\n\tsource_id\030\002 \001(\01321.io" - ".deephaven.proto.backplane.grpc.TableRef" - "erence\022V\n\naggregates\030\003 \003(\0132B.io.deephave" - "n.proto.backplane.grpc.ComboAggregateReq" - "uest.Aggregate\022\030\n\020group_by_columns\030\004 \003(\t" - "\022\023\n\013force_combo\030\005 \001(\010\032\255\001\n\tAggregate\022N\n\004t" - "ype\030\001 \001(\0162@.io.deephaven.proto.backplane" - ".grpc.ComboAggregateRequest.AggType\022\023\n\013m" - "atch_pairs\030\002 \003(\t\022\023\n\013column_name\030\003 \001(\t\022\022\n" - "\npercentile\030\004 \001(\001\022\022\n\navg_median\030\005 \001(\010\"\245\001" - "\n\007AggType\022\007\n\003SUM\020\000\022\013\n\007ABS_SUM\020\001\022\t\n\005GROUP" - "\020\002\022\007\n\003AVG\020\003\022\t\n\005COUNT\020\004\022\t\n\005FIRST\020\005\022\010\n\004LAS" - "T\020\006\022\007\n\003MIN\020\007\022\007\n\003MAX\020\010\022\n\n\006MEDIAN\020\t\022\016\n\nPER" - "CENTILE\020\n\022\007\n\003STD\020\013\022\007\n\003VAR\020\014\022\020\n\014WEIGHTED_" - "AVG\020\r:\002\030\001\"\355\001\n\023AggregateAllRequest\022<\n\tres" - "ult_id\030\001 \001(\0132).io.deephaven.proto.backpl" - "ane.grpc.Ticket\022D\n\tsource_id\030\002 \001(\01321.io." - "deephaven.proto.backplane.grpc.TableRefe" - "rence\0228\n\004spec\030\003 \001(\0132*.io.deephaven.proto" - ".backplane.grpc.AggSpec\022\030\n\020group_by_colu" - "mns\030\004 \003(\t\"\327\027\n\007AggSpec\022K\n\007abs_sum\030\001 \001(\01328" - ".io.deephaven.proto.backplane.grpc.AggSp" - "ec.AggSpecAbsSumH\000\022i\n\026approximate_percen" - "tile\030\002 \001(\0132G.io.deephaven.proto.backplan" - "e.grpc.AggSpec.AggSpecApproximatePercent" - "ileH\000\022D\n\003avg\030\003 \001(\01325.io.deephaven.proto." - "backplane.grpc.AggSpec.AggSpecAvgH\000\022Y\n\016c" - "ount_distinct\030\004 \001(\0132\?.io.deephaven.proto" - ".backplane.grpc.AggSpec.AggSpecCountDist" - "inctH\000\022N\n\010distinct\030\005 \001(\0132:.io.deephaven." - "proto.backplane.grpc.AggSpec.AggSpecDist" - "inctH\000\022H\n\005first\030\006 \001(\01327.io.deephaven.pro" - "to.backplane.grpc.AggSpec.AggSpecFirstH\000" - "\022L\n\007formula\030\007 \001(\01329.io.deephaven.proto.b" - "ackplane.grpc.AggSpec.AggSpecFormulaH\000\022J" - "\n\006freeze\030\010 \001(\01328.io.deephaven.proto.back" - "plane.grpc.AggSpec.AggSpecFreezeH\000\022H\n\005gr" - "oup\030\t \001(\01327.io.deephaven.proto.backplane" - ".grpc.AggSpec.AggSpecGroupH\000\022F\n\004last\030\n \001" - "(\01326.io.deephaven.proto.backplane.grpc.A" - "ggSpec.AggSpecLastH\000\022D\n\003max\030\013 \001(\01325.io.d" - "eephaven.proto.backplane.grpc.AggSpec.Ag" - "gSpecMaxH\000\022J\n\006median\030\014 \001(\01328.io.deephave" - "n.proto.backplane.grpc.AggSpec.AggSpecMe" - "dianH\000\022D\n\003min\030\r \001(\01325.io.deephaven.proto" - ".backplane.grpc.AggSpec.AggSpecMinH\000\022R\n\n" - "percentile\030\016 \001(\0132<.io.deephaven.proto.ba" - "ckplane.grpc.AggSpec.AggSpecPercentileH\000" - "\022P\n\014sorted_first\030\017 \001(\01328.io.deephaven.pr" - "oto.backplane.grpc.AggSpec.AggSpecSorted" - "H\000\022O\n\013sorted_last\030\020 \001(\01328.io.deephaven.p" - "roto.backplane.grpc.AggSpec.AggSpecSorte" - "dH\000\022D\n\003std\030\021 \001(\01325.io.deephaven.proto.ba" - "ckplane.grpc.AggSpec.AggSpecStdH\000\022D\n\003sum" - "\030\022 \001(\01325.io.deephaven.proto.backplane.gr" - "pc.AggSpec.AggSpecSumH\000\022M\n\010t_digest\030\023 \001(" - "\01329.io.deephaven.proto.backplane.grpc.Ag" - "gSpec.AggSpecTDigestH\000\022J\n\006unique\030\024 \001(\01328" - ".io.deephaven.proto.backplane.grpc.AggSp" - "ec.AggSpecUniqueH\000\022R\n\014weighted_avg\030\025 \001(\013" - "2:.io.deephaven.proto.backplane.grpc.Agg" - "Spec.AggSpecWeightedH\000\022R\n\014weighted_sum\030\026" - " \001(\0132:.io.deephaven.proto.backplane.grpc" - ".AggSpec.AggSpecWeightedH\000\022D\n\003var\030\027 \001(\0132" - "5.io.deephaven.proto.backplane.grpc.AggS" - "pec.AggSpecVarH\000\032\\\n\034AggSpecApproximatePe" - "rcentile\022\022\n\npercentile\030\001 \001(\001\022\030\n\013compress" - "ion\030\002 \001(\001H\000\210\001\001B\016\n\014_compression\032+\n\024AggSpe" - "cCountDistinct\022\023\n\013count_nulls\030\001 \001(\010\032(\n\017A" - "ggSpecDistinct\022\025\n\rinclude_nulls\030\001 \001(\010\0326\n" - "\016AggSpecFormula\022\017\n\007formula\030\001 \001(\t\022\023\n\013para" - "m_token\030\002 \001(\t\032/\n\rAggSpecMedian\022\036\n\026averag" - "e_evenly_divided\030\001 \001(\010\032G\n\021AggSpecPercent" - "ile\022\022\n\npercentile\030\001 \001(\001\022\036\n\026average_evenl" - "y_divided\030\002 \001(\010\032`\n\rAggSpecSorted\022O\n\007colu" - "mns\030\001 \003(\0132>.io.deephaven.proto.backplane" - ".grpc.AggSpec.AggSpecSortedColumn\032*\n\023Agg" - "SpecSortedColumn\022\023\n\013column_name\030\001 \001(\t\032:\n" - "\016AggSpecTDigest\022\030\n\013compression\030\001 \001(\001H\000\210\001" - "\001B\016\n\014_compression\032\210\001\n\rAggSpecUnique\022\025\n\ri" - "nclude_nulls\030\001 \001(\010\022`\n\023non_unique_sentine" - "l\030\002 \001(\0132C.io.deephaven.proto.backplane.g" - "rpc.AggSpec.AggSpecNonUniqueSentinel\032\265\002\n" - "\030AggSpecNonUniqueSentinel\022B\n\nnull_value\030" - "\001 \001(\0162,.io.deephaven.proto.backplane.grp" - "c.NullValueH\000\022\026\n\014string_value\030\002 \001(\tH\000\022\023\n" - "\tint_value\030\003 \001(\021H\000\022\030\n\nlong_value\030\004 \001(\022B\002" - "0\001H\000\022\025\n\013float_value\030\005 \001(\002H\000\022\026\n\014double_va" - "lue\030\006 \001(\001H\000\022\024\n\nbool_value\030\007 \001(\010H\000\022\024\n\nbyt" - "e_value\030\010 \001(\021H\000\022\025\n\013short_value\030\t \001(\021H\000\022\024" - "\n\nchar_value\030\n \001(\021H\000B\006\n\004type\032(\n\017AggSpecW" - "eighted\022\025\n\rweight_column\030\001 \001(\t\032\017\n\rAggSpe" - "cAbsSum\032\014\n\nAggSpecAvg\032\016\n\014AggSpecFirst\032\017\n" - "\rAggSpecFreeze\032\016\n\014AggSpecGroup\032\r\n\013AggSpe" - "cLast\032\014\n\nAggSpecMax\032\014\n\nAggSpecMin\032\014\n\nAgg" - "SpecStd\032\014\n\nAggSpecSum\032\014\n\nAggSpecVarB\006\n\004t" - "ype\"\334\002\n\020AggregateRequest\022<\n\tresult_id\030\001 " - "\001(\0132).io.deephaven.proto.backplane.grpc." - "Ticket\022D\n\tsource_id\030\002 \001(\01321.io.deephaven" - ".proto.backplane.grpc.TableReference\022L\n\021" - "initial_groups_id\030\003 \001(\01321.io.deephaven.p" - "roto.backplane.grpc.TableReference\022\026\n\016pr" - "eserve_empty\030\004 \001(\010\022D\n\014aggregations\030\005 \003(\013" - "2..io.deephaven.proto.backplane.grpc.Agg" - "regation\022\030\n\020group_by_columns\030\006 \003(\t\"\323\005\n\013A" - "ggregation\022T\n\007columns\030\001 \001(\0132A.io.deephav" - "en.proto.backplane.grpc.Aggregation.Aggr" - "egationColumnsH\000\022P\n\005count\030\002 \001(\0132\?.io.dee" - "phaven.proto.backplane.grpc.Aggregation." - "AggregationCountH\000\022Y\n\rfirst_row_key\030\003 \001(" - "\0132@.io.deephaven.proto.backplane.grpc.Ag" - "gregation.AggregationRowKeyH\000\022X\n\014last_ro" - "w_key\030\004 \001(\0132@.io.deephaven.proto.backpla" - "ne.grpc.Aggregation.AggregationRowKeyH\000\022" - "X\n\tpartition\030\005 \001(\0132C.io.deephaven.proto." - "backplane.grpc.Aggregation.AggregationPa" - "rtitionH\000\032c\n\022AggregationColumns\0228\n\004spec\030" - "\001 \001(\0132*.io.deephaven.proto.backplane.grp" - "c.AggSpec\022\023\n\013match_pairs\030\002 \003(\t\032\'\n\020Aggreg" - "ationCount\022\023\n\013column_name\030\001 \001(\t\032(\n\021Aggre" - "gationRowKey\022\023\n\013column_name\030\001 \001(\t\032M\n\024Agg" - "regationPartition\022\023\n\013column_name\030\001 \001(\t\022 " - "\n\030include_group_by_columns\030\002 \001(\010B\006\n\004type" - "\"\341\001\n\016SortDescriptor\022\023\n\013column_name\030\001 \001(\t" - "\022\023\n\013is_absolute\030\002 \001(\010\022R\n\tdirection\030\003 \001(\016" - "2\?.io.deephaven.proto.backplane.grpc.Sor" - "tDescriptor.SortDirection\"Q\n\rSortDirecti" - "on\022\013\n\007UNKNOWN\020\000\022\027\n\nDESCENDING\020\377\377\377\377\377\377\377\377\377\001" - "\022\r\n\tASCENDING\020\001\022\013\n\007REVERSE\020\002\"\330\001\n\020SortTab" - "leRequest\022<\n\tresult_id\030\001 \001(\0132).io.deepha" - "ven.proto.backplane.grpc.Ticket\022D\n\tsourc" - "e_id\030\002 \001(\01321.io.deephaven.proto.backplan" - "e.grpc.TableReference\022@\n\005sorts\030\003 \003(\01321.i" - "o.deephaven.proto.backplane.grpc.SortDes" - "criptor\"\327\001\n\022FilterTableRequest\022<\n\tresult" - "_id\030\001 \001(\0132).io.deephaven.proto.backplane" - ".grpc.Ticket\022D\n\tsource_id\030\002 \001(\01321.io.dee" - "phaven.proto.backplane.grpc.TableReferen" - "ce\022=\n\007filters\030\003 \003(\0132,.io.deephaven.proto" - ".backplane.grpc.Condition\"\371\001\n\016SeekRowReq" - "uest\022<\n\tsource_id\030\001 \001(\0132).io.deephaven.p" - "roto.backplane.grpc.Ticket\022\030\n\014starting_r" - "ow\030\002 \001(\022B\0020\001\022\023\n\013column_name\030\003 \001(\t\022>\n\nsee" - "k_value\030\004 \001(\0132*.io.deephaven.proto.backp" - "lane.grpc.Literal\022\023\n\013insensitive\030\005 \001(\010\022\020" - "\n\010contains\030\006 \001(\010\022\023\n\013is_backward\030\007 \001(\010\")\n" - "\017SeekRowResponse\022\026\n\nresult_row\030\001 \001(\022B\0020\001" - "\" \n\tReference\022\023\n\013column_name\030\001 \001(\t\"\221\001\n\007L" - "iteral\022\026\n\014string_value\030\001 \001(\tH\000\022\026\n\014double" - "_value\030\002 \001(\001H\000\022\024\n\nbool_value\030\003 \001(\010H\000\022\030\n\n" - "long_value\030\004 \001(\022B\0020\001H\000\022\035\n\017nano_time_valu" - "e\030\005 \001(\022B\0020\001H\000B\007\n\005value\"\221\001\n\005Value\022A\n\trefe" - "rence\030\001 \001(\0132,.io.deephaven.proto.backpla" - "ne.grpc.ReferenceH\000\022=\n\007literal\030\002 \001(\0132*.i" - "o.deephaven.proto.backplane.grpc.Literal" - "H\000B\006\n\004data\"\274\005\n\tCondition\022>\n\003and\030\001 \001(\0132/." - "io.deephaven.proto.backplane.grpc.AndCon" - "ditionH\000\022<\n\002or\030\002 \001(\0132..io.deephaven.prot" - "o.backplane.grpc.OrConditionH\000\022>\n\003not\030\003 " - "\001(\0132/.io.deephaven.proto.backplane.grpc." - "NotConditionH\000\022F\n\007compare\030\004 \001(\01323.io.dee" - "phaven.proto.backplane.grpc.CompareCondi" - "tionH\000\022<\n\002in\030\005 \001(\0132..io.deephaven.proto." - "backplane.grpc.InConditionH\000\022D\n\006invoke\030\006" - " \001(\01322.io.deephaven.proto.backplane.grpc" - ".InvokeConditionH\000\022E\n\007is_null\030\007 \001(\01322.io" - ".deephaven.proto.backplane.grpc.IsNullCo" - "nditionH\000\022F\n\007matches\030\010 \001(\01323.io.deephave" - "n.proto.backplane.grpc.MatchesConditionH" - "\000\022H\n\010contains\030\t \001(\01324.io.deephaven.proto" - ".backplane.grpc.ContainsConditionH\000\022D\n\006s" - "earch\030\n \001(\01322.io.deephaven.proto.backpla" - "ne.grpc.SearchConditionH\000B\006\n\004data\"M\n\014And" - "Condition\022=\n\007filters\030\001 \003(\0132,.io.deephave" - "n.proto.backplane.grpc.Condition\"L\n\013OrCo" - "ndition\022=\n\007filters\030\001 \003(\0132,.io.deephaven." - "proto.backplane.grpc.Condition\"L\n\014NotCon" - "dition\022<\n\006filter\030\001 \001(\0132,.io.deephaven.pr" - "oto.backplane.grpc.Condition\"\254\003\n\020Compare" - "Condition\022W\n\toperation\030\001 \001(\0162D.io.deepha" - "ven.proto.backplane.grpc.CompareConditio" - "n.CompareOperation\022L\n\020case_sensitivity\030\002" - " \001(\01622.io.deephaven.proto.backplane.grpc" - ".CaseSensitivity\0225\n\003lhs\030\003 \001(\0132(.io.deeph" - "aven.proto.backplane.grpc.Value\0225\n\003rhs\030\004" - " \001(\0132(.io.deephaven.proto.backplane.grpc" - ".Value\"\202\001\n\020CompareOperation\022\r\n\tLESS_THAN" - "\020\000\022\026\n\022LESS_THAN_OR_EQUAL\020\001\022\020\n\014GREATER_TH" - "AN\020\002\022\031\n\025GREATER_THAN_OR_EQUAL\020\003\022\n\n\006EQUAL" - "S\020\004\022\016\n\nNOT_EQUALS\020\005\"\225\002\n\013InCondition\0228\n\006t" - "arget\030\001 \001(\0132(.io.deephaven.proto.backpla" - "ne.grpc.Value\022<\n\ncandidates\030\002 \003(\0132(.io.d" - "eephaven.proto.backplane.grpc.Value\022L\n\020c" - "ase_sensitivity\030\003 \001(\01622.io.deephaven.pro" - "to.backplane.grpc.CaseSensitivity\022@\n\nmat" - "ch_type\030\004 \001(\0162,.io.deephaven.proto.backp" - "lane.grpc.MatchType\"\230\001\n\017InvokeCondition\022" - "\016\n\006method\030\001 \001(\t\0228\n\006target\030\002 \001(\0132(.io.dee" - "phaven.proto.backplane.grpc.Value\022;\n\targ" - "uments\030\003 \003(\0132(.io.deephaven.proto.backpl" - "ane.grpc.Value\"R\n\017IsNullCondition\022\?\n\tref" - "erence\030\001 \001(\0132,.io.deephaven.proto.backpl" - "ane.grpc.Reference\"\362\001\n\020MatchesCondition\022" - "\?\n\treference\030\001 \001(\0132,.io.deephaven.proto." - "backplane.grpc.Reference\022\r\n\005regex\030\002 \001(\t\022" - "L\n\020case_sensitivity\030\003 \001(\01622.io.deephaven" - ".proto.backplane.grpc.CaseSensitivity\022@\n" - "\nmatch_type\030\004 \001(\0162,.io.deephaven.proto.b" - "ackplane.grpc.MatchType\"\373\001\n\021ContainsCond" - "ition\022\?\n\treference\030\001 \001(\0132,.io.deephaven." - "proto.backplane.grpc.Reference\022\025\n\rsearch" - "_string\030\002 \001(\t\022L\n\020case_sensitivity\030\003 \001(\0162" - "2.io.deephaven.proto.backplane.grpc.Case" - "Sensitivity\022@\n\nmatch_type\030\004 \001(\0162,.io.dee" - "phaven.proto.backplane.grpc.MatchType\"s\n" - "\017SearchCondition\022\025\n\rsearch_string\030\001 \001(\t\022" - "I\n\023optional_references\030\002 \003(\0132,.io.deepha" - "ven.proto.backplane.grpc.Reference\"\224\001\n\016F" - "lattenRequest\022<\n\tresult_id\030\001 \001(\0132).io.de" - "ephaven.proto.backplane.grpc.Ticket\022D\n\ts" - "ource_id\030\002 \001(\01321.io.deephaven.proto.back" - "plane.grpc.TableReference\"\226\001\n\020MetaTableR" - "equest\022<\n\tresult_id\030\001 \001(\0132).io.deephaven" - ".proto.backplane.grpc.Ticket\022D\n\tsource_i" - "d\030\002 \001(\01321.io.deephaven.proto.backplane.g" - "rpc.TableReference\"\264\003\n\031RunChartDownsampl" - "eRequest\022<\n\tresult_id\030\001 \001(\0132).io.deephav" - "en.proto.backplane.grpc.Ticket\022D\n\tsource" - "_id\030\002 \001(\01321.io.deephaven.proto.backplane" - ".grpc.TableReference\022\023\n\013pixel_count\030\003 \001(" - "\005\022Z\n\nzoom_range\030\004 \001(\0132F.io.deephaven.pro" - "to.backplane.grpc.RunChartDownsampleRequ" - "est.ZoomRange\022\025\n\rx_column_name\030\005 \001(\t\022\026\n\016" - "y_column_names\030\006 \003(\t\032s\n\tZoomRange\022\037\n\016min" - "_date_nanos\030\001 \001(\003B\0020\001H\000\210\001\001\022\037\n\016max_date_n" - "anos\030\002 \001(\003B\0020\001H\001\210\001\001B\021\n\017_min_date_nanosB\021" - "\n\017_max_date_nanos\"\340\005\n\027CreateInputTableRe" - "quest\022<\n\tresult_id\030\001 \001(\0132).io.deephaven." - "proto.backplane.grpc.Ticket\022L\n\017source_ta" - "ble_id\030\002 \001(\01321.io.deephaven.proto.backpl" - "ane.grpc.TableReferenceH\000\022\020\n\006schema\030\003 \001(" - "\014H\000\022W\n\004kind\030\004 \001(\0132I.io.deephaven.proto.b" - "ackplane.grpc.CreateInputTableRequest.In" - "putTableKind\032\277\003\n\016InputTableKind\022}\n\025in_me" - "mory_append_only\030\001 \001(\0132\\.io.deephaven.pr" - "oto.backplane.grpc.CreateInputTableReque" - "st.InputTableKind.InMemoryAppendOnlyH\000\022{" - "\n\024in_memory_key_backed\030\002 \001(\0132[.io.deepha" - "ven.proto.backplane.grpc.CreateInputTabl" - "eRequest.InputTableKind.InMemoryKeyBacke" - "dH\000\022`\n\005blink\030\003 \001(\0132O.io.deephaven.proto." - "backplane.grpc.CreateInputTableRequest.I" - "nputTableKind.BlinkH\000\032\024\n\022InMemoryAppendO" - "nly\032(\n\021InMemoryKeyBacked\022\023\n\013key_columns\030" - "\001 \003(\t\032\007\n\005BlinkB\006\n\004kindB\014\n\ndefinition\"\203\002\n" - "\016WhereInRequest\022<\n\tresult_id\030\001 \001(\0132).io." - "deephaven.proto.backplane.grpc.Ticket\022B\n" - "\007left_id\030\002 \001(\01321.io.deephaven.proto.back" - "plane.grpc.TableReference\022C\n\010right_id\030\003 " - "\001(\01321.io.deephaven.proto.backplane.grpc." - "TableReference\022\020\n\010inverted\030\004 \001(\010\022\030\n\020colu" - "mns_to_match\030\005 \003(\t\"\352\001\n\027ColumnStatisticsR" - "equest\022<\n\tresult_id\030\001 \001(\0132).io.deephaven" - ".proto.backplane.grpc.Ticket\022D\n\tsource_i" - "d\030\002 \001(\01321.io.deephaven.proto.backplane.g" - "rpc.TableReference\022\023\n\013column_name\030\003 \001(\t\022" - "\037\n\022unique_value_limit\030\004 \001(\005H\000\210\001\001B\025\n\023_uni" - "que_value_limit\"\231\032\n\021BatchTableRequest\022K\n" - "\003ops\030\001 \003(\0132>.io.deephaven.proto.backplan" - "e.grpc.BatchTableRequest.Operation\032\266\031\n\tO" - "peration\022K\n\013empty_table\030\001 \001(\01324.io.deeph" - "aven.proto.backplane.grpc.EmptyTableRequ" - "estH\000\022I\n\ntime_table\030\002 \001(\01323.io.deephaven" - ".proto.backplane.grpc.TimeTableRequestH\000" - "\022M\n\014drop_columns\030\003 \001(\01325.io.deephaven.pr" - "oto.backplane.grpc.DropColumnsRequestH\000\022" - "J\n\006update\030\004 \001(\01328.io.deephaven.proto.bac" - "kplane.grpc.SelectOrUpdateRequestH\000\022O\n\013l" - "azy_update\030\005 \001(\01328.io.deephaven.proto.ba" - "ckplane.grpc.SelectOrUpdateRequestH\000\022H\n\004" - "view\030\006 \001(\01328.io.deephaven.proto.backplan" - "e.grpc.SelectOrUpdateRequestH\000\022O\n\013update" - "_view\030\007 \001(\01328.io.deephaven.proto.backpla" - "ne.grpc.SelectOrUpdateRequestH\000\022J\n\006selec" - "t\030\010 \001(\01328.io.deephaven.proto.backplane.g" - "rpc.SelectOrUpdateRequestH\000\022S\n\017select_di" - "stinct\030\t \001(\01328.io.deephaven.proto.backpl" - "ane.grpc.SelectDistinctRequestH\000\022G\n\006filt" - "er\030\n \001(\01325.io.deephaven.proto.backplane." - "grpc.FilterTableRequestH\000\022`\n\023unstructure" - "d_filter\030\013 \001(\0132A.io.deephaven.proto.back" - "plane.grpc.UnstructuredFilterTableReques" - "tH\000\022C\n\004sort\030\014 \001(\01323.io.deephaven.proto.b" - "ackplane.grpc.SortTableRequestH\000\022D\n\004head" - "\030\r \001(\01324.io.deephaven.proto.backplane.gr" - "pc.HeadOrTailRequestH\000\022D\n\004tail\030\016 \001(\01324.i" - "o.deephaven.proto.backplane.grpc.HeadOrT" - "ailRequestH\000\022I\n\007head_by\030\017 \001(\01326.io.deeph" - "aven.proto.backplane.grpc.HeadOrTailByRe" - "questH\000\022I\n\007tail_by\030\020 \001(\01326.io.deephaven." - "proto.backplane.grpc.HeadOrTailByRequest" - "H\000\022D\n\007ungroup\030\021 \001(\01321.io.deephaven.proto" - ".backplane.grpc.UngroupRequestH\000\022F\n\005merg" - "e\030\022 \001(\01325.io.deephaven.proto.backplane.g" - "rpc.MergeTablesRequestH\000\022S\n\017combo_aggreg" - "ate\030\023 \001(\01328.io.deephaven.proto.backplane" - ".grpc.ComboAggregateRequestH\000\022D\n\007flatten" - "\030\025 \001(\01321.io.deephaven.proto.backplane.gr" - "pc.FlattenRequestH\000\022\\\n\024run_chart_downsam" - "ple\030\026 \001(\0132<.io.deephaven.proto.backplane" - ".grpc.RunChartDownsampleRequestH\000\022O\n\ncro" - "ss_join\030\027 \001(\01329.io.deephaven.proto.backp" - "lane.grpc.CrossJoinTablesRequestH\000\022S\n\014na" - "tural_join\030\030 \001(\0132;.io.deephaven.proto.ba" - "ckplane.grpc.NaturalJoinTablesRequestH\000\022" - "O\n\nexact_join\030\031 \001(\01329.io.deephaven.proto" - ".backplane.grpc.ExactJoinTablesRequestH\000" - "\022M\n\tleft_join\030\032 \001(\01328.io.deephaven.proto" - ".backplane.grpc.LeftJoinTablesRequestH\000\022" - "R\n\nas_of_join\030\033 \001(\01328.io.deephaven.proto" - ".backplane.grpc.AsOfJoinTablesRequestB\002\030" - "\001H\000\022K\n\013fetch_table\030\034 \001(\01324.io.deephaven." - "proto.backplane.grpc.FetchTableRequestH\000" - "\022^\n\025apply_preview_columns\030\036 \001(\0132=.io.dee" - "phaven.proto.backplane.grpc.ApplyPreview" - "ColumnsRequestH\000\022X\n\022create_input_table\030\037" - " \001(\0132:.io.deephaven.proto.backplane.grpc" - ".CreateInputTableRequestH\000\022G\n\tupdate_by\030" - " \001(\01322.io.deephaven.proto.backplane.grp" - "c.UpdateByRequestH\000\022E\n\010where_in\030! \001(\01321." - "io.deephaven.proto.backplane.grpc.WhereI" - "nRequestH\000\022O\n\raggregate_all\030\" \001(\01326.io.d" - "eephaven.proto.backplane.grpc.AggregateA" - "llRequestH\000\022H\n\taggregate\030# \001(\01323.io.deep" - "haven.proto.backplane.grpc.AggregateRequ" - "estH\000\022K\n\010snapshot\030$ \001(\01327.io.deephaven.p" - "roto.backplane.grpc.SnapshotTableRequest" - "H\000\022T\n\rsnapshot_when\030% \001(\0132;.io.deephaven" - ".proto.backplane.grpc.SnapshotWhenTableR" - "equestH\000\022I\n\nmeta_table\030& \001(\01323.io.deepha" - "ven.proto.backplane.grpc.MetaTableReques" - "tH\000\022O\n\nrange_join\030\' \001(\01329.io.deephaven.p" - "roto.backplane.grpc.RangeJoinTablesReque" - "stH\000\022C\n\002aj\030( \001(\01325.io.deephaven.proto.ba" - "ckplane.grpc.AjRajTablesRequestH\000\022D\n\003raj" - "\030) \001(\01325.io.deephaven.proto.backplane.gr" - "pc.AjRajTablesRequestH\000\022W\n\021column_statis" - "tics\030* \001(\0132:.io.deephaven.proto.backplan" - "e.grpc.ColumnStatisticsRequestH\000\022O\n\nmult" - "i_join\030+ \001(\01329.io.deephaven.proto.backpl" - "ane.grpc.MultiJoinTablesRequestH\000B\004\n\002opJ" - "\004\010\024\020\025J\004\010\035\020\036*b\n\017BadDataBehavior\022#\n\037BAD_DA" - "TA_BEHAVIOR_NOT_SPECIFIED\020\000\022\t\n\005THROW\020\001\022\t" - "\n\005RESET\020\002\022\010\n\004SKIP\020\003\022\n\n\006POISON\020\004*t\n\024Updat" - "eByNullBehavior\022\037\n\033NULL_BEHAVIOR_NOT_SPE" - "CIFIED\020\000\022\022\n\016NULL_DOMINATES\020\001\022\023\n\017VALUE_DO" - "MINATES\020\002\022\022\n\016ZERO_DOMINATES\020\003*\033\n\tNullVal" - "ue\022\016\n\nNULL_VALUE\020\000*2\n\017CaseSensitivity\022\016\n" - "\nMATCH_CASE\020\000\022\017\n\013IGNORE_CASE\020\001*&\n\tMatchT" - "ype\022\013\n\007REGULAR\020\000\022\014\n\010INVERTED\020\0012\2731\n\014Table" - "Service\022\221\001\n GetExportedTableCreationResp" - "onse\022).io.deephaven.proto.backplane.grpc" - ".Ticket\032@.io.deephaven.proto.backplane.g" - "rpc.ExportedTableCreationResponse\"\000\022\206\001\n\n" - "FetchTable\0224.io.deephaven.proto.backplan" - "e.grpc.FetchTableRequest\032@.io.deephaven." - "proto.backplane.grpc.ExportedTableCreati" - "onResponse\"\000\022\230\001\n\023ApplyPreviewColumns\022=.i" - "o.deephaven.proto.backplane.grpc.ApplyPr" - "eviewColumnsRequest\032@.io.deephaven.proto" - ".backplane.grpc.ExportedTableCreationRes" - "ponse\"\000\022\206\001\n\nEmptyTable\0224.io.deephaven.pr" - "oto.backplane.grpc.EmptyTableRequest\032@.i" - "o.deephaven.proto.backplane.grpc.Exporte" - "dTableCreationResponse\"\000\022\204\001\n\tTimeTable\0223" - ".io.deephaven.proto.backplane.grpc.TimeT" - "ableRequest\032@.io.deephaven.proto.backpla" - "ne.grpc.ExportedTableCreationResponse\"\000\022" - "\210\001\n\013DropColumns\0225.io.deephaven.proto.bac" - "kplane.grpc.DropColumnsRequest\032@.io.deep" - "haven.proto.backplane.grpc.ExportedTable" - "CreationResponse\"\000\022\206\001\n\006Update\0228.io.deeph" - "aven.proto.backplane.grpc.SelectOrUpdate" - "Request\032@.io.deephaven.proto.backplane.g" - "rpc.ExportedTableCreationResponse\"\000\022\212\001\n\n" - "LazyUpdate\0228.io.deephaven.proto.backplan" - "e.grpc.SelectOrUpdateRequest\032@.io.deepha" - "ven.proto.backplane.grpc.ExportedTableCr" - "eationResponse\"\000\022\204\001\n\004View\0228.io.deephaven" - ".proto.backplane.grpc.SelectOrUpdateRequ" - "est\032@.io.deephaven.proto.backplane.grpc." - "ExportedTableCreationResponse\"\000\022\212\001\n\nUpda" - "teView\0228.io.deephaven.proto.backplane.gr" - "pc.SelectOrUpdateRequest\032@.io.deephaven." - "proto.backplane.grpc.ExportedTableCreati" - "onResponse\"\000\022\206\001\n\006Select\0228.io.deephaven.p" - "roto.backplane.grpc.SelectOrUpdateReques" - "t\032@.io.deephaven.proto.backplane.grpc.Ex" - "portedTableCreationResponse\"\000\022\202\001\n\010Update" - "By\0222.io.deephaven.proto.backplane.grpc.U" - "pdateByRequest\032@.io.deephaven.proto.back" - "plane.grpc.ExportedTableCreationResponse" - "\"\000\022\216\001\n\016SelectDistinct\0228.io.deephaven.pro" - "to.backplane.grpc.SelectDistinctRequest\032" - "@.io.deephaven.proto.backplane.grpc.Expo" - "rtedTableCreationResponse\"\000\022\203\001\n\006Filter\0225" - ".io.deephaven.proto.backplane.grpc.Filte" - "rTableRequest\032@.io.deephaven.proto.backp" - "lane.grpc.ExportedTableCreationResponse\"" - "\000\022\233\001\n\022UnstructuredFilter\022A.io.deephaven." - "proto.backplane.grpc.UnstructuredFilterT" - "ableRequest\032@.io.deephaven.proto.backpla" - "ne.grpc.ExportedTableCreationResponse\"\000\022" - "\177\n\004Sort\0223.io.deephaven.proto.backplane.g" - "rpc.SortTableRequest\032@.io.deephaven.prot" - "o.backplane.grpc.ExportedTableCreationRe" - "sponse\"\000\022\200\001\n\004Head\0224.io.deephaven.proto.b" - "ackplane.grpc.HeadOrTailRequest\032@.io.dee" - "phaven.proto.backplane.grpc.ExportedTabl" - "eCreationResponse\"\000\022\200\001\n\004Tail\0224.io.deepha" - "ven.proto.backplane.grpc.HeadOrTailReque" - "st\032@.io.deephaven.proto.backplane.grpc.E" - "xportedTableCreationResponse\"\000\022\204\001\n\006HeadB" - "y\0226.io.deephaven.proto.backplane.grpc.He" - "adOrTailByRequest\032@.io.deephaven.proto.b" - "ackplane.grpc.ExportedTableCreationRespo" - "nse\"\000\022\204\001\n\006TailBy\0226.io.deephaven.proto.ba" - "ckplane.grpc.HeadOrTailByRequest\032@.io.de" - "ephaven.proto.backplane.grpc.ExportedTab" - "leCreationResponse\"\000\022\200\001\n\007Ungroup\0221.io.de" - "ephaven.proto.backplane.grpc.UngroupRequ" - "est\032@.io.deephaven.proto.backplane.grpc." - "ExportedTableCreationResponse\"\000\022\210\001\n\013Merg" - "eTables\0225.io.deephaven.proto.backplane.g" - "rpc.MergeTablesRequest\032@.io.deephaven.pr" - "oto.backplane.grpc.ExportedTableCreation" - "Response\"\000\022\220\001\n\017CrossJoinTables\0229.io.deep" - "haven.proto.backplane.grpc.CrossJoinTabl" - "esRequest\032@.io.deephaven.proto.backplane" - ".grpc.ExportedTableCreationResponse\"\000\022\224\001" - "\n\021NaturalJoinTables\022;.io.deephaven.proto" - ".backplane.grpc.NaturalJoinTablesRequest" - "\032@.io.deephaven.proto.backplane.grpc.Exp" - "ortedTableCreationResponse\"\000\022\220\001\n\017ExactJo" - "inTables\0229.io.deephaven.proto.backplane." - "grpc.ExactJoinTablesRequest\032@.io.deephav" - "en.proto.backplane.grpc.ExportedTableCre" - "ationResponse\"\000\022\216\001\n\016LeftJoinTables\0228.io." - "deephaven.proto.backplane.grpc.LeftJoinT" - "ablesRequest\032@.io.deephaven.proto.backpl" - "ane.grpc.ExportedTableCreationResponse\"\000" - "\022\221\001\n\016AsOfJoinTables\0228.io.deephaven.proto" - ".backplane.grpc.AsOfJoinTablesRequest\032@." - "io.deephaven.proto.backplane.grpc.Export" - "edTableCreationResponse\"\003\210\002\001\022\205\001\n\010AjTable" - "s\0225.io.deephaven.proto.backplane.grpc.Aj" - "RajTablesRequest\032@.io.deephaven.proto.ba" - "ckplane.grpc.ExportedTableCreationRespon" - "se\"\000\022\206\001\n\tRajTables\0225.io.deephaven.proto." - "backplane.grpc.AjRajTablesRequest\032@.io.d" - "eephaven.proto.backplane.grpc.ExportedTa" - "bleCreationResponse\"\000\022\220\001\n\017MultiJoinTable" - "s\0229.io.deephaven.proto.backplane.grpc.Mu" - "ltiJoinTablesRequest\032@.io.deephaven.prot" - "o.backplane.grpc.ExportedTableCreationRe" - "sponse\"\000\022\220\001\n\017RangeJoinTables\0229.io.deepha" - "ven.proto.backplane.grpc.RangeJoinTables" - "Request\032@.io.deephaven.proto.backplane.g" - "rpc.ExportedTableCreationResponse\"\000\022\221\001\n\016" - "ComboAggregate\0228.io.deephaven.proto.back" - "plane.grpc.ComboAggregateRequest\032@.io.de" - "ephaven.proto.backplane.grpc.ExportedTab" - "leCreationResponse\"\003\210\002\001\022\212\001\n\014AggregateAll" - "\0226.io.deephaven.proto.backplane.grpc.Agg" - "regateAllRequest\032@.io.deephaven.proto.ba" - "ckplane.grpc.ExportedTableCreationRespon" - "se\"\000\022\204\001\n\tAggregate\0223.io.deephaven.proto." - "backplane.grpc.AggregateRequest\032@.io.dee" - "phaven.proto.backplane.grpc.ExportedTabl" - "eCreationResponse\"\000\022\207\001\n\010Snapshot\0227.io.de" - "ephaven.proto.backplane.grpc.SnapshotTab" - "leRequest\032@.io.deephaven.proto.backplane" - ".grpc.ExportedTableCreationResponse\"\000\022\217\001" - "\n\014SnapshotWhen\022;.io.deephaven.proto.back" - "plane.grpc.SnapshotWhenTableRequest\032@.io" - ".deephaven.proto.backplane.grpc.Exported" - "TableCreationResponse\"\000\022\200\001\n\007Flatten\0221.io" - ".deephaven.proto.backplane.grpc.FlattenR" - "equest\032@.io.deephaven.proto.backplane.gr" - "pc.ExportedTableCreationResponse\"\000\022\226\001\n\022R" - "unChartDownsample\022<.io.deephaven.proto.b" - "ackplane.grpc.RunChartDownsampleRequest\032" - "@.io.deephaven.proto.backplane.grpc.Expo" - "rtedTableCreationResponse\"\000\022\222\001\n\020CreateIn" - "putTable\022:.io.deephaven.proto.backplane." - "grpc.CreateInputTableRequest\032@.io.deepha" - "ven.proto.backplane.grpc.ExportedTableCr" - "eationResponse\"\000\022\200\001\n\007WhereIn\0221.io.deepha" - "ven.proto.backplane.grpc.WhereInRequest\032" - "@.io.deephaven.proto.backplane.grpc.Expo" - "rtedTableCreationResponse\"\000\022\203\001\n\005Batch\0224." - "io.deephaven.proto.backplane.grpc.BatchT" - "ableRequest\032@.io.deephaven.proto.backpla" - "ne.grpc.ExportedTableCreationResponse\"\0000" - "\001\022\231\001\n\024ExportedTableUpdates\022>.io.deephave" - "n.proto.backplane.grpc.ExportedTableUpda" - "tesRequest\032=.io.deephaven.proto.backplan" - "e.grpc.ExportedTableUpdateMessage\"\0000\001\022r\n" - "\007SeekRow\0221.io.deephaven.proto.backplane." - "grpc.SeekRowRequest\0322.io.deephaven.proto" - ".backplane.grpc.SeekRowResponse\"\000\022\204\001\n\tMe" - "taTable\0223.io.deephaven.proto.backplane.g" - "rpc.MetaTableRequest\032@.io.deephaven.prot" - "o.backplane.grpc.ExportedTableCreationRe" - "sponse\"\000\022\231\001\n\027ComputeColumnStatistics\022:.i" - "o.deephaven.proto.backplane.grpc.ColumnS" - "tatisticsRequest\032@.io.deephaven.proto.ba" - "ckplane.grpc.ExportedTableCreationRespon" - "se\"\000BAH\001P\001Z;github.com/deephaven/deephav" - "en-core/go/internal/proto/tableb\006proto3" -}; -static const ::_pbi::DescriptorTable* const descriptor_table_deephaven_2fproto_2ftable_2eproto_deps[1] = - { - &::descriptor_table_deephaven_2fproto_2fticket_2eproto, -}; -static ::absl::once_flag descriptor_table_deephaven_2fproto_2ftable_2eproto_once; -PROTOBUF_CONSTINIT const ::_pbi::DescriptorTable descriptor_table_deephaven_2fproto_2ftable_2eproto = { - false, - false, - 35399, - descriptor_table_protodef_deephaven_2fproto_2ftable_2eproto, - "deephaven/proto/table.proto", - &descriptor_table_deephaven_2fproto_2ftable_2eproto_once, - descriptor_table_deephaven_2fproto_2ftable_2eproto_deps, - 1, - 124, - schemas, - file_default_instances, - TableStruct_deephaven_2fproto_2ftable_2eproto::offsets, - file_level_enum_descriptors_deephaven_2fproto_2ftable_2eproto, - file_level_service_descriptors_deephaven_2fproto_2ftable_2eproto, -}; -namespace io { -namespace deephaven { -namespace proto { -namespace backplane { -namespace grpc { -const ::google::protobuf::EnumDescriptor* MathContext_RoundingMode_descriptor() { - ::google::protobuf::internal::AssignDescriptors(&descriptor_table_deephaven_2fproto_2ftable_2eproto); - return file_level_enum_descriptors_deephaven_2fproto_2ftable_2eproto[0]; -} -PROTOBUF_CONSTINIT const uint32_t MathContext_RoundingMode_internal_data_[] = { - 589824u, 0u, }; -bool MathContext_RoundingMode_IsValid(int value) { - return 0 <= value && value <= 8; -} -#if (__cplusplus < 201703) && \ - (!defined(_MSC_VER) || (_MSC_VER >= 1900 && _MSC_VER < 1912)) - -constexpr MathContext_RoundingMode MathContext::ROUNDING_MODE_NOT_SPECIFIED; -constexpr MathContext_RoundingMode MathContext::UP; -constexpr MathContext_RoundingMode MathContext::DOWN; -constexpr MathContext_RoundingMode MathContext::CEILING; -constexpr MathContext_RoundingMode MathContext::FLOOR; -constexpr MathContext_RoundingMode MathContext::HALF_UP; -constexpr MathContext_RoundingMode MathContext::HALF_DOWN; -constexpr MathContext_RoundingMode MathContext::HALF_EVEN; -constexpr MathContext_RoundingMode MathContext::UNNECESSARY; -constexpr MathContext_RoundingMode MathContext::RoundingMode_MIN; -constexpr MathContext_RoundingMode MathContext::RoundingMode_MAX; -constexpr int MathContext::RoundingMode_ARRAYSIZE; - -#endif // (__cplusplus < 201703) && - // (!defined(_MSC_VER) || (_MSC_VER >= 1900 && _MSC_VER < 1912)) -const ::google::protobuf::EnumDescriptor* AsOfJoinTablesRequest_MatchRule_descriptor() { - ::google::protobuf::internal::AssignDescriptors(&descriptor_table_deephaven_2fproto_2ftable_2eproto); - return file_level_enum_descriptors_deephaven_2fproto_2ftable_2eproto[1]; -} -PROTOBUF_CONSTINIT const uint32_t AsOfJoinTablesRequest_MatchRule_internal_data_[] = { - 262144u, 0u, }; -bool AsOfJoinTablesRequest_MatchRule_IsValid(int value) { - return 0 <= value && value <= 3; -} -#if (__cplusplus < 201703) && \ - (!defined(_MSC_VER) || (_MSC_VER >= 1900 && _MSC_VER < 1912)) - -constexpr AsOfJoinTablesRequest_MatchRule AsOfJoinTablesRequest::LESS_THAN_EQUAL; -constexpr AsOfJoinTablesRequest_MatchRule AsOfJoinTablesRequest::LESS_THAN; -constexpr AsOfJoinTablesRequest_MatchRule AsOfJoinTablesRequest::GREATER_THAN_EQUAL; -constexpr AsOfJoinTablesRequest_MatchRule AsOfJoinTablesRequest::GREATER_THAN; -constexpr AsOfJoinTablesRequest_MatchRule AsOfJoinTablesRequest::MatchRule_MIN; -constexpr AsOfJoinTablesRequest_MatchRule AsOfJoinTablesRequest::MatchRule_MAX; -constexpr int AsOfJoinTablesRequest::MatchRule_ARRAYSIZE; - -#endif // (__cplusplus < 201703) && - // (!defined(_MSC_VER) || (_MSC_VER >= 1900 && _MSC_VER < 1912)) -const ::google::protobuf::EnumDescriptor* RangeJoinTablesRequest_RangeStartRule_descriptor() { - ::google::protobuf::internal::AssignDescriptors(&descriptor_table_deephaven_2fproto_2ftable_2eproto); - return file_level_enum_descriptors_deephaven_2fproto_2ftable_2eproto[2]; -} -PROTOBUF_CONSTINIT const uint32_t RangeJoinTablesRequest_RangeStartRule_internal_data_[] = { - 262144u, 0u, }; -bool RangeJoinTablesRequest_RangeStartRule_IsValid(int value) { - return 0 <= value && value <= 3; -} -#if (__cplusplus < 201703) && \ - (!defined(_MSC_VER) || (_MSC_VER >= 1900 && _MSC_VER < 1912)) - -constexpr RangeJoinTablesRequest_RangeStartRule RangeJoinTablesRequest::START_UNSPECIFIED; -constexpr RangeJoinTablesRequest_RangeStartRule RangeJoinTablesRequest::LESS_THAN; -constexpr RangeJoinTablesRequest_RangeStartRule RangeJoinTablesRequest::LESS_THAN_OR_EQUAL; -constexpr RangeJoinTablesRequest_RangeStartRule RangeJoinTablesRequest::LESS_THAN_OR_EQUAL_ALLOW_PRECEDING; -constexpr RangeJoinTablesRequest_RangeStartRule RangeJoinTablesRequest::RangeStartRule_MIN; -constexpr RangeJoinTablesRequest_RangeStartRule RangeJoinTablesRequest::RangeStartRule_MAX; -constexpr int RangeJoinTablesRequest::RangeStartRule_ARRAYSIZE; - -#endif // (__cplusplus < 201703) && - // (!defined(_MSC_VER) || (_MSC_VER >= 1900 && _MSC_VER < 1912)) -const ::google::protobuf::EnumDescriptor* RangeJoinTablesRequest_RangeEndRule_descriptor() { - ::google::protobuf::internal::AssignDescriptors(&descriptor_table_deephaven_2fproto_2ftable_2eproto); - return file_level_enum_descriptors_deephaven_2fproto_2ftable_2eproto[3]; -} -PROTOBUF_CONSTINIT const uint32_t RangeJoinTablesRequest_RangeEndRule_internal_data_[] = { - 262144u, 0u, }; -bool RangeJoinTablesRequest_RangeEndRule_IsValid(int value) { - return 0 <= value && value <= 3; -} -#if (__cplusplus < 201703) && \ - (!defined(_MSC_VER) || (_MSC_VER >= 1900 && _MSC_VER < 1912)) - -constexpr RangeJoinTablesRequest_RangeEndRule RangeJoinTablesRequest::END_UNSPECIFIED; -constexpr RangeJoinTablesRequest_RangeEndRule RangeJoinTablesRequest::GREATER_THAN; -constexpr RangeJoinTablesRequest_RangeEndRule RangeJoinTablesRequest::GREATER_THAN_OR_EQUAL; -constexpr RangeJoinTablesRequest_RangeEndRule RangeJoinTablesRequest::GREATER_THAN_OR_EQUAL_ALLOW_FOLLOWING; -constexpr RangeJoinTablesRequest_RangeEndRule RangeJoinTablesRequest::RangeEndRule_MIN; -constexpr RangeJoinTablesRequest_RangeEndRule RangeJoinTablesRequest::RangeEndRule_MAX; -constexpr int RangeJoinTablesRequest::RangeEndRule_ARRAYSIZE; - -#endif // (__cplusplus < 201703) && - // (!defined(_MSC_VER) || (_MSC_VER >= 1900 && _MSC_VER < 1912)) -const ::google::protobuf::EnumDescriptor* ComboAggregateRequest_AggType_descriptor() { - ::google::protobuf::internal::AssignDescriptors(&descriptor_table_deephaven_2fproto_2ftable_2eproto); - return file_level_enum_descriptors_deephaven_2fproto_2ftable_2eproto[4]; -} -PROTOBUF_CONSTINIT const uint32_t ComboAggregateRequest_AggType_internal_data_[] = { - 917504u, 0u, }; -bool ComboAggregateRequest_AggType_IsValid(int value) { - return 0 <= value && value <= 13; -} -#if (__cplusplus < 201703) && \ - (!defined(_MSC_VER) || (_MSC_VER >= 1900 && _MSC_VER < 1912)) - -constexpr ComboAggregateRequest_AggType ComboAggregateRequest::SUM; -constexpr ComboAggregateRequest_AggType ComboAggregateRequest::ABS_SUM; -constexpr ComboAggregateRequest_AggType ComboAggregateRequest::GROUP; -constexpr ComboAggregateRequest_AggType ComboAggregateRequest::AVG; -constexpr ComboAggregateRequest_AggType ComboAggregateRequest::COUNT; -constexpr ComboAggregateRequest_AggType ComboAggregateRequest::FIRST; -constexpr ComboAggregateRequest_AggType ComboAggregateRequest::LAST; -constexpr ComboAggregateRequest_AggType ComboAggregateRequest::MIN; -constexpr ComboAggregateRequest_AggType ComboAggregateRequest::MAX; -constexpr ComboAggregateRequest_AggType ComboAggregateRequest::MEDIAN; -constexpr ComboAggregateRequest_AggType ComboAggregateRequest::PERCENTILE; -constexpr ComboAggregateRequest_AggType ComboAggregateRequest::STD; -constexpr ComboAggregateRequest_AggType ComboAggregateRequest::VAR; -constexpr ComboAggregateRequest_AggType ComboAggregateRequest::WEIGHTED_AVG; -constexpr ComboAggregateRequest_AggType ComboAggregateRequest::AggType_MIN; -constexpr ComboAggregateRequest_AggType ComboAggregateRequest::AggType_MAX; -constexpr int ComboAggregateRequest::AggType_ARRAYSIZE; - -#endif // (__cplusplus < 201703) && - // (!defined(_MSC_VER) || (_MSC_VER >= 1900 && _MSC_VER < 1912)) -const ::google::protobuf::EnumDescriptor* SortDescriptor_SortDirection_descriptor() { - ::google::protobuf::internal::AssignDescriptors(&descriptor_table_deephaven_2fproto_2ftable_2eproto); - return file_level_enum_descriptors_deephaven_2fproto_2ftable_2eproto[5]; -} -PROTOBUF_CONSTINIT const uint32_t SortDescriptor_SortDirection_internal_data_[] = { - 327679u, 0u, }; -bool SortDescriptor_SortDirection_IsValid(int value) { - return -1 <= value && value <= 2; -} -#if (__cplusplus < 201703) && \ - (!defined(_MSC_VER) || (_MSC_VER >= 1900 && _MSC_VER < 1912)) - -constexpr SortDescriptor_SortDirection SortDescriptor::UNKNOWN; -constexpr SortDescriptor_SortDirection SortDescriptor::DESCENDING; -constexpr SortDescriptor_SortDirection SortDescriptor::ASCENDING; -constexpr SortDescriptor_SortDirection SortDescriptor::REVERSE; -constexpr SortDescriptor_SortDirection SortDescriptor::SortDirection_MIN; -constexpr SortDescriptor_SortDirection SortDescriptor::SortDirection_MAX; -constexpr int SortDescriptor::SortDirection_ARRAYSIZE; - -#endif // (__cplusplus < 201703) && - // (!defined(_MSC_VER) || (_MSC_VER >= 1900 && _MSC_VER < 1912)) -const ::google::protobuf::EnumDescriptor* CompareCondition_CompareOperation_descriptor() { - ::google::protobuf::internal::AssignDescriptors(&descriptor_table_deephaven_2fproto_2ftable_2eproto); - return file_level_enum_descriptors_deephaven_2fproto_2ftable_2eproto[6]; -} -PROTOBUF_CONSTINIT const uint32_t CompareCondition_CompareOperation_internal_data_[] = { - 393216u, 0u, }; -bool CompareCondition_CompareOperation_IsValid(int value) { - return 0 <= value && value <= 5; -} -#if (__cplusplus < 201703) && \ - (!defined(_MSC_VER) || (_MSC_VER >= 1900 && _MSC_VER < 1912)) - -constexpr CompareCondition_CompareOperation CompareCondition::LESS_THAN; -constexpr CompareCondition_CompareOperation CompareCondition::LESS_THAN_OR_EQUAL; -constexpr CompareCondition_CompareOperation CompareCondition::GREATER_THAN; -constexpr CompareCondition_CompareOperation CompareCondition::GREATER_THAN_OR_EQUAL; -constexpr CompareCondition_CompareOperation CompareCondition::EQUALS; -constexpr CompareCondition_CompareOperation CompareCondition::NOT_EQUALS; -constexpr CompareCondition_CompareOperation CompareCondition::CompareOperation_MIN; -constexpr CompareCondition_CompareOperation CompareCondition::CompareOperation_MAX; -constexpr int CompareCondition::CompareOperation_ARRAYSIZE; - -#endif // (__cplusplus < 201703) && - // (!defined(_MSC_VER) || (_MSC_VER >= 1900 && _MSC_VER < 1912)) -const ::google::protobuf::EnumDescriptor* BadDataBehavior_descriptor() { - ::google::protobuf::internal::AssignDescriptors(&descriptor_table_deephaven_2fproto_2ftable_2eproto); - return file_level_enum_descriptors_deephaven_2fproto_2ftable_2eproto[7]; -} -PROTOBUF_CONSTINIT const uint32_t BadDataBehavior_internal_data_[] = { - 327680u, 0u, }; -bool BadDataBehavior_IsValid(int value) { - return 0 <= value && value <= 4; -} -const ::google::protobuf::EnumDescriptor* UpdateByNullBehavior_descriptor() { - ::google::protobuf::internal::AssignDescriptors(&descriptor_table_deephaven_2fproto_2ftable_2eproto); - return file_level_enum_descriptors_deephaven_2fproto_2ftable_2eproto[8]; -} -PROTOBUF_CONSTINIT const uint32_t UpdateByNullBehavior_internal_data_[] = { - 262144u, 0u, }; -bool UpdateByNullBehavior_IsValid(int value) { - return 0 <= value && value <= 3; -} -const ::google::protobuf::EnumDescriptor* NullValue_descriptor() { - ::google::protobuf::internal::AssignDescriptors(&descriptor_table_deephaven_2fproto_2ftable_2eproto); - return file_level_enum_descriptors_deephaven_2fproto_2ftable_2eproto[9]; -} -PROTOBUF_CONSTINIT const uint32_t NullValue_internal_data_[] = { - 65536u, 0u, }; -bool NullValue_IsValid(int value) { - return 0 <= value && value <= 0; -} -const ::google::protobuf::EnumDescriptor* CaseSensitivity_descriptor() { - ::google::protobuf::internal::AssignDescriptors(&descriptor_table_deephaven_2fproto_2ftable_2eproto); - return file_level_enum_descriptors_deephaven_2fproto_2ftable_2eproto[10]; -} -PROTOBUF_CONSTINIT const uint32_t CaseSensitivity_internal_data_[] = { - 131072u, 0u, }; -bool CaseSensitivity_IsValid(int value) { - return 0 <= value && value <= 1; -} -const ::google::protobuf::EnumDescriptor* MatchType_descriptor() { - ::google::protobuf::internal::AssignDescriptors(&descriptor_table_deephaven_2fproto_2ftable_2eproto); - return file_level_enum_descriptors_deephaven_2fproto_2ftable_2eproto[11]; -} -PROTOBUF_CONSTINIT const uint32_t MatchType_internal_data_[] = { - 131072u, 0u, }; -bool MatchType_IsValid(int value) { - return 0 <= value && value <= 1; -} -// =================================================================== - -class TableReference::_Internal { - public: - static constexpr ::int32_t kOneofCaseOffset = - PROTOBUF_FIELD_OFFSET(::io::deephaven::proto::backplane::grpc::TableReference, _impl_._oneof_case_); -}; - -void TableReference::set_allocated_ticket(::io::deephaven::proto::backplane::grpc::Ticket* ticket) { - ::google::protobuf::Arena* message_arena = GetArena(); - clear_ref(); - if (ticket) { - ::google::protobuf::Arena* submessage_arena = reinterpret_cast<::google::protobuf::MessageLite*>(ticket)->GetArena(); - if (message_arena != submessage_arena) { - ticket = ::google::protobuf::internal::GetOwnedMessage(message_arena, ticket, submessage_arena); - } - set_has_ticket(); - _impl_.ref_.ticket_ = ticket; - } - // @@protoc_insertion_point(field_set_allocated:io.deephaven.proto.backplane.grpc.TableReference.ticket) -} -void TableReference::clear_ticket() { - ::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 ::io::deephaven::proto::backplane::grpc::TableReference& from_msg) - : ref_{}, - _cached_size_{0}, - _oneof_case_{from._oneof_case_[0]} {} - -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_, from); - switch (ref_case()) { - case REF_NOT_SET: - break; - case kTicket: - _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_; - break; - } - - // @@protoc_insertion_point(copy_constructor:io.deephaven.proto.backplane.grpc.TableReference) -} -inline PROTOBUF_NDEBUG_INLINE TableReference::Impl_::Impl_( - ::google::protobuf::internal::InternalVisibility visibility, - ::google::protobuf::Arena* arena) - : ref_{}, - _cached_size_{0}, - _oneof_case_{} {} - -inline void TableReference::SharedCtor(::_pb::Arena* arena) { - new (&_impl_) Impl_(internal_visibility(), arena); -} -TableReference::~TableReference() { - // @@protoc_insertion_point(destructor:io.deephaven.proto.backplane.grpc.TableReference) - _internal_metadata_.Delete<::google::protobuf::UnknownFieldSet>(); - SharedDtor(); -} -inline void TableReference::SharedDtor() { - ABSL_DCHECK(GetArena() == nullptr); - if (has_ref()) { - clear_ref(); - } - _impl_.~Impl_(); -} - -void TableReference::clear_ref() { -// @@protoc_insertion_point(one_of_clear_start:io.deephaven.proto.backplane.grpc.TableReference) - ::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; - } - case kBatchOffset: { - // No need to clear - break; - } - case REF_NOT_SET: { - break; - } - } - _impl_._oneof_case_[0] = REF_NOT_SET; -} - - -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_ = { - { - 0, // no _has_bits_ - 0, // no _extensions_ - 2, 0, // 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::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, {}}, - }}, {{ - 65535, 65535 - }}, {{ - // .io.deephaven.proto.backplane.grpc.Ticket ticket = 1; - {PROTOBUF_FIELD_OFFSET(TableReference, _impl_.ref_.ticket_), _Internal::kOneofCaseOffset + 0, 0, - (0 | ::_fl::kFcOneof | ::_fl::kMessage | ::_fl::kTvTable)}, - // sint32 batch_offset = 2; - {PROTOBUF_FIELD_OFFSET(TableReference, _impl_.ref_.batch_offset_), _Internal::kOneofCaseOffset + 0, 0, - (0 | ::_fl::kFcOneof | ::_fl::kSInt32)}, - }}, {{ - {::_pbi::TcParser::GetTable<::io::deephaven::proto::backplane::grpc::Ticket>()}, - }}, {{ - }}, -}; - -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; - - clear_ref(); - _internal_metadata_.Clear<::google::protobuf::UnknownFieldSet>(); -} - -#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; - - 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; - } - - 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_); -} - -void TableReference::CopyFrom(const TableReference& from) { -// @@protoc_insertion_point(class_specific_copy_from_start:io.deephaven.proto.backplane.grpc.TableReference) - if (&from == this) return; - Clear(); - MergeFrom(from); -} - - -void TableReference::InternalSwap(TableReference* PROTOBUF_RESTRICT other) { - using std::swap; - _internal_metadata_.InternalSwap(&other->_internal_metadata_); - swap(_impl_.ref_, other->_impl_.ref_); - swap(_impl_._oneof_case_[0], other->_impl_._oneof_case_[0]); -} - -::google::protobuf::Metadata TableReference::GetMetadata() const { - return ::google::protobuf::Message::GetMetadataImpl(GetClassData()->full()); -} -// =================================================================== - -class ExportedTableCreationResponse::_Internal { - public: - using HasBits = - decltype(std::declval()._impl_._has_bits_); - static constexpr ::int32_t kHasBitsOffset = - 8 * PROTOBUF_FIELD_OFFSET(ExportedTableCreationResponse, _impl_._has_bits_); -}; - -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 ::io::deephaven::proto::backplane::grpc::ExportedTableCreationResponse& from_msg) - : _has_bits_{from._has_bits_}, - _cached_size_{0}, - error_info_(arena, from.error_info_), - schema_header_(arena, from.schema_header_) {} - -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_, from); - ::uint32_t cached_has_bits = _impl_._has_bits_[0]; - _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_) + - offsetof(Impl_, size_), - offsetof(Impl_, is_static_) - - offsetof(Impl_, size_) + - sizeof(Impl_::is_static_)); - - // @@protoc_insertion_point(copy_constructor:io.deephaven.proto.backplane.grpc.ExportedTableCreationResponse) -} -inline PROTOBUF_NDEBUG_INLINE ExportedTableCreationResponse::Impl_::Impl_( - ::google::protobuf::internal::InternalVisibility visibility, - ::google::protobuf::Arena* arena) - : _cached_size_{0}, - error_info_(arena), - schema_header_(arena) {} - -inline void ExportedTableCreationResponse::SharedCtor(::_pb::Arena* arena) { - new (&_impl_) Impl_(internal_visibility(), arena); - ::memset(reinterpret_cast(&_impl_) + - offsetof(Impl_, result_id_), - 0, - offsetof(Impl_, is_static_) - - offsetof(Impl_, result_id_) + - sizeof(Impl_::is_static_)); -} -ExportedTableCreationResponse::~ExportedTableCreationResponse() { - // @@protoc_insertion_point(destructor:io.deephaven.proto.backplane.grpc.ExportedTableCreationResponse) - _internal_metadata_.Delete<::google::protobuf::UnknownFieldSet>(); - SharedDtor(); -} -inline void ExportedTableCreationResponse::SharedDtor() { - ABSL_DCHECK(GetArena() == nullptr); - _impl_.error_info_.Destroy(); - _impl_.schema_header_.Destroy(); - delete _impl_.result_id_; - _impl_.~Impl_(); -} - -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_ = { - { - PROTOBUF_FIELD_OFFSET(ExportedTableCreationResponse, _impl_._has_bits_), - 0, // no _extensions_ - 6, 56, // max_field_number, fast_idx_mask - offsetof(decltype(_table_), field_lookup_table), - 4294967232, // skipmap - offsetof(decltype(_table_), field_entries), - 6, // num_field_entries - 1, // num_aux_entries - offsetof(decltype(_table_), 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::ExportedTableCreationResponse>(), // to_prefetch - #endif // PROTOBUF_PREFETCH_PARSE_TABLE - }, {{ - {::_pbi::TcParser::MiniParse, {}}, - // .io.deephaven.proto.backplane.grpc.TableReference result_id = 1; - {::_pbi::TcParser::FastMtS1, - {10, 0, 0, PROTOBUF_FIELD_OFFSET(ExportedTableCreationResponse, _impl_.result_id_)}}, - // bool success = 2; - {::_pbi::TcParser::SingularVarintNoZag1(), - {16, 63, 0, PROTOBUF_FIELD_OFFSET(ExportedTableCreationResponse, _impl_.success_)}}, - // string error_info = 3; - {::_pbi::TcParser::FastUS1, - {26, 63, 0, PROTOBUF_FIELD_OFFSET(ExportedTableCreationResponse, _impl_.error_info_)}}, - // bytes schema_header = 4; - {::_pbi::TcParser::FastBS1, - {34, 63, 0, PROTOBUF_FIELD_OFFSET(ExportedTableCreationResponse, _impl_.schema_header_)}}, - // bool is_static = 5; - {::_pbi::TcParser::SingularVarintNoZag1(), - {40, 63, 0, PROTOBUF_FIELD_OFFSET(ExportedTableCreationResponse, _impl_.is_static_)}}, - // sint64 size = 6 [jstype = JS_STRING]; - {::_pbi::TcParser::FastZ64S1, - {48, 63, 0, PROTOBUF_FIELD_OFFSET(ExportedTableCreationResponse, _impl_.size_)}}, - {::_pbi::TcParser::MiniParse, {}}, - }}, {{ - 65535, 65535 - }}, {{ - // .io.deephaven.proto.backplane.grpc.TableReference result_id = 1; - {PROTOBUF_FIELD_OFFSET(ExportedTableCreationResponse, _impl_.result_id_), _Internal::kHasBitsOffset + 0, 0, - (0 | ::_fl::kFcOptional | ::_fl::kMessage | ::_fl::kTvTable)}, - // bool success = 2; - {PROTOBUF_FIELD_OFFSET(ExportedTableCreationResponse, _impl_.success_), -1, 0, - (0 | ::_fl::kFcSingular | ::_fl::kBool)}, - // string error_info = 3; - {PROTOBUF_FIELD_OFFSET(ExportedTableCreationResponse, _impl_.error_info_), -1, 0, - (0 | ::_fl::kFcSingular | ::_fl::kUtf8String | ::_fl::kRepAString)}, - // bytes schema_header = 4; - {PROTOBUF_FIELD_OFFSET(ExportedTableCreationResponse, _impl_.schema_header_), -1, 0, - (0 | ::_fl::kFcSingular | ::_fl::kBytes | ::_fl::kRepAString)}, - // bool is_static = 5; - {PROTOBUF_FIELD_OFFSET(ExportedTableCreationResponse, _impl_.is_static_), -1, 0, - (0 | ::_fl::kFcSingular | ::_fl::kBool)}, - // sint64 size = 6 [jstype = JS_STRING]; - {PROTOBUF_FIELD_OFFSET(ExportedTableCreationResponse, _impl_.size_), -1, 0, - (0 | ::_fl::kFcSingular | ::_fl::kSInt64)}, - }}, {{ - {::_pbi::TcParser::GetTable<::io::deephaven::proto::backplane::grpc::TableReference>()}, - }}, {{ - "\77\0\0\12\0\0\0\0" - "io.deephaven.proto.backplane.grpc.ExportedTableCreationResponse" - "error_info" - }}, -}; - -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; - // 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>(); -} - -#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; - (void) cached_has_bits; - - if (!from._internal_error_info().empty()) { - _this->_internal_set_error_info(from._internal_error_info()); - } - if (!from._internal_schema_header().empty()) { - _this->_internal_set_schema_header(from._internal_schema_header()); - } - 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->_impl_.size_ = from._impl_.size_; - } - if (from._internal_success() != 0) { - _this->_impl_.success_ = from._impl_.success_; - } - if (from._internal_is_static() != 0) { - _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_); -} - -void ExportedTableCreationResponse::CopyFrom(const ExportedTableCreationResponse& from) { -// @@protoc_insertion_point(class_specific_copy_from_start:io.deephaven.proto.backplane.grpc.ExportedTableCreationResponse) - if (&from == this) return; - Clear(); - MergeFrom(from); -} - - -void ExportedTableCreationResponse::InternalSwap(ExportedTableCreationResponse* PROTOBUF_RESTRICT other) { - using std::swap; - auto* arena = GetArena(); - ABSL_DCHECK_EQ(arena, other->GetArena()); - _internal_metadata_.InternalSwap(&other->_internal_metadata_); - swap(_impl_._has_bits_[0], other->_impl_._has_bits_[0]); - ::_pbi::ArenaStringPtr::InternalSwap(&_impl_.error_info_, &other->_impl_.error_info_, arena); - ::_pbi::ArenaStringPtr::InternalSwap(&_impl_.schema_header_, &other->_impl_.schema_header_, arena); - ::google::protobuf::internal::memswap< - PROTOBUF_FIELD_OFFSET(ExportedTableCreationResponse, _impl_.is_static_) - + sizeof(ExportedTableCreationResponse::_impl_.is_static_) - - PROTOBUF_FIELD_OFFSET(ExportedTableCreationResponse, _impl_.result_id_)>( - reinterpret_cast(&_impl_.result_id_), - reinterpret_cast(&other->_impl_.result_id_)); -} - -::google::protobuf::Metadata ExportedTableCreationResponse::GetMetadata() const { - return ::google::protobuf::Message::GetMetadataImpl(GetClassData()->full()); -} -// =================================================================== - -class FetchTableRequest::_Internal { - public: - using HasBits = - decltype(std::declval()._impl_._has_bits_); - static constexpr ::int32_t kHasBitsOffset = - 8 * PROTOBUF_FIELD_OFFSET(FetchTableRequest, _impl_._has_bits_); -}; - -void FetchTableRequest::clear_result_id() { - ::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 ::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_, from); - ::uint32_t cached_has_bits = _impl_._has_bits_[0]; - _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) -} -inline PROTOBUF_NDEBUG_INLINE FetchTableRequest::Impl_::Impl_( - ::google::protobuf::internal::InternalVisibility visibility, - ::google::protobuf::Arena* arena) - : _cached_size_{0} {} - -inline void FetchTableRequest::SharedCtor(::_pb::Arena* arena) { - new (&_impl_) Impl_(internal_visibility(), arena); - ::memset(reinterpret_cast(&_impl_) + - offsetof(Impl_, source_id_), - 0, - offsetof(Impl_, result_id_) - - offsetof(Impl_, source_id_) + - sizeof(Impl_::result_id_)); -} -FetchTableRequest::~FetchTableRequest() { - // @@protoc_insertion_point(destructor:io.deephaven.proto.backplane.grpc.FetchTableRequest) - _internal_metadata_.Delete<::google::protobuf::UnknownFieldSet>(); - SharedDtor(); -} -inline void FetchTableRequest::SharedDtor() { - ABSL_DCHECK(GetArena() == nullptr); - delete _impl_.source_id_; - delete _impl_.result_id_; - _impl_.~Impl_(); -} - -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_ = { - { - PROTOBUF_FIELD_OFFSET(FetchTableRequest, _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 - 2, // num_aux_entries - offsetof(decltype(_table_), 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::FetchTableRequest>(), // to_prefetch - #endif // PROTOBUF_PREFETCH_PARSE_TABLE - }, {{ - // .io.deephaven.proto.backplane.grpc.Ticket result_id = 2; - {::_pbi::TcParser::FastMtS1, - {18, 1, 1, PROTOBUF_FIELD_OFFSET(FetchTableRequest, _impl_.result_id_)}}, - // .io.deephaven.proto.backplane.grpc.TableReference source_id = 1; - {::_pbi::TcParser::FastMtS1, - {10, 0, 0, PROTOBUF_FIELD_OFFSET(FetchTableRequest, _impl_.source_id_)}}, - }}, {{ - 65535, 65535 - }}, {{ - // .io.deephaven.proto.backplane.grpc.TableReference source_id = 1; - {PROTOBUF_FIELD_OFFSET(FetchTableRequest, _impl_.source_id_), _Internal::kHasBitsOffset + 0, 0, - (0 | ::_fl::kFcOptional | ::_fl::kMessage | ::_fl::kTvTable)}, - // .io.deephaven.proto.backplane.grpc.Ticket result_id = 2; - {PROTOBUF_FIELD_OFFSET(FetchTableRequest, _impl_.result_id_), _Internal::kHasBitsOffset + 1, 1, - (0 | ::_fl::kFcOptional | ::_fl::kMessage | ::_fl::kTvTable)}, - }}, {{ - {::_pbi::TcParser::GetTable<::io::deephaven::proto::backplane::grpc::TableReference>()}, - {::_pbi::TcParser::GetTable<::io::deephaven::proto::backplane::grpc::Ticket>()}, - }}, {{ - }}, -}; - -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) { - 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>(); -} - -#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; - (void) cached_has_bits; - - cached_has_bits = from._impl_._has_bits_[0]; - if (cached_has_bits & 0x00000003u) { - 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_); - } - } - if (cached_has_bits & 0x00000002u) { - 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_); -} - -void FetchTableRequest::CopyFrom(const FetchTableRequest& from) { -// @@protoc_insertion_point(class_specific_copy_from_start:io.deephaven.proto.backplane.grpc.FetchTableRequest) - if (&from == this) return; - Clear(); - MergeFrom(from); -} - - -void FetchTableRequest::InternalSwap(FetchTableRequest* PROTOBUF_RESTRICT other) { - using std::swap; - _internal_metadata_.InternalSwap(&other->_internal_metadata_); - swap(_impl_._has_bits_[0], other->_impl_._has_bits_[0]); - ::google::protobuf::internal::memswap< - PROTOBUF_FIELD_OFFSET(FetchTableRequest, _impl_.result_id_) - + sizeof(FetchTableRequest::_impl_.result_id_) - - PROTOBUF_FIELD_OFFSET(FetchTableRequest, _impl_.source_id_)>( - reinterpret_cast(&_impl_.source_id_), - reinterpret_cast(&other->_impl_.source_id_)); -} - -::google::protobuf::Metadata FetchTableRequest::GetMetadata() const { - return ::google::protobuf::Message::GetMetadataImpl(GetClassData()->full()); -} -// =================================================================== - -class ApplyPreviewColumnsRequest::_Internal { - public: - using HasBits = - decltype(std::declval()._impl_._has_bits_); - static constexpr ::int32_t kHasBitsOffset = - 8 * PROTOBUF_FIELD_OFFSET(ApplyPreviewColumnsRequest, _impl_._has_bits_); -}; - -void ApplyPreviewColumnsRequest::clear_result_id() { - ::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 ::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_, from); - ::uint32_t cached_has_bits = _impl_._has_bits_[0]; - _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) -} -inline PROTOBUF_NDEBUG_INLINE ApplyPreviewColumnsRequest::Impl_::Impl_( - ::google::protobuf::internal::InternalVisibility visibility, - ::google::protobuf::Arena* arena) - : _cached_size_{0} {} - -inline void ApplyPreviewColumnsRequest::SharedCtor(::_pb::Arena* arena) { - new (&_impl_) Impl_(internal_visibility(), arena); - ::memset(reinterpret_cast(&_impl_) + - offsetof(Impl_, source_id_), - 0, - offsetof(Impl_, result_id_) - - offsetof(Impl_, source_id_) + - sizeof(Impl_::result_id_)); -} -ApplyPreviewColumnsRequest::~ApplyPreviewColumnsRequest() { - // @@protoc_insertion_point(destructor:io.deephaven.proto.backplane.grpc.ApplyPreviewColumnsRequest) - _internal_metadata_.Delete<::google::protobuf::UnknownFieldSet>(); - SharedDtor(); -} -inline void ApplyPreviewColumnsRequest::SharedDtor() { - ABSL_DCHECK(GetArena() == nullptr); - delete _impl_.source_id_; - delete _impl_.result_id_; - _impl_.~Impl_(); -} - -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_ = { - { - PROTOBUF_FIELD_OFFSET(ApplyPreviewColumnsRequest, _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 - 2, // num_aux_entries - offsetof(decltype(_table_), 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::ApplyPreviewColumnsRequest>(), // to_prefetch - #endif // PROTOBUF_PREFETCH_PARSE_TABLE - }, {{ - // .io.deephaven.proto.backplane.grpc.Ticket result_id = 2; - {::_pbi::TcParser::FastMtS1, - {18, 1, 1, PROTOBUF_FIELD_OFFSET(ApplyPreviewColumnsRequest, _impl_.result_id_)}}, - // .io.deephaven.proto.backplane.grpc.TableReference source_id = 1; - {::_pbi::TcParser::FastMtS1, - {10, 0, 0, PROTOBUF_FIELD_OFFSET(ApplyPreviewColumnsRequest, _impl_.source_id_)}}, - }}, {{ - 65535, 65535 - }}, {{ - // .io.deephaven.proto.backplane.grpc.TableReference source_id = 1; - {PROTOBUF_FIELD_OFFSET(ApplyPreviewColumnsRequest, _impl_.source_id_), _Internal::kHasBitsOffset + 0, 0, - (0 | ::_fl::kFcOptional | ::_fl::kMessage | ::_fl::kTvTable)}, - // .io.deephaven.proto.backplane.grpc.Ticket result_id = 2; - {PROTOBUF_FIELD_OFFSET(ApplyPreviewColumnsRequest, _impl_.result_id_), _Internal::kHasBitsOffset + 1, 1, - (0 | ::_fl::kFcOptional | ::_fl::kMessage | ::_fl::kTvTable)}, - }}, {{ - {::_pbi::TcParser::GetTable<::io::deephaven::proto::backplane::grpc::TableReference>()}, - {::_pbi::TcParser::GetTable<::io::deephaven::proto::backplane::grpc::Ticket>()}, - }}, {{ - }}, -}; - -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) { - 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>(); -} - -#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; - (void) cached_has_bits; - - cached_has_bits = from._impl_._has_bits_[0]; - if (cached_has_bits & 0x00000003u) { - 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_); - } - } - if (cached_has_bits & 0x00000002u) { - 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_); -} - -void ApplyPreviewColumnsRequest::CopyFrom(const ApplyPreviewColumnsRequest& from) { -// @@protoc_insertion_point(class_specific_copy_from_start:io.deephaven.proto.backplane.grpc.ApplyPreviewColumnsRequest) - if (&from == this) return; - Clear(); - MergeFrom(from); -} - - -void ApplyPreviewColumnsRequest::InternalSwap(ApplyPreviewColumnsRequest* PROTOBUF_RESTRICT other) { - using std::swap; - _internal_metadata_.InternalSwap(&other->_internal_metadata_); - swap(_impl_._has_bits_[0], other->_impl_._has_bits_[0]); - ::google::protobuf::internal::memswap< - PROTOBUF_FIELD_OFFSET(ApplyPreviewColumnsRequest, _impl_.result_id_) - + sizeof(ApplyPreviewColumnsRequest::_impl_.result_id_) - - PROTOBUF_FIELD_OFFSET(ApplyPreviewColumnsRequest, _impl_.source_id_)>( - reinterpret_cast(&_impl_.source_id_), - reinterpret_cast(&other->_impl_.source_id_)); -} - -::google::protobuf::Metadata ApplyPreviewColumnsRequest::GetMetadata() const { - return ::google::protobuf::Message::GetMetadataImpl(GetClassData()->full()); -} -// =================================================================== - -class ExportedTableUpdatesRequest::_Internal { - public: -}; - -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>( - from._internal_metadata_); - - // @@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 - {{ - }}, -}; - - - - - - - - -::google::protobuf::Metadata ExportedTableUpdatesRequest::GetMetadata() const { - return ::google::protobuf::internal::ZeroFieldsBase::GetMetadataImpl(GetClassData()->full()); -} -// =================================================================== - -class ExportedTableUpdateMessage::_Internal { - public: - using HasBits = - decltype(std::declval()._impl_._has_bits_); - static constexpr ::int32_t kHasBitsOffset = - 8 * PROTOBUF_FIELD_OFFSET(ExportedTableUpdateMessage, _impl_._has_bits_); -}; - -void ExportedTableUpdateMessage::clear_export_id() { - ::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 ::io::deephaven::proto::backplane::grpc::ExportedTableUpdateMessage& from_msg) - : _has_bits_{from._has_bits_}, - _cached_size_{0}, - update_failure_message_(arena, from.update_failure_message_) {} - -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_, from); - ::uint32_t cached_has_bits = _impl_._has_bits_[0]; - _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) -} -inline PROTOBUF_NDEBUG_INLINE ExportedTableUpdateMessage::Impl_::Impl_( - ::google::protobuf::internal::InternalVisibility visibility, - ::google::protobuf::Arena* arena) - : _cached_size_{0}, - update_failure_message_(arena) {} - -inline void ExportedTableUpdateMessage::SharedCtor(::_pb::Arena* arena) { - new (&_impl_) Impl_(internal_visibility(), arena); - ::memset(reinterpret_cast(&_impl_) + - offsetof(Impl_, export_id_), - 0, - offsetof(Impl_, size_) - - offsetof(Impl_, export_id_) + - sizeof(Impl_::size_)); -} -ExportedTableUpdateMessage::~ExportedTableUpdateMessage() { - // @@protoc_insertion_point(destructor:io.deephaven.proto.backplane.grpc.ExportedTableUpdateMessage) - _internal_metadata_.Delete<::google::protobuf::UnknownFieldSet>(); - SharedDtor(); -} -inline void ExportedTableUpdateMessage::SharedDtor() { - ABSL_DCHECK(GetArena() == nullptr); - _impl_.update_failure_message_.Destroy(); - delete _impl_.export_id_; - _impl_.~Impl_(); -} - -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_ = { - { - PROTOBUF_FIELD_OFFSET(ExportedTableUpdateMessage, _impl_._has_bits_), - 0, // no _extensions_ - 3, 24, // max_field_number, fast_idx_mask - offsetof(decltype(_table_), field_lookup_table), - 4294967288, // skipmap - offsetof(decltype(_table_), field_entries), - 3, // num_field_entries - 1, // num_aux_entries - offsetof(decltype(_table_), 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::ExportedTableUpdateMessage>(), // to_prefetch - #endif // PROTOBUF_PREFETCH_PARSE_TABLE - }, {{ - {::_pbi::TcParser::MiniParse, {}}, - // .io.deephaven.proto.backplane.grpc.Ticket export_id = 1; - {::_pbi::TcParser::FastMtS1, - {10, 0, 0, PROTOBUF_FIELD_OFFSET(ExportedTableUpdateMessage, _impl_.export_id_)}}, - // sint64 size = 2 [jstype = JS_STRING]; - {::_pbi::TcParser::FastZ64S1, - {16, 63, 0, PROTOBUF_FIELD_OFFSET(ExportedTableUpdateMessage, _impl_.size_)}}, - // string update_failure_message = 3; - {::_pbi::TcParser::FastUS1, - {26, 63, 0, PROTOBUF_FIELD_OFFSET(ExportedTableUpdateMessage, _impl_.update_failure_message_)}}, - }}, {{ - 65535, 65535 - }}, {{ - // .io.deephaven.proto.backplane.grpc.Ticket export_id = 1; - {PROTOBUF_FIELD_OFFSET(ExportedTableUpdateMessage, _impl_.export_id_), _Internal::kHasBitsOffset + 0, 0, - (0 | ::_fl::kFcOptional | ::_fl::kMessage | ::_fl::kTvTable)}, - // sint64 size = 2 [jstype = JS_STRING]; - {PROTOBUF_FIELD_OFFSET(ExportedTableUpdateMessage, _impl_.size_), -1, 0, - (0 | ::_fl::kFcSingular | ::_fl::kSInt64)}, - // string update_failure_message = 3; - {PROTOBUF_FIELD_OFFSET(ExportedTableUpdateMessage, _impl_.update_failure_message_), -1, 0, - (0 | ::_fl::kFcSingular | ::_fl::kUtf8String | ::_fl::kRepAString)}, - }}, {{ - {::_pbi::TcParser::GetTable<::io::deephaven::proto::backplane::grpc::Ticket>()}, - }}, {{ - "\74\0\0\26\0\0\0\0" - "io.deephaven.proto.backplane.grpc.ExportedTableUpdateMessage" - "update_failure_message" - }}, -}; - -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; - - _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>(); -} - -#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; - (void) cached_has_bits; - - if (!from._internal_update_failure_message().empty()) { - _this->_internal_set_update_failure_message(from._internal_update_failure_message()); - } - 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->_impl_.size_ = from._impl_.size_; - } - _this->_impl_._has_bits_[0] |= cached_has_bits; - _this->_internal_metadata_.MergeFrom<::google::protobuf::UnknownFieldSet>(from._internal_metadata_); -} - -void ExportedTableUpdateMessage::CopyFrom(const ExportedTableUpdateMessage& from) { -// @@protoc_insertion_point(class_specific_copy_from_start:io.deephaven.proto.backplane.grpc.ExportedTableUpdateMessage) - if (&from == this) return; - Clear(); - MergeFrom(from); -} - - -void ExportedTableUpdateMessage::InternalSwap(ExportedTableUpdateMessage* PROTOBUF_RESTRICT other) { - using std::swap; - auto* arena = GetArena(); - ABSL_DCHECK_EQ(arena, other->GetArena()); - _internal_metadata_.InternalSwap(&other->_internal_metadata_); - swap(_impl_._has_bits_[0], other->_impl_._has_bits_[0]); - ::_pbi::ArenaStringPtr::InternalSwap(&_impl_.update_failure_message_, &other->_impl_.update_failure_message_, arena); - ::google::protobuf::internal::memswap< - PROTOBUF_FIELD_OFFSET(ExportedTableUpdateMessage, _impl_.size_) - + sizeof(ExportedTableUpdateMessage::_impl_.size_) - - PROTOBUF_FIELD_OFFSET(ExportedTableUpdateMessage, _impl_.export_id_)>( - reinterpret_cast(&_impl_.export_id_), - reinterpret_cast(&other->_impl_.export_id_)); -} - -::google::protobuf::Metadata ExportedTableUpdateMessage::GetMetadata() const { - return ::google::protobuf::Message::GetMetadataImpl(GetClassData()->full()); -} -// =================================================================== - -class EmptyTableRequest::_Internal { - public: - using HasBits = - decltype(std::declval()._impl_._has_bits_); - static constexpr ::int32_t kHasBitsOffset = - 8 * PROTOBUF_FIELD_OFFSET(EmptyTableRequest, _impl_._has_bits_); -}; - -void EmptyTableRequest::clear_result_id() { - ::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 ::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_, from); - ::uint32_t cached_has_bits = _impl_._has_bits_[0]; - _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) -} -inline PROTOBUF_NDEBUG_INLINE EmptyTableRequest::Impl_::Impl_( - ::google::protobuf::internal::InternalVisibility visibility, - ::google::protobuf::Arena* arena) - : _cached_size_{0} {} - -inline void EmptyTableRequest::SharedCtor(::_pb::Arena* arena) { - new (&_impl_) Impl_(internal_visibility(), arena); - ::memset(reinterpret_cast(&_impl_) + - offsetof(Impl_, result_id_), - 0, - offsetof(Impl_, size_) - - offsetof(Impl_, result_id_) + - sizeof(Impl_::size_)); -} -EmptyTableRequest::~EmptyTableRequest() { - // @@protoc_insertion_point(destructor:io.deephaven.proto.backplane.grpc.EmptyTableRequest) - _internal_metadata_.Delete<::google::protobuf::UnknownFieldSet>(); - SharedDtor(); -} -inline void EmptyTableRequest::SharedDtor() { - ABSL_DCHECK(GetArena() == nullptr); - delete _impl_.result_id_; - _impl_.~Impl_(); -} - -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_ = { - { - PROTOBUF_FIELD_OFFSET(EmptyTableRequest, _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::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, - {16, 63, 0, PROTOBUF_FIELD_OFFSET(EmptyTableRequest, _impl_.size_)}}, - // .io.deephaven.proto.backplane.grpc.Ticket result_id = 1; - {::_pbi::TcParser::FastMtS1, - {10, 0, 0, PROTOBUF_FIELD_OFFSET(EmptyTableRequest, _impl_.result_id_)}}, - }}, {{ - 65535, 65535 - }}, {{ - // .io.deephaven.proto.backplane.grpc.Ticket result_id = 1; - {PROTOBUF_FIELD_OFFSET(EmptyTableRequest, _impl_.result_id_), _Internal::kHasBitsOffset + 0, 0, - (0 | ::_fl::kFcOptional | ::_fl::kMessage | ::_fl::kTvTable)}, - // sint64 size = 2 [jstype = JS_STRING]; - {PROTOBUF_FIELD_OFFSET(EmptyTableRequest, _impl_.size_), -1, 0, - (0 | ::_fl::kFcSingular | ::_fl::kSInt64)}, - }}, {{ - {::_pbi::TcParser::GetTable<::io::deephaven::proto::backplane::grpc::Ticket>()}, - }}, {{ - }}, -}; - -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; - - 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>(); -} - -#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; - - 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->_impl_.size_ = from._impl_.size_; - } - _this->_impl_._has_bits_[0] |= cached_has_bits; - _this->_internal_metadata_.MergeFrom<::google::protobuf::UnknownFieldSet>(from._internal_metadata_); -} - -void EmptyTableRequest::CopyFrom(const EmptyTableRequest& from) { -// @@protoc_insertion_point(class_specific_copy_from_start:io.deephaven.proto.backplane.grpc.EmptyTableRequest) - if (&from == this) return; - Clear(); - MergeFrom(from); -} - - -void EmptyTableRequest::InternalSwap(EmptyTableRequest* PROTOBUF_RESTRICT other) { - using std::swap; - _internal_metadata_.InternalSwap(&other->_internal_metadata_); - swap(_impl_._has_bits_[0], other->_impl_._has_bits_[0]); - ::google::protobuf::internal::memswap< - PROTOBUF_FIELD_OFFSET(EmptyTableRequest, _impl_.size_) - + sizeof(EmptyTableRequest::_impl_.size_) - - PROTOBUF_FIELD_OFFSET(EmptyTableRequest, _impl_.result_id_)>( - reinterpret_cast(&_impl_.result_id_), - reinterpret_cast(&other->_impl_.result_id_)); -} - -::google::protobuf::Metadata EmptyTableRequest::GetMetadata() const { - return ::google::protobuf::Message::GetMetadataImpl(GetClassData()->full()); -} -// =================================================================== - -class TimeTableRequest::_Internal { - public: - using HasBits = - decltype(std::declval()._impl_._has_bits_); - static constexpr ::int32_t kHasBitsOffset = - 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_); -}; - -void TimeTableRequest::clear_result_id() { - ::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 ::io::deephaven::proto::backplane::grpc::TimeTableRequest& from_msg) - : _has_bits_{from._has_bits_}, - _cached_size_{0}, - start_time_{}, - period_{}, - _oneof_case_{from._oneof_case_[0], from._oneof_case_[1]} {} - -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_, from); - ::uint32_t cached_has_bits = _impl_._has_bits_[0]; - _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: - break; - case kStartTimeNanos: - _impl_.start_time_.start_time_nanos_ = from._impl_.start_time_.start_time_nanos_; - break; - case kStartTimeString: - new (&_impl_.start_time_.start_time_string_) decltype(_impl_.start_time_.start_time_string_){arena, from._impl_.start_time_.start_time_string_}; - break; - } - switch (period_case()) { - case PERIOD_NOT_SET: - break; - case kPeriodNanos: - _impl_.period_.period_nanos_ = from._impl_.period_.period_nanos_; - break; - case kPeriodString: - new (&_impl_.period_.period_string_) decltype(_impl_.period_.period_string_){arena, from._impl_.period_.period_string_}; - break; - } - - // @@protoc_insertion_point(copy_constructor:io.deephaven.proto.backplane.grpc.TimeTableRequest) -} -inline PROTOBUF_NDEBUG_INLINE TimeTableRequest::Impl_::Impl_( - ::google::protobuf::internal::InternalVisibility visibility, - ::google::protobuf::Arena* arena) - : _cached_size_{0}, - start_time_{}, - period_{}, - _oneof_case_{} {} - -inline void TimeTableRequest::SharedCtor(::_pb::Arena* arena) { - new (&_impl_) Impl_(internal_visibility(), arena); - ::memset(reinterpret_cast(&_impl_) + - offsetof(Impl_, result_id_), - 0, - offsetof(Impl_, blink_table_) - - offsetof(Impl_, result_id_) + - sizeof(Impl_::blink_table_)); -} -TimeTableRequest::~TimeTableRequest() { - // @@protoc_insertion_point(destructor:io.deephaven.proto.backplane.grpc.TimeTableRequest) - _internal_metadata_.Delete<::google::protobuf::UnknownFieldSet>(); - SharedDtor(); -} -inline void TimeTableRequest::SharedDtor() { - ABSL_DCHECK(GetArena() == nullptr); - delete _impl_.result_id_; - if (has_start_time()) { - clear_start_time(); - } - if (has_period()) { - clear_period(); - } - _impl_.~Impl_(); -} - -void TimeTableRequest::clear_start_time() { -// @@protoc_insertion_point(one_of_clear_start:io.deephaven.proto.backplane.grpc.TimeTableRequest) - ::google::protobuf::internal::TSanWrite(&_impl_); - switch (start_time_case()) { - case kStartTimeNanos: { - // No need to clear - break; - } - case kStartTimeString: { - _impl_.start_time_.start_time_string_.Destroy(); - break; - } - case START_TIME_NOT_SET: { - break; - } - } - _impl_._oneof_case_[0] = START_TIME_NOT_SET; -} - -void TimeTableRequest::clear_period() { -// @@protoc_insertion_point(one_of_clear_start:io.deephaven.proto.backplane.grpc.TimeTableRequest) - ::google::protobuf::internal::TSanWrite(&_impl_); - switch (period_case()) { - case kPeriodNanos: { - // No need to clear - break; - } - case kPeriodString: { - _impl_.period_.period_string_.Destroy(); - break; - } - case PERIOD_NOT_SET: { - break; - } - } - _impl_._oneof_case_[1] = PERIOD_NOT_SET; -} - - -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_ = { - { - PROTOBUF_FIELD_OFFSET(TimeTableRequest, _impl_._has_bits_), - 0, // no _extensions_ - 6, 8, // max_field_number, fast_idx_mask - offsetof(decltype(_table_), field_lookup_table), - 4294967232, // skipmap - offsetof(decltype(_table_), field_entries), - 6, // num_field_entries - 1, // num_aux_entries - offsetof(decltype(_table_), 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::TimeTableRequest>(), // to_prefetch - #endif // PROTOBUF_PREFETCH_PARSE_TABLE - }, {{ - // bool blink_table = 4; - {::_pbi::TcParser::SingularVarintNoZag1(), - {32, 63, 0, PROTOBUF_FIELD_OFFSET(TimeTableRequest, _impl_.blink_table_)}}, - // .io.deephaven.proto.backplane.grpc.Ticket result_id = 1; - {::_pbi::TcParser::FastMtS1, - {10, 0, 0, PROTOBUF_FIELD_OFFSET(TimeTableRequest, _impl_.result_id_)}}, - }}, {{ - 65535, 65535 - }}, {{ - // .io.deephaven.proto.backplane.grpc.Ticket result_id = 1; - {PROTOBUF_FIELD_OFFSET(TimeTableRequest, _impl_.result_id_), _Internal::kHasBitsOffset + 0, 0, - (0 | ::_fl::kFcOptional | ::_fl::kMessage | ::_fl::kTvTable)}, - // sint64 start_time_nanos = 2 [jstype = JS_STRING]; - {PROTOBUF_FIELD_OFFSET(TimeTableRequest, _impl_.start_time_.start_time_nanos_), _Internal::kOneofCaseOffset + 0, 0, - (0 | ::_fl::kFcOneof | ::_fl::kSInt64)}, - // sint64 period_nanos = 3 [jstype = JS_STRING]; - {PROTOBUF_FIELD_OFFSET(TimeTableRequest, _impl_.period_.period_nanos_), _Internal::kOneofCaseOffset + 4, 0, - (0 | ::_fl::kFcOneof | ::_fl::kSInt64)}, - // bool blink_table = 4; - {PROTOBUF_FIELD_OFFSET(TimeTableRequest, _impl_.blink_table_), -1, 0, - (0 | ::_fl::kFcSingular | ::_fl::kBool)}, - // string start_time_string = 5; - {PROTOBUF_FIELD_OFFSET(TimeTableRequest, _impl_.start_time_.start_time_string_), _Internal::kOneofCaseOffset + 0, 0, - (0 | ::_fl::kFcOneof | ::_fl::kUtf8String | ::_fl::kRepAString)}, - // string period_string = 6; - {PROTOBUF_FIELD_OFFSET(TimeTableRequest, _impl_.period_.period_string_), _Internal::kOneofCaseOffset + 4, 0, - (0 | ::_fl::kFcOneof | ::_fl::kUtf8String | ::_fl::kRepAString)}, - }}, {{ - {::_pbi::TcParser::GetTable<::io::deephaven::proto::backplane::grpc::Ticket>()}, - }}, {{ - "\62\0\0\0\0\21\15\0" - "io.deephaven.proto.backplane.grpc.TimeTableRequest" - "start_time_string" - "period_string" - }}, -}; - -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; - - 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>(); -} - -#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; - - 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->_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; - } - - 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; - } - } - 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; - } - - 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_); -} - -void TimeTableRequest::CopyFrom(const TimeTableRequest& from) { -// @@protoc_insertion_point(class_specific_copy_from_start:io.deephaven.proto.backplane.grpc.TimeTableRequest) - if (&from == this) return; - Clear(); - MergeFrom(from); -} - - -void TimeTableRequest::InternalSwap(TimeTableRequest* PROTOBUF_RESTRICT other) { - using std::swap; - _internal_metadata_.InternalSwap(&other->_internal_metadata_); - swap(_impl_._has_bits_[0], other->_impl_._has_bits_[0]); - ::google::protobuf::internal::memswap< - PROTOBUF_FIELD_OFFSET(TimeTableRequest, _impl_.blink_table_) - + sizeof(TimeTableRequest::_impl_.blink_table_) - - PROTOBUF_FIELD_OFFSET(TimeTableRequest, _impl_.result_id_)>( - reinterpret_cast(&_impl_.result_id_), - reinterpret_cast(&other->_impl_.result_id_)); - swap(_impl_.start_time_, other->_impl_.start_time_); - swap(_impl_.period_, other->_impl_.period_); - swap(_impl_._oneof_case_[0], other->_impl_._oneof_case_[0]); - swap(_impl_._oneof_case_[1], other->_impl_._oneof_case_[1]); -} - -::google::protobuf::Metadata TimeTableRequest::GetMetadata() const { - return ::google::protobuf::Message::GetMetadataImpl(GetClassData()->full()); -} -// =================================================================== - -class SelectOrUpdateRequest::_Internal { - public: - using HasBits = - decltype(std::declval()._impl_._has_bits_); - static constexpr ::int32_t kHasBitsOffset = - 8 * PROTOBUF_FIELD_OFFSET(SelectOrUpdateRequest, _impl_._has_bits_); -}; - -void SelectOrUpdateRequest::clear_result_id() { - ::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 ::io::deephaven::proto::backplane::grpc::SelectOrUpdateRequest& from_msg) - : _has_bits_{from._has_bits_}, - _cached_size_{0}, - column_specs_{visibility, arena, from.column_specs_} {} - -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_, from); - ::uint32_t cached_has_bits = _impl_._has_bits_[0]; - _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) -} -inline PROTOBUF_NDEBUG_INLINE SelectOrUpdateRequest::Impl_::Impl_( - ::google::protobuf::internal::InternalVisibility visibility, - ::google::protobuf::Arena* arena) - : _cached_size_{0}, - column_specs_{visibility, arena} {} - -inline void SelectOrUpdateRequest::SharedCtor(::_pb::Arena* arena) { - new (&_impl_) Impl_(internal_visibility(), arena); - ::memset(reinterpret_cast(&_impl_) + - offsetof(Impl_, result_id_), - 0, - offsetof(Impl_, source_id_) - - offsetof(Impl_, result_id_) + - sizeof(Impl_::source_id_)); -} -SelectOrUpdateRequest::~SelectOrUpdateRequest() { - // @@protoc_insertion_point(destructor:io.deephaven.proto.backplane.grpc.SelectOrUpdateRequest) - _internal_metadata_.Delete<::google::protobuf::UnknownFieldSet>(); - SharedDtor(); -} -inline void SelectOrUpdateRequest::SharedDtor() { - ABSL_DCHECK(GetArena() == nullptr); - delete _impl_.result_id_; - delete _impl_.source_id_; - _impl_.~Impl_(); -} - -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_ = { - { - PROTOBUF_FIELD_OFFSET(SelectOrUpdateRequest, _impl_._has_bits_), - 0, // no _extensions_ - 3, 24, // max_field_number, fast_idx_mask - offsetof(decltype(_table_), field_lookup_table), - 4294967288, // skipmap - offsetof(decltype(_table_), field_entries), - 3, // num_field_entries - 2, // num_aux_entries - offsetof(decltype(_table_), 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::SelectOrUpdateRequest>(), // to_prefetch - #endif // PROTOBUF_PREFETCH_PARSE_TABLE - }, {{ - {::_pbi::TcParser::MiniParse, {}}, - // .io.deephaven.proto.backplane.grpc.Ticket result_id = 1; - {::_pbi::TcParser::FastMtS1, - {10, 0, 0, PROTOBUF_FIELD_OFFSET(SelectOrUpdateRequest, _impl_.result_id_)}}, - // .io.deephaven.proto.backplane.grpc.TableReference source_id = 2; - {::_pbi::TcParser::FastMtS1, - {18, 1, 1, PROTOBUF_FIELD_OFFSET(SelectOrUpdateRequest, _impl_.source_id_)}}, - // repeated string column_specs = 3; - {::_pbi::TcParser::FastUR1, - {26, 63, 0, PROTOBUF_FIELD_OFFSET(SelectOrUpdateRequest, _impl_.column_specs_)}}, - }}, {{ - 65535, 65535 - }}, {{ - // .io.deephaven.proto.backplane.grpc.Ticket result_id = 1; - {PROTOBUF_FIELD_OFFSET(SelectOrUpdateRequest, _impl_.result_id_), _Internal::kHasBitsOffset + 0, 0, - (0 | ::_fl::kFcOptional | ::_fl::kMessage | ::_fl::kTvTable)}, - // .io.deephaven.proto.backplane.grpc.TableReference source_id = 2; - {PROTOBUF_FIELD_OFFSET(SelectOrUpdateRequest, _impl_.source_id_), _Internal::kHasBitsOffset + 1, 1, - (0 | ::_fl::kFcOptional | ::_fl::kMessage | ::_fl::kTvTable)}, - // repeated string column_specs = 3; - {PROTOBUF_FIELD_OFFSET(SelectOrUpdateRequest, _impl_.column_specs_), -1, 0, - (0 | ::_fl::kFcRepeated | ::_fl::kUtf8String | ::_fl::kRepSString)}, - }}, {{ - {::_pbi::TcParser::GetTable<::io::deephaven::proto::backplane::grpc::Ticket>()}, - {::_pbi::TcParser::GetTable<::io::deephaven::proto::backplane::grpc::TableReference>()}, - }}, {{ - "\67\0\0\14\0\0\0\0" - "io.deephaven.proto.backplane.grpc.SelectOrUpdateRequest" - "column_specs" - }}, -}; - -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; - - _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>(); -} - -#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; - (void) cached_has_bits; - - _this->_internal_mutable_column_specs()->MergeFrom(from._internal_column_specs()); - cached_has_bits = from._impl_._has_bits_[0]; - if (cached_has_bits & 0x00000003u) { - 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 (cached_has_bits & 0x00000002u) { - 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_); -} - -void SelectOrUpdateRequest::CopyFrom(const SelectOrUpdateRequest& from) { -// @@protoc_insertion_point(class_specific_copy_from_start:io.deephaven.proto.backplane.grpc.SelectOrUpdateRequest) - if (&from == this) return; - Clear(); - MergeFrom(from); -} - - -void SelectOrUpdateRequest::InternalSwap(SelectOrUpdateRequest* PROTOBUF_RESTRICT other) { - using std::swap; - _internal_metadata_.InternalSwap(&other->_internal_metadata_); - swap(_impl_._has_bits_[0], other->_impl_._has_bits_[0]); - _impl_.column_specs_.InternalSwap(&other->_impl_.column_specs_); - ::google::protobuf::internal::memswap< - PROTOBUF_FIELD_OFFSET(SelectOrUpdateRequest, _impl_.source_id_) - + sizeof(SelectOrUpdateRequest::_impl_.source_id_) - - PROTOBUF_FIELD_OFFSET(SelectOrUpdateRequest, _impl_.result_id_)>( - reinterpret_cast(&_impl_.result_id_), - reinterpret_cast(&other->_impl_.result_id_)); -} - -::google::protobuf::Metadata SelectOrUpdateRequest::GetMetadata() const { - return ::google::protobuf::Message::GetMetadataImpl(GetClassData()->full()); -} -// =================================================================== - -class MathContext::_Internal { - public: -}; - -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) -} -MathContext::MathContext( - ::google::protobuf::Arena* arena, const MathContext& from) - : MathContext(arena) { - MergeFrom(from); -} -inline PROTOBUF_NDEBUG_INLINE MathContext::Impl_::Impl_( - ::google::protobuf::internal::InternalVisibility visibility, - ::google::protobuf::Arena* arena) - : _cached_size_{0} {} - -inline void MathContext::SharedCtor(::_pb::Arena* arena) { - new (&_impl_) Impl_(internal_visibility(), arena); - ::memset(reinterpret_cast(&_impl_) + - offsetof(Impl_, precision_), - 0, - offsetof(Impl_, rounding_mode_) - - offsetof(Impl_, precision_) + - sizeof(Impl_::rounding_mode_)); -} -MathContext::~MathContext() { - // @@protoc_insertion_point(destructor:io.deephaven.proto.backplane.grpc.MathContext) - _internal_metadata_.Delete<::google::protobuf::UnknownFieldSet>(); - SharedDtor(); -} -inline void MathContext::SharedDtor() { - ABSL_DCHECK(GetArena() == nullptr); - _impl_.~Impl_(); -} - -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_ = { - { - 0, // no _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 - 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::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>(), - {16, 63, 0, PROTOBUF_FIELD_OFFSET(MathContext, _impl_.rounding_mode_)}}, - // sint32 precision = 1; - {::_pbi::TcParser::FastZ32S1, - {8, 63, 0, PROTOBUF_FIELD_OFFSET(MathContext, _impl_.precision_)}}, - }}, {{ - 65535, 65535 - }}, {{ - // sint32 precision = 1; - {PROTOBUF_FIELD_OFFSET(MathContext, _impl_.precision_), 0, 0, - (0 | ::_fl::kFcSingular | ::_fl::kSInt32)}, - // .io.deephaven.proto.backplane.grpc.MathContext.RoundingMode rounding_mode = 2; - {PROTOBUF_FIELD_OFFSET(MathContext, _impl_.rounding_mode_), 0, 0, - (0 | ::_fl::kFcSingular | ::_fl::kOpenEnum)}, - }}, - // no aux_entries - {{ - }}, -}; - -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; - - ::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>(); -} - -#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) - ABSL_DCHECK_NE(&from, _this); - ::uint32_t cached_has_bits = 0; - (void) cached_has_bits; - - if (from._internal_precision() != 0) { - _this->_impl_.precision_ = from._impl_.precision_; - } - if (from._internal_rounding_mode() != 0) { - _this->_impl_.rounding_mode_ = from._impl_.rounding_mode_; - } - _this->_internal_metadata_.MergeFrom<::google::protobuf::UnknownFieldSet>(from._internal_metadata_); -} - -void MathContext::CopyFrom(const MathContext& from) { -// @@protoc_insertion_point(class_specific_copy_from_start:io.deephaven.proto.backplane.grpc.MathContext) - if (&from == this) return; - Clear(); - MergeFrom(from); -} - - -void MathContext::InternalSwap(MathContext* PROTOBUF_RESTRICT other) { - using std::swap; - _internal_metadata_.InternalSwap(&other->_internal_metadata_); - ::google::protobuf::internal::memswap< - PROTOBUF_FIELD_OFFSET(MathContext, _impl_.rounding_mode_) - + sizeof(MathContext::_impl_.rounding_mode_) - - PROTOBUF_FIELD_OFFSET(MathContext, _impl_.precision_)>( - reinterpret_cast(&_impl_.precision_), - reinterpret_cast(&other->_impl_.precision_)); -} - -::google::protobuf::Metadata MathContext::GetMetadata() const { - return ::google::protobuf::Message::GetMetadataImpl(GetClassData()->full()); -} -// =================================================================== - -class UpdateByWindowScale_UpdateByWindowTicks::_Internal { - public: -}; - -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) -} -UpdateByWindowScale_UpdateByWindowTicks::UpdateByWindowScale_UpdateByWindowTicks( - ::google::protobuf::Arena* arena, const UpdateByWindowScale_UpdateByWindowTicks& from) - : UpdateByWindowScale_UpdateByWindowTicks(arena) { - MergeFrom(from); -} -inline PROTOBUF_NDEBUG_INLINE UpdateByWindowScale_UpdateByWindowTicks::Impl_::Impl_( - ::google::protobuf::internal::InternalVisibility visibility, - ::google::protobuf::Arena* arena) - : _cached_size_{0} {} - -inline void UpdateByWindowScale_UpdateByWindowTicks::SharedCtor(::_pb::Arena* arena) { - new (&_impl_) Impl_(internal_visibility(), arena); - _impl_.ticks_ = {}; -} -UpdateByWindowScale_UpdateByWindowTicks::~UpdateByWindowScale_UpdateByWindowTicks() { - // @@protoc_insertion_point(destructor:io.deephaven.proto.backplane.grpc.UpdateByWindowScale.UpdateByWindowTicks) - _internal_metadata_.Delete<::google::protobuf::UnknownFieldSet>(); - SharedDtor(); -} -inline void UpdateByWindowScale_UpdateByWindowTicks::SharedDtor() { - ABSL_DCHECK(GetArena() == nullptr); - _impl_.~Impl_(); -} - -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(); -} -PROTOBUF_CONSTINIT PROTOBUF_ATTRIBUTE_INIT_PRIORITY1 -const ::_pbi::TcParseTable<0, 1, 0, 0, 2> UpdateByWindowScale_UpdateByWindowTicks::_table_ = { - { - 0, // no _has_bits_ - 0, // no _extensions_ - 1, 0, // max_field_number, fast_idx_mask - offsetof(decltype(_table_), field_lookup_table), - 4294967294, // skipmap - offsetof(decltype(_table_), field_entries), - 1, // 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::UpdateByWindowScale_UpdateByWindowTicks>(), // to_prefetch - #endif // PROTOBUF_PREFETCH_PARSE_TABLE - }, {{ - // double ticks = 1; - {::_pbi::TcParser::FastF64S1, - {9, 63, 0, PROTOBUF_FIELD_OFFSET(UpdateByWindowScale_UpdateByWindowTicks, _impl_.ticks_)}}, - }}, {{ - 65535, 65535 - }}, {{ - // double ticks = 1; - {PROTOBUF_FIELD_OFFSET(UpdateByWindowScale_UpdateByWindowTicks, _impl_.ticks_), 0, 0, - (0 | ::_fl::kFcSingular | ::_fl::kDouble)}, - }}, - // no aux_entries - {{ - }}, -}; - -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; - - _impl_.ticks_ = 0; - _internal_metadata_.Clear<::google::protobuf::UnknownFieldSet>(); -} - -#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) - ABSL_DCHECK_NE(&from, _this); - ::uint32_t cached_has_bits = 0; - (void) cached_has_bits; - - 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_); -} - -void UpdateByWindowScale_UpdateByWindowTicks::CopyFrom(const UpdateByWindowScale_UpdateByWindowTicks& from) { -// @@protoc_insertion_point(class_specific_copy_from_start:io.deephaven.proto.backplane.grpc.UpdateByWindowScale.UpdateByWindowTicks) - if (&from == this) return; - Clear(); - MergeFrom(from); -} - - -void UpdateByWindowScale_UpdateByWindowTicks::InternalSwap(UpdateByWindowScale_UpdateByWindowTicks* PROTOBUF_RESTRICT other) { - using std::swap; - _internal_metadata_.InternalSwap(&other->_internal_metadata_); - swap(_impl_.ticks_, other->_impl_.ticks_); -} - -::google::protobuf::Metadata UpdateByWindowScale_UpdateByWindowTicks::GetMetadata() const { - 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_); -}; - -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 ::io::deephaven::proto::backplane::grpc::UpdateByWindowScale_UpdateByWindowTime& from_msg) - : column_(arena, from.column_), - window_{}, - _cached_size_{0}, - _oneof_case_{from._oneof_case_[0]} {} - -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_, from); - switch (window_case()) { - case WINDOW_NOT_SET: - break; - case kNanos: - _impl_.window_.nanos_ = from._impl_.window_.nanos_; - break; - case kDurationString: - new (&_impl_.window_.duration_string_) decltype(_impl_.window_.duration_string_){arena, from._impl_.window_.duration_string_}; - break; - } - - // @@protoc_insertion_point(copy_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) - : column_(arena), - window_{}, - _cached_size_{0}, - _oneof_case_{} {} - -inline void UpdateByWindowScale_UpdateByWindowTime::SharedCtor(::_pb::Arena* arena) { - new (&_impl_) Impl_(internal_visibility(), arena); -} -UpdateByWindowScale_UpdateByWindowTime::~UpdateByWindowScale_UpdateByWindowTime() { - // @@protoc_insertion_point(destructor:io.deephaven.proto.backplane.grpc.UpdateByWindowScale.UpdateByWindowTime) - _internal_metadata_.Delete<::google::protobuf::UnknownFieldSet>(); - SharedDtor(); -} -inline void UpdateByWindowScale_UpdateByWindowTime::SharedDtor() { - ABSL_DCHECK(GetArena() == nullptr); - _impl_.column_.Destroy(); - if (has_window()) { - clear_window(); - } - _impl_.~Impl_(); -} - -void UpdateByWindowScale_UpdateByWindowTime::clear_window() { -// @@protoc_insertion_point(one_of_clear_start:io.deephaven.proto.backplane.grpc.UpdateByWindowScale.UpdateByWindowTime) - ::google::protobuf::internal::TSanWrite(&_impl_); - switch (window_case()) { - case kNanos: { - // No need to clear - break; - } - case kDurationString: { - _impl_.window_.duration_string_.Destroy(); - break; - } - case WINDOW_NOT_SET: { - break; - } - } - _impl_._oneof_case_[0] = WINDOW_NOT_SET; -} - - -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_ = { - { - 0, // no _has_bits_ - 0, // no _extensions_ - 3, 0, // max_field_number, fast_idx_mask - offsetof(decltype(_table_), field_lookup_table), - 4294967288, // skipmap - offsetof(decltype(_table_), field_entries), - 3, // 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::UpdateByWindowScale_UpdateByWindowTime>(), // to_prefetch - #endif // PROTOBUF_PREFETCH_PARSE_TABLE - }, {{ - // string column = 1; - {::_pbi::TcParser::FastUS1, - {10, 63, 0, PROTOBUF_FIELD_OFFSET(UpdateByWindowScale_UpdateByWindowTime, _impl_.column_)}}, - }}, {{ - 65535, 65535 - }}, {{ - // string column = 1; - {PROTOBUF_FIELD_OFFSET(UpdateByWindowScale_UpdateByWindowTime, _impl_.column_), 0, 0, - (0 | ::_fl::kFcSingular | ::_fl::kUtf8String | ::_fl::kRepAString)}, - // sint64 nanos = 2 [jstype = JS_STRING]; - {PROTOBUF_FIELD_OFFSET(UpdateByWindowScale_UpdateByWindowTime, _impl_.window_.nanos_), _Internal::kOneofCaseOffset + 0, 0, - (0 | ::_fl::kFcOneof | ::_fl::kSInt64)}, - // string duration_string = 3; - {PROTOBUF_FIELD_OFFSET(UpdateByWindowScale_UpdateByWindowTime, _impl_.window_.duration_string_), _Internal::kOneofCaseOffset + 0, 0, - (0 | ::_fl::kFcOneof | ::_fl::kUtf8String | ::_fl::kRepAString)}, - }}, - // no aux_entries - {{ - "\110\6\0\17\0\0\0\0" - "io.deephaven.proto.backplane.grpc.UpdateByWindowScale.UpdateByWindowTime" - "column" - "duration_string" - }}, -}; - -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; - - _impl_.column_.ClearToEmpty(); - clear_window(); - _internal_metadata_.Clear<::google::protobuf::UnknownFieldSet>(); -} - -#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; - (void) cached_has_bits; - - if (!from._internal_column().empty()) { - _this->_internal_set_column(from._internal_column()); - } - 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; - } - - 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_); -} - -void UpdateByWindowScale_UpdateByWindowTime::CopyFrom(const UpdateByWindowScale_UpdateByWindowTime& from) { -// @@protoc_insertion_point(class_specific_copy_from_start:io.deephaven.proto.backplane.grpc.UpdateByWindowScale.UpdateByWindowTime) - if (&from == this) return; - Clear(); - MergeFrom(from); -} - - -void UpdateByWindowScale_UpdateByWindowTime::InternalSwap(UpdateByWindowScale_UpdateByWindowTime* PROTOBUF_RESTRICT other) { - using std::swap; - auto* arena = GetArena(); - ABSL_DCHECK_EQ(arena, other->GetArena()); - _internal_metadata_.InternalSwap(&other->_internal_metadata_); - ::_pbi::ArenaStringPtr::InternalSwap(&_impl_.column_, &other->_impl_.column_, arena); - swap(_impl_.window_, other->_impl_.window_); - swap(_impl_._oneof_case_[0], other->_impl_._oneof_case_[0]); -} - -::google::protobuf::Metadata UpdateByWindowScale_UpdateByWindowTime::GetMetadata() const { - 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_); -}; - -void UpdateByWindowScale::set_allocated_ticks(::io::deephaven::proto::backplane::grpc::UpdateByWindowScale_UpdateByWindowTicks* ticks) { - ::google::protobuf::Arena* message_arena = GetArena(); - clear_type(); - if (ticks) { - ::google::protobuf::Arena* submessage_arena = ticks->GetArena(); - if (message_arena != submessage_arena) { - ticks = ::google::protobuf::internal::GetOwnedMessage(message_arena, ticks, submessage_arena); - } - set_has_ticks(); - _impl_.type_.ticks_ = ticks; - } - // @@protoc_insertion_point(field_set_allocated:io.deephaven.proto.backplane.grpc.UpdateByWindowScale.ticks) -} -void UpdateByWindowScale::set_allocated_time(::io::deephaven::proto::backplane::grpc::UpdateByWindowScale_UpdateByWindowTime* time) { - ::google::protobuf::Arena* message_arena = GetArena(); - clear_type(); - if (time) { - ::google::protobuf::Arena* submessage_arena = time->GetArena(); - if (message_arena != submessage_arena) { - time = ::google::protobuf::internal::GetOwnedMessage(message_arena, time, submessage_arena); - } - set_has_time(); - _impl_.type_.time_ = time; - } - // @@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 ::io::deephaven::proto::backplane::grpc::UpdateByWindowScale& from_msg) - : type_{}, - _cached_size_{0}, - _oneof_case_{from._oneof_case_[0]} {} - -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_, from); - switch (type_case()) { - case TYPE_NOT_SET: - break; - case kTicks: - _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_ = ::google::protobuf::Message::CopyConstruct<::io::deephaven::proto::backplane::grpc::UpdateByWindowScale_UpdateByWindowTime>(arena, *from._impl_.type_.time_); - break; - } - - // @@protoc_insertion_point(copy_constructor:io.deephaven.proto.backplane.grpc.UpdateByWindowScale) -} -inline PROTOBUF_NDEBUG_INLINE UpdateByWindowScale::Impl_::Impl_( - ::google::protobuf::internal::InternalVisibility visibility, - ::google::protobuf::Arena* arena) - : type_{}, - _cached_size_{0}, - _oneof_case_{} {} - -inline void UpdateByWindowScale::SharedCtor(::_pb::Arena* arena) { - new (&_impl_) Impl_(internal_visibility(), arena); -} -UpdateByWindowScale::~UpdateByWindowScale() { - // @@protoc_insertion_point(destructor:io.deephaven.proto.backplane.grpc.UpdateByWindowScale) - _internal_metadata_.Delete<::google::protobuf::UnknownFieldSet>(); - SharedDtor(); -} -inline void UpdateByWindowScale::SharedDtor() { - ABSL_DCHECK(GetArena() == nullptr); - if (has_type()) { - clear_type(); - } - _impl_.~Impl_(); -} - -void UpdateByWindowScale::clear_type() { -// @@protoc_insertion_point(one_of_clear_start:io.deephaven.proto.backplane.grpc.UpdateByWindowScale) - ::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; - } - case TYPE_NOT_SET: { - break; - } - } - _impl_._oneof_case_[0] = TYPE_NOT_SET; -} - - -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_ = { - { - 0, // no _has_bits_ - 0, // no _extensions_ - 2, 0, // max_field_number, fast_idx_mask - offsetof(decltype(_table_), field_lookup_table), - 4294967292, // skipmap - offsetof(decltype(_table_), field_entries), - 2, // num_field_entries - 2, // num_aux_entries - offsetof(decltype(_table_), 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::UpdateByWindowScale>(), // to_prefetch - #endif // PROTOBUF_PREFETCH_PARSE_TABLE - }, {{ - {::_pbi::TcParser::MiniParse, {}}, - }}, {{ - 65535, 65535 - }}, {{ - // .io.deephaven.proto.backplane.grpc.UpdateByWindowScale.UpdateByWindowTicks ticks = 1; - {PROTOBUF_FIELD_OFFSET(UpdateByWindowScale, _impl_.type_.ticks_), _Internal::kOneofCaseOffset + 0, 0, - (0 | ::_fl::kFcOneof | ::_fl::kMessage | ::_fl::kTvTable)}, - // .io.deephaven.proto.backplane.grpc.UpdateByWindowScale.UpdateByWindowTime time = 2; - {PROTOBUF_FIELD_OFFSET(UpdateByWindowScale, _impl_.type_.time_), _Internal::kOneofCaseOffset + 0, 1, - (0 | ::_fl::kFcOneof | ::_fl::kMessage | ::_fl::kTvTable)}, - }}, {{ - {::_pbi::TcParser::GetTable<::io::deephaven::proto::backplane::grpc::UpdateByWindowScale_UpdateByWindowTicks>()}, - {::_pbi::TcParser::GetTable<::io::deephaven::proto::backplane::grpc::UpdateByWindowScale_UpdateByWindowTime>()}, - }}, {{ - }}, -}; - -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; - - clear_type(); - _internal_metadata_.Clear<::google::protobuf::UnknownFieldSet>(); -} - -#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; - - 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; - } - - 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_); -} - -void UpdateByWindowScale::CopyFrom(const UpdateByWindowScale& from) { -// @@protoc_insertion_point(class_specific_copy_from_start:io.deephaven.proto.backplane.grpc.UpdateByWindowScale) - if (&from == this) return; - Clear(); - MergeFrom(from); -} - - -void UpdateByWindowScale::InternalSwap(UpdateByWindowScale* PROTOBUF_RESTRICT other) { - using std::swap; - _internal_metadata_.InternalSwap(&other->_internal_metadata_); - swap(_impl_.type_, other->_impl_.type_); - swap(_impl_._oneof_case_[0], other->_impl_._oneof_case_[0]); -} - -::google::protobuf::Metadata UpdateByWindowScale::GetMetadata() const { - return ::google::protobuf::Message::GetMetadataImpl(GetClassData()->full()); -} -// =================================================================== - -class UpdateByEmOptions::_Internal { - public: - using HasBits = - decltype(std::declval()._impl_._has_bits_); - static constexpr ::int32_t kHasBitsOffset = - 8 * PROTOBUF_FIELD_OFFSET(UpdateByEmOptions, _impl_._has_bits_); -}; - -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 ::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_, from); - ::uint32_t cached_has_bits = _impl_._has_bits_[0]; - _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_) + - offsetof(Impl_, on_null_value_), - offsetof(Impl_, on_zero_delta_time_) - - offsetof(Impl_, on_null_value_) + - sizeof(Impl_::on_zero_delta_time_)); - - // @@protoc_insertion_point(copy_constructor:io.deephaven.proto.backplane.grpc.UpdateByEmOptions) -} -inline PROTOBUF_NDEBUG_INLINE UpdateByEmOptions::Impl_::Impl_( - ::google::protobuf::internal::InternalVisibility visibility, - ::google::protobuf::Arena* arena) - : _cached_size_{0} {} - -inline void UpdateByEmOptions::SharedCtor(::_pb::Arena* arena) { - new (&_impl_) Impl_(internal_visibility(), arena); - ::memset(reinterpret_cast(&_impl_) + - offsetof(Impl_, big_value_context_), - 0, - offsetof(Impl_, on_zero_delta_time_) - - offsetof(Impl_, big_value_context_) + - sizeof(Impl_::on_zero_delta_time_)); -} -UpdateByEmOptions::~UpdateByEmOptions() { - // @@protoc_insertion_point(destructor:io.deephaven.proto.backplane.grpc.UpdateByEmOptions) - _internal_metadata_.Delete<::google::protobuf::UnknownFieldSet>(); - SharedDtor(); -} -inline void UpdateByEmOptions::SharedDtor() { - ABSL_DCHECK(GetArena() == nullptr); - delete _impl_.big_value_context_; - _impl_.~Impl_(); -} - -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_ = { - { - PROTOBUF_FIELD_OFFSET(UpdateByEmOptions, _impl_._has_bits_), - 0, // no _extensions_ - 6, 56, // max_field_number, fast_idx_mask - offsetof(decltype(_table_), field_lookup_table), - 4294967232, // skipmap - offsetof(decltype(_table_), field_entries), - 6, // num_field_entries - 1, // num_aux_entries - offsetof(decltype(_table_), 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::UpdateByEmOptions>(), // to_prefetch - #endif // PROTOBUF_PREFETCH_PARSE_TABLE - }, {{ - {::_pbi::TcParser::MiniParse, {}}, - // .io.deephaven.proto.backplane.grpc.BadDataBehavior on_null_value = 1; - {::_pbi::TcParser::SingularVarintNoZag1<::uint32_t, offsetof(UpdateByEmOptions, _impl_.on_null_value_), 63>(), - {8, 63, 0, PROTOBUF_FIELD_OFFSET(UpdateByEmOptions, _impl_.on_null_value_)}}, - // .io.deephaven.proto.backplane.grpc.BadDataBehavior on_nan_value = 2; - {::_pbi::TcParser::SingularVarintNoZag1<::uint32_t, offsetof(UpdateByEmOptions, _impl_.on_nan_value_), 63>(), - {16, 63, 0, PROTOBUF_FIELD_OFFSET(UpdateByEmOptions, _impl_.on_nan_value_)}}, - // .io.deephaven.proto.backplane.grpc.BadDataBehavior on_null_time = 3; - {::_pbi::TcParser::SingularVarintNoZag1<::uint32_t, offsetof(UpdateByEmOptions, _impl_.on_null_time_), 63>(), - {24, 63, 0, PROTOBUF_FIELD_OFFSET(UpdateByEmOptions, _impl_.on_null_time_)}}, - // .io.deephaven.proto.backplane.grpc.BadDataBehavior on_negative_delta_time = 4; - {::_pbi::TcParser::SingularVarintNoZag1<::uint32_t, offsetof(UpdateByEmOptions, _impl_.on_negative_delta_time_), 63>(), - {32, 63, 0, PROTOBUF_FIELD_OFFSET(UpdateByEmOptions, _impl_.on_negative_delta_time_)}}, - // .io.deephaven.proto.backplane.grpc.BadDataBehavior on_zero_delta_time = 5; - {::_pbi::TcParser::SingularVarintNoZag1<::uint32_t, offsetof(UpdateByEmOptions, _impl_.on_zero_delta_time_), 63>(), - {40, 63, 0, PROTOBUF_FIELD_OFFSET(UpdateByEmOptions, _impl_.on_zero_delta_time_)}}, - // .io.deephaven.proto.backplane.grpc.MathContext big_value_context = 6; - {::_pbi::TcParser::FastMtS1, - {50, 0, 0, PROTOBUF_FIELD_OFFSET(UpdateByEmOptions, _impl_.big_value_context_)}}, - {::_pbi::TcParser::MiniParse, {}}, - }}, {{ - 65535, 65535 - }}, {{ - // .io.deephaven.proto.backplane.grpc.BadDataBehavior on_null_value = 1; - {PROTOBUF_FIELD_OFFSET(UpdateByEmOptions, _impl_.on_null_value_), -1, 0, - (0 | ::_fl::kFcSingular | ::_fl::kOpenEnum)}, - // .io.deephaven.proto.backplane.grpc.BadDataBehavior on_nan_value = 2; - {PROTOBUF_FIELD_OFFSET(UpdateByEmOptions, _impl_.on_nan_value_), -1, 0, - (0 | ::_fl::kFcSingular | ::_fl::kOpenEnum)}, - // .io.deephaven.proto.backplane.grpc.BadDataBehavior on_null_time = 3; - {PROTOBUF_FIELD_OFFSET(UpdateByEmOptions, _impl_.on_null_time_), -1, 0, - (0 | ::_fl::kFcSingular | ::_fl::kOpenEnum)}, - // .io.deephaven.proto.backplane.grpc.BadDataBehavior on_negative_delta_time = 4; - {PROTOBUF_FIELD_OFFSET(UpdateByEmOptions, _impl_.on_negative_delta_time_), -1, 0, - (0 | ::_fl::kFcSingular | ::_fl::kOpenEnum)}, - // .io.deephaven.proto.backplane.grpc.BadDataBehavior on_zero_delta_time = 5; - {PROTOBUF_FIELD_OFFSET(UpdateByEmOptions, _impl_.on_zero_delta_time_), -1, 0, - (0 | ::_fl::kFcSingular | ::_fl::kOpenEnum)}, - // .io.deephaven.proto.backplane.grpc.MathContext big_value_context = 6; - {PROTOBUF_FIELD_OFFSET(UpdateByEmOptions, _impl_.big_value_context_), _Internal::kHasBitsOffset + 0, 0, - (0 | ::_fl::kFcOptional | ::_fl::kMessage | ::_fl::kTvTable)}, - }}, {{ - {::_pbi::TcParser::GetTable<::io::deephaven::proto::backplane::grpc::MathContext>()}, - }}, {{ - }}, -}; - -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; - - 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>(); -} - -#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; - - 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->_impl_.on_null_value_ = from._impl_.on_null_value_; - } - if (from._internal_on_nan_value() != 0) { - _this->_impl_.on_nan_value_ = from._impl_.on_nan_value_; - } - if (from._internal_on_null_time() != 0) { - _this->_impl_.on_null_time_ = from._impl_.on_null_time_; - } - if (from._internal_on_negative_delta_time() != 0) { - _this->_impl_.on_negative_delta_time_ = from._impl_.on_negative_delta_time_; - } - if (from._internal_on_zero_delta_time() != 0) { - _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_); -} - -void UpdateByEmOptions::CopyFrom(const UpdateByEmOptions& from) { -// @@protoc_insertion_point(class_specific_copy_from_start:io.deephaven.proto.backplane.grpc.UpdateByEmOptions) - if (&from == this) return; - Clear(); - MergeFrom(from); -} - - -void UpdateByEmOptions::InternalSwap(UpdateByEmOptions* PROTOBUF_RESTRICT other) { - using std::swap; - _internal_metadata_.InternalSwap(&other->_internal_metadata_); - swap(_impl_._has_bits_[0], other->_impl_._has_bits_[0]); - ::google::protobuf::internal::memswap< - PROTOBUF_FIELD_OFFSET(UpdateByEmOptions, _impl_.on_zero_delta_time_) - + sizeof(UpdateByEmOptions::_impl_.on_zero_delta_time_) - - PROTOBUF_FIELD_OFFSET(UpdateByEmOptions, _impl_.big_value_context_)>( - reinterpret_cast(&_impl_.big_value_context_), - reinterpret_cast(&other->_impl_.big_value_context_)); -} - -::google::protobuf::Metadata UpdateByEmOptions::GetMetadata() const { - return ::google::protobuf::Message::GetMetadataImpl(GetClassData()->full()); -} -// =================================================================== - -class UpdateByDeltaOptions::_Internal { - public: -}; - -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) -} -UpdateByDeltaOptions::UpdateByDeltaOptions( - ::google::protobuf::Arena* arena, const UpdateByDeltaOptions& from) - : UpdateByDeltaOptions(arena) { - MergeFrom(from); -} -inline PROTOBUF_NDEBUG_INLINE UpdateByDeltaOptions::Impl_::Impl_( - ::google::protobuf::internal::InternalVisibility visibility, - ::google::protobuf::Arena* arena) - : _cached_size_{0} {} - -inline void UpdateByDeltaOptions::SharedCtor(::_pb::Arena* arena) { - new (&_impl_) Impl_(internal_visibility(), arena); - _impl_.null_behavior_ = {}; -} -UpdateByDeltaOptions::~UpdateByDeltaOptions() { - // @@protoc_insertion_point(destructor:io.deephaven.proto.backplane.grpc.UpdateByDeltaOptions) - _internal_metadata_.Delete<::google::protobuf::UnknownFieldSet>(); - SharedDtor(); -} -inline void UpdateByDeltaOptions::SharedDtor() { - ABSL_DCHECK(GetArena() == nullptr); - _impl_.~Impl_(); -} - -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_ = { - { - 0, // no _has_bits_ - 0, // no _extensions_ - 1, 0, // max_field_number, fast_idx_mask - offsetof(decltype(_table_), field_lookup_table), - 4294967294, // skipmap - offsetof(decltype(_table_), field_entries), - 1, // 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::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>(), - {8, 63, 0, PROTOBUF_FIELD_OFFSET(UpdateByDeltaOptions, _impl_.null_behavior_)}}, - }}, {{ - 65535, 65535 - }}, {{ - // .io.deephaven.proto.backplane.grpc.UpdateByNullBehavior null_behavior = 1; - {PROTOBUF_FIELD_OFFSET(UpdateByDeltaOptions, _impl_.null_behavior_), 0, 0, - (0 | ::_fl::kFcSingular | ::_fl::kOpenEnum)}, - }}, - // no aux_entries - {{ - }}, -}; - -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; - - _impl_.null_behavior_ = 0; - _internal_metadata_.Clear<::google::protobuf::UnknownFieldSet>(); -} - -#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) - ABSL_DCHECK_NE(&from, _this); - ::uint32_t cached_has_bits = 0; - (void) cached_has_bits; - - if (from._internal_null_behavior() != 0) { - _this->_impl_.null_behavior_ = from._impl_.null_behavior_; - } - _this->_internal_metadata_.MergeFrom<::google::protobuf::UnknownFieldSet>(from._internal_metadata_); -} - -void UpdateByDeltaOptions::CopyFrom(const UpdateByDeltaOptions& from) { -// @@protoc_insertion_point(class_specific_copy_from_start:io.deephaven.proto.backplane.grpc.UpdateByDeltaOptions) - if (&from == this) return; - Clear(); - MergeFrom(from); -} - - -void UpdateByDeltaOptions::InternalSwap(UpdateByDeltaOptions* PROTOBUF_RESTRICT other) { - using std::swap; - _internal_metadata_.InternalSwap(&other->_internal_metadata_); - swap(_impl_.null_behavior_, other->_impl_.null_behavior_); -} - -::google::protobuf::Metadata UpdateByDeltaOptions::GetMetadata() const { - return ::google::protobuf::Message::GetMetadataImpl(GetClassData()->full()); -} -// =================================================================== - -class UpdateByRequest_UpdateByOptions::_Internal { - public: - using HasBits = - decltype(std::declval()._impl_._has_bits_); - static constexpr ::int32_t kHasBitsOffset = - 8 * PROTOBUF_FIELD_OFFSET(UpdateByRequest_UpdateByOptions, _impl_._has_bits_); -}; - -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 ::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_, from); - ::uint32_t cached_has_bits = _impl_._has_bits_[0]; - _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_) + - offsetof(Impl_, use_redirection_), - offsetof(Impl_, initial_hash_table_size_) - - offsetof(Impl_, use_redirection_) + - sizeof(Impl_::initial_hash_table_size_)); - - // @@protoc_insertion_point(copy_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) - : _cached_size_{0} {} - -inline void UpdateByRequest_UpdateByOptions::SharedCtor(::_pb::Arena* arena) { - new (&_impl_) Impl_(internal_visibility(), arena); - ::memset(reinterpret_cast(&_impl_) + - offsetof(Impl_, math_context_), - 0, - offsetof(Impl_, initial_hash_table_size_) - - offsetof(Impl_, math_context_) + - sizeof(Impl_::initial_hash_table_size_)); -} -UpdateByRequest_UpdateByOptions::~UpdateByRequest_UpdateByOptions() { - // @@protoc_insertion_point(destructor:io.deephaven.proto.backplane.grpc.UpdateByRequest.UpdateByOptions) - _internal_metadata_.Delete<::google::protobuf::UnknownFieldSet>(); - SharedDtor(); -} -inline void UpdateByRequest_UpdateByOptions::SharedDtor() { - ABSL_DCHECK(GetArena() == nullptr); - delete _impl_.math_context_; - _impl_.~Impl_(); -} - -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_ = { - { - PROTOBUF_FIELD_OFFSET(UpdateByRequest_UpdateByOptions, _impl_._has_bits_), - 0, // no _extensions_ - 7, 56, // max_field_number, fast_idx_mask - offsetof(decltype(_table_), field_lookup_table), - 4294967168, // skipmap - offsetof(decltype(_table_), field_entries), - 7, // num_field_entries - 1, // num_aux_entries - offsetof(decltype(_table_), 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_UpdateByOptions>(), // to_prefetch - #endif // PROTOBUF_PREFETCH_PARSE_TABLE - }, {{ - {::_pbi::TcParser::MiniParse, {}}, - // optional bool use_redirection = 1; - {::_pbi::TcParser::SingularVarintNoZag1(), - {8, 1, 0, PROTOBUF_FIELD_OFFSET(UpdateByRequest_UpdateByOptions, _impl_.use_redirection_)}}, - // optional int32 chunk_capacity = 2; - {::_pbi::TcParser::SingularVarintNoZag1<::uint32_t, offsetof(UpdateByRequest_UpdateByOptions, _impl_.chunk_capacity_), 2>(), - {16, 2, 0, PROTOBUF_FIELD_OFFSET(UpdateByRequest_UpdateByOptions, _impl_.chunk_capacity_)}}, - // optional double max_static_sparse_memory_overhead = 3; - {::_pbi::TcParser::FastF64S1, - {25, 3, 0, PROTOBUF_FIELD_OFFSET(UpdateByRequest_UpdateByOptions, _impl_.max_static_sparse_memory_overhead_)}}, - // optional int32 initial_hash_table_size = 4; - {::_pbi::TcParser::SingularVarintNoZag1<::uint32_t, offsetof(UpdateByRequest_UpdateByOptions, _impl_.initial_hash_table_size_), 6>(), - {32, 6, 0, PROTOBUF_FIELD_OFFSET(UpdateByRequest_UpdateByOptions, _impl_.initial_hash_table_size_)}}, - // optional double maximum_load_factor = 5; - {::_pbi::TcParser::FastF64S1, - {41, 4, 0, PROTOBUF_FIELD_OFFSET(UpdateByRequest_UpdateByOptions, _impl_.maximum_load_factor_)}}, - // optional double target_load_factor = 6; - {::_pbi::TcParser::FastF64S1, - {49, 5, 0, PROTOBUF_FIELD_OFFSET(UpdateByRequest_UpdateByOptions, _impl_.target_load_factor_)}}, - // .io.deephaven.proto.backplane.grpc.MathContext math_context = 7; - {::_pbi::TcParser::FastMtS1, - {58, 0, 0, PROTOBUF_FIELD_OFFSET(UpdateByRequest_UpdateByOptions, _impl_.math_context_)}}, - }}, {{ - 65535, 65535 - }}, {{ - // optional bool use_redirection = 1; - {PROTOBUF_FIELD_OFFSET(UpdateByRequest_UpdateByOptions, _impl_.use_redirection_), _Internal::kHasBitsOffset + 1, 0, - (0 | ::_fl::kFcOptional | ::_fl::kBool)}, - // optional int32 chunk_capacity = 2; - {PROTOBUF_FIELD_OFFSET(UpdateByRequest_UpdateByOptions, _impl_.chunk_capacity_), _Internal::kHasBitsOffset + 2, 0, - (0 | ::_fl::kFcOptional | ::_fl::kInt32)}, - // optional double max_static_sparse_memory_overhead = 3; - {PROTOBUF_FIELD_OFFSET(UpdateByRequest_UpdateByOptions, _impl_.max_static_sparse_memory_overhead_), _Internal::kHasBitsOffset + 3, 0, - (0 | ::_fl::kFcOptional | ::_fl::kDouble)}, - // optional int32 initial_hash_table_size = 4; - {PROTOBUF_FIELD_OFFSET(UpdateByRequest_UpdateByOptions, _impl_.initial_hash_table_size_), _Internal::kHasBitsOffset + 6, 0, - (0 | ::_fl::kFcOptional | ::_fl::kInt32)}, - // optional double maximum_load_factor = 5; - {PROTOBUF_FIELD_OFFSET(UpdateByRequest_UpdateByOptions, _impl_.maximum_load_factor_), _Internal::kHasBitsOffset + 4, 0, - (0 | ::_fl::kFcOptional | ::_fl::kDouble)}, - // optional double target_load_factor = 6; - {PROTOBUF_FIELD_OFFSET(UpdateByRequest_UpdateByOptions, _impl_.target_load_factor_), _Internal::kHasBitsOffset + 5, 0, - (0 | ::_fl::kFcOptional | ::_fl::kDouble)}, - // .io.deephaven.proto.backplane.grpc.MathContext math_context = 7; - {PROTOBUF_FIELD_OFFSET(UpdateByRequest_UpdateByOptions, _impl_.math_context_), _Internal::kHasBitsOffset + 0, 0, - (0 | ::_fl::kFcOptional | ::_fl::kMessage | ::_fl::kTvTable)}, - }}, {{ - {::_pbi::TcParser::GetTable<::io::deephaven::proto::backplane::grpc::MathContext>()}, - }}, {{ - }}, -}; - -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 & 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>(); -} - -#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; - (void) cached_has_bits; - - cached_has_bits = from._impl_._has_bits_[0]; - if (cached_has_bits & 0x0000007fu) { - if (cached_has_bits & 0x00000001u) { - 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_; - } - if (cached_has_bits & 0x00000004u) { - _this->_impl_.chunk_capacity_ = from._impl_.chunk_capacity_; - } - if (cached_has_bits & 0x00000008u) { - _this->_impl_.max_static_sparse_memory_overhead_ = from._impl_.max_static_sparse_memory_overhead_; - } - if (cached_has_bits & 0x00000010u) { - _this->_impl_.maximum_load_factor_ = from._impl_.maximum_load_factor_; - } - if (cached_has_bits & 0x00000020u) { - _this->_impl_.target_load_factor_ = from._impl_.target_load_factor_; - } - 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->_internal_metadata_.MergeFrom<::google::protobuf::UnknownFieldSet>(from._internal_metadata_); -} - -void UpdateByRequest_UpdateByOptions::CopyFrom(const UpdateByRequest_UpdateByOptions& from) { -// @@protoc_insertion_point(class_specific_copy_from_start:io.deephaven.proto.backplane.grpc.UpdateByRequest.UpdateByOptions) - if (&from == this) return; - Clear(); - MergeFrom(from); -} - - -void UpdateByRequest_UpdateByOptions::InternalSwap(UpdateByRequest_UpdateByOptions* PROTOBUF_RESTRICT other) { - using std::swap; - _internal_metadata_.InternalSwap(&other->_internal_metadata_); - swap(_impl_._has_bits_[0], other->_impl_._has_bits_[0]); - ::google::protobuf::internal::memswap< - PROTOBUF_FIELD_OFFSET(UpdateByRequest_UpdateByOptions, _impl_.initial_hash_table_size_) - + sizeof(UpdateByRequest_UpdateByOptions::_impl_.initial_hash_table_size_) - - PROTOBUF_FIELD_OFFSET(UpdateByRequest_UpdateByOptions, _impl_.math_context_)>( - reinterpret_cast(&_impl_.math_context_), - reinterpret_cast(&other->_impl_.math_context_)); -} - -::google::protobuf::Metadata UpdateByRequest_UpdateByOptions::GetMetadata() const { - return ::google::protobuf::Message::GetMetadataImpl(GetClassData()->full()); -} -// =================================================================== - -class UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByCumulativeSum::_Internal { - public: -}; - -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>( - from._internal_metadata_); - - // @@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 - {{ - }}, -}; - - - - - - - - -::google::protobuf::Metadata UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByCumulativeSum::GetMetadata() const { - return ::google::protobuf::internal::ZeroFieldsBase::GetMetadataImpl(GetClassData()->full()); -} -// =================================================================== - -class UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByCumulativeMin::_Internal { - public: -}; - -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>( - from._internal_metadata_); - - // @@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 - {{ - }}, -}; - - - - - - - - -::google::protobuf::Metadata UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByCumulativeMin::GetMetadata() const { - return ::google::protobuf::internal::ZeroFieldsBase::GetMetadataImpl(GetClassData()->full()); -} -// =================================================================== - -class UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByCumulativeMax::_Internal { - public: -}; - -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>( - from._internal_metadata_); - - // @@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 - {{ - }}, -}; - - - - - - - - -::google::protobuf::Metadata UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByCumulativeMax::GetMetadata() const { - return ::google::protobuf::internal::ZeroFieldsBase::GetMetadataImpl(GetClassData()->full()); -} -// =================================================================== - -class UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByCumulativeProduct::_Internal { - public: -}; - -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>( - from._internal_metadata_); - - // @@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 - {{ - }}, -}; - - - - - - - - -::google::protobuf::Metadata UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByCumulativeProduct::GetMetadata() const { - return ::google::protobuf::internal::ZeroFieldsBase::GetMetadataImpl(GetClassData()->full()); -} -// =================================================================== - -class UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByFill::_Internal { - public: -}; - -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>( - from._internal_metadata_); - - // @@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 - {{ - }}, -}; - - - - - - - - -::google::protobuf::Metadata UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByFill::GetMetadata() const { - return ::google::protobuf::internal::ZeroFieldsBase::GetMetadataImpl(GetClassData()->full()); -} -// =================================================================== - -class UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByEma::_Internal { - public: - 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_); -}; - -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 ::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_, from); - ::uint32_t cached_has_bits = _impl_._has_bits_[0]; - _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) -} -inline PROTOBUF_NDEBUG_INLINE UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByEma::Impl_::Impl_( - ::google::protobuf::internal::InternalVisibility visibility, - ::google::protobuf::Arena* arena) - : _cached_size_{0} {} - -inline void UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByEma::SharedCtor(::_pb::Arena* arena) { - new (&_impl_) Impl_(internal_visibility(), arena); - ::memset(reinterpret_cast(&_impl_) + - offsetof(Impl_, options_), - 0, - offsetof(Impl_, window_scale_) - - offsetof(Impl_, options_) + - sizeof(Impl_::window_scale_)); -} -UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByEma::~UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByEma() { - // @@protoc_insertion_point(destructor:io.deephaven.proto.backplane.grpc.UpdateByRequest.UpdateByOperation.UpdateByColumn.UpdateBySpec.UpdateByEma) - _internal_metadata_.Delete<::google::protobuf::UnknownFieldSet>(); - SharedDtor(); -} -inline void UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByEma::SharedDtor() { - ABSL_DCHECK(GetArena() == nullptr); - delete _impl_.options_; - delete _impl_.window_scale_; - _impl_.~Impl_(); -} - -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_ = { - { - PROTOBUF_FIELD_OFFSET(UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByEma, _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 - 2, // num_aux_entries - offsetof(decltype(_table_), 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_UpdateByEma>(), // to_prefetch - #endif // PROTOBUF_PREFETCH_PARSE_TABLE - }, {{ - // .io.deephaven.proto.backplane.grpc.UpdateByWindowScale window_scale = 2; - {::_pbi::TcParser::FastMtS1, - {18, 1, 1, PROTOBUF_FIELD_OFFSET(UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByEma, _impl_.window_scale_)}}, - // .io.deephaven.proto.backplane.grpc.UpdateByEmOptions options = 1; - {::_pbi::TcParser::FastMtS1, - {10, 0, 0, PROTOBUF_FIELD_OFFSET(UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByEma, _impl_.options_)}}, - }}, {{ - 65535, 65535 - }}, {{ - // .io.deephaven.proto.backplane.grpc.UpdateByEmOptions options = 1; - {PROTOBUF_FIELD_OFFSET(UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByEma, _impl_.options_), _Internal::kHasBitsOffset + 0, 0, - (0 | ::_fl::kFcOptional | ::_fl::kMessage | ::_fl::kTvTable)}, - // .io.deephaven.proto.backplane.grpc.UpdateByWindowScale window_scale = 2; - {PROTOBUF_FIELD_OFFSET(UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByEma, _impl_.window_scale_), _Internal::kHasBitsOffset + 1, 1, - (0 | ::_fl::kFcOptional | ::_fl::kMessage | ::_fl::kTvTable)}, - }}, {{ - {::_pbi::TcParser::GetTable<::io::deephaven::proto::backplane::grpc::UpdateByEmOptions>()}, - {::_pbi::TcParser::GetTable<::io::deephaven::proto::backplane::grpc::UpdateByWindowScale>()}, - }}, {{ - }}, -}; - -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) { - 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>(); -} - -#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; - (void) cached_has_bits; - - cached_has_bits = from._impl_._has_bits_[0]; - if (cached_has_bits & 0x00000003u) { - if (cached_has_bits & 0x00000001u) { - 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) { - 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_); -} - -void UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByEma::CopyFrom(const UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByEma& from) { -// @@protoc_insertion_point(class_specific_copy_from_start:io.deephaven.proto.backplane.grpc.UpdateByRequest.UpdateByOperation.UpdateByColumn.UpdateBySpec.UpdateByEma) - if (&from == this) return; - Clear(); - MergeFrom(from); -} - - -void UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByEma::InternalSwap(UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByEma* PROTOBUF_RESTRICT other) { - using std::swap; - _internal_metadata_.InternalSwap(&other->_internal_metadata_); - swap(_impl_._has_bits_[0], other->_impl_._has_bits_[0]); - ::google::protobuf::internal::memswap< - PROTOBUF_FIELD_OFFSET(UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByEma, _impl_.window_scale_) - + sizeof(UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByEma::_impl_.window_scale_) - - PROTOBUF_FIELD_OFFSET(UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByEma, _impl_.options_)>( - reinterpret_cast(&_impl_.options_), - reinterpret_cast(&other->_impl_.options_)); -} - -::google::protobuf::Metadata UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByEma::GetMetadata() const { - return ::google::protobuf::Message::GetMetadataImpl(GetClassData()->full()); -} -// =================================================================== - -class UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByEms::_Internal { - public: - 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_); -}; - -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 ::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_, from); - ::uint32_t cached_has_bits = _impl_._has_bits_[0]; - _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) -} -inline PROTOBUF_NDEBUG_INLINE UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByEms::Impl_::Impl_( - ::google::protobuf::internal::InternalVisibility visibility, - ::google::protobuf::Arena* arena) - : _cached_size_{0} {} - -inline void UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByEms::SharedCtor(::_pb::Arena* arena) { - new (&_impl_) Impl_(internal_visibility(), arena); - ::memset(reinterpret_cast(&_impl_) + - offsetof(Impl_, options_), - 0, - offsetof(Impl_, window_scale_) - - offsetof(Impl_, options_) + - sizeof(Impl_::window_scale_)); -} -UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByEms::~UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByEms() { - // @@protoc_insertion_point(destructor:io.deephaven.proto.backplane.grpc.UpdateByRequest.UpdateByOperation.UpdateByColumn.UpdateBySpec.UpdateByEms) - _internal_metadata_.Delete<::google::protobuf::UnknownFieldSet>(); - SharedDtor(); -} -inline void UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByEms::SharedDtor() { - ABSL_DCHECK(GetArena() == nullptr); - delete _impl_.options_; - delete _impl_.window_scale_; - _impl_.~Impl_(); -} - -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_ = { - { - PROTOBUF_FIELD_OFFSET(UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByEms, _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 - 2, // num_aux_entries - offsetof(decltype(_table_), 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_UpdateByEms>(), // to_prefetch - #endif // PROTOBUF_PREFETCH_PARSE_TABLE - }, {{ - // .io.deephaven.proto.backplane.grpc.UpdateByWindowScale window_scale = 2; - {::_pbi::TcParser::FastMtS1, - {18, 1, 1, PROTOBUF_FIELD_OFFSET(UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByEms, _impl_.window_scale_)}}, - // .io.deephaven.proto.backplane.grpc.UpdateByEmOptions options = 1; - {::_pbi::TcParser::FastMtS1, - {10, 0, 0, PROTOBUF_FIELD_OFFSET(UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByEms, _impl_.options_)}}, - }}, {{ - 65535, 65535 - }}, {{ - // .io.deephaven.proto.backplane.grpc.UpdateByEmOptions options = 1; - {PROTOBUF_FIELD_OFFSET(UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByEms, _impl_.options_), _Internal::kHasBitsOffset + 0, 0, - (0 | ::_fl::kFcOptional | ::_fl::kMessage | ::_fl::kTvTable)}, - // .io.deephaven.proto.backplane.grpc.UpdateByWindowScale window_scale = 2; - {PROTOBUF_FIELD_OFFSET(UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByEms, _impl_.window_scale_), _Internal::kHasBitsOffset + 1, 1, - (0 | ::_fl::kFcOptional | ::_fl::kMessage | ::_fl::kTvTable)}, - }}, {{ - {::_pbi::TcParser::GetTable<::io::deephaven::proto::backplane::grpc::UpdateByEmOptions>()}, - {::_pbi::TcParser::GetTable<::io::deephaven::proto::backplane::grpc::UpdateByWindowScale>()}, - }}, {{ - }}, -}; - -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) { - 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>(); -} - -#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; - (void) cached_has_bits; - - cached_has_bits = from._impl_._has_bits_[0]; - if (cached_has_bits & 0x00000003u) { - if (cached_has_bits & 0x00000001u) { - 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) { - 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_); -} - -void UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByEms::CopyFrom(const UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByEms& from) { -// @@protoc_insertion_point(class_specific_copy_from_start:io.deephaven.proto.backplane.grpc.UpdateByRequest.UpdateByOperation.UpdateByColumn.UpdateBySpec.UpdateByEms) - if (&from == this) return; - Clear(); - MergeFrom(from); -} - - -void UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByEms::InternalSwap(UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByEms* PROTOBUF_RESTRICT other) { - using std::swap; - _internal_metadata_.InternalSwap(&other->_internal_metadata_); - swap(_impl_._has_bits_[0], other->_impl_._has_bits_[0]); - ::google::protobuf::internal::memswap< - PROTOBUF_FIELD_OFFSET(UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByEms, _impl_.window_scale_) - + sizeof(UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByEms::_impl_.window_scale_) - - PROTOBUF_FIELD_OFFSET(UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByEms, _impl_.options_)>( - reinterpret_cast(&_impl_.options_), - reinterpret_cast(&other->_impl_.options_)); -} - -::google::protobuf::Metadata UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByEms::GetMetadata() const { - return ::google::protobuf::Message::GetMetadataImpl(GetClassData()->full()); -} -// =================================================================== - -class UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByEmMin::_Internal { - public: - 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_); -}; - -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 ::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_, from); - ::uint32_t cached_has_bits = _impl_._has_bits_[0]; - _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) -} -inline PROTOBUF_NDEBUG_INLINE UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByEmMin::Impl_::Impl_( - ::google::protobuf::internal::InternalVisibility visibility, - ::google::protobuf::Arena* arena) - : _cached_size_{0} {} - -inline void UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByEmMin::SharedCtor(::_pb::Arena* arena) { - new (&_impl_) Impl_(internal_visibility(), arena); - ::memset(reinterpret_cast(&_impl_) + - offsetof(Impl_, options_), - 0, - offsetof(Impl_, window_scale_) - - offsetof(Impl_, options_) + - sizeof(Impl_::window_scale_)); -} -UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByEmMin::~UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByEmMin() { - // @@protoc_insertion_point(destructor:io.deephaven.proto.backplane.grpc.UpdateByRequest.UpdateByOperation.UpdateByColumn.UpdateBySpec.UpdateByEmMin) - _internal_metadata_.Delete<::google::protobuf::UnknownFieldSet>(); - SharedDtor(); -} -inline void UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByEmMin::SharedDtor() { - ABSL_DCHECK(GetArena() == nullptr); - delete _impl_.options_; - delete _impl_.window_scale_; - _impl_.~Impl_(); -} - -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_ = { - { - PROTOBUF_FIELD_OFFSET(UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByEmMin, _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 - 2, // num_aux_entries - offsetof(decltype(_table_), 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_UpdateByEmMin>(), // to_prefetch - #endif // PROTOBUF_PREFETCH_PARSE_TABLE - }, {{ - // .io.deephaven.proto.backplane.grpc.UpdateByWindowScale window_scale = 2; - {::_pbi::TcParser::FastMtS1, - {18, 1, 1, PROTOBUF_FIELD_OFFSET(UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByEmMin, _impl_.window_scale_)}}, - // .io.deephaven.proto.backplane.grpc.UpdateByEmOptions options = 1; - {::_pbi::TcParser::FastMtS1, - {10, 0, 0, PROTOBUF_FIELD_OFFSET(UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByEmMin, _impl_.options_)}}, - }}, {{ - 65535, 65535 - }}, {{ - // .io.deephaven.proto.backplane.grpc.UpdateByEmOptions options = 1; - {PROTOBUF_FIELD_OFFSET(UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByEmMin, _impl_.options_), _Internal::kHasBitsOffset + 0, 0, - (0 | ::_fl::kFcOptional | ::_fl::kMessage | ::_fl::kTvTable)}, - // .io.deephaven.proto.backplane.grpc.UpdateByWindowScale window_scale = 2; - {PROTOBUF_FIELD_OFFSET(UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByEmMin, _impl_.window_scale_), _Internal::kHasBitsOffset + 1, 1, - (0 | ::_fl::kFcOptional | ::_fl::kMessage | ::_fl::kTvTable)}, - }}, {{ - {::_pbi::TcParser::GetTable<::io::deephaven::proto::backplane::grpc::UpdateByEmOptions>()}, - {::_pbi::TcParser::GetTable<::io::deephaven::proto::backplane::grpc::UpdateByWindowScale>()}, - }}, {{ - }}, -}; - -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) { - 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>(); -} - -#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; - (void) cached_has_bits; - - cached_has_bits = from._impl_._has_bits_[0]; - if (cached_has_bits & 0x00000003u) { - if (cached_has_bits & 0x00000001u) { - 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) { - 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_); -} - -void UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByEmMin::CopyFrom(const UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByEmMin& from) { -// @@protoc_insertion_point(class_specific_copy_from_start:io.deephaven.proto.backplane.grpc.UpdateByRequest.UpdateByOperation.UpdateByColumn.UpdateBySpec.UpdateByEmMin) - if (&from == this) return; - Clear(); - MergeFrom(from); -} - - -void UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByEmMin::InternalSwap(UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByEmMin* PROTOBUF_RESTRICT other) { - using std::swap; - _internal_metadata_.InternalSwap(&other->_internal_metadata_); - swap(_impl_._has_bits_[0], other->_impl_._has_bits_[0]); - ::google::protobuf::internal::memswap< - PROTOBUF_FIELD_OFFSET(UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByEmMin, _impl_.window_scale_) - + sizeof(UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByEmMin::_impl_.window_scale_) - - PROTOBUF_FIELD_OFFSET(UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByEmMin, _impl_.options_)>( - reinterpret_cast(&_impl_.options_), - reinterpret_cast(&other->_impl_.options_)); -} - -::google::protobuf::Metadata UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByEmMin::GetMetadata() const { - return ::google::protobuf::Message::GetMetadataImpl(GetClassData()->full()); -} -// =================================================================== - -class UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByEmMax::_Internal { - public: - 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_); -}; - -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 ::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_, from); - ::uint32_t cached_has_bits = _impl_._has_bits_[0]; - _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) -} -inline PROTOBUF_NDEBUG_INLINE UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByEmMax::Impl_::Impl_( - ::google::protobuf::internal::InternalVisibility visibility, - ::google::protobuf::Arena* arena) - : _cached_size_{0} {} - -inline void UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByEmMax::SharedCtor(::_pb::Arena* arena) { - new (&_impl_) Impl_(internal_visibility(), arena); - ::memset(reinterpret_cast(&_impl_) + - offsetof(Impl_, options_), - 0, - offsetof(Impl_, window_scale_) - - offsetof(Impl_, options_) + - sizeof(Impl_::window_scale_)); -} -UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByEmMax::~UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByEmMax() { - // @@protoc_insertion_point(destructor:io.deephaven.proto.backplane.grpc.UpdateByRequest.UpdateByOperation.UpdateByColumn.UpdateBySpec.UpdateByEmMax) - _internal_metadata_.Delete<::google::protobuf::UnknownFieldSet>(); - SharedDtor(); -} -inline void UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByEmMax::SharedDtor() { - ABSL_DCHECK(GetArena() == nullptr); - delete _impl_.options_; - delete _impl_.window_scale_; - _impl_.~Impl_(); -} - -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_ = { - { - PROTOBUF_FIELD_OFFSET(UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByEmMax, _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 - 2, // num_aux_entries - offsetof(decltype(_table_), 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_UpdateByEmMax>(), // to_prefetch - #endif // PROTOBUF_PREFETCH_PARSE_TABLE - }, {{ - // .io.deephaven.proto.backplane.grpc.UpdateByWindowScale window_scale = 2; - {::_pbi::TcParser::FastMtS1, - {18, 1, 1, PROTOBUF_FIELD_OFFSET(UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByEmMax, _impl_.window_scale_)}}, - // .io.deephaven.proto.backplane.grpc.UpdateByEmOptions options = 1; - {::_pbi::TcParser::FastMtS1, - {10, 0, 0, PROTOBUF_FIELD_OFFSET(UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByEmMax, _impl_.options_)}}, - }}, {{ - 65535, 65535 - }}, {{ - // .io.deephaven.proto.backplane.grpc.UpdateByEmOptions options = 1; - {PROTOBUF_FIELD_OFFSET(UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByEmMax, _impl_.options_), _Internal::kHasBitsOffset + 0, 0, - (0 | ::_fl::kFcOptional | ::_fl::kMessage | ::_fl::kTvTable)}, - // .io.deephaven.proto.backplane.grpc.UpdateByWindowScale window_scale = 2; - {PROTOBUF_FIELD_OFFSET(UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByEmMax, _impl_.window_scale_), _Internal::kHasBitsOffset + 1, 1, - (0 | ::_fl::kFcOptional | ::_fl::kMessage | ::_fl::kTvTable)}, - }}, {{ - {::_pbi::TcParser::GetTable<::io::deephaven::proto::backplane::grpc::UpdateByEmOptions>()}, - {::_pbi::TcParser::GetTable<::io::deephaven::proto::backplane::grpc::UpdateByWindowScale>()}, - }}, {{ - }}, -}; - -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) { - 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>(); -} - -#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; - (void) cached_has_bits; - - cached_has_bits = from._impl_._has_bits_[0]; - if (cached_has_bits & 0x00000003u) { - if (cached_has_bits & 0x00000001u) { - 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) { - 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_); -} - -void UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByEmMax::CopyFrom(const UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByEmMax& from) { -// @@protoc_insertion_point(class_specific_copy_from_start:io.deephaven.proto.backplane.grpc.UpdateByRequest.UpdateByOperation.UpdateByColumn.UpdateBySpec.UpdateByEmMax) - if (&from == this) return; - Clear(); - MergeFrom(from); -} - - -void UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByEmMax::InternalSwap(UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByEmMax* PROTOBUF_RESTRICT other) { - using std::swap; - _internal_metadata_.InternalSwap(&other->_internal_metadata_); - swap(_impl_._has_bits_[0], other->_impl_._has_bits_[0]); - ::google::protobuf::internal::memswap< - PROTOBUF_FIELD_OFFSET(UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByEmMax, _impl_.window_scale_) - + sizeof(UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByEmMax::_impl_.window_scale_) - - PROTOBUF_FIELD_OFFSET(UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByEmMax, _impl_.options_)>( - reinterpret_cast(&_impl_.options_), - reinterpret_cast(&other->_impl_.options_)); -} - -::google::protobuf::Metadata UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByEmMax::GetMetadata() const { - return ::google::protobuf::Message::GetMetadataImpl(GetClassData()->full()); -} -// =================================================================== - -class UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByEmStd::_Internal { - public: - 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_); -}; - -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 ::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_, from); - ::uint32_t cached_has_bits = _impl_._has_bits_[0]; - _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) -} -inline PROTOBUF_NDEBUG_INLINE UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByEmStd::Impl_::Impl_( - ::google::protobuf::internal::InternalVisibility visibility, - ::google::protobuf::Arena* arena) - : _cached_size_{0} {} - -inline void UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByEmStd::SharedCtor(::_pb::Arena* arena) { - new (&_impl_) Impl_(internal_visibility(), arena); - ::memset(reinterpret_cast(&_impl_) + - offsetof(Impl_, options_), - 0, - offsetof(Impl_, window_scale_) - - offsetof(Impl_, options_) + - sizeof(Impl_::window_scale_)); -} -UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByEmStd::~UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByEmStd() { - // @@protoc_insertion_point(destructor:io.deephaven.proto.backplane.grpc.UpdateByRequest.UpdateByOperation.UpdateByColumn.UpdateBySpec.UpdateByEmStd) - _internal_metadata_.Delete<::google::protobuf::UnknownFieldSet>(); - SharedDtor(); -} -inline void UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByEmStd::SharedDtor() { - ABSL_DCHECK(GetArena() == nullptr); - delete _impl_.options_; - delete _impl_.window_scale_; - _impl_.~Impl_(); -} - -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_ = { - { - PROTOBUF_FIELD_OFFSET(UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByEmStd, _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 - 2, // num_aux_entries - offsetof(decltype(_table_), 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_UpdateByEmStd>(), // to_prefetch - #endif // PROTOBUF_PREFETCH_PARSE_TABLE - }, {{ - // .io.deephaven.proto.backplane.grpc.UpdateByWindowScale window_scale = 2; - {::_pbi::TcParser::FastMtS1, - {18, 1, 1, PROTOBUF_FIELD_OFFSET(UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByEmStd, _impl_.window_scale_)}}, - // .io.deephaven.proto.backplane.grpc.UpdateByEmOptions options = 1; - {::_pbi::TcParser::FastMtS1, - {10, 0, 0, PROTOBUF_FIELD_OFFSET(UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByEmStd, _impl_.options_)}}, - }}, {{ - 65535, 65535 - }}, {{ - // .io.deephaven.proto.backplane.grpc.UpdateByEmOptions options = 1; - {PROTOBUF_FIELD_OFFSET(UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByEmStd, _impl_.options_), _Internal::kHasBitsOffset + 0, 0, - (0 | ::_fl::kFcOptional | ::_fl::kMessage | ::_fl::kTvTable)}, - // .io.deephaven.proto.backplane.grpc.UpdateByWindowScale window_scale = 2; - {PROTOBUF_FIELD_OFFSET(UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByEmStd, _impl_.window_scale_), _Internal::kHasBitsOffset + 1, 1, - (0 | ::_fl::kFcOptional | ::_fl::kMessage | ::_fl::kTvTable)}, - }}, {{ - {::_pbi::TcParser::GetTable<::io::deephaven::proto::backplane::grpc::UpdateByEmOptions>()}, - {::_pbi::TcParser::GetTable<::io::deephaven::proto::backplane::grpc::UpdateByWindowScale>()}, - }}, {{ - }}, -}; - -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) { - 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>(); -} - -#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; - (void) cached_has_bits; - - cached_has_bits = from._impl_._has_bits_[0]; - if (cached_has_bits & 0x00000003u) { - if (cached_has_bits & 0x00000001u) { - 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) { - 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_); -} - -void UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByEmStd::CopyFrom(const UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByEmStd& from) { -// @@protoc_insertion_point(class_specific_copy_from_start:io.deephaven.proto.backplane.grpc.UpdateByRequest.UpdateByOperation.UpdateByColumn.UpdateBySpec.UpdateByEmStd) - if (&from == this) return; - Clear(); - MergeFrom(from); -} - - -void UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByEmStd::InternalSwap(UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByEmStd* PROTOBUF_RESTRICT other) { - using std::swap; - _internal_metadata_.InternalSwap(&other->_internal_metadata_); - swap(_impl_._has_bits_[0], other->_impl_._has_bits_[0]); - ::google::protobuf::internal::memswap< - PROTOBUF_FIELD_OFFSET(UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByEmStd, _impl_.window_scale_) - + sizeof(UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByEmStd::_impl_.window_scale_) - - PROTOBUF_FIELD_OFFSET(UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByEmStd, _impl_.options_)>( - reinterpret_cast(&_impl_.options_), - reinterpret_cast(&other->_impl_.options_)); -} - -::google::protobuf::Metadata UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByEmStd::GetMetadata() const { - return ::google::protobuf::Message::GetMetadataImpl(GetClassData()->full()); -} -// =================================================================== - -class UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByDelta::_Internal { - public: - 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_); -}; - -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 ::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_, from); - ::uint32_t cached_has_bits = _impl_._has_bits_[0]; - _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) -} -inline PROTOBUF_NDEBUG_INLINE UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByDelta::Impl_::Impl_( - ::google::protobuf::internal::InternalVisibility visibility, - ::google::protobuf::Arena* arena) - : _cached_size_{0} {} - -inline void UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByDelta::SharedCtor(::_pb::Arena* arena) { - new (&_impl_) Impl_(internal_visibility(), arena); - _impl_.options_ = {}; -} -UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByDelta::~UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByDelta() { - // @@protoc_insertion_point(destructor:io.deephaven.proto.backplane.grpc.UpdateByRequest.UpdateByOperation.UpdateByColumn.UpdateBySpec.UpdateByDelta) - _internal_metadata_.Delete<::google::protobuf::UnknownFieldSet>(); - SharedDtor(); -} -inline void UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByDelta::SharedDtor() { - ABSL_DCHECK(GetArena() == nullptr); - delete _impl_.options_; - _impl_.~Impl_(); -} - -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_ = { - { - PROTOBUF_FIELD_OFFSET(UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByDelta, _impl_._has_bits_), - 0, // no _extensions_ - 1, 0, // max_field_number, fast_idx_mask - offsetof(decltype(_table_), field_lookup_table), - 4294967294, // skipmap - offsetof(decltype(_table_), field_entries), - 1, // num_field_entries - 1, // num_aux_entries - offsetof(decltype(_table_), 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_UpdateByDelta>(), // to_prefetch - #endif // PROTOBUF_PREFETCH_PARSE_TABLE - }, {{ - // .io.deephaven.proto.backplane.grpc.UpdateByDeltaOptions options = 1; - {::_pbi::TcParser::FastMtS1, - {10, 0, 0, PROTOBUF_FIELD_OFFSET(UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByDelta, _impl_.options_)}}, - }}, {{ - 65535, 65535 - }}, {{ - // .io.deephaven.proto.backplane.grpc.UpdateByDeltaOptions options = 1; - {PROTOBUF_FIELD_OFFSET(UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByDelta, _impl_.options_), _Internal::kHasBitsOffset + 0, 0, - (0 | ::_fl::kFcOptional | ::_fl::kMessage | ::_fl::kTvTable)}, - }}, {{ - {::_pbi::TcParser::GetTable<::io::deephaven::proto::backplane::grpc::UpdateByDeltaOptions>()}, - }}, {{ - }}, -}; - -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; - // 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>(); -} - -#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; - (void) cached_has_bits; - - cached_has_bits = from._impl_._has_bits_[0]; - if (cached_has_bits & 0x00000001u) { - 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_); -} - -void UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByDelta::CopyFrom(const UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByDelta& from) { -// @@protoc_insertion_point(class_specific_copy_from_start:io.deephaven.proto.backplane.grpc.UpdateByRequest.UpdateByOperation.UpdateByColumn.UpdateBySpec.UpdateByDelta) - if (&from == this) return; - Clear(); - MergeFrom(from); -} - - -void UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByDelta::InternalSwap(UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByDelta* PROTOBUF_RESTRICT other) { - using std::swap; - _internal_metadata_.InternalSwap(&other->_internal_metadata_); - swap(_impl_._has_bits_[0], other->_impl_._has_bits_[0]); - swap(_impl_.options_, other->_impl_.options_); -} - -::google::protobuf::Metadata UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByDelta::GetMetadata() const { - return ::google::protobuf::Message::GetMetadataImpl(GetClassData()->full()); -} -// =================================================================== - -class UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingSum::_Internal { - public: - 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_); -}; - -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 ::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_, from); - ::uint32_t cached_has_bits = _impl_._has_bits_[0]; - _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) -} -inline PROTOBUF_NDEBUG_INLINE UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingSum::Impl_::Impl_( - ::google::protobuf::internal::InternalVisibility visibility, - ::google::protobuf::Arena* arena) - : _cached_size_{0} {} - -inline void UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingSum::SharedCtor(::_pb::Arena* arena) { - new (&_impl_) Impl_(internal_visibility(), arena); - ::memset(reinterpret_cast(&_impl_) + - offsetof(Impl_, reverse_window_scale_), - 0, - offsetof(Impl_, forward_window_scale_) - - offsetof(Impl_, reverse_window_scale_) + - sizeof(Impl_::forward_window_scale_)); -} -UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingSum::~UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingSum() { - // @@protoc_insertion_point(destructor:io.deephaven.proto.backplane.grpc.UpdateByRequest.UpdateByOperation.UpdateByColumn.UpdateBySpec.UpdateByRollingSum) - _internal_metadata_.Delete<::google::protobuf::UnknownFieldSet>(); - SharedDtor(); -} -inline void UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingSum::SharedDtor() { - ABSL_DCHECK(GetArena() == nullptr); - delete _impl_.reverse_window_scale_; - delete _impl_.forward_window_scale_; - _impl_.~Impl_(); -} - -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_ = { - { - PROTOBUF_FIELD_OFFSET(UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingSum, _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 - 2, // num_aux_entries - offsetof(decltype(_table_), 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_UpdateByRollingSum>(), // to_prefetch - #endif // PROTOBUF_PREFETCH_PARSE_TABLE - }, {{ - // .io.deephaven.proto.backplane.grpc.UpdateByWindowScale forward_window_scale = 2; - {::_pbi::TcParser::FastMtS1, - {18, 1, 1, PROTOBUF_FIELD_OFFSET(UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingSum, _impl_.forward_window_scale_)}}, - // .io.deephaven.proto.backplane.grpc.UpdateByWindowScale reverse_window_scale = 1; - {::_pbi::TcParser::FastMtS1, - {10, 0, 0, PROTOBUF_FIELD_OFFSET(UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingSum, _impl_.reverse_window_scale_)}}, - }}, {{ - 65535, 65535 - }}, {{ - // .io.deephaven.proto.backplane.grpc.UpdateByWindowScale reverse_window_scale = 1; - {PROTOBUF_FIELD_OFFSET(UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingSum, _impl_.reverse_window_scale_), _Internal::kHasBitsOffset + 0, 0, - (0 | ::_fl::kFcOptional | ::_fl::kMessage | ::_fl::kTvTable)}, - // .io.deephaven.proto.backplane.grpc.UpdateByWindowScale forward_window_scale = 2; - {PROTOBUF_FIELD_OFFSET(UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingSum, _impl_.forward_window_scale_), _Internal::kHasBitsOffset + 1, 1, - (0 | ::_fl::kFcOptional | ::_fl::kMessage | ::_fl::kTvTable)}, - }}, {{ - {::_pbi::TcParser::GetTable<::io::deephaven::proto::backplane::grpc::UpdateByWindowScale>()}, - {::_pbi::TcParser::GetTable<::io::deephaven::proto::backplane::grpc::UpdateByWindowScale>()}, - }}, {{ - }}, -}; - -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) { - 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>(); -} - -#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; - (void) cached_has_bits; - - cached_has_bits = from._impl_._has_bits_[0]; - if (cached_has_bits & 0x00000003u) { - if (cached_has_bits & 0x00000001u) { - 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) { - 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_); -} - -void UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingSum::CopyFrom(const UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingSum& from) { -// @@protoc_insertion_point(class_specific_copy_from_start:io.deephaven.proto.backplane.grpc.UpdateByRequest.UpdateByOperation.UpdateByColumn.UpdateBySpec.UpdateByRollingSum) - if (&from == this) return; - Clear(); - MergeFrom(from); -} - - -void UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingSum::InternalSwap(UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingSum* PROTOBUF_RESTRICT other) { - using std::swap; - _internal_metadata_.InternalSwap(&other->_internal_metadata_); - swap(_impl_._has_bits_[0], other->_impl_._has_bits_[0]); - ::google::protobuf::internal::memswap< - PROTOBUF_FIELD_OFFSET(UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingSum, _impl_.forward_window_scale_) - + sizeof(UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingSum::_impl_.forward_window_scale_) - - PROTOBUF_FIELD_OFFSET(UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingSum, _impl_.reverse_window_scale_)>( - reinterpret_cast(&_impl_.reverse_window_scale_), - reinterpret_cast(&other->_impl_.reverse_window_scale_)); -} - -::google::protobuf::Metadata UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingSum::GetMetadata() const { - return ::google::protobuf::Message::GetMetadataImpl(GetClassData()->full()); -} -// =================================================================== - -class UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingGroup::_Internal { - public: - 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_); -}; - -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 ::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_, from); - ::uint32_t cached_has_bits = _impl_._has_bits_[0]; - _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) -} -inline PROTOBUF_NDEBUG_INLINE UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingGroup::Impl_::Impl_( - ::google::protobuf::internal::InternalVisibility visibility, - ::google::protobuf::Arena* arena) - : _cached_size_{0} {} - -inline void UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingGroup::SharedCtor(::_pb::Arena* arena) { - new (&_impl_) Impl_(internal_visibility(), arena); - ::memset(reinterpret_cast(&_impl_) + - offsetof(Impl_, reverse_window_scale_), - 0, - offsetof(Impl_, forward_window_scale_) - - offsetof(Impl_, reverse_window_scale_) + - sizeof(Impl_::forward_window_scale_)); -} -UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingGroup::~UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingGroup() { - // @@protoc_insertion_point(destructor:io.deephaven.proto.backplane.grpc.UpdateByRequest.UpdateByOperation.UpdateByColumn.UpdateBySpec.UpdateByRollingGroup) - _internal_metadata_.Delete<::google::protobuf::UnknownFieldSet>(); - SharedDtor(); -} -inline void UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingGroup::SharedDtor() { - ABSL_DCHECK(GetArena() == nullptr); - delete _impl_.reverse_window_scale_; - delete _impl_.forward_window_scale_; - _impl_.~Impl_(); -} - -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_ = { - { - PROTOBUF_FIELD_OFFSET(UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingGroup, _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 - 2, // num_aux_entries - offsetof(decltype(_table_), 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_UpdateByRollingGroup>(), // to_prefetch - #endif // PROTOBUF_PREFETCH_PARSE_TABLE - }, {{ - // .io.deephaven.proto.backplane.grpc.UpdateByWindowScale forward_window_scale = 2; - {::_pbi::TcParser::FastMtS1, - {18, 1, 1, PROTOBUF_FIELD_OFFSET(UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingGroup, _impl_.forward_window_scale_)}}, - // .io.deephaven.proto.backplane.grpc.UpdateByWindowScale reverse_window_scale = 1; - {::_pbi::TcParser::FastMtS1, - {10, 0, 0, PROTOBUF_FIELD_OFFSET(UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingGroup, _impl_.reverse_window_scale_)}}, - }}, {{ - 65535, 65535 - }}, {{ - // .io.deephaven.proto.backplane.grpc.UpdateByWindowScale reverse_window_scale = 1; - {PROTOBUF_FIELD_OFFSET(UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingGroup, _impl_.reverse_window_scale_), _Internal::kHasBitsOffset + 0, 0, - (0 | ::_fl::kFcOptional | ::_fl::kMessage | ::_fl::kTvTable)}, - // .io.deephaven.proto.backplane.grpc.UpdateByWindowScale forward_window_scale = 2; - {PROTOBUF_FIELD_OFFSET(UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingGroup, _impl_.forward_window_scale_), _Internal::kHasBitsOffset + 1, 1, - (0 | ::_fl::kFcOptional | ::_fl::kMessage | ::_fl::kTvTable)}, - }}, {{ - {::_pbi::TcParser::GetTable<::io::deephaven::proto::backplane::grpc::UpdateByWindowScale>()}, - {::_pbi::TcParser::GetTable<::io::deephaven::proto::backplane::grpc::UpdateByWindowScale>()}, - }}, {{ - }}, -}; - -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) { - 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>(); -} - -#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; - (void) cached_has_bits; - - cached_has_bits = from._impl_._has_bits_[0]; - if (cached_has_bits & 0x00000003u) { - if (cached_has_bits & 0x00000001u) { - 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) { - 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_); -} - -void UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingGroup::CopyFrom(const UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingGroup& from) { -// @@protoc_insertion_point(class_specific_copy_from_start:io.deephaven.proto.backplane.grpc.UpdateByRequest.UpdateByOperation.UpdateByColumn.UpdateBySpec.UpdateByRollingGroup) - if (&from == this) return; - Clear(); - MergeFrom(from); -} - - -void UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingGroup::InternalSwap(UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingGroup* PROTOBUF_RESTRICT other) { - using std::swap; - _internal_metadata_.InternalSwap(&other->_internal_metadata_); - swap(_impl_._has_bits_[0], other->_impl_._has_bits_[0]); - ::google::protobuf::internal::memswap< - PROTOBUF_FIELD_OFFSET(UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingGroup, _impl_.forward_window_scale_) - + sizeof(UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingGroup::_impl_.forward_window_scale_) - - PROTOBUF_FIELD_OFFSET(UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingGroup, _impl_.reverse_window_scale_)>( - reinterpret_cast(&_impl_.reverse_window_scale_), - reinterpret_cast(&other->_impl_.reverse_window_scale_)); -} - -::google::protobuf::Metadata UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingGroup::GetMetadata() const { - return ::google::protobuf::Message::GetMetadataImpl(GetClassData()->full()); -} -// =================================================================== - -class UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingAvg::_Internal { - public: - 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_); -}; - -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 ::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_, from); - ::uint32_t cached_has_bits = _impl_._has_bits_[0]; - _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) -} -inline PROTOBUF_NDEBUG_INLINE UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingAvg::Impl_::Impl_( - ::google::protobuf::internal::InternalVisibility visibility, - ::google::protobuf::Arena* arena) - : _cached_size_{0} {} - -inline void UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingAvg::SharedCtor(::_pb::Arena* arena) { - new (&_impl_) Impl_(internal_visibility(), arena); - ::memset(reinterpret_cast(&_impl_) + - offsetof(Impl_, reverse_window_scale_), - 0, - offsetof(Impl_, forward_window_scale_) - - offsetof(Impl_, reverse_window_scale_) + - sizeof(Impl_::forward_window_scale_)); -} -UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingAvg::~UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingAvg() { - // @@protoc_insertion_point(destructor:io.deephaven.proto.backplane.grpc.UpdateByRequest.UpdateByOperation.UpdateByColumn.UpdateBySpec.UpdateByRollingAvg) - _internal_metadata_.Delete<::google::protobuf::UnknownFieldSet>(); - SharedDtor(); -} -inline void UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingAvg::SharedDtor() { - ABSL_DCHECK(GetArena() == nullptr); - delete _impl_.reverse_window_scale_; - delete _impl_.forward_window_scale_; - _impl_.~Impl_(); -} - -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_ = { - { - PROTOBUF_FIELD_OFFSET(UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingAvg, _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 - 2, // num_aux_entries - offsetof(decltype(_table_), 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_UpdateByRollingAvg>(), // to_prefetch - #endif // PROTOBUF_PREFETCH_PARSE_TABLE - }, {{ - // .io.deephaven.proto.backplane.grpc.UpdateByWindowScale forward_window_scale = 2; - {::_pbi::TcParser::FastMtS1, - {18, 1, 1, PROTOBUF_FIELD_OFFSET(UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingAvg, _impl_.forward_window_scale_)}}, - // .io.deephaven.proto.backplane.grpc.UpdateByWindowScale reverse_window_scale = 1; - {::_pbi::TcParser::FastMtS1, - {10, 0, 0, PROTOBUF_FIELD_OFFSET(UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingAvg, _impl_.reverse_window_scale_)}}, - }}, {{ - 65535, 65535 - }}, {{ - // .io.deephaven.proto.backplane.grpc.UpdateByWindowScale reverse_window_scale = 1; - {PROTOBUF_FIELD_OFFSET(UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingAvg, _impl_.reverse_window_scale_), _Internal::kHasBitsOffset + 0, 0, - (0 | ::_fl::kFcOptional | ::_fl::kMessage | ::_fl::kTvTable)}, - // .io.deephaven.proto.backplane.grpc.UpdateByWindowScale forward_window_scale = 2; - {PROTOBUF_FIELD_OFFSET(UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingAvg, _impl_.forward_window_scale_), _Internal::kHasBitsOffset + 1, 1, - (0 | ::_fl::kFcOptional | ::_fl::kMessage | ::_fl::kTvTable)}, - }}, {{ - {::_pbi::TcParser::GetTable<::io::deephaven::proto::backplane::grpc::UpdateByWindowScale>()}, - {::_pbi::TcParser::GetTable<::io::deephaven::proto::backplane::grpc::UpdateByWindowScale>()}, - }}, {{ - }}, -}; - -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) { - 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>(); -} - -#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; - (void) cached_has_bits; - - cached_has_bits = from._impl_._has_bits_[0]; - if (cached_has_bits & 0x00000003u) { - if (cached_has_bits & 0x00000001u) { - 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) { - 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_); -} - -void UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingAvg::CopyFrom(const UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingAvg& from) { -// @@protoc_insertion_point(class_specific_copy_from_start:io.deephaven.proto.backplane.grpc.UpdateByRequest.UpdateByOperation.UpdateByColumn.UpdateBySpec.UpdateByRollingAvg) - if (&from == this) return; - Clear(); - MergeFrom(from); -} - - -void UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingAvg::InternalSwap(UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingAvg* PROTOBUF_RESTRICT other) { - using std::swap; - _internal_metadata_.InternalSwap(&other->_internal_metadata_); - swap(_impl_._has_bits_[0], other->_impl_._has_bits_[0]); - ::google::protobuf::internal::memswap< - PROTOBUF_FIELD_OFFSET(UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingAvg, _impl_.forward_window_scale_) - + sizeof(UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingAvg::_impl_.forward_window_scale_) - - PROTOBUF_FIELD_OFFSET(UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingAvg, _impl_.reverse_window_scale_)>( - reinterpret_cast(&_impl_.reverse_window_scale_), - reinterpret_cast(&other->_impl_.reverse_window_scale_)); -} - -::google::protobuf::Metadata UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingAvg::GetMetadata() const { - return ::google::protobuf::Message::GetMetadataImpl(GetClassData()->full()); -} -// =================================================================== - -class UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingMin::_Internal { - public: - 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_); -}; - -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 ::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_, from); - ::uint32_t cached_has_bits = _impl_._has_bits_[0]; - _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) -} -inline PROTOBUF_NDEBUG_INLINE UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingMin::Impl_::Impl_( - ::google::protobuf::internal::InternalVisibility visibility, - ::google::protobuf::Arena* arena) - : _cached_size_{0} {} - -inline void UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingMin::SharedCtor(::_pb::Arena* arena) { - new (&_impl_) Impl_(internal_visibility(), arena); - ::memset(reinterpret_cast(&_impl_) + - offsetof(Impl_, reverse_window_scale_), - 0, - offsetof(Impl_, forward_window_scale_) - - offsetof(Impl_, reverse_window_scale_) + - sizeof(Impl_::forward_window_scale_)); -} -UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingMin::~UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingMin() { - // @@protoc_insertion_point(destructor:io.deephaven.proto.backplane.grpc.UpdateByRequest.UpdateByOperation.UpdateByColumn.UpdateBySpec.UpdateByRollingMin) - _internal_metadata_.Delete<::google::protobuf::UnknownFieldSet>(); - SharedDtor(); -} -inline void UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingMin::SharedDtor() { - ABSL_DCHECK(GetArena() == nullptr); - delete _impl_.reverse_window_scale_; - delete _impl_.forward_window_scale_; - _impl_.~Impl_(); -} - -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_ = { - { - PROTOBUF_FIELD_OFFSET(UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingMin, _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 - 2, // num_aux_entries - offsetof(decltype(_table_), 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_UpdateByRollingMin>(), // to_prefetch - #endif // PROTOBUF_PREFETCH_PARSE_TABLE - }, {{ - // .io.deephaven.proto.backplane.grpc.UpdateByWindowScale forward_window_scale = 2; - {::_pbi::TcParser::FastMtS1, - {18, 1, 1, PROTOBUF_FIELD_OFFSET(UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingMin, _impl_.forward_window_scale_)}}, - // .io.deephaven.proto.backplane.grpc.UpdateByWindowScale reverse_window_scale = 1; - {::_pbi::TcParser::FastMtS1, - {10, 0, 0, PROTOBUF_FIELD_OFFSET(UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingMin, _impl_.reverse_window_scale_)}}, - }}, {{ - 65535, 65535 - }}, {{ - // .io.deephaven.proto.backplane.grpc.UpdateByWindowScale reverse_window_scale = 1; - {PROTOBUF_FIELD_OFFSET(UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingMin, _impl_.reverse_window_scale_), _Internal::kHasBitsOffset + 0, 0, - (0 | ::_fl::kFcOptional | ::_fl::kMessage | ::_fl::kTvTable)}, - // .io.deephaven.proto.backplane.grpc.UpdateByWindowScale forward_window_scale = 2; - {PROTOBUF_FIELD_OFFSET(UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingMin, _impl_.forward_window_scale_), _Internal::kHasBitsOffset + 1, 1, - (0 | ::_fl::kFcOptional | ::_fl::kMessage | ::_fl::kTvTable)}, - }}, {{ - {::_pbi::TcParser::GetTable<::io::deephaven::proto::backplane::grpc::UpdateByWindowScale>()}, - {::_pbi::TcParser::GetTable<::io::deephaven::proto::backplane::grpc::UpdateByWindowScale>()}, - }}, {{ - }}, -}; - -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) { - 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>(); -} - -#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; - (void) cached_has_bits; - - cached_has_bits = from._impl_._has_bits_[0]; - if (cached_has_bits & 0x00000003u) { - if (cached_has_bits & 0x00000001u) { - 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) { - 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_); -} - -void UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingMin::CopyFrom(const UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingMin& from) { -// @@protoc_insertion_point(class_specific_copy_from_start:io.deephaven.proto.backplane.grpc.UpdateByRequest.UpdateByOperation.UpdateByColumn.UpdateBySpec.UpdateByRollingMin) - if (&from == this) return; - Clear(); - MergeFrom(from); -} - - -void UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingMin::InternalSwap(UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingMin* PROTOBUF_RESTRICT other) { - using std::swap; - _internal_metadata_.InternalSwap(&other->_internal_metadata_); - swap(_impl_._has_bits_[0], other->_impl_._has_bits_[0]); - ::google::protobuf::internal::memswap< - PROTOBUF_FIELD_OFFSET(UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingMin, _impl_.forward_window_scale_) - + sizeof(UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingMin::_impl_.forward_window_scale_) - - PROTOBUF_FIELD_OFFSET(UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingMin, _impl_.reverse_window_scale_)>( - reinterpret_cast(&_impl_.reverse_window_scale_), - reinterpret_cast(&other->_impl_.reverse_window_scale_)); -} - -::google::protobuf::Metadata UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingMin::GetMetadata() const { - return ::google::protobuf::Message::GetMetadataImpl(GetClassData()->full()); -} -// =================================================================== - -class UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingMax::_Internal { - public: - 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_); -}; - -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 ::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_, from); - ::uint32_t cached_has_bits = _impl_._has_bits_[0]; - _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) -} -inline PROTOBUF_NDEBUG_INLINE UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingMax::Impl_::Impl_( - ::google::protobuf::internal::InternalVisibility visibility, - ::google::protobuf::Arena* arena) - : _cached_size_{0} {} - -inline void UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingMax::SharedCtor(::_pb::Arena* arena) { - new (&_impl_) Impl_(internal_visibility(), arena); - ::memset(reinterpret_cast(&_impl_) + - offsetof(Impl_, reverse_window_scale_), - 0, - offsetof(Impl_, forward_window_scale_) - - offsetof(Impl_, reverse_window_scale_) + - sizeof(Impl_::forward_window_scale_)); -} -UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingMax::~UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingMax() { - // @@protoc_insertion_point(destructor:io.deephaven.proto.backplane.grpc.UpdateByRequest.UpdateByOperation.UpdateByColumn.UpdateBySpec.UpdateByRollingMax) - _internal_metadata_.Delete<::google::protobuf::UnknownFieldSet>(); - SharedDtor(); -} -inline void UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingMax::SharedDtor() { - ABSL_DCHECK(GetArena() == nullptr); - delete _impl_.reverse_window_scale_; - delete _impl_.forward_window_scale_; - _impl_.~Impl_(); -} - -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_ = { - { - PROTOBUF_FIELD_OFFSET(UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingMax, _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 - 2, // num_aux_entries - offsetof(decltype(_table_), 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_UpdateByRollingMax>(), // to_prefetch - #endif // PROTOBUF_PREFETCH_PARSE_TABLE - }, {{ - // .io.deephaven.proto.backplane.grpc.UpdateByWindowScale forward_window_scale = 2; - {::_pbi::TcParser::FastMtS1, - {18, 1, 1, PROTOBUF_FIELD_OFFSET(UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingMax, _impl_.forward_window_scale_)}}, - // .io.deephaven.proto.backplane.grpc.UpdateByWindowScale reverse_window_scale = 1; - {::_pbi::TcParser::FastMtS1, - {10, 0, 0, PROTOBUF_FIELD_OFFSET(UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingMax, _impl_.reverse_window_scale_)}}, - }}, {{ - 65535, 65535 - }}, {{ - // .io.deephaven.proto.backplane.grpc.UpdateByWindowScale reverse_window_scale = 1; - {PROTOBUF_FIELD_OFFSET(UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingMax, _impl_.reverse_window_scale_), _Internal::kHasBitsOffset + 0, 0, - (0 | ::_fl::kFcOptional | ::_fl::kMessage | ::_fl::kTvTable)}, - // .io.deephaven.proto.backplane.grpc.UpdateByWindowScale forward_window_scale = 2; - {PROTOBUF_FIELD_OFFSET(UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingMax, _impl_.forward_window_scale_), _Internal::kHasBitsOffset + 1, 1, - (0 | ::_fl::kFcOptional | ::_fl::kMessage | ::_fl::kTvTable)}, - }}, {{ - {::_pbi::TcParser::GetTable<::io::deephaven::proto::backplane::grpc::UpdateByWindowScale>()}, - {::_pbi::TcParser::GetTable<::io::deephaven::proto::backplane::grpc::UpdateByWindowScale>()}, - }}, {{ - }}, -}; - -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) { - 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>(); -} - -#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; - (void) cached_has_bits; - - cached_has_bits = from._impl_._has_bits_[0]; - if (cached_has_bits & 0x00000003u) { - if (cached_has_bits & 0x00000001u) { - 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) { - 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_); -} - -void UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingMax::CopyFrom(const UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingMax& from) { -// @@protoc_insertion_point(class_specific_copy_from_start:io.deephaven.proto.backplane.grpc.UpdateByRequest.UpdateByOperation.UpdateByColumn.UpdateBySpec.UpdateByRollingMax) - if (&from == this) return; - Clear(); - MergeFrom(from); -} - - -void UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingMax::InternalSwap(UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingMax* PROTOBUF_RESTRICT other) { - using std::swap; - _internal_metadata_.InternalSwap(&other->_internal_metadata_); - swap(_impl_._has_bits_[0], other->_impl_._has_bits_[0]); - ::google::protobuf::internal::memswap< - PROTOBUF_FIELD_OFFSET(UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingMax, _impl_.forward_window_scale_) - + sizeof(UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingMax::_impl_.forward_window_scale_) - - PROTOBUF_FIELD_OFFSET(UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingMax, _impl_.reverse_window_scale_)>( - reinterpret_cast(&_impl_.reverse_window_scale_), - reinterpret_cast(&other->_impl_.reverse_window_scale_)); -} - -::google::protobuf::Metadata UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingMax::GetMetadata() const { - return ::google::protobuf::Message::GetMetadataImpl(GetClassData()->full()); -} -// =================================================================== - -class UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingProduct::_Internal { - public: - 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_); -}; - -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 ::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_, from); - ::uint32_t cached_has_bits = _impl_._has_bits_[0]; - _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) -} -inline PROTOBUF_NDEBUG_INLINE UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingProduct::Impl_::Impl_( - ::google::protobuf::internal::InternalVisibility visibility, - ::google::protobuf::Arena* arena) - : _cached_size_{0} {} - -inline void UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingProduct::SharedCtor(::_pb::Arena* arena) { - new (&_impl_) Impl_(internal_visibility(), arena); - ::memset(reinterpret_cast(&_impl_) + - offsetof(Impl_, reverse_window_scale_), - 0, - offsetof(Impl_, forward_window_scale_) - - offsetof(Impl_, reverse_window_scale_) + - sizeof(Impl_::forward_window_scale_)); -} -UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingProduct::~UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingProduct() { - // @@protoc_insertion_point(destructor:io.deephaven.proto.backplane.grpc.UpdateByRequest.UpdateByOperation.UpdateByColumn.UpdateBySpec.UpdateByRollingProduct) - _internal_metadata_.Delete<::google::protobuf::UnknownFieldSet>(); - SharedDtor(); -} -inline void UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingProduct::SharedDtor() { - ABSL_DCHECK(GetArena() == nullptr); - delete _impl_.reverse_window_scale_; - delete _impl_.forward_window_scale_; - _impl_.~Impl_(); -} - -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_ = { - { - PROTOBUF_FIELD_OFFSET(UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingProduct, _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 - 2, // num_aux_entries - offsetof(decltype(_table_), 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_UpdateByRollingProduct>(), // to_prefetch - #endif // PROTOBUF_PREFETCH_PARSE_TABLE - }, {{ - // .io.deephaven.proto.backplane.grpc.UpdateByWindowScale forward_window_scale = 2; - {::_pbi::TcParser::FastMtS1, - {18, 1, 1, PROTOBUF_FIELD_OFFSET(UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingProduct, _impl_.forward_window_scale_)}}, - // .io.deephaven.proto.backplane.grpc.UpdateByWindowScale reverse_window_scale = 1; - {::_pbi::TcParser::FastMtS1, - {10, 0, 0, PROTOBUF_FIELD_OFFSET(UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingProduct, _impl_.reverse_window_scale_)}}, - }}, {{ - 65535, 65535 - }}, {{ - // .io.deephaven.proto.backplane.grpc.UpdateByWindowScale reverse_window_scale = 1; - {PROTOBUF_FIELD_OFFSET(UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingProduct, _impl_.reverse_window_scale_), _Internal::kHasBitsOffset + 0, 0, - (0 | ::_fl::kFcOptional | ::_fl::kMessage | ::_fl::kTvTable)}, - // .io.deephaven.proto.backplane.grpc.UpdateByWindowScale forward_window_scale = 2; - {PROTOBUF_FIELD_OFFSET(UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingProduct, _impl_.forward_window_scale_), _Internal::kHasBitsOffset + 1, 1, - (0 | ::_fl::kFcOptional | ::_fl::kMessage | ::_fl::kTvTable)}, - }}, {{ - {::_pbi::TcParser::GetTable<::io::deephaven::proto::backplane::grpc::UpdateByWindowScale>()}, - {::_pbi::TcParser::GetTable<::io::deephaven::proto::backplane::grpc::UpdateByWindowScale>()}, - }}, {{ - }}, -}; - -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) { - 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>(); -} - -#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; - (void) cached_has_bits; - - cached_has_bits = from._impl_._has_bits_[0]; - if (cached_has_bits & 0x00000003u) { - if (cached_has_bits & 0x00000001u) { - 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) { - 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_); -} - -void UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingProduct::CopyFrom(const UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingProduct& from) { -// @@protoc_insertion_point(class_specific_copy_from_start:io.deephaven.proto.backplane.grpc.UpdateByRequest.UpdateByOperation.UpdateByColumn.UpdateBySpec.UpdateByRollingProduct) - if (&from == this) return; - Clear(); - MergeFrom(from); -} - - -void UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingProduct::InternalSwap(UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingProduct* PROTOBUF_RESTRICT other) { - using std::swap; - _internal_metadata_.InternalSwap(&other->_internal_metadata_); - swap(_impl_._has_bits_[0], other->_impl_._has_bits_[0]); - ::google::protobuf::internal::memswap< - PROTOBUF_FIELD_OFFSET(UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingProduct, _impl_.forward_window_scale_) - + sizeof(UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingProduct::_impl_.forward_window_scale_) - - PROTOBUF_FIELD_OFFSET(UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingProduct, _impl_.reverse_window_scale_)>( - reinterpret_cast(&_impl_.reverse_window_scale_), - reinterpret_cast(&other->_impl_.reverse_window_scale_)); -} - -::google::protobuf::Metadata UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingProduct::GetMetadata() const { - return ::google::protobuf::Message::GetMetadataImpl(GetClassData()->full()); -} -// =================================================================== - -class UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingCount::_Internal { - public: - 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_); -}; - -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 ::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_, from); - ::uint32_t cached_has_bits = _impl_._has_bits_[0]; - _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) -} -inline PROTOBUF_NDEBUG_INLINE UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingCount::Impl_::Impl_( - ::google::protobuf::internal::InternalVisibility visibility, - ::google::protobuf::Arena* arena) - : _cached_size_{0} {} - -inline void UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingCount::SharedCtor(::_pb::Arena* arena) { - new (&_impl_) Impl_(internal_visibility(), arena); - ::memset(reinterpret_cast(&_impl_) + - offsetof(Impl_, reverse_window_scale_), - 0, - offsetof(Impl_, forward_window_scale_) - - offsetof(Impl_, reverse_window_scale_) + - sizeof(Impl_::forward_window_scale_)); -} -UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingCount::~UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingCount() { - // @@protoc_insertion_point(destructor:io.deephaven.proto.backplane.grpc.UpdateByRequest.UpdateByOperation.UpdateByColumn.UpdateBySpec.UpdateByRollingCount) - _internal_metadata_.Delete<::google::protobuf::UnknownFieldSet>(); - SharedDtor(); -} -inline void UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingCount::SharedDtor() { - ABSL_DCHECK(GetArena() == nullptr); - delete _impl_.reverse_window_scale_; - delete _impl_.forward_window_scale_; - _impl_.~Impl_(); -} - -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_ = { - { - PROTOBUF_FIELD_OFFSET(UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingCount, _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 - 2, // num_aux_entries - offsetof(decltype(_table_), 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_UpdateByRollingCount>(), // to_prefetch - #endif // PROTOBUF_PREFETCH_PARSE_TABLE - }, {{ - // .io.deephaven.proto.backplane.grpc.UpdateByWindowScale forward_window_scale = 2; - {::_pbi::TcParser::FastMtS1, - {18, 1, 1, PROTOBUF_FIELD_OFFSET(UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingCount, _impl_.forward_window_scale_)}}, - // .io.deephaven.proto.backplane.grpc.UpdateByWindowScale reverse_window_scale = 1; - {::_pbi::TcParser::FastMtS1, - {10, 0, 0, PROTOBUF_FIELD_OFFSET(UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingCount, _impl_.reverse_window_scale_)}}, - }}, {{ - 65535, 65535 - }}, {{ - // .io.deephaven.proto.backplane.grpc.UpdateByWindowScale reverse_window_scale = 1; - {PROTOBUF_FIELD_OFFSET(UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingCount, _impl_.reverse_window_scale_), _Internal::kHasBitsOffset + 0, 0, - (0 | ::_fl::kFcOptional | ::_fl::kMessage | ::_fl::kTvTable)}, - // .io.deephaven.proto.backplane.grpc.UpdateByWindowScale forward_window_scale = 2; - {PROTOBUF_FIELD_OFFSET(UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingCount, _impl_.forward_window_scale_), _Internal::kHasBitsOffset + 1, 1, - (0 | ::_fl::kFcOptional | ::_fl::kMessage | ::_fl::kTvTable)}, - }}, {{ - {::_pbi::TcParser::GetTable<::io::deephaven::proto::backplane::grpc::UpdateByWindowScale>()}, - {::_pbi::TcParser::GetTable<::io::deephaven::proto::backplane::grpc::UpdateByWindowScale>()}, - }}, {{ - }}, -}; - -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) { - 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>(); -} - -#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; - (void) cached_has_bits; - - cached_has_bits = from._impl_._has_bits_[0]; - if (cached_has_bits & 0x00000003u) { - if (cached_has_bits & 0x00000001u) { - 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) { - 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_); -} - -void UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingCount::CopyFrom(const UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingCount& from) { -// @@protoc_insertion_point(class_specific_copy_from_start:io.deephaven.proto.backplane.grpc.UpdateByRequest.UpdateByOperation.UpdateByColumn.UpdateBySpec.UpdateByRollingCount) - if (&from == this) return; - Clear(); - MergeFrom(from); -} - - -void UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingCount::InternalSwap(UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingCount* PROTOBUF_RESTRICT other) { - using std::swap; - _internal_metadata_.InternalSwap(&other->_internal_metadata_); - swap(_impl_._has_bits_[0], other->_impl_._has_bits_[0]); - ::google::protobuf::internal::memswap< - PROTOBUF_FIELD_OFFSET(UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingCount, _impl_.forward_window_scale_) - + sizeof(UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingCount::_impl_.forward_window_scale_) - - PROTOBUF_FIELD_OFFSET(UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingCount, _impl_.reverse_window_scale_)>( - reinterpret_cast(&_impl_.reverse_window_scale_), - reinterpret_cast(&other->_impl_.reverse_window_scale_)); -} - -::google::protobuf::Metadata UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingCount::GetMetadata() const { - return ::google::protobuf::Message::GetMetadataImpl(GetClassData()->full()); -} -// =================================================================== - -class UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingStd::_Internal { - public: - 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_); -}; - -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 ::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_, from); - ::uint32_t cached_has_bits = _impl_._has_bits_[0]; - _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) -} -inline PROTOBUF_NDEBUG_INLINE UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingStd::Impl_::Impl_( - ::google::protobuf::internal::InternalVisibility visibility, - ::google::protobuf::Arena* arena) - : _cached_size_{0} {} - -inline void UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingStd::SharedCtor(::_pb::Arena* arena) { - new (&_impl_) Impl_(internal_visibility(), arena); - ::memset(reinterpret_cast(&_impl_) + - offsetof(Impl_, reverse_window_scale_), - 0, - offsetof(Impl_, forward_window_scale_) - - offsetof(Impl_, reverse_window_scale_) + - sizeof(Impl_::forward_window_scale_)); -} -UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingStd::~UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingStd() { - // @@protoc_insertion_point(destructor:io.deephaven.proto.backplane.grpc.UpdateByRequest.UpdateByOperation.UpdateByColumn.UpdateBySpec.UpdateByRollingStd) - _internal_metadata_.Delete<::google::protobuf::UnknownFieldSet>(); - SharedDtor(); -} -inline void UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingStd::SharedDtor() { - ABSL_DCHECK(GetArena() == nullptr); - delete _impl_.reverse_window_scale_; - delete _impl_.forward_window_scale_; - _impl_.~Impl_(); -} - -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_ = { - { - PROTOBUF_FIELD_OFFSET(UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingStd, _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 - 2, // num_aux_entries - offsetof(decltype(_table_), 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_UpdateByRollingStd>(), // to_prefetch - #endif // PROTOBUF_PREFETCH_PARSE_TABLE - }, {{ - // .io.deephaven.proto.backplane.grpc.UpdateByWindowScale forward_window_scale = 2; - {::_pbi::TcParser::FastMtS1, - {18, 1, 1, PROTOBUF_FIELD_OFFSET(UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingStd, _impl_.forward_window_scale_)}}, - // .io.deephaven.proto.backplane.grpc.UpdateByWindowScale reverse_window_scale = 1; - {::_pbi::TcParser::FastMtS1, - {10, 0, 0, PROTOBUF_FIELD_OFFSET(UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingStd, _impl_.reverse_window_scale_)}}, - }}, {{ - 65535, 65535 - }}, {{ - // .io.deephaven.proto.backplane.grpc.UpdateByWindowScale reverse_window_scale = 1; - {PROTOBUF_FIELD_OFFSET(UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingStd, _impl_.reverse_window_scale_), _Internal::kHasBitsOffset + 0, 0, - (0 | ::_fl::kFcOptional | ::_fl::kMessage | ::_fl::kTvTable)}, - // .io.deephaven.proto.backplane.grpc.UpdateByWindowScale forward_window_scale = 2; - {PROTOBUF_FIELD_OFFSET(UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingStd, _impl_.forward_window_scale_), _Internal::kHasBitsOffset + 1, 1, - (0 | ::_fl::kFcOptional | ::_fl::kMessage | ::_fl::kTvTable)}, - }}, {{ - {::_pbi::TcParser::GetTable<::io::deephaven::proto::backplane::grpc::UpdateByWindowScale>()}, - {::_pbi::TcParser::GetTable<::io::deephaven::proto::backplane::grpc::UpdateByWindowScale>()}, - }}, {{ - }}, -}; - -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) { - 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>(); -} - -#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; - (void) cached_has_bits; - - cached_has_bits = from._impl_._has_bits_[0]; - if (cached_has_bits & 0x00000003u) { - if (cached_has_bits & 0x00000001u) { - 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) { - 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_); -} - -void UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingStd::CopyFrom(const UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingStd& from) { -// @@protoc_insertion_point(class_specific_copy_from_start:io.deephaven.proto.backplane.grpc.UpdateByRequest.UpdateByOperation.UpdateByColumn.UpdateBySpec.UpdateByRollingStd) - if (&from == this) return; - Clear(); - MergeFrom(from); -} - - -void UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingStd::InternalSwap(UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingStd* PROTOBUF_RESTRICT other) { - using std::swap; - _internal_metadata_.InternalSwap(&other->_internal_metadata_); - swap(_impl_._has_bits_[0], other->_impl_._has_bits_[0]); - ::google::protobuf::internal::memswap< - PROTOBUF_FIELD_OFFSET(UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingStd, _impl_.forward_window_scale_) - + sizeof(UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingStd::_impl_.forward_window_scale_) - - PROTOBUF_FIELD_OFFSET(UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingStd, _impl_.reverse_window_scale_)>( - reinterpret_cast(&_impl_.reverse_window_scale_), - reinterpret_cast(&other->_impl_.reverse_window_scale_)); -} - -::google::protobuf::Metadata UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingStd::GetMetadata() const { - return ::google::protobuf::Message::GetMetadataImpl(GetClassData()->full()); -} -// =================================================================== - -class UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingWAvg::_Internal { - public: - 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_); -}; - -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 ::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_) {} - -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_, from); - ::uint32_t cached_has_bits = _impl_._has_bits_[0]; - _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) -} -inline PROTOBUF_NDEBUG_INLINE UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingWAvg::Impl_::Impl_( - ::google::protobuf::internal::InternalVisibility visibility, - ::google::protobuf::Arena* arena) - : _cached_size_{0}, - weight_column_(arena) {} - -inline void UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingWAvg::SharedCtor(::_pb::Arena* arena) { - new (&_impl_) Impl_(internal_visibility(), arena); - ::memset(reinterpret_cast(&_impl_) + - offsetof(Impl_, reverse_window_scale_), - 0, - offsetof(Impl_, forward_window_scale_) - - offsetof(Impl_, reverse_window_scale_) + - sizeof(Impl_::forward_window_scale_)); -} -UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingWAvg::~UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingWAvg() { - // @@protoc_insertion_point(destructor:io.deephaven.proto.backplane.grpc.UpdateByRequest.UpdateByOperation.UpdateByColumn.UpdateBySpec.UpdateByRollingWAvg) - _internal_metadata_.Delete<::google::protobuf::UnknownFieldSet>(); - SharedDtor(); -} -inline void UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingWAvg::SharedDtor() { - ABSL_DCHECK(GetArena() == nullptr); - _impl_.weight_column_.Destroy(); - delete _impl_.reverse_window_scale_; - delete _impl_.forward_window_scale_; - _impl_.~Impl_(); -} - -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_ = { - { - PROTOBUF_FIELD_OFFSET(UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingWAvg, _impl_._has_bits_), - 0, // no _extensions_ - 3, 24, // max_field_number, fast_idx_mask - offsetof(decltype(_table_), field_lookup_table), - 4294967288, // skipmap - offsetof(decltype(_table_), field_entries), - 3, // num_field_entries - 2, // num_aux_entries - offsetof(decltype(_table_), 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_UpdateByRollingWAvg>(), // to_prefetch - #endif // PROTOBUF_PREFETCH_PARSE_TABLE - }, {{ - {::_pbi::TcParser::MiniParse, {}}, - // .io.deephaven.proto.backplane.grpc.UpdateByWindowScale reverse_window_scale = 1; - {::_pbi::TcParser::FastMtS1, - {10, 0, 0, PROTOBUF_FIELD_OFFSET(UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingWAvg, _impl_.reverse_window_scale_)}}, - // .io.deephaven.proto.backplane.grpc.UpdateByWindowScale forward_window_scale = 2; - {::_pbi::TcParser::FastMtS1, - {18, 1, 1, PROTOBUF_FIELD_OFFSET(UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingWAvg, _impl_.forward_window_scale_)}}, - // string weight_column = 3; - {::_pbi::TcParser::FastUS1, - {26, 63, 0, PROTOBUF_FIELD_OFFSET(UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingWAvg, _impl_.weight_column_)}}, - }}, {{ - 65535, 65535 - }}, {{ - // .io.deephaven.proto.backplane.grpc.UpdateByWindowScale reverse_window_scale = 1; - {PROTOBUF_FIELD_OFFSET(UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingWAvg, _impl_.reverse_window_scale_), _Internal::kHasBitsOffset + 0, 0, - (0 | ::_fl::kFcOptional | ::_fl::kMessage | ::_fl::kTvTable)}, - // .io.deephaven.proto.backplane.grpc.UpdateByWindowScale forward_window_scale = 2; - {PROTOBUF_FIELD_OFFSET(UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingWAvg, _impl_.forward_window_scale_), _Internal::kHasBitsOffset + 1, 1, - (0 | ::_fl::kFcOptional | ::_fl::kMessage | ::_fl::kTvTable)}, - // string weight_column = 3; - {PROTOBUF_FIELD_OFFSET(UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingWAvg, _impl_.weight_column_), -1, 0, - (0 | ::_fl::kFcSingular | ::_fl::kUtf8String | ::_fl::kRepAString)}, - }}, {{ - {::_pbi::TcParser::GetTable<::io::deephaven::proto::backplane::grpc::UpdateByWindowScale>()}, - {::_pbi::TcParser::GetTable<::io::deephaven::proto::backplane::grpc::UpdateByWindowScale>()}, - }}, {{ - "\163\0\0\15\0\0\0\0" - "io.deephaven.proto.backplane.grpc.UpdateByRequest.UpdateByOperation.UpdateByColumn.UpdateBySpec.UpdateByRollingWAvg" - "weight_column" - }}, -}; - -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; - - _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>(); -} - -#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; - (void) cached_has_bits; - - if (!from._internal_weight_column().empty()) { - _this->_internal_set_weight_column(from._internal_weight_column()); - } - cached_has_bits = from._impl_._has_bits_[0]; - if (cached_has_bits & 0x00000003u) { - if (cached_has_bits & 0x00000001u) { - 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) { - 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_); -} - -void UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingWAvg::CopyFrom(const UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingWAvg& from) { -// @@protoc_insertion_point(class_specific_copy_from_start:io.deephaven.proto.backplane.grpc.UpdateByRequest.UpdateByOperation.UpdateByColumn.UpdateBySpec.UpdateByRollingWAvg) - if (&from == this) return; - Clear(); - MergeFrom(from); -} - - -void UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingWAvg::InternalSwap(UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingWAvg* PROTOBUF_RESTRICT other) { - using std::swap; - auto* arena = GetArena(); - ABSL_DCHECK_EQ(arena, other->GetArena()); - _internal_metadata_.InternalSwap(&other->_internal_metadata_); - swap(_impl_._has_bits_[0], other->_impl_._has_bits_[0]); - ::_pbi::ArenaStringPtr::InternalSwap(&_impl_.weight_column_, &other->_impl_.weight_column_, arena); - ::google::protobuf::internal::memswap< - PROTOBUF_FIELD_OFFSET(UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingWAvg, _impl_.forward_window_scale_) - + sizeof(UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingWAvg::_impl_.forward_window_scale_) - - PROTOBUF_FIELD_OFFSET(UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingWAvg, _impl_.reverse_window_scale_)>( - reinterpret_cast(&_impl_.reverse_window_scale_), - reinterpret_cast(&other->_impl_.reverse_window_scale_)); -} - -::google::protobuf::Metadata UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingWAvg::GetMetadata() const { - return ::google::protobuf::Message::GetMetadataImpl(GetClassData()->full()); -} -// =================================================================== - -class UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingFormula::_Internal { - public: - 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_); -}; - -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 ::io::deephaven::proto::backplane::grpc::UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingFormula& from_msg) - : _has_bits_{from._has_bits_}, - _cached_size_{0}, - formula_(arena, from.formula_), - param_token_(arena, from.param_token_) {} - -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_, from); - ::uint32_t cached_has_bits = _impl_._has_bits_[0]; - _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) -} -inline PROTOBUF_NDEBUG_INLINE UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingFormula::Impl_::Impl_( - ::google::protobuf::internal::InternalVisibility visibility, - ::google::protobuf::Arena* arena) - : _cached_size_{0}, - formula_(arena), - param_token_(arena) {} - -inline void UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingFormula::SharedCtor(::_pb::Arena* arena) { - new (&_impl_) Impl_(internal_visibility(), arena); - ::memset(reinterpret_cast(&_impl_) + - offsetof(Impl_, reverse_window_scale_), - 0, - offsetof(Impl_, forward_window_scale_) - - offsetof(Impl_, reverse_window_scale_) + - sizeof(Impl_::forward_window_scale_)); -} -UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingFormula::~UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingFormula() { - // @@protoc_insertion_point(destructor:io.deephaven.proto.backplane.grpc.UpdateByRequest.UpdateByOperation.UpdateByColumn.UpdateBySpec.UpdateByRollingFormula) - _internal_metadata_.Delete<::google::protobuf::UnknownFieldSet>(); - SharedDtor(); -} -inline void UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingFormula::SharedDtor() { - ABSL_DCHECK(GetArena() == nullptr); - _impl_.formula_.Destroy(); - _impl_.param_token_.Destroy(); - delete _impl_.reverse_window_scale_; - delete _impl_.forward_window_scale_; - _impl_.~Impl_(); -} - -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_ = { - { - PROTOBUF_FIELD_OFFSET(UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingFormula, _impl_._has_bits_), - 0, // no _extensions_ - 4, 24, // max_field_number, fast_idx_mask - offsetof(decltype(_table_), field_lookup_table), - 4294967280, // skipmap - offsetof(decltype(_table_), field_entries), - 4, // num_field_entries - 2, // num_aux_entries - offsetof(decltype(_table_), 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_UpdateByRollingFormula>(), // to_prefetch - #endif // PROTOBUF_PREFETCH_PARSE_TABLE - }, {{ - // string param_token = 4; - {::_pbi::TcParser::FastUS1, - {34, 63, 0, PROTOBUF_FIELD_OFFSET(UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingFormula, _impl_.param_token_)}}, - // .io.deephaven.proto.backplane.grpc.UpdateByWindowScale reverse_window_scale = 1; - {::_pbi::TcParser::FastMtS1, - {10, 0, 0, PROTOBUF_FIELD_OFFSET(UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingFormula, _impl_.reverse_window_scale_)}}, - // .io.deephaven.proto.backplane.grpc.UpdateByWindowScale forward_window_scale = 2; - {::_pbi::TcParser::FastMtS1, - {18, 1, 1, PROTOBUF_FIELD_OFFSET(UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingFormula, _impl_.forward_window_scale_)}}, - // string formula = 3; - {::_pbi::TcParser::FastUS1, - {26, 63, 0, PROTOBUF_FIELD_OFFSET(UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingFormula, _impl_.formula_)}}, - }}, {{ - 65535, 65535 - }}, {{ - // .io.deephaven.proto.backplane.grpc.UpdateByWindowScale reverse_window_scale = 1; - {PROTOBUF_FIELD_OFFSET(UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingFormula, _impl_.reverse_window_scale_), _Internal::kHasBitsOffset + 0, 0, - (0 | ::_fl::kFcOptional | ::_fl::kMessage | ::_fl::kTvTable)}, - // .io.deephaven.proto.backplane.grpc.UpdateByWindowScale forward_window_scale = 2; - {PROTOBUF_FIELD_OFFSET(UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingFormula, _impl_.forward_window_scale_), _Internal::kHasBitsOffset + 1, 1, - (0 | ::_fl::kFcOptional | ::_fl::kMessage | ::_fl::kTvTable)}, - // string formula = 3; - {PROTOBUF_FIELD_OFFSET(UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingFormula, _impl_.formula_), -1, 0, - (0 | ::_fl::kFcSingular | ::_fl::kUtf8String | ::_fl::kRepAString)}, - // string param_token = 4; - {PROTOBUF_FIELD_OFFSET(UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingFormula, _impl_.param_token_), -1, 0, - (0 | ::_fl::kFcSingular | ::_fl::kUtf8String | ::_fl::kRepAString)}, - }}, {{ - {::_pbi::TcParser::GetTable<::io::deephaven::proto::backplane::grpc::UpdateByWindowScale>()}, - {::_pbi::TcParser::GetTable<::io::deephaven::proto::backplane::grpc::UpdateByWindowScale>()}, - }}, {{ - "\166\0\0\7\13\0\0\0" - "io.deephaven.proto.backplane.grpc.UpdateByRequest.UpdateByOperation.UpdateByColumn.UpdateBySpec.UpdateByRollingFormula" - "formula" - "param_token" - }}, -}; - -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; - - _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>(); -} - -#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; - (void) cached_has_bits; - - 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()); - } - cached_has_bits = from._impl_._has_bits_[0]; - if (cached_has_bits & 0x00000003u) { - if (cached_has_bits & 0x00000001u) { - 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) { - 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_); -} - -void UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingFormula::CopyFrom(const UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingFormula& from) { -// @@protoc_insertion_point(class_specific_copy_from_start:io.deephaven.proto.backplane.grpc.UpdateByRequest.UpdateByOperation.UpdateByColumn.UpdateBySpec.UpdateByRollingFormula) - if (&from == this) return; - Clear(); - MergeFrom(from); -} - - -void UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingFormula::InternalSwap(UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingFormula* PROTOBUF_RESTRICT other) { - using std::swap; - auto* arena = GetArena(); - ABSL_DCHECK_EQ(arena, other->GetArena()); - _internal_metadata_.InternalSwap(&other->_internal_metadata_); - swap(_impl_._has_bits_[0], other->_impl_._has_bits_[0]); - ::_pbi::ArenaStringPtr::InternalSwap(&_impl_.formula_, &other->_impl_.formula_, arena); - ::_pbi::ArenaStringPtr::InternalSwap(&_impl_.param_token_, &other->_impl_.param_token_, arena); - ::google::protobuf::internal::memswap< - PROTOBUF_FIELD_OFFSET(UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingFormula, _impl_.forward_window_scale_) - + sizeof(UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingFormula::_impl_.forward_window_scale_) - - PROTOBUF_FIELD_OFFSET(UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingFormula, _impl_.reverse_window_scale_)>( - reinterpret_cast(&_impl_.reverse_window_scale_), - reinterpret_cast(&other->_impl_.reverse_window_scale_)); -} - -::google::protobuf::Metadata UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingFormula::GetMetadata() const { - 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_); -}; - -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(); - if (sum) { - ::google::protobuf::Arena* submessage_arena = sum->GetArena(); - if (message_arena != submessage_arena) { - sum = ::google::protobuf::internal::GetOwnedMessage(message_arena, sum, submessage_arena); - } - set_has_sum(); - _impl_.type_.sum_ = sum; - } - // @@protoc_insertion_point(field_set_allocated:io.deephaven.proto.backplane.grpc.UpdateByRequest.UpdateByOperation.UpdateByColumn.UpdateBySpec.sum) -} -void UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec::set_allocated_min(::io::deephaven::proto::backplane::grpc::UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByCumulativeMin* min) { - ::google::protobuf::Arena* message_arena = GetArena(); - clear_type(); - if (min) { - ::google::protobuf::Arena* submessage_arena = min->GetArena(); - if (message_arena != submessage_arena) { - min = ::google::protobuf::internal::GetOwnedMessage(message_arena, min, submessage_arena); - } - set_has_min(); - _impl_.type_.min_ = min; - } - // @@protoc_insertion_point(field_set_allocated:io.deephaven.proto.backplane.grpc.UpdateByRequest.UpdateByOperation.UpdateByColumn.UpdateBySpec.min) -} -void UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec::set_allocated_max(::io::deephaven::proto::backplane::grpc::UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByCumulativeMax* max) { - ::google::protobuf::Arena* message_arena = GetArena(); - clear_type(); - if (max) { - ::google::protobuf::Arena* submessage_arena = max->GetArena(); - if (message_arena != submessage_arena) { - max = ::google::protobuf::internal::GetOwnedMessage(message_arena, max, submessage_arena); - } - set_has_max(); - _impl_.type_.max_ = max; - } - // @@protoc_insertion_point(field_set_allocated:io.deephaven.proto.backplane.grpc.UpdateByRequest.UpdateByOperation.UpdateByColumn.UpdateBySpec.max) -} -void UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec::set_allocated_product(::io::deephaven::proto::backplane::grpc::UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByCumulativeProduct* product) { - ::google::protobuf::Arena* message_arena = GetArena(); - clear_type(); - if (product) { - ::google::protobuf::Arena* submessage_arena = product->GetArena(); - if (message_arena != submessage_arena) { - product = ::google::protobuf::internal::GetOwnedMessage(message_arena, product, submessage_arena); - } - set_has_product(); - _impl_.type_.product_ = product; - } - // @@protoc_insertion_point(field_set_allocated:io.deephaven.proto.backplane.grpc.UpdateByRequest.UpdateByOperation.UpdateByColumn.UpdateBySpec.product) -} -void UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec::set_allocated_fill(::io::deephaven::proto::backplane::grpc::UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByFill* fill) { - ::google::protobuf::Arena* message_arena = GetArena(); - clear_type(); - if (fill) { - ::google::protobuf::Arena* submessage_arena = fill->GetArena(); - if (message_arena != submessage_arena) { - fill = ::google::protobuf::internal::GetOwnedMessage(message_arena, fill, submessage_arena); - } - set_has_fill(); - _impl_.type_.fill_ = fill; - } - // @@protoc_insertion_point(field_set_allocated:io.deephaven.proto.backplane.grpc.UpdateByRequest.UpdateByOperation.UpdateByColumn.UpdateBySpec.fill) -} -void UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec::set_allocated_ema(::io::deephaven::proto::backplane::grpc::UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByEma* ema) { - ::google::protobuf::Arena* message_arena = GetArena(); - clear_type(); - if (ema) { - ::google::protobuf::Arena* submessage_arena = ema->GetArena(); - if (message_arena != submessage_arena) { - ema = ::google::protobuf::internal::GetOwnedMessage(message_arena, ema, submessage_arena); - } - set_has_ema(); - _impl_.type_.ema_ = ema; - } - // @@protoc_insertion_point(field_set_allocated:io.deephaven.proto.backplane.grpc.UpdateByRequest.UpdateByOperation.UpdateByColumn.UpdateBySpec.ema) -} -void UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec::set_allocated_rolling_sum(::io::deephaven::proto::backplane::grpc::UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingSum* rolling_sum) { - ::google::protobuf::Arena* message_arena = GetArena(); - clear_type(); - if (rolling_sum) { - ::google::protobuf::Arena* submessage_arena = rolling_sum->GetArena(); - if (message_arena != submessage_arena) { - rolling_sum = ::google::protobuf::internal::GetOwnedMessage(message_arena, rolling_sum, submessage_arena); - } - set_has_rolling_sum(); - _impl_.type_.rolling_sum_ = rolling_sum; - } - // @@protoc_insertion_point(field_set_allocated:io.deephaven.proto.backplane.grpc.UpdateByRequest.UpdateByOperation.UpdateByColumn.UpdateBySpec.rolling_sum) -} -void UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec::set_allocated_rolling_group(::io::deephaven::proto::backplane::grpc::UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingGroup* rolling_group) { - ::google::protobuf::Arena* message_arena = GetArena(); - clear_type(); - if (rolling_group) { - ::google::protobuf::Arena* submessage_arena = rolling_group->GetArena(); - if (message_arena != submessage_arena) { - rolling_group = ::google::protobuf::internal::GetOwnedMessage(message_arena, rolling_group, submessage_arena); - } - set_has_rolling_group(); - _impl_.type_.rolling_group_ = rolling_group; - } - // @@protoc_insertion_point(field_set_allocated:io.deephaven.proto.backplane.grpc.UpdateByRequest.UpdateByOperation.UpdateByColumn.UpdateBySpec.rolling_group) -} -void UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec::set_allocated_rolling_avg(::io::deephaven::proto::backplane::grpc::UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingAvg* rolling_avg) { - ::google::protobuf::Arena* message_arena = GetArena(); - clear_type(); - if (rolling_avg) { - ::google::protobuf::Arena* submessage_arena = rolling_avg->GetArena(); - if (message_arena != submessage_arena) { - rolling_avg = ::google::protobuf::internal::GetOwnedMessage(message_arena, rolling_avg, submessage_arena); - } - set_has_rolling_avg(); - _impl_.type_.rolling_avg_ = rolling_avg; - } - // @@protoc_insertion_point(field_set_allocated:io.deephaven.proto.backplane.grpc.UpdateByRequest.UpdateByOperation.UpdateByColumn.UpdateBySpec.rolling_avg) -} -void UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec::set_allocated_rolling_min(::io::deephaven::proto::backplane::grpc::UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingMin* rolling_min) { - ::google::protobuf::Arena* message_arena = GetArena(); - clear_type(); - if (rolling_min) { - ::google::protobuf::Arena* submessage_arena = rolling_min->GetArena(); - if (message_arena != submessage_arena) { - rolling_min = ::google::protobuf::internal::GetOwnedMessage(message_arena, rolling_min, submessage_arena); - } - set_has_rolling_min(); - _impl_.type_.rolling_min_ = rolling_min; - } - // @@protoc_insertion_point(field_set_allocated:io.deephaven.proto.backplane.grpc.UpdateByRequest.UpdateByOperation.UpdateByColumn.UpdateBySpec.rolling_min) -} -void UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec::set_allocated_rolling_max(::io::deephaven::proto::backplane::grpc::UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingMax* rolling_max) { - ::google::protobuf::Arena* message_arena = GetArena(); - clear_type(); - if (rolling_max) { - ::google::protobuf::Arena* submessage_arena = rolling_max->GetArena(); - if (message_arena != submessage_arena) { - rolling_max = ::google::protobuf::internal::GetOwnedMessage(message_arena, rolling_max, submessage_arena); - } - set_has_rolling_max(); - _impl_.type_.rolling_max_ = rolling_max; - } - // @@protoc_insertion_point(field_set_allocated:io.deephaven.proto.backplane.grpc.UpdateByRequest.UpdateByOperation.UpdateByColumn.UpdateBySpec.rolling_max) -} -void UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec::set_allocated_rolling_product(::io::deephaven::proto::backplane::grpc::UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingProduct* rolling_product) { - ::google::protobuf::Arena* message_arena = GetArena(); - clear_type(); - if (rolling_product) { - ::google::protobuf::Arena* submessage_arena = rolling_product->GetArena(); - if (message_arena != submessage_arena) { - rolling_product = ::google::protobuf::internal::GetOwnedMessage(message_arena, rolling_product, submessage_arena); - } - set_has_rolling_product(); - _impl_.type_.rolling_product_ = rolling_product; - } - // @@protoc_insertion_point(field_set_allocated:io.deephaven.proto.backplane.grpc.UpdateByRequest.UpdateByOperation.UpdateByColumn.UpdateBySpec.rolling_product) -} -void UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec::set_allocated_delta(::io::deephaven::proto::backplane::grpc::UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByDelta* delta) { - ::google::protobuf::Arena* message_arena = GetArena(); - clear_type(); - if (delta) { - ::google::protobuf::Arena* submessage_arena = delta->GetArena(); - if (message_arena != submessage_arena) { - delta = ::google::protobuf::internal::GetOwnedMessage(message_arena, delta, submessage_arena); - } - set_has_delta(); - _impl_.type_.delta_ = delta; - } - // @@protoc_insertion_point(field_set_allocated:io.deephaven.proto.backplane.grpc.UpdateByRequest.UpdateByOperation.UpdateByColumn.UpdateBySpec.delta) -} -void UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec::set_allocated_ems(::io::deephaven::proto::backplane::grpc::UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByEms* ems) { - ::google::protobuf::Arena* message_arena = GetArena(); - clear_type(); - if (ems) { - ::google::protobuf::Arena* submessage_arena = ems->GetArena(); - if (message_arena != submessage_arena) { - ems = ::google::protobuf::internal::GetOwnedMessage(message_arena, ems, submessage_arena); - } - set_has_ems(); - _impl_.type_.ems_ = ems; - } - // @@protoc_insertion_point(field_set_allocated:io.deephaven.proto.backplane.grpc.UpdateByRequest.UpdateByOperation.UpdateByColumn.UpdateBySpec.ems) -} -void UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec::set_allocated_em_min(::io::deephaven::proto::backplane::grpc::UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByEmMin* em_min) { - ::google::protobuf::Arena* message_arena = GetArena(); - clear_type(); - if (em_min) { - ::google::protobuf::Arena* submessage_arena = em_min->GetArena(); - if (message_arena != submessage_arena) { - em_min = ::google::protobuf::internal::GetOwnedMessage(message_arena, em_min, submessage_arena); - } - set_has_em_min(); - _impl_.type_.em_min_ = em_min; - } - // @@protoc_insertion_point(field_set_allocated:io.deephaven.proto.backplane.grpc.UpdateByRequest.UpdateByOperation.UpdateByColumn.UpdateBySpec.em_min) -} -void UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec::set_allocated_em_max(::io::deephaven::proto::backplane::grpc::UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByEmMax* em_max) { - ::google::protobuf::Arena* message_arena = GetArena(); - clear_type(); - if (em_max) { - ::google::protobuf::Arena* submessage_arena = em_max->GetArena(); - if (message_arena != submessage_arena) { - em_max = ::google::protobuf::internal::GetOwnedMessage(message_arena, em_max, submessage_arena); - } - set_has_em_max(); - _impl_.type_.em_max_ = em_max; - } - // @@protoc_insertion_point(field_set_allocated:io.deephaven.proto.backplane.grpc.UpdateByRequest.UpdateByOperation.UpdateByColumn.UpdateBySpec.em_max) -} -void UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec::set_allocated_em_std(::io::deephaven::proto::backplane::grpc::UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByEmStd* em_std) { - ::google::protobuf::Arena* message_arena = GetArena(); - clear_type(); - if (em_std) { - ::google::protobuf::Arena* submessage_arena = em_std->GetArena(); - if (message_arena != submessage_arena) { - em_std = ::google::protobuf::internal::GetOwnedMessage(message_arena, em_std, submessage_arena); - } - set_has_em_std(); - _impl_.type_.em_std_ = em_std; - } - // @@protoc_insertion_point(field_set_allocated:io.deephaven.proto.backplane.grpc.UpdateByRequest.UpdateByOperation.UpdateByColumn.UpdateBySpec.em_std) -} -void UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec::set_allocated_rolling_count(::io::deephaven::proto::backplane::grpc::UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingCount* rolling_count) { - ::google::protobuf::Arena* message_arena = GetArena(); - clear_type(); - if (rolling_count) { - ::google::protobuf::Arena* submessage_arena = rolling_count->GetArena(); - if (message_arena != submessage_arena) { - rolling_count = ::google::protobuf::internal::GetOwnedMessage(message_arena, rolling_count, submessage_arena); - } - set_has_rolling_count(); - _impl_.type_.rolling_count_ = rolling_count; - } - // @@protoc_insertion_point(field_set_allocated:io.deephaven.proto.backplane.grpc.UpdateByRequest.UpdateByOperation.UpdateByColumn.UpdateBySpec.rolling_count) -} -void UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec::set_allocated_rolling_std(::io::deephaven::proto::backplane::grpc::UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingStd* rolling_std) { - ::google::protobuf::Arena* message_arena = GetArena(); - clear_type(); - if (rolling_std) { - ::google::protobuf::Arena* submessage_arena = rolling_std->GetArena(); - if (message_arena != submessage_arena) { - rolling_std = ::google::protobuf::internal::GetOwnedMessage(message_arena, rolling_std, submessage_arena); - } - set_has_rolling_std(); - _impl_.type_.rolling_std_ = rolling_std; - } - // @@protoc_insertion_point(field_set_allocated:io.deephaven.proto.backplane.grpc.UpdateByRequest.UpdateByOperation.UpdateByColumn.UpdateBySpec.rolling_std) -} -void UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec::set_allocated_rolling_wavg(::io::deephaven::proto::backplane::grpc::UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingWAvg* rolling_wavg) { - ::google::protobuf::Arena* message_arena = GetArena(); - clear_type(); - if (rolling_wavg) { - ::google::protobuf::Arena* submessage_arena = rolling_wavg->GetArena(); - if (message_arena != submessage_arena) { - rolling_wavg = ::google::protobuf::internal::GetOwnedMessage(message_arena, rolling_wavg, submessage_arena); - } - set_has_rolling_wavg(); - _impl_.type_.rolling_wavg_ = rolling_wavg; - } - // @@protoc_insertion_point(field_set_allocated:io.deephaven.proto.backplane.grpc.UpdateByRequest.UpdateByOperation.UpdateByColumn.UpdateBySpec.rolling_wavg) -} -void UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec::set_allocated_rolling_formula(::io::deephaven::proto::backplane::grpc::UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingFormula* rolling_formula) { - ::google::protobuf::Arena* message_arena = GetArena(); - clear_type(); - if (rolling_formula) { - ::google::protobuf::Arena* submessage_arena = rolling_formula->GetArena(); - if (message_arena != submessage_arena) { - rolling_formula = ::google::protobuf::internal::GetOwnedMessage(message_arena, rolling_formula, submessage_arena); - } - set_has_rolling_formula(); - _impl_.type_.rolling_formula_ = rolling_formula; - } - // @@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 ::io::deephaven::proto::backplane::grpc::UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec& from_msg) - : type_{}, - _cached_size_{0}, - _oneof_case_{from._oneof_case_[0]} {} - -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_, from); - switch (type_case()) { - case TYPE_NOT_SET: - break; - case kSum: - _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_ = ::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_ = ::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_ = ::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_ = ::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_ = ::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_ = ::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_ = ::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_ = ::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_ = ::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_ = ::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_ = ::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_ = ::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_ = ::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_ = ::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_ = ::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_ = ::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_ = ::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_ = ::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_ = ::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_ = ::google::protobuf::Message::CopyConstruct<::io::deephaven::proto::backplane::grpc::UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingFormula>(arena, *from._impl_.type_.rolling_formula_); - break; - } - - // @@protoc_insertion_point(copy_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) - : type_{}, - _cached_size_{0}, - _oneof_case_{} {} - -inline void UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec::SharedCtor(::_pb::Arena* arena) { - new (&_impl_) Impl_(internal_visibility(), arena); -} -UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec::~UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec() { - // @@protoc_insertion_point(destructor:io.deephaven.proto.backplane.grpc.UpdateByRequest.UpdateByOperation.UpdateByColumn.UpdateBySpec) - _internal_metadata_.Delete<::google::protobuf::UnknownFieldSet>(); - SharedDtor(); -} -inline void UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec::SharedDtor() { - ABSL_DCHECK(GetArena() == nullptr); - if (has_type()) { - clear_type(); - } - _impl_.~Impl_(); -} - -void UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec::clear_type() { -// @@protoc_insertion_point(one_of_clear_start:io.deephaven.proto.backplane.grpc.UpdateByRequest.UpdateByOperation.UpdateByColumn.UpdateBySpec) - ::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; - } - case TYPE_NOT_SET: { - break; - } - } - _impl_._oneof_case_[0] = TYPE_NOT_SET; -} - - -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_ = { - { - 0, // no _has_bits_ - 0, // no _extensions_ - 21, 0, // max_field_number, fast_idx_mask - offsetof(decltype(_table_), field_lookup_table), - 4292870144, // skipmap - offsetof(decltype(_table_), field_entries), - 21, // num_field_entries - 21, // num_aux_entries - offsetof(decltype(_table_), 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>(), // to_prefetch - #endif // PROTOBUF_PREFETCH_PARSE_TABLE - }, {{ - {::_pbi::TcParser::MiniParse, {}}, - }}, {{ - 65535, 65535 - }}, {{ - // .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::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::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::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::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::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)}, - // .io.deephaven.proto.backplane.grpc.UpdateByRequest.UpdateByOperation.UpdateByColumn.UpdateBySpec.UpdateByRollingSum rolling_sum = 7; - {PROTOBUF_FIELD_OFFSET(UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec, _impl_.type_.rolling_sum_), _Internal::kOneofCaseOffset + 0, 6, - (0 | ::_fl::kFcOneof | ::_fl::kMessage | ::_fl::kTvTable)}, - // .io.deephaven.proto.backplane.grpc.UpdateByRequest.UpdateByOperation.UpdateByColumn.UpdateBySpec.UpdateByRollingGroup rolling_group = 8; - {PROTOBUF_FIELD_OFFSET(UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec, _impl_.type_.rolling_group_), _Internal::kOneofCaseOffset + 0, 7, - (0 | ::_fl::kFcOneof | ::_fl::kMessage | ::_fl::kTvTable)}, - // .io.deephaven.proto.backplane.grpc.UpdateByRequest.UpdateByOperation.UpdateByColumn.UpdateBySpec.UpdateByRollingAvg rolling_avg = 9; - {PROTOBUF_FIELD_OFFSET(UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec, _impl_.type_.rolling_avg_), _Internal::kOneofCaseOffset + 0, 8, - (0 | ::_fl::kFcOneof | ::_fl::kMessage | ::_fl::kTvTable)}, - // .io.deephaven.proto.backplane.grpc.UpdateByRequest.UpdateByOperation.UpdateByColumn.UpdateBySpec.UpdateByRollingMin rolling_min = 10; - {PROTOBUF_FIELD_OFFSET(UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec, _impl_.type_.rolling_min_), _Internal::kOneofCaseOffset + 0, 9, - (0 | ::_fl::kFcOneof | ::_fl::kMessage | ::_fl::kTvTable)}, - // .io.deephaven.proto.backplane.grpc.UpdateByRequest.UpdateByOperation.UpdateByColumn.UpdateBySpec.UpdateByRollingMax rolling_max = 11; - {PROTOBUF_FIELD_OFFSET(UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec, _impl_.type_.rolling_max_), _Internal::kOneofCaseOffset + 0, 10, - (0 | ::_fl::kFcOneof | ::_fl::kMessage | ::_fl::kTvTable)}, - // .io.deephaven.proto.backplane.grpc.UpdateByRequest.UpdateByOperation.UpdateByColumn.UpdateBySpec.UpdateByRollingProduct rolling_product = 12; - {PROTOBUF_FIELD_OFFSET(UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec, _impl_.type_.rolling_product_), _Internal::kOneofCaseOffset + 0, 11, - (0 | ::_fl::kFcOneof | ::_fl::kMessage | ::_fl::kTvTable)}, - // .io.deephaven.proto.backplane.grpc.UpdateByRequest.UpdateByOperation.UpdateByColumn.UpdateBySpec.UpdateByDelta delta = 13; - {PROTOBUF_FIELD_OFFSET(UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec, _impl_.type_.delta_), _Internal::kOneofCaseOffset + 0, 12, - (0 | ::_fl::kFcOneof | ::_fl::kMessage | ::_fl::kTvTable)}, - // .io.deephaven.proto.backplane.grpc.UpdateByRequest.UpdateByOperation.UpdateByColumn.UpdateBySpec.UpdateByEms ems = 14; - {PROTOBUF_FIELD_OFFSET(UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec, _impl_.type_.ems_), _Internal::kOneofCaseOffset + 0, 13, - (0 | ::_fl::kFcOneof | ::_fl::kMessage | ::_fl::kTvTable)}, - // .io.deephaven.proto.backplane.grpc.UpdateByRequest.UpdateByOperation.UpdateByColumn.UpdateBySpec.UpdateByEmMin em_min = 15; - {PROTOBUF_FIELD_OFFSET(UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec, _impl_.type_.em_min_), _Internal::kOneofCaseOffset + 0, 14, - (0 | ::_fl::kFcOneof | ::_fl::kMessage | ::_fl::kTvTable)}, - // .io.deephaven.proto.backplane.grpc.UpdateByRequest.UpdateByOperation.UpdateByColumn.UpdateBySpec.UpdateByEmMax em_max = 16; - {PROTOBUF_FIELD_OFFSET(UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec, _impl_.type_.em_max_), _Internal::kOneofCaseOffset + 0, 15, - (0 | ::_fl::kFcOneof | ::_fl::kMessage | ::_fl::kTvTable)}, - // .io.deephaven.proto.backplane.grpc.UpdateByRequest.UpdateByOperation.UpdateByColumn.UpdateBySpec.UpdateByEmStd em_std = 17; - {PROTOBUF_FIELD_OFFSET(UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec, _impl_.type_.em_std_), _Internal::kOneofCaseOffset + 0, 16, - (0 | ::_fl::kFcOneof | ::_fl::kMessage | ::_fl::kTvTable)}, - // .io.deephaven.proto.backplane.grpc.UpdateByRequest.UpdateByOperation.UpdateByColumn.UpdateBySpec.UpdateByRollingCount rolling_count = 18; - {PROTOBUF_FIELD_OFFSET(UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec, _impl_.type_.rolling_count_), _Internal::kOneofCaseOffset + 0, 17, - (0 | ::_fl::kFcOneof | ::_fl::kMessage | ::_fl::kTvTable)}, - // .io.deephaven.proto.backplane.grpc.UpdateByRequest.UpdateByOperation.UpdateByColumn.UpdateBySpec.UpdateByRollingStd rolling_std = 19; - {PROTOBUF_FIELD_OFFSET(UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec, _impl_.type_.rolling_std_), _Internal::kOneofCaseOffset + 0, 18, - (0 | ::_fl::kFcOneof | ::_fl::kMessage | ::_fl::kTvTable)}, - // .io.deephaven.proto.backplane.grpc.UpdateByRequest.UpdateByOperation.UpdateByColumn.UpdateBySpec.UpdateByRollingWAvg rolling_wavg = 20; - {PROTOBUF_FIELD_OFFSET(UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec, _impl_.type_.rolling_wavg_), _Internal::kOneofCaseOffset + 0, 19, - (0 | ::_fl::kFcOneof | ::_fl::kMessage | ::_fl::kTvTable)}, - // .io.deephaven.proto.backplane.grpc.UpdateByRequest.UpdateByOperation.UpdateByColumn.UpdateBySpec.UpdateByRollingFormula rolling_formula = 21; - {PROTOBUF_FIELD_OFFSET(UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec, _impl_.type_.rolling_formula_), _Internal::kOneofCaseOffset + 0, 20, - (0 | ::_fl::kFcOneof | ::_fl::kMessage | ::_fl::kTvTable)}, - }}, {{ - {::_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>()}, - {::_pbi::TcParser::GetTable<::io::deephaven::proto::backplane::grpc::UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingAvg>()}, - {::_pbi::TcParser::GetTable<::io::deephaven::proto::backplane::grpc::UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingMin>()}, - {::_pbi::TcParser::GetTable<::io::deephaven::proto::backplane::grpc::UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingMax>()}, - {::_pbi::TcParser::GetTable<::io::deephaven::proto::backplane::grpc::UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingProduct>()}, - {::_pbi::TcParser::GetTable<::io::deephaven::proto::backplane::grpc::UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByDelta>()}, - {::_pbi::TcParser::GetTable<::io::deephaven::proto::backplane::grpc::UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByEms>()}, - {::_pbi::TcParser::GetTable<::io::deephaven::proto::backplane::grpc::UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByEmMin>()}, - {::_pbi::TcParser::GetTable<::io::deephaven::proto::backplane::grpc::UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByEmMax>()}, - {::_pbi::TcParser::GetTable<::io::deephaven::proto::backplane::grpc::UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByEmStd>()}, - {::_pbi::TcParser::GetTable<::io::deephaven::proto::backplane::grpc::UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingCount>()}, - {::_pbi::TcParser::GetTable<::io::deephaven::proto::backplane::grpc::UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingStd>()}, - {::_pbi::TcParser::GetTable<::io::deephaven::proto::backplane::grpc::UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingWAvg>()}, - {::_pbi::TcParser::GetTable<::io::deephaven::proto::backplane::grpc::UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingFormula>()}, - }}, {{ - }}, -}; - -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; - // Prevent compiler warnings about cached_has_bits being unused - (void) cached_has_bits; - - clear_type(); - _internal_metadata_.Clear<::google::protobuf::UnknownFieldSet>(); -} - -#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; - (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; - } - - 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_); -} - -void UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec::CopyFrom(const UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec& from) { -// @@protoc_insertion_point(class_specific_copy_from_start:io.deephaven.proto.backplane.grpc.UpdateByRequest.UpdateByOperation.UpdateByColumn.UpdateBySpec) - if (&from == this) return; - Clear(); - MergeFrom(from); -} - - -void UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec::InternalSwap(UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec* PROTOBUF_RESTRICT other) { - using std::swap; - _internal_metadata_.InternalSwap(&other->_internal_metadata_); - swap(_impl_.type_, other->_impl_.type_); - swap(_impl_._oneof_case_[0], other->_impl_._oneof_case_[0]); -} - -::google::protobuf::Metadata UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec::GetMetadata() const { - return ::google::protobuf::Message::GetMetadataImpl(GetClassData()->full()); -} -// =================================================================== - -class UpdateByRequest_UpdateByOperation_UpdateByColumn::_Internal { - public: - using HasBits = - decltype(std::declval()._impl_._has_bits_); - static constexpr ::int32_t kHasBitsOffset = - 8 * PROTOBUF_FIELD_OFFSET(UpdateByRequest_UpdateByOperation_UpdateByColumn, _impl_._has_bits_); -}; - -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 ::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_} {} - -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_, from); - ::uint32_t cached_has_bits = _impl_._has_bits_[0]; - _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) -} -inline PROTOBUF_NDEBUG_INLINE UpdateByRequest_UpdateByOperation_UpdateByColumn::Impl_::Impl_( - ::google::protobuf::internal::InternalVisibility visibility, - ::google::protobuf::Arena* arena) - : _cached_size_{0}, - match_pairs_{visibility, arena} {} - -inline void UpdateByRequest_UpdateByOperation_UpdateByColumn::SharedCtor(::_pb::Arena* arena) { - new (&_impl_) Impl_(internal_visibility(), arena); - _impl_.spec_ = {}; -} -UpdateByRequest_UpdateByOperation_UpdateByColumn::~UpdateByRequest_UpdateByOperation_UpdateByColumn() { - // @@protoc_insertion_point(destructor:io.deephaven.proto.backplane.grpc.UpdateByRequest.UpdateByOperation.UpdateByColumn) - _internal_metadata_.Delete<::google::protobuf::UnknownFieldSet>(); - SharedDtor(); -} -inline void UpdateByRequest_UpdateByOperation_UpdateByColumn::SharedDtor() { - ABSL_DCHECK(GetArena() == nullptr); - delete _impl_.spec_; - _impl_.~Impl_(); -} - -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_ = { - { - PROTOBUF_FIELD_OFFSET(UpdateByRequest_UpdateByOperation_UpdateByColumn, _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::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, - {18, 63, 0, PROTOBUF_FIELD_OFFSET(UpdateByRequest_UpdateByOperation_UpdateByColumn, _impl_.match_pairs_)}}, - // .io.deephaven.proto.backplane.grpc.UpdateByRequest.UpdateByOperation.UpdateByColumn.UpdateBySpec spec = 1; - {::_pbi::TcParser::FastMtS1, - {10, 0, 0, PROTOBUF_FIELD_OFFSET(UpdateByRequest_UpdateByOperation_UpdateByColumn, _impl_.spec_)}}, - }}, {{ - 65535, 65535 - }}, {{ - // .io.deephaven.proto.backplane.grpc.UpdateByRequest.UpdateByOperation.UpdateByColumn.UpdateBySpec spec = 1; - {PROTOBUF_FIELD_OFFSET(UpdateByRequest_UpdateByOperation_UpdateByColumn, _impl_.spec_), _Internal::kHasBitsOffset + 0, 0, - (0 | ::_fl::kFcOptional | ::_fl::kMessage | ::_fl::kTvTable)}, - // repeated string match_pairs = 2; - {PROTOBUF_FIELD_OFFSET(UpdateByRequest_UpdateByOperation_UpdateByColumn, _impl_.match_pairs_), -1, 0, - (0 | ::_fl::kFcRepeated | ::_fl::kUtf8String | ::_fl::kRepSString)}, - }}, {{ - {::_pbi::TcParser::GetTable<::io::deephaven::proto::backplane::grpc::UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec>()}, - }}, {{ - "\122\0\13\0\0\0\0\0" - "io.deephaven.proto.backplane.grpc.UpdateByRequest.UpdateByOperation.UpdateByColumn" - "match_pairs" - }}, -}; - -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; - - _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>(); -} - -#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()); - 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_); -} - -void UpdateByRequest_UpdateByOperation_UpdateByColumn::CopyFrom(const UpdateByRequest_UpdateByOperation_UpdateByColumn& from) { -// @@protoc_insertion_point(class_specific_copy_from_start:io.deephaven.proto.backplane.grpc.UpdateByRequest.UpdateByOperation.UpdateByColumn) - if (&from == this) return; - Clear(); - MergeFrom(from); -} - - -void UpdateByRequest_UpdateByOperation_UpdateByColumn::InternalSwap(UpdateByRequest_UpdateByOperation_UpdateByColumn* PROTOBUF_RESTRICT other) { - using std::swap; - _internal_metadata_.InternalSwap(&other->_internal_metadata_); - swap(_impl_._has_bits_[0], other->_impl_._has_bits_[0]); - _impl_.match_pairs_.InternalSwap(&other->_impl_.match_pairs_); - swap(_impl_.spec_, other->_impl_.spec_); -} - -::google::protobuf::Metadata UpdateByRequest_UpdateByOperation_UpdateByColumn::GetMetadata() const { - 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_); -}; - -void UpdateByRequest_UpdateByOperation::set_allocated_column(::io::deephaven::proto::backplane::grpc::UpdateByRequest_UpdateByOperation_UpdateByColumn* column) { - ::google::protobuf::Arena* message_arena = GetArena(); - clear_type(); - if (column) { - ::google::protobuf::Arena* submessage_arena = column->GetArena(); - if (message_arena != submessage_arena) { - column = ::google::protobuf::internal::GetOwnedMessage(message_arena, column, submessage_arena); - } - set_has_column(); - _impl_.type_.column_ = column; - } - // @@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 ::io::deephaven::proto::backplane::grpc::UpdateByRequest_UpdateByOperation& from_msg) - : type_{}, - _cached_size_{0}, - _oneof_case_{from._oneof_case_[0]} {} - -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_, from); - switch (type_case()) { - case TYPE_NOT_SET: - break; - case kColumn: - _impl_.type_.column_ = ::google::protobuf::Message::CopyConstruct<::io::deephaven::proto::backplane::grpc::UpdateByRequest_UpdateByOperation_UpdateByColumn>(arena, *from._impl_.type_.column_); - break; - } - - // @@protoc_insertion_point(copy_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) - : type_{}, - _cached_size_{0}, - _oneof_case_{} {} - -inline void UpdateByRequest_UpdateByOperation::SharedCtor(::_pb::Arena* arena) { - new (&_impl_) Impl_(internal_visibility(), arena); -} -UpdateByRequest_UpdateByOperation::~UpdateByRequest_UpdateByOperation() { - // @@protoc_insertion_point(destructor:io.deephaven.proto.backplane.grpc.UpdateByRequest.UpdateByOperation) - _internal_metadata_.Delete<::google::protobuf::UnknownFieldSet>(); - SharedDtor(); -} -inline void UpdateByRequest_UpdateByOperation::SharedDtor() { - ABSL_DCHECK(GetArena() == nullptr); - if (has_type()) { - clear_type(); - } - _impl_.~Impl_(); -} - -void UpdateByRequest_UpdateByOperation::clear_type() { -// @@protoc_insertion_point(one_of_clear_start:io.deephaven.proto.backplane.grpc.UpdateByRequest.UpdateByOperation) - ::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; - } - case TYPE_NOT_SET: { - break; - } - } - _impl_._oneof_case_[0] = TYPE_NOT_SET; -} - - -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_ = { - { - 0, // no _has_bits_ - 0, // no _extensions_ - 1, 0, // max_field_number, fast_idx_mask - offsetof(decltype(_table_), field_lookup_table), - 4294967294, // skipmap - offsetof(decltype(_table_), field_entries), - 1, // num_field_entries - 1, // num_aux_entries - offsetof(decltype(_table_), 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>(), // to_prefetch - #endif // PROTOBUF_PREFETCH_PARSE_TABLE - }, {{ - {::_pbi::TcParser::MiniParse, {}}, - }}, {{ - 65535, 65535 - }}, {{ - // .io.deephaven.proto.backplane.grpc.UpdateByRequest.UpdateByOperation.UpdateByColumn column = 1; - {PROTOBUF_FIELD_OFFSET(UpdateByRequest_UpdateByOperation, _impl_.type_.column_), _Internal::kOneofCaseOffset + 0, 0, - (0 | ::_fl::kFcOneof | ::_fl::kMessage | ::_fl::kTvTable)}, - }}, {{ - {::_pbi::TcParser::GetTable<::io::deephaven::proto::backplane::grpc::UpdateByRequest_UpdateByOperation_UpdateByColumn>()}, - }}, {{ - }}, -}; - -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; - // Prevent compiler warnings about cached_has_bits being unused - (void) cached_has_bits; - - clear_type(); - _internal_metadata_.Clear<::google::protobuf::UnknownFieldSet>(); -} - -#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; - (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; - } - - 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_); -} - -void UpdateByRequest_UpdateByOperation::CopyFrom(const UpdateByRequest_UpdateByOperation& from) { -// @@protoc_insertion_point(class_specific_copy_from_start:io.deephaven.proto.backplane.grpc.UpdateByRequest.UpdateByOperation) - if (&from == this) return; - Clear(); - MergeFrom(from); -} - - -void UpdateByRequest_UpdateByOperation::InternalSwap(UpdateByRequest_UpdateByOperation* PROTOBUF_RESTRICT other) { - using std::swap; - _internal_metadata_.InternalSwap(&other->_internal_metadata_); - swap(_impl_.type_, other->_impl_.type_); - swap(_impl_._oneof_case_[0], other->_impl_._oneof_case_[0]); -} - -::google::protobuf::Metadata UpdateByRequest_UpdateByOperation::GetMetadata() const { - return ::google::protobuf::Message::GetMetadataImpl(GetClassData()->full()); -} -// =================================================================== - -class UpdateByRequest::_Internal { - public: - using HasBits = - decltype(std::declval()._impl_._has_bits_); - static constexpr ::int32_t kHasBitsOffset = - 8 * PROTOBUF_FIELD_OFFSET(UpdateByRequest, _impl_._has_bits_); -}; - -void UpdateByRequest::clear_result_id() { - ::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 ::io::deephaven::proto::backplane::grpc::UpdateByRequest& from_msg) - : _has_bits_{from._has_bits_}, - _cached_size_{0}, - operations_{visibility, arena, from.operations_}, - group_by_columns_{visibility, arena, from.group_by_columns_} {} - -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_, from); - ::uint32_t cached_has_bits = _impl_._has_bits_[0]; - _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) -} -inline PROTOBUF_NDEBUG_INLINE UpdateByRequest::Impl_::Impl_( - ::google::protobuf::internal::InternalVisibility visibility, - ::google::protobuf::Arena* arena) - : _cached_size_{0}, - operations_{visibility, arena}, - group_by_columns_{visibility, arena} {} - -inline void UpdateByRequest::SharedCtor(::_pb::Arena* arena) { - new (&_impl_) Impl_(internal_visibility(), arena); - ::memset(reinterpret_cast(&_impl_) + - offsetof(Impl_, result_id_), - 0, - offsetof(Impl_, options_) - - offsetof(Impl_, result_id_) + - sizeof(Impl_::options_)); -} -UpdateByRequest::~UpdateByRequest() { - // @@protoc_insertion_point(destructor:io.deephaven.proto.backplane.grpc.UpdateByRequest) - _internal_metadata_.Delete<::google::protobuf::UnknownFieldSet>(); - SharedDtor(); -} -inline void UpdateByRequest::SharedDtor() { - ABSL_DCHECK(GetArena() == nullptr); - delete _impl_.result_id_; - delete _impl_.source_id_; - delete _impl_.options_; - _impl_.~Impl_(); -} - -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_ = { - { - PROTOBUF_FIELD_OFFSET(UpdateByRequest, _impl_._has_bits_), - 0, // no _extensions_ - 5, 56, // max_field_number, fast_idx_mask - offsetof(decltype(_table_), field_lookup_table), - 4294967264, // skipmap - offsetof(decltype(_table_), field_entries), - 5, // num_field_entries - 4, // num_aux_entries - offsetof(decltype(_table_), 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>(), // to_prefetch - #endif // PROTOBUF_PREFETCH_PARSE_TABLE - }, {{ - {::_pbi::TcParser::MiniParse, {}}, - // .io.deephaven.proto.backplane.grpc.Ticket result_id = 1; - {::_pbi::TcParser::FastMtS1, - {10, 0, 0, PROTOBUF_FIELD_OFFSET(UpdateByRequest, _impl_.result_id_)}}, - // .io.deephaven.proto.backplane.grpc.TableReference source_id = 2; - {::_pbi::TcParser::FastMtS1, - {18, 1, 1, PROTOBUF_FIELD_OFFSET(UpdateByRequest, _impl_.source_id_)}}, - // .io.deephaven.proto.backplane.grpc.UpdateByRequest.UpdateByOptions options = 3; - {::_pbi::TcParser::FastMtS1, - {26, 2, 2, PROTOBUF_FIELD_OFFSET(UpdateByRequest, _impl_.options_)}}, - // repeated .io.deephaven.proto.backplane.grpc.UpdateByRequest.UpdateByOperation operations = 4; - {::_pbi::TcParser::FastMtR1, - {34, 63, 3, PROTOBUF_FIELD_OFFSET(UpdateByRequest, _impl_.operations_)}}, - // repeated string group_by_columns = 5; - {::_pbi::TcParser::FastUR1, - {42, 63, 0, PROTOBUF_FIELD_OFFSET(UpdateByRequest, _impl_.group_by_columns_)}}, - {::_pbi::TcParser::MiniParse, {}}, - {::_pbi::TcParser::MiniParse, {}}, - }}, {{ - 65535, 65535 - }}, {{ - // .io.deephaven.proto.backplane.grpc.Ticket result_id = 1; - {PROTOBUF_FIELD_OFFSET(UpdateByRequest, _impl_.result_id_), _Internal::kHasBitsOffset + 0, 0, - (0 | ::_fl::kFcOptional | ::_fl::kMessage | ::_fl::kTvTable)}, - // .io.deephaven.proto.backplane.grpc.TableReference source_id = 2; - {PROTOBUF_FIELD_OFFSET(UpdateByRequest, _impl_.source_id_), _Internal::kHasBitsOffset + 1, 1, - (0 | ::_fl::kFcOptional | ::_fl::kMessage | ::_fl::kTvTable)}, - // .io.deephaven.proto.backplane.grpc.UpdateByRequest.UpdateByOptions options = 3; - {PROTOBUF_FIELD_OFFSET(UpdateByRequest, _impl_.options_), _Internal::kHasBitsOffset + 2, 2, - (0 | ::_fl::kFcOptional | ::_fl::kMessage | ::_fl::kTvTable)}, - // repeated .io.deephaven.proto.backplane.grpc.UpdateByRequest.UpdateByOperation operations = 4; - {PROTOBUF_FIELD_OFFSET(UpdateByRequest, _impl_.operations_), -1, 3, - (0 | ::_fl::kFcRepeated | ::_fl::kMessage | ::_fl::kTvTable)}, - // repeated string group_by_columns = 5; - {PROTOBUF_FIELD_OFFSET(UpdateByRequest, _impl_.group_by_columns_), -1, 0, - (0 | ::_fl::kFcRepeated | ::_fl::kUtf8String | ::_fl::kRepSString)}, - }}, {{ - {::_pbi::TcParser::GetTable<::io::deephaven::proto::backplane::grpc::Ticket>()}, - {::_pbi::TcParser::GetTable<::io::deephaven::proto::backplane::grpc::TableReference>()}, - {::_pbi::TcParser::GetTable<::io::deephaven::proto::backplane::grpc::UpdateByRequest_UpdateByOptions>()}, - {::_pbi::TcParser::GetTable<::io::deephaven::proto::backplane::grpc::UpdateByRequest_UpdateByOperation>()}, - }}, {{ - "\61\0\0\0\0\20\0\0" - "io.deephaven.proto.backplane.grpc.UpdateByRequest" - "group_by_columns" - }}, -}; - -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; - - _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>(); -} - -#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; - (void) cached_has_bits; - - _this->_internal_mutable_operations()->MergeFrom( - from._internal_operations()); - _this->_internal_mutable_group_by_columns()->MergeFrom(from._internal_group_by_columns()); - cached_has_bits = from._impl_._has_bits_[0]; - if (cached_has_bits & 0x00000007u) { - 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 (cached_has_bits & 0x00000002u) { - 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) { - 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_); -} - -void UpdateByRequest::CopyFrom(const UpdateByRequest& from) { -// @@protoc_insertion_point(class_specific_copy_from_start:io.deephaven.proto.backplane.grpc.UpdateByRequest) - if (&from == this) return; - Clear(); - MergeFrom(from); -} - - -void UpdateByRequest::InternalSwap(UpdateByRequest* PROTOBUF_RESTRICT other) { - using std::swap; - _internal_metadata_.InternalSwap(&other->_internal_metadata_); - swap(_impl_._has_bits_[0], other->_impl_._has_bits_[0]); - _impl_.operations_.InternalSwap(&other->_impl_.operations_); - _impl_.group_by_columns_.InternalSwap(&other->_impl_.group_by_columns_); - ::google::protobuf::internal::memswap< - PROTOBUF_FIELD_OFFSET(UpdateByRequest, _impl_.options_) - + sizeof(UpdateByRequest::_impl_.options_) - - PROTOBUF_FIELD_OFFSET(UpdateByRequest, _impl_.result_id_)>( - reinterpret_cast(&_impl_.result_id_), - reinterpret_cast(&other->_impl_.result_id_)); -} - -::google::protobuf::Metadata UpdateByRequest::GetMetadata() const { - return ::google::protobuf::Message::GetMetadataImpl(GetClassData()->full()); -} -// =================================================================== - -class SelectDistinctRequest::_Internal { - public: - using HasBits = - decltype(std::declval()._impl_._has_bits_); - static constexpr ::int32_t kHasBitsOffset = - 8 * PROTOBUF_FIELD_OFFSET(SelectDistinctRequest, _impl_._has_bits_); -}; - -void SelectDistinctRequest::clear_result_id() { - ::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 ::io::deephaven::proto::backplane::grpc::SelectDistinctRequest& from_msg) - : _has_bits_{from._has_bits_}, - _cached_size_{0}, - column_names_{visibility, arena, from.column_names_} {} - -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_, from); - ::uint32_t cached_has_bits = _impl_._has_bits_[0]; - _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) -} -inline PROTOBUF_NDEBUG_INLINE SelectDistinctRequest::Impl_::Impl_( - ::google::protobuf::internal::InternalVisibility visibility, - ::google::protobuf::Arena* arena) - : _cached_size_{0}, - column_names_{visibility, arena} {} - -inline void SelectDistinctRequest::SharedCtor(::_pb::Arena* arena) { - new (&_impl_) Impl_(internal_visibility(), arena); - ::memset(reinterpret_cast(&_impl_) + - offsetof(Impl_, result_id_), - 0, - offsetof(Impl_, source_id_) - - offsetof(Impl_, result_id_) + - sizeof(Impl_::source_id_)); -} -SelectDistinctRequest::~SelectDistinctRequest() { - // @@protoc_insertion_point(destructor:io.deephaven.proto.backplane.grpc.SelectDistinctRequest) - _internal_metadata_.Delete<::google::protobuf::UnknownFieldSet>(); - SharedDtor(); -} -inline void SelectDistinctRequest::SharedDtor() { - ABSL_DCHECK(GetArena() == nullptr); - delete _impl_.result_id_; - delete _impl_.source_id_; - _impl_.~Impl_(); -} - -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_ = { - { - PROTOBUF_FIELD_OFFSET(SelectDistinctRequest, _impl_._has_bits_), - 0, // no _extensions_ - 3, 24, // max_field_number, fast_idx_mask - offsetof(decltype(_table_), field_lookup_table), - 4294967288, // skipmap - offsetof(decltype(_table_), field_entries), - 3, // num_field_entries - 2, // num_aux_entries - offsetof(decltype(_table_), 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::SelectDistinctRequest>(), // to_prefetch - #endif // PROTOBUF_PREFETCH_PARSE_TABLE - }, {{ - {::_pbi::TcParser::MiniParse, {}}, - // .io.deephaven.proto.backplane.grpc.Ticket result_id = 1; - {::_pbi::TcParser::FastMtS1, - {10, 0, 0, PROTOBUF_FIELD_OFFSET(SelectDistinctRequest, _impl_.result_id_)}}, - // .io.deephaven.proto.backplane.grpc.TableReference source_id = 2; - {::_pbi::TcParser::FastMtS1, - {18, 1, 1, PROTOBUF_FIELD_OFFSET(SelectDistinctRequest, _impl_.source_id_)}}, - // repeated string column_names = 3; - {::_pbi::TcParser::FastUR1, - {26, 63, 0, PROTOBUF_FIELD_OFFSET(SelectDistinctRequest, _impl_.column_names_)}}, - }}, {{ - 65535, 65535 - }}, {{ - // .io.deephaven.proto.backplane.grpc.Ticket result_id = 1; - {PROTOBUF_FIELD_OFFSET(SelectDistinctRequest, _impl_.result_id_), _Internal::kHasBitsOffset + 0, 0, - (0 | ::_fl::kFcOptional | ::_fl::kMessage | ::_fl::kTvTable)}, - // .io.deephaven.proto.backplane.grpc.TableReference source_id = 2; - {PROTOBUF_FIELD_OFFSET(SelectDistinctRequest, _impl_.source_id_), _Internal::kHasBitsOffset + 1, 1, - (0 | ::_fl::kFcOptional | ::_fl::kMessage | ::_fl::kTvTable)}, - // repeated string column_names = 3; - {PROTOBUF_FIELD_OFFSET(SelectDistinctRequest, _impl_.column_names_), -1, 0, - (0 | ::_fl::kFcRepeated | ::_fl::kUtf8String | ::_fl::kRepSString)}, - }}, {{ - {::_pbi::TcParser::GetTable<::io::deephaven::proto::backplane::grpc::Ticket>()}, - {::_pbi::TcParser::GetTable<::io::deephaven::proto::backplane::grpc::TableReference>()}, - }}, {{ - "\67\0\0\14\0\0\0\0" - "io.deephaven.proto.backplane.grpc.SelectDistinctRequest" - "column_names" - }}, -}; - -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; - - _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>(); -} - -#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; - (void) cached_has_bits; - - _this->_internal_mutable_column_names()->MergeFrom(from._internal_column_names()); - cached_has_bits = from._impl_._has_bits_[0]; - if (cached_has_bits & 0x00000003u) { - 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 (cached_has_bits & 0x00000002u) { - 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_); -} - -void SelectDistinctRequest::CopyFrom(const SelectDistinctRequest& from) { -// @@protoc_insertion_point(class_specific_copy_from_start:io.deephaven.proto.backplane.grpc.SelectDistinctRequest) - if (&from == this) return; - Clear(); - MergeFrom(from); -} - - -void SelectDistinctRequest::InternalSwap(SelectDistinctRequest* PROTOBUF_RESTRICT other) { - using std::swap; - _internal_metadata_.InternalSwap(&other->_internal_metadata_); - swap(_impl_._has_bits_[0], other->_impl_._has_bits_[0]); - _impl_.column_names_.InternalSwap(&other->_impl_.column_names_); - ::google::protobuf::internal::memswap< - PROTOBUF_FIELD_OFFSET(SelectDistinctRequest, _impl_.source_id_) - + sizeof(SelectDistinctRequest::_impl_.source_id_) - - PROTOBUF_FIELD_OFFSET(SelectDistinctRequest, _impl_.result_id_)>( - reinterpret_cast(&_impl_.result_id_), - reinterpret_cast(&other->_impl_.result_id_)); -} - -::google::protobuf::Metadata SelectDistinctRequest::GetMetadata() const { - return ::google::protobuf::Message::GetMetadataImpl(GetClassData()->full()); -} -// =================================================================== - -class DropColumnsRequest::_Internal { - public: - using HasBits = - decltype(std::declval()._impl_._has_bits_); - static constexpr ::int32_t kHasBitsOffset = - 8 * PROTOBUF_FIELD_OFFSET(DropColumnsRequest, _impl_._has_bits_); -}; - -void DropColumnsRequest::clear_result_id() { - ::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 ::io::deephaven::proto::backplane::grpc::DropColumnsRequest& from_msg) - : _has_bits_{from._has_bits_}, - _cached_size_{0}, - column_names_{visibility, arena, from.column_names_} {} - -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_, from); - ::uint32_t cached_has_bits = _impl_._has_bits_[0]; - _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) -} -inline PROTOBUF_NDEBUG_INLINE DropColumnsRequest::Impl_::Impl_( - ::google::protobuf::internal::InternalVisibility visibility, - ::google::protobuf::Arena* arena) - : _cached_size_{0}, - column_names_{visibility, arena} {} - -inline void DropColumnsRequest::SharedCtor(::_pb::Arena* arena) { - new (&_impl_) Impl_(internal_visibility(), arena); - ::memset(reinterpret_cast(&_impl_) + - offsetof(Impl_, result_id_), - 0, - offsetof(Impl_, source_id_) - - offsetof(Impl_, result_id_) + - sizeof(Impl_::source_id_)); -} -DropColumnsRequest::~DropColumnsRequest() { - // @@protoc_insertion_point(destructor:io.deephaven.proto.backplane.grpc.DropColumnsRequest) - _internal_metadata_.Delete<::google::protobuf::UnknownFieldSet>(); - SharedDtor(); -} -inline void DropColumnsRequest::SharedDtor() { - ABSL_DCHECK(GetArena() == nullptr); - delete _impl_.result_id_; - delete _impl_.source_id_; - _impl_.~Impl_(); -} - -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_ = { - { - PROTOBUF_FIELD_OFFSET(DropColumnsRequest, _impl_._has_bits_), - 0, // no _extensions_ - 3, 24, // max_field_number, fast_idx_mask - offsetof(decltype(_table_), field_lookup_table), - 4294967288, // skipmap - offsetof(decltype(_table_), field_entries), - 3, // num_field_entries - 2, // num_aux_entries - offsetof(decltype(_table_), 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::DropColumnsRequest>(), // to_prefetch - #endif // PROTOBUF_PREFETCH_PARSE_TABLE - }, {{ - {::_pbi::TcParser::MiniParse, {}}, - // .io.deephaven.proto.backplane.grpc.Ticket result_id = 1; - {::_pbi::TcParser::FastMtS1, - {10, 0, 0, PROTOBUF_FIELD_OFFSET(DropColumnsRequest, _impl_.result_id_)}}, - // .io.deephaven.proto.backplane.grpc.TableReference source_id = 2; - {::_pbi::TcParser::FastMtS1, - {18, 1, 1, PROTOBUF_FIELD_OFFSET(DropColumnsRequest, _impl_.source_id_)}}, - // repeated string column_names = 3; - {::_pbi::TcParser::FastUR1, - {26, 63, 0, PROTOBUF_FIELD_OFFSET(DropColumnsRequest, _impl_.column_names_)}}, - }}, {{ - 65535, 65535 - }}, {{ - // .io.deephaven.proto.backplane.grpc.Ticket result_id = 1; - {PROTOBUF_FIELD_OFFSET(DropColumnsRequest, _impl_.result_id_), _Internal::kHasBitsOffset + 0, 0, - (0 | ::_fl::kFcOptional | ::_fl::kMessage | ::_fl::kTvTable)}, - // .io.deephaven.proto.backplane.grpc.TableReference source_id = 2; - {PROTOBUF_FIELD_OFFSET(DropColumnsRequest, _impl_.source_id_), _Internal::kHasBitsOffset + 1, 1, - (0 | ::_fl::kFcOptional | ::_fl::kMessage | ::_fl::kTvTable)}, - // repeated string column_names = 3; - {PROTOBUF_FIELD_OFFSET(DropColumnsRequest, _impl_.column_names_), -1, 0, - (0 | ::_fl::kFcRepeated | ::_fl::kUtf8String | ::_fl::kRepSString)}, - }}, {{ - {::_pbi::TcParser::GetTable<::io::deephaven::proto::backplane::grpc::Ticket>()}, - {::_pbi::TcParser::GetTable<::io::deephaven::proto::backplane::grpc::TableReference>()}, - }}, {{ - "\64\0\0\14\0\0\0\0" - "io.deephaven.proto.backplane.grpc.DropColumnsRequest" - "column_names" - }}, -}; - -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; - - _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>(); -} - -#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; - (void) cached_has_bits; - - _this->_internal_mutable_column_names()->MergeFrom(from._internal_column_names()); - cached_has_bits = from._impl_._has_bits_[0]; - if (cached_has_bits & 0x00000003u) { - 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 (cached_has_bits & 0x00000002u) { - 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_); -} - -void DropColumnsRequest::CopyFrom(const DropColumnsRequest& from) { -// @@protoc_insertion_point(class_specific_copy_from_start:io.deephaven.proto.backplane.grpc.DropColumnsRequest) - if (&from == this) return; - Clear(); - MergeFrom(from); -} - - -void DropColumnsRequest::InternalSwap(DropColumnsRequest* PROTOBUF_RESTRICT other) { - using std::swap; - _internal_metadata_.InternalSwap(&other->_internal_metadata_); - swap(_impl_._has_bits_[0], other->_impl_._has_bits_[0]); - _impl_.column_names_.InternalSwap(&other->_impl_.column_names_); - ::google::protobuf::internal::memswap< - PROTOBUF_FIELD_OFFSET(DropColumnsRequest, _impl_.source_id_) - + sizeof(DropColumnsRequest::_impl_.source_id_) - - PROTOBUF_FIELD_OFFSET(DropColumnsRequest, _impl_.result_id_)>( - reinterpret_cast(&_impl_.result_id_), - reinterpret_cast(&other->_impl_.result_id_)); -} - -::google::protobuf::Metadata DropColumnsRequest::GetMetadata() const { - return ::google::protobuf::Message::GetMetadataImpl(GetClassData()->full()); -} -// =================================================================== - -class UnstructuredFilterTableRequest::_Internal { - public: - using HasBits = - decltype(std::declval()._impl_._has_bits_); - static constexpr ::int32_t kHasBitsOffset = - 8 * PROTOBUF_FIELD_OFFSET(UnstructuredFilterTableRequest, _impl_._has_bits_); -}; - -void UnstructuredFilterTableRequest::clear_result_id() { - ::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 ::io::deephaven::proto::backplane::grpc::UnstructuredFilterTableRequest& from_msg) - : _has_bits_{from._has_bits_}, - _cached_size_{0}, - filters_{visibility, arena, from.filters_} {} - -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_, from); - ::uint32_t cached_has_bits = _impl_._has_bits_[0]; - _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) -} -inline PROTOBUF_NDEBUG_INLINE UnstructuredFilterTableRequest::Impl_::Impl_( - ::google::protobuf::internal::InternalVisibility visibility, - ::google::protobuf::Arena* arena) - : _cached_size_{0}, - filters_{visibility, arena} {} - -inline void UnstructuredFilterTableRequest::SharedCtor(::_pb::Arena* arena) { - new (&_impl_) Impl_(internal_visibility(), arena); - ::memset(reinterpret_cast(&_impl_) + - offsetof(Impl_, result_id_), - 0, - offsetof(Impl_, source_id_) - - offsetof(Impl_, result_id_) + - sizeof(Impl_::source_id_)); -} -UnstructuredFilterTableRequest::~UnstructuredFilterTableRequest() { - // @@protoc_insertion_point(destructor:io.deephaven.proto.backplane.grpc.UnstructuredFilterTableRequest) - _internal_metadata_.Delete<::google::protobuf::UnknownFieldSet>(); - SharedDtor(); -} -inline void UnstructuredFilterTableRequest::SharedDtor() { - ABSL_DCHECK(GetArena() == nullptr); - delete _impl_.result_id_; - delete _impl_.source_id_; - _impl_.~Impl_(); -} - -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_ = { - { - PROTOBUF_FIELD_OFFSET(UnstructuredFilterTableRequest, _impl_._has_bits_), - 0, // no _extensions_ - 3, 24, // max_field_number, fast_idx_mask - offsetof(decltype(_table_), field_lookup_table), - 4294967288, // skipmap - offsetof(decltype(_table_), field_entries), - 3, // num_field_entries - 2, // num_aux_entries - offsetof(decltype(_table_), 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::UnstructuredFilterTableRequest>(), // to_prefetch - #endif // PROTOBUF_PREFETCH_PARSE_TABLE - }, {{ - {::_pbi::TcParser::MiniParse, {}}, - // .io.deephaven.proto.backplane.grpc.Ticket result_id = 1; - {::_pbi::TcParser::FastMtS1, - {10, 0, 0, PROTOBUF_FIELD_OFFSET(UnstructuredFilterTableRequest, _impl_.result_id_)}}, - // .io.deephaven.proto.backplane.grpc.TableReference source_id = 2; - {::_pbi::TcParser::FastMtS1, - {18, 1, 1, PROTOBUF_FIELD_OFFSET(UnstructuredFilterTableRequest, _impl_.source_id_)}}, - // repeated string filters = 3; - {::_pbi::TcParser::FastUR1, - {26, 63, 0, PROTOBUF_FIELD_OFFSET(UnstructuredFilterTableRequest, _impl_.filters_)}}, - }}, {{ - 65535, 65535 - }}, {{ - // .io.deephaven.proto.backplane.grpc.Ticket result_id = 1; - {PROTOBUF_FIELD_OFFSET(UnstructuredFilterTableRequest, _impl_.result_id_), _Internal::kHasBitsOffset + 0, 0, - (0 | ::_fl::kFcOptional | ::_fl::kMessage | ::_fl::kTvTable)}, - // .io.deephaven.proto.backplane.grpc.TableReference source_id = 2; - {PROTOBUF_FIELD_OFFSET(UnstructuredFilterTableRequest, _impl_.source_id_), _Internal::kHasBitsOffset + 1, 1, - (0 | ::_fl::kFcOptional | ::_fl::kMessage | ::_fl::kTvTable)}, - // repeated string filters = 3; - {PROTOBUF_FIELD_OFFSET(UnstructuredFilterTableRequest, _impl_.filters_), -1, 0, - (0 | ::_fl::kFcRepeated | ::_fl::kUtf8String | ::_fl::kRepSString)}, - }}, {{ - {::_pbi::TcParser::GetTable<::io::deephaven::proto::backplane::grpc::Ticket>()}, - {::_pbi::TcParser::GetTable<::io::deephaven::proto::backplane::grpc::TableReference>()}, - }}, {{ - "\100\0\0\7\0\0\0\0" - "io.deephaven.proto.backplane.grpc.UnstructuredFilterTableRequest" - "filters" - }}, -}; - -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; - - _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>(); -} - -#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; - (void) cached_has_bits; - - _this->_internal_mutable_filters()->MergeFrom(from._internal_filters()); - cached_has_bits = from._impl_._has_bits_[0]; - if (cached_has_bits & 0x00000003u) { - 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 (cached_has_bits & 0x00000002u) { - 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_); -} - -void UnstructuredFilterTableRequest::CopyFrom(const UnstructuredFilterTableRequest& from) { -// @@protoc_insertion_point(class_specific_copy_from_start:io.deephaven.proto.backplane.grpc.UnstructuredFilterTableRequest) - if (&from == this) return; - Clear(); - MergeFrom(from); -} - - -void UnstructuredFilterTableRequest::InternalSwap(UnstructuredFilterTableRequest* PROTOBUF_RESTRICT other) { - using std::swap; - _internal_metadata_.InternalSwap(&other->_internal_metadata_); - swap(_impl_._has_bits_[0], other->_impl_._has_bits_[0]); - _impl_.filters_.InternalSwap(&other->_impl_.filters_); - ::google::protobuf::internal::memswap< - PROTOBUF_FIELD_OFFSET(UnstructuredFilterTableRequest, _impl_.source_id_) - + sizeof(UnstructuredFilterTableRequest::_impl_.source_id_) - - PROTOBUF_FIELD_OFFSET(UnstructuredFilterTableRequest, _impl_.result_id_)>( - reinterpret_cast(&_impl_.result_id_), - reinterpret_cast(&other->_impl_.result_id_)); -} - -::google::protobuf::Metadata UnstructuredFilterTableRequest::GetMetadata() const { - return ::google::protobuf::Message::GetMetadataImpl(GetClassData()->full()); -} -// =================================================================== - -class HeadOrTailRequest::_Internal { - public: - using HasBits = - decltype(std::declval()._impl_._has_bits_); - static constexpr ::int32_t kHasBitsOffset = - 8 * PROTOBUF_FIELD_OFFSET(HeadOrTailRequest, _impl_._has_bits_); -}; - -void HeadOrTailRequest::clear_result_id() { - ::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 ::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_, from); - ::uint32_t cached_has_bits = _impl_._has_bits_[0]; - _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) -} -inline PROTOBUF_NDEBUG_INLINE HeadOrTailRequest::Impl_::Impl_( - ::google::protobuf::internal::InternalVisibility visibility, - ::google::protobuf::Arena* arena) - : _cached_size_{0} {} - -inline void HeadOrTailRequest::SharedCtor(::_pb::Arena* arena) { - new (&_impl_) Impl_(internal_visibility(), arena); - ::memset(reinterpret_cast(&_impl_) + - offsetof(Impl_, result_id_), - 0, - offsetof(Impl_, num_rows_) - - offsetof(Impl_, result_id_) + - sizeof(Impl_::num_rows_)); -} -HeadOrTailRequest::~HeadOrTailRequest() { - // @@protoc_insertion_point(destructor:io.deephaven.proto.backplane.grpc.HeadOrTailRequest) - _internal_metadata_.Delete<::google::protobuf::UnknownFieldSet>(); - SharedDtor(); -} -inline void HeadOrTailRequest::SharedDtor() { - ABSL_DCHECK(GetArena() == nullptr); - delete _impl_.result_id_; - delete _impl_.source_id_; - _impl_.~Impl_(); -} - -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_ = { - { - PROTOBUF_FIELD_OFFSET(HeadOrTailRequest, _impl_._has_bits_), - 0, // no _extensions_ - 3, 24, // max_field_number, fast_idx_mask - offsetof(decltype(_table_), field_lookup_table), - 4294967288, // skipmap - offsetof(decltype(_table_), field_entries), - 3, // num_field_entries - 2, // num_aux_entries - offsetof(decltype(_table_), 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::HeadOrTailRequest>(), // to_prefetch - #endif // PROTOBUF_PREFETCH_PARSE_TABLE - }, {{ - {::_pbi::TcParser::MiniParse, {}}, - // .io.deephaven.proto.backplane.grpc.Ticket result_id = 1; - {::_pbi::TcParser::FastMtS1, - {10, 0, 0, PROTOBUF_FIELD_OFFSET(HeadOrTailRequest, _impl_.result_id_)}}, - // .io.deephaven.proto.backplane.grpc.TableReference source_id = 2; - {::_pbi::TcParser::FastMtS1, - {18, 1, 1, PROTOBUF_FIELD_OFFSET(HeadOrTailRequest, _impl_.source_id_)}}, - // sint64 num_rows = 3 [jstype = JS_STRING]; - {::_pbi::TcParser::FastZ64S1, - {24, 63, 0, PROTOBUF_FIELD_OFFSET(HeadOrTailRequest, _impl_.num_rows_)}}, - }}, {{ - 65535, 65535 - }}, {{ - // .io.deephaven.proto.backplane.grpc.Ticket result_id = 1; - {PROTOBUF_FIELD_OFFSET(HeadOrTailRequest, _impl_.result_id_), _Internal::kHasBitsOffset + 0, 0, - (0 | ::_fl::kFcOptional | ::_fl::kMessage | ::_fl::kTvTable)}, - // .io.deephaven.proto.backplane.grpc.TableReference source_id = 2; - {PROTOBUF_FIELD_OFFSET(HeadOrTailRequest, _impl_.source_id_), _Internal::kHasBitsOffset + 1, 1, - (0 | ::_fl::kFcOptional | ::_fl::kMessage | ::_fl::kTvTable)}, - // sint64 num_rows = 3 [jstype = JS_STRING]; - {PROTOBUF_FIELD_OFFSET(HeadOrTailRequest, _impl_.num_rows_), -1, 0, - (0 | ::_fl::kFcSingular | ::_fl::kSInt64)}, - }}, {{ - {::_pbi::TcParser::GetTable<::io::deephaven::proto::backplane::grpc::Ticket>()}, - {::_pbi::TcParser::GetTable<::io::deephaven::proto::backplane::grpc::TableReference>()}, - }}, {{ - }}, -}; - -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) { - 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>(); -} - -#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; - (void) cached_has_bits; - - cached_has_bits = from._impl_._has_bits_[0]; - if (cached_has_bits & 0x00000003u) { - 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 (cached_has_bits & 0x00000002u) { - 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->_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_); -} - -void HeadOrTailRequest::CopyFrom(const HeadOrTailRequest& from) { -// @@protoc_insertion_point(class_specific_copy_from_start:io.deephaven.proto.backplane.grpc.HeadOrTailRequest) - if (&from == this) return; - Clear(); - MergeFrom(from); -} - - -void HeadOrTailRequest::InternalSwap(HeadOrTailRequest* PROTOBUF_RESTRICT other) { - using std::swap; - _internal_metadata_.InternalSwap(&other->_internal_metadata_); - swap(_impl_._has_bits_[0], other->_impl_._has_bits_[0]); - ::google::protobuf::internal::memswap< - PROTOBUF_FIELD_OFFSET(HeadOrTailRequest, _impl_.num_rows_) - + sizeof(HeadOrTailRequest::_impl_.num_rows_) - - PROTOBUF_FIELD_OFFSET(HeadOrTailRequest, _impl_.result_id_)>( - reinterpret_cast(&_impl_.result_id_), - reinterpret_cast(&other->_impl_.result_id_)); -} - -::google::protobuf::Metadata HeadOrTailRequest::GetMetadata() const { - return ::google::protobuf::Message::GetMetadataImpl(GetClassData()->full()); -} -// =================================================================== - -class HeadOrTailByRequest::_Internal { - public: - using HasBits = - decltype(std::declval()._impl_._has_bits_); - static constexpr ::int32_t kHasBitsOffset = - 8 * PROTOBUF_FIELD_OFFSET(HeadOrTailByRequest, _impl_._has_bits_); -}; - -void HeadOrTailByRequest::clear_result_id() { - ::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 ::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_} {} - -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_, from); - ::uint32_t cached_has_bits = _impl_._has_bits_[0]; - _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) -} -inline PROTOBUF_NDEBUG_INLINE HeadOrTailByRequest::Impl_::Impl_( - ::google::protobuf::internal::InternalVisibility visibility, - ::google::protobuf::Arena* arena) - : _cached_size_{0}, - group_by_column_specs_{visibility, arena} {} - -inline void HeadOrTailByRequest::SharedCtor(::_pb::Arena* arena) { - new (&_impl_) Impl_(internal_visibility(), arena); - ::memset(reinterpret_cast(&_impl_) + - offsetof(Impl_, result_id_), - 0, - offsetof(Impl_, num_rows_) - - offsetof(Impl_, result_id_) + - sizeof(Impl_::num_rows_)); -} -HeadOrTailByRequest::~HeadOrTailByRequest() { - // @@protoc_insertion_point(destructor:io.deephaven.proto.backplane.grpc.HeadOrTailByRequest) - _internal_metadata_.Delete<::google::protobuf::UnknownFieldSet>(); - SharedDtor(); -} -inline void HeadOrTailByRequest::SharedDtor() { - ABSL_DCHECK(GetArena() == nullptr); - delete _impl_.result_id_; - delete _impl_.source_id_; - _impl_.~Impl_(); -} - -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_ = { - { - PROTOBUF_FIELD_OFFSET(HeadOrTailByRequest, _impl_._has_bits_), - 0, // no _extensions_ - 4, 24, // max_field_number, fast_idx_mask - offsetof(decltype(_table_), field_lookup_table), - 4294967280, // skipmap - offsetof(decltype(_table_), field_entries), - 4, // num_field_entries - 2, // num_aux_entries - offsetof(decltype(_table_), 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::HeadOrTailByRequest>(), // to_prefetch - #endif // PROTOBUF_PREFETCH_PARSE_TABLE - }, {{ - // repeated string group_by_column_specs = 4; - {::_pbi::TcParser::FastUR1, - {34, 63, 0, PROTOBUF_FIELD_OFFSET(HeadOrTailByRequest, _impl_.group_by_column_specs_)}}, - // .io.deephaven.proto.backplane.grpc.Ticket result_id = 1; - {::_pbi::TcParser::FastMtS1, - {10, 0, 0, PROTOBUF_FIELD_OFFSET(HeadOrTailByRequest, _impl_.result_id_)}}, - // .io.deephaven.proto.backplane.grpc.TableReference source_id = 2; - {::_pbi::TcParser::FastMtS1, - {18, 1, 1, PROTOBUF_FIELD_OFFSET(HeadOrTailByRequest, _impl_.source_id_)}}, - // sint64 num_rows = 3 [jstype = JS_STRING]; - {::_pbi::TcParser::FastZ64S1, - {24, 63, 0, PROTOBUF_FIELD_OFFSET(HeadOrTailByRequest, _impl_.num_rows_)}}, - }}, {{ - 65535, 65535 - }}, {{ - // .io.deephaven.proto.backplane.grpc.Ticket result_id = 1; - {PROTOBUF_FIELD_OFFSET(HeadOrTailByRequest, _impl_.result_id_), _Internal::kHasBitsOffset + 0, 0, - (0 | ::_fl::kFcOptional | ::_fl::kMessage | ::_fl::kTvTable)}, - // .io.deephaven.proto.backplane.grpc.TableReference source_id = 2; - {PROTOBUF_FIELD_OFFSET(HeadOrTailByRequest, _impl_.source_id_), _Internal::kHasBitsOffset + 1, 1, - (0 | ::_fl::kFcOptional | ::_fl::kMessage | ::_fl::kTvTable)}, - // sint64 num_rows = 3 [jstype = JS_STRING]; - {PROTOBUF_FIELD_OFFSET(HeadOrTailByRequest, _impl_.num_rows_), -1, 0, - (0 | ::_fl::kFcSingular | ::_fl::kSInt64)}, - // repeated string group_by_column_specs = 4; - {PROTOBUF_FIELD_OFFSET(HeadOrTailByRequest, _impl_.group_by_column_specs_), -1, 0, - (0 | ::_fl::kFcRepeated | ::_fl::kUtf8String | ::_fl::kRepSString)}, - }}, {{ - {::_pbi::TcParser::GetTable<::io::deephaven::proto::backplane::grpc::Ticket>()}, - {::_pbi::TcParser::GetTable<::io::deephaven::proto::backplane::grpc::TableReference>()}, - }}, {{ - "\65\0\0\0\25\0\0\0" - "io.deephaven.proto.backplane.grpc.HeadOrTailByRequest" - "group_by_column_specs" - }}, -}; - -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; - - _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>(); -} - -#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; - (void) cached_has_bits; - - _this->_internal_mutable_group_by_column_specs()->MergeFrom(from._internal_group_by_column_specs()); - cached_has_bits = from._impl_._has_bits_[0]; - if (cached_has_bits & 0x00000003u) { - 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 (cached_has_bits & 0x00000002u) { - 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->_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_); -} - -void HeadOrTailByRequest::CopyFrom(const HeadOrTailByRequest& from) { -// @@protoc_insertion_point(class_specific_copy_from_start:io.deephaven.proto.backplane.grpc.HeadOrTailByRequest) - if (&from == this) return; - Clear(); - MergeFrom(from); -} - - -void HeadOrTailByRequest::InternalSwap(HeadOrTailByRequest* PROTOBUF_RESTRICT other) { - using std::swap; - _internal_metadata_.InternalSwap(&other->_internal_metadata_); - swap(_impl_._has_bits_[0], other->_impl_._has_bits_[0]); - _impl_.group_by_column_specs_.InternalSwap(&other->_impl_.group_by_column_specs_); - ::google::protobuf::internal::memswap< - PROTOBUF_FIELD_OFFSET(HeadOrTailByRequest, _impl_.num_rows_) - + sizeof(HeadOrTailByRequest::_impl_.num_rows_) - - PROTOBUF_FIELD_OFFSET(HeadOrTailByRequest, _impl_.result_id_)>( - reinterpret_cast(&_impl_.result_id_), - reinterpret_cast(&other->_impl_.result_id_)); -} - -::google::protobuf::Metadata HeadOrTailByRequest::GetMetadata() const { - return ::google::protobuf::Message::GetMetadataImpl(GetClassData()->full()); -} -// =================================================================== - -class UngroupRequest::_Internal { - public: - using HasBits = - decltype(std::declval()._impl_._has_bits_); - static constexpr ::int32_t kHasBitsOffset = - 8 * PROTOBUF_FIELD_OFFSET(UngroupRequest, _impl_._has_bits_); -}; - -void UngroupRequest::clear_result_id() { - ::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 ::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_} {} - -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_, from); - ::uint32_t cached_has_bits = _impl_._has_bits_[0]; - _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) -} -inline PROTOBUF_NDEBUG_INLINE UngroupRequest::Impl_::Impl_( - ::google::protobuf::internal::InternalVisibility visibility, - ::google::protobuf::Arena* arena) - : _cached_size_{0}, - columns_to_ungroup_{visibility, arena} {} - -inline void UngroupRequest::SharedCtor(::_pb::Arena* arena) { - new (&_impl_) Impl_(internal_visibility(), arena); - ::memset(reinterpret_cast(&_impl_) + - offsetof(Impl_, result_id_), - 0, - offsetof(Impl_, null_fill_) - - offsetof(Impl_, result_id_) + - sizeof(Impl_::null_fill_)); -} -UngroupRequest::~UngroupRequest() { - // @@protoc_insertion_point(destructor:io.deephaven.proto.backplane.grpc.UngroupRequest) - _internal_metadata_.Delete<::google::protobuf::UnknownFieldSet>(); - SharedDtor(); -} -inline void UngroupRequest::SharedDtor() { - ABSL_DCHECK(GetArena() == nullptr); - delete _impl_.result_id_; - delete _impl_.source_id_; - _impl_.~Impl_(); -} - -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_ = { - { - PROTOBUF_FIELD_OFFSET(UngroupRequest, _impl_._has_bits_), - 0, // no _extensions_ - 4, 24, // max_field_number, fast_idx_mask - offsetof(decltype(_table_), field_lookup_table), - 4294967280, // skipmap - offsetof(decltype(_table_), field_entries), - 4, // num_field_entries - 2, // num_aux_entries - offsetof(decltype(_table_), 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::UngroupRequest>(), // to_prefetch - #endif // PROTOBUF_PREFETCH_PARSE_TABLE - }, {{ - // repeated string columns_to_ungroup = 4; - {::_pbi::TcParser::FastUR1, - {34, 63, 0, PROTOBUF_FIELD_OFFSET(UngroupRequest, _impl_.columns_to_ungroup_)}}, - // .io.deephaven.proto.backplane.grpc.Ticket result_id = 1; - {::_pbi::TcParser::FastMtS1, - {10, 0, 0, PROTOBUF_FIELD_OFFSET(UngroupRequest, _impl_.result_id_)}}, - // .io.deephaven.proto.backplane.grpc.TableReference source_id = 2; - {::_pbi::TcParser::FastMtS1, - {18, 1, 1, PROTOBUF_FIELD_OFFSET(UngroupRequest, _impl_.source_id_)}}, - // bool null_fill = 3; - {::_pbi::TcParser::SingularVarintNoZag1(), - {24, 63, 0, PROTOBUF_FIELD_OFFSET(UngroupRequest, _impl_.null_fill_)}}, - }}, {{ - 65535, 65535 - }}, {{ - // .io.deephaven.proto.backplane.grpc.Ticket result_id = 1; - {PROTOBUF_FIELD_OFFSET(UngroupRequest, _impl_.result_id_), _Internal::kHasBitsOffset + 0, 0, - (0 | ::_fl::kFcOptional | ::_fl::kMessage | ::_fl::kTvTable)}, - // .io.deephaven.proto.backplane.grpc.TableReference source_id = 2; - {PROTOBUF_FIELD_OFFSET(UngroupRequest, _impl_.source_id_), _Internal::kHasBitsOffset + 1, 1, - (0 | ::_fl::kFcOptional | ::_fl::kMessage | ::_fl::kTvTable)}, - // bool null_fill = 3; - {PROTOBUF_FIELD_OFFSET(UngroupRequest, _impl_.null_fill_), -1, 0, - (0 | ::_fl::kFcSingular | ::_fl::kBool)}, - // repeated string columns_to_ungroup = 4; - {PROTOBUF_FIELD_OFFSET(UngroupRequest, _impl_.columns_to_ungroup_), -1, 0, - (0 | ::_fl::kFcRepeated | ::_fl::kUtf8String | ::_fl::kRepSString)}, - }}, {{ - {::_pbi::TcParser::GetTable<::io::deephaven::proto::backplane::grpc::Ticket>()}, - {::_pbi::TcParser::GetTable<::io::deephaven::proto::backplane::grpc::TableReference>()}, - }}, {{ - "\60\0\0\0\22\0\0\0" - "io.deephaven.proto.backplane.grpc.UngroupRequest" - "columns_to_ungroup" - }}, -}; - -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; - - _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>(); -} - -#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; - (void) cached_has_bits; - - _this->_internal_mutable_columns_to_ungroup()->MergeFrom(from._internal_columns_to_ungroup()); - cached_has_bits = from._impl_._has_bits_[0]; - if (cached_has_bits & 0x00000003u) { - 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 (cached_has_bits & 0x00000002u) { - 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->_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_); -} - -void UngroupRequest::CopyFrom(const UngroupRequest& from) { -// @@protoc_insertion_point(class_specific_copy_from_start:io.deephaven.proto.backplane.grpc.UngroupRequest) - if (&from == this) return; - Clear(); - MergeFrom(from); -} - - -void UngroupRequest::InternalSwap(UngroupRequest* PROTOBUF_RESTRICT other) { - using std::swap; - _internal_metadata_.InternalSwap(&other->_internal_metadata_); - swap(_impl_._has_bits_[0], other->_impl_._has_bits_[0]); - _impl_.columns_to_ungroup_.InternalSwap(&other->_impl_.columns_to_ungroup_); - ::google::protobuf::internal::memswap< - PROTOBUF_FIELD_OFFSET(UngroupRequest, _impl_.null_fill_) - + sizeof(UngroupRequest::_impl_.null_fill_) - - PROTOBUF_FIELD_OFFSET(UngroupRequest, _impl_.result_id_)>( - reinterpret_cast(&_impl_.result_id_), - reinterpret_cast(&other->_impl_.result_id_)); -} - -::google::protobuf::Metadata UngroupRequest::GetMetadata() const { - return ::google::protobuf::Message::GetMetadataImpl(GetClassData()->full()); -} -// =================================================================== - -class MergeTablesRequest::_Internal { - public: - using HasBits = - decltype(std::declval()._impl_._has_bits_); - static constexpr ::int32_t kHasBitsOffset = - 8 * PROTOBUF_FIELD_OFFSET(MergeTablesRequest, _impl_._has_bits_); -}; - -void MergeTablesRequest::clear_result_id() { - ::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 ::io::deephaven::proto::backplane::grpc::MergeTablesRequest& from_msg) - : _has_bits_{from._has_bits_}, - _cached_size_{0}, - source_ids_{visibility, arena, from.source_ids_}, - key_column_(arena, from.key_column_) {} - -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_, from); - ::uint32_t cached_has_bits = _impl_._has_bits_[0]; - _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) -} -inline PROTOBUF_NDEBUG_INLINE MergeTablesRequest::Impl_::Impl_( - ::google::protobuf::internal::InternalVisibility visibility, - ::google::protobuf::Arena* arena) - : _cached_size_{0}, - source_ids_{visibility, arena}, - key_column_(arena) {} - -inline void MergeTablesRequest::SharedCtor(::_pb::Arena* arena) { - new (&_impl_) Impl_(internal_visibility(), arena); - _impl_.result_id_ = {}; -} -MergeTablesRequest::~MergeTablesRequest() { - // @@protoc_insertion_point(destructor:io.deephaven.proto.backplane.grpc.MergeTablesRequest) - _internal_metadata_.Delete<::google::protobuf::UnknownFieldSet>(); - SharedDtor(); -} -inline void MergeTablesRequest::SharedDtor() { - ABSL_DCHECK(GetArena() == nullptr); - _impl_.key_column_.Destroy(); - delete _impl_.result_id_; - _impl_.~Impl_(); -} - -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_ = { - { - PROTOBUF_FIELD_OFFSET(MergeTablesRequest, _impl_._has_bits_), - 0, // no _extensions_ - 3, 24, // max_field_number, fast_idx_mask - offsetof(decltype(_table_), field_lookup_table), - 4294967288, // skipmap - offsetof(decltype(_table_), field_entries), - 3, // num_field_entries - 2, // num_aux_entries - offsetof(decltype(_table_), 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::MergeTablesRequest>(), // to_prefetch - #endif // PROTOBUF_PREFETCH_PARSE_TABLE - }, {{ - {::_pbi::TcParser::MiniParse, {}}, - // .io.deephaven.proto.backplane.grpc.Ticket result_id = 1; - {::_pbi::TcParser::FastMtS1, - {10, 0, 0, PROTOBUF_FIELD_OFFSET(MergeTablesRequest, _impl_.result_id_)}}, - // repeated .io.deephaven.proto.backplane.grpc.TableReference source_ids = 2; - {::_pbi::TcParser::FastMtR1, - {18, 63, 1, PROTOBUF_FIELD_OFFSET(MergeTablesRequest, _impl_.source_ids_)}}, - // string key_column = 3; - {::_pbi::TcParser::FastUS1, - {26, 63, 0, PROTOBUF_FIELD_OFFSET(MergeTablesRequest, _impl_.key_column_)}}, - }}, {{ - 65535, 65535 - }}, {{ - // .io.deephaven.proto.backplane.grpc.Ticket result_id = 1; - {PROTOBUF_FIELD_OFFSET(MergeTablesRequest, _impl_.result_id_), _Internal::kHasBitsOffset + 0, 0, - (0 | ::_fl::kFcOptional | ::_fl::kMessage | ::_fl::kTvTable)}, - // repeated .io.deephaven.proto.backplane.grpc.TableReference source_ids = 2; - {PROTOBUF_FIELD_OFFSET(MergeTablesRequest, _impl_.source_ids_), -1, 1, - (0 | ::_fl::kFcRepeated | ::_fl::kMessage | ::_fl::kTvTable)}, - // string key_column = 3; - {PROTOBUF_FIELD_OFFSET(MergeTablesRequest, _impl_.key_column_), -1, 0, - (0 | ::_fl::kFcSingular | ::_fl::kUtf8String | ::_fl::kRepAString)}, - }}, {{ - {::_pbi::TcParser::GetTable<::io::deephaven::proto::backplane::grpc::Ticket>()}, - {::_pbi::TcParser::GetTable<::io::deephaven::proto::backplane::grpc::TableReference>()}, - }}, {{ - "\64\0\0\12\0\0\0\0" - "io.deephaven.proto.backplane.grpc.MergeTablesRequest" - "key_column" - }}, -}; - -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; - - _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>(); -} - -#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; - (void) cached_has_bits; - - _this->_internal_mutable_source_ids()->MergeFrom( - from._internal_source_ids()); - if (!from._internal_key_column().empty()) { - _this->_internal_set_key_column(from._internal_key_column()); - } - 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_); -} - -void MergeTablesRequest::CopyFrom(const MergeTablesRequest& from) { -// @@protoc_insertion_point(class_specific_copy_from_start:io.deephaven.proto.backplane.grpc.MergeTablesRequest) - if (&from == this) return; - Clear(); - MergeFrom(from); -} - - -void MergeTablesRequest::InternalSwap(MergeTablesRequest* PROTOBUF_RESTRICT other) { - using std::swap; - auto* arena = GetArena(); - ABSL_DCHECK_EQ(arena, other->GetArena()); - _internal_metadata_.InternalSwap(&other->_internal_metadata_); - swap(_impl_._has_bits_[0], other->_impl_._has_bits_[0]); - _impl_.source_ids_.InternalSwap(&other->_impl_.source_ids_); - ::_pbi::ArenaStringPtr::InternalSwap(&_impl_.key_column_, &other->_impl_.key_column_, arena); - swap(_impl_.result_id_, other->_impl_.result_id_); -} - -::google::protobuf::Metadata MergeTablesRequest::GetMetadata() const { - return ::google::protobuf::Message::GetMetadataImpl(GetClassData()->full()); -} -// =================================================================== - -class SnapshotTableRequest::_Internal { - public: - using HasBits = - decltype(std::declval()._impl_._has_bits_); - static constexpr ::int32_t kHasBitsOffset = - 8 * PROTOBUF_FIELD_OFFSET(SnapshotTableRequest, _impl_._has_bits_); -}; - -void SnapshotTableRequest::clear_result_id() { - ::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 ::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_, from); - ::uint32_t cached_has_bits = _impl_._has_bits_[0]; - _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) -} -inline PROTOBUF_NDEBUG_INLINE SnapshotTableRequest::Impl_::Impl_( - ::google::protobuf::internal::InternalVisibility visibility, - ::google::protobuf::Arena* arena) - : _cached_size_{0} {} - -inline void SnapshotTableRequest::SharedCtor(::_pb::Arena* arena) { - new (&_impl_) Impl_(internal_visibility(), arena); - ::memset(reinterpret_cast(&_impl_) + - offsetof(Impl_, result_id_), - 0, - offsetof(Impl_, source_id_) - - offsetof(Impl_, result_id_) + - sizeof(Impl_::source_id_)); -} -SnapshotTableRequest::~SnapshotTableRequest() { - // @@protoc_insertion_point(destructor:io.deephaven.proto.backplane.grpc.SnapshotTableRequest) - _internal_metadata_.Delete<::google::protobuf::UnknownFieldSet>(); - SharedDtor(); -} -inline void SnapshotTableRequest::SharedDtor() { - ABSL_DCHECK(GetArena() == nullptr); - delete _impl_.result_id_; - delete _impl_.source_id_; - _impl_.~Impl_(); -} - -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_ = { - { - PROTOBUF_FIELD_OFFSET(SnapshotTableRequest, _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 - 2, // num_aux_entries - offsetof(decltype(_table_), 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::SnapshotTableRequest>(), // to_prefetch - #endif // PROTOBUF_PREFETCH_PARSE_TABLE - }, {{ - // .io.deephaven.proto.backplane.grpc.TableReference source_id = 2; - {::_pbi::TcParser::FastMtS1, - {18, 1, 1, PROTOBUF_FIELD_OFFSET(SnapshotTableRequest, _impl_.source_id_)}}, - // .io.deephaven.proto.backplane.grpc.Ticket result_id = 1; - {::_pbi::TcParser::FastMtS1, - {10, 0, 0, PROTOBUF_FIELD_OFFSET(SnapshotTableRequest, _impl_.result_id_)}}, - }}, {{ - 65535, 65535 - }}, {{ - // .io.deephaven.proto.backplane.grpc.Ticket result_id = 1; - {PROTOBUF_FIELD_OFFSET(SnapshotTableRequest, _impl_.result_id_), _Internal::kHasBitsOffset + 0, 0, - (0 | ::_fl::kFcOptional | ::_fl::kMessage | ::_fl::kTvTable)}, - // .io.deephaven.proto.backplane.grpc.TableReference source_id = 2; - {PROTOBUF_FIELD_OFFSET(SnapshotTableRequest, _impl_.source_id_), _Internal::kHasBitsOffset + 1, 1, - (0 | ::_fl::kFcOptional | ::_fl::kMessage | ::_fl::kTvTable)}, - }}, {{ - {::_pbi::TcParser::GetTable<::io::deephaven::proto::backplane::grpc::Ticket>()}, - {::_pbi::TcParser::GetTable<::io::deephaven::proto::backplane::grpc::TableReference>()}, - }}, {{ - }}, -}; - -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) { - 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>(); -} - -#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; - (void) cached_has_bits; - - cached_has_bits = from._impl_._has_bits_[0]; - if (cached_has_bits & 0x00000003u) { - 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 (cached_has_bits & 0x00000002u) { - 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_); -} - -void SnapshotTableRequest::CopyFrom(const SnapshotTableRequest& from) { -// @@protoc_insertion_point(class_specific_copy_from_start:io.deephaven.proto.backplane.grpc.SnapshotTableRequest) - if (&from == this) return; - Clear(); - MergeFrom(from); -} - - -void SnapshotTableRequest::InternalSwap(SnapshotTableRequest* PROTOBUF_RESTRICT other) { - using std::swap; - _internal_metadata_.InternalSwap(&other->_internal_metadata_); - swap(_impl_._has_bits_[0], other->_impl_._has_bits_[0]); - ::google::protobuf::internal::memswap< - PROTOBUF_FIELD_OFFSET(SnapshotTableRequest, _impl_.source_id_) - + sizeof(SnapshotTableRequest::_impl_.source_id_) - - PROTOBUF_FIELD_OFFSET(SnapshotTableRequest, _impl_.result_id_)>( - reinterpret_cast(&_impl_.result_id_), - reinterpret_cast(&other->_impl_.result_id_)); -} - -::google::protobuf::Metadata SnapshotTableRequest::GetMetadata() const { - return ::google::protobuf::Message::GetMetadataImpl(GetClassData()->full()); -} -// =================================================================== - -class SnapshotWhenTableRequest::_Internal { - public: - using HasBits = - decltype(std::declval()._impl_._has_bits_); - static constexpr ::int32_t kHasBitsOffset = - 8 * PROTOBUF_FIELD_OFFSET(SnapshotWhenTableRequest, _impl_._has_bits_); -}; - -void SnapshotWhenTableRequest::clear_result_id() { - ::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 ::io::deephaven::proto::backplane::grpc::SnapshotWhenTableRequest& from_msg) - : _has_bits_{from._has_bits_}, - _cached_size_{0}, - stamp_columns_{visibility, arena, from.stamp_columns_} {} - -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_, from); - ::uint32_t cached_has_bits = _impl_._has_bits_[0]; - _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_) + - offsetof(Impl_, initial_), - offsetof(Impl_, history_) - - offsetof(Impl_, initial_) + - sizeof(Impl_::history_)); - - // @@protoc_insertion_point(copy_constructor:io.deephaven.proto.backplane.grpc.SnapshotWhenTableRequest) -} -inline PROTOBUF_NDEBUG_INLINE SnapshotWhenTableRequest::Impl_::Impl_( - ::google::protobuf::internal::InternalVisibility visibility, - ::google::protobuf::Arena* arena) - : _cached_size_{0}, - stamp_columns_{visibility, arena} {} - -inline void SnapshotWhenTableRequest::SharedCtor(::_pb::Arena* arena) { - new (&_impl_) Impl_(internal_visibility(), arena); - ::memset(reinterpret_cast(&_impl_) + - offsetof(Impl_, result_id_), - 0, - offsetof(Impl_, history_) - - offsetof(Impl_, result_id_) + - sizeof(Impl_::history_)); -} -SnapshotWhenTableRequest::~SnapshotWhenTableRequest() { - // @@protoc_insertion_point(destructor:io.deephaven.proto.backplane.grpc.SnapshotWhenTableRequest) - _internal_metadata_.Delete<::google::protobuf::UnknownFieldSet>(); - SharedDtor(); -} -inline void SnapshotWhenTableRequest::SharedDtor() { - ABSL_DCHECK(GetArena() == nullptr); - delete _impl_.result_id_; - delete _impl_.base_id_; - delete _impl_.trigger_id_; - _impl_.~Impl_(); -} - -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_ = { - { - PROTOBUF_FIELD_OFFSET(SnapshotWhenTableRequest, _impl_._has_bits_), - 0, // no _extensions_ - 7, 56, // max_field_number, fast_idx_mask - offsetof(decltype(_table_), field_lookup_table), - 4294967168, // skipmap - offsetof(decltype(_table_), field_entries), - 7, // num_field_entries - 3, // num_aux_entries - offsetof(decltype(_table_), 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::SnapshotWhenTableRequest>(), // to_prefetch - #endif // PROTOBUF_PREFETCH_PARSE_TABLE - }, {{ - {::_pbi::TcParser::MiniParse, {}}, - // .io.deephaven.proto.backplane.grpc.Ticket result_id = 1; - {::_pbi::TcParser::FastMtS1, - {10, 0, 0, PROTOBUF_FIELD_OFFSET(SnapshotWhenTableRequest, _impl_.result_id_)}}, - // .io.deephaven.proto.backplane.grpc.TableReference base_id = 2; - {::_pbi::TcParser::FastMtS1, - {18, 1, 1, PROTOBUF_FIELD_OFFSET(SnapshotWhenTableRequest, _impl_.base_id_)}}, - // .io.deephaven.proto.backplane.grpc.TableReference trigger_id = 3; - {::_pbi::TcParser::FastMtS1, - {26, 2, 2, PROTOBUF_FIELD_OFFSET(SnapshotWhenTableRequest, _impl_.trigger_id_)}}, - // bool initial = 4; - {::_pbi::TcParser::SingularVarintNoZag1(), - {32, 63, 0, PROTOBUF_FIELD_OFFSET(SnapshotWhenTableRequest, _impl_.initial_)}}, - // bool incremental = 5; - {::_pbi::TcParser::SingularVarintNoZag1(), - {40, 63, 0, PROTOBUF_FIELD_OFFSET(SnapshotWhenTableRequest, _impl_.incremental_)}}, - // bool history = 6; - {::_pbi::TcParser::SingularVarintNoZag1(), - {48, 63, 0, PROTOBUF_FIELD_OFFSET(SnapshotWhenTableRequest, _impl_.history_)}}, - // repeated string stamp_columns = 7; - {::_pbi::TcParser::FastUR1, - {58, 63, 0, PROTOBUF_FIELD_OFFSET(SnapshotWhenTableRequest, _impl_.stamp_columns_)}}, - }}, {{ - 65535, 65535 - }}, {{ - // .io.deephaven.proto.backplane.grpc.Ticket result_id = 1; - {PROTOBUF_FIELD_OFFSET(SnapshotWhenTableRequest, _impl_.result_id_), _Internal::kHasBitsOffset + 0, 0, - (0 | ::_fl::kFcOptional | ::_fl::kMessage | ::_fl::kTvTable)}, - // .io.deephaven.proto.backplane.grpc.TableReference base_id = 2; - {PROTOBUF_FIELD_OFFSET(SnapshotWhenTableRequest, _impl_.base_id_), _Internal::kHasBitsOffset + 1, 1, - (0 | ::_fl::kFcOptional | ::_fl::kMessage | ::_fl::kTvTable)}, - // .io.deephaven.proto.backplane.grpc.TableReference trigger_id = 3; - {PROTOBUF_FIELD_OFFSET(SnapshotWhenTableRequest, _impl_.trigger_id_), _Internal::kHasBitsOffset + 2, 2, - (0 | ::_fl::kFcOptional | ::_fl::kMessage | ::_fl::kTvTable)}, - // bool initial = 4; - {PROTOBUF_FIELD_OFFSET(SnapshotWhenTableRequest, _impl_.initial_), -1, 0, - (0 | ::_fl::kFcSingular | ::_fl::kBool)}, - // bool incremental = 5; - {PROTOBUF_FIELD_OFFSET(SnapshotWhenTableRequest, _impl_.incremental_), -1, 0, - (0 | ::_fl::kFcSingular | ::_fl::kBool)}, - // bool history = 6; - {PROTOBUF_FIELD_OFFSET(SnapshotWhenTableRequest, _impl_.history_), -1, 0, - (0 | ::_fl::kFcSingular | ::_fl::kBool)}, - // repeated string stamp_columns = 7; - {PROTOBUF_FIELD_OFFSET(SnapshotWhenTableRequest, _impl_.stamp_columns_), -1, 0, - (0 | ::_fl::kFcRepeated | ::_fl::kUtf8String | ::_fl::kRepSString)}, - }}, {{ - {::_pbi::TcParser::GetTable<::io::deephaven::proto::backplane::grpc::Ticket>()}, - {::_pbi::TcParser::GetTable<::io::deephaven::proto::backplane::grpc::TableReference>()}, - {::_pbi::TcParser::GetTable<::io::deephaven::proto::backplane::grpc::TableReference>()}, - }}, {{ - "\72\0\0\0\0\0\0\15" - "io.deephaven.proto.backplane.grpc.SnapshotWhenTableRequest" - "stamp_columns" - }}, -}; - -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; - - _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>(); -} - -#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; - (void) cached_has_bits; - - _this->_internal_mutable_stamp_columns()->MergeFrom(from._internal_stamp_columns()); - cached_has_bits = from._impl_._has_bits_[0]; - if (cached_has_bits & 0x00000007u) { - 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 (cached_has_bits & 0x00000002u) { - 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) { - 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->_impl_.initial_ = from._impl_.initial_; - } - if (from._internal_incremental() != 0) { - _this->_impl_.incremental_ = from._impl_.incremental_; - } - if (from._internal_history() != 0) { - _this->_impl_.history_ = from._impl_.history_; - } - _this->_impl_._has_bits_[0] |= cached_has_bits; - _this->_internal_metadata_.MergeFrom<::google::protobuf::UnknownFieldSet>(from._internal_metadata_); -} - -void SnapshotWhenTableRequest::CopyFrom(const SnapshotWhenTableRequest& from) { -// @@protoc_insertion_point(class_specific_copy_from_start:io.deephaven.proto.backplane.grpc.SnapshotWhenTableRequest) - if (&from == this) return; - Clear(); - MergeFrom(from); -} - - -void SnapshotWhenTableRequest::InternalSwap(SnapshotWhenTableRequest* PROTOBUF_RESTRICT other) { - using std::swap; - _internal_metadata_.InternalSwap(&other->_internal_metadata_); - swap(_impl_._has_bits_[0], other->_impl_._has_bits_[0]); - _impl_.stamp_columns_.InternalSwap(&other->_impl_.stamp_columns_); - ::google::protobuf::internal::memswap< - PROTOBUF_FIELD_OFFSET(SnapshotWhenTableRequest, _impl_.history_) - + sizeof(SnapshotWhenTableRequest::_impl_.history_) - - PROTOBUF_FIELD_OFFSET(SnapshotWhenTableRequest, _impl_.result_id_)>( - reinterpret_cast(&_impl_.result_id_), - reinterpret_cast(&other->_impl_.result_id_)); -} - -::google::protobuf::Metadata SnapshotWhenTableRequest::GetMetadata() const { - return ::google::protobuf::Message::GetMetadataImpl(GetClassData()->full()); -} -// =================================================================== - -class CrossJoinTablesRequest::_Internal { - public: - using HasBits = - decltype(std::declval()._impl_._has_bits_); - static constexpr ::int32_t kHasBitsOffset = - 8 * PROTOBUF_FIELD_OFFSET(CrossJoinTablesRequest, _impl_._has_bits_); -}; - -void CrossJoinTablesRequest::clear_result_id() { - ::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 ::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_}, - columns_to_add_{visibility, arena, from.columns_to_add_} {} - -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_, from); - ::uint32_t cached_has_bits = _impl_._has_bits_[0]; - _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) -} -inline PROTOBUF_NDEBUG_INLINE CrossJoinTablesRequest::Impl_::Impl_( - ::google::protobuf::internal::InternalVisibility visibility, - ::google::protobuf::Arena* arena) - : _cached_size_{0}, - columns_to_match_{visibility, arena}, - columns_to_add_{visibility, arena} {} - -inline void CrossJoinTablesRequest::SharedCtor(::_pb::Arena* arena) { - new (&_impl_) Impl_(internal_visibility(), arena); - ::memset(reinterpret_cast(&_impl_) + - offsetof(Impl_, result_id_), - 0, - offsetof(Impl_, reserve_bits_) - - offsetof(Impl_, result_id_) + - sizeof(Impl_::reserve_bits_)); -} -CrossJoinTablesRequest::~CrossJoinTablesRequest() { - // @@protoc_insertion_point(destructor:io.deephaven.proto.backplane.grpc.CrossJoinTablesRequest) - _internal_metadata_.Delete<::google::protobuf::UnknownFieldSet>(); - SharedDtor(); -} -inline void CrossJoinTablesRequest::SharedDtor() { - ABSL_DCHECK(GetArena() == nullptr); - delete _impl_.result_id_; - delete _impl_.left_id_; - delete _impl_.right_id_; - _impl_.~Impl_(); -} - -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_ = { - { - PROTOBUF_FIELD_OFFSET(CrossJoinTablesRequest, _impl_._has_bits_), - 0, // no _extensions_ - 6, 56, // max_field_number, fast_idx_mask - offsetof(decltype(_table_), field_lookup_table), - 4294967232, // skipmap - offsetof(decltype(_table_), field_entries), - 6, // num_field_entries - 3, // num_aux_entries - offsetof(decltype(_table_), 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::CrossJoinTablesRequest>(), // to_prefetch - #endif // PROTOBUF_PREFETCH_PARSE_TABLE - }, {{ - {::_pbi::TcParser::MiniParse, {}}, - // .io.deephaven.proto.backplane.grpc.Ticket result_id = 1; - {::_pbi::TcParser::FastMtS1, - {10, 0, 0, PROTOBUF_FIELD_OFFSET(CrossJoinTablesRequest, _impl_.result_id_)}}, - // .io.deephaven.proto.backplane.grpc.TableReference left_id = 2; - {::_pbi::TcParser::FastMtS1, - {18, 1, 1, PROTOBUF_FIELD_OFFSET(CrossJoinTablesRequest, _impl_.left_id_)}}, - // .io.deephaven.proto.backplane.grpc.TableReference right_id = 3; - {::_pbi::TcParser::FastMtS1, - {26, 2, 2, PROTOBUF_FIELD_OFFSET(CrossJoinTablesRequest, _impl_.right_id_)}}, - // repeated string columns_to_match = 4; - {::_pbi::TcParser::FastUR1, - {34, 63, 0, PROTOBUF_FIELD_OFFSET(CrossJoinTablesRequest, _impl_.columns_to_match_)}}, - // repeated string columns_to_add = 5; - {::_pbi::TcParser::FastUR1, - {42, 63, 0, PROTOBUF_FIELD_OFFSET(CrossJoinTablesRequest, _impl_.columns_to_add_)}}, - // int32 reserve_bits = 6; - {::_pbi::TcParser::SingularVarintNoZag1<::uint32_t, offsetof(CrossJoinTablesRequest, _impl_.reserve_bits_), 63>(), - {48, 63, 0, PROTOBUF_FIELD_OFFSET(CrossJoinTablesRequest, _impl_.reserve_bits_)}}, - {::_pbi::TcParser::MiniParse, {}}, - }}, {{ - 65535, 65535 - }}, {{ - // .io.deephaven.proto.backplane.grpc.Ticket result_id = 1; - {PROTOBUF_FIELD_OFFSET(CrossJoinTablesRequest, _impl_.result_id_), _Internal::kHasBitsOffset + 0, 0, - (0 | ::_fl::kFcOptional | ::_fl::kMessage | ::_fl::kTvTable)}, - // .io.deephaven.proto.backplane.grpc.TableReference left_id = 2; - {PROTOBUF_FIELD_OFFSET(CrossJoinTablesRequest, _impl_.left_id_), _Internal::kHasBitsOffset + 1, 1, - (0 | ::_fl::kFcOptional | ::_fl::kMessage | ::_fl::kTvTable)}, - // .io.deephaven.proto.backplane.grpc.TableReference right_id = 3; - {PROTOBUF_FIELD_OFFSET(CrossJoinTablesRequest, _impl_.right_id_), _Internal::kHasBitsOffset + 2, 2, - (0 | ::_fl::kFcOptional | ::_fl::kMessage | ::_fl::kTvTable)}, - // repeated string columns_to_match = 4; - {PROTOBUF_FIELD_OFFSET(CrossJoinTablesRequest, _impl_.columns_to_match_), -1, 0, - (0 | ::_fl::kFcRepeated | ::_fl::kUtf8String | ::_fl::kRepSString)}, - // repeated string columns_to_add = 5; - {PROTOBUF_FIELD_OFFSET(CrossJoinTablesRequest, _impl_.columns_to_add_), -1, 0, - (0 | ::_fl::kFcRepeated | ::_fl::kUtf8String | ::_fl::kRepSString)}, - // int32 reserve_bits = 6; - {PROTOBUF_FIELD_OFFSET(CrossJoinTablesRequest, _impl_.reserve_bits_), -1, 0, - (0 | ::_fl::kFcSingular | ::_fl::kInt32)}, - }}, {{ - {::_pbi::TcParser::GetTable<::io::deephaven::proto::backplane::grpc::Ticket>()}, - {::_pbi::TcParser::GetTable<::io::deephaven::proto::backplane::grpc::TableReference>()}, - {::_pbi::TcParser::GetTable<::io::deephaven::proto::backplane::grpc::TableReference>()}, - }}, {{ - "\70\0\0\0\20\16\0\0" - "io.deephaven.proto.backplane.grpc.CrossJoinTablesRequest" - "columns_to_match" - "columns_to_add" - }}, -}; - -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; - - _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>(); -} - -#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; - (void) cached_has_bits; - - _this->_internal_mutable_columns_to_match()->MergeFrom(from._internal_columns_to_match()); - _this->_internal_mutable_columns_to_add()->MergeFrom(from._internal_columns_to_add()); - cached_has_bits = from._impl_._has_bits_[0]; - if (cached_has_bits & 0x00000007u) { - 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 (cached_has_bits & 0x00000002u) { - 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) { - 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->_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_); -} - -void CrossJoinTablesRequest::CopyFrom(const CrossJoinTablesRequest& from) { -// @@protoc_insertion_point(class_specific_copy_from_start:io.deephaven.proto.backplane.grpc.CrossJoinTablesRequest) - if (&from == this) return; - Clear(); - MergeFrom(from); -} - - -void CrossJoinTablesRequest::InternalSwap(CrossJoinTablesRequest* PROTOBUF_RESTRICT other) { - using std::swap; - _internal_metadata_.InternalSwap(&other->_internal_metadata_); - swap(_impl_._has_bits_[0], other->_impl_._has_bits_[0]); - _impl_.columns_to_match_.InternalSwap(&other->_impl_.columns_to_match_); - _impl_.columns_to_add_.InternalSwap(&other->_impl_.columns_to_add_); - ::google::protobuf::internal::memswap< - PROTOBUF_FIELD_OFFSET(CrossJoinTablesRequest, _impl_.reserve_bits_) - + sizeof(CrossJoinTablesRequest::_impl_.reserve_bits_) - - PROTOBUF_FIELD_OFFSET(CrossJoinTablesRequest, _impl_.result_id_)>( - reinterpret_cast(&_impl_.result_id_), - reinterpret_cast(&other->_impl_.result_id_)); -} - -::google::protobuf::Metadata CrossJoinTablesRequest::GetMetadata() const { - return ::google::protobuf::Message::GetMetadataImpl(GetClassData()->full()); -} -// =================================================================== - -class NaturalJoinTablesRequest::_Internal { - public: - using HasBits = - decltype(std::declval()._impl_._has_bits_); - static constexpr ::int32_t kHasBitsOffset = - 8 * PROTOBUF_FIELD_OFFSET(NaturalJoinTablesRequest, _impl_._has_bits_); -}; - -void NaturalJoinTablesRequest::clear_result_id() { - ::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 ::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_}, - columns_to_add_{visibility, arena, from.columns_to_add_} {} - -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_, from); - ::uint32_t cached_has_bits = _impl_._has_bits_[0]; - _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) -} -inline PROTOBUF_NDEBUG_INLINE NaturalJoinTablesRequest::Impl_::Impl_( - ::google::protobuf::internal::InternalVisibility visibility, - ::google::protobuf::Arena* arena) - : _cached_size_{0}, - columns_to_match_{visibility, arena}, - columns_to_add_{visibility, arena} {} - -inline void NaturalJoinTablesRequest::SharedCtor(::_pb::Arena* arena) { - new (&_impl_) Impl_(internal_visibility(), arena); - ::memset(reinterpret_cast(&_impl_) + - offsetof(Impl_, result_id_), - 0, - offsetof(Impl_, right_id_) - - offsetof(Impl_, result_id_) + - sizeof(Impl_::right_id_)); -} -NaturalJoinTablesRequest::~NaturalJoinTablesRequest() { - // @@protoc_insertion_point(destructor:io.deephaven.proto.backplane.grpc.NaturalJoinTablesRequest) - _internal_metadata_.Delete<::google::protobuf::UnknownFieldSet>(); - SharedDtor(); -} -inline void NaturalJoinTablesRequest::SharedDtor() { - ABSL_DCHECK(GetArena() == nullptr); - delete _impl_.result_id_; - delete _impl_.left_id_; - delete _impl_.right_id_; - _impl_.~Impl_(); -} - -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_ = { - { - PROTOBUF_FIELD_OFFSET(NaturalJoinTablesRequest, _impl_._has_bits_), - 0, // no _extensions_ - 5, 56, // max_field_number, fast_idx_mask - offsetof(decltype(_table_), field_lookup_table), - 4294967264, // skipmap - offsetof(decltype(_table_), field_entries), - 5, // num_field_entries - 3, // num_aux_entries - offsetof(decltype(_table_), 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::NaturalJoinTablesRequest>(), // to_prefetch - #endif // PROTOBUF_PREFETCH_PARSE_TABLE - }, {{ - {::_pbi::TcParser::MiniParse, {}}, - // .io.deephaven.proto.backplane.grpc.Ticket result_id = 1; - {::_pbi::TcParser::FastMtS1, - {10, 0, 0, PROTOBUF_FIELD_OFFSET(NaturalJoinTablesRequest, _impl_.result_id_)}}, - // .io.deephaven.proto.backplane.grpc.TableReference left_id = 2; - {::_pbi::TcParser::FastMtS1, - {18, 1, 1, PROTOBUF_FIELD_OFFSET(NaturalJoinTablesRequest, _impl_.left_id_)}}, - // .io.deephaven.proto.backplane.grpc.TableReference right_id = 3; - {::_pbi::TcParser::FastMtS1, - {26, 2, 2, PROTOBUF_FIELD_OFFSET(NaturalJoinTablesRequest, _impl_.right_id_)}}, - // repeated string columns_to_match = 4; - {::_pbi::TcParser::FastUR1, - {34, 63, 0, PROTOBUF_FIELD_OFFSET(NaturalJoinTablesRequest, _impl_.columns_to_match_)}}, - // repeated string columns_to_add = 5; - {::_pbi::TcParser::FastUR1, - {42, 63, 0, PROTOBUF_FIELD_OFFSET(NaturalJoinTablesRequest, _impl_.columns_to_add_)}}, - {::_pbi::TcParser::MiniParse, {}}, - {::_pbi::TcParser::MiniParse, {}}, - }}, {{ - 65535, 65535 - }}, {{ - // .io.deephaven.proto.backplane.grpc.Ticket result_id = 1; - {PROTOBUF_FIELD_OFFSET(NaturalJoinTablesRequest, _impl_.result_id_), _Internal::kHasBitsOffset + 0, 0, - (0 | ::_fl::kFcOptional | ::_fl::kMessage | ::_fl::kTvTable)}, - // .io.deephaven.proto.backplane.grpc.TableReference left_id = 2; - {PROTOBUF_FIELD_OFFSET(NaturalJoinTablesRequest, _impl_.left_id_), _Internal::kHasBitsOffset + 1, 1, - (0 | ::_fl::kFcOptional | ::_fl::kMessage | ::_fl::kTvTable)}, - // .io.deephaven.proto.backplane.grpc.TableReference right_id = 3; - {PROTOBUF_FIELD_OFFSET(NaturalJoinTablesRequest, _impl_.right_id_), _Internal::kHasBitsOffset + 2, 2, - (0 | ::_fl::kFcOptional | ::_fl::kMessage | ::_fl::kTvTable)}, - // repeated string columns_to_match = 4; - {PROTOBUF_FIELD_OFFSET(NaturalJoinTablesRequest, _impl_.columns_to_match_), -1, 0, - (0 | ::_fl::kFcRepeated | ::_fl::kUtf8String | ::_fl::kRepSString)}, - // repeated string columns_to_add = 5; - {PROTOBUF_FIELD_OFFSET(NaturalJoinTablesRequest, _impl_.columns_to_add_), -1, 0, - (0 | ::_fl::kFcRepeated | ::_fl::kUtf8String | ::_fl::kRepSString)}, - }}, {{ - {::_pbi::TcParser::GetTable<::io::deephaven::proto::backplane::grpc::Ticket>()}, - {::_pbi::TcParser::GetTable<::io::deephaven::proto::backplane::grpc::TableReference>()}, - {::_pbi::TcParser::GetTable<::io::deephaven::proto::backplane::grpc::TableReference>()}, - }}, {{ - "\72\0\0\0\20\16\0\0" - "io.deephaven.proto.backplane.grpc.NaturalJoinTablesRequest" - "columns_to_match" - "columns_to_add" - }}, -}; - -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; - - _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>(); -} - -#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; - (void) cached_has_bits; - - _this->_internal_mutable_columns_to_match()->MergeFrom(from._internal_columns_to_match()); - _this->_internal_mutable_columns_to_add()->MergeFrom(from._internal_columns_to_add()); - cached_has_bits = from._impl_._has_bits_[0]; - if (cached_has_bits & 0x00000007u) { - 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 (cached_has_bits & 0x00000002u) { - 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) { - 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_); -} - -void NaturalJoinTablesRequest::CopyFrom(const NaturalJoinTablesRequest& from) { -// @@protoc_insertion_point(class_specific_copy_from_start:io.deephaven.proto.backplane.grpc.NaturalJoinTablesRequest) - if (&from == this) return; - Clear(); - MergeFrom(from); -} - - -void NaturalJoinTablesRequest::InternalSwap(NaturalJoinTablesRequest* PROTOBUF_RESTRICT other) { - using std::swap; - _internal_metadata_.InternalSwap(&other->_internal_metadata_); - swap(_impl_._has_bits_[0], other->_impl_._has_bits_[0]); - _impl_.columns_to_match_.InternalSwap(&other->_impl_.columns_to_match_); - _impl_.columns_to_add_.InternalSwap(&other->_impl_.columns_to_add_); - ::google::protobuf::internal::memswap< - PROTOBUF_FIELD_OFFSET(NaturalJoinTablesRequest, _impl_.right_id_) - + sizeof(NaturalJoinTablesRequest::_impl_.right_id_) - - PROTOBUF_FIELD_OFFSET(NaturalJoinTablesRequest, _impl_.result_id_)>( - reinterpret_cast(&_impl_.result_id_), - reinterpret_cast(&other->_impl_.result_id_)); -} - -::google::protobuf::Metadata NaturalJoinTablesRequest::GetMetadata() const { - return ::google::protobuf::Message::GetMetadataImpl(GetClassData()->full()); -} -// =================================================================== - -class ExactJoinTablesRequest::_Internal { - public: - using HasBits = - decltype(std::declval()._impl_._has_bits_); - static constexpr ::int32_t kHasBitsOffset = - 8 * PROTOBUF_FIELD_OFFSET(ExactJoinTablesRequest, _impl_._has_bits_); -}; - -void ExactJoinTablesRequest::clear_result_id() { - ::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 ::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_}, - columns_to_add_{visibility, arena, from.columns_to_add_} {} - -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_, from); - ::uint32_t cached_has_bits = _impl_._has_bits_[0]; - _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) -} -inline PROTOBUF_NDEBUG_INLINE ExactJoinTablesRequest::Impl_::Impl_( - ::google::protobuf::internal::InternalVisibility visibility, - ::google::protobuf::Arena* arena) - : _cached_size_{0}, - columns_to_match_{visibility, arena}, - columns_to_add_{visibility, arena} {} - -inline void ExactJoinTablesRequest::SharedCtor(::_pb::Arena* arena) { - new (&_impl_) Impl_(internal_visibility(), arena); - ::memset(reinterpret_cast(&_impl_) + - offsetof(Impl_, result_id_), - 0, - offsetof(Impl_, right_id_) - - offsetof(Impl_, result_id_) + - sizeof(Impl_::right_id_)); -} -ExactJoinTablesRequest::~ExactJoinTablesRequest() { - // @@protoc_insertion_point(destructor:io.deephaven.proto.backplane.grpc.ExactJoinTablesRequest) - _internal_metadata_.Delete<::google::protobuf::UnknownFieldSet>(); - SharedDtor(); -} -inline void ExactJoinTablesRequest::SharedDtor() { - ABSL_DCHECK(GetArena() == nullptr); - delete _impl_.result_id_; - delete _impl_.left_id_; - delete _impl_.right_id_; - _impl_.~Impl_(); -} - -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_ = { - { - PROTOBUF_FIELD_OFFSET(ExactJoinTablesRequest, _impl_._has_bits_), - 0, // no _extensions_ - 5, 56, // max_field_number, fast_idx_mask - offsetof(decltype(_table_), field_lookup_table), - 4294967264, // skipmap - offsetof(decltype(_table_), field_entries), - 5, // num_field_entries - 3, // num_aux_entries - offsetof(decltype(_table_), 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::ExactJoinTablesRequest>(), // to_prefetch - #endif // PROTOBUF_PREFETCH_PARSE_TABLE - }, {{ - {::_pbi::TcParser::MiniParse, {}}, - // .io.deephaven.proto.backplane.grpc.Ticket result_id = 1; - {::_pbi::TcParser::FastMtS1, - {10, 0, 0, PROTOBUF_FIELD_OFFSET(ExactJoinTablesRequest, _impl_.result_id_)}}, - // .io.deephaven.proto.backplane.grpc.TableReference left_id = 2; - {::_pbi::TcParser::FastMtS1, - {18, 1, 1, PROTOBUF_FIELD_OFFSET(ExactJoinTablesRequest, _impl_.left_id_)}}, - // .io.deephaven.proto.backplane.grpc.TableReference right_id = 3; - {::_pbi::TcParser::FastMtS1, - {26, 2, 2, PROTOBUF_FIELD_OFFSET(ExactJoinTablesRequest, _impl_.right_id_)}}, - // repeated string columns_to_match = 4; - {::_pbi::TcParser::FastUR1, - {34, 63, 0, PROTOBUF_FIELD_OFFSET(ExactJoinTablesRequest, _impl_.columns_to_match_)}}, - // repeated string columns_to_add = 5; - {::_pbi::TcParser::FastUR1, - {42, 63, 0, PROTOBUF_FIELD_OFFSET(ExactJoinTablesRequest, _impl_.columns_to_add_)}}, - {::_pbi::TcParser::MiniParse, {}}, - {::_pbi::TcParser::MiniParse, {}}, - }}, {{ - 65535, 65535 - }}, {{ - // .io.deephaven.proto.backplane.grpc.Ticket result_id = 1; - {PROTOBUF_FIELD_OFFSET(ExactJoinTablesRequest, _impl_.result_id_), _Internal::kHasBitsOffset + 0, 0, - (0 | ::_fl::kFcOptional | ::_fl::kMessage | ::_fl::kTvTable)}, - // .io.deephaven.proto.backplane.grpc.TableReference left_id = 2; - {PROTOBUF_FIELD_OFFSET(ExactJoinTablesRequest, _impl_.left_id_), _Internal::kHasBitsOffset + 1, 1, - (0 | ::_fl::kFcOptional | ::_fl::kMessage | ::_fl::kTvTable)}, - // .io.deephaven.proto.backplane.grpc.TableReference right_id = 3; - {PROTOBUF_FIELD_OFFSET(ExactJoinTablesRequest, _impl_.right_id_), _Internal::kHasBitsOffset + 2, 2, - (0 | ::_fl::kFcOptional | ::_fl::kMessage | ::_fl::kTvTable)}, - // repeated string columns_to_match = 4; - {PROTOBUF_FIELD_OFFSET(ExactJoinTablesRequest, _impl_.columns_to_match_), -1, 0, - (0 | ::_fl::kFcRepeated | ::_fl::kUtf8String | ::_fl::kRepSString)}, - // repeated string columns_to_add = 5; - {PROTOBUF_FIELD_OFFSET(ExactJoinTablesRequest, _impl_.columns_to_add_), -1, 0, - (0 | ::_fl::kFcRepeated | ::_fl::kUtf8String | ::_fl::kRepSString)}, - }}, {{ - {::_pbi::TcParser::GetTable<::io::deephaven::proto::backplane::grpc::Ticket>()}, - {::_pbi::TcParser::GetTable<::io::deephaven::proto::backplane::grpc::TableReference>()}, - {::_pbi::TcParser::GetTable<::io::deephaven::proto::backplane::grpc::TableReference>()}, - }}, {{ - "\70\0\0\0\20\16\0\0" - "io.deephaven.proto.backplane.grpc.ExactJoinTablesRequest" - "columns_to_match" - "columns_to_add" - }}, -}; - -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; - - _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>(); -} - -#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; - (void) cached_has_bits; - - _this->_internal_mutable_columns_to_match()->MergeFrom(from._internal_columns_to_match()); - _this->_internal_mutable_columns_to_add()->MergeFrom(from._internal_columns_to_add()); - cached_has_bits = from._impl_._has_bits_[0]; - if (cached_has_bits & 0x00000007u) { - 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 (cached_has_bits & 0x00000002u) { - 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) { - 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_); -} - -void ExactJoinTablesRequest::CopyFrom(const ExactJoinTablesRequest& from) { -// @@protoc_insertion_point(class_specific_copy_from_start:io.deephaven.proto.backplane.grpc.ExactJoinTablesRequest) - if (&from == this) return; - Clear(); - MergeFrom(from); -} - - -void ExactJoinTablesRequest::InternalSwap(ExactJoinTablesRequest* PROTOBUF_RESTRICT other) { - using std::swap; - _internal_metadata_.InternalSwap(&other->_internal_metadata_); - swap(_impl_._has_bits_[0], other->_impl_._has_bits_[0]); - _impl_.columns_to_match_.InternalSwap(&other->_impl_.columns_to_match_); - _impl_.columns_to_add_.InternalSwap(&other->_impl_.columns_to_add_); - ::google::protobuf::internal::memswap< - PROTOBUF_FIELD_OFFSET(ExactJoinTablesRequest, _impl_.right_id_) - + sizeof(ExactJoinTablesRequest::_impl_.right_id_) - - PROTOBUF_FIELD_OFFSET(ExactJoinTablesRequest, _impl_.result_id_)>( - reinterpret_cast(&_impl_.result_id_), - reinterpret_cast(&other->_impl_.result_id_)); -} - -::google::protobuf::Metadata ExactJoinTablesRequest::GetMetadata() const { - return ::google::protobuf::Message::GetMetadataImpl(GetClassData()->full()); -} -// =================================================================== - -class LeftJoinTablesRequest::_Internal { - public: - using HasBits = - decltype(std::declval()._impl_._has_bits_); - static constexpr ::int32_t kHasBitsOffset = - 8 * PROTOBUF_FIELD_OFFSET(LeftJoinTablesRequest, _impl_._has_bits_); -}; - -void LeftJoinTablesRequest::clear_result_id() { - ::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 ::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_}, - columns_to_add_{visibility, arena, from.columns_to_add_} {} - -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_, from); - ::uint32_t cached_has_bits = _impl_._has_bits_[0]; - _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) -} -inline PROTOBUF_NDEBUG_INLINE LeftJoinTablesRequest::Impl_::Impl_( - ::google::protobuf::internal::InternalVisibility visibility, - ::google::protobuf::Arena* arena) - : _cached_size_{0}, - columns_to_match_{visibility, arena}, - columns_to_add_{visibility, arena} {} - -inline void LeftJoinTablesRequest::SharedCtor(::_pb::Arena* arena) { - new (&_impl_) Impl_(internal_visibility(), arena); - ::memset(reinterpret_cast(&_impl_) + - offsetof(Impl_, result_id_), - 0, - offsetof(Impl_, right_id_) - - offsetof(Impl_, result_id_) + - sizeof(Impl_::right_id_)); -} -LeftJoinTablesRequest::~LeftJoinTablesRequest() { - // @@protoc_insertion_point(destructor:io.deephaven.proto.backplane.grpc.LeftJoinTablesRequest) - _internal_metadata_.Delete<::google::protobuf::UnknownFieldSet>(); - SharedDtor(); -} -inline void LeftJoinTablesRequest::SharedDtor() { - ABSL_DCHECK(GetArena() == nullptr); - delete _impl_.result_id_; - delete _impl_.left_id_; - delete _impl_.right_id_; - _impl_.~Impl_(); -} - -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_ = { - { - PROTOBUF_FIELD_OFFSET(LeftJoinTablesRequest, _impl_._has_bits_), - 0, // no _extensions_ - 5, 56, // max_field_number, fast_idx_mask - offsetof(decltype(_table_), field_lookup_table), - 4294967264, // skipmap - offsetof(decltype(_table_), field_entries), - 5, // num_field_entries - 3, // num_aux_entries - offsetof(decltype(_table_), 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::LeftJoinTablesRequest>(), // to_prefetch - #endif // PROTOBUF_PREFETCH_PARSE_TABLE - }, {{ - {::_pbi::TcParser::MiniParse, {}}, - // .io.deephaven.proto.backplane.grpc.Ticket result_id = 1; - {::_pbi::TcParser::FastMtS1, - {10, 0, 0, PROTOBUF_FIELD_OFFSET(LeftJoinTablesRequest, _impl_.result_id_)}}, - // .io.deephaven.proto.backplane.grpc.TableReference left_id = 2; - {::_pbi::TcParser::FastMtS1, - {18, 1, 1, PROTOBUF_FIELD_OFFSET(LeftJoinTablesRequest, _impl_.left_id_)}}, - // .io.deephaven.proto.backplane.grpc.TableReference right_id = 3; - {::_pbi::TcParser::FastMtS1, - {26, 2, 2, PROTOBUF_FIELD_OFFSET(LeftJoinTablesRequest, _impl_.right_id_)}}, - // repeated string columns_to_match = 4; - {::_pbi::TcParser::FastUR1, - {34, 63, 0, PROTOBUF_FIELD_OFFSET(LeftJoinTablesRequest, _impl_.columns_to_match_)}}, - // repeated string columns_to_add = 5; - {::_pbi::TcParser::FastUR1, - {42, 63, 0, PROTOBUF_FIELD_OFFSET(LeftJoinTablesRequest, _impl_.columns_to_add_)}}, - {::_pbi::TcParser::MiniParse, {}}, - {::_pbi::TcParser::MiniParse, {}}, - }}, {{ - 65535, 65535 - }}, {{ - // .io.deephaven.proto.backplane.grpc.Ticket result_id = 1; - {PROTOBUF_FIELD_OFFSET(LeftJoinTablesRequest, _impl_.result_id_), _Internal::kHasBitsOffset + 0, 0, - (0 | ::_fl::kFcOptional | ::_fl::kMessage | ::_fl::kTvTable)}, - // .io.deephaven.proto.backplane.grpc.TableReference left_id = 2; - {PROTOBUF_FIELD_OFFSET(LeftJoinTablesRequest, _impl_.left_id_), _Internal::kHasBitsOffset + 1, 1, - (0 | ::_fl::kFcOptional | ::_fl::kMessage | ::_fl::kTvTable)}, - // .io.deephaven.proto.backplane.grpc.TableReference right_id = 3; - {PROTOBUF_FIELD_OFFSET(LeftJoinTablesRequest, _impl_.right_id_), _Internal::kHasBitsOffset + 2, 2, - (0 | ::_fl::kFcOptional | ::_fl::kMessage | ::_fl::kTvTable)}, - // repeated string columns_to_match = 4; - {PROTOBUF_FIELD_OFFSET(LeftJoinTablesRequest, _impl_.columns_to_match_), -1, 0, - (0 | ::_fl::kFcRepeated | ::_fl::kUtf8String | ::_fl::kRepSString)}, - // repeated string columns_to_add = 5; - {PROTOBUF_FIELD_OFFSET(LeftJoinTablesRequest, _impl_.columns_to_add_), -1, 0, - (0 | ::_fl::kFcRepeated | ::_fl::kUtf8String | ::_fl::kRepSString)}, - }}, {{ - {::_pbi::TcParser::GetTable<::io::deephaven::proto::backplane::grpc::Ticket>()}, - {::_pbi::TcParser::GetTable<::io::deephaven::proto::backplane::grpc::TableReference>()}, - {::_pbi::TcParser::GetTable<::io::deephaven::proto::backplane::grpc::TableReference>()}, - }}, {{ - "\67\0\0\0\20\16\0\0" - "io.deephaven.proto.backplane.grpc.LeftJoinTablesRequest" - "columns_to_match" - "columns_to_add" - }}, -}; - -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; - - _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>(); -} - -#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; - (void) cached_has_bits; - - _this->_internal_mutable_columns_to_match()->MergeFrom(from._internal_columns_to_match()); - _this->_internal_mutable_columns_to_add()->MergeFrom(from._internal_columns_to_add()); - cached_has_bits = from._impl_._has_bits_[0]; - if (cached_has_bits & 0x00000007u) { - 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 (cached_has_bits & 0x00000002u) { - 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) { - 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_); -} - -void LeftJoinTablesRequest::CopyFrom(const LeftJoinTablesRequest& from) { -// @@protoc_insertion_point(class_specific_copy_from_start:io.deephaven.proto.backplane.grpc.LeftJoinTablesRequest) - if (&from == this) return; - Clear(); - MergeFrom(from); -} - - -void LeftJoinTablesRequest::InternalSwap(LeftJoinTablesRequest* PROTOBUF_RESTRICT other) { - using std::swap; - _internal_metadata_.InternalSwap(&other->_internal_metadata_); - swap(_impl_._has_bits_[0], other->_impl_._has_bits_[0]); - _impl_.columns_to_match_.InternalSwap(&other->_impl_.columns_to_match_); - _impl_.columns_to_add_.InternalSwap(&other->_impl_.columns_to_add_); - ::google::protobuf::internal::memswap< - PROTOBUF_FIELD_OFFSET(LeftJoinTablesRequest, _impl_.right_id_) - + sizeof(LeftJoinTablesRequest::_impl_.right_id_) - - PROTOBUF_FIELD_OFFSET(LeftJoinTablesRequest, _impl_.result_id_)>( - reinterpret_cast(&_impl_.result_id_), - reinterpret_cast(&other->_impl_.result_id_)); -} - -::google::protobuf::Metadata LeftJoinTablesRequest::GetMetadata() const { - return ::google::protobuf::Message::GetMetadataImpl(GetClassData()->full()); -} -// =================================================================== - -class AsOfJoinTablesRequest::_Internal { - public: - using HasBits = - decltype(std::declval()._impl_._has_bits_); - static constexpr ::int32_t kHasBitsOffset = - 8 * PROTOBUF_FIELD_OFFSET(AsOfJoinTablesRequest, _impl_._has_bits_); -}; - -void AsOfJoinTablesRequest::clear_result_id() { - ::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 ::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_}, - columns_to_add_{visibility, arena, from.columns_to_add_} {} - -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_, from); - ::uint32_t cached_has_bits = _impl_._has_bits_[0]; - _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) -} -inline PROTOBUF_NDEBUG_INLINE AsOfJoinTablesRequest::Impl_::Impl_( - ::google::protobuf::internal::InternalVisibility visibility, - ::google::protobuf::Arena* arena) - : _cached_size_{0}, - columns_to_match_{visibility, arena}, - columns_to_add_{visibility, arena} {} - -inline void AsOfJoinTablesRequest::SharedCtor(::_pb::Arena* arena) { - new (&_impl_) Impl_(internal_visibility(), arena); - ::memset(reinterpret_cast(&_impl_) + - offsetof(Impl_, result_id_), - 0, - offsetof(Impl_, as_of_match_rule_) - - offsetof(Impl_, result_id_) + - sizeof(Impl_::as_of_match_rule_)); -} -AsOfJoinTablesRequest::~AsOfJoinTablesRequest() { - // @@protoc_insertion_point(destructor:io.deephaven.proto.backplane.grpc.AsOfJoinTablesRequest) - _internal_metadata_.Delete<::google::protobuf::UnknownFieldSet>(); - SharedDtor(); -} -inline void AsOfJoinTablesRequest::SharedDtor() { - ABSL_DCHECK(GetArena() == nullptr); - delete _impl_.result_id_; - delete _impl_.left_id_; - delete _impl_.right_id_; - _impl_.~Impl_(); -} - -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_ = { - { - PROTOBUF_FIELD_OFFSET(AsOfJoinTablesRequest, _impl_._has_bits_), - 0, // no _extensions_ - 7, 56, // max_field_number, fast_idx_mask - offsetof(decltype(_table_), field_lookup_table), - 4294967200, // skipmap - offsetof(decltype(_table_), field_entries), - 6, // num_field_entries - 3, // num_aux_entries - offsetof(decltype(_table_), 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::AsOfJoinTablesRequest>(), // to_prefetch - #endif // PROTOBUF_PREFETCH_PARSE_TABLE - }, {{ - {::_pbi::TcParser::MiniParse, {}}, - // .io.deephaven.proto.backplane.grpc.Ticket result_id = 1; - {::_pbi::TcParser::FastMtS1, - {10, 0, 0, PROTOBUF_FIELD_OFFSET(AsOfJoinTablesRequest, _impl_.result_id_)}}, - // .io.deephaven.proto.backplane.grpc.TableReference left_id = 2; - {::_pbi::TcParser::FastMtS1, - {18, 1, 1, PROTOBUF_FIELD_OFFSET(AsOfJoinTablesRequest, _impl_.left_id_)}}, - // .io.deephaven.proto.backplane.grpc.TableReference right_id = 3; - {::_pbi::TcParser::FastMtS1, - {26, 2, 2, PROTOBUF_FIELD_OFFSET(AsOfJoinTablesRequest, _impl_.right_id_)}}, - // repeated string columns_to_match = 4; - {::_pbi::TcParser::FastUR1, - {34, 63, 0, PROTOBUF_FIELD_OFFSET(AsOfJoinTablesRequest, _impl_.columns_to_match_)}}, - // repeated string columns_to_add = 5; - {::_pbi::TcParser::FastUR1, - {42, 63, 0, PROTOBUF_FIELD_OFFSET(AsOfJoinTablesRequest, _impl_.columns_to_add_)}}, - {::_pbi::TcParser::MiniParse, {}}, - // .io.deephaven.proto.backplane.grpc.AsOfJoinTablesRequest.MatchRule as_of_match_rule = 7; - {::_pbi::TcParser::SingularVarintNoZag1<::uint32_t, offsetof(AsOfJoinTablesRequest, _impl_.as_of_match_rule_), 63>(), - {56, 63, 0, PROTOBUF_FIELD_OFFSET(AsOfJoinTablesRequest, _impl_.as_of_match_rule_)}}, - }}, {{ - 65535, 65535 - }}, {{ - // .io.deephaven.proto.backplane.grpc.Ticket result_id = 1; - {PROTOBUF_FIELD_OFFSET(AsOfJoinTablesRequest, _impl_.result_id_), _Internal::kHasBitsOffset + 0, 0, - (0 | ::_fl::kFcOptional | ::_fl::kMessage | ::_fl::kTvTable)}, - // .io.deephaven.proto.backplane.grpc.TableReference left_id = 2; - {PROTOBUF_FIELD_OFFSET(AsOfJoinTablesRequest, _impl_.left_id_), _Internal::kHasBitsOffset + 1, 1, - (0 | ::_fl::kFcOptional | ::_fl::kMessage | ::_fl::kTvTable)}, - // .io.deephaven.proto.backplane.grpc.TableReference right_id = 3; - {PROTOBUF_FIELD_OFFSET(AsOfJoinTablesRequest, _impl_.right_id_), _Internal::kHasBitsOffset + 2, 2, - (0 | ::_fl::kFcOptional | ::_fl::kMessage | ::_fl::kTvTable)}, - // repeated string columns_to_match = 4; - {PROTOBUF_FIELD_OFFSET(AsOfJoinTablesRequest, _impl_.columns_to_match_), -1, 0, - (0 | ::_fl::kFcRepeated | ::_fl::kUtf8String | ::_fl::kRepSString)}, - // repeated string columns_to_add = 5; - {PROTOBUF_FIELD_OFFSET(AsOfJoinTablesRequest, _impl_.columns_to_add_), -1, 0, - (0 | ::_fl::kFcRepeated | ::_fl::kUtf8String | ::_fl::kRepSString)}, - // .io.deephaven.proto.backplane.grpc.AsOfJoinTablesRequest.MatchRule as_of_match_rule = 7; - {PROTOBUF_FIELD_OFFSET(AsOfJoinTablesRequest, _impl_.as_of_match_rule_), -1, 0, - (0 | ::_fl::kFcSingular | ::_fl::kOpenEnum)}, - }}, {{ - {::_pbi::TcParser::GetTable<::io::deephaven::proto::backplane::grpc::Ticket>()}, - {::_pbi::TcParser::GetTable<::io::deephaven::proto::backplane::grpc::TableReference>()}, - {::_pbi::TcParser::GetTable<::io::deephaven::proto::backplane::grpc::TableReference>()}, - }}, {{ - "\67\0\0\0\20\16\0\0" - "io.deephaven.proto.backplane.grpc.AsOfJoinTablesRequest" - "columns_to_match" - "columns_to_add" - }}, -}; - -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; - - _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>(); -} - -#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; - (void) cached_has_bits; - - _this->_internal_mutable_columns_to_match()->MergeFrom(from._internal_columns_to_match()); - _this->_internal_mutable_columns_to_add()->MergeFrom(from._internal_columns_to_add()); - cached_has_bits = from._impl_._has_bits_[0]; - if (cached_has_bits & 0x00000007u) { - 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 (cached_has_bits & 0x00000002u) { - 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) { - 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->_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_); -} - -void AsOfJoinTablesRequest::CopyFrom(const AsOfJoinTablesRequest& from) { -// @@protoc_insertion_point(class_specific_copy_from_start:io.deephaven.proto.backplane.grpc.AsOfJoinTablesRequest) - if (&from == this) return; - Clear(); - MergeFrom(from); -} - - -void AsOfJoinTablesRequest::InternalSwap(AsOfJoinTablesRequest* PROTOBUF_RESTRICT other) { - using std::swap; - _internal_metadata_.InternalSwap(&other->_internal_metadata_); - swap(_impl_._has_bits_[0], other->_impl_._has_bits_[0]); - _impl_.columns_to_match_.InternalSwap(&other->_impl_.columns_to_match_); - _impl_.columns_to_add_.InternalSwap(&other->_impl_.columns_to_add_); - ::google::protobuf::internal::memswap< - PROTOBUF_FIELD_OFFSET(AsOfJoinTablesRequest, _impl_.as_of_match_rule_) - + sizeof(AsOfJoinTablesRequest::_impl_.as_of_match_rule_) - - PROTOBUF_FIELD_OFFSET(AsOfJoinTablesRequest, _impl_.result_id_)>( - reinterpret_cast(&_impl_.result_id_), - reinterpret_cast(&other->_impl_.result_id_)); -} - -::google::protobuf::Metadata AsOfJoinTablesRequest::GetMetadata() const { - return ::google::protobuf::Message::GetMetadataImpl(GetClassData()->full()); -} -// =================================================================== - -class AjRajTablesRequest::_Internal { - public: - using HasBits = - decltype(std::declval()._impl_._has_bits_); - static constexpr ::int32_t kHasBitsOffset = - 8 * PROTOBUF_FIELD_OFFSET(AjRajTablesRequest, _impl_._has_bits_); -}; - -void AjRajTablesRequest::clear_result_id() { - ::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 ::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_}, - columns_to_add_{visibility, arena, from.columns_to_add_}, - as_of_column_(arena, from.as_of_column_) {} - -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_, from); - ::uint32_t cached_has_bits = _impl_._has_bits_[0]; - _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) -} -inline PROTOBUF_NDEBUG_INLINE AjRajTablesRequest::Impl_::Impl_( - ::google::protobuf::internal::InternalVisibility visibility, - ::google::protobuf::Arena* arena) - : _cached_size_{0}, - exact_match_columns_{visibility, arena}, - columns_to_add_{visibility, arena}, - as_of_column_(arena) {} - -inline void AjRajTablesRequest::SharedCtor(::_pb::Arena* arena) { - new (&_impl_) Impl_(internal_visibility(), arena); - ::memset(reinterpret_cast(&_impl_) + - offsetof(Impl_, result_id_), - 0, - offsetof(Impl_, right_id_) - - offsetof(Impl_, result_id_) + - sizeof(Impl_::right_id_)); -} -AjRajTablesRequest::~AjRajTablesRequest() { - // @@protoc_insertion_point(destructor:io.deephaven.proto.backplane.grpc.AjRajTablesRequest) - _internal_metadata_.Delete<::google::protobuf::UnknownFieldSet>(); - SharedDtor(); -} -inline void AjRajTablesRequest::SharedDtor() { - ABSL_DCHECK(GetArena() == nullptr); - _impl_.as_of_column_.Destroy(); - delete _impl_.result_id_; - delete _impl_.left_id_; - delete _impl_.right_id_; - _impl_.~Impl_(); -} - -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_ = { - { - PROTOBUF_FIELD_OFFSET(AjRajTablesRequest, _impl_._has_bits_), - 0, // no _extensions_ - 6, 56, // max_field_number, fast_idx_mask - offsetof(decltype(_table_), field_lookup_table), - 4294967232, // skipmap - offsetof(decltype(_table_), field_entries), - 6, // num_field_entries - 3, // num_aux_entries - offsetof(decltype(_table_), 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::AjRajTablesRequest>(), // to_prefetch - #endif // PROTOBUF_PREFETCH_PARSE_TABLE - }, {{ - {::_pbi::TcParser::MiniParse, {}}, - // .io.deephaven.proto.backplane.grpc.Ticket result_id = 1; - {::_pbi::TcParser::FastMtS1, - {10, 0, 0, PROTOBUF_FIELD_OFFSET(AjRajTablesRequest, _impl_.result_id_)}}, - // .io.deephaven.proto.backplane.grpc.TableReference left_id = 2; - {::_pbi::TcParser::FastMtS1, - {18, 1, 1, PROTOBUF_FIELD_OFFSET(AjRajTablesRequest, _impl_.left_id_)}}, - // .io.deephaven.proto.backplane.grpc.TableReference right_id = 3; - {::_pbi::TcParser::FastMtS1, - {26, 2, 2, PROTOBUF_FIELD_OFFSET(AjRajTablesRequest, _impl_.right_id_)}}, - // repeated string exact_match_columns = 4; - {::_pbi::TcParser::FastUR1, - {34, 63, 0, PROTOBUF_FIELD_OFFSET(AjRajTablesRequest, _impl_.exact_match_columns_)}}, - // string as_of_column = 5; - {::_pbi::TcParser::FastUS1, - {42, 63, 0, PROTOBUF_FIELD_OFFSET(AjRajTablesRequest, _impl_.as_of_column_)}}, - // repeated string columns_to_add = 6; - {::_pbi::TcParser::FastUR1, - {50, 63, 0, PROTOBUF_FIELD_OFFSET(AjRajTablesRequest, _impl_.columns_to_add_)}}, - {::_pbi::TcParser::MiniParse, {}}, - }}, {{ - 65535, 65535 - }}, {{ - // .io.deephaven.proto.backplane.grpc.Ticket result_id = 1; - {PROTOBUF_FIELD_OFFSET(AjRajTablesRequest, _impl_.result_id_), _Internal::kHasBitsOffset + 0, 0, - (0 | ::_fl::kFcOptional | ::_fl::kMessage | ::_fl::kTvTable)}, - // .io.deephaven.proto.backplane.grpc.TableReference left_id = 2; - {PROTOBUF_FIELD_OFFSET(AjRajTablesRequest, _impl_.left_id_), _Internal::kHasBitsOffset + 1, 1, - (0 | ::_fl::kFcOptional | ::_fl::kMessage | ::_fl::kTvTable)}, - // .io.deephaven.proto.backplane.grpc.TableReference right_id = 3; - {PROTOBUF_FIELD_OFFSET(AjRajTablesRequest, _impl_.right_id_), _Internal::kHasBitsOffset + 2, 2, - (0 | ::_fl::kFcOptional | ::_fl::kMessage | ::_fl::kTvTable)}, - // repeated string exact_match_columns = 4; - {PROTOBUF_FIELD_OFFSET(AjRajTablesRequest, _impl_.exact_match_columns_), -1, 0, - (0 | ::_fl::kFcRepeated | ::_fl::kUtf8String | ::_fl::kRepSString)}, - // string as_of_column = 5; - {PROTOBUF_FIELD_OFFSET(AjRajTablesRequest, _impl_.as_of_column_), -1, 0, - (0 | ::_fl::kFcSingular | ::_fl::kUtf8String | ::_fl::kRepAString)}, - // repeated string columns_to_add = 6; - {PROTOBUF_FIELD_OFFSET(AjRajTablesRequest, _impl_.columns_to_add_), -1, 0, - (0 | ::_fl::kFcRepeated | ::_fl::kUtf8String | ::_fl::kRepSString)}, - }}, {{ - {::_pbi::TcParser::GetTable<::io::deephaven::proto::backplane::grpc::Ticket>()}, - {::_pbi::TcParser::GetTable<::io::deephaven::proto::backplane::grpc::TableReference>()}, - {::_pbi::TcParser::GetTable<::io::deephaven::proto::backplane::grpc::TableReference>()}, - }}, {{ - "\64\0\0\0\23\14\16\0" - "io.deephaven.proto.backplane.grpc.AjRajTablesRequest" - "exact_match_columns" - "as_of_column" - "columns_to_add" - }}, -}; - -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; - - _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>(); -} - -#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; - (void) cached_has_bits; - - _this->_internal_mutable_exact_match_columns()->MergeFrom(from._internal_exact_match_columns()); - _this->_internal_mutable_columns_to_add()->MergeFrom(from._internal_columns_to_add()); - if (!from._internal_as_of_column().empty()) { - _this->_internal_set_as_of_column(from._internal_as_of_column()); - } - cached_has_bits = from._impl_._has_bits_[0]; - if (cached_has_bits & 0x00000007u) { - 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 (cached_has_bits & 0x00000002u) { - 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) { - 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_); -} - -void AjRajTablesRequest::CopyFrom(const AjRajTablesRequest& from) { -// @@protoc_insertion_point(class_specific_copy_from_start:io.deephaven.proto.backplane.grpc.AjRajTablesRequest) - if (&from == this) return; - Clear(); - MergeFrom(from); -} - - -void AjRajTablesRequest::InternalSwap(AjRajTablesRequest* PROTOBUF_RESTRICT other) { - using std::swap; - auto* arena = GetArena(); - ABSL_DCHECK_EQ(arena, other->GetArena()); - _internal_metadata_.InternalSwap(&other->_internal_metadata_); - swap(_impl_._has_bits_[0], other->_impl_._has_bits_[0]); - _impl_.exact_match_columns_.InternalSwap(&other->_impl_.exact_match_columns_); - _impl_.columns_to_add_.InternalSwap(&other->_impl_.columns_to_add_); - ::_pbi::ArenaStringPtr::InternalSwap(&_impl_.as_of_column_, &other->_impl_.as_of_column_, arena); - ::google::protobuf::internal::memswap< - PROTOBUF_FIELD_OFFSET(AjRajTablesRequest, _impl_.right_id_) - + sizeof(AjRajTablesRequest::_impl_.right_id_) - - PROTOBUF_FIELD_OFFSET(AjRajTablesRequest, _impl_.result_id_)>( - reinterpret_cast(&_impl_.result_id_), - reinterpret_cast(&other->_impl_.result_id_)); -} - -::google::protobuf::Metadata AjRajTablesRequest::GetMetadata() const { - return ::google::protobuf::Message::GetMetadataImpl(GetClassData()->full()); -} -// =================================================================== - -class MultiJoinInput::_Internal { - public: - using HasBits = - decltype(std::declval()._impl_._has_bits_); - static constexpr ::int32_t kHasBitsOffset = - 8 * PROTOBUF_FIELD_OFFSET(MultiJoinInput, _impl_._has_bits_); -}; - -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 ::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_}, - columns_to_add_{visibility, arena, from.columns_to_add_} {} - -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_, from); - ::uint32_t cached_has_bits = _impl_._has_bits_[0]; - _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) -} -inline PROTOBUF_NDEBUG_INLINE MultiJoinInput::Impl_::Impl_( - ::google::protobuf::internal::InternalVisibility visibility, - ::google::protobuf::Arena* arena) - : _cached_size_{0}, - columns_to_match_{visibility, arena}, - columns_to_add_{visibility, arena} {} - -inline void MultiJoinInput::SharedCtor(::_pb::Arena* arena) { - new (&_impl_) Impl_(internal_visibility(), arena); - _impl_.source_id_ = {}; -} -MultiJoinInput::~MultiJoinInput() { - // @@protoc_insertion_point(destructor:io.deephaven.proto.backplane.grpc.MultiJoinInput) - _internal_metadata_.Delete<::google::protobuf::UnknownFieldSet>(); - SharedDtor(); -} -inline void MultiJoinInput::SharedDtor() { - ABSL_DCHECK(GetArena() == nullptr); - delete _impl_.source_id_; - _impl_.~Impl_(); -} - -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_ = { - { - PROTOBUF_FIELD_OFFSET(MultiJoinInput, _impl_._has_bits_), - 0, // no _extensions_ - 3, 24, // max_field_number, fast_idx_mask - offsetof(decltype(_table_), field_lookup_table), - 4294967288, // skipmap - offsetof(decltype(_table_), field_entries), - 3, // num_field_entries - 1, // num_aux_entries - offsetof(decltype(_table_), 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::MultiJoinInput>(), // to_prefetch - #endif // PROTOBUF_PREFETCH_PARSE_TABLE - }, {{ - {::_pbi::TcParser::MiniParse, {}}, - // .io.deephaven.proto.backplane.grpc.TableReference source_id = 1; - {::_pbi::TcParser::FastMtS1, - {10, 0, 0, PROTOBUF_FIELD_OFFSET(MultiJoinInput, _impl_.source_id_)}}, - // repeated string columns_to_match = 2; - {::_pbi::TcParser::FastUR1, - {18, 63, 0, PROTOBUF_FIELD_OFFSET(MultiJoinInput, _impl_.columns_to_match_)}}, - // repeated string columns_to_add = 3; - {::_pbi::TcParser::FastUR1, - {26, 63, 0, PROTOBUF_FIELD_OFFSET(MultiJoinInput, _impl_.columns_to_add_)}}, - }}, {{ - 65535, 65535 - }}, {{ - // .io.deephaven.proto.backplane.grpc.TableReference source_id = 1; - {PROTOBUF_FIELD_OFFSET(MultiJoinInput, _impl_.source_id_), _Internal::kHasBitsOffset + 0, 0, - (0 | ::_fl::kFcOptional | ::_fl::kMessage | ::_fl::kTvTable)}, - // repeated string columns_to_match = 2; - {PROTOBUF_FIELD_OFFSET(MultiJoinInput, _impl_.columns_to_match_), -1, 0, - (0 | ::_fl::kFcRepeated | ::_fl::kUtf8String | ::_fl::kRepSString)}, - // repeated string columns_to_add = 3; - {PROTOBUF_FIELD_OFFSET(MultiJoinInput, _impl_.columns_to_add_), -1, 0, - (0 | ::_fl::kFcRepeated | ::_fl::kUtf8String | ::_fl::kRepSString)}, - }}, {{ - {::_pbi::TcParser::GetTable<::io::deephaven::proto::backplane::grpc::TableReference>()}, - }}, {{ - "\60\0\20\16\0\0\0\0" - "io.deephaven.proto.backplane.grpc.MultiJoinInput" - "columns_to_match" - "columns_to_add" - }}, -}; - -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; - - _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>(); -} - -#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; - (void) cached_has_bits; - - _this->_internal_mutable_columns_to_match()->MergeFrom(from._internal_columns_to_match()); - _this->_internal_mutable_columns_to_add()->MergeFrom(from._internal_columns_to_add()); - 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_); -} - -void MultiJoinInput::CopyFrom(const MultiJoinInput& from) { -// @@protoc_insertion_point(class_specific_copy_from_start:io.deephaven.proto.backplane.grpc.MultiJoinInput) - if (&from == this) return; - Clear(); - MergeFrom(from); -} - - -void MultiJoinInput::InternalSwap(MultiJoinInput* PROTOBUF_RESTRICT other) { - using std::swap; - _internal_metadata_.InternalSwap(&other->_internal_metadata_); - swap(_impl_._has_bits_[0], other->_impl_._has_bits_[0]); - _impl_.columns_to_match_.InternalSwap(&other->_impl_.columns_to_match_); - _impl_.columns_to_add_.InternalSwap(&other->_impl_.columns_to_add_); - swap(_impl_.source_id_, other->_impl_.source_id_); -} - -::google::protobuf::Metadata MultiJoinInput::GetMetadata() const { - return ::google::protobuf::Message::GetMetadataImpl(GetClassData()->full()); -} -// =================================================================== - -class MultiJoinTablesRequest::_Internal { - public: - using HasBits = - decltype(std::declval()._impl_._has_bits_); - static constexpr ::int32_t kHasBitsOffset = - 8 * PROTOBUF_FIELD_OFFSET(MultiJoinTablesRequest, _impl_._has_bits_); -}; - -void MultiJoinTablesRequest::clear_result_id() { - ::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 ::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_} {} - -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_, from); - ::uint32_t cached_has_bits = _impl_._has_bits_[0]; - _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) -} -inline PROTOBUF_NDEBUG_INLINE MultiJoinTablesRequest::Impl_::Impl_( - ::google::protobuf::internal::InternalVisibility visibility, - ::google::protobuf::Arena* arena) - : _cached_size_{0}, - multi_join_inputs_{visibility, arena} {} - -inline void MultiJoinTablesRequest::SharedCtor(::_pb::Arena* arena) { - new (&_impl_) Impl_(internal_visibility(), arena); - _impl_.result_id_ = {}; -} -MultiJoinTablesRequest::~MultiJoinTablesRequest() { - // @@protoc_insertion_point(destructor:io.deephaven.proto.backplane.grpc.MultiJoinTablesRequest) - _internal_metadata_.Delete<::google::protobuf::UnknownFieldSet>(); - SharedDtor(); -} -inline void MultiJoinTablesRequest::SharedDtor() { - ABSL_DCHECK(GetArena() == nullptr); - delete _impl_.result_id_; - _impl_.~Impl_(); -} - -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(); -} -PROTOBUF_CONSTINIT PROTOBUF_ATTRIBUTE_INIT_PRIORITY1 -const ::_pbi::TcParseTable<1, 2, 2, 0, 2> MultiJoinTablesRequest::_table_ = { - { - PROTOBUF_FIELD_OFFSET(MultiJoinTablesRequest, _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 - 2, // num_aux_entries - offsetof(decltype(_table_), 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::MultiJoinTablesRequest>(), // to_prefetch - #endif // PROTOBUF_PREFETCH_PARSE_TABLE - }, {{ - // repeated .io.deephaven.proto.backplane.grpc.MultiJoinInput multi_join_inputs = 2; - {::_pbi::TcParser::FastMtR1, - {18, 63, 1, PROTOBUF_FIELD_OFFSET(MultiJoinTablesRequest, _impl_.multi_join_inputs_)}}, - // .io.deephaven.proto.backplane.grpc.Ticket result_id = 1; - {::_pbi::TcParser::FastMtS1, - {10, 0, 0, PROTOBUF_FIELD_OFFSET(MultiJoinTablesRequest, _impl_.result_id_)}}, - }}, {{ - 65535, 65535 - }}, {{ - // .io.deephaven.proto.backplane.grpc.Ticket result_id = 1; - {PROTOBUF_FIELD_OFFSET(MultiJoinTablesRequest, _impl_.result_id_), _Internal::kHasBitsOffset + 0, 0, - (0 | ::_fl::kFcOptional | ::_fl::kMessage | ::_fl::kTvTable)}, - // repeated .io.deephaven.proto.backplane.grpc.MultiJoinInput multi_join_inputs = 2; - {PROTOBUF_FIELD_OFFSET(MultiJoinTablesRequest, _impl_.multi_join_inputs_), -1, 1, - (0 | ::_fl::kFcRepeated | ::_fl::kMessage | ::_fl::kTvTable)}, - }}, {{ - {::_pbi::TcParser::GetTable<::io::deephaven::proto::backplane::grpc::Ticket>()}, - {::_pbi::TcParser::GetTable<::io::deephaven::proto::backplane::grpc::MultiJoinInput>()}, - }}, {{ - }}, -}; - -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; - - _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>(); -} - -#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; - (void) cached_has_bits; - - _this->_internal_mutable_multi_join_inputs()->MergeFrom( - from._internal_multi_join_inputs()); - 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_); -} - -void MultiJoinTablesRequest::CopyFrom(const MultiJoinTablesRequest& from) { -// @@protoc_insertion_point(class_specific_copy_from_start:io.deephaven.proto.backplane.grpc.MultiJoinTablesRequest) - if (&from == this) return; - Clear(); - MergeFrom(from); -} - - -void MultiJoinTablesRequest::InternalSwap(MultiJoinTablesRequest* PROTOBUF_RESTRICT other) { - using std::swap; - _internal_metadata_.InternalSwap(&other->_internal_metadata_); - swap(_impl_._has_bits_[0], other->_impl_._has_bits_[0]); - _impl_.multi_join_inputs_.InternalSwap(&other->_impl_.multi_join_inputs_); - swap(_impl_.result_id_, other->_impl_.result_id_); -} - -::google::protobuf::Metadata MultiJoinTablesRequest::GetMetadata() const { - return ::google::protobuf::Message::GetMetadataImpl(GetClassData()->full()); -} -// =================================================================== - -class RangeJoinTablesRequest::_Internal { - public: - using HasBits = - decltype(std::declval()._impl_._has_bits_); - static constexpr ::int32_t kHasBitsOffset = - 8 * PROTOBUF_FIELD_OFFSET(RangeJoinTablesRequest, _impl_._has_bits_); -}; - -void RangeJoinTablesRequest::clear_result_id() { - ::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 ::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_}, - aggregations_{visibility, arena, from.aggregations_}, - left_start_column_(arena, from.left_start_column_), - right_range_column_(arena, from.right_range_column_), - left_end_column_(arena, from.left_end_column_), - range_match_(arena, from.range_match_) {} - -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_, from); - ::uint32_t cached_has_bits = _impl_._has_bits_[0]; - _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_) + - offsetof(Impl_, range_start_rule_), - offsetof(Impl_, range_end_rule_) - - offsetof(Impl_, range_start_rule_) + - sizeof(Impl_::range_end_rule_)); - - // @@protoc_insertion_point(copy_constructor:io.deephaven.proto.backplane.grpc.RangeJoinTablesRequest) -} -inline PROTOBUF_NDEBUG_INLINE RangeJoinTablesRequest::Impl_::Impl_( - ::google::protobuf::internal::InternalVisibility visibility, - ::google::protobuf::Arena* arena) - : _cached_size_{0}, - exact_match_columns_{visibility, arena}, - aggregations_{visibility, arena}, - left_start_column_(arena), - right_range_column_(arena), - left_end_column_(arena), - range_match_(arena) {} - -inline void RangeJoinTablesRequest::SharedCtor(::_pb::Arena* arena) { - new (&_impl_) Impl_(internal_visibility(), arena); - ::memset(reinterpret_cast(&_impl_) + - offsetof(Impl_, result_id_), - 0, - offsetof(Impl_, range_end_rule_) - - offsetof(Impl_, result_id_) + - sizeof(Impl_::range_end_rule_)); -} -RangeJoinTablesRequest::~RangeJoinTablesRequest() { - // @@protoc_insertion_point(destructor:io.deephaven.proto.backplane.grpc.RangeJoinTablesRequest) - _internal_metadata_.Delete<::google::protobuf::UnknownFieldSet>(); - SharedDtor(); -} -inline void RangeJoinTablesRequest::SharedDtor() { - ABSL_DCHECK(GetArena() == nullptr); - _impl_.left_start_column_.Destroy(); - _impl_.right_range_column_.Destroy(); - _impl_.left_end_column_.Destroy(); - _impl_.range_match_.Destroy(); - delete _impl_.result_id_; - delete _impl_.left_id_; - delete _impl_.right_id_; - _impl_.~Impl_(); -} - -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_ = { - { - PROTOBUF_FIELD_OFFSET(RangeJoinTablesRequest, _impl_._has_bits_), - 0, // no _extensions_ - 11, 120, // max_field_number, fast_idx_mask - offsetof(decltype(_table_), field_lookup_table), - 4294965248, // skipmap - offsetof(decltype(_table_), field_entries), - 11, // num_field_entries - 4, // num_aux_entries - offsetof(decltype(_table_), 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::RangeJoinTablesRequest>(), // to_prefetch - #endif // PROTOBUF_PREFETCH_PARSE_TABLE - }, {{ - {::_pbi::TcParser::MiniParse, {}}, - // .io.deephaven.proto.backplane.grpc.Ticket result_id = 1; - {::_pbi::TcParser::FastMtS1, - {10, 0, 0, PROTOBUF_FIELD_OFFSET(RangeJoinTablesRequest, _impl_.result_id_)}}, - // .io.deephaven.proto.backplane.grpc.TableReference left_id = 2; - {::_pbi::TcParser::FastMtS1, - {18, 1, 1, PROTOBUF_FIELD_OFFSET(RangeJoinTablesRequest, _impl_.left_id_)}}, - // .io.deephaven.proto.backplane.grpc.TableReference right_id = 3; - {::_pbi::TcParser::FastMtS1, - {26, 2, 2, PROTOBUF_FIELD_OFFSET(RangeJoinTablesRequest, _impl_.right_id_)}}, - // repeated string exact_match_columns = 4; - {::_pbi::TcParser::FastUR1, - {34, 63, 0, PROTOBUF_FIELD_OFFSET(RangeJoinTablesRequest, _impl_.exact_match_columns_)}}, - // string left_start_column = 5; - {::_pbi::TcParser::FastUS1, - {42, 63, 0, PROTOBUF_FIELD_OFFSET(RangeJoinTablesRequest, _impl_.left_start_column_)}}, - // .io.deephaven.proto.backplane.grpc.RangeJoinTablesRequest.RangeStartRule range_start_rule = 6; - {::_pbi::TcParser::SingularVarintNoZag1<::uint32_t, offsetof(RangeJoinTablesRequest, _impl_.range_start_rule_), 63>(), - {48, 63, 0, PROTOBUF_FIELD_OFFSET(RangeJoinTablesRequest, _impl_.range_start_rule_)}}, - // string right_range_column = 7; - {::_pbi::TcParser::FastUS1, - {58, 63, 0, PROTOBUF_FIELD_OFFSET(RangeJoinTablesRequest, _impl_.right_range_column_)}}, - // .io.deephaven.proto.backplane.grpc.RangeJoinTablesRequest.RangeEndRule range_end_rule = 8; - {::_pbi::TcParser::SingularVarintNoZag1<::uint32_t, offsetof(RangeJoinTablesRequest, _impl_.range_end_rule_), 63>(), - {64, 63, 0, PROTOBUF_FIELD_OFFSET(RangeJoinTablesRequest, _impl_.range_end_rule_)}}, - // string left_end_column = 9; - {::_pbi::TcParser::FastUS1, - {74, 63, 0, PROTOBUF_FIELD_OFFSET(RangeJoinTablesRequest, _impl_.left_end_column_)}}, - // repeated .io.deephaven.proto.backplane.grpc.Aggregation aggregations = 10; - {::_pbi::TcParser::FastMtR1, - {82, 63, 3, PROTOBUF_FIELD_OFFSET(RangeJoinTablesRequest, _impl_.aggregations_)}}, - // string range_match = 11; - {::_pbi::TcParser::FastUS1, - {90, 63, 0, PROTOBUF_FIELD_OFFSET(RangeJoinTablesRequest, _impl_.range_match_)}}, - {::_pbi::TcParser::MiniParse, {}}, - {::_pbi::TcParser::MiniParse, {}}, - {::_pbi::TcParser::MiniParse, {}}, - {::_pbi::TcParser::MiniParse, {}}, - }}, {{ - 65535, 65535 - }}, {{ - // .io.deephaven.proto.backplane.grpc.Ticket result_id = 1; - {PROTOBUF_FIELD_OFFSET(RangeJoinTablesRequest, _impl_.result_id_), _Internal::kHasBitsOffset + 0, 0, - (0 | ::_fl::kFcOptional | ::_fl::kMessage | ::_fl::kTvTable)}, - // .io.deephaven.proto.backplane.grpc.TableReference left_id = 2; - {PROTOBUF_FIELD_OFFSET(RangeJoinTablesRequest, _impl_.left_id_), _Internal::kHasBitsOffset + 1, 1, - (0 | ::_fl::kFcOptional | ::_fl::kMessage | ::_fl::kTvTable)}, - // .io.deephaven.proto.backplane.grpc.TableReference right_id = 3; - {PROTOBUF_FIELD_OFFSET(RangeJoinTablesRequest, _impl_.right_id_), _Internal::kHasBitsOffset + 2, 2, - (0 | ::_fl::kFcOptional | ::_fl::kMessage | ::_fl::kTvTable)}, - // repeated string exact_match_columns = 4; - {PROTOBUF_FIELD_OFFSET(RangeJoinTablesRequest, _impl_.exact_match_columns_), -1, 0, - (0 | ::_fl::kFcRepeated | ::_fl::kUtf8String | ::_fl::kRepSString)}, - // string left_start_column = 5; - {PROTOBUF_FIELD_OFFSET(RangeJoinTablesRequest, _impl_.left_start_column_), -1, 0, - (0 | ::_fl::kFcSingular | ::_fl::kUtf8String | ::_fl::kRepAString)}, - // .io.deephaven.proto.backplane.grpc.RangeJoinTablesRequest.RangeStartRule range_start_rule = 6; - {PROTOBUF_FIELD_OFFSET(RangeJoinTablesRequest, _impl_.range_start_rule_), -1, 0, - (0 | ::_fl::kFcSingular | ::_fl::kOpenEnum)}, - // string right_range_column = 7; - {PROTOBUF_FIELD_OFFSET(RangeJoinTablesRequest, _impl_.right_range_column_), -1, 0, - (0 | ::_fl::kFcSingular | ::_fl::kUtf8String | ::_fl::kRepAString)}, - // .io.deephaven.proto.backplane.grpc.RangeJoinTablesRequest.RangeEndRule range_end_rule = 8; - {PROTOBUF_FIELD_OFFSET(RangeJoinTablesRequest, _impl_.range_end_rule_), -1, 0, - (0 | ::_fl::kFcSingular | ::_fl::kOpenEnum)}, - // string left_end_column = 9; - {PROTOBUF_FIELD_OFFSET(RangeJoinTablesRequest, _impl_.left_end_column_), -1, 0, - (0 | ::_fl::kFcSingular | ::_fl::kUtf8String | ::_fl::kRepAString)}, - // repeated .io.deephaven.proto.backplane.grpc.Aggregation aggregations = 10; - {PROTOBUF_FIELD_OFFSET(RangeJoinTablesRequest, _impl_.aggregations_), -1, 3, - (0 | ::_fl::kFcRepeated | ::_fl::kMessage | ::_fl::kTvTable)}, - // string range_match = 11; - {PROTOBUF_FIELD_OFFSET(RangeJoinTablesRequest, _impl_.range_match_), -1, 0, - (0 | ::_fl::kFcSingular | ::_fl::kUtf8String | ::_fl::kRepAString)}, - }}, {{ - {::_pbi::TcParser::GetTable<::io::deephaven::proto::backplane::grpc::Ticket>()}, - {::_pbi::TcParser::GetTable<::io::deephaven::proto::backplane::grpc::TableReference>()}, - {::_pbi::TcParser::GetTable<::io::deephaven::proto::backplane::grpc::TableReference>()}, - {::_pbi::TcParser::GetTable<::io::deephaven::proto::backplane::grpc::Aggregation>()}, - }}, {{ - "\70\0\0\0\23\21\0\22\0\17\0\13\0\0\0\0" - "io.deephaven.proto.backplane.grpc.RangeJoinTablesRequest" - "exact_match_columns" - "left_start_column" - "right_range_column" - "left_end_column" - "range_match" - }}, -}; - -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; - - _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>(); -} - -#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; - (void) cached_has_bits; - - _this->_internal_mutable_exact_match_columns()->MergeFrom(from._internal_exact_match_columns()); - _this->_internal_mutable_aggregations()->MergeFrom( - from._internal_aggregations()); - if (!from._internal_left_start_column().empty()) { - _this->_internal_set_left_start_column(from._internal_left_start_column()); - } - if (!from._internal_right_range_column().empty()) { - _this->_internal_set_right_range_column(from._internal_right_range_column()); - } - if (!from._internal_left_end_column().empty()) { - _this->_internal_set_left_end_column(from._internal_left_end_column()); - } - if (!from._internal_range_match().empty()) { - _this->_internal_set_range_match(from._internal_range_match()); - } - cached_has_bits = from._impl_._has_bits_[0]; - if (cached_has_bits & 0x00000007u) { - 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 (cached_has_bits & 0x00000002u) { - 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) { - 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->_impl_.range_start_rule_ = from._impl_.range_start_rule_; - } - if (from._internal_range_end_rule() != 0) { - _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_); -} - -void RangeJoinTablesRequest::CopyFrom(const RangeJoinTablesRequest& from) { -// @@protoc_insertion_point(class_specific_copy_from_start:io.deephaven.proto.backplane.grpc.RangeJoinTablesRequest) - if (&from == this) return; - Clear(); - MergeFrom(from); -} - - -void RangeJoinTablesRequest::InternalSwap(RangeJoinTablesRequest* PROTOBUF_RESTRICT other) { - using std::swap; - auto* arena = GetArena(); - ABSL_DCHECK_EQ(arena, other->GetArena()); - _internal_metadata_.InternalSwap(&other->_internal_metadata_); - swap(_impl_._has_bits_[0], other->_impl_._has_bits_[0]); - _impl_.exact_match_columns_.InternalSwap(&other->_impl_.exact_match_columns_); - _impl_.aggregations_.InternalSwap(&other->_impl_.aggregations_); - ::_pbi::ArenaStringPtr::InternalSwap(&_impl_.left_start_column_, &other->_impl_.left_start_column_, arena); - ::_pbi::ArenaStringPtr::InternalSwap(&_impl_.right_range_column_, &other->_impl_.right_range_column_, arena); - ::_pbi::ArenaStringPtr::InternalSwap(&_impl_.left_end_column_, &other->_impl_.left_end_column_, arena); - ::_pbi::ArenaStringPtr::InternalSwap(&_impl_.range_match_, &other->_impl_.range_match_, arena); - ::google::protobuf::internal::memswap< - PROTOBUF_FIELD_OFFSET(RangeJoinTablesRequest, _impl_.range_end_rule_) - + sizeof(RangeJoinTablesRequest::_impl_.range_end_rule_) - - PROTOBUF_FIELD_OFFSET(RangeJoinTablesRequest, _impl_.result_id_)>( - reinterpret_cast(&_impl_.result_id_), - reinterpret_cast(&other->_impl_.result_id_)); -} - -::google::protobuf::Metadata RangeJoinTablesRequest::GetMetadata() const { - return ::google::protobuf::Message::GetMetadataImpl(GetClassData()->full()); -} -// =================================================================== - -class ComboAggregateRequest_Aggregate::_Internal { - public: -}; - -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 ::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} {} - -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_, from); - ::memcpy(reinterpret_cast(&_impl_) + - offsetof(Impl_, type_), - reinterpret_cast(&from._impl_) + - offsetof(Impl_, type_), - offsetof(Impl_, percentile_) - - offsetof(Impl_, type_) + - sizeof(Impl_::percentile_)); - - // @@protoc_insertion_point(copy_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) - : match_pairs_{visibility, arena}, - column_name_(arena), - _cached_size_{0} {} - -inline void ComboAggregateRequest_Aggregate::SharedCtor(::_pb::Arena* arena) { - new (&_impl_) Impl_(internal_visibility(), arena); - ::memset(reinterpret_cast(&_impl_) + - offsetof(Impl_, type_), - 0, - offsetof(Impl_, percentile_) - - offsetof(Impl_, type_) + - sizeof(Impl_::percentile_)); -} -ComboAggregateRequest_Aggregate::~ComboAggregateRequest_Aggregate() { - // @@protoc_insertion_point(destructor:io.deephaven.proto.backplane.grpc.ComboAggregateRequest.Aggregate) - _internal_metadata_.Delete<::google::protobuf::UnknownFieldSet>(); - SharedDtor(); -} -inline void ComboAggregateRequest_Aggregate::SharedDtor() { - ABSL_DCHECK(GetArena() == nullptr); - _impl_.column_name_.Destroy(); - _impl_.~Impl_(); -} - -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_ = { - { - 0, // no _has_bits_ - 0, // no _extensions_ - 5, 56, // max_field_number, fast_idx_mask - offsetof(decltype(_table_), field_lookup_table), - 4294967264, // skipmap - offsetof(decltype(_table_), field_entries), - 5, // 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::ComboAggregateRequest_Aggregate>(), // to_prefetch - #endif // PROTOBUF_PREFETCH_PARSE_TABLE - }, {{ - {::_pbi::TcParser::MiniParse, {}}, - // .io.deephaven.proto.backplane.grpc.ComboAggregateRequest.AggType type = 1; - {::_pbi::TcParser::SingularVarintNoZag1<::uint32_t, offsetof(ComboAggregateRequest_Aggregate, _impl_.type_), 63>(), - {8, 63, 0, PROTOBUF_FIELD_OFFSET(ComboAggregateRequest_Aggregate, _impl_.type_)}}, - // repeated string match_pairs = 2; - {::_pbi::TcParser::FastUR1, - {18, 63, 0, PROTOBUF_FIELD_OFFSET(ComboAggregateRequest_Aggregate, _impl_.match_pairs_)}}, - // string column_name = 3; - {::_pbi::TcParser::FastUS1, - {26, 63, 0, PROTOBUF_FIELD_OFFSET(ComboAggregateRequest_Aggregate, _impl_.column_name_)}}, - // double percentile = 4; - {::_pbi::TcParser::FastF64S1, - {33, 63, 0, PROTOBUF_FIELD_OFFSET(ComboAggregateRequest_Aggregate, _impl_.percentile_)}}, - // bool avg_median = 5; - {::_pbi::TcParser::SingularVarintNoZag1(), - {40, 63, 0, PROTOBUF_FIELD_OFFSET(ComboAggregateRequest_Aggregate, _impl_.avg_median_)}}, - {::_pbi::TcParser::MiniParse, {}}, - {::_pbi::TcParser::MiniParse, {}}, - }}, {{ - 65535, 65535 - }}, {{ - // .io.deephaven.proto.backplane.grpc.ComboAggregateRequest.AggType type = 1; - {PROTOBUF_FIELD_OFFSET(ComboAggregateRequest_Aggregate, _impl_.type_), 0, 0, - (0 | ::_fl::kFcSingular | ::_fl::kOpenEnum)}, - // repeated string match_pairs = 2; - {PROTOBUF_FIELD_OFFSET(ComboAggregateRequest_Aggregate, _impl_.match_pairs_), 0, 0, - (0 | ::_fl::kFcRepeated | ::_fl::kUtf8String | ::_fl::kRepSString)}, - // string column_name = 3; - {PROTOBUF_FIELD_OFFSET(ComboAggregateRequest_Aggregate, _impl_.column_name_), 0, 0, - (0 | ::_fl::kFcSingular | ::_fl::kUtf8String | ::_fl::kRepAString)}, - // double percentile = 4; - {PROTOBUF_FIELD_OFFSET(ComboAggregateRequest_Aggregate, _impl_.percentile_), 0, 0, - (0 | ::_fl::kFcSingular | ::_fl::kDouble)}, - // bool avg_median = 5; - {PROTOBUF_FIELD_OFFSET(ComboAggregateRequest_Aggregate, _impl_.avg_median_), 0, 0, - (0 | ::_fl::kFcSingular | ::_fl::kBool)}, - }}, - // no aux_entries - {{ - "\101\0\13\13\0\0\0\0" - "io.deephaven.proto.backplane.grpc.ComboAggregateRequest.Aggregate" - "match_pairs" - "column_name" - }}, -}; - -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; - - _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>(); -} - -#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) - 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._internal_column_name().empty()) { - _this->_internal_set_column_name(from._internal_column_name()); - } - if (from._internal_type() != 0) { - _this->_impl_.type_ = from._impl_.type_; - } - if (from._internal_avg_median() != 0) { - _this->_impl_.avg_median_ = from._impl_.avg_median_; - } - 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_); -} - -void ComboAggregateRequest_Aggregate::CopyFrom(const ComboAggregateRequest_Aggregate& from) { -// @@protoc_insertion_point(class_specific_copy_from_start:io.deephaven.proto.backplane.grpc.ComboAggregateRequest.Aggregate) - if (&from == this) return; - Clear(); - MergeFrom(from); -} - - -void ComboAggregateRequest_Aggregate::InternalSwap(ComboAggregateRequest_Aggregate* PROTOBUF_RESTRICT other) { - using std::swap; - auto* arena = GetArena(); - ABSL_DCHECK_EQ(arena, other->GetArena()); - _internal_metadata_.InternalSwap(&other->_internal_metadata_); - _impl_.match_pairs_.InternalSwap(&other->_impl_.match_pairs_); - ::_pbi::ArenaStringPtr::InternalSwap(&_impl_.column_name_, &other->_impl_.column_name_, arena); - ::google::protobuf::internal::memswap< - PROTOBUF_FIELD_OFFSET(ComboAggregateRequest_Aggregate, _impl_.percentile_) - + sizeof(ComboAggregateRequest_Aggregate::_impl_.percentile_) - - PROTOBUF_FIELD_OFFSET(ComboAggregateRequest_Aggregate, _impl_.type_)>( - reinterpret_cast(&_impl_.type_), - reinterpret_cast(&other->_impl_.type_)); -} - -::google::protobuf::Metadata ComboAggregateRequest_Aggregate::GetMetadata() const { - return ::google::protobuf::Message::GetMetadataImpl(GetClassData()->full()); -} -// =================================================================== - -class ComboAggregateRequest::_Internal { - public: - using HasBits = - decltype(std::declval()._impl_._has_bits_); - static constexpr ::int32_t kHasBitsOffset = - 8 * PROTOBUF_FIELD_OFFSET(ComboAggregateRequest, _impl_._has_bits_); -}; - -void ComboAggregateRequest::clear_result_id() { - ::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 ::io::deephaven::proto::backplane::grpc::ComboAggregateRequest& from_msg) - : _has_bits_{from._has_bits_}, - _cached_size_{0}, - aggregates_{visibility, arena, from.aggregates_}, - group_by_columns_{visibility, arena, from.group_by_columns_} {} - -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_, from); - ::uint32_t cached_has_bits = _impl_._has_bits_[0]; - _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) -} -inline PROTOBUF_NDEBUG_INLINE ComboAggregateRequest::Impl_::Impl_( - ::google::protobuf::internal::InternalVisibility visibility, - ::google::protobuf::Arena* arena) - : _cached_size_{0}, - aggregates_{visibility, arena}, - group_by_columns_{visibility, arena} {} - -inline void ComboAggregateRequest::SharedCtor(::_pb::Arena* arena) { - new (&_impl_) Impl_(internal_visibility(), arena); - ::memset(reinterpret_cast(&_impl_) + - offsetof(Impl_, result_id_), - 0, - offsetof(Impl_, force_combo_) - - offsetof(Impl_, result_id_) + - sizeof(Impl_::force_combo_)); -} -ComboAggregateRequest::~ComboAggregateRequest() { - // @@protoc_insertion_point(destructor:io.deephaven.proto.backplane.grpc.ComboAggregateRequest) - _internal_metadata_.Delete<::google::protobuf::UnknownFieldSet>(); - SharedDtor(); -} -inline void ComboAggregateRequest::SharedDtor() { - ABSL_DCHECK(GetArena() == nullptr); - delete _impl_.result_id_; - delete _impl_.source_id_; - _impl_.~Impl_(); -} - -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_ = { - { - PROTOBUF_FIELD_OFFSET(ComboAggregateRequest, _impl_._has_bits_), - 0, // no _extensions_ - 5, 56, // max_field_number, fast_idx_mask - offsetof(decltype(_table_), field_lookup_table), - 4294967264, // skipmap - offsetof(decltype(_table_), field_entries), - 5, // num_field_entries - 3, // num_aux_entries - offsetof(decltype(_table_), 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::ComboAggregateRequest>(), // to_prefetch - #endif // PROTOBUF_PREFETCH_PARSE_TABLE - }, {{ - {::_pbi::TcParser::MiniParse, {}}, - // .io.deephaven.proto.backplane.grpc.Ticket result_id = 1; - {::_pbi::TcParser::FastMtS1, - {10, 0, 0, PROTOBUF_FIELD_OFFSET(ComboAggregateRequest, _impl_.result_id_)}}, - // .io.deephaven.proto.backplane.grpc.TableReference source_id = 2; - {::_pbi::TcParser::FastMtS1, - {18, 1, 1, PROTOBUF_FIELD_OFFSET(ComboAggregateRequest, _impl_.source_id_)}}, - // repeated .io.deephaven.proto.backplane.grpc.ComboAggregateRequest.Aggregate aggregates = 3; - {::_pbi::TcParser::FastMtR1, - {26, 63, 2, PROTOBUF_FIELD_OFFSET(ComboAggregateRequest, _impl_.aggregates_)}}, - // repeated string group_by_columns = 4; - {::_pbi::TcParser::FastUR1, - {34, 63, 0, PROTOBUF_FIELD_OFFSET(ComboAggregateRequest, _impl_.group_by_columns_)}}, - // bool force_combo = 5; - {::_pbi::TcParser::SingularVarintNoZag1(), - {40, 63, 0, PROTOBUF_FIELD_OFFSET(ComboAggregateRequest, _impl_.force_combo_)}}, - {::_pbi::TcParser::MiniParse, {}}, - {::_pbi::TcParser::MiniParse, {}}, - }}, {{ - 65535, 65535 - }}, {{ - // .io.deephaven.proto.backplane.grpc.Ticket result_id = 1; - {PROTOBUF_FIELD_OFFSET(ComboAggregateRequest, _impl_.result_id_), _Internal::kHasBitsOffset + 0, 0, - (0 | ::_fl::kFcOptional | ::_fl::kMessage | ::_fl::kTvTable)}, - // .io.deephaven.proto.backplane.grpc.TableReference source_id = 2; - {PROTOBUF_FIELD_OFFSET(ComboAggregateRequest, _impl_.source_id_), _Internal::kHasBitsOffset + 1, 1, - (0 | ::_fl::kFcOptional | ::_fl::kMessage | ::_fl::kTvTable)}, - // repeated .io.deephaven.proto.backplane.grpc.ComboAggregateRequest.Aggregate aggregates = 3; - {PROTOBUF_FIELD_OFFSET(ComboAggregateRequest, _impl_.aggregates_), -1, 2, - (0 | ::_fl::kFcRepeated | ::_fl::kMessage | ::_fl::kTvTable)}, - // repeated string group_by_columns = 4; - {PROTOBUF_FIELD_OFFSET(ComboAggregateRequest, _impl_.group_by_columns_), -1, 0, - (0 | ::_fl::kFcRepeated | ::_fl::kUtf8String | ::_fl::kRepSString)}, - // bool force_combo = 5; - {PROTOBUF_FIELD_OFFSET(ComboAggregateRequest, _impl_.force_combo_), -1, 0, - (0 | ::_fl::kFcSingular | ::_fl::kBool)}, - }}, {{ - {::_pbi::TcParser::GetTable<::io::deephaven::proto::backplane::grpc::Ticket>()}, - {::_pbi::TcParser::GetTable<::io::deephaven::proto::backplane::grpc::TableReference>()}, - {::_pbi::TcParser::GetTable<::io::deephaven::proto::backplane::grpc::ComboAggregateRequest_Aggregate>()}, - }}, {{ - "\67\0\0\0\20\0\0\0" - "io.deephaven.proto.backplane.grpc.ComboAggregateRequest" - "group_by_columns" - }}, -}; - -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; - // 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>(); -} - -#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; - (void) cached_has_bits; - - _this->_internal_mutable_aggregates()->MergeFrom( - from._internal_aggregates()); - _this->_internal_mutable_group_by_columns()->MergeFrom(from._internal_group_by_columns()); - cached_has_bits = from._impl_._has_bits_[0]; - if (cached_has_bits & 0x00000003u) { - 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 (cached_has_bits & 0x00000002u) { - 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->_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_); -} - -void ComboAggregateRequest::CopyFrom(const ComboAggregateRequest& from) { -// @@protoc_insertion_point(class_specific_copy_from_start:io.deephaven.proto.backplane.grpc.ComboAggregateRequest) - if (&from == this) return; - Clear(); - MergeFrom(from); -} - - -void ComboAggregateRequest::InternalSwap(ComboAggregateRequest* PROTOBUF_RESTRICT other) { - using std::swap; - _internal_metadata_.InternalSwap(&other->_internal_metadata_); - swap(_impl_._has_bits_[0], other->_impl_._has_bits_[0]); - _impl_.aggregates_.InternalSwap(&other->_impl_.aggregates_); - _impl_.group_by_columns_.InternalSwap(&other->_impl_.group_by_columns_); - ::google::protobuf::internal::memswap< - PROTOBUF_FIELD_OFFSET(ComboAggregateRequest, _impl_.force_combo_) - + sizeof(ComboAggregateRequest::_impl_.force_combo_) - - PROTOBUF_FIELD_OFFSET(ComboAggregateRequest, _impl_.result_id_)>( - reinterpret_cast(&_impl_.result_id_), - reinterpret_cast(&other->_impl_.result_id_)); -} - -::google::protobuf::Metadata ComboAggregateRequest::GetMetadata() const { - return ::google::protobuf::Message::GetMetadataImpl(GetClassData()->full()); -} -// =================================================================== - -class AggregateAllRequest::_Internal { - public: - using HasBits = - decltype(std::declval()._impl_._has_bits_); - static constexpr ::int32_t kHasBitsOffset = - 8 * PROTOBUF_FIELD_OFFSET(AggregateAllRequest, _impl_._has_bits_); -}; - -void AggregateAllRequest::clear_result_id() { - ::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 ::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_} {} - -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_, from); - ::uint32_t cached_has_bits = _impl_._has_bits_[0]; - _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) -} -inline PROTOBUF_NDEBUG_INLINE AggregateAllRequest::Impl_::Impl_( - ::google::protobuf::internal::InternalVisibility visibility, - ::google::protobuf::Arena* arena) - : _cached_size_{0}, - group_by_columns_{visibility, arena} {} - -inline void AggregateAllRequest::SharedCtor(::_pb::Arena* arena) { - new (&_impl_) Impl_(internal_visibility(), arena); - ::memset(reinterpret_cast(&_impl_) + - offsetof(Impl_, result_id_), - 0, - offsetof(Impl_, spec_) - - offsetof(Impl_, result_id_) + - sizeof(Impl_::spec_)); -} -AggregateAllRequest::~AggregateAllRequest() { - // @@protoc_insertion_point(destructor:io.deephaven.proto.backplane.grpc.AggregateAllRequest) - _internal_metadata_.Delete<::google::protobuf::UnknownFieldSet>(); - SharedDtor(); -} -inline void AggregateAllRequest::SharedDtor() { - ABSL_DCHECK(GetArena() == nullptr); - delete _impl_.result_id_; - delete _impl_.source_id_; - delete _impl_.spec_; - _impl_.~Impl_(); -} - -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_ = { - { - PROTOBUF_FIELD_OFFSET(AggregateAllRequest, _impl_._has_bits_), - 0, // no _extensions_ - 4, 24, // max_field_number, fast_idx_mask - offsetof(decltype(_table_), field_lookup_table), - 4294967280, // skipmap - offsetof(decltype(_table_), field_entries), - 4, // num_field_entries - 3, // num_aux_entries - offsetof(decltype(_table_), 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::AggregateAllRequest>(), // to_prefetch - #endif // PROTOBUF_PREFETCH_PARSE_TABLE - }, {{ - // repeated string group_by_columns = 4; - {::_pbi::TcParser::FastUR1, - {34, 63, 0, PROTOBUF_FIELD_OFFSET(AggregateAllRequest, _impl_.group_by_columns_)}}, - // .io.deephaven.proto.backplane.grpc.Ticket result_id = 1; - {::_pbi::TcParser::FastMtS1, - {10, 0, 0, PROTOBUF_FIELD_OFFSET(AggregateAllRequest, _impl_.result_id_)}}, - // .io.deephaven.proto.backplane.grpc.TableReference source_id = 2; - {::_pbi::TcParser::FastMtS1, - {18, 1, 1, PROTOBUF_FIELD_OFFSET(AggregateAllRequest, _impl_.source_id_)}}, - // .io.deephaven.proto.backplane.grpc.AggSpec spec = 3; - {::_pbi::TcParser::FastMtS1, - {26, 2, 2, PROTOBUF_FIELD_OFFSET(AggregateAllRequest, _impl_.spec_)}}, - }}, {{ - 65535, 65535 - }}, {{ - // .io.deephaven.proto.backplane.grpc.Ticket result_id = 1; - {PROTOBUF_FIELD_OFFSET(AggregateAllRequest, _impl_.result_id_), _Internal::kHasBitsOffset + 0, 0, - (0 | ::_fl::kFcOptional | ::_fl::kMessage | ::_fl::kTvTable)}, - // .io.deephaven.proto.backplane.grpc.TableReference source_id = 2; - {PROTOBUF_FIELD_OFFSET(AggregateAllRequest, _impl_.source_id_), _Internal::kHasBitsOffset + 1, 1, - (0 | ::_fl::kFcOptional | ::_fl::kMessage | ::_fl::kTvTable)}, - // .io.deephaven.proto.backplane.grpc.AggSpec spec = 3; - {PROTOBUF_FIELD_OFFSET(AggregateAllRequest, _impl_.spec_), _Internal::kHasBitsOffset + 2, 2, - (0 | ::_fl::kFcOptional | ::_fl::kMessage | ::_fl::kTvTable)}, - // repeated string group_by_columns = 4; - {PROTOBUF_FIELD_OFFSET(AggregateAllRequest, _impl_.group_by_columns_), -1, 0, - (0 | ::_fl::kFcRepeated | ::_fl::kUtf8String | ::_fl::kRepSString)}, - }}, {{ - {::_pbi::TcParser::GetTable<::io::deephaven::proto::backplane::grpc::Ticket>()}, - {::_pbi::TcParser::GetTable<::io::deephaven::proto::backplane::grpc::TableReference>()}, - {::_pbi::TcParser::GetTable<::io::deephaven::proto::backplane::grpc::AggSpec>()}, - }}, {{ - "\65\0\0\0\20\0\0\0" - "io.deephaven.proto.backplane.grpc.AggregateAllRequest" - "group_by_columns" - }}, -}; - -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; - - _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>(); -} - -#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; - (void) cached_has_bits; - - _this->_internal_mutable_group_by_columns()->MergeFrom(from._internal_group_by_columns()); - cached_has_bits = from._impl_._has_bits_[0]; - if (cached_has_bits & 0x00000007u) { - 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 (cached_has_bits & 0x00000002u) { - 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) { - 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_); -} - -void AggregateAllRequest::CopyFrom(const AggregateAllRequest& from) { -// @@protoc_insertion_point(class_specific_copy_from_start:io.deephaven.proto.backplane.grpc.AggregateAllRequest) - if (&from == this) return; - Clear(); - MergeFrom(from); -} - - -void AggregateAllRequest::InternalSwap(AggregateAllRequest* PROTOBUF_RESTRICT other) { - using std::swap; - _internal_metadata_.InternalSwap(&other->_internal_metadata_); - swap(_impl_._has_bits_[0], other->_impl_._has_bits_[0]); - _impl_.group_by_columns_.InternalSwap(&other->_impl_.group_by_columns_); - ::google::protobuf::internal::memswap< - PROTOBUF_FIELD_OFFSET(AggregateAllRequest, _impl_.spec_) - + sizeof(AggregateAllRequest::_impl_.spec_) - - PROTOBUF_FIELD_OFFSET(AggregateAllRequest, _impl_.result_id_)>( - reinterpret_cast(&_impl_.result_id_), - reinterpret_cast(&other->_impl_.result_id_)); -} - -::google::protobuf::Metadata AggregateAllRequest::GetMetadata() const { - return ::google::protobuf::Message::GetMetadataImpl(GetClassData()->full()); -} -// =================================================================== - -class AggSpec_AggSpecApproximatePercentile::_Internal { - public: - using HasBits = - decltype(std::declval()._impl_._has_bits_); - static constexpr ::int32_t kHasBitsOffset = - 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) -} -AggSpec_AggSpecApproximatePercentile::AggSpec_AggSpecApproximatePercentile( - ::google::protobuf::Arena* arena, const AggSpec_AggSpecApproximatePercentile& from) - : AggSpec_AggSpecApproximatePercentile(arena) { - MergeFrom(from); -} -inline PROTOBUF_NDEBUG_INLINE AggSpec_AggSpecApproximatePercentile::Impl_::Impl_( - ::google::protobuf::internal::InternalVisibility visibility, - ::google::protobuf::Arena* arena) - : _cached_size_{0} {} - -inline void AggSpec_AggSpecApproximatePercentile::SharedCtor(::_pb::Arena* arena) { - new (&_impl_) Impl_(internal_visibility(), arena); - ::memset(reinterpret_cast(&_impl_) + - offsetof(Impl_, percentile_), - 0, - offsetof(Impl_, compression_) - - offsetof(Impl_, percentile_) + - sizeof(Impl_::compression_)); -} -AggSpec_AggSpecApproximatePercentile::~AggSpec_AggSpecApproximatePercentile() { - // @@protoc_insertion_point(destructor:io.deephaven.proto.backplane.grpc.AggSpec.AggSpecApproximatePercentile) - _internal_metadata_.Delete<::google::protobuf::UnknownFieldSet>(); - SharedDtor(); -} -inline void AggSpec_AggSpecApproximatePercentile::SharedDtor() { - ABSL_DCHECK(GetArena() == nullptr); - _impl_.~Impl_(); -} - -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_ = { - { - PROTOBUF_FIELD_OFFSET(AggSpec_AggSpecApproximatePercentile, _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 - 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_AggSpecApproximatePercentile>(), // to_prefetch - #endif // PROTOBUF_PREFETCH_PARSE_TABLE - }, {{ - // optional double compression = 2; - {::_pbi::TcParser::FastF64S1, - {17, 0, 0, PROTOBUF_FIELD_OFFSET(AggSpec_AggSpecApproximatePercentile, _impl_.compression_)}}, - // double percentile = 1; - {::_pbi::TcParser::FastF64S1, - {9, 63, 0, PROTOBUF_FIELD_OFFSET(AggSpec_AggSpecApproximatePercentile, _impl_.percentile_)}}, - }}, {{ - 65535, 65535 - }}, {{ - // double percentile = 1; - {PROTOBUF_FIELD_OFFSET(AggSpec_AggSpecApproximatePercentile, _impl_.percentile_), -1, 0, - (0 | ::_fl::kFcSingular | ::_fl::kDouble)}, - // optional double compression = 2; - {PROTOBUF_FIELD_OFFSET(AggSpec_AggSpecApproximatePercentile, _impl_.compression_), _Internal::kHasBitsOffset + 0, 0, - (0 | ::_fl::kFcOptional | ::_fl::kDouble)}, - }}, - // no aux_entries - {{ - }}, -}; - -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; - - _impl_.percentile_ = 0; - _impl_.compression_ = 0; - _impl_._has_bits_.Clear(); - _internal_metadata_.Clear<::google::protobuf::UnknownFieldSet>(); -} - -#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) - ABSL_DCHECK_NE(&from, _this); - ::uint32_t cached_has_bits = 0; - (void) cached_has_bits; - - if (::absl::bit_cast<::uint64_t>(from._internal_percentile()) != 0) { - _this->_impl_.percentile_ = from._impl_.percentile_; - } - 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_); -} - -void AggSpec_AggSpecApproximatePercentile::CopyFrom(const AggSpec_AggSpecApproximatePercentile& from) { -// @@protoc_insertion_point(class_specific_copy_from_start:io.deephaven.proto.backplane.grpc.AggSpec.AggSpecApproximatePercentile) - if (&from == this) return; - Clear(); - MergeFrom(from); -} - - -void AggSpec_AggSpecApproximatePercentile::InternalSwap(AggSpec_AggSpecApproximatePercentile* PROTOBUF_RESTRICT other) { - using std::swap; - _internal_metadata_.InternalSwap(&other->_internal_metadata_); - swap(_impl_._has_bits_[0], other->_impl_._has_bits_[0]); - ::google::protobuf::internal::memswap< - PROTOBUF_FIELD_OFFSET(AggSpec_AggSpecApproximatePercentile, _impl_.compression_) - + sizeof(AggSpec_AggSpecApproximatePercentile::_impl_.compression_) - - PROTOBUF_FIELD_OFFSET(AggSpec_AggSpecApproximatePercentile, _impl_.percentile_)>( - reinterpret_cast(&_impl_.percentile_), - reinterpret_cast(&other->_impl_.percentile_)); -} - -::google::protobuf::Metadata AggSpec_AggSpecApproximatePercentile::GetMetadata() const { - return ::google::protobuf::Message::GetMetadataImpl(GetClassData()->full()); -} -// =================================================================== - -class AggSpec_AggSpecCountDistinct::_Internal { - public: -}; - -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) -} -AggSpec_AggSpecCountDistinct::AggSpec_AggSpecCountDistinct( - ::google::protobuf::Arena* arena, const AggSpec_AggSpecCountDistinct& from) - : AggSpec_AggSpecCountDistinct(arena) { - MergeFrom(from); -} -inline PROTOBUF_NDEBUG_INLINE AggSpec_AggSpecCountDistinct::Impl_::Impl_( - ::google::protobuf::internal::InternalVisibility visibility, - ::google::protobuf::Arena* arena) - : _cached_size_{0} {} - -inline void AggSpec_AggSpecCountDistinct::SharedCtor(::_pb::Arena* arena) { - new (&_impl_) Impl_(internal_visibility(), arena); - _impl_.count_nulls_ = {}; -} -AggSpec_AggSpecCountDistinct::~AggSpec_AggSpecCountDistinct() { - // @@protoc_insertion_point(destructor:io.deephaven.proto.backplane.grpc.AggSpec.AggSpecCountDistinct) - _internal_metadata_.Delete<::google::protobuf::UnknownFieldSet>(); - SharedDtor(); -} -inline void AggSpec_AggSpecCountDistinct::SharedDtor() { - ABSL_DCHECK(GetArena() == nullptr); - _impl_.~Impl_(); -} - -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_ = { - { - 0, // no _has_bits_ - 0, // no _extensions_ - 1, 0, // max_field_number, fast_idx_mask - offsetof(decltype(_table_), field_lookup_table), - 4294967294, // skipmap - offsetof(decltype(_table_), field_entries), - 1, // 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_AggSpecCountDistinct>(), // to_prefetch - #endif // PROTOBUF_PREFETCH_PARSE_TABLE - }, {{ - // bool count_nulls = 1; - {::_pbi::TcParser::SingularVarintNoZag1(), - {8, 63, 0, PROTOBUF_FIELD_OFFSET(AggSpec_AggSpecCountDistinct, _impl_.count_nulls_)}}, - }}, {{ - 65535, 65535 - }}, {{ - // bool count_nulls = 1; - {PROTOBUF_FIELD_OFFSET(AggSpec_AggSpecCountDistinct, _impl_.count_nulls_), 0, 0, - (0 | ::_fl::kFcSingular | ::_fl::kBool)}, - }}, - // no aux_entries - {{ - }}, -}; - -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; - - _impl_.count_nulls_ = false; - _internal_metadata_.Clear<::google::protobuf::UnknownFieldSet>(); -} - -#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) - ABSL_DCHECK_NE(&from, _this); - ::uint32_t cached_has_bits = 0; - (void) cached_has_bits; - - if (from._internal_count_nulls() != 0) { - _this->_impl_.count_nulls_ = from._impl_.count_nulls_; - } - _this->_internal_metadata_.MergeFrom<::google::protobuf::UnknownFieldSet>(from._internal_metadata_); -} - -void AggSpec_AggSpecCountDistinct::CopyFrom(const AggSpec_AggSpecCountDistinct& from) { -// @@protoc_insertion_point(class_specific_copy_from_start:io.deephaven.proto.backplane.grpc.AggSpec.AggSpecCountDistinct) - if (&from == this) return; - Clear(); - MergeFrom(from); -} - - -void AggSpec_AggSpecCountDistinct::InternalSwap(AggSpec_AggSpecCountDistinct* PROTOBUF_RESTRICT other) { - using std::swap; - _internal_metadata_.InternalSwap(&other->_internal_metadata_); - swap(_impl_.count_nulls_, other->_impl_.count_nulls_); -} - -::google::protobuf::Metadata AggSpec_AggSpecCountDistinct::GetMetadata() const { - return ::google::protobuf::Message::GetMetadataImpl(GetClassData()->full()); -} -// =================================================================== - -class AggSpec_AggSpecDistinct::_Internal { - public: -}; - -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) -} -AggSpec_AggSpecDistinct::AggSpec_AggSpecDistinct( - ::google::protobuf::Arena* arena, const AggSpec_AggSpecDistinct& from) - : AggSpec_AggSpecDistinct(arena) { - MergeFrom(from); -} -inline PROTOBUF_NDEBUG_INLINE AggSpec_AggSpecDistinct::Impl_::Impl_( - ::google::protobuf::internal::InternalVisibility visibility, - ::google::protobuf::Arena* arena) - : _cached_size_{0} {} - -inline void AggSpec_AggSpecDistinct::SharedCtor(::_pb::Arena* arena) { - new (&_impl_) Impl_(internal_visibility(), arena); - _impl_.include_nulls_ = {}; -} -AggSpec_AggSpecDistinct::~AggSpec_AggSpecDistinct() { - // @@protoc_insertion_point(destructor:io.deephaven.proto.backplane.grpc.AggSpec.AggSpecDistinct) - _internal_metadata_.Delete<::google::protobuf::UnknownFieldSet>(); - SharedDtor(); -} -inline void AggSpec_AggSpecDistinct::SharedDtor() { - ABSL_DCHECK(GetArena() == nullptr); - _impl_.~Impl_(); -} - -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(); -} -PROTOBUF_CONSTINIT PROTOBUF_ATTRIBUTE_INIT_PRIORITY1 -const ::_pbi::TcParseTable<0, 1, 0, 0, 2> AggSpec_AggSpecDistinct::_table_ = { - { - 0, // no _has_bits_ - 0, // no _extensions_ - 1, 0, // max_field_number, fast_idx_mask - offsetof(decltype(_table_), field_lookup_table), - 4294967294, // skipmap - offsetof(decltype(_table_), field_entries), - 1, // 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_AggSpecDistinct>(), // to_prefetch - #endif // PROTOBUF_PREFETCH_PARSE_TABLE - }, {{ - // bool include_nulls = 1; - {::_pbi::TcParser::SingularVarintNoZag1(), - {8, 63, 0, PROTOBUF_FIELD_OFFSET(AggSpec_AggSpecDistinct, _impl_.include_nulls_)}}, - }}, {{ - 65535, 65535 - }}, {{ - // bool include_nulls = 1; - {PROTOBUF_FIELD_OFFSET(AggSpec_AggSpecDistinct, _impl_.include_nulls_), 0, 0, - (0 | ::_fl::kFcSingular | ::_fl::kBool)}, - }}, - // no aux_entries - {{ - }}, -}; - -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; - - _impl_.include_nulls_ = false; - _internal_metadata_.Clear<::google::protobuf::UnknownFieldSet>(); -} - -#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) - ABSL_DCHECK_NE(&from, _this); - ::uint32_t cached_has_bits = 0; - (void) cached_has_bits; - - if (from._internal_include_nulls() != 0) { - _this->_impl_.include_nulls_ = from._impl_.include_nulls_; - } - _this->_internal_metadata_.MergeFrom<::google::protobuf::UnknownFieldSet>(from._internal_metadata_); -} - -void AggSpec_AggSpecDistinct::CopyFrom(const AggSpec_AggSpecDistinct& from) { -// @@protoc_insertion_point(class_specific_copy_from_start:io.deephaven.proto.backplane.grpc.AggSpec.AggSpecDistinct) - if (&from == this) return; - Clear(); - MergeFrom(from); -} - - -void AggSpec_AggSpecDistinct::InternalSwap(AggSpec_AggSpecDistinct* PROTOBUF_RESTRICT other) { - using std::swap; - _internal_metadata_.InternalSwap(&other->_internal_metadata_); - swap(_impl_.include_nulls_, other->_impl_.include_nulls_); -} - -::google::protobuf::Metadata AggSpec_AggSpecDistinct::GetMetadata() const { - return ::google::protobuf::Message::GetMetadataImpl(GetClassData()->full()); -} -// =================================================================== - -class AggSpec_AggSpecFormula::_Internal { - public: -}; - -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 ::io::deephaven::proto::backplane::grpc::AggSpec_AggSpecFormula& from_msg) - : formula_(arena, from.formula_), - param_token_(arena, from.param_token_), - _cached_size_{0} {} - -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_, from); - - // @@protoc_insertion_point(copy_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) - : formula_(arena), - param_token_(arena), - _cached_size_{0} {} - -inline void AggSpec_AggSpecFormula::SharedCtor(::_pb::Arena* arena) { - new (&_impl_) Impl_(internal_visibility(), arena); -} -AggSpec_AggSpecFormula::~AggSpec_AggSpecFormula() { - // @@protoc_insertion_point(destructor:io.deephaven.proto.backplane.grpc.AggSpec.AggSpecFormula) - _internal_metadata_.Delete<::google::protobuf::UnknownFieldSet>(); - SharedDtor(); -} -inline void AggSpec_AggSpecFormula::SharedDtor() { - ABSL_DCHECK(GetArena() == nullptr); - _impl_.formula_.Destroy(); - _impl_.param_token_.Destroy(); - _impl_.~Impl_(); -} - -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_ = { - { - 0, // no _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 - 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_AggSpecFormula>(), // to_prefetch - #endif // PROTOBUF_PREFETCH_PARSE_TABLE - }, {{ - // string param_token = 2; - {::_pbi::TcParser::FastUS1, - {18, 63, 0, PROTOBUF_FIELD_OFFSET(AggSpec_AggSpecFormula, _impl_.param_token_)}}, - // string formula = 1; - {::_pbi::TcParser::FastUS1, - {10, 63, 0, PROTOBUF_FIELD_OFFSET(AggSpec_AggSpecFormula, _impl_.formula_)}}, - }}, {{ - 65535, 65535 - }}, {{ - // string formula = 1; - {PROTOBUF_FIELD_OFFSET(AggSpec_AggSpecFormula, _impl_.formula_), 0, 0, - (0 | ::_fl::kFcSingular | ::_fl::kUtf8String | ::_fl::kRepAString)}, - // string param_token = 2; - {PROTOBUF_FIELD_OFFSET(AggSpec_AggSpecFormula, _impl_.param_token_), 0, 0, - (0 | ::_fl::kFcSingular | ::_fl::kUtf8String | ::_fl::kRepAString)}, - }}, - // no aux_entries - {{ - "\70\7\13\0\0\0\0\0" - "io.deephaven.proto.backplane.grpc.AggSpec.AggSpecFormula" - "formula" - "param_token" - }}, -}; - -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; - // 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>(); -} - -#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; - (void) cached_has_bits; - - 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()); - } - _this->_internal_metadata_.MergeFrom<::google::protobuf::UnknownFieldSet>(from._internal_metadata_); -} - -void AggSpec_AggSpecFormula::CopyFrom(const AggSpec_AggSpecFormula& from) { -// @@protoc_insertion_point(class_specific_copy_from_start:io.deephaven.proto.backplane.grpc.AggSpec.AggSpecFormula) - if (&from == this) return; - Clear(); - MergeFrom(from); -} - - -void AggSpec_AggSpecFormula::InternalSwap(AggSpec_AggSpecFormula* PROTOBUF_RESTRICT other) { - using std::swap; - auto* arena = GetArena(); - ABSL_DCHECK_EQ(arena, other->GetArena()); - _internal_metadata_.InternalSwap(&other->_internal_metadata_); - ::_pbi::ArenaStringPtr::InternalSwap(&_impl_.formula_, &other->_impl_.formula_, arena); - ::_pbi::ArenaStringPtr::InternalSwap(&_impl_.param_token_, &other->_impl_.param_token_, arena); -} - -::google::protobuf::Metadata AggSpec_AggSpecFormula::GetMetadata() const { - return ::google::protobuf::Message::GetMetadataImpl(GetClassData()->full()); -} -// =================================================================== - -class AggSpec_AggSpecMedian::_Internal { - public: -}; - -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) -} -AggSpec_AggSpecMedian::AggSpec_AggSpecMedian( - ::google::protobuf::Arena* arena, const AggSpec_AggSpecMedian& from) - : AggSpec_AggSpecMedian(arena) { - MergeFrom(from); -} -inline PROTOBUF_NDEBUG_INLINE AggSpec_AggSpecMedian::Impl_::Impl_( - ::google::protobuf::internal::InternalVisibility visibility, - ::google::protobuf::Arena* arena) - : _cached_size_{0} {} - -inline void AggSpec_AggSpecMedian::SharedCtor(::_pb::Arena* arena) { - new (&_impl_) Impl_(internal_visibility(), arena); - _impl_.average_evenly_divided_ = {}; -} -AggSpec_AggSpecMedian::~AggSpec_AggSpecMedian() { - // @@protoc_insertion_point(destructor:io.deephaven.proto.backplane.grpc.AggSpec.AggSpecMedian) - _internal_metadata_.Delete<::google::protobuf::UnknownFieldSet>(); - SharedDtor(); -} -inline void AggSpec_AggSpecMedian::SharedDtor() { - ABSL_DCHECK(GetArena() == nullptr); - _impl_.~Impl_(); -} - -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_ = { - { - 0, // no _has_bits_ - 0, // no _extensions_ - 1, 0, // max_field_number, fast_idx_mask - offsetof(decltype(_table_), field_lookup_table), - 4294967294, // skipmap - offsetof(decltype(_table_), field_entries), - 1, // 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_AggSpecMedian>(), // to_prefetch - #endif // PROTOBUF_PREFETCH_PARSE_TABLE - }, {{ - // bool average_evenly_divided = 1; - {::_pbi::TcParser::SingularVarintNoZag1(), - {8, 63, 0, PROTOBUF_FIELD_OFFSET(AggSpec_AggSpecMedian, _impl_.average_evenly_divided_)}}, - }}, {{ - 65535, 65535 - }}, {{ - // bool average_evenly_divided = 1; - {PROTOBUF_FIELD_OFFSET(AggSpec_AggSpecMedian, _impl_.average_evenly_divided_), 0, 0, - (0 | ::_fl::kFcSingular | ::_fl::kBool)}, - }}, - // no aux_entries - {{ - }}, -}; - -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; - - _impl_.average_evenly_divided_ = false; - _internal_metadata_.Clear<::google::protobuf::UnknownFieldSet>(); -} - -#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) - ABSL_DCHECK_NE(&from, _this); - ::uint32_t cached_has_bits = 0; - (void) cached_has_bits; - - if (from._internal_average_evenly_divided() != 0) { - _this->_impl_.average_evenly_divided_ = from._impl_.average_evenly_divided_; - } - _this->_internal_metadata_.MergeFrom<::google::protobuf::UnknownFieldSet>(from._internal_metadata_); -} - -void AggSpec_AggSpecMedian::CopyFrom(const AggSpec_AggSpecMedian& from) { -// @@protoc_insertion_point(class_specific_copy_from_start:io.deephaven.proto.backplane.grpc.AggSpec.AggSpecMedian) - if (&from == this) return; - Clear(); - MergeFrom(from); -} - - -void AggSpec_AggSpecMedian::InternalSwap(AggSpec_AggSpecMedian* PROTOBUF_RESTRICT other) { - using std::swap; - _internal_metadata_.InternalSwap(&other->_internal_metadata_); - swap(_impl_.average_evenly_divided_, other->_impl_.average_evenly_divided_); -} - -::google::protobuf::Metadata AggSpec_AggSpecMedian::GetMetadata() const { - return ::google::protobuf::Message::GetMetadataImpl(GetClassData()->full()); -} -// =================================================================== - -class AggSpec_AggSpecPercentile::_Internal { - public: -}; - -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) -} -AggSpec_AggSpecPercentile::AggSpec_AggSpecPercentile( - ::google::protobuf::Arena* arena, const AggSpec_AggSpecPercentile& from) - : AggSpec_AggSpecPercentile(arena) { - MergeFrom(from); -} -inline PROTOBUF_NDEBUG_INLINE AggSpec_AggSpecPercentile::Impl_::Impl_( - ::google::protobuf::internal::InternalVisibility visibility, - ::google::protobuf::Arena* arena) - : _cached_size_{0} {} - -inline void AggSpec_AggSpecPercentile::SharedCtor(::_pb::Arena* arena) { - new (&_impl_) Impl_(internal_visibility(), arena); - ::memset(reinterpret_cast(&_impl_) + - offsetof(Impl_, percentile_), - 0, - offsetof(Impl_, average_evenly_divided_) - - offsetof(Impl_, percentile_) + - sizeof(Impl_::average_evenly_divided_)); -} -AggSpec_AggSpecPercentile::~AggSpec_AggSpecPercentile() { - // @@protoc_insertion_point(destructor:io.deephaven.proto.backplane.grpc.AggSpec.AggSpecPercentile) - _internal_metadata_.Delete<::google::protobuf::UnknownFieldSet>(); - SharedDtor(); -} -inline void AggSpec_AggSpecPercentile::SharedDtor() { - ABSL_DCHECK(GetArena() == nullptr); - _impl_.~Impl_(); -} - -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_ = { - { - 0, // no _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 - 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_AggSpecPercentile>(), // to_prefetch - #endif // PROTOBUF_PREFETCH_PARSE_TABLE - }, {{ - // bool average_evenly_divided = 2; - {::_pbi::TcParser::SingularVarintNoZag1(), - {16, 63, 0, PROTOBUF_FIELD_OFFSET(AggSpec_AggSpecPercentile, _impl_.average_evenly_divided_)}}, - // double percentile = 1; - {::_pbi::TcParser::FastF64S1, - {9, 63, 0, PROTOBUF_FIELD_OFFSET(AggSpec_AggSpecPercentile, _impl_.percentile_)}}, - }}, {{ - 65535, 65535 - }}, {{ - // double percentile = 1; - {PROTOBUF_FIELD_OFFSET(AggSpec_AggSpecPercentile, _impl_.percentile_), 0, 0, - (0 | ::_fl::kFcSingular | ::_fl::kDouble)}, - // bool average_evenly_divided = 2; - {PROTOBUF_FIELD_OFFSET(AggSpec_AggSpecPercentile, _impl_.average_evenly_divided_), 0, 0, - (0 | ::_fl::kFcSingular | ::_fl::kBool)}, - }}, - // no aux_entries - {{ - }}, -}; - -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; - - ::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>(); -} - -#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) - ABSL_DCHECK_NE(&from, _this); - ::uint32_t cached_has_bits = 0; - (void) cached_has_bits; - - if (::absl::bit_cast<::uint64_t>(from._internal_percentile()) != 0) { - _this->_impl_.percentile_ = from._impl_.percentile_; - } - if (from._internal_average_evenly_divided() != 0) { - _this->_impl_.average_evenly_divided_ = from._impl_.average_evenly_divided_; - } - _this->_internal_metadata_.MergeFrom<::google::protobuf::UnknownFieldSet>(from._internal_metadata_); -} - -void AggSpec_AggSpecPercentile::CopyFrom(const AggSpec_AggSpecPercentile& from) { -// @@protoc_insertion_point(class_specific_copy_from_start:io.deephaven.proto.backplane.grpc.AggSpec.AggSpecPercentile) - if (&from == this) return; - Clear(); - MergeFrom(from); -} - - -void AggSpec_AggSpecPercentile::InternalSwap(AggSpec_AggSpecPercentile* PROTOBUF_RESTRICT other) { - using std::swap; - _internal_metadata_.InternalSwap(&other->_internal_metadata_); - ::google::protobuf::internal::memswap< - PROTOBUF_FIELD_OFFSET(AggSpec_AggSpecPercentile, _impl_.average_evenly_divided_) - + sizeof(AggSpec_AggSpecPercentile::_impl_.average_evenly_divided_) - - PROTOBUF_FIELD_OFFSET(AggSpec_AggSpecPercentile, _impl_.percentile_)>( - reinterpret_cast(&_impl_.percentile_), - reinterpret_cast(&other->_impl_.percentile_)); -} - -::google::protobuf::Metadata AggSpec_AggSpecPercentile::GetMetadata() const { - return ::google::protobuf::Message::GetMetadataImpl(GetClassData()->full()); -} -// =================================================================== - -class AggSpec_AggSpecSorted::_Internal { - public: -}; - -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 ::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_, from); - - // @@protoc_insertion_point(copy_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) - : columns_{visibility, arena}, - _cached_size_{0} {} - -inline void AggSpec_AggSpecSorted::SharedCtor(::_pb::Arena* arena) { - new (&_impl_) Impl_(internal_visibility(), arena); -} -AggSpec_AggSpecSorted::~AggSpec_AggSpecSorted() { - // @@protoc_insertion_point(destructor:io.deephaven.proto.backplane.grpc.AggSpec.AggSpecSorted) - _internal_metadata_.Delete<::google::protobuf::UnknownFieldSet>(); - SharedDtor(); -} -inline void AggSpec_AggSpecSorted::SharedDtor() { - ABSL_DCHECK(GetArena() == nullptr); - _impl_.~Impl_(); -} - -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_ = { - { - 0, // no _has_bits_ - 0, // no _extensions_ - 1, 0, // max_field_number, fast_idx_mask - offsetof(decltype(_table_), field_lookup_table), - 4294967294, // skipmap - offsetof(decltype(_table_), field_entries), - 1, // num_field_entries - 1, // num_aux_entries - offsetof(decltype(_table_), 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_AggSpecSorted>(), // to_prefetch - #endif // PROTOBUF_PREFETCH_PARSE_TABLE - }, {{ - // repeated .io.deephaven.proto.backplane.grpc.AggSpec.AggSpecSortedColumn columns = 1; - {::_pbi::TcParser::FastMtR1, - {10, 63, 0, PROTOBUF_FIELD_OFFSET(AggSpec_AggSpecSorted, _impl_.columns_)}}, - }}, {{ - 65535, 65535 - }}, {{ - // repeated .io.deephaven.proto.backplane.grpc.AggSpec.AggSpecSortedColumn columns = 1; - {PROTOBUF_FIELD_OFFSET(AggSpec_AggSpecSorted, _impl_.columns_), 0, 0, - (0 | ::_fl::kFcRepeated | ::_fl::kMessage | ::_fl::kTvTable)}, - }}, {{ - {::_pbi::TcParser::GetTable<::io::deephaven::proto::backplane::grpc::AggSpec_AggSpecSortedColumn>()}, - }}, {{ - }}, -}; - -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; - - _impl_.columns_.Clear(); - _internal_metadata_.Clear<::google::protobuf::UnknownFieldSet>(); -} - -#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) - ABSL_DCHECK_NE(&from, _this); - ::uint32_t cached_has_bits = 0; - (void) cached_has_bits; - - _this->_internal_mutable_columns()->MergeFrom( - from._internal_columns()); - _this->_internal_metadata_.MergeFrom<::google::protobuf::UnknownFieldSet>(from._internal_metadata_); -} - -void AggSpec_AggSpecSorted::CopyFrom(const AggSpec_AggSpecSorted& from) { -// @@protoc_insertion_point(class_specific_copy_from_start:io.deephaven.proto.backplane.grpc.AggSpec.AggSpecSorted) - if (&from == this) return; - Clear(); - MergeFrom(from); -} - - -void AggSpec_AggSpecSorted::InternalSwap(AggSpec_AggSpecSorted* PROTOBUF_RESTRICT other) { - using std::swap; - _internal_metadata_.InternalSwap(&other->_internal_metadata_); - _impl_.columns_.InternalSwap(&other->_impl_.columns_); -} - -::google::protobuf::Metadata AggSpec_AggSpecSorted::GetMetadata() const { - return ::google::protobuf::Message::GetMetadataImpl(GetClassData()->full()); -} -// =================================================================== - -class AggSpec_AggSpecSortedColumn::_Internal { - public: -}; - -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 ::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_, from); - - // @@protoc_insertion_point(copy_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) - : column_name_(arena), - _cached_size_{0} {} - -inline void AggSpec_AggSpecSortedColumn::SharedCtor(::_pb::Arena* arena) { - new (&_impl_) Impl_(internal_visibility(), arena); -} -AggSpec_AggSpecSortedColumn::~AggSpec_AggSpecSortedColumn() { - // @@protoc_insertion_point(destructor:io.deephaven.proto.backplane.grpc.AggSpec.AggSpecSortedColumn) - _internal_metadata_.Delete<::google::protobuf::UnknownFieldSet>(); - SharedDtor(); -} -inline void AggSpec_AggSpecSortedColumn::SharedDtor() { - ABSL_DCHECK(GetArena() == nullptr); - _impl_.column_name_.Destroy(); - _impl_.~Impl_(); -} - -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_ = { - { - 0, // no _has_bits_ - 0, // no _extensions_ - 1, 0, // max_field_number, fast_idx_mask - offsetof(decltype(_table_), field_lookup_table), - 4294967294, // skipmap - offsetof(decltype(_table_), field_entries), - 1, // 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_AggSpecSortedColumn>(), // to_prefetch - #endif // PROTOBUF_PREFETCH_PARSE_TABLE - }, {{ - // string column_name = 1; - {::_pbi::TcParser::FastUS1, - {10, 63, 0, PROTOBUF_FIELD_OFFSET(AggSpec_AggSpecSortedColumn, _impl_.column_name_)}}, - }}, {{ - 65535, 65535 - }}, {{ - // string column_name = 1; - {PROTOBUF_FIELD_OFFSET(AggSpec_AggSpecSortedColumn, _impl_.column_name_), 0, 0, - (0 | ::_fl::kFcSingular | ::_fl::kUtf8String | ::_fl::kRepAString)}, - }}, - // no aux_entries - {{ - "\75\13\0\0\0\0\0\0" - "io.deephaven.proto.backplane.grpc.AggSpec.AggSpecSortedColumn" - "column_name" - }}, -}; - -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; - - _impl_.column_name_.ClearToEmpty(); - _internal_metadata_.Clear<::google::protobuf::UnknownFieldSet>(); -} - -#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) - ABSL_DCHECK_NE(&from, _this); - ::uint32_t cached_has_bits = 0; - (void) cached_has_bits; - - if (!from._internal_column_name().empty()) { - _this->_internal_set_column_name(from._internal_column_name()); - } - _this->_internal_metadata_.MergeFrom<::google::protobuf::UnknownFieldSet>(from._internal_metadata_); -} - -void AggSpec_AggSpecSortedColumn::CopyFrom(const AggSpec_AggSpecSortedColumn& from) { -// @@protoc_insertion_point(class_specific_copy_from_start:io.deephaven.proto.backplane.grpc.AggSpec.AggSpecSortedColumn) - if (&from == this) return; - Clear(); - MergeFrom(from); -} - - -void AggSpec_AggSpecSortedColumn::InternalSwap(AggSpec_AggSpecSortedColumn* PROTOBUF_RESTRICT other) { - using std::swap; - auto* arena = GetArena(); - ABSL_DCHECK_EQ(arena, other->GetArena()); - _internal_metadata_.InternalSwap(&other->_internal_metadata_); - ::_pbi::ArenaStringPtr::InternalSwap(&_impl_.column_name_, &other->_impl_.column_name_, arena); -} - -::google::protobuf::Metadata AggSpec_AggSpecSortedColumn::GetMetadata() const { - return ::google::protobuf::Message::GetMetadataImpl(GetClassData()->full()); -} -// =================================================================== - -class AggSpec_AggSpecTDigest::_Internal { - public: - using HasBits = - decltype(std::declval()._impl_._has_bits_); - static constexpr ::int32_t kHasBitsOffset = - 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) -} -AggSpec_AggSpecTDigest::AggSpec_AggSpecTDigest( - ::google::protobuf::Arena* arena, const AggSpec_AggSpecTDigest& from) - : AggSpec_AggSpecTDigest(arena) { - MergeFrom(from); -} -inline PROTOBUF_NDEBUG_INLINE AggSpec_AggSpecTDigest::Impl_::Impl_( - ::google::protobuf::internal::InternalVisibility visibility, - ::google::protobuf::Arena* arena) - : _cached_size_{0} {} - -inline void AggSpec_AggSpecTDigest::SharedCtor(::_pb::Arena* arena) { - new (&_impl_) Impl_(internal_visibility(), arena); - _impl_.compression_ = {}; -} -AggSpec_AggSpecTDigest::~AggSpec_AggSpecTDigest() { - // @@protoc_insertion_point(destructor:io.deephaven.proto.backplane.grpc.AggSpec.AggSpecTDigest) - _internal_metadata_.Delete<::google::protobuf::UnknownFieldSet>(); - SharedDtor(); -} -inline void AggSpec_AggSpecTDigest::SharedDtor() { - ABSL_DCHECK(GetArena() == nullptr); - _impl_.~Impl_(); -} - -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_ = { - { - PROTOBUF_FIELD_OFFSET(AggSpec_AggSpecTDigest, _impl_._has_bits_), - 0, // no _extensions_ - 1, 0, // max_field_number, fast_idx_mask - offsetof(decltype(_table_), field_lookup_table), - 4294967294, // skipmap - offsetof(decltype(_table_), field_entries), - 1, // 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_AggSpecTDigest>(), // to_prefetch - #endif // PROTOBUF_PREFETCH_PARSE_TABLE - }, {{ - // optional double compression = 1; - {::_pbi::TcParser::FastF64S1, - {9, 0, 0, PROTOBUF_FIELD_OFFSET(AggSpec_AggSpecTDigest, _impl_.compression_)}}, - }}, {{ - 65535, 65535 - }}, {{ - // optional double compression = 1; - {PROTOBUF_FIELD_OFFSET(AggSpec_AggSpecTDigest, _impl_.compression_), _Internal::kHasBitsOffset + 0, 0, - (0 | ::_fl::kFcOptional | ::_fl::kDouble)}, - }}, - // no aux_entries - {{ - }}, -}; - -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; - - _impl_.compression_ = 0; - _impl_._has_bits_.Clear(); - _internal_metadata_.Clear<::google::protobuf::UnknownFieldSet>(); -} - -#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) - ABSL_DCHECK_NE(&from, _this); - ::uint32_t cached_has_bits = 0; - (void) cached_has_bits; - - 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_); -} - -void AggSpec_AggSpecTDigest::CopyFrom(const AggSpec_AggSpecTDigest& from) { -// @@protoc_insertion_point(class_specific_copy_from_start:io.deephaven.proto.backplane.grpc.AggSpec.AggSpecTDigest) - if (&from == this) return; - Clear(); - MergeFrom(from); -} - - -void AggSpec_AggSpecTDigest::InternalSwap(AggSpec_AggSpecTDigest* PROTOBUF_RESTRICT other) { - using std::swap; - _internal_metadata_.InternalSwap(&other->_internal_metadata_); - swap(_impl_._has_bits_[0], other->_impl_._has_bits_[0]); - swap(_impl_.compression_, other->_impl_.compression_); -} - -::google::protobuf::Metadata AggSpec_AggSpecTDigest::GetMetadata() const { - return ::google::protobuf::Message::GetMetadataImpl(GetClassData()->full()); -} -// =================================================================== - -class AggSpec_AggSpecUnique::_Internal { - public: - using HasBits = - decltype(std::declval()._impl_._has_bits_); - static constexpr ::int32_t kHasBitsOffset = - 8 * PROTOBUF_FIELD_OFFSET(AggSpec_AggSpecUnique, _impl_._has_bits_); -}; - -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 ::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_, from); - ::uint32_t cached_has_bits = _impl_._has_bits_[0]; - _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) -} -inline PROTOBUF_NDEBUG_INLINE AggSpec_AggSpecUnique::Impl_::Impl_( - ::google::protobuf::internal::InternalVisibility visibility, - ::google::protobuf::Arena* arena) - : _cached_size_{0} {} - -inline void AggSpec_AggSpecUnique::SharedCtor(::_pb::Arena* arena) { - new (&_impl_) Impl_(internal_visibility(), arena); - ::memset(reinterpret_cast(&_impl_) + - offsetof(Impl_, non_unique_sentinel_), - 0, - offsetof(Impl_, include_nulls_) - - offsetof(Impl_, non_unique_sentinel_) + - sizeof(Impl_::include_nulls_)); -} -AggSpec_AggSpecUnique::~AggSpec_AggSpecUnique() { - // @@protoc_insertion_point(destructor:io.deephaven.proto.backplane.grpc.AggSpec.AggSpecUnique) - _internal_metadata_.Delete<::google::protobuf::UnknownFieldSet>(); - SharedDtor(); -} -inline void AggSpec_AggSpecUnique::SharedDtor() { - ABSL_DCHECK(GetArena() == nullptr); - delete _impl_.non_unique_sentinel_; - _impl_.~Impl_(); -} - -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_ = { - { - PROTOBUF_FIELD_OFFSET(AggSpec_AggSpecUnique, _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::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, - {18, 0, 0, PROTOBUF_FIELD_OFFSET(AggSpec_AggSpecUnique, _impl_.non_unique_sentinel_)}}, - // bool include_nulls = 1; - {::_pbi::TcParser::SingularVarintNoZag1(), - {8, 63, 0, PROTOBUF_FIELD_OFFSET(AggSpec_AggSpecUnique, _impl_.include_nulls_)}}, - }}, {{ - 65535, 65535 - }}, {{ - // bool include_nulls = 1; - {PROTOBUF_FIELD_OFFSET(AggSpec_AggSpecUnique, _impl_.include_nulls_), -1, 0, - (0 | ::_fl::kFcSingular | ::_fl::kBool)}, - // .io.deephaven.proto.backplane.grpc.AggSpec.AggSpecNonUniqueSentinel non_unique_sentinel = 2; - {PROTOBUF_FIELD_OFFSET(AggSpec_AggSpecUnique, _impl_.non_unique_sentinel_), _Internal::kHasBitsOffset + 0, 0, - (0 | ::_fl::kFcOptional | ::_fl::kMessage | ::_fl::kTvTable)}, - }}, {{ - {::_pbi::TcParser::GetTable<::io::deephaven::proto::backplane::grpc::AggSpec_AggSpecNonUniqueSentinel>()}, - }}, {{ - }}, -}; - -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; - - 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>(); -} - -#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; - - 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->_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_); -} - -void AggSpec_AggSpecUnique::CopyFrom(const AggSpec_AggSpecUnique& from) { -// @@protoc_insertion_point(class_specific_copy_from_start:io.deephaven.proto.backplane.grpc.AggSpec.AggSpecUnique) - if (&from == this) return; - Clear(); - MergeFrom(from); -} - - -void AggSpec_AggSpecUnique::InternalSwap(AggSpec_AggSpecUnique* PROTOBUF_RESTRICT other) { - using std::swap; - _internal_metadata_.InternalSwap(&other->_internal_metadata_); - swap(_impl_._has_bits_[0], other->_impl_._has_bits_[0]); - ::google::protobuf::internal::memswap< - PROTOBUF_FIELD_OFFSET(AggSpec_AggSpecUnique, _impl_.include_nulls_) - + sizeof(AggSpec_AggSpecUnique::_impl_.include_nulls_) - - PROTOBUF_FIELD_OFFSET(AggSpec_AggSpecUnique, _impl_.non_unique_sentinel_)>( - reinterpret_cast(&_impl_.non_unique_sentinel_), - reinterpret_cast(&other->_impl_.non_unique_sentinel_)); -} - -::google::protobuf::Metadata AggSpec_AggSpecUnique::GetMetadata() const { - 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_); -}; - -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 ::io::deephaven::proto::backplane::grpc::AggSpec_AggSpecNonUniqueSentinel& from_msg) - : type_{}, - _cached_size_{0}, - _oneof_case_{from._oneof_case_[0]} {} - -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_, from); - switch (type_case()) { - case TYPE_NOT_SET: - break; - case kNullValue: - _impl_.type_.null_value_ = from._impl_.type_.null_value_; - break; - case kStringValue: - new (&_impl_.type_.string_value_) decltype(_impl_.type_.string_value_){arena, from._impl_.type_.string_value_}; - break; - case kIntValue: - _impl_.type_.int_value_ = from._impl_.type_.int_value_; - break; - case kLongValue: - _impl_.type_.long_value_ = from._impl_.type_.long_value_; - break; - case kFloatValue: - _impl_.type_.float_value_ = from._impl_.type_.float_value_; - break; - case kDoubleValue: - _impl_.type_.double_value_ = from._impl_.type_.double_value_; - break; - case kBoolValue: - _impl_.type_.bool_value_ = from._impl_.type_.bool_value_; - break; - case kByteValue: - _impl_.type_.byte_value_ = from._impl_.type_.byte_value_; - break; - case kShortValue: - _impl_.type_.short_value_ = from._impl_.type_.short_value_; - break; - case kCharValue: - _impl_.type_.char_value_ = from._impl_.type_.char_value_; - break; - } - - // @@protoc_insertion_point(copy_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) - : type_{}, - _cached_size_{0}, - _oneof_case_{} {} - -inline void AggSpec_AggSpecNonUniqueSentinel::SharedCtor(::_pb::Arena* arena) { - new (&_impl_) Impl_(internal_visibility(), arena); -} -AggSpec_AggSpecNonUniqueSentinel::~AggSpec_AggSpecNonUniqueSentinel() { - // @@protoc_insertion_point(destructor:io.deephaven.proto.backplane.grpc.AggSpec.AggSpecNonUniqueSentinel) - _internal_metadata_.Delete<::google::protobuf::UnknownFieldSet>(); - SharedDtor(); -} -inline void AggSpec_AggSpecNonUniqueSentinel::SharedDtor() { - ABSL_DCHECK(GetArena() == nullptr); - if (has_type()) { - clear_type(); - } - _impl_.~Impl_(); -} - -void AggSpec_AggSpecNonUniqueSentinel::clear_type() { -// @@protoc_insertion_point(one_of_clear_start:io.deephaven.proto.backplane.grpc.AggSpec.AggSpecNonUniqueSentinel) - ::google::protobuf::internal::TSanWrite(&_impl_); - switch (type_case()) { - case kNullValue: { - // No need to clear - break; - } - case kStringValue: { - _impl_.type_.string_value_.Destroy(); - break; - } - case kIntValue: { - // No need to clear - break; - } - case kLongValue: { - // No need to clear - break; - } - case kFloatValue: { - // No need to clear - break; - } - case kDoubleValue: { - // No need to clear - break; - } - case kBoolValue: { - // No need to clear - break; - } - case kByteValue: { - // No need to clear - break; - } - case kShortValue: { - // No need to clear - break; - } - case kCharValue: { - // No need to clear - break; - } - case TYPE_NOT_SET: { - break; - } - } - _impl_._oneof_case_[0] = TYPE_NOT_SET; -} - - -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_ = { - { - 0, // no _has_bits_ - 0, // no _extensions_ - 10, 0, // max_field_number, fast_idx_mask - offsetof(decltype(_table_), field_lookup_table), - 4294966272, // skipmap - offsetof(decltype(_table_), field_entries), - 10, // 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_AggSpecNonUniqueSentinel>(), // to_prefetch - #endif // PROTOBUF_PREFETCH_PARSE_TABLE - }, {{ - {::_pbi::TcParser::MiniParse, {}}, - }}, {{ - 65535, 65535 - }}, {{ - // .io.deephaven.proto.backplane.grpc.NullValue null_value = 1; - {PROTOBUF_FIELD_OFFSET(AggSpec_AggSpecNonUniqueSentinel, _impl_.type_.null_value_), _Internal::kOneofCaseOffset + 0, 0, - (0 | ::_fl::kFcOneof | ::_fl::kOpenEnum)}, - // string string_value = 2; - {PROTOBUF_FIELD_OFFSET(AggSpec_AggSpecNonUniqueSentinel, _impl_.type_.string_value_), _Internal::kOneofCaseOffset + 0, 0, - (0 | ::_fl::kFcOneof | ::_fl::kUtf8String | ::_fl::kRepAString)}, - // sint32 int_value = 3; - {PROTOBUF_FIELD_OFFSET(AggSpec_AggSpecNonUniqueSentinel, _impl_.type_.int_value_), _Internal::kOneofCaseOffset + 0, 0, - (0 | ::_fl::kFcOneof | ::_fl::kSInt32)}, - // sint64 long_value = 4 [jstype = JS_STRING]; - {PROTOBUF_FIELD_OFFSET(AggSpec_AggSpecNonUniqueSentinel, _impl_.type_.long_value_), _Internal::kOneofCaseOffset + 0, 0, - (0 | ::_fl::kFcOneof | ::_fl::kSInt64)}, - // float float_value = 5; - {PROTOBUF_FIELD_OFFSET(AggSpec_AggSpecNonUniqueSentinel, _impl_.type_.float_value_), _Internal::kOneofCaseOffset + 0, 0, - (0 | ::_fl::kFcOneof | ::_fl::kFloat)}, - // double double_value = 6; - {PROTOBUF_FIELD_OFFSET(AggSpec_AggSpecNonUniqueSentinel, _impl_.type_.double_value_), _Internal::kOneofCaseOffset + 0, 0, - (0 | ::_fl::kFcOneof | ::_fl::kDouble)}, - // bool bool_value = 7; - {PROTOBUF_FIELD_OFFSET(AggSpec_AggSpecNonUniqueSentinel, _impl_.type_.bool_value_), _Internal::kOneofCaseOffset + 0, 0, - (0 | ::_fl::kFcOneof | ::_fl::kBool)}, - // sint32 byte_value = 8; - {PROTOBUF_FIELD_OFFSET(AggSpec_AggSpecNonUniqueSentinel, _impl_.type_.byte_value_), _Internal::kOneofCaseOffset + 0, 0, - (0 | ::_fl::kFcOneof | ::_fl::kSInt32)}, - // sint32 short_value = 9; - {PROTOBUF_FIELD_OFFSET(AggSpec_AggSpecNonUniqueSentinel, _impl_.type_.short_value_), _Internal::kOneofCaseOffset + 0, 0, - (0 | ::_fl::kFcOneof | ::_fl::kSInt32)}, - // sint32 char_value = 10; - {PROTOBUF_FIELD_OFFSET(AggSpec_AggSpecNonUniqueSentinel, _impl_.type_.char_value_), _Internal::kOneofCaseOffset + 0, 0, - (0 | ::_fl::kFcOneof | ::_fl::kSInt32)}, - }}, - // no aux_entries - {{ - "\102\0\14\0\0\0\0\0\0\0\0\0\0\0\0\0" - "io.deephaven.proto.backplane.grpc.AggSpec.AggSpecNonUniqueSentinel" - "string_value" - }}, -}; - -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; - - clear_type(); - _internal_metadata_.Clear<::google::protobuf::UnknownFieldSet>(); -} - -#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; - - 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; - } - - 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_); -} - -void AggSpec_AggSpecNonUniqueSentinel::CopyFrom(const AggSpec_AggSpecNonUniqueSentinel& from) { -// @@protoc_insertion_point(class_specific_copy_from_start:io.deephaven.proto.backplane.grpc.AggSpec.AggSpecNonUniqueSentinel) - if (&from == this) return; - Clear(); - MergeFrom(from); -} - - -void AggSpec_AggSpecNonUniqueSentinel::InternalSwap(AggSpec_AggSpecNonUniqueSentinel* PROTOBUF_RESTRICT other) { - using std::swap; - _internal_metadata_.InternalSwap(&other->_internal_metadata_); - swap(_impl_.type_, other->_impl_.type_); - swap(_impl_._oneof_case_[0], other->_impl_._oneof_case_[0]); -} - -::google::protobuf::Metadata AggSpec_AggSpecNonUniqueSentinel::GetMetadata() const { - return ::google::protobuf::Message::GetMetadataImpl(GetClassData()->full()); -} -// =================================================================== - -class AggSpec_AggSpecWeighted::_Internal { - public: -}; - -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 ::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_, from); - - // @@protoc_insertion_point(copy_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) - : weight_column_(arena), - _cached_size_{0} {} - -inline void AggSpec_AggSpecWeighted::SharedCtor(::_pb::Arena* arena) { - new (&_impl_) Impl_(internal_visibility(), arena); -} -AggSpec_AggSpecWeighted::~AggSpec_AggSpecWeighted() { - // @@protoc_insertion_point(destructor:io.deephaven.proto.backplane.grpc.AggSpec.AggSpecWeighted) - _internal_metadata_.Delete<::google::protobuf::UnknownFieldSet>(); - SharedDtor(); -} -inline void AggSpec_AggSpecWeighted::SharedDtor() { - ABSL_DCHECK(GetArena() == nullptr); - _impl_.weight_column_.Destroy(); - _impl_.~Impl_(); -} - -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(); -} -PROTOBUF_CONSTINIT PROTOBUF_ATTRIBUTE_INIT_PRIORITY1 -const ::_pbi::TcParseTable<0, 1, 0, 79, 2> AggSpec_AggSpecWeighted::_table_ = { - { - 0, // no _has_bits_ - 0, // no _extensions_ - 1, 0, // max_field_number, fast_idx_mask - offsetof(decltype(_table_), field_lookup_table), - 4294967294, // skipmap - offsetof(decltype(_table_), field_entries), - 1, // 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_AggSpecWeighted>(), // to_prefetch - #endif // PROTOBUF_PREFETCH_PARSE_TABLE - }, {{ - // string weight_column = 1; - {::_pbi::TcParser::FastUS1, - {10, 63, 0, PROTOBUF_FIELD_OFFSET(AggSpec_AggSpecWeighted, _impl_.weight_column_)}}, - }}, {{ - 65535, 65535 - }}, {{ - // string weight_column = 1; - {PROTOBUF_FIELD_OFFSET(AggSpec_AggSpecWeighted, _impl_.weight_column_), 0, 0, - (0 | ::_fl::kFcSingular | ::_fl::kUtf8String | ::_fl::kRepAString)}, - }}, - // no aux_entries - {{ - "\71\15\0\0\0\0\0\0" - "io.deephaven.proto.backplane.grpc.AggSpec.AggSpecWeighted" - "weight_column" - }}, -}; - -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; - - _impl_.weight_column_.ClearToEmpty(); - _internal_metadata_.Clear<::google::protobuf::UnknownFieldSet>(); -} - -#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) - ABSL_DCHECK_NE(&from, _this); - ::uint32_t cached_has_bits = 0; - (void) cached_has_bits; - - if (!from._internal_weight_column().empty()) { - _this->_internal_set_weight_column(from._internal_weight_column()); - } - _this->_internal_metadata_.MergeFrom<::google::protobuf::UnknownFieldSet>(from._internal_metadata_); -} - -void AggSpec_AggSpecWeighted::CopyFrom(const AggSpec_AggSpecWeighted& from) { -// @@protoc_insertion_point(class_specific_copy_from_start:io.deephaven.proto.backplane.grpc.AggSpec.AggSpecWeighted) - if (&from == this) return; - Clear(); - MergeFrom(from); -} - - -void AggSpec_AggSpecWeighted::InternalSwap(AggSpec_AggSpecWeighted* PROTOBUF_RESTRICT other) { - using std::swap; - auto* arena = GetArena(); - ABSL_DCHECK_EQ(arena, other->GetArena()); - _internal_metadata_.InternalSwap(&other->_internal_metadata_); - ::_pbi::ArenaStringPtr::InternalSwap(&_impl_.weight_column_, &other->_impl_.weight_column_, arena); -} - -::google::protobuf::Metadata AggSpec_AggSpecWeighted::GetMetadata() const { - return ::google::protobuf::Message::GetMetadataImpl(GetClassData()->full()); -} -// =================================================================== - -class AggSpec_AggSpecAbsSum::_Internal { - public: -}; - -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>( - from._internal_metadata_); - - // @@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 - {{ - }}, -}; - - - - - - - - -::google::protobuf::Metadata AggSpec_AggSpecAbsSum::GetMetadata() const { - return ::google::protobuf::internal::ZeroFieldsBase::GetMetadataImpl(GetClassData()->full()); -} -// =================================================================== - -class AggSpec_AggSpecAvg::_Internal { - public: -}; - -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>( - from._internal_metadata_); - - // @@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 - {{ - }}, -}; - - - - - - - - -::google::protobuf::Metadata AggSpec_AggSpecAvg::GetMetadata() const { - return ::google::protobuf::internal::ZeroFieldsBase::GetMetadataImpl(GetClassData()->full()); -} -// =================================================================== - -class AggSpec_AggSpecFirst::_Internal { - public: -}; - -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>( - from._internal_metadata_); - - // @@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 - {{ - }}, -}; - - - - - - - - -::google::protobuf::Metadata AggSpec_AggSpecFirst::GetMetadata() const { - return ::google::protobuf::internal::ZeroFieldsBase::GetMetadataImpl(GetClassData()->full()); -} -// =================================================================== - -class AggSpec_AggSpecFreeze::_Internal { - public: -}; - -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>( - from._internal_metadata_); - - // @@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 - {{ - }}, -}; - - - - - - - - -::google::protobuf::Metadata AggSpec_AggSpecFreeze::GetMetadata() const { - return ::google::protobuf::internal::ZeroFieldsBase::GetMetadataImpl(GetClassData()->full()); -} -// =================================================================== - -class AggSpec_AggSpecGroup::_Internal { - public: -}; - -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>( - from._internal_metadata_); - - // @@protoc_insertion_point(copy_constructor:io.deephaven.proto.backplane.grpc.AggSpec.AggSpecGroup) -} - -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(); -} -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>( - from._internal_metadata_); - - // @@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 - {{ - }}, -}; - - - - - - - - -::google::protobuf::Metadata AggSpec_AggSpecLast::GetMetadata() const { - return ::google::protobuf::internal::ZeroFieldsBase::GetMetadataImpl(GetClassData()->full()); -} -// =================================================================== - -class AggSpec_AggSpecMax::_Internal { - public: -}; - -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>( - from._internal_metadata_); - - // @@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 - {{ - }}, -}; - - - - - - - - -::google::protobuf::Metadata AggSpec_AggSpecMax::GetMetadata() const { - return ::google::protobuf::internal::ZeroFieldsBase::GetMetadataImpl(GetClassData()->full()); -} -// =================================================================== - -class AggSpec_AggSpecMin::_Internal { - public: -}; - -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>( - from._internal_metadata_); - - // @@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 - {{ - }}, -}; - - - - - - - - -::google::protobuf::Metadata AggSpec_AggSpecMin::GetMetadata() const { - return ::google::protobuf::internal::ZeroFieldsBase::GetMetadataImpl(GetClassData()->full()); -} -// =================================================================== - -class AggSpec_AggSpecStd::_Internal { - public: -}; - -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>( - from._internal_metadata_); - - // @@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 - {{ - }}, -}; - - - - - - - - -::google::protobuf::Metadata AggSpec_AggSpecStd::GetMetadata() const { - return ::google::protobuf::internal::ZeroFieldsBase::GetMetadataImpl(GetClassData()->full()); -} -// =================================================================== - -class AggSpec_AggSpecSum::_Internal { - public: -}; - -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>( - from._internal_metadata_); - - // @@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 - {{ - }}, -}; - - - - - - - - -::google::protobuf::Metadata AggSpec_AggSpecSum::GetMetadata() const { - return ::google::protobuf::internal::ZeroFieldsBase::GetMetadataImpl(GetClassData()->full()); -} -// =================================================================== - -class AggSpec_AggSpecVar::_Internal { - public: -}; - -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>( - from._internal_metadata_); - - // @@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 - {{ - }}, -}; - - - - - - - - -::google::protobuf::Metadata AggSpec_AggSpecVar::GetMetadata() const { - 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_); -}; - -void AggSpec::set_allocated_abs_sum(::io::deephaven::proto::backplane::grpc::AggSpec_AggSpecAbsSum* abs_sum) { - ::google::protobuf::Arena* message_arena = GetArena(); - clear_type(); - if (abs_sum) { - ::google::protobuf::Arena* submessage_arena = abs_sum->GetArena(); - if (message_arena != submessage_arena) { - abs_sum = ::google::protobuf::internal::GetOwnedMessage(message_arena, abs_sum, submessage_arena); - } - set_has_abs_sum(); - _impl_.type_.abs_sum_ = abs_sum; - } - // @@protoc_insertion_point(field_set_allocated:io.deephaven.proto.backplane.grpc.AggSpec.abs_sum) -} -void AggSpec::set_allocated_approximate_percentile(::io::deephaven::proto::backplane::grpc::AggSpec_AggSpecApproximatePercentile* approximate_percentile) { - ::google::protobuf::Arena* message_arena = GetArena(); - clear_type(); - if (approximate_percentile) { - ::google::protobuf::Arena* submessage_arena = approximate_percentile->GetArena(); - if (message_arena != submessage_arena) { - approximate_percentile = ::google::protobuf::internal::GetOwnedMessage(message_arena, approximate_percentile, submessage_arena); - } - set_has_approximate_percentile(); - _impl_.type_.approximate_percentile_ = approximate_percentile; - } - // @@protoc_insertion_point(field_set_allocated:io.deephaven.proto.backplane.grpc.AggSpec.approximate_percentile) -} -void AggSpec::set_allocated_avg(::io::deephaven::proto::backplane::grpc::AggSpec_AggSpecAvg* avg) { - ::google::protobuf::Arena* message_arena = GetArena(); - clear_type(); - if (avg) { - ::google::protobuf::Arena* submessage_arena = avg->GetArena(); - if (message_arena != submessage_arena) { - avg = ::google::protobuf::internal::GetOwnedMessage(message_arena, avg, submessage_arena); - } - set_has_avg(); - _impl_.type_.avg_ = avg; - } - // @@protoc_insertion_point(field_set_allocated:io.deephaven.proto.backplane.grpc.AggSpec.avg) -} -void AggSpec::set_allocated_count_distinct(::io::deephaven::proto::backplane::grpc::AggSpec_AggSpecCountDistinct* count_distinct) { - ::google::protobuf::Arena* message_arena = GetArena(); - clear_type(); - if (count_distinct) { - ::google::protobuf::Arena* submessage_arena = count_distinct->GetArena(); - if (message_arena != submessage_arena) { - count_distinct = ::google::protobuf::internal::GetOwnedMessage(message_arena, count_distinct, submessage_arena); - } - set_has_count_distinct(); - _impl_.type_.count_distinct_ = count_distinct; - } - // @@protoc_insertion_point(field_set_allocated:io.deephaven.proto.backplane.grpc.AggSpec.count_distinct) -} -void AggSpec::set_allocated_distinct(::io::deephaven::proto::backplane::grpc::AggSpec_AggSpecDistinct* distinct) { - ::google::protobuf::Arena* message_arena = GetArena(); - clear_type(); - if (distinct) { - ::google::protobuf::Arena* submessage_arena = distinct->GetArena(); - if (message_arena != submessage_arena) { - distinct = ::google::protobuf::internal::GetOwnedMessage(message_arena, distinct, submessage_arena); - } - set_has_distinct(); - _impl_.type_.distinct_ = distinct; - } - // @@protoc_insertion_point(field_set_allocated:io.deephaven.proto.backplane.grpc.AggSpec.distinct) -} -void AggSpec::set_allocated_first(::io::deephaven::proto::backplane::grpc::AggSpec_AggSpecFirst* first) { - ::google::protobuf::Arena* message_arena = GetArena(); - clear_type(); - if (first) { - ::google::protobuf::Arena* submessage_arena = first->GetArena(); - if (message_arena != submessage_arena) { - first = ::google::protobuf::internal::GetOwnedMessage(message_arena, first, submessage_arena); - } - set_has_first(); - _impl_.type_.first_ = first; - } - // @@protoc_insertion_point(field_set_allocated:io.deephaven.proto.backplane.grpc.AggSpec.first) -} -void AggSpec::set_allocated_formula(::io::deephaven::proto::backplane::grpc::AggSpec_AggSpecFormula* formula) { - ::google::protobuf::Arena* message_arena = GetArena(); - clear_type(); - if (formula) { - ::google::protobuf::Arena* submessage_arena = formula->GetArena(); - if (message_arena != submessage_arena) { - formula = ::google::protobuf::internal::GetOwnedMessage(message_arena, formula, submessage_arena); - } - set_has_formula(); - _impl_.type_.formula_ = formula; - } - // @@protoc_insertion_point(field_set_allocated:io.deephaven.proto.backplane.grpc.AggSpec.formula) -} -void AggSpec::set_allocated_freeze(::io::deephaven::proto::backplane::grpc::AggSpec_AggSpecFreeze* freeze) { - ::google::protobuf::Arena* message_arena = GetArena(); - clear_type(); - if (freeze) { - ::google::protobuf::Arena* submessage_arena = freeze->GetArena(); - if (message_arena != submessage_arena) { - freeze = ::google::protobuf::internal::GetOwnedMessage(message_arena, freeze, submessage_arena); - } - set_has_freeze(); - _impl_.type_.freeze_ = freeze; - } - // @@protoc_insertion_point(field_set_allocated:io.deephaven.proto.backplane.grpc.AggSpec.freeze) -} -void AggSpec::set_allocated_group(::io::deephaven::proto::backplane::grpc::AggSpec_AggSpecGroup* group) { - ::google::protobuf::Arena* message_arena = GetArena(); - clear_type(); - if (group) { - ::google::protobuf::Arena* submessage_arena = group->GetArena(); - if (message_arena != submessage_arena) { - group = ::google::protobuf::internal::GetOwnedMessage(message_arena, group, submessage_arena); - } - set_has_group(); - _impl_.type_.group_ = group; - } - // @@protoc_insertion_point(field_set_allocated:io.deephaven.proto.backplane.grpc.AggSpec.group) -} -void AggSpec::set_allocated_last(::io::deephaven::proto::backplane::grpc::AggSpec_AggSpecLast* last) { - ::google::protobuf::Arena* message_arena = GetArena(); - clear_type(); - if (last) { - ::google::protobuf::Arena* submessage_arena = last->GetArena(); - if (message_arena != submessage_arena) { - last = ::google::protobuf::internal::GetOwnedMessage(message_arena, last, submessage_arena); - } - set_has_last(); - _impl_.type_.last_ = last; - } - // @@protoc_insertion_point(field_set_allocated:io.deephaven.proto.backplane.grpc.AggSpec.last) -} -void AggSpec::set_allocated_max(::io::deephaven::proto::backplane::grpc::AggSpec_AggSpecMax* max) { - ::google::protobuf::Arena* message_arena = GetArena(); - clear_type(); - if (max) { - ::google::protobuf::Arena* submessage_arena = max->GetArena(); - if (message_arena != submessage_arena) { - max = ::google::protobuf::internal::GetOwnedMessage(message_arena, max, submessage_arena); - } - set_has_max(); - _impl_.type_.max_ = max; - } - // @@protoc_insertion_point(field_set_allocated:io.deephaven.proto.backplane.grpc.AggSpec.max) -} -void AggSpec::set_allocated_median(::io::deephaven::proto::backplane::grpc::AggSpec_AggSpecMedian* median) { - ::google::protobuf::Arena* message_arena = GetArena(); - clear_type(); - if (median) { - ::google::protobuf::Arena* submessage_arena = median->GetArena(); - if (message_arena != submessage_arena) { - median = ::google::protobuf::internal::GetOwnedMessage(message_arena, median, submessage_arena); - } - set_has_median(); - _impl_.type_.median_ = median; - } - // @@protoc_insertion_point(field_set_allocated:io.deephaven.proto.backplane.grpc.AggSpec.median) -} -void AggSpec::set_allocated_min(::io::deephaven::proto::backplane::grpc::AggSpec_AggSpecMin* min) { - ::google::protobuf::Arena* message_arena = GetArena(); - clear_type(); - if (min) { - ::google::protobuf::Arena* submessage_arena = min->GetArena(); - if (message_arena != submessage_arena) { - min = ::google::protobuf::internal::GetOwnedMessage(message_arena, min, submessage_arena); - } - set_has_min(); - _impl_.type_.min_ = min; - } - // @@protoc_insertion_point(field_set_allocated:io.deephaven.proto.backplane.grpc.AggSpec.min) -} -void AggSpec::set_allocated_percentile(::io::deephaven::proto::backplane::grpc::AggSpec_AggSpecPercentile* percentile) { - ::google::protobuf::Arena* message_arena = GetArena(); - clear_type(); - if (percentile) { - ::google::protobuf::Arena* submessage_arena = percentile->GetArena(); - if (message_arena != submessage_arena) { - percentile = ::google::protobuf::internal::GetOwnedMessage(message_arena, percentile, submessage_arena); - } - set_has_percentile(); - _impl_.type_.percentile_ = percentile; - } - // @@protoc_insertion_point(field_set_allocated:io.deephaven.proto.backplane.grpc.AggSpec.percentile) -} -void AggSpec::set_allocated_sorted_first(::io::deephaven::proto::backplane::grpc::AggSpec_AggSpecSorted* sorted_first) { - ::google::protobuf::Arena* message_arena = GetArena(); - clear_type(); - if (sorted_first) { - ::google::protobuf::Arena* submessage_arena = sorted_first->GetArena(); - if (message_arena != submessage_arena) { - sorted_first = ::google::protobuf::internal::GetOwnedMessage(message_arena, sorted_first, submessage_arena); - } - set_has_sorted_first(); - _impl_.type_.sorted_first_ = sorted_first; - } - // @@protoc_insertion_point(field_set_allocated:io.deephaven.proto.backplane.grpc.AggSpec.sorted_first) -} -void AggSpec::set_allocated_sorted_last(::io::deephaven::proto::backplane::grpc::AggSpec_AggSpecSorted* sorted_last) { - ::google::protobuf::Arena* message_arena = GetArena(); - clear_type(); - if (sorted_last) { - ::google::protobuf::Arena* submessage_arena = sorted_last->GetArena(); - if (message_arena != submessage_arena) { - sorted_last = ::google::protobuf::internal::GetOwnedMessage(message_arena, sorted_last, submessage_arena); - } - set_has_sorted_last(); - _impl_.type_.sorted_last_ = sorted_last; - } - // @@protoc_insertion_point(field_set_allocated:io.deephaven.proto.backplane.grpc.AggSpec.sorted_last) -} -void AggSpec::set_allocated_std(::io::deephaven::proto::backplane::grpc::AggSpec_AggSpecStd* std) { - ::google::protobuf::Arena* message_arena = GetArena(); - clear_type(); - if (std) { - ::google::protobuf::Arena* submessage_arena = std->GetArena(); - if (message_arena != submessage_arena) { - std = ::google::protobuf::internal::GetOwnedMessage(message_arena, std, submessage_arena); - } - set_has_std(); - _impl_.type_.std_ = std; - } - // @@protoc_insertion_point(field_set_allocated:io.deephaven.proto.backplane.grpc.AggSpec.std) -} -void AggSpec::set_allocated_sum(::io::deephaven::proto::backplane::grpc::AggSpec_AggSpecSum* sum) { - ::google::protobuf::Arena* message_arena = GetArena(); - clear_type(); - if (sum) { - ::google::protobuf::Arena* submessage_arena = sum->GetArena(); - if (message_arena != submessage_arena) { - sum = ::google::protobuf::internal::GetOwnedMessage(message_arena, sum, submessage_arena); - } - set_has_sum(); - _impl_.type_.sum_ = sum; - } - // @@protoc_insertion_point(field_set_allocated:io.deephaven.proto.backplane.grpc.AggSpec.sum) -} -void AggSpec::set_allocated_t_digest(::io::deephaven::proto::backplane::grpc::AggSpec_AggSpecTDigest* t_digest) { - ::google::protobuf::Arena* message_arena = GetArena(); - clear_type(); - if (t_digest) { - ::google::protobuf::Arena* submessage_arena = t_digest->GetArena(); - if (message_arena != submessage_arena) { - t_digest = ::google::protobuf::internal::GetOwnedMessage(message_arena, t_digest, submessage_arena); - } - set_has_t_digest(); - _impl_.type_.t_digest_ = t_digest; - } - // @@protoc_insertion_point(field_set_allocated:io.deephaven.proto.backplane.grpc.AggSpec.t_digest) -} -void AggSpec::set_allocated_unique(::io::deephaven::proto::backplane::grpc::AggSpec_AggSpecUnique* unique) { - ::google::protobuf::Arena* message_arena = GetArena(); - clear_type(); - if (unique) { - ::google::protobuf::Arena* submessage_arena = unique->GetArena(); - if (message_arena != submessage_arena) { - unique = ::google::protobuf::internal::GetOwnedMessage(message_arena, unique, submessage_arena); - } - set_has_unique(); - _impl_.type_.unique_ = unique; - } - // @@protoc_insertion_point(field_set_allocated:io.deephaven.proto.backplane.grpc.AggSpec.unique) -} -void AggSpec::set_allocated_weighted_avg(::io::deephaven::proto::backplane::grpc::AggSpec_AggSpecWeighted* weighted_avg) { - ::google::protobuf::Arena* message_arena = GetArena(); - clear_type(); - if (weighted_avg) { - ::google::protobuf::Arena* submessage_arena = weighted_avg->GetArena(); - if (message_arena != submessage_arena) { - weighted_avg = ::google::protobuf::internal::GetOwnedMessage(message_arena, weighted_avg, submessage_arena); - } - set_has_weighted_avg(); - _impl_.type_.weighted_avg_ = weighted_avg; - } - // @@protoc_insertion_point(field_set_allocated:io.deephaven.proto.backplane.grpc.AggSpec.weighted_avg) -} -void AggSpec::set_allocated_weighted_sum(::io::deephaven::proto::backplane::grpc::AggSpec_AggSpecWeighted* weighted_sum) { - ::google::protobuf::Arena* message_arena = GetArena(); - clear_type(); - if (weighted_sum) { - ::google::protobuf::Arena* submessage_arena = weighted_sum->GetArena(); - if (message_arena != submessage_arena) { - weighted_sum = ::google::protobuf::internal::GetOwnedMessage(message_arena, weighted_sum, submessage_arena); - } - set_has_weighted_sum(); - _impl_.type_.weighted_sum_ = weighted_sum; - } - // @@protoc_insertion_point(field_set_allocated:io.deephaven.proto.backplane.grpc.AggSpec.weighted_sum) -} -void AggSpec::set_allocated_var(::io::deephaven::proto::backplane::grpc::AggSpec_AggSpecVar* var) { - ::google::protobuf::Arena* message_arena = GetArena(); - clear_type(); - if (var) { - ::google::protobuf::Arena* submessage_arena = var->GetArena(); - if (message_arena != submessage_arena) { - var = ::google::protobuf::internal::GetOwnedMessage(message_arena, var, submessage_arena); - } - set_has_var(); - _impl_.type_.var_ = var; - } - // @@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 ::io::deephaven::proto::backplane::grpc::AggSpec& from_msg) - : type_{}, - _cached_size_{0}, - _oneof_case_{from._oneof_case_[0]} {} - -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_, from); - switch (type_case()) { - case TYPE_NOT_SET: - break; - case kAbsSum: - _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_ = ::google::protobuf::Message::CopyConstruct<::io::deephaven::proto::backplane::grpc::AggSpec_AggSpecApproximatePercentile>(arena, *from._impl_.type_.approximate_percentile_); - break; - case kAvg: - _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_ = ::google::protobuf::Message::CopyConstruct<::io::deephaven::proto::backplane::grpc::AggSpec_AggSpecCountDistinct>(arena, *from._impl_.type_.count_distinct_); - break; - case kDistinct: - _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_ = ::google::protobuf::Message::CopyConstruct<::io::deephaven::proto::backplane::grpc::AggSpec_AggSpecFirst>(arena, *from._impl_.type_.first_); - break; - case kFormula: - _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_ = ::google::protobuf::Message::CopyConstruct<::io::deephaven::proto::backplane::grpc::AggSpec_AggSpecFreeze>(arena, *from._impl_.type_.freeze_); - break; - case kGroup: - _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_ = ::google::protobuf::Message::CopyConstruct<::io::deephaven::proto::backplane::grpc::AggSpec_AggSpecLast>(arena, *from._impl_.type_.last_); - break; - case kMax: - _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_ = ::google::protobuf::Message::CopyConstruct<::io::deephaven::proto::backplane::grpc::AggSpec_AggSpecMedian>(arena, *from._impl_.type_.median_); - break; - case kMin: - _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_ = ::google::protobuf::Message::CopyConstruct<::io::deephaven::proto::backplane::grpc::AggSpec_AggSpecPercentile>(arena, *from._impl_.type_.percentile_); - break; - case kSortedFirst: - _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_ = ::google::protobuf::Message::CopyConstruct<::io::deephaven::proto::backplane::grpc::AggSpec_AggSpecSorted>(arena, *from._impl_.type_.sorted_last_); - break; - case kStd: - _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_ = ::google::protobuf::Message::CopyConstruct<::io::deephaven::proto::backplane::grpc::AggSpec_AggSpecSum>(arena, *from._impl_.type_.sum_); - break; - case kTDigest: - _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_ = ::google::protobuf::Message::CopyConstruct<::io::deephaven::proto::backplane::grpc::AggSpec_AggSpecUnique>(arena, *from._impl_.type_.unique_); - break; - case kWeightedAvg: - _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_ = ::google::protobuf::Message::CopyConstruct<::io::deephaven::proto::backplane::grpc::AggSpec_AggSpecWeighted>(arena, *from._impl_.type_.weighted_sum_); - break; - case kVar: - _impl_.type_.var_ = ::google::protobuf::Message::CopyConstruct<::io::deephaven::proto::backplane::grpc::AggSpec_AggSpecVar>(arena, *from._impl_.type_.var_); - break; - } - - // @@protoc_insertion_point(copy_constructor:io.deephaven.proto.backplane.grpc.AggSpec) -} -inline PROTOBUF_NDEBUG_INLINE AggSpec::Impl_::Impl_( - ::google::protobuf::internal::InternalVisibility visibility, - ::google::protobuf::Arena* arena) - : type_{}, - _cached_size_{0}, - _oneof_case_{} {} - -inline void AggSpec::SharedCtor(::_pb::Arena* arena) { - new (&_impl_) Impl_(internal_visibility(), arena); -} -AggSpec::~AggSpec() { - // @@protoc_insertion_point(destructor:io.deephaven.proto.backplane.grpc.AggSpec) - _internal_metadata_.Delete<::google::protobuf::UnknownFieldSet>(); - SharedDtor(); -} -inline void AggSpec::SharedDtor() { - ABSL_DCHECK(GetArena() == nullptr); - if (has_type()) { - clear_type(); - } - _impl_.~Impl_(); -} - -void AggSpec::clear_type() { -// @@protoc_insertion_point(one_of_clear_start:io.deephaven.proto.backplane.grpc.AggSpec) - ::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; - } - case TYPE_NOT_SET: { - break; - } - } - _impl_._oneof_case_[0] = TYPE_NOT_SET; -} - - -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_ = { - { - 0, // no _has_bits_ - 0, // no _extensions_ - 23, 0, // max_field_number, fast_idx_mask - offsetof(decltype(_table_), field_lookup_table), - 4286578688, // skipmap - offsetof(decltype(_table_), field_entries), - 23, // num_field_entries - 23, // num_aux_entries - offsetof(decltype(_table_), 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>(), // to_prefetch - #endif // PROTOBUF_PREFETCH_PARSE_TABLE - }, {{ - {::_pbi::TcParser::MiniParse, {}}, - }}, {{ - 65535, 65535 - }}, {{ - // .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::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::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)}, - // .io.deephaven.proto.backplane.grpc.AggSpec.AggSpecDistinct distinct = 5; - {PROTOBUF_FIELD_OFFSET(AggSpec, _impl_.type_.distinct_), _Internal::kOneofCaseOffset + 0, 4, - (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::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::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::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::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::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::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)}, - // .io.deephaven.proto.backplane.grpc.AggSpec.AggSpecSorted sorted_first = 15; - {PROTOBUF_FIELD_OFFSET(AggSpec, _impl_.type_.sorted_first_), _Internal::kOneofCaseOffset + 0, 14, - (0 | ::_fl::kFcOneof | ::_fl::kMessage | ::_fl::kTvTable)}, - // .io.deephaven.proto.backplane.grpc.AggSpec.AggSpecSorted sorted_last = 16; - {PROTOBUF_FIELD_OFFSET(AggSpec, _impl_.type_.sorted_last_), _Internal::kOneofCaseOffset + 0, 15, - (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::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::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)}, - // .io.deephaven.proto.backplane.grpc.AggSpec.AggSpecUnique unique = 20; - {PROTOBUF_FIELD_OFFSET(AggSpec, _impl_.type_.unique_), _Internal::kOneofCaseOffset + 0, 19, - (0 | ::_fl::kFcOneof | ::_fl::kMessage | ::_fl::kTvTable)}, - // .io.deephaven.proto.backplane.grpc.AggSpec.AggSpecWeighted weighted_avg = 21; - {PROTOBUF_FIELD_OFFSET(AggSpec, _impl_.type_.weighted_avg_), _Internal::kOneofCaseOffset + 0, 20, - (0 | ::_fl::kFcOneof | ::_fl::kMessage | ::_fl::kTvTable)}, - // .io.deephaven.proto.backplane.grpc.AggSpec.AggSpecWeighted weighted_sum = 22; - {PROTOBUF_FIELD_OFFSET(AggSpec, _impl_.type_.weighted_sum_), _Internal::kOneofCaseOffset + 0, 21, - (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::kTvTable)}, - }}, {{ - {::_pbi::TcParser::GetTable<::io::deephaven::proto::backplane::grpc::AggSpec_AggSpecAbsSum>()}, - {::_pbi::TcParser::GetTable<::io::deephaven::proto::backplane::grpc::AggSpec_AggSpecApproximatePercentile>()}, - {::_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::TcParser::GetTable<::io::deephaven::proto::backplane::grpc::AggSpec_AggSpecFirst>()}, - {::_pbi::TcParser::GetTable<::io::deephaven::proto::backplane::grpc::AggSpec_AggSpecFormula>()}, - {::_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::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::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::TcParser::GetTable<::io::deephaven::proto::backplane::grpc::AggSpec_AggSpecVar>()}, - }}, {{ - }}, -}; - -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; - // Prevent compiler warnings about cached_has_bits being unused - (void) cached_has_bits; - - 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; - } - - 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_); -} - -void AggSpec::CopyFrom(const AggSpec& from) { -// @@protoc_insertion_point(class_specific_copy_from_start:io.deephaven.proto.backplane.grpc.AggSpec) - if (&from == this) return; - Clear(); - MergeFrom(from); -} - - -void AggSpec::InternalSwap(AggSpec* PROTOBUF_RESTRICT other) { - using std::swap; - _internal_metadata_.InternalSwap(&other->_internal_metadata_); - swap(_impl_.type_, other->_impl_.type_); - swap(_impl_._oneof_case_[0], other->_impl_._oneof_case_[0]); -} - -::google::protobuf::Metadata AggSpec::GetMetadata() const { - return ::google::protobuf::Message::GetMetadataImpl(GetClassData()->full()); -} -// =================================================================== - -class AggregateRequest::_Internal { - public: - using HasBits = - decltype(std::declval()._impl_._has_bits_); - static constexpr ::int32_t kHasBitsOffset = - 8 * PROTOBUF_FIELD_OFFSET(AggregateRequest, _impl_._has_bits_); -}; - -void AggregateRequest::clear_result_id() { - ::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 ::io::deephaven::proto::backplane::grpc::AggregateRequest& from_msg) - : _has_bits_{from._has_bits_}, - _cached_size_{0}, - aggregations_{visibility, arena, from.aggregations_}, - group_by_columns_{visibility, arena, from.group_by_columns_} {} - -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_, from); - ::uint32_t cached_has_bits = _impl_._has_bits_[0]; - _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) -} -inline PROTOBUF_NDEBUG_INLINE AggregateRequest::Impl_::Impl_( - ::google::protobuf::internal::InternalVisibility visibility, - ::google::protobuf::Arena* arena) - : _cached_size_{0}, - aggregations_{visibility, arena}, - group_by_columns_{visibility, arena} {} - -inline void AggregateRequest::SharedCtor(::_pb::Arena* arena) { - new (&_impl_) Impl_(internal_visibility(), arena); - ::memset(reinterpret_cast(&_impl_) + - offsetof(Impl_, result_id_), - 0, - offsetof(Impl_, preserve_empty_) - - offsetof(Impl_, result_id_) + - sizeof(Impl_::preserve_empty_)); -} -AggregateRequest::~AggregateRequest() { - // @@protoc_insertion_point(destructor:io.deephaven.proto.backplane.grpc.AggregateRequest) - _internal_metadata_.Delete<::google::protobuf::UnknownFieldSet>(); - SharedDtor(); -} -inline void AggregateRequest::SharedDtor() { - ABSL_DCHECK(GetArena() == nullptr); - delete _impl_.result_id_; - delete _impl_.source_id_; - delete _impl_.initial_groups_id_; - _impl_.~Impl_(); -} - -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_ = { - { - PROTOBUF_FIELD_OFFSET(AggregateRequest, _impl_._has_bits_), - 0, // no _extensions_ - 6, 56, // max_field_number, fast_idx_mask - offsetof(decltype(_table_), field_lookup_table), - 4294967232, // skipmap - offsetof(decltype(_table_), field_entries), - 6, // num_field_entries - 4, // num_aux_entries - offsetof(decltype(_table_), 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::AggregateRequest>(), // to_prefetch - #endif // PROTOBUF_PREFETCH_PARSE_TABLE - }, {{ - {::_pbi::TcParser::MiniParse, {}}, - // .io.deephaven.proto.backplane.grpc.Ticket result_id = 1; - {::_pbi::TcParser::FastMtS1, - {10, 0, 0, PROTOBUF_FIELD_OFFSET(AggregateRequest, _impl_.result_id_)}}, - // .io.deephaven.proto.backplane.grpc.TableReference source_id = 2; - {::_pbi::TcParser::FastMtS1, - {18, 1, 1, PROTOBUF_FIELD_OFFSET(AggregateRequest, _impl_.source_id_)}}, - // .io.deephaven.proto.backplane.grpc.TableReference initial_groups_id = 3; - {::_pbi::TcParser::FastMtS1, - {26, 2, 2, PROTOBUF_FIELD_OFFSET(AggregateRequest, _impl_.initial_groups_id_)}}, - // bool preserve_empty = 4; - {::_pbi::TcParser::SingularVarintNoZag1(), - {32, 63, 0, PROTOBUF_FIELD_OFFSET(AggregateRequest, _impl_.preserve_empty_)}}, - // repeated .io.deephaven.proto.backplane.grpc.Aggregation aggregations = 5; - {::_pbi::TcParser::FastMtR1, - {42, 63, 3, PROTOBUF_FIELD_OFFSET(AggregateRequest, _impl_.aggregations_)}}, - // repeated string group_by_columns = 6; - {::_pbi::TcParser::FastUR1, - {50, 63, 0, PROTOBUF_FIELD_OFFSET(AggregateRequest, _impl_.group_by_columns_)}}, - {::_pbi::TcParser::MiniParse, {}}, - }}, {{ - 65535, 65535 - }}, {{ - // .io.deephaven.proto.backplane.grpc.Ticket result_id = 1; - {PROTOBUF_FIELD_OFFSET(AggregateRequest, _impl_.result_id_), _Internal::kHasBitsOffset + 0, 0, - (0 | ::_fl::kFcOptional | ::_fl::kMessage | ::_fl::kTvTable)}, - // .io.deephaven.proto.backplane.grpc.TableReference source_id = 2; - {PROTOBUF_FIELD_OFFSET(AggregateRequest, _impl_.source_id_), _Internal::kHasBitsOffset + 1, 1, - (0 | ::_fl::kFcOptional | ::_fl::kMessage | ::_fl::kTvTable)}, - // .io.deephaven.proto.backplane.grpc.TableReference initial_groups_id = 3; - {PROTOBUF_FIELD_OFFSET(AggregateRequest, _impl_.initial_groups_id_), _Internal::kHasBitsOffset + 2, 2, - (0 | ::_fl::kFcOptional | ::_fl::kMessage | ::_fl::kTvTable)}, - // bool preserve_empty = 4; - {PROTOBUF_FIELD_OFFSET(AggregateRequest, _impl_.preserve_empty_), -1, 0, - (0 | ::_fl::kFcSingular | ::_fl::kBool)}, - // repeated .io.deephaven.proto.backplane.grpc.Aggregation aggregations = 5; - {PROTOBUF_FIELD_OFFSET(AggregateRequest, _impl_.aggregations_), -1, 3, - (0 | ::_fl::kFcRepeated | ::_fl::kMessage | ::_fl::kTvTable)}, - // repeated string group_by_columns = 6; - {PROTOBUF_FIELD_OFFSET(AggregateRequest, _impl_.group_by_columns_), -1, 0, - (0 | ::_fl::kFcRepeated | ::_fl::kUtf8String | ::_fl::kRepSString)}, - }}, {{ - {::_pbi::TcParser::GetTable<::io::deephaven::proto::backplane::grpc::Ticket>()}, - {::_pbi::TcParser::GetTable<::io::deephaven::proto::backplane::grpc::TableReference>()}, - {::_pbi::TcParser::GetTable<::io::deephaven::proto::backplane::grpc::TableReference>()}, - {::_pbi::TcParser::GetTable<::io::deephaven::proto::backplane::grpc::Aggregation>()}, - }}, {{ - "\62\0\0\0\0\0\20\0" - "io.deephaven.proto.backplane.grpc.AggregateRequest" - "group_by_columns" - }}, -}; - -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; - - _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>(); -} - -#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; - (void) cached_has_bits; - - _this->_internal_mutable_aggregations()->MergeFrom( - from._internal_aggregations()); - _this->_internal_mutable_group_by_columns()->MergeFrom(from._internal_group_by_columns()); - cached_has_bits = from._impl_._has_bits_[0]; - if (cached_has_bits & 0x00000007u) { - 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 (cached_has_bits & 0x00000002u) { - 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) { - 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->_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_); -} - -void AggregateRequest::CopyFrom(const AggregateRequest& from) { -// @@protoc_insertion_point(class_specific_copy_from_start:io.deephaven.proto.backplane.grpc.AggregateRequest) - if (&from == this) return; - Clear(); - MergeFrom(from); -} - - -void AggregateRequest::InternalSwap(AggregateRequest* PROTOBUF_RESTRICT other) { - using std::swap; - _internal_metadata_.InternalSwap(&other->_internal_metadata_); - swap(_impl_._has_bits_[0], other->_impl_._has_bits_[0]); - _impl_.aggregations_.InternalSwap(&other->_impl_.aggregations_); - _impl_.group_by_columns_.InternalSwap(&other->_impl_.group_by_columns_); - ::google::protobuf::internal::memswap< - PROTOBUF_FIELD_OFFSET(AggregateRequest, _impl_.preserve_empty_) - + sizeof(AggregateRequest::_impl_.preserve_empty_) - - PROTOBUF_FIELD_OFFSET(AggregateRequest, _impl_.result_id_)>( - reinterpret_cast(&_impl_.result_id_), - reinterpret_cast(&other->_impl_.result_id_)); -} - -::google::protobuf::Metadata AggregateRequest::GetMetadata() const { - return ::google::protobuf::Message::GetMetadataImpl(GetClassData()->full()); -} -// =================================================================== - -class Aggregation_AggregationColumns::_Internal { - public: - using HasBits = - decltype(std::declval()._impl_._has_bits_); - static constexpr ::int32_t kHasBitsOffset = - 8 * PROTOBUF_FIELD_OFFSET(Aggregation_AggregationColumns, _impl_._has_bits_); -}; - -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 ::io::deephaven::proto::backplane::grpc::Aggregation_AggregationColumns& from_msg) - : _has_bits_{from._has_bits_}, - _cached_size_{0}, - match_pairs_{visibility, arena, from.match_pairs_} {} - -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_, from); - ::uint32_t cached_has_bits = _impl_._has_bits_[0]; - _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) -} -inline PROTOBUF_NDEBUG_INLINE Aggregation_AggregationColumns::Impl_::Impl_( - ::google::protobuf::internal::InternalVisibility visibility, - ::google::protobuf::Arena* arena) - : _cached_size_{0}, - match_pairs_{visibility, arena} {} - -inline void Aggregation_AggregationColumns::SharedCtor(::_pb::Arena* arena) { - new (&_impl_) Impl_(internal_visibility(), arena); - _impl_.spec_ = {}; -} -Aggregation_AggregationColumns::~Aggregation_AggregationColumns() { - // @@protoc_insertion_point(destructor:io.deephaven.proto.backplane.grpc.Aggregation.AggregationColumns) - _internal_metadata_.Delete<::google::protobuf::UnknownFieldSet>(); - SharedDtor(); -} -inline void Aggregation_AggregationColumns::SharedDtor() { - ABSL_DCHECK(GetArena() == nullptr); - delete _impl_.spec_; - _impl_.~Impl_(); -} - -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_ = { - { - PROTOBUF_FIELD_OFFSET(Aggregation_AggregationColumns, _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::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, - {18, 63, 0, PROTOBUF_FIELD_OFFSET(Aggregation_AggregationColumns, _impl_.match_pairs_)}}, - // .io.deephaven.proto.backplane.grpc.AggSpec spec = 1; - {::_pbi::TcParser::FastMtS1, - {10, 0, 0, PROTOBUF_FIELD_OFFSET(Aggregation_AggregationColumns, _impl_.spec_)}}, - }}, {{ - 65535, 65535 - }}, {{ - // .io.deephaven.proto.backplane.grpc.AggSpec spec = 1; - {PROTOBUF_FIELD_OFFSET(Aggregation_AggregationColumns, _impl_.spec_), _Internal::kHasBitsOffset + 0, 0, - (0 | ::_fl::kFcOptional | ::_fl::kMessage | ::_fl::kTvTable)}, - // repeated string match_pairs = 2; - {PROTOBUF_FIELD_OFFSET(Aggregation_AggregationColumns, _impl_.match_pairs_), -1, 0, - (0 | ::_fl::kFcRepeated | ::_fl::kUtf8String | ::_fl::kRepSString)}, - }}, {{ - {::_pbi::TcParser::GetTable<::io::deephaven::proto::backplane::grpc::AggSpec>()}, - }}, {{ - "\100\0\13\0\0\0\0\0" - "io.deephaven.proto.backplane.grpc.Aggregation.AggregationColumns" - "match_pairs" - }}, -}; - -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; - - _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>(); -} - -#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()); - 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_); -} - -void Aggregation_AggregationColumns::CopyFrom(const Aggregation_AggregationColumns& from) { -// @@protoc_insertion_point(class_specific_copy_from_start:io.deephaven.proto.backplane.grpc.Aggregation.AggregationColumns) - if (&from == this) return; - Clear(); - MergeFrom(from); -} - - -void Aggregation_AggregationColumns::InternalSwap(Aggregation_AggregationColumns* PROTOBUF_RESTRICT other) { - using std::swap; - _internal_metadata_.InternalSwap(&other->_internal_metadata_); - swap(_impl_._has_bits_[0], other->_impl_._has_bits_[0]); - _impl_.match_pairs_.InternalSwap(&other->_impl_.match_pairs_); - swap(_impl_.spec_, other->_impl_.spec_); -} - -::google::protobuf::Metadata Aggregation_AggregationColumns::GetMetadata() const { - return ::google::protobuf::Message::GetMetadataImpl(GetClassData()->full()); -} -// =================================================================== - -class Aggregation_AggregationCount::_Internal { - public: -}; - -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 ::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_, from); - - // @@protoc_insertion_point(copy_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) - : column_name_(arena), - _cached_size_{0} {} - -inline void Aggregation_AggregationCount::SharedCtor(::_pb::Arena* arena) { - new (&_impl_) Impl_(internal_visibility(), arena); -} -Aggregation_AggregationCount::~Aggregation_AggregationCount() { - // @@protoc_insertion_point(destructor:io.deephaven.proto.backplane.grpc.Aggregation.AggregationCount) - _internal_metadata_.Delete<::google::protobuf::UnknownFieldSet>(); - SharedDtor(); -} -inline void Aggregation_AggregationCount::SharedDtor() { - ABSL_DCHECK(GetArena() == nullptr); - _impl_.column_name_.Destroy(); - _impl_.~Impl_(); -} - -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_ = { - { - 0, // no _has_bits_ - 0, // no _extensions_ - 1, 0, // max_field_number, fast_idx_mask - offsetof(decltype(_table_), field_lookup_table), - 4294967294, // skipmap - offsetof(decltype(_table_), field_entries), - 1, // 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::Aggregation_AggregationCount>(), // to_prefetch - #endif // PROTOBUF_PREFETCH_PARSE_TABLE - }, {{ - // string column_name = 1; - {::_pbi::TcParser::FastUS1, - {10, 63, 0, PROTOBUF_FIELD_OFFSET(Aggregation_AggregationCount, _impl_.column_name_)}}, - }}, {{ - 65535, 65535 - }}, {{ - // string column_name = 1; - {PROTOBUF_FIELD_OFFSET(Aggregation_AggregationCount, _impl_.column_name_), 0, 0, - (0 | ::_fl::kFcSingular | ::_fl::kUtf8String | ::_fl::kRepAString)}, - }}, - // no aux_entries - {{ - "\76\13\0\0\0\0\0\0" - "io.deephaven.proto.backplane.grpc.Aggregation.AggregationCount" - "column_name" - }}, -}; - -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; - - _impl_.column_name_.ClearToEmpty(); - _internal_metadata_.Clear<::google::protobuf::UnknownFieldSet>(); -} - -#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) - ABSL_DCHECK_NE(&from, _this); - ::uint32_t cached_has_bits = 0; - (void) cached_has_bits; - - if (!from._internal_column_name().empty()) { - _this->_internal_set_column_name(from._internal_column_name()); - } - _this->_internal_metadata_.MergeFrom<::google::protobuf::UnknownFieldSet>(from._internal_metadata_); -} - -void Aggregation_AggregationCount::CopyFrom(const Aggregation_AggregationCount& from) { -// @@protoc_insertion_point(class_specific_copy_from_start:io.deephaven.proto.backplane.grpc.Aggregation.AggregationCount) - if (&from == this) return; - Clear(); - MergeFrom(from); -} - - -void Aggregation_AggregationCount::InternalSwap(Aggregation_AggregationCount* PROTOBUF_RESTRICT other) { - using std::swap; - auto* arena = GetArena(); - ABSL_DCHECK_EQ(arena, other->GetArena()); - _internal_metadata_.InternalSwap(&other->_internal_metadata_); - ::_pbi::ArenaStringPtr::InternalSwap(&_impl_.column_name_, &other->_impl_.column_name_, arena); -} - -::google::protobuf::Metadata Aggregation_AggregationCount::GetMetadata() const { - return ::google::protobuf::Message::GetMetadataImpl(GetClassData()->full()); -} -// =================================================================== - -class Aggregation_AggregationRowKey::_Internal { - public: -}; - -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 ::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_, from); - - // @@protoc_insertion_point(copy_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) - : column_name_(arena), - _cached_size_{0} {} - -inline void Aggregation_AggregationRowKey::SharedCtor(::_pb::Arena* arena) { - new (&_impl_) Impl_(internal_visibility(), arena); -} -Aggregation_AggregationRowKey::~Aggregation_AggregationRowKey() { - // @@protoc_insertion_point(destructor:io.deephaven.proto.backplane.grpc.Aggregation.AggregationRowKey) - _internal_metadata_.Delete<::google::protobuf::UnknownFieldSet>(); - SharedDtor(); -} -inline void Aggregation_AggregationRowKey::SharedDtor() { - ABSL_DCHECK(GetArena() == nullptr); - _impl_.column_name_.Destroy(); - _impl_.~Impl_(); -} - -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_ = { - { - 0, // no _has_bits_ - 0, // no _extensions_ - 1, 0, // max_field_number, fast_idx_mask - offsetof(decltype(_table_), field_lookup_table), - 4294967294, // skipmap - offsetof(decltype(_table_), field_entries), - 1, // 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::Aggregation_AggregationRowKey>(), // to_prefetch - #endif // PROTOBUF_PREFETCH_PARSE_TABLE - }, {{ - // string column_name = 1; - {::_pbi::TcParser::FastUS1, - {10, 63, 0, PROTOBUF_FIELD_OFFSET(Aggregation_AggregationRowKey, _impl_.column_name_)}}, - }}, {{ - 65535, 65535 - }}, {{ - // string column_name = 1; - {PROTOBUF_FIELD_OFFSET(Aggregation_AggregationRowKey, _impl_.column_name_), 0, 0, - (0 | ::_fl::kFcSingular | ::_fl::kUtf8String | ::_fl::kRepAString)}, - }}, - // no aux_entries - {{ - "\77\13\0\0\0\0\0\0" - "io.deephaven.proto.backplane.grpc.Aggregation.AggregationRowKey" - "column_name" - }}, -}; - -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; - - _impl_.column_name_.ClearToEmpty(); - _internal_metadata_.Clear<::google::protobuf::UnknownFieldSet>(); -} - -#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) - ABSL_DCHECK_NE(&from, _this); - ::uint32_t cached_has_bits = 0; - (void) cached_has_bits; - - if (!from._internal_column_name().empty()) { - _this->_internal_set_column_name(from._internal_column_name()); - } - _this->_internal_metadata_.MergeFrom<::google::protobuf::UnknownFieldSet>(from._internal_metadata_); -} - -void Aggregation_AggregationRowKey::CopyFrom(const Aggregation_AggregationRowKey& from) { -// @@protoc_insertion_point(class_specific_copy_from_start:io.deephaven.proto.backplane.grpc.Aggregation.AggregationRowKey) - if (&from == this) return; - Clear(); - MergeFrom(from); -} - - -void Aggregation_AggregationRowKey::InternalSwap(Aggregation_AggregationRowKey* PROTOBUF_RESTRICT other) { - using std::swap; - auto* arena = GetArena(); - ABSL_DCHECK_EQ(arena, other->GetArena()); - _internal_metadata_.InternalSwap(&other->_internal_metadata_); - ::_pbi::ArenaStringPtr::InternalSwap(&_impl_.column_name_, &other->_impl_.column_name_, arena); -} - -::google::protobuf::Metadata Aggregation_AggregationRowKey::GetMetadata() const { - return ::google::protobuf::Message::GetMetadataImpl(GetClassData()->full()); -} -// =================================================================== - -class Aggregation_AggregationPartition::_Internal { - public: -}; - -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 ::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_, from); - _impl_.include_group_by_columns_ = from._impl_.include_group_by_columns_; - - // @@protoc_insertion_point(copy_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) - : column_name_(arena), - _cached_size_{0} {} - -inline void Aggregation_AggregationPartition::SharedCtor(::_pb::Arena* arena) { - new (&_impl_) Impl_(internal_visibility(), arena); - _impl_.include_group_by_columns_ = {}; -} -Aggregation_AggregationPartition::~Aggregation_AggregationPartition() { - // @@protoc_insertion_point(destructor:io.deephaven.proto.backplane.grpc.Aggregation.AggregationPartition) - _internal_metadata_.Delete<::google::protobuf::UnknownFieldSet>(); - SharedDtor(); -} -inline void Aggregation_AggregationPartition::SharedDtor() { - ABSL_DCHECK(GetArena() == nullptr); - _impl_.column_name_.Destroy(); - _impl_.~Impl_(); -} - -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_ = { - { - 0, // no _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 - 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::Aggregation_AggregationPartition>(), // to_prefetch - #endif // PROTOBUF_PREFETCH_PARSE_TABLE - }, {{ - // bool include_group_by_columns = 2; - {::_pbi::TcParser::SingularVarintNoZag1(), - {16, 63, 0, PROTOBUF_FIELD_OFFSET(Aggregation_AggregationPartition, _impl_.include_group_by_columns_)}}, - // string column_name = 1; - {::_pbi::TcParser::FastUS1, - {10, 63, 0, PROTOBUF_FIELD_OFFSET(Aggregation_AggregationPartition, _impl_.column_name_)}}, - }}, {{ - 65535, 65535 - }}, {{ - // string column_name = 1; - {PROTOBUF_FIELD_OFFSET(Aggregation_AggregationPartition, _impl_.column_name_), 0, 0, - (0 | ::_fl::kFcSingular | ::_fl::kUtf8String | ::_fl::kRepAString)}, - // bool include_group_by_columns = 2; - {PROTOBUF_FIELD_OFFSET(Aggregation_AggregationPartition, _impl_.include_group_by_columns_), 0, 0, - (0 | ::_fl::kFcSingular | ::_fl::kBool)}, - }}, - // no aux_entries - {{ - "\102\13\0\0\0\0\0\0" - "io.deephaven.proto.backplane.grpc.Aggregation.AggregationPartition" - "column_name" - }}, -}; - -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; - - _impl_.column_name_.ClearToEmpty(); - _impl_.include_group_by_columns_ = false; - _internal_metadata_.Clear<::google::protobuf::UnknownFieldSet>(); -} - -#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) - ABSL_DCHECK_NE(&from, _this); - ::uint32_t cached_has_bits = 0; - (void) cached_has_bits; - - if (!from._internal_column_name().empty()) { - _this->_internal_set_column_name(from._internal_column_name()); - } - if (from._internal_include_group_by_columns() != 0) { - _this->_impl_.include_group_by_columns_ = from._impl_.include_group_by_columns_; - } - _this->_internal_metadata_.MergeFrom<::google::protobuf::UnknownFieldSet>(from._internal_metadata_); -} - -void Aggregation_AggregationPartition::CopyFrom(const Aggregation_AggregationPartition& from) { -// @@protoc_insertion_point(class_specific_copy_from_start:io.deephaven.proto.backplane.grpc.Aggregation.AggregationPartition) - if (&from == this) return; - Clear(); - MergeFrom(from); -} - - -void Aggregation_AggregationPartition::InternalSwap(Aggregation_AggregationPartition* PROTOBUF_RESTRICT other) { - using std::swap; - auto* arena = GetArena(); - ABSL_DCHECK_EQ(arena, other->GetArena()); - _internal_metadata_.InternalSwap(&other->_internal_metadata_); - ::_pbi::ArenaStringPtr::InternalSwap(&_impl_.column_name_, &other->_impl_.column_name_, arena); - swap(_impl_.include_group_by_columns_, other->_impl_.include_group_by_columns_); -} - -::google::protobuf::Metadata Aggregation_AggregationPartition::GetMetadata() const { - 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_); -}; - -void Aggregation::set_allocated_columns(::io::deephaven::proto::backplane::grpc::Aggregation_AggregationColumns* columns) { - ::google::protobuf::Arena* message_arena = GetArena(); - clear_type(); - if (columns) { - ::google::protobuf::Arena* submessage_arena = columns->GetArena(); - if (message_arena != submessage_arena) { - columns = ::google::protobuf::internal::GetOwnedMessage(message_arena, columns, submessage_arena); - } - set_has_columns(); - _impl_.type_.columns_ = columns; - } - // @@protoc_insertion_point(field_set_allocated:io.deephaven.proto.backplane.grpc.Aggregation.columns) -} -void Aggregation::set_allocated_count(::io::deephaven::proto::backplane::grpc::Aggregation_AggregationCount* count) { - ::google::protobuf::Arena* message_arena = GetArena(); - clear_type(); - if (count) { - ::google::protobuf::Arena* submessage_arena = count->GetArena(); - if (message_arena != submessage_arena) { - count = ::google::protobuf::internal::GetOwnedMessage(message_arena, count, submessage_arena); - } - set_has_count(); - _impl_.type_.count_ = count; - } - // @@protoc_insertion_point(field_set_allocated:io.deephaven.proto.backplane.grpc.Aggregation.count) -} -void Aggregation::set_allocated_first_row_key(::io::deephaven::proto::backplane::grpc::Aggregation_AggregationRowKey* first_row_key) { - ::google::protobuf::Arena* message_arena = GetArena(); - clear_type(); - if (first_row_key) { - ::google::protobuf::Arena* submessage_arena = first_row_key->GetArena(); - if (message_arena != submessage_arena) { - first_row_key = ::google::protobuf::internal::GetOwnedMessage(message_arena, first_row_key, submessage_arena); - } - set_has_first_row_key(); - _impl_.type_.first_row_key_ = first_row_key; - } - // @@protoc_insertion_point(field_set_allocated:io.deephaven.proto.backplane.grpc.Aggregation.first_row_key) -} -void Aggregation::set_allocated_last_row_key(::io::deephaven::proto::backplane::grpc::Aggregation_AggregationRowKey* last_row_key) { - ::google::protobuf::Arena* message_arena = GetArena(); - clear_type(); - if (last_row_key) { - ::google::protobuf::Arena* submessage_arena = last_row_key->GetArena(); - if (message_arena != submessage_arena) { - last_row_key = ::google::protobuf::internal::GetOwnedMessage(message_arena, last_row_key, submessage_arena); - } - set_has_last_row_key(); - _impl_.type_.last_row_key_ = last_row_key; - } - // @@protoc_insertion_point(field_set_allocated:io.deephaven.proto.backplane.grpc.Aggregation.last_row_key) -} -void Aggregation::set_allocated_partition(::io::deephaven::proto::backplane::grpc::Aggregation_AggregationPartition* partition) { - ::google::protobuf::Arena* message_arena = GetArena(); - clear_type(); - if (partition) { - ::google::protobuf::Arena* submessage_arena = partition->GetArena(); - if (message_arena != submessage_arena) { - partition = ::google::protobuf::internal::GetOwnedMessage(message_arena, partition, submessage_arena); - } - set_has_partition(); - _impl_.type_.partition_ = partition; - } - // @@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 ::io::deephaven::proto::backplane::grpc::Aggregation& from_msg) - : type_{}, - _cached_size_{0}, - _oneof_case_{from._oneof_case_[0]} {} - -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_, from); - switch (type_case()) { - case TYPE_NOT_SET: - break; - case kColumns: - _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_ = ::google::protobuf::Message::CopyConstruct<::io::deephaven::proto::backplane::grpc::Aggregation_AggregationCount>(arena, *from._impl_.type_.count_); - break; - case kFirstRowKey: - _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_ = ::google::protobuf::Message::CopyConstruct<::io::deephaven::proto::backplane::grpc::Aggregation_AggregationRowKey>(arena, *from._impl_.type_.last_row_key_); - break; - case kPartition: - _impl_.type_.partition_ = ::google::protobuf::Message::CopyConstruct<::io::deephaven::proto::backplane::grpc::Aggregation_AggregationPartition>(arena, *from._impl_.type_.partition_); - break; - } - - // @@protoc_insertion_point(copy_constructor:io.deephaven.proto.backplane.grpc.Aggregation) -} -inline PROTOBUF_NDEBUG_INLINE Aggregation::Impl_::Impl_( - ::google::protobuf::internal::InternalVisibility visibility, - ::google::protobuf::Arena* arena) - : type_{}, - _cached_size_{0}, - _oneof_case_{} {} - -inline void Aggregation::SharedCtor(::_pb::Arena* arena) { - new (&_impl_) Impl_(internal_visibility(), arena); -} -Aggregation::~Aggregation() { - // @@protoc_insertion_point(destructor:io.deephaven.proto.backplane.grpc.Aggregation) - _internal_metadata_.Delete<::google::protobuf::UnknownFieldSet>(); - SharedDtor(); -} -inline void Aggregation::SharedDtor() { - ABSL_DCHECK(GetArena() == nullptr); - if (has_type()) { - clear_type(); - } - _impl_.~Impl_(); -} - -void Aggregation::clear_type() { -// @@protoc_insertion_point(one_of_clear_start:io.deephaven.proto.backplane.grpc.Aggregation) - ::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; - } - case TYPE_NOT_SET: { - break; - } - } - _impl_._oneof_case_[0] = TYPE_NOT_SET; -} - - -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_ = { - { - 0, // no _has_bits_ - 0, // no _extensions_ - 5, 0, // max_field_number, fast_idx_mask - offsetof(decltype(_table_), field_lookup_table), - 4294967264, // skipmap - offsetof(decltype(_table_), field_entries), - 5, // num_field_entries - 5, // num_aux_entries - offsetof(decltype(_table_), 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::Aggregation>(), // to_prefetch - #endif // PROTOBUF_PREFETCH_PARSE_TABLE - }, {{ - {::_pbi::TcParser::MiniParse, {}}, - }}, {{ - 65535, 65535 - }}, {{ - // .io.deephaven.proto.backplane.grpc.Aggregation.AggregationColumns columns = 1; - {PROTOBUF_FIELD_OFFSET(Aggregation, _impl_.type_.columns_), _Internal::kOneofCaseOffset + 0, 0, - (0 | ::_fl::kFcOneof | ::_fl::kMessage | ::_fl::kTvTable)}, - // .io.deephaven.proto.backplane.grpc.Aggregation.AggregationCount count = 2; - {PROTOBUF_FIELD_OFFSET(Aggregation, _impl_.type_.count_), _Internal::kOneofCaseOffset + 0, 1, - (0 | ::_fl::kFcOneof | ::_fl::kMessage | ::_fl::kTvTable)}, - // .io.deephaven.proto.backplane.grpc.Aggregation.AggregationRowKey first_row_key = 3; - {PROTOBUF_FIELD_OFFSET(Aggregation, _impl_.type_.first_row_key_), _Internal::kOneofCaseOffset + 0, 2, - (0 | ::_fl::kFcOneof | ::_fl::kMessage | ::_fl::kTvTable)}, - // .io.deephaven.proto.backplane.grpc.Aggregation.AggregationRowKey last_row_key = 4; - {PROTOBUF_FIELD_OFFSET(Aggregation, _impl_.type_.last_row_key_), _Internal::kOneofCaseOffset + 0, 3, - (0 | ::_fl::kFcOneof | ::_fl::kMessage | ::_fl::kTvTable)}, - // .io.deephaven.proto.backplane.grpc.Aggregation.AggregationPartition partition = 5; - {PROTOBUF_FIELD_OFFSET(Aggregation, _impl_.type_.partition_), _Internal::kOneofCaseOffset + 0, 4, - (0 | ::_fl::kFcOneof | ::_fl::kMessage | ::_fl::kTvTable)}, - }}, {{ - {::_pbi::TcParser::GetTable<::io::deephaven::proto::backplane::grpc::Aggregation_AggregationColumns>()}, - {::_pbi::TcParser::GetTable<::io::deephaven::proto::backplane::grpc::Aggregation_AggregationCount>()}, - {::_pbi::TcParser::GetTable<::io::deephaven::proto::backplane::grpc::Aggregation_AggregationRowKey>()}, - {::_pbi::TcParser::GetTable<::io::deephaven::proto::backplane::grpc::Aggregation_AggregationRowKey>()}, - {::_pbi::TcParser::GetTable<::io::deephaven::proto::backplane::grpc::Aggregation_AggregationPartition>()}, - }}, {{ - }}, -}; - -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; - // Prevent compiler warnings about cached_has_bits being unused - (void) cached_has_bits; - - clear_type(); - _internal_metadata_.Clear<::google::protobuf::UnknownFieldSet>(); -} - -#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; - - 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; - } - - 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_); -} - -void Aggregation::CopyFrom(const Aggregation& from) { -// @@protoc_insertion_point(class_specific_copy_from_start:io.deephaven.proto.backplane.grpc.Aggregation) - if (&from == this) return; - Clear(); - MergeFrom(from); -} - - -void Aggregation::InternalSwap(Aggregation* PROTOBUF_RESTRICT other) { - using std::swap; - _internal_metadata_.InternalSwap(&other->_internal_metadata_); - swap(_impl_.type_, other->_impl_.type_); - swap(_impl_._oneof_case_[0], other->_impl_._oneof_case_[0]); -} - -::google::protobuf::Metadata Aggregation::GetMetadata() const { - return ::google::protobuf::Message::GetMetadataImpl(GetClassData()->full()); -} -// =================================================================== - -class SortDescriptor::_Internal { - public: -}; - -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 ::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_, from); - ::memcpy(reinterpret_cast(&_impl_) + - offsetof(Impl_, is_absolute_), - reinterpret_cast(&from._impl_) + - offsetof(Impl_, is_absolute_), - offsetof(Impl_, direction_) - - offsetof(Impl_, is_absolute_) + - sizeof(Impl_::direction_)); - - // @@protoc_insertion_point(copy_constructor:io.deephaven.proto.backplane.grpc.SortDescriptor) -} -inline PROTOBUF_NDEBUG_INLINE SortDescriptor::Impl_::Impl_( - ::google::protobuf::internal::InternalVisibility visibility, - ::google::protobuf::Arena* arena) - : column_name_(arena), - _cached_size_{0} {} - -inline void SortDescriptor::SharedCtor(::_pb::Arena* arena) { - new (&_impl_) Impl_(internal_visibility(), arena); - ::memset(reinterpret_cast(&_impl_) + - offsetof(Impl_, is_absolute_), - 0, - offsetof(Impl_, direction_) - - offsetof(Impl_, is_absolute_) + - sizeof(Impl_::direction_)); -} -SortDescriptor::~SortDescriptor() { - // @@protoc_insertion_point(destructor:io.deephaven.proto.backplane.grpc.SortDescriptor) - _internal_metadata_.Delete<::google::protobuf::UnknownFieldSet>(); - SharedDtor(); -} -inline void SortDescriptor::SharedDtor() { - ABSL_DCHECK(GetArena() == nullptr); - _impl_.column_name_.Destroy(); - _impl_.~Impl_(); -} - -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_ = { - { - 0, // no _has_bits_ - 0, // no _extensions_ - 3, 24, // max_field_number, fast_idx_mask - offsetof(decltype(_table_), field_lookup_table), - 4294967288, // skipmap - offsetof(decltype(_table_), field_entries), - 3, // 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::SortDescriptor>(), // to_prefetch - #endif // PROTOBUF_PREFETCH_PARSE_TABLE - }, {{ - {::_pbi::TcParser::MiniParse, {}}, - // string column_name = 1; - {::_pbi::TcParser::FastUS1, - {10, 63, 0, PROTOBUF_FIELD_OFFSET(SortDescriptor, _impl_.column_name_)}}, - // bool is_absolute = 2; - {::_pbi::TcParser::SingularVarintNoZag1(), - {16, 63, 0, PROTOBUF_FIELD_OFFSET(SortDescriptor, _impl_.is_absolute_)}}, - // .io.deephaven.proto.backplane.grpc.SortDescriptor.SortDirection direction = 3; - {::_pbi::TcParser::SingularVarintNoZag1<::uint32_t, offsetof(SortDescriptor, _impl_.direction_), 63>(), - {24, 63, 0, PROTOBUF_FIELD_OFFSET(SortDescriptor, _impl_.direction_)}}, - }}, {{ - 65535, 65535 - }}, {{ - // string column_name = 1; - {PROTOBUF_FIELD_OFFSET(SortDescriptor, _impl_.column_name_), 0, 0, - (0 | ::_fl::kFcSingular | ::_fl::kUtf8String | ::_fl::kRepAString)}, - // bool is_absolute = 2; - {PROTOBUF_FIELD_OFFSET(SortDescriptor, _impl_.is_absolute_), 0, 0, - (0 | ::_fl::kFcSingular | ::_fl::kBool)}, - // .io.deephaven.proto.backplane.grpc.SortDescriptor.SortDirection direction = 3; - {PROTOBUF_FIELD_OFFSET(SortDescriptor, _impl_.direction_), 0, 0, - (0 | ::_fl::kFcSingular | ::_fl::kOpenEnum)}, - }}, - // no aux_entries - {{ - "\60\13\0\0\0\0\0\0" - "io.deephaven.proto.backplane.grpc.SortDescriptor" - "column_name" - }}, -}; - -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; - - _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>(); -} - -#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) - ABSL_DCHECK_NE(&from, _this); - ::uint32_t cached_has_bits = 0; - (void) cached_has_bits; - - if (!from._internal_column_name().empty()) { - _this->_internal_set_column_name(from._internal_column_name()); - } - if (from._internal_is_absolute() != 0) { - _this->_impl_.is_absolute_ = from._impl_.is_absolute_; - } - if (from._internal_direction() != 0) { - _this->_impl_.direction_ = from._impl_.direction_; - } - _this->_internal_metadata_.MergeFrom<::google::protobuf::UnknownFieldSet>(from._internal_metadata_); -} - -void SortDescriptor::CopyFrom(const SortDescriptor& from) { -// @@protoc_insertion_point(class_specific_copy_from_start:io.deephaven.proto.backplane.grpc.SortDescriptor) - if (&from == this) return; - Clear(); - MergeFrom(from); -} - - -void SortDescriptor::InternalSwap(SortDescriptor* PROTOBUF_RESTRICT other) { - using std::swap; - auto* arena = GetArena(); - ABSL_DCHECK_EQ(arena, other->GetArena()); - _internal_metadata_.InternalSwap(&other->_internal_metadata_); - ::_pbi::ArenaStringPtr::InternalSwap(&_impl_.column_name_, &other->_impl_.column_name_, arena); - ::google::protobuf::internal::memswap< - PROTOBUF_FIELD_OFFSET(SortDescriptor, _impl_.direction_) - + sizeof(SortDescriptor::_impl_.direction_) - - PROTOBUF_FIELD_OFFSET(SortDescriptor, _impl_.is_absolute_)>( - reinterpret_cast(&_impl_.is_absolute_), - reinterpret_cast(&other->_impl_.is_absolute_)); -} - -::google::protobuf::Metadata SortDescriptor::GetMetadata() const { - return ::google::protobuf::Message::GetMetadataImpl(GetClassData()->full()); -} -// =================================================================== - -class SortTableRequest::_Internal { - public: - using HasBits = - decltype(std::declval()._impl_._has_bits_); - static constexpr ::int32_t kHasBitsOffset = - 8 * PROTOBUF_FIELD_OFFSET(SortTableRequest, _impl_._has_bits_); -}; - -void SortTableRequest::clear_result_id() { - ::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 ::io::deephaven::proto::backplane::grpc::SortTableRequest& from_msg) - : _has_bits_{from._has_bits_}, - _cached_size_{0}, - sorts_{visibility, arena, from.sorts_} {} - -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_, from); - ::uint32_t cached_has_bits = _impl_._has_bits_[0]; - _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) -} -inline PROTOBUF_NDEBUG_INLINE SortTableRequest::Impl_::Impl_( - ::google::protobuf::internal::InternalVisibility visibility, - ::google::protobuf::Arena* arena) - : _cached_size_{0}, - sorts_{visibility, arena} {} - -inline void SortTableRequest::SharedCtor(::_pb::Arena* arena) { - new (&_impl_) Impl_(internal_visibility(), arena); - ::memset(reinterpret_cast(&_impl_) + - offsetof(Impl_, result_id_), - 0, - offsetof(Impl_, source_id_) - - offsetof(Impl_, result_id_) + - sizeof(Impl_::source_id_)); -} -SortTableRequest::~SortTableRequest() { - // @@protoc_insertion_point(destructor:io.deephaven.proto.backplane.grpc.SortTableRequest) - _internal_metadata_.Delete<::google::protobuf::UnknownFieldSet>(); - SharedDtor(); -} -inline void SortTableRequest::SharedDtor() { - ABSL_DCHECK(GetArena() == nullptr); - delete _impl_.result_id_; - delete _impl_.source_id_; - _impl_.~Impl_(); -} - -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_ = { - { - PROTOBUF_FIELD_OFFSET(SortTableRequest, _impl_._has_bits_), - 0, // no _extensions_ - 3, 24, // max_field_number, fast_idx_mask - offsetof(decltype(_table_), field_lookup_table), - 4294967288, // skipmap - offsetof(decltype(_table_), field_entries), - 3, // num_field_entries - 3, // num_aux_entries - offsetof(decltype(_table_), 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::SortTableRequest>(), // to_prefetch - #endif // PROTOBUF_PREFETCH_PARSE_TABLE - }, {{ - {::_pbi::TcParser::MiniParse, {}}, - // .io.deephaven.proto.backplane.grpc.Ticket result_id = 1; - {::_pbi::TcParser::FastMtS1, - {10, 0, 0, PROTOBUF_FIELD_OFFSET(SortTableRequest, _impl_.result_id_)}}, - // .io.deephaven.proto.backplane.grpc.TableReference source_id = 2; - {::_pbi::TcParser::FastMtS1, - {18, 1, 1, PROTOBUF_FIELD_OFFSET(SortTableRequest, _impl_.source_id_)}}, - // repeated .io.deephaven.proto.backplane.grpc.SortDescriptor sorts = 3; - {::_pbi::TcParser::FastMtR1, - {26, 63, 2, PROTOBUF_FIELD_OFFSET(SortTableRequest, _impl_.sorts_)}}, - }}, {{ - 65535, 65535 - }}, {{ - // .io.deephaven.proto.backplane.grpc.Ticket result_id = 1; - {PROTOBUF_FIELD_OFFSET(SortTableRequest, _impl_.result_id_), _Internal::kHasBitsOffset + 0, 0, - (0 | ::_fl::kFcOptional | ::_fl::kMessage | ::_fl::kTvTable)}, - // .io.deephaven.proto.backplane.grpc.TableReference source_id = 2; - {PROTOBUF_FIELD_OFFSET(SortTableRequest, _impl_.source_id_), _Internal::kHasBitsOffset + 1, 1, - (0 | ::_fl::kFcOptional | ::_fl::kMessage | ::_fl::kTvTable)}, - // repeated .io.deephaven.proto.backplane.grpc.SortDescriptor sorts = 3; - {PROTOBUF_FIELD_OFFSET(SortTableRequest, _impl_.sorts_), -1, 2, - (0 | ::_fl::kFcRepeated | ::_fl::kMessage | ::_fl::kTvTable)}, - }}, {{ - {::_pbi::TcParser::GetTable<::io::deephaven::proto::backplane::grpc::Ticket>()}, - {::_pbi::TcParser::GetTable<::io::deephaven::proto::backplane::grpc::TableReference>()}, - {::_pbi::TcParser::GetTable<::io::deephaven::proto::backplane::grpc::SortDescriptor>()}, - }}, {{ - }}, -}; - -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; - - _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>(); -} - -#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; - (void) cached_has_bits; - - _this->_internal_mutable_sorts()->MergeFrom( - from._internal_sorts()); - cached_has_bits = from._impl_._has_bits_[0]; - if (cached_has_bits & 0x00000003u) { - 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 (cached_has_bits & 0x00000002u) { - 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_); -} - -void SortTableRequest::CopyFrom(const SortTableRequest& from) { -// @@protoc_insertion_point(class_specific_copy_from_start:io.deephaven.proto.backplane.grpc.SortTableRequest) - if (&from == this) return; - Clear(); - MergeFrom(from); -} - - -void SortTableRequest::InternalSwap(SortTableRequest* PROTOBUF_RESTRICT other) { - using std::swap; - _internal_metadata_.InternalSwap(&other->_internal_metadata_); - swap(_impl_._has_bits_[0], other->_impl_._has_bits_[0]); - _impl_.sorts_.InternalSwap(&other->_impl_.sorts_); - ::google::protobuf::internal::memswap< - PROTOBUF_FIELD_OFFSET(SortTableRequest, _impl_.source_id_) - + sizeof(SortTableRequest::_impl_.source_id_) - - PROTOBUF_FIELD_OFFSET(SortTableRequest, _impl_.result_id_)>( - reinterpret_cast(&_impl_.result_id_), - reinterpret_cast(&other->_impl_.result_id_)); -} - -::google::protobuf::Metadata SortTableRequest::GetMetadata() const { - return ::google::protobuf::Message::GetMetadataImpl(GetClassData()->full()); -} -// =================================================================== - -class FilterTableRequest::_Internal { - public: - using HasBits = - decltype(std::declval()._impl_._has_bits_); - static constexpr ::int32_t kHasBitsOffset = - 8 * PROTOBUF_FIELD_OFFSET(FilterTableRequest, _impl_._has_bits_); -}; - -void FilterTableRequest::clear_result_id() { - ::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 ::io::deephaven::proto::backplane::grpc::FilterTableRequest& from_msg) - : _has_bits_{from._has_bits_}, - _cached_size_{0}, - filters_{visibility, arena, from.filters_} {} - -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_, from); - ::uint32_t cached_has_bits = _impl_._has_bits_[0]; - _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) -} -inline PROTOBUF_NDEBUG_INLINE FilterTableRequest::Impl_::Impl_( - ::google::protobuf::internal::InternalVisibility visibility, - ::google::protobuf::Arena* arena) - : _cached_size_{0}, - filters_{visibility, arena} {} - -inline void FilterTableRequest::SharedCtor(::_pb::Arena* arena) { - new (&_impl_) Impl_(internal_visibility(), arena); - ::memset(reinterpret_cast(&_impl_) + - offsetof(Impl_, result_id_), - 0, - offsetof(Impl_, source_id_) - - offsetof(Impl_, result_id_) + - sizeof(Impl_::source_id_)); -} -FilterTableRequest::~FilterTableRequest() { - // @@protoc_insertion_point(destructor:io.deephaven.proto.backplane.grpc.FilterTableRequest) - _internal_metadata_.Delete<::google::protobuf::UnknownFieldSet>(); - SharedDtor(); -} -inline void FilterTableRequest::SharedDtor() { - ABSL_DCHECK(GetArena() == nullptr); - delete _impl_.result_id_; - delete _impl_.source_id_; - _impl_.~Impl_(); -} - -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_ = { - { - PROTOBUF_FIELD_OFFSET(FilterTableRequest, _impl_._has_bits_), - 0, // no _extensions_ - 3, 24, // max_field_number, fast_idx_mask - offsetof(decltype(_table_), field_lookup_table), - 4294967288, // skipmap - offsetof(decltype(_table_), field_entries), - 3, // num_field_entries - 3, // num_aux_entries - offsetof(decltype(_table_), 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::FilterTableRequest>(), // to_prefetch - #endif // PROTOBUF_PREFETCH_PARSE_TABLE - }, {{ - {::_pbi::TcParser::MiniParse, {}}, - // .io.deephaven.proto.backplane.grpc.Ticket result_id = 1; - {::_pbi::TcParser::FastMtS1, - {10, 0, 0, PROTOBUF_FIELD_OFFSET(FilterTableRequest, _impl_.result_id_)}}, - // .io.deephaven.proto.backplane.grpc.TableReference source_id = 2; - {::_pbi::TcParser::FastMtS1, - {18, 1, 1, PROTOBUF_FIELD_OFFSET(FilterTableRequest, _impl_.source_id_)}}, - // repeated .io.deephaven.proto.backplane.grpc.Condition filters = 3; - {::_pbi::TcParser::FastMtR1, - {26, 63, 2, PROTOBUF_FIELD_OFFSET(FilterTableRequest, _impl_.filters_)}}, - }}, {{ - 65535, 65535 - }}, {{ - // .io.deephaven.proto.backplane.grpc.Ticket result_id = 1; - {PROTOBUF_FIELD_OFFSET(FilterTableRequest, _impl_.result_id_), _Internal::kHasBitsOffset + 0, 0, - (0 | ::_fl::kFcOptional | ::_fl::kMessage | ::_fl::kTvTable)}, - // .io.deephaven.proto.backplane.grpc.TableReference source_id = 2; - {PROTOBUF_FIELD_OFFSET(FilterTableRequest, _impl_.source_id_), _Internal::kHasBitsOffset + 1, 1, - (0 | ::_fl::kFcOptional | ::_fl::kMessage | ::_fl::kTvTable)}, - // repeated .io.deephaven.proto.backplane.grpc.Condition filters = 3; - {PROTOBUF_FIELD_OFFSET(FilterTableRequest, _impl_.filters_), -1, 2, - (0 | ::_fl::kFcRepeated | ::_fl::kMessage | ::_fl::kTvTable)}, - }}, {{ - {::_pbi::TcParser::GetTable<::io::deephaven::proto::backplane::grpc::Ticket>()}, - {::_pbi::TcParser::GetTable<::io::deephaven::proto::backplane::grpc::TableReference>()}, - {::_pbi::TcParser::GetTable<::io::deephaven::proto::backplane::grpc::Condition>()}, - }}, {{ - }}, -}; - -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; - - _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>(); -} - -#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; - (void) cached_has_bits; - - _this->_internal_mutable_filters()->MergeFrom( - from._internal_filters()); - cached_has_bits = from._impl_._has_bits_[0]; - if (cached_has_bits & 0x00000003u) { - 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 (cached_has_bits & 0x00000002u) { - 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_); -} - -void FilterTableRequest::CopyFrom(const FilterTableRequest& from) { -// @@protoc_insertion_point(class_specific_copy_from_start:io.deephaven.proto.backplane.grpc.FilterTableRequest) - if (&from == this) return; - Clear(); - MergeFrom(from); -} - - -void FilterTableRequest::InternalSwap(FilterTableRequest* PROTOBUF_RESTRICT other) { - using std::swap; - _internal_metadata_.InternalSwap(&other->_internal_metadata_); - swap(_impl_._has_bits_[0], other->_impl_._has_bits_[0]); - _impl_.filters_.InternalSwap(&other->_impl_.filters_); - ::google::protobuf::internal::memswap< - PROTOBUF_FIELD_OFFSET(FilterTableRequest, _impl_.source_id_) - + sizeof(FilterTableRequest::_impl_.source_id_) - - PROTOBUF_FIELD_OFFSET(FilterTableRequest, _impl_.result_id_)>( - reinterpret_cast(&_impl_.result_id_), - reinterpret_cast(&other->_impl_.result_id_)); -} - -::google::protobuf::Metadata FilterTableRequest::GetMetadata() const { - return ::google::protobuf::Message::GetMetadataImpl(GetClassData()->full()); -} -// =================================================================== - -class SeekRowRequest::_Internal { - public: - using HasBits = - decltype(std::declval()._impl_._has_bits_); - static constexpr ::int32_t kHasBitsOffset = - 8 * PROTOBUF_FIELD_OFFSET(SeekRowRequest, _impl_._has_bits_); -}; - -void SeekRowRequest::clear_source_id() { - ::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 ::io::deephaven::proto::backplane::grpc::SeekRowRequest& from_msg) - : _has_bits_{from._has_bits_}, - _cached_size_{0}, - column_name_(arena, from.column_name_) {} - -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_, from); - ::uint32_t cached_has_bits = _impl_._has_bits_[0]; - _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_) + - offsetof(Impl_, starting_row_), - offsetof(Impl_, is_backward_) - - offsetof(Impl_, starting_row_) + - sizeof(Impl_::is_backward_)); - - // @@protoc_insertion_point(copy_constructor:io.deephaven.proto.backplane.grpc.SeekRowRequest) -} -inline PROTOBUF_NDEBUG_INLINE SeekRowRequest::Impl_::Impl_( - ::google::protobuf::internal::InternalVisibility visibility, - ::google::protobuf::Arena* arena) - : _cached_size_{0}, - column_name_(arena) {} - -inline void SeekRowRequest::SharedCtor(::_pb::Arena* arena) { - new (&_impl_) Impl_(internal_visibility(), arena); - ::memset(reinterpret_cast(&_impl_) + - offsetof(Impl_, source_id_), - 0, - offsetof(Impl_, is_backward_) - - offsetof(Impl_, source_id_) + - sizeof(Impl_::is_backward_)); -} -SeekRowRequest::~SeekRowRequest() { - // @@protoc_insertion_point(destructor:io.deephaven.proto.backplane.grpc.SeekRowRequest) - _internal_metadata_.Delete<::google::protobuf::UnknownFieldSet>(); - SharedDtor(); -} -inline void SeekRowRequest::SharedDtor() { - ABSL_DCHECK(GetArena() == nullptr); - _impl_.column_name_.Destroy(); - delete _impl_.source_id_; - delete _impl_.seek_value_; - _impl_.~Impl_(); -} - -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(); -} -PROTOBUF_CONSTINIT PROTOBUF_ATTRIBUTE_INIT_PRIORITY1 -const ::_pbi::TcParseTable<3, 7, 2, 68, 2> SeekRowRequest::_table_ = { - { - PROTOBUF_FIELD_OFFSET(SeekRowRequest, _impl_._has_bits_), - 0, // no _extensions_ - 7, 56, // max_field_number, fast_idx_mask - offsetof(decltype(_table_), field_lookup_table), - 4294967168, // skipmap - offsetof(decltype(_table_), field_entries), - 7, // num_field_entries - 2, // num_aux_entries - offsetof(decltype(_table_), 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::SeekRowRequest>(), // to_prefetch - #endif // PROTOBUF_PREFETCH_PARSE_TABLE - }, {{ - {::_pbi::TcParser::MiniParse, {}}, - // .io.deephaven.proto.backplane.grpc.Ticket source_id = 1; - {::_pbi::TcParser::FastMtS1, - {10, 0, 0, PROTOBUF_FIELD_OFFSET(SeekRowRequest, _impl_.source_id_)}}, - // sint64 starting_row = 2 [jstype = JS_STRING]; - {::_pbi::TcParser::FastZ64S1, - {16, 63, 0, PROTOBUF_FIELD_OFFSET(SeekRowRequest, _impl_.starting_row_)}}, - // string column_name = 3; - {::_pbi::TcParser::FastUS1, - {26, 63, 0, PROTOBUF_FIELD_OFFSET(SeekRowRequest, _impl_.column_name_)}}, - // .io.deephaven.proto.backplane.grpc.Literal seek_value = 4; - {::_pbi::TcParser::FastMtS1, - {34, 1, 1, PROTOBUF_FIELD_OFFSET(SeekRowRequest, _impl_.seek_value_)}}, - // bool insensitive = 5; - {::_pbi::TcParser::SingularVarintNoZag1(), - {40, 63, 0, PROTOBUF_FIELD_OFFSET(SeekRowRequest, _impl_.insensitive_)}}, - // bool contains = 6; - {::_pbi::TcParser::SingularVarintNoZag1(), - {48, 63, 0, PROTOBUF_FIELD_OFFSET(SeekRowRequest, _impl_.contains_)}}, - // bool is_backward = 7; - {::_pbi::TcParser::SingularVarintNoZag1(), - {56, 63, 0, PROTOBUF_FIELD_OFFSET(SeekRowRequest, _impl_.is_backward_)}}, - }}, {{ - 65535, 65535 - }}, {{ - // .io.deephaven.proto.backplane.grpc.Ticket source_id = 1; - {PROTOBUF_FIELD_OFFSET(SeekRowRequest, _impl_.source_id_), _Internal::kHasBitsOffset + 0, 0, - (0 | ::_fl::kFcOptional | ::_fl::kMessage | ::_fl::kTvTable)}, - // sint64 starting_row = 2 [jstype = JS_STRING]; - {PROTOBUF_FIELD_OFFSET(SeekRowRequest, _impl_.starting_row_), -1, 0, - (0 | ::_fl::kFcSingular | ::_fl::kSInt64)}, - // string column_name = 3; - {PROTOBUF_FIELD_OFFSET(SeekRowRequest, _impl_.column_name_), -1, 0, - (0 | ::_fl::kFcSingular | ::_fl::kUtf8String | ::_fl::kRepAString)}, - // .io.deephaven.proto.backplane.grpc.Literal seek_value = 4; - {PROTOBUF_FIELD_OFFSET(SeekRowRequest, _impl_.seek_value_), _Internal::kHasBitsOffset + 1, 1, - (0 | ::_fl::kFcOptional | ::_fl::kMessage | ::_fl::kTvTable)}, - // bool insensitive = 5; - {PROTOBUF_FIELD_OFFSET(SeekRowRequest, _impl_.insensitive_), -1, 0, - (0 | ::_fl::kFcSingular | ::_fl::kBool)}, - // bool contains = 6; - {PROTOBUF_FIELD_OFFSET(SeekRowRequest, _impl_.contains_), -1, 0, - (0 | ::_fl::kFcSingular | ::_fl::kBool)}, - // bool is_backward = 7; - {PROTOBUF_FIELD_OFFSET(SeekRowRequest, _impl_.is_backward_), -1, 0, - (0 | ::_fl::kFcSingular | ::_fl::kBool)}, - }}, {{ - {::_pbi::TcParser::GetTable<::io::deephaven::proto::backplane::grpc::Ticket>()}, - {::_pbi::TcParser::GetTable<::io::deephaven::proto::backplane::grpc::Literal>()}, - }}, {{ - "\60\0\0\13\0\0\0\0" - "io.deephaven.proto.backplane.grpc.SeekRowRequest" - "column_name" - }}, -}; - -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; - - _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>(); -} - -#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; - (void) cached_has_bits; - - if (!from._internal_column_name().empty()) { - _this->_internal_set_column_name(from._internal_column_name()); - } - cached_has_bits = from._impl_._has_bits_[0]; - if (cached_has_bits & 0x00000003u) { - 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::Ticket>(arena, *from._impl_.source_id_); - } else { - _this->_impl_.source_id_->MergeFrom(*from._impl_.source_id_); - } - } - if (cached_has_bits & 0x00000002u) { - 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->_impl_.starting_row_ = from._impl_.starting_row_; - } - if (from._internal_insensitive() != 0) { - _this->_impl_.insensitive_ = from._impl_.insensitive_; - } - if (from._internal_contains() != 0) { - _this->_impl_.contains_ = from._impl_.contains_; - } - if (from._internal_is_backward() != 0) { - _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_); -} - -void SeekRowRequest::CopyFrom(const SeekRowRequest& from) { -// @@protoc_insertion_point(class_specific_copy_from_start:io.deephaven.proto.backplane.grpc.SeekRowRequest) - if (&from == this) return; - Clear(); - MergeFrom(from); -} - - -void SeekRowRequest::InternalSwap(SeekRowRequest* PROTOBUF_RESTRICT other) { - using std::swap; - auto* arena = GetArena(); - ABSL_DCHECK_EQ(arena, other->GetArena()); - _internal_metadata_.InternalSwap(&other->_internal_metadata_); - swap(_impl_._has_bits_[0], other->_impl_._has_bits_[0]); - ::_pbi::ArenaStringPtr::InternalSwap(&_impl_.column_name_, &other->_impl_.column_name_, arena); - ::google::protobuf::internal::memswap< - PROTOBUF_FIELD_OFFSET(SeekRowRequest, _impl_.is_backward_) - + sizeof(SeekRowRequest::_impl_.is_backward_) - - PROTOBUF_FIELD_OFFSET(SeekRowRequest, _impl_.source_id_)>( - reinterpret_cast(&_impl_.source_id_), - reinterpret_cast(&other->_impl_.source_id_)); -} - -::google::protobuf::Metadata SeekRowRequest::GetMetadata() const { - return ::google::protobuf::Message::GetMetadataImpl(GetClassData()->full()); -} -// =================================================================== - -class SeekRowResponse::_Internal { - public: -}; - -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) -} -SeekRowResponse::SeekRowResponse( - ::google::protobuf::Arena* arena, const SeekRowResponse& from) - : SeekRowResponse(arena) { - MergeFrom(from); -} -inline PROTOBUF_NDEBUG_INLINE SeekRowResponse::Impl_::Impl_( - ::google::protobuf::internal::InternalVisibility visibility, - ::google::protobuf::Arena* arena) - : _cached_size_{0} {} - -inline void SeekRowResponse::SharedCtor(::_pb::Arena* arena) { - new (&_impl_) Impl_(internal_visibility(), arena); - _impl_.result_row_ = {}; -} -SeekRowResponse::~SeekRowResponse() { - // @@protoc_insertion_point(destructor:io.deephaven.proto.backplane.grpc.SeekRowResponse) - _internal_metadata_.Delete<::google::protobuf::UnknownFieldSet>(); - SharedDtor(); -} -inline void SeekRowResponse::SharedDtor() { - ABSL_DCHECK(GetArena() == nullptr); - _impl_.~Impl_(); -} - -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_ = { - { - 0, // no _has_bits_ - 0, // no _extensions_ - 1, 0, // max_field_number, fast_idx_mask - offsetof(decltype(_table_), field_lookup_table), - 4294967294, // skipmap - offsetof(decltype(_table_), field_entries), - 1, // 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::SeekRowResponse>(), // to_prefetch - #endif // PROTOBUF_PREFETCH_PARSE_TABLE - }, {{ - // sint64 result_row = 1 [jstype = JS_STRING]; - {::_pbi::TcParser::FastZ64S1, - {8, 63, 0, PROTOBUF_FIELD_OFFSET(SeekRowResponse, _impl_.result_row_)}}, - }}, {{ - 65535, 65535 - }}, {{ - // sint64 result_row = 1 [jstype = JS_STRING]; - {PROTOBUF_FIELD_OFFSET(SeekRowResponse, _impl_.result_row_), 0, 0, - (0 | ::_fl::kFcSingular | ::_fl::kSInt64)}, - }}, - // no aux_entries - {{ - }}, -}; - -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; - - _impl_.result_row_ = ::int64_t{0}; - _internal_metadata_.Clear<::google::protobuf::UnknownFieldSet>(); -} - -#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) - ABSL_DCHECK_NE(&from, _this); - ::uint32_t cached_has_bits = 0; - (void) cached_has_bits; - - if (from._internal_result_row() != 0) { - _this->_impl_.result_row_ = from._impl_.result_row_; - } - _this->_internal_metadata_.MergeFrom<::google::protobuf::UnknownFieldSet>(from._internal_metadata_); -} - -void SeekRowResponse::CopyFrom(const SeekRowResponse& from) { -// @@protoc_insertion_point(class_specific_copy_from_start:io.deephaven.proto.backplane.grpc.SeekRowResponse) - if (&from == this) return; - Clear(); - MergeFrom(from); -} - - -void SeekRowResponse::InternalSwap(SeekRowResponse* PROTOBUF_RESTRICT other) { - using std::swap; - _internal_metadata_.InternalSwap(&other->_internal_metadata_); - swap(_impl_.result_row_, other->_impl_.result_row_); -} - -::google::protobuf::Metadata SeekRowResponse::GetMetadata() const { - return ::google::protobuf::Message::GetMetadataImpl(GetClassData()->full()); -} -// =================================================================== - -class Reference::_Internal { - public: -}; - -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 ::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_, from); - - // @@protoc_insertion_point(copy_constructor:io.deephaven.proto.backplane.grpc.Reference) -} -inline PROTOBUF_NDEBUG_INLINE Reference::Impl_::Impl_( - ::google::protobuf::internal::InternalVisibility visibility, - ::google::protobuf::Arena* arena) - : column_name_(arena), - _cached_size_{0} {} - -inline void Reference::SharedCtor(::_pb::Arena* arena) { - new (&_impl_) Impl_(internal_visibility(), arena); -} -Reference::~Reference() { - // @@protoc_insertion_point(destructor:io.deephaven.proto.backplane.grpc.Reference) - _internal_metadata_.Delete<::google::protobuf::UnknownFieldSet>(); - SharedDtor(); -} -inline void Reference::SharedDtor() { - ABSL_DCHECK(GetArena() == nullptr); - _impl_.column_name_.Destroy(); - _impl_.~Impl_(); -} - -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_ = { - { - 0, // no _has_bits_ - 0, // no _extensions_ - 1, 0, // max_field_number, fast_idx_mask - offsetof(decltype(_table_), field_lookup_table), - 4294967294, // skipmap - offsetof(decltype(_table_), field_entries), - 1, // 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::Reference>(), // to_prefetch - #endif // PROTOBUF_PREFETCH_PARSE_TABLE - }, {{ - // string column_name = 1; - {::_pbi::TcParser::FastUS1, - {10, 63, 0, PROTOBUF_FIELD_OFFSET(Reference, _impl_.column_name_)}}, - }}, {{ - 65535, 65535 - }}, {{ - // string column_name = 1; - {PROTOBUF_FIELD_OFFSET(Reference, _impl_.column_name_), 0, 0, - (0 | ::_fl::kFcSingular | ::_fl::kUtf8String | ::_fl::kRepAString)}, - }}, - // no aux_entries - {{ - "\53\13\0\0\0\0\0\0" - "io.deephaven.proto.backplane.grpc.Reference" - "column_name" - }}, -}; - -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; - - _impl_.column_name_.ClearToEmpty(); - _internal_metadata_.Clear<::google::protobuf::UnknownFieldSet>(); -} - -#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) - ABSL_DCHECK_NE(&from, _this); - ::uint32_t cached_has_bits = 0; - (void) cached_has_bits; - - if (!from._internal_column_name().empty()) { - _this->_internal_set_column_name(from._internal_column_name()); - } - _this->_internal_metadata_.MergeFrom<::google::protobuf::UnknownFieldSet>(from._internal_metadata_); -} - -void Reference::CopyFrom(const Reference& from) { -// @@protoc_insertion_point(class_specific_copy_from_start:io.deephaven.proto.backplane.grpc.Reference) - if (&from == this) return; - Clear(); - MergeFrom(from); -} - - -void Reference::InternalSwap(Reference* PROTOBUF_RESTRICT other) { - using std::swap; - auto* arena = GetArena(); - ABSL_DCHECK_EQ(arena, other->GetArena()); - _internal_metadata_.InternalSwap(&other->_internal_metadata_); - ::_pbi::ArenaStringPtr::InternalSwap(&_impl_.column_name_, &other->_impl_.column_name_, arena); -} - -::google::protobuf::Metadata Reference::GetMetadata() const { - 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_); -}; - -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 ::io::deephaven::proto::backplane::grpc::Literal& from_msg) - : value_{}, - _cached_size_{0}, - _oneof_case_{from._oneof_case_[0]} {} - -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_, from); - switch (value_case()) { - case VALUE_NOT_SET: - break; - case kStringValue: - new (&_impl_.value_.string_value_) decltype(_impl_.value_.string_value_){arena, from._impl_.value_.string_value_}; - break; - case kDoubleValue: - _impl_.value_.double_value_ = from._impl_.value_.double_value_; - break; - case kBoolValue: - _impl_.value_.bool_value_ = from._impl_.value_.bool_value_; - break; - case kLongValue: - _impl_.value_.long_value_ = from._impl_.value_.long_value_; - break; - case kNanoTimeValue: - _impl_.value_.nano_time_value_ = from._impl_.value_.nano_time_value_; - break; - } - - // @@protoc_insertion_point(copy_constructor:io.deephaven.proto.backplane.grpc.Literal) -} -inline PROTOBUF_NDEBUG_INLINE Literal::Impl_::Impl_( - ::google::protobuf::internal::InternalVisibility visibility, - ::google::protobuf::Arena* arena) - : value_{}, - _cached_size_{0}, - _oneof_case_{} {} - -inline void Literal::SharedCtor(::_pb::Arena* arena) { - new (&_impl_) Impl_(internal_visibility(), arena); -} -Literal::~Literal() { - // @@protoc_insertion_point(destructor:io.deephaven.proto.backplane.grpc.Literal) - _internal_metadata_.Delete<::google::protobuf::UnknownFieldSet>(); - SharedDtor(); -} -inline void Literal::SharedDtor() { - ABSL_DCHECK(GetArena() == nullptr); - if (has_value()) { - clear_value(); - } - _impl_.~Impl_(); -} - -void Literal::clear_value() { -// @@protoc_insertion_point(one_of_clear_start:io.deephaven.proto.backplane.grpc.Literal) - ::google::protobuf::internal::TSanWrite(&_impl_); - switch (value_case()) { - case kStringValue: { - _impl_.value_.string_value_.Destroy(); - break; - } - case kDoubleValue: { - // No need to clear - break; - } - case kBoolValue: { - // No need to clear - break; - } - case kLongValue: { - // No need to clear - break; - } - case kNanoTimeValue: { - // No need to clear - break; - } - case VALUE_NOT_SET: { - break; - } - } - _impl_._oneof_case_[0] = VALUE_NOT_SET; -} - - -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_ = { - { - 0, // no _has_bits_ - 0, // no _extensions_ - 5, 0, // max_field_number, fast_idx_mask - offsetof(decltype(_table_), field_lookup_table), - 4294967264, // skipmap - offsetof(decltype(_table_), field_entries), - 5, // 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::Literal>(), // to_prefetch - #endif // PROTOBUF_PREFETCH_PARSE_TABLE - }, {{ - {::_pbi::TcParser::MiniParse, {}}, - }}, {{ - 65535, 65535 - }}, {{ - // string string_value = 1; - {PROTOBUF_FIELD_OFFSET(Literal, _impl_.value_.string_value_), _Internal::kOneofCaseOffset + 0, 0, - (0 | ::_fl::kFcOneof | ::_fl::kUtf8String | ::_fl::kRepAString)}, - // double double_value = 2; - {PROTOBUF_FIELD_OFFSET(Literal, _impl_.value_.double_value_), _Internal::kOneofCaseOffset + 0, 0, - (0 | ::_fl::kFcOneof | ::_fl::kDouble)}, - // bool bool_value = 3; - {PROTOBUF_FIELD_OFFSET(Literal, _impl_.value_.bool_value_), _Internal::kOneofCaseOffset + 0, 0, - (0 | ::_fl::kFcOneof | ::_fl::kBool)}, - // sint64 long_value = 4 [jstype = JS_STRING]; - {PROTOBUF_FIELD_OFFSET(Literal, _impl_.value_.long_value_), _Internal::kOneofCaseOffset + 0, 0, - (0 | ::_fl::kFcOneof | ::_fl::kSInt64)}, - // sint64 nano_time_value = 5 [jstype = JS_STRING]; - {PROTOBUF_FIELD_OFFSET(Literal, _impl_.value_.nano_time_value_), _Internal::kOneofCaseOffset + 0, 0, - (0 | ::_fl::kFcOneof | ::_fl::kSInt64)}, - }}, - // no aux_entries - {{ - "\51\14\0\0\0\0\0\0" - "io.deephaven.proto.backplane.grpc.Literal" - "string_value" - }}, -}; - -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; - - clear_value(); - _internal_metadata_.Clear<::google::protobuf::UnknownFieldSet>(); -} - -#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; - - 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; - } - - 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_); -} - -void Literal::CopyFrom(const Literal& from) { -// @@protoc_insertion_point(class_specific_copy_from_start:io.deephaven.proto.backplane.grpc.Literal) - if (&from == this) return; - Clear(); - MergeFrom(from); -} - - -void Literal::InternalSwap(Literal* PROTOBUF_RESTRICT other) { - using std::swap; - _internal_metadata_.InternalSwap(&other->_internal_metadata_); - swap(_impl_.value_, other->_impl_.value_); - swap(_impl_._oneof_case_[0], other->_impl_._oneof_case_[0]); -} - -::google::protobuf::Metadata Literal::GetMetadata() const { - 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_); -}; - -void Value::set_allocated_reference(::io::deephaven::proto::backplane::grpc::Reference* reference) { - ::google::protobuf::Arena* message_arena = GetArena(); - clear_data(); - if (reference) { - ::google::protobuf::Arena* submessage_arena = reference->GetArena(); - if (message_arena != submessage_arena) { - reference = ::google::protobuf::internal::GetOwnedMessage(message_arena, reference, submessage_arena); - } - set_has_reference(); - _impl_.data_.reference_ = reference; - } - // @@protoc_insertion_point(field_set_allocated:io.deephaven.proto.backplane.grpc.Value.reference) -} -void Value::set_allocated_literal(::io::deephaven::proto::backplane::grpc::Literal* literal) { - ::google::protobuf::Arena* message_arena = GetArena(); - clear_data(); - if (literal) { - ::google::protobuf::Arena* submessage_arena = literal->GetArena(); - if (message_arena != submessage_arena) { - literal = ::google::protobuf::internal::GetOwnedMessage(message_arena, literal, submessage_arena); - } - set_has_literal(); - _impl_.data_.literal_ = literal; - } - // @@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 ::io::deephaven::proto::backplane::grpc::Value& from_msg) - : data_{}, - _cached_size_{0}, - _oneof_case_{from._oneof_case_[0]} {} - -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_, from); - switch (data_case()) { - case DATA_NOT_SET: - break; - case kReference: - _impl_.data_.reference_ = ::google::protobuf::Message::CopyConstruct<::io::deephaven::proto::backplane::grpc::Reference>(arena, *from._impl_.data_.reference_); - break; - case kLiteral: - _impl_.data_.literal_ = ::google::protobuf::Message::CopyConstruct<::io::deephaven::proto::backplane::grpc::Literal>(arena, *from._impl_.data_.literal_); - break; - } - - // @@protoc_insertion_point(copy_constructor:io.deephaven.proto.backplane.grpc.Value) -} -inline PROTOBUF_NDEBUG_INLINE Value::Impl_::Impl_( - ::google::protobuf::internal::InternalVisibility visibility, - ::google::protobuf::Arena* arena) - : data_{}, - _cached_size_{0}, - _oneof_case_{} {} - -inline void Value::SharedCtor(::_pb::Arena* arena) { - new (&_impl_) Impl_(internal_visibility(), arena); -} -Value::~Value() { - // @@protoc_insertion_point(destructor:io.deephaven.proto.backplane.grpc.Value) - _internal_metadata_.Delete<::google::protobuf::UnknownFieldSet>(); - SharedDtor(); -} -inline void Value::SharedDtor() { - ABSL_DCHECK(GetArena() == nullptr); - if (has_data()) { - clear_data(); - } - _impl_.~Impl_(); -} - -void Value::clear_data() { -// @@protoc_insertion_point(one_of_clear_start:io.deephaven.proto.backplane.grpc.Value) - ::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; - } - case DATA_NOT_SET: { - break; - } - } - _impl_._oneof_case_[0] = DATA_NOT_SET; -} - - -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_ = { - { - 0, // no _has_bits_ - 0, // no _extensions_ - 2, 0, // max_field_number, fast_idx_mask - offsetof(decltype(_table_), field_lookup_table), - 4294967292, // skipmap - offsetof(decltype(_table_), field_entries), - 2, // num_field_entries - 2, // num_aux_entries - offsetof(decltype(_table_), 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::Value>(), // to_prefetch - #endif // PROTOBUF_PREFETCH_PARSE_TABLE - }, {{ - {::_pbi::TcParser::MiniParse, {}}, - }}, {{ - 65535, 65535 - }}, {{ - // .io.deephaven.proto.backplane.grpc.Reference reference = 1; - {PROTOBUF_FIELD_OFFSET(Value, _impl_.data_.reference_), _Internal::kOneofCaseOffset + 0, 0, - (0 | ::_fl::kFcOneof | ::_fl::kMessage | ::_fl::kTvTable)}, - // .io.deephaven.proto.backplane.grpc.Literal literal = 2; - {PROTOBUF_FIELD_OFFSET(Value, _impl_.data_.literal_), _Internal::kOneofCaseOffset + 0, 1, - (0 | ::_fl::kFcOneof | ::_fl::kMessage | ::_fl::kTvTable)}, - }}, {{ - {::_pbi::TcParser::GetTable<::io::deephaven::proto::backplane::grpc::Reference>()}, - {::_pbi::TcParser::GetTable<::io::deephaven::proto::backplane::grpc::Literal>()}, - }}, {{ - }}, -}; - -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; - - clear_data(); - _internal_metadata_.Clear<::google::protobuf::UnknownFieldSet>(); -} - -#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; - - 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; - } - - 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_); -} - -void Value::CopyFrom(const Value& from) { -// @@protoc_insertion_point(class_specific_copy_from_start:io.deephaven.proto.backplane.grpc.Value) - if (&from == this) return; - Clear(); - MergeFrom(from); -} - - -void Value::InternalSwap(Value* PROTOBUF_RESTRICT other) { - using std::swap; - _internal_metadata_.InternalSwap(&other->_internal_metadata_); - swap(_impl_.data_, other->_impl_.data_); - swap(_impl_._oneof_case_[0], other->_impl_._oneof_case_[0]); -} - -::google::protobuf::Metadata Value::GetMetadata() const { - 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_); -}; - -void Condition::set_allocated_and_(::io::deephaven::proto::backplane::grpc::AndCondition* and_) { - ::google::protobuf::Arena* message_arena = GetArena(); - clear_data(); - if (and_) { - ::google::protobuf::Arena* submessage_arena = and_->GetArena(); - if (message_arena != submessage_arena) { - and_ = ::google::protobuf::internal::GetOwnedMessage(message_arena, and_, submessage_arena); - } - set_has_and_(); - _impl_.data_.and__ = and_; - } - // @@protoc_insertion_point(field_set_allocated:io.deephaven.proto.backplane.grpc.Condition.and) -} -void Condition::set_allocated_or_(::io::deephaven::proto::backplane::grpc::OrCondition* or_) { - ::google::protobuf::Arena* message_arena = GetArena(); - clear_data(); - if (or_) { - ::google::protobuf::Arena* submessage_arena = or_->GetArena(); - if (message_arena != submessage_arena) { - or_ = ::google::protobuf::internal::GetOwnedMessage(message_arena, or_, submessage_arena); - } - set_has_or_(); - _impl_.data_.or__ = or_; - } - // @@protoc_insertion_point(field_set_allocated:io.deephaven.proto.backplane.grpc.Condition.or) -} -void Condition::set_allocated_not_(::io::deephaven::proto::backplane::grpc::NotCondition* not_) { - ::google::protobuf::Arena* message_arena = GetArena(); - clear_data(); - if (not_) { - ::google::protobuf::Arena* submessage_arena = not_->GetArena(); - if (message_arena != submessage_arena) { - not_ = ::google::protobuf::internal::GetOwnedMessage(message_arena, not_, submessage_arena); - } - set_has_not_(); - _impl_.data_.not__ = not_; - } - // @@protoc_insertion_point(field_set_allocated:io.deephaven.proto.backplane.grpc.Condition.not) -} -void Condition::set_allocated_compare(::io::deephaven::proto::backplane::grpc::CompareCondition* compare) { - ::google::protobuf::Arena* message_arena = GetArena(); - clear_data(); - if (compare) { - ::google::protobuf::Arena* submessage_arena = compare->GetArena(); - if (message_arena != submessage_arena) { - compare = ::google::protobuf::internal::GetOwnedMessage(message_arena, compare, submessage_arena); - } - set_has_compare(); - _impl_.data_.compare_ = compare; - } - // @@protoc_insertion_point(field_set_allocated:io.deephaven.proto.backplane.grpc.Condition.compare) -} -void Condition::set_allocated_in(::io::deephaven::proto::backplane::grpc::InCondition* in) { - ::google::protobuf::Arena* message_arena = GetArena(); - clear_data(); - if (in) { - ::google::protobuf::Arena* submessage_arena = in->GetArena(); - if (message_arena != submessage_arena) { - in = ::google::protobuf::internal::GetOwnedMessage(message_arena, in, submessage_arena); - } - set_has_in(); - _impl_.data_.in_ = in; - } - // @@protoc_insertion_point(field_set_allocated:io.deephaven.proto.backplane.grpc.Condition.in) -} -void Condition::set_allocated_invoke(::io::deephaven::proto::backplane::grpc::InvokeCondition* invoke) { - ::google::protobuf::Arena* message_arena = GetArena(); - clear_data(); - if (invoke) { - ::google::protobuf::Arena* submessage_arena = invoke->GetArena(); - if (message_arena != submessage_arena) { - invoke = ::google::protobuf::internal::GetOwnedMessage(message_arena, invoke, submessage_arena); - } - set_has_invoke(); - _impl_.data_.invoke_ = invoke; - } - // @@protoc_insertion_point(field_set_allocated:io.deephaven.proto.backplane.grpc.Condition.invoke) -} -void Condition::set_allocated_is_null(::io::deephaven::proto::backplane::grpc::IsNullCondition* is_null) { - ::google::protobuf::Arena* message_arena = GetArena(); - clear_data(); - if (is_null) { - ::google::protobuf::Arena* submessage_arena = is_null->GetArena(); - if (message_arena != submessage_arena) { - is_null = ::google::protobuf::internal::GetOwnedMessage(message_arena, is_null, submessage_arena); - } - set_has_is_null(); - _impl_.data_.is_null_ = is_null; - } - // @@protoc_insertion_point(field_set_allocated:io.deephaven.proto.backplane.grpc.Condition.is_null) -} -void Condition::set_allocated_matches(::io::deephaven::proto::backplane::grpc::MatchesCondition* matches) { - ::google::protobuf::Arena* message_arena = GetArena(); - clear_data(); - if (matches) { - ::google::protobuf::Arena* submessage_arena = matches->GetArena(); - if (message_arena != submessage_arena) { - matches = ::google::protobuf::internal::GetOwnedMessage(message_arena, matches, submessage_arena); - } - set_has_matches(); - _impl_.data_.matches_ = matches; - } - // @@protoc_insertion_point(field_set_allocated:io.deephaven.proto.backplane.grpc.Condition.matches) -} -void Condition::set_allocated_contains(::io::deephaven::proto::backplane::grpc::ContainsCondition* contains) { - ::google::protobuf::Arena* message_arena = GetArena(); - clear_data(); - if (contains) { - ::google::protobuf::Arena* submessage_arena = contains->GetArena(); - if (message_arena != submessage_arena) { - contains = ::google::protobuf::internal::GetOwnedMessage(message_arena, contains, submessage_arena); - } - set_has_contains(); - _impl_.data_.contains_ = contains; - } - // @@protoc_insertion_point(field_set_allocated:io.deephaven.proto.backplane.grpc.Condition.contains) -} -void Condition::set_allocated_search(::io::deephaven::proto::backplane::grpc::SearchCondition* search) { - ::google::protobuf::Arena* message_arena = GetArena(); - clear_data(); - if (search) { - ::google::protobuf::Arena* submessage_arena = search->GetArena(); - if (message_arena != submessage_arena) { - search = ::google::protobuf::internal::GetOwnedMessage(message_arena, search, submessage_arena); - } - set_has_search(); - _impl_.data_.search_ = search; - } - // @@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 ::io::deephaven::proto::backplane::grpc::Condition& from_msg) - : data_{}, - _cached_size_{0}, - _oneof_case_{from._oneof_case_[0]} {} - -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_, from); - switch (data_case()) { - case DATA_NOT_SET: - break; - case kAnd: - _impl_.data_.and__ = ::google::protobuf::Message::CopyConstruct<::io::deephaven::proto::backplane::grpc::AndCondition>(arena, *from._impl_.data_.and__); - break; - case kOr: - _impl_.data_.or__ = ::google::protobuf::Message::CopyConstruct<::io::deephaven::proto::backplane::grpc::OrCondition>(arena, *from._impl_.data_.or__); - break; - case kNot: - _impl_.data_.not__ = ::google::protobuf::Message::CopyConstruct<::io::deephaven::proto::backplane::grpc::NotCondition>(arena, *from._impl_.data_.not__); - break; - case kCompare: - _impl_.data_.compare_ = ::google::protobuf::Message::CopyConstruct<::io::deephaven::proto::backplane::grpc::CompareCondition>(arena, *from._impl_.data_.compare_); - break; - case kIn: - _impl_.data_.in_ = ::google::protobuf::Message::CopyConstruct<::io::deephaven::proto::backplane::grpc::InCondition>(arena, *from._impl_.data_.in_); - break; - case kInvoke: - _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_ = ::google::protobuf::Message::CopyConstruct<::io::deephaven::proto::backplane::grpc::IsNullCondition>(arena, *from._impl_.data_.is_null_); - break; - case kMatches: - _impl_.data_.matches_ = ::google::protobuf::Message::CopyConstruct<::io::deephaven::proto::backplane::grpc::MatchesCondition>(arena, *from._impl_.data_.matches_); - break; - case kContains: - _impl_.data_.contains_ = ::google::protobuf::Message::CopyConstruct<::io::deephaven::proto::backplane::grpc::ContainsCondition>(arena, *from._impl_.data_.contains_); - break; - case kSearch: - _impl_.data_.search_ = ::google::protobuf::Message::CopyConstruct<::io::deephaven::proto::backplane::grpc::SearchCondition>(arena, *from._impl_.data_.search_); - break; - } - - // @@protoc_insertion_point(copy_constructor:io.deephaven.proto.backplane.grpc.Condition) -} -inline PROTOBUF_NDEBUG_INLINE Condition::Impl_::Impl_( - ::google::protobuf::internal::InternalVisibility visibility, - ::google::protobuf::Arena* arena) - : data_{}, - _cached_size_{0}, - _oneof_case_{} {} - -inline void Condition::SharedCtor(::_pb::Arena* arena) { - new (&_impl_) Impl_(internal_visibility(), arena); -} -Condition::~Condition() { - // @@protoc_insertion_point(destructor:io.deephaven.proto.backplane.grpc.Condition) - _internal_metadata_.Delete<::google::protobuf::UnknownFieldSet>(); - SharedDtor(); -} -inline void Condition::SharedDtor() { - ABSL_DCHECK(GetArena() == nullptr); - if (has_data()) { - clear_data(); - } - _impl_.~Impl_(); -} - -void Condition::clear_data() { -// @@protoc_insertion_point(one_of_clear_start:io.deephaven.proto.backplane.grpc.Condition) - ::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; - } - case DATA_NOT_SET: { - break; - } - } - _impl_._oneof_case_[0] = DATA_NOT_SET; -} - - -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_ = { - { - 0, // no _has_bits_ - 0, // no _extensions_ - 10, 0, // max_field_number, fast_idx_mask - offsetof(decltype(_table_), field_lookup_table), - 4294966272, // skipmap - offsetof(decltype(_table_), field_entries), - 10, // num_field_entries - 10, // num_aux_entries - offsetof(decltype(_table_), 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::Condition>(), // to_prefetch - #endif // PROTOBUF_PREFETCH_PARSE_TABLE - }, {{ - {::_pbi::TcParser::MiniParse, {}}, - }}, {{ - 65535, 65535 - }}, {{ - // .io.deephaven.proto.backplane.grpc.AndCondition and = 1; - {PROTOBUF_FIELD_OFFSET(Condition, _impl_.data_.and__), _Internal::kOneofCaseOffset + 0, 0, - (0 | ::_fl::kFcOneof | ::_fl::kMessage | ::_fl::kTvTable)}, - // .io.deephaven.proto.backplane.grpc.OrCondition or = 2; - {PROTOBUF_FIELD_OFFSET(Condition, _impl_.data_.or__), _Internal::kOneofCaseOffset + 0, 1, - (0 | ::_fl::kFcOneof | ::_fl::kMessage | ::_fl::kTvTable)}, - // .io.deephaven.proto.backplane.grpc.NotCondition not = 3; - {PROTOBUF_FIELD_OFFSET(Condition, _impl_.data_.not__), _Internal::kOneofCaseOffset + 0, 2, - (0 | ::_fl::kFcOneof | ::_fl::kMessage | ::_fl::kTvTable)}, - // .io.deephaven.proto.backplane.grpc.CompareCondition compare = 4; - {PROTOBUF_FIELD_OFFSET(Condition, _impl_.data_.compare_), _Internal::kOneofCaseOffset + 0, 3, - (0 | ::_fl::kFcOneof | ::_fl::kMessage | ::_fl::kTvTable)}, - // .io.deephaven.proto.backplane.grpc.InCondition in = 5; - {PROTOBUF_FIELD_OFFSET(Condition, _impl_.data_.in_), _Internal::kOneofCaseOffset + 0, 4, - (0 | ::_fl::kFcOneof | ::_fl::kMessage | ::_fl::kTvTable)}, - // .io.deephaven.proto.backplane.grpc.InvokeCondition invoke = 6; - {PROTOBUF_FIELD_OFFSET(Condition, _impl_.data_.invoke_), _Internal::kOneofCaseOffset + 0, 5, - (0 | ::_fl::kFcOneof | ::_fl::kMessage | ::_fl::kTvTable)}, - // .io.deephaven.proto.backplane.grpc.IsNullCondition is_null = 7; - {PROTOBUF_FIELD_OFFSET(Condition, _impl_.data_.is_null_), _Internal::kOneofCaseOffset + 0, 6, - (0 | ::_fl::kFcOneof | ::_fl::kMessage | ::_fl::kTvTable)}, - // .io.deephaven.proto.backplane.grpc.MatchesCondition matches = 8; - {PROTOBUF_FIELD_OFFSET(Condition, _impl_.data_.matches_), _Internal::kOneofCaseOffset + 0, 7, - (0 | ::_fl::kFcOneof | ::_fl::kMessage | ::_fl::kTvTable)}, - // .io.deephaven.proto.backplane.grpc.ContainsCondition contains = 9; - {PROTOBUF_FIELD_OFFSET(Condition, _impl_.data_.contains_), _Internal::kOneofCaseOffset + 0, 8, - (0 | ::_fl::kFcOneof | ::_fl::kMessage | ::_fl::kTvTable)}, - // .io.deephaven.proto.backplane.grpc.SearchCondition search = 10; - {PROTOBUF_FIELD_OFFSET(Condition, _impl_.data_.search_), _Internal::kOneofCaseOffset + 0, 9, - (0 | ::_fl::kFcOneof | ::_fl::kMessage | ::_fl::kTvTable)}, - }}, {{ - {::_pbi::TcParser::GetTable<::io::deephaven::proto::backplane::grpc::AndCondition>()}, - {::_pbi::TcParser::GetTable<::io::deephaven::proto::backplane::grpc::OrCondition>()}, - {::_pbi::TcParser::GetTable<::io::deephaven::proto::backplane::grpc::NotCondition>()}, - {::_pbi::TcParser::GetTable<::io::deephaven::proto::backplane::grpc::CompareCondition>()}, - {::_pbi::TcParser::GetTable<::io::deephaven::proto::backplane::grpc::InCondition>()}, - {::_pbi::TcParser::GetTable<::io::deephaven::proto::backplane::grpc::InvokeCondition>()}, - {::_pbi::TcParser::GetTable<::io::deephaven::proto::backplane::grpc::IsNullCondition>()}, - {::_pbi::TcParser::GetTable<::io::deephaven::proto::backplane::grpc::MatchesCondition>()}, - {::_pbi::TcParser::GetTable<::io::deephaven::proto::backplane::grpc::ContainsCondition>()}, - {::_pbi::TcParser::GetTable<::io::deephaven::proto::backplane::grpc::SearchCondition>()}, - }}, {{ - }}, -}; - -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; - - clear_data(); - _internal_metadata_.Clear<::google::protobuf::UnknownFieldSet>(); -} - -#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; - - 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; - } - - 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_); -} - -void Condition::CopyFrom(const Condition& from) { -// @@protoc_insertion_point(class_specific_copy_from_start:io.deephaven.proto.backplane.grpc.Condition) - if (&from == this) return; - Clear(); - MergeFrom(from); -} - - -void Condition::InternalSwap(Condition* PROTOBUF_RESTRICT other) { - using std::swap; - _internal_metadata_.InternalSwap(&other->_internal_metadata_); - swap(_impl_.data_, other->_impl_.data_); - swap(_impl_._oneof_case_[0], other->_impl_._oneof_case_[0]); -} - -::google::protobuf::Metadata Condition::GetMetadata() const { - return ::google::protobuf::Message::GetMetadataImpl(GetClassData()->full()); -} -// =================================================================== - -class AndCondition::_Internal { - public: -}; - -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 ::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_, from); - - // @@protoc_insertion_point(copy_constructor:io.deephaven.proto.backplane.grpc.AndCondition) -} -inline PROTOBUF_NDEBUG_INLINE AndCondition::Impl_::Impl_( - ::google::protobuf::internal::InternalVisibility visibility, - ::google::protobuf::Arena* arena) - : filters_{visibility, arena}, - _cached_size_{0} {} - -inline void AndCondition::SharedCtor(::_pb::Arena* arena) { - new (&_impl_) Impl_(internal_visibility(), arena); -} -AndCondition::~AndCondition() { - // @@protoc_insertion_point(destructor:io.deephaven.proto.backplane.grpc.AndCondition) - _internal_metadata_.Delete<::google::protobuf::UnknownFieldSet>(); - SharedDtor(); -} -inline void AndCondition::SharedDtor() { - ABSL_DCHECK(GetArena() == nullptr); - _impl_.~Impl_(); -} - -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_ = { - { - 0, // no _has_bits_ - 0, // no _extensions_ - 1, 0, // max_field_number, fast_idx_mask - offsetof(decltype(_table_), field_lookup_table), - 4294967294, // skipmap - offsetof(decltype(_table_), field_entries), - 1, // num_field_entries - 1, // num_aux_entries - offsetof(decltype(_table_), 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::AndCondition>(), // to_prefetch - #endif // PROTOBUF_PREFETCH_PARSE_TABLE - }, {{ - // repeated .io.deephaven.proto.backplane.grpc.Condition filters = 1; - {::_pbi::TcParser::FastMtR1, - {10, 63, 0, PROTOBUF_FIELD_OFFSET(AndCondition, _impl_.filters_)}}, - }}, {{ - 65535, 65535 - }}, {{ - // repeated .io.deephaven.proto.backplane.grpc.Condition filters = 1; - {PROTOBUF_FIELD_OFFSET(AndCondition, _impl_.filters_), 0, 0, - (0 | ::_fl::kFcRepeated | ::_fl::kMessage | ::_fl::kTvTable)}, - }}, {{ - {::_pbi::TcParser::GetTable<::io::deephaven::proto::backplane::grpc::Condition>()}, - }}, {{ - }}, -}; - -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; - - _impl_.filters_.Clear(); - _internal_metadata_.Clear<::google::protobuf::UnknownFieldSet>(); -} - -#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) - ABSL_DCHECK_NE(&from, _this); - ::uint32_t cached_has_bits = 0; - (void) cached_has_bits; - - _this->_internal_mutable_filters()->MergeFrom( - from._internal_filters()); - _this->_internal_metadata_.MergeFrom<::google::protobuf::UnknownFieldSet>(from._internal_metadata_); -} - -void AndCondition::CopyFrom(const AndCondition& from) { -// @@protoc_insertion_point(class_specific_copy_from_start:io.deephaven.proto.backplane.grpc.AndCondition) - if (&from == this) return; - Clear(); - MergeFrom(from); -} - - -void AndCondition::InternalSwap(AndCondition* PROTOBUF_RESTRICT other) { - using std::swap; - _internal_metadata_.InternalSwap(&other->_internal_metadata_); - _impl_.filters_.InternalSwap(&other->_impl_.filters_); -} - -::google::protobuf::Metadata AndCondition::GetMetadata() const { - return ::google::protobuf::Message::GetMetadataImpl(GetClassData()->full()); -} -// =================================================================== - -class OrCondition::_Internal { - public: -}; - -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 ::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_, from); - - // @@protoc_insertion_point(copy_constructor:io.deephaven.proto.backplane.grpc.OrCondition) -} -inline PROTOBUF_NDEBUG_INLINE OrCondition::Impl_::Impl_( - ::google::protobuf::internal::InternalVisibility visibility, - ::google::protobuf::Arena* arena) - : filters_{visibility, arena}, - _cached_size_{0} {} - -inline void OrCondition::SharedCtor(::_pb::Arena* arena) { - new (&_impl_) Impl_(internal_visibility(), arena); -} -OrCondition::~OrCondition() { - // @@protoc_insertion_point(destructor:io.deephaven.proto.backplane.grpc.OrCondition) - _internal_metadata_.Delete<::google::protobuf::UnknownFieldSet>(); - SharedDtor(); -} -inline void OrCondition::SharedDtor() { - ABSL_DCHECK(GetArena() == nullptr); - _impl_.~Impl_(); -} - -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(); -} -PROTOBUF_CONSTINIT PROTOBUF_ATTRIBUTE_INIT_PRIORITY1 -const ::_pbi::TcParseTable<0, 1, 1, 0, 2> OrCondition::_table_ = { - { - 0, // no _has_bits_ - 0, // no _extensions_ - 1, 0, // max_field_number, fast_idx_mask - offsetof(decltype(_table_), field_lookup_table), - 4294967294, // skipmap - offsetof(decltype(_table_), field_entries), - 1, // num_field_entries - 1, // num_aux_entries - offsetof(decltype(_table_), 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::OrCondition>(), // to_prefetch - #endif // PROTOBUF_PREFETCH_PARSE_TABLE - }, {{ - // repeated .io.deephaven.proto.backplane.grpc.Condition filters = 1; - {::_pbi::TcParser::FastMtR1, - {10, 63, 0, PROTOBUF_FIELD_OFFSET(OrCondition, _impl_.filters_)}}, - }}, {{ - 65535, 65535 - }}, {{ - // repeated .io.deephaven.proto.backplane.grpc.Condition filters = 1; - {PROTOBUF_FIELD_OFFSET(OrCondition, _impl_.filters_), 0, 0, - (0 | ::_fl::kFcRepeated | ::_fl::kMessage | ::_fl::kTvTable)}, - }}, {{ - {::_pbi::TcParser::GetTable<::io::deephaven::proto::backplane::grpc::Condition>()}, - }}, {{ - }}, -}; - -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; - - _impl_.filters_.Clear(); - _internal_metadata_.Clear<::google::protobuf::UnknownFieldSet>(); -} - -#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) - ABSL_DCHECK_NE(&from, _this); - ::uint32_t cached_has_bits = 0; - (void) cached_has_bits; - - _this->_internal_mutable_filters()->MergeFrom( - from._internal_filters()); - _this->_internal_metadata_.MergeFrom<::google::protobuf::UnknownFieldSet>(from._internal_metadata_); -} - -void OrCondition::CopyFrom(const OrCondition& from) { -// @@protoc_insertion_point(class_specific_copy_from_start:io.deephaven.proto.backplane.grpc.OrCondition) - if (&from == this) return; - Clear(); - MergeFrom(from); -} - - -void OrCondition::InternalSwap(OrCondition* PROTOBUF_RESTRICT other) { - using std::swap; - _internal_metadata_.InternalSwap(&other->_internal_metadata_); - _impl_.filters_.InternalSwap(&other->_impl_.filters_); -} - -::google::protobuf::Metadata OrCondition::GetMetadata() const { - return ::google::protobuf::Message::GetMetadataImpl(GetClassData()->full()); -} -// =================================================================== - -class NotCondition::_Internal { - public: - using HasBits = - decltype(std::declval()._impl_._has_bits_); - static constexpr ::int32_t kHasBitsOffset = - 8 * PROTOBUF_FIELD_OFFSET(NotCondition, _impl_._has_bits_); -}; - -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 ::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_, from); - ::uint32_t cached_has_bits = _impl_._has_bits_[0]; - _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) -} -inline PROTOBUF_NDEBUG_INLINE NotCondition::Impl_::Impl_( - ::google::protobuf::internal::InternalVisibility visibility, - ::google::protobuf::Arena* arena) - : _cached_size_{0} {} - -inline void NotCondition::SharedCtor(::_pb::Arena* arena) { - new (&_impl_) Impl_(internal_visibility(), arena); - _impl_.filter_ = {}; -} -NotCondition::~NotCondition() { - // @@protoc_insertion_point(destructor:io.deephaven.proto.backplane.grpc.NotCondition) - _internal_metadata_.Delete<::google::protobuf::UnknownFieldSet>(); - SharedDtor(); -} -inline void NotCondition::SharedDtor() { - ABSL_DCHECK(GetArena() == nullptr); - delete _impl_.filter_; - _impl_.~Impl_(); -} - -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_ = { - { - PROTOBUF_FIELD_OFFSET(NotCondition, _impl_._has_bits_), - 0, // no _extensions_ - 1, 0, // max_field_number, fast_idx_mask - offsetof(decltype(_table_), field_lookup_table), - 4294967294, // skipmap - offsetof(decltype(_table_), field_entries), - 1, // num_field_entries - 1, // num_aux_entries - offsetof(decltype(_table_), 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::NotCondition>(), // to_prefetch - #endif // PROTOBUF_PREFETCH_PARSE_TABLE - }, {{ - // .io.deephaven.proto.backplane.grpc.Condition filter = 1; - {::_pbi::TcParser::FastMtS1, - {10, 0, 0, PROTOBUF_FIELD_OFFSET(NotCondition, _impl_.filter_)}}, - }}, {{ - 65535, 65535 - }}, {{ - // .io.deephaven.proto.backplane.grpc.Condition filter = 1; - {PROTOBUF_FIELD_OFFSET(NotCondition, _impl_.filter_), _Internal::kHasBitsOffset + 0, 0, - (0 | ::_fl::kFcOptional | ::_fl::kMessage | ::_fl::kTvTable)}, - }}, {{ - {::_pbi::TcParser::GetTable<::io::deephaven::proto::backplane::grpc::Condition>()}, - }}, {{ - }}, -}; - -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; - - 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>(); -} - -#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; - - 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_); -} - -void NotCondition::CopyFrom(const NotCondition& from) { -// @@protoc_insertion_point(class_specific_copy_from_start:io.deephaven.proto.backplane.grpc.NotCondition) - if (&from == this) return; - Clear(); - MergeFrom(from); -} - - -void NotCondition::InternalSwap(NotCondition* PROTOBUF_RESTRICT other) { - using std::swap; - _internal_metadata_.InternalSwap(&other->_internal_metadata_); - swap(_impl_._has_bits_[0], other->_impl_._has_bits_[0]); - swap(_impl_.filter_, other->_impl_.filter_); -} - -::google::protobuf::Metadata NotCondition::GetMetadata() const { - return ::google::protobuf::Message::GetMetadataImpl(GetClassData()->full()); -} -// =================================================================== - -class CompareCondition::_Internal { - public: - using HasBits = - decltype(std::declval()._impl_._has_bits_); - static constexpr ::int32_t kHasBitsOffset = - 8 * PROTOBUF_FIELD_OFFSET(CompareCondition, _impl_._has_bits_); -}; - -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 ::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_, from); - ::uint32_t cached_has_bits = _impl_._has_bits_[0]; - _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_) + - offsetof(Impl_, operation_), - offsetof(Impl_, case_sensitivity_) - - offsetof(Impl_, operation_) + - sizeof(Impl_::case_sensitivity_)); - - // @@protoc_insertion_point(copy_constructor:io.deephaven.proto.backplane.grpc.CompareCondition) -} -inline PROTOBUF_NDEBUG_INLINE CompareCondition::Impl_::Impl_( - ::google::protobuf::internal::InternalVisibility visibility, - ::google::protobuf::Arena* arena) - : _cached_size_{0} {} - -inline void CompareCondition::SharedCtor(::_pb::Arena* arena) { - new (&_impl_) Impl_(internal_visibility(), arena); - ::memset(reinterpret_cast(&_impl_) + - offsetof(Impl_, lhs_), - 0, - offsetof(Impl_, case_sensitivity_) - - offsetof(Impl_, lhs_) + - sizeof(Impl_::case_sensitivity_)); -} -CompareCondition::~CompareCondition() { - // @@protoc_insertion_point(destructor:io.deephaven.proto.backplane.grpc.CompareCondition) - _internal_metadata_.Delete<::google::protobuf::UnknownFieldSet>(); - SharedDtor(); -} -inline void CompareCondition::SharedDtor() { - ABSL_DCHECK(GetArena() == nullptr); - delete _impl_.lhs_; - delete _impl_.rhs_; - _impl_.~Impl_(); -} - -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_ = { - { - PROTOBUF_FIELD_OFFSET(CompareCondition, _impl_._has_bits_), - 0, // no _extensions_ - 4, 24, // max_field_number, fast_idx_mask - offsetof(decltype(_table_), field_lookup_table), - 4294967280, // skipmap - offsetof(decltype(_table_), field_entries), - 4, // num_field_entries - 2, // num_aux_entries - offsetof(decltype(_table_), 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::CompareCondition>(), // to_prefetch - #endif // PROTOBUF_PREFETCH_PARSE_TABLE - }, {{ - // .io.deephaven.proto.backplane.grpc.Value rhs = 4; - {::_pbi::TcParser::FastMtS1, - {34, 1, 1, PROTOBUF_FIELD_OFFSET(CompareCondition, _impl_.rhs_)}}, - // .io.deephaven.proto.backplane.grpc.CompareCondition.CompareOperation operation = 1; - {::_pbi::TcParser::SingularVarintNoZag1<::uint32_t, offsetof(CompareCondition, _impl_.operation_), 63>(), - {8, 63, 0, PROTOBUF_FIELD_OFFSET(CompareCondition, _impl_.operation_)}}, - // .io.deephaven.proto.backplane.grpc.CaseSensitivity case_sensitivity = 2; - {::_pbi::TcParser::SingularVarintNoZag1<::uint32_t, offsetof(CompareCondition, _impl_.case_sensitivity_), 63>(), - {16, 63, 0, PROTOBUF_FIELD_OFFSET(CompareCondition, _impl_.case_sensitivity_)}}, - // .io.deephaven.proto.backplane.grpc.Value lhs = 3; - {::_pbi::TcParser::FastMtS1, - {26, 0, 0, PROTOBUF_FIELD_OFFSET(CompareCondition, _impl_.lhs_)}}, - }}, {{ - 65535, 65535 - }}, {{ - // .io.deephaven.proto.backplane.grpc.CompareCondition.CompareOperation operation = 1; - {PROTOBUF_FIELD_OFFSET(CompareCondition, _impl_.operation_), -1, 0, - (0 | ::_fl::kFcSingular | ::_fl::kOpenEnum)}, - // .io.deephaven.proto.backplane.grpc.CaseSensitivity case_sensitivity = 2; - {PROTOBUF_FIELD_OFFSET(CompareCondition, _impl_.case_sensitivity_), -1, 0, - (0 | ::_fl::kFcSingular | ::_fl::kOpenEnum)}, - // .io.deephaven.proto.backplane.grpc.Value lhs = 3; - {PROTOBUF_FIELD_OFFSET(CompareCondition, _impl_.lhs_), _Internal::kHasBitsOffset + 0, 0, - (0 | ::_fl::kFcOptional | ::_fl::kMessage | ::_fl::kTvTable)}, - // .io.deephaven.proto.backplane.grpc.Value rhs = 4; - {PROTOBUF_FIELD_OFFSET(CompareCondition, _impl_.rhs_), _Internal::kHasBitsOffset + 1, 1, - (0 | ::_fl::kFcOptional | ::_fl::kMessage | ::_fl::kTvTable)}, - }}, {{ - {::_pbi::TcParser::GetTable<::io::deephaven::proto::backplane::grpc::Value>()}, - {::_pbi::TcParser::GetTable<::io::deephaven::proto::backplane::grpc::Value>()}, - }}, {{ - }}, -}; - -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) { - 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>(); -} - -#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; - (void) cached_has_bits; - - cached_has_bits = from._impl_._has_bits_[0]; - if (cached_has_bits & 0x00000003u) { - if (cached_has_bits & 0x00000001u) { - 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) { - 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->_impl_.operation_ = from._impl_.operation_; - } - if (from._internal_case_sensitivity() != 0) { - _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_); -} - -void CompareCondition::CopyFrom(const CompareCondition& from) { -// @@protoc_insertion_point(class_specific_copy_from_start:io.deephaven.proto.backplane.grpc.CompareCondition) - if (&from == this) return; - Clear(); - MergeFrom(from); -} - - -void CompareCondition::InternalSwap(CompareCondition* PROTOBUF_RESTRICT other) { - using std::swap; - _internal_metadata_.InternalSwap(&other->_internal_metadata_); - swap(_impl_._has_bits_[0], other->_impl_._has_bits_[0]); - ::google::protobuf::internal::memswap< - PROTOBUF_FIELD_OFFSET(CompareCondition, _impl_.case_sensitivity_) - + sizeof(CompareCondition::_impl_.case_sensitivity_) - - PROTOBUF_FIELD_OFFSET(CompareCondition, _impl_.lhs_)>( - reinterpret_cast(&_impl_.lhs_), - reinterpret_cast(&other->_impl_.lhs_)); -} - -::google::protobuf::Metadata CompareCondition::GetMetadata() const { - return ::google::protobuf::Message::GetMetadataImpl(GetClassData()->full()); -} -// =================================================================== - -class InCondition::_Internal { - public: - using HasBits = - decltype(std::declval()._impl_._has_bits_); - static constexpr ::int32_t kHasBitsOffset = - 8 * PROTOBUF_FIELD_OFFSET(InCondition, _impl_._has_bits_); -}; - -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 ::io::deephaven::proto::backplane::grpc::InCondition& from_msg) - : _has_bits_{from._has_bits_}, - _cached_size_{0}, - candidates_{visibility, arena, from.candidates_} {} - -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_, from); - ::uint32_t cached_has_bits = _impl_._has_bits_[0]; - _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_) + - offsetof(Impl_, case_sensitivity_), - offsetof(Impl_, match_type_) - - offsetof(Impl_, case_sensitivity_) + - sizeof(Impl_::match_type_)); - - // @@protoc_insertion_point(copy_constructor:io.deephaven.proto.backplane.grpc.InCondition) -} -inline PROTOBUF_NDEBUG_INLINE InCondition::Impl_::Impl_( - ::google::protobuf::internal::InternalVisibility visibility, - ::google::protobuf::Arena* arena) - : _cached_size_{0}, - candidates_{visibility, arena} {} - -inline void InCondition::SharedCtor(::_pb::Arena* arena) { - new (&_impl_) Impl_(internal_visibility(), arena); - ::memset(reinterpret_cast(&_impl_) + - offsetof(Impl_, target_), - 0, - offsetof(Impl_, match_type_) - - offsetof(Impl_, target_) + - sizeof(Impl_::match_type_)); -} -InCondition::~InCondition() { - // @@protoc_insertion_point(destructor:io.deephaven.proto.backplane.grpc.InCondition) - _internal_metadata_.Delete<::google::protobuf::UnknownFieldSet>(); - SharedDtor(); -} -inline void InCondition::SharedDtor() { - ABSL_DCHECK(GetArena() == nullptr); - delete _impl_.target_; - _impl_.~Impl_(); -} - -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_ = { - { - PROTOBUF_FIELD_OFFSET(InCondition, _impl_._has_bits_), - 0, // no _extensions_ - 4, 24, // max_field_number, fast_idx_mask - offsetof(decltype(_table_), field_lookup_table), - 4294967280, // skipmap - offsetof(decltype(_table_), field_entries), - 4, // num_field_entries - 2, // num_aux_entries - offsetof(decltype(_table_), 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::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>(), - {32, 63, 0, PROTOBUF_FIELD_OFFSET(InCondition, _impl_.match_type_)}}, - // .io.deephaven.proto.backplane.grpc.Value target = 1; - {::_pbi::TcParser::FastMtS1, - {10, 0, 0, PROTOBUF_FIELD_OFFSET(InCondition, _impl_.target_)}}, - // repeated .io.deephaven.proto.backplane.grpc.Value candidates = 2; - {::_pbi::TcParser::FastMtR1, - {18, 63, 1, PROTOBUF_FIELD_OFFSET(InCondition, _impl_.candidates_)}}, - // .io.deephaven.proto.backplane.grpc.CaseSensitivity case_sensitivity = 3; - {::_pbi::TcParser::SingularVarintNoZag1<::uint32_t, offsetof(InCondition, _impl_.case_sensitivity_), 63>(), - {24, 63, 0, PROTOBUF_FIELD_OFFSET(InCondition, _impl_.case_sensitivity_)}}, - }}, {{ - 65535, 65535 - }}, {{ - // .io.deephaven.proto.backplane.grpc.Value target = 1; - {PROTOBUF_FIELD_OFFSET(InCondition, _impl_.target_), _Internal::kHasBitsOffset + 0, 0, - (0 | ::_fl::kFcOptional | ::_fl::kMessage | ::_fl::kTvTable)}, - // repeated .io.deephaven.proto.backplane.grpc.Value candidates = 2; - {PROTOBUF_FIELD_OFFSET(InCondition, _impl_.candidates_), -1, 1, - (0 | ::_fl::kFcRepeated | ::_fl::kMessage | ::_fl::kTvTable)}, - // .io.deephaven.proto.backplane.grpc.CaseSensitivity case_sensitivity = 3; - {PROTOBUF_FIELD_OFFSET(InCondition, _impl_.case_sensitivity_), -1, 0, - (0 | ::_fl::kFcSingular | ::_fl::kOpenEnum)}, - // .io.deephaven.proto.backplane.grpc.MatchType match_type = 4; - {PROTOBUF_FIELD_OFFSET(InCondition, _impl_.match_type_), -1, 0, - (0 | ::_fl::kFcSingular | ::_fl::kOpenEnum)}, - }}, {{ - {::_pbi::TcParser::GetTable<::io::deephaven::proto::backplane::grpc::Value>()}, - {::_pbi::TcParser::GetTable<::io::deephaven::proto::backplane::grpc::Value>()}, - }}, {{ - }}, -}; - -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; - - _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>(); -} - -#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; - (void) cached_has_bits; - - _this->_internal_mutable_candidates()->MergeFrom( - from._internal_candidates()); - 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->_impl_.case_sensitivity_ = from._impl_.case_sensitivity_; - } - if (from._internal_match_type() != 0) { - _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_); -} - -void InCondition::CopyFrom(const InCondition& from) { -// @@protoc_insertion_point(class_specific_copy_from_start:io.deephaven.proto.backplane.grpc.InCondition) - if (&from == this) return; - Clear(); - MergeFrom(from); -} - - -void InCondition::InternalSwap(InCondition* PROTOBUF_RESTRICT other) { - using std::swap; - _internal_metadata_.InternalSwap(&other->_internal_metadata_); - swap(_impl_._has_bits_[0], other->_impl_._has_bits_[0]); - _impl_.candidates_.InternalSwap(&other->_impl_.candidates_); - ::google::protobuf::internal::memswap< - PROTOBUF_FIELD_OFFSET(InCondition, _impl_.match_type_) - + sizeof(InCondition::_impl_.match_type_) - - PROTOBUF_FIELD_OFFSET(InCondition, _impl_.target_)>( - reinterpret_cast(&_impl_.target_), - reinterpret_cast(&other->_impl_.target_)); -} - -::google::protobuf::Metadata InCondition::GetMetadata() const { - return ::google::protobuf::Message::GetMetadataImpl(GetClassData()->full()); -} -// =================================================================== - -class InvokeCondition::_Internal { - public: - using HasBits = - decltype(std::declval()._impl_._has_bits_); - static constexpr ::int32_t kHasBitsOffset = - 8 * PROTOBUF_FIELD_OFFSET(InvokeCondition, _impl_._has_bits_); -}; - -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 ::io::deephaven::proto::backplane::grpc::InvokeCondition& from_msg) - : _has_bits_{from._has_bits_}, - _cached_size_{0}, - arguments_{visibility, arena, from.arguments_}, - method_(arena, from.method_) {} - -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_, from); - ::uint32_t cached_has_bits = _impl_._has_bits_[0]; - _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) -} -inline PROTOBUF_NDEBUG_INLINE InvokeCondition::Impl_::Impl_( - ::google::protobuf::internal::InternalVisibility visibility, - ::google::protobuf::Arena* arena) - : _cached_size_{0}, - arguments_{visibility, arena}, - method_(arena) {} - -inline void InvokeCondition::SharedCtor(::_pb::Arena* arena) { - new (&_impl_) Impl_(internal_visibility(), arena); - _impl_.target_ = {}; -} -InvokeCondition::~InvokeCondition() { - // @@protoc_insertion_point(destructor:io.deephaven.proto.backplane.grpc.InvokeCondition) - _internal_metadata_.Delete<::google::protobuf::UnknownFieldSet>(); - SharedDtor(); -} -inline void InvokeCondition::SharedDtor() { - ABSL_DCHECK(GetArena() == nullptr); - _impl_.method_.Destroy(); - delete _impl_.target_; - _impl_.~Impl_(); -} - -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_ = { - { - PROTOBUF_FIELD_OFFSET(InvokeCondition, _impl_._has_bits_), - 0, // no _extensions_ - 3, 24, // max_field_number, fast_idx_mask - offsetof(decltype(_table_), field_lookup_table), - 4294967288, // skipmap - offsetof(decltype(_table_), field_entries), - 3, // num_field_entries - 2, // num_aux_entries - offsetof(decltype(_table_), 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::InvokeCondition>(), // to_prefetch - #endif // PROTOBUF_PREFETCH_PARSE_TABLE - }, {{ - {::_pbi::TcParser::MiniParse, {}}, - // string method = 1; - {::_pbi::TcParser::FastUS1, - {10, 63, 0, PROTOBUF_FIELD_OFFSET(InvokeCondition, _impl_.method_)}}, - // .io.deephaven.proto.backplane.grpc.Value target = 2; - {::_pbi::TcParser::FastMtS1, - {18, 0, 0, PROTOBUF_FIELD_OFFSET(InvokeCondition, _impl_.target_)}}, - // repeated .io.deephaven.proto.backplane.grpc.Value arguments = 3; - {::_pbi::TcParser::FastMtR1, - {26, 63, 1, PROTOBUF_FIELD_OFFSET(InvokeCondition, _impl_.arguments_)}}, - }}, {{ - 65535, 65535 - }}, {{ - // string method = 1; - {PROTOBUF_FIELD_OFFSET(InvokeCondition, _impl_.method_), -1, 0, - (0 | ::_fl::kFcSingular | ::_fl::kUtf8String | ::_fl::kRepAString)}, - // .io.deephaven.proto.backplane.grpc.Value target = 2; - {PROTOBUF_FIELD_OFFSET(InvokeCondition, _impl_.target_), _Internal::kHasBitsOffset + 0, 0, - (0 | ::_fl::kFcOptional | ::_fl::kMessage | ::_fl::kTvTable)}, - // repeated .io.deephaven.proto.backplane.grpc.Value arguments = 3; - {PROTOBUF_FIELD_OFFSET(InvokeCondition, _impl_.arguments_), -1, 1, - (0 | ::_fl::kFcRepeated | ::_fl::kMessage | ::_fl::kTvTable)}, - }}, {{ - {::_pbi::TcParser::GetTable<::io::deephaven::proto::backplane::grpc::Value>()}, - {::_pbi::TcParser::GetTable<::io::deephaven::proto::backplane::grpc::Value>()}, - }}, {{ - "\61\6\0\0\0\0\0\0" - "io.deephaven.proto.backplane.grpc.InvokeCondition" - "method" - }}, -}; - -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; - - _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>(); -} - -#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; - (void) cached_has_bits; - - _this->_internal_mutable_arguments()->MergeFrom( - from._internal_arguments()); - if (!from._internal_method().empty()) { - _this->_internal_set_method(from._internal_method()); - } - 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_); -} - -void InvokeCondition::CopyFrom(const InvokeCondition& from) { -// @@protoc_insertion_point(class_specific_copy_from_start:io.deephaven.proto.backplane.grpc.InvokeCondition) - if (&from == this) return; - Clear(); - MergeFrom(from); -} - - -void InvokeCondition::InternalSwap(InvokeCondition* PROTOBUF_RESTRICT other) { - using std::swap; - auto* arena = GetArena(); - ABSL_DCHECK_EQ(arena, other->GetArena()); - _internal_metadata_.InternalSwap(&other->_internal_metadata_); - swap(_impl_._has_bits_[0], other->_impl_._has_bits_[0]); - _impl_.arguments_.InternalSwap(&other->_impl_.arguments_); - ::_pbi::ArenaStringPtr::InternalSwap(&_impl_.method_, &other->_impl_.method_, arena); - swap(_impl_.target_, other->_impl_.target_); -} - -::google::protobuf::Metadata InvokeCondition::GetMetadata() const { - return ::google::protobuf::Message::GetMetadataImpl(GetClassData()->full()); -} -// =================================================================== - -class IsNullCondition::_Internal { - public: - using HasBits = - decltype(std::declval()._impl_._has_bits_); - static constexpr ::int32_t kHasBitsOffset = - 8 * PROTOBUF_FIELD_OFFSET(IsNullCondition, _impl_._has_bits_); -}; - -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 ::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_, from); - ::uint32_t cached_has_bits = _impl_._has_bits_[0]; - _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) -} -inline PROTOBUF_NDEBUG_INLINE IsNullCondition::Impl_::Impl_( - ::google::protobuf::internal::InternalVisibility visibility, - ::google::protobuf::Arena* arena) - : _cached_size_{0} {} - -inline void IsNullCondition::SharedCtor(::_pb::Arena* arena) { - new (&_impl_) Impl_(internal_visibility(), arena); - _impl_.reference_ = {}; -} -IsNullCondition::~IsNullCondition() { - // @@protoc_insertion_point(destructor:io.deephaven.proto.backplane.grpc.IsNullCondition) - _internal_metadata_.Delete<::google::protobuf::UnknownFieldSet>(); - SharedDtor(); -} -inline void IsNullCondition::SharedDtor() { - ABSL_DCHECK(GetArena() == nullptr); - delete _impl_.reference_; - _impl_.~Impl_(); -} - -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_ = { - { - PROTOBUF_FIELD_OFFSET(IsNullCondition, _impl_._has_bits_), - 0, // no _extensions_ - 1, 0, // max_field_number, fast_idx_mask - offsetof(decltype(_table_), field_lookup_table), - 4294967294, // skipmap - offsetof(decltype(_table_), field_entries), - 1, // num_field_entries - 1, // num_aux_entries - offsetof(decltype(_table_), 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::IsNullCondition>(), // to_prefetch - #endif // PROTOBUF_PREFETCH_PARSE_TABLE - }, {{ - // .io.deephaven.proto.backplane.grpc.Reference reference = 1; - {::_pbi::TcParser::FastMtS1, - {10, 0, 0, PROTOBUF_FIELD_OFFSET(IsNullCondition, _impl_.reference_)}}, - }}, {{ - 65535, 65535 - }}, {{ - // .io.deephaven.proto.backplane.grpc.Reference reference = 1; - {PROTOBUF_FIELD_OFFSET(IsNullCondition, _impl_.reference_), _Internal::kHasBitsOffset + 0, 0, - (0 | ::_fl::kFcOptional | ::_fl::kMessage | ::_fl::kTvTable)}, - }}, {{ - {::_pbi::TcParser::GetTable<::io::deephaven::proto::backplane::grpc::Reference>()}, - }}, {{ - }}, -}; - -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; - - 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>(); -} - -#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; - - 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_); -} - -void IsNullCondition::CopyFrom(const IsNullCondition& from) { -// @@protoc_insertion_point(class_specific_copy_from_start:io.deephaven.proto.backplane.grpc.IsNullCondition) - if (&from == this) return; - Clear(); - MergeFrom(from); -} - - -void IsNullCondition::InternalSwap(IsNullCondition* PROTOBUF_RESTRICT other) { - using std::swap; - _internal_metadata_.InternalSwap(&other->_internal_metadata_); - swap(_impl_._has_bits_[0], other->_impl_._has_bits_[0]); - swap(_impl_.reference_, other->_impl_.reference_); -} - -::google::protobuf::Metadata IsNullCondition::GetMetadata() const { - return ::google::protobuf::Message::GetMetadataImpl(GetClassData()->full()); -} -// =================================================================== - -class MatchesCondition::_Internal { - public: - using HasBits = - decltype(std::declval()._impl_._has_bits_); - static constexpr ::int32_t kHasBitsOffset = - 8 * PROTOBUF_FIELD_OFFSET(MatchesCondition, _impl_._has_bits_); -}; - -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 ::io::deephaven::proto::backplane::grpc::MatchesCondition& from_msg) - : _has_bits_{from._has_bits_}, - _cached_size_{0}, - regex_(arena, from.regex_) {} - -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_, from); - ::uint32_t cached_has_bits = _impl_._has_bits_[0]; - _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_) + - offsetof(Impl_, case_sensitivity_), - offsetof(Impl_, match_type_) - - offsetof(Impl_, case_sensitivity_) + - sizeof(Impl_::match_type_)); - - // @@protoc_insertion_point(copy_constructor:io.deephaven.proto.backplane.grpc.MatchesCondition) -} -inline PROTOBUF_NDEBUG_INLINE MatchesCondition::Impl_::Impl_( - ::google::protobuf::internal::InternalVisibility visibility, - ::google::protobuf::Arena* arena) - : _cached_size_{0}, - regex_(arena) {} - -inline void MatchesCondition::SharedCtor(::_pb::Arena* arena) { - new (&_impl_) Impl_(internal_visibility(), arena); - ::memset(reinterpret_cast(&_impl_) + - offsetof(Impl_, reference_), - 0, - offsetof(Impl_, match_type_) - - offsetof(Impl_, reference_) + - sizeof(Impl_::match_type_)); -} -MatchesCondition::~MatchesCondition() { - // @@protoc_insertion_point(destructor:io.deephaven.proto.backplane.grpc.MatchesCondition) - _internal_metadata_.Delete<::google::protobuf::UnknownFieldSet>(); - SharedDtor(); -} -inline void MatchesCondition::SharedDtor() { - ABSL_DCHECK(GetArena() == nullptr); - _impl_.regex_.Destroy(); - delete _impl_.reference_; - _impl_.~Impl_(); -} - -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_ = { - { - PROTOBUF_FIELD_OFFSET(MatchesCondition, _impl_._has_bits_), - 0, // no _extensions_ - 4, 24, // max_field_number, fast_idx_mask - offsetof(decltype(_table_), field_lookup_table), - 4294967280, // skipmap - offsetof(decltype(_table_), field_entries), - 4, // num_field_entries - 1, // num_aux_entries - offsetof(decltype(_table_), 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::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>(), - {32, 63, 0, PROTOBUF_FIELD_OFFSET(MatchesCondition, _impl_.match_type_)}}, - // .io.deephaven.proto.backplane.grpc.Reference reference = 1; - {::_pbi::TcParser::FastMtS1, - {10, 0, 0, PROTOBUF_FIELD_OFFSET(MatchesCondition, _impl_.reference_)}}, - // string regex = 2; - {::_pbi::TcParser::FastUS1, - {18, 63, 0, PROTOBUF_FIELD_OFFSET(MatchesCondition, _impl_.regex_)}}, - // .io.deephaven.proto.backplane.grpc.CaseSensitivity case_sensitivity = 3; - {::_pbi::TcParser::SingularVarintNoZag1<::uint32_t, offsetof(MatchesCondition, _impl_.case_sensitivity_), 63>(), - {24, 63, 0, PROTOBUF_FIELD_OFFSET(MatchesCondition, _impl_.case_sensitivity_)}}, - }}, {{ - 65535, 65535 - }}, {{ - // .io.deephaven.proto.backplane.grpc.Reference reference = 1; - {PROTOBUF_FIELD_OFFSET(MatchesCondition, _impl_.reference_), _Internal::kHasBitsOffset + 0, 0, - (0 | ::_fl::kFcOptional | ::_fl::kMessage | ::_fl::kTvTable)}, - // string regex = 2; - {PROTOBUF_FIELD_OFFSET(MatchesCondition, _impl_.regex_), -1, 0, - (0 | ::_fl::kFcSingular | ::_fl::kUtf8String | ::_fl::kRepAString)}, - // .io.deephaven.proto.backplane.grpc.CaseSensitivity case_sensitivity = 3; - {PROTOBUF_FIELD_OFFSET(MatchesCondition, _impl_.case_sensitivity_), -1, 0, - (0 | ::_fl::kFcSingular | ::_fl::kOpenEnum)}, - // .io.deephaven.proto.backplane.grpc.MatchType match_type = 4; - {PROTOBUF_FIELD_OFFSET(MatchesCondition, _impl_.match_type_), -1, 0, - (0 | ::_fl::kFcSingular | ::_fl::kOpenEnum)}, - }}, {{ - {::_pbi::TcParser::GetTable<::io::deephaven::proto::backplane::grpc::Reference>()}, - }}, {{ - "\62\0\5\0\0\0\0\0" - "io.deephaven.proto.backplane.grpc.MatchesCondition" - "regex" - }}, -}; - -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; - - _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>(); -} - -#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; - (void) cached_has_bits; - - if (!from._internal_regex().empty()) { - _this->_internal_set_regex(from._internal_regex()); - } - 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->_impl_.case_sensitivity_ = from._impl_.case_sensitivity_; - } - if (from._internal_match_type() != 0) { - _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_); -} - -void MatchesCondition::CopyFrom(const MatchesCondition& from) { -// @@protoc_insertion_point(class_specific_copy_from_start:io.deephaven.proto.backplane.grpc.MatchesCondition) - if (&from == this) return; - Clear(); - MergeFrom(from); -} - - -void MatchesCondition::InternalSwap(MatchesCondition* PROTOBUF_RESTRICT other) { - using std::swap; - auto* arena = GetArena(); - ABSL_DCHECK_EQ(arena, other->GetArena()); - _internal_metadata_.InternalSwap(&other->_internal_metadata_); - swap(_impl_._has_bits_[0], other->_impl_._has_bits_[0]); - ::_pbi::ArenaStringPtr::InternalSwap(&_impl_.regex_, &other->_impl_.regex_, arena); - ::google::protobuf::internal::memswap< - PROTOBUF_FIELD_OFFSET(MatchesCondition, _impl_.match_type_) - + sizeof(MatchesCondition::_impl_.match_type_) - - PROTOBUF_FIELD_OFFSET(MatchesCondition, _impl_.reference_)>( - reinterpret_cast(&_impl_.reference_), - reinterpret_cast(&other->_impl_.reference_)); -} - -::google::protobuf::Metadata MatchesCondition::GetMetadata() const { - return ::google::protobuf::Message::GetMetadataImpl(GetClassData()->full()); -} -// =================================================================== - -class ContainsCondition::_Internal { - public: - using HasBits = - decltype(std::declval()._impl_._has_bits_); - static constexpr ::int32_t kHasBitsOffset = - 8 * PROTOBUF_FIELD_OFFSET(ContainsCondition, _impl_._has_bits_); -}; - -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 ::io::deephaven::proto::backplane::grpc::ContainsCondition& from_msg) - : _has_bits_{from._has_bits_}, - _cached_size_{0}, - search_string_(arena, from.search_string_) {} - -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_, from); - ::uint32_t cached_has_bits = _impl_._has_bits_[0]; - _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_) + - offsetof(Impl_, case_sensitivity_), - offsetof(Impl_, match_type_) - - offsetof(Impl_, case_sensitivity_) + - sizeof(Impl_::match_type_)); - - // @@protoc_insertion_point(copy_constructor:io.deephaven.proto.backplane.grpc.ContainsCondition) -} -inline PROTOBUF_NDEBUG_INLINE ContainsCondition::Impl_::Impl_( - ::google::protobuf::internal::InternalVisibility visibility, - ::google::protobuf::Arena* arena) - : _cached_size_{0}, - search_string_(arena) {} - -inline void ContainsCondition::SharedCtor(::_pb::Arena* arena) { - new (&_impl_) Impl_(internal_visibility(), arena); - ::memset(reinterpret_cast(&_impl_) + - offsetof(Impl_, reference_), - 0, - offsetof(Impl_, match_type_) - - offsetof(Impl_, reference_) + - sizeof(Impl_::match_type_)); -} -ContainsCondition::~ContainsCondition() { - // @@protoc_insertion_point(destructor:io.deephaven.proto.backplane.grpc.ContainsCondition) - _internal_metadata_.Delete<::google::protobuf::UnknownFieldSet>(); - SharedDtor(); -} -inline void ContainsCondition::SharedDtor() { - ABSL_DCHECK(GetArena() == nullptr); - _impl_.search_string_.Destroy(); - delete _impl_.reference_; - _impl_.~Impl_(); -} - -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_ = { - { - PROTOBUF_FIELD_OFFSET(ContainsCondition, _impl_._has_bits_), - 0, // no _extensions_ - 4, 24, // max_field_number, fast_idx_mask - offsetof(decltype(_table_), field_lookup_table), - 4294967280, // skipmap - offsetof(decltype(_table_), field_entries), - 4, // num_field_entries - 1, // num_aux_entries - offsetof(decltype(_table_), 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::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>(), - {32, 63, 0, PROTOBUF_FIELD_OFFSET(ContainsCondition, _impl_.match_type_)}}, - // .io.deephaven.proto.backplane.grpc.Reference reference = 1; - {::_pbi::TcParser::FastMtS1, - {10, 0, 0, PROTOBUF_FIELD_OFFSET(ContainsCondition, _impl_.reference_)}}, - // string search_string = 2; - {::_pbi::TcParser::FastUS1, - {18, 63, 0, PROTOBUF_FIELD_OFFSET(ContainsCondition, _impl_.search_string_)}}, - // .io.deephaven.proto.backplane.grpc.CaseSensitivity case_sensitivity = 3; - {::_pbi::TcParser::SingularVarintNoZag1<::uint32_t, offsetof(ContainsCondition, _impl_.case_sensitivity_), 63>(), - {24, 63, 0, PROTOBUF_FIELD_OFFSET(ContainsCondition, _impl_.case_sensitivity_)}}, - }}, {{ - 65535, 65535 - }}, {{ - // .io.deephaven.proto.backplane.grpc.Reference reference = 1; - {PROTOBUF_FIELD_OFFSET(ContainsCondition, _impl_.reference_), _Internal::kHasBitsOffset + 0, 0, - (0 | ::_fl::kFcOptional | ::_fl::kMessage | ::_fl::kTvTable)}, - // string search_string = 2; - {PROTOBUF_FIELD_OFFSET(ContainsCondition, _impl_.search_string_), -1, 0, - (0 | ::_fl::kFcSingular | ::_fl::kUtf8String | ::_fl::kRepAString)}, - // .io.deephaven.proto.backplane.grpc.CaseSensitivity case_sensitivity = 3; - {PROTOBUF_FIELD_OFFSET(ContainsCondition, _impl_.case_sensitivity_), -1, 0, - (0 | ::_fl::kFcSingular | ::_fl::kOpenEnum)}, - // .io.deephaven.proto.backplane.grpc.MatchType match_type = 4; - {PROTOBUF_FIELD_OFFSET(ContainsCondition, _impl_.match_type_), -1, 0, - (0 | ::_fl::kFcSingular | ::_fl::kOpenEnum)}, - }}, {{ - {::_pbi::TcParser::GetTable<::io::deephaven::proto::backplane::grpc::Reference>()}, - }}, {{ - "\63\0\15\0\0\0\0\0" - "io.deephaven.proto.backplane.grpc.ContainsCondition" - "search_string" - }}, -}; - -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; - - _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>(); -} - -#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; - (void) cached_has_bits; - - if (!from._internal_search_string().empty()) { - _this->_internal_set_search_string(from._internal_search_string()); - } - 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->_impl_.case_sensitivity_ = from._impl_.case_sensitivity_; - } - if (from._internal_match_type() != 0) { - _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_); -} - -void ContainsCondition::CopyFrom(const ContainsCondition& from) { -// @@protoc_insertion_point(class_specific_copy_from_start:io.deephaven.proto.backplane.grpc.ContainsCondition) - if (&from == this) return; - Clear(); - MergeFrom(from); -} - - -void ContainsCondition::InternalSwap(ContainsCondition* PROTOBUF_RESTRICT other) { - using std::swap; - auto* arena = GetArena(); - ABSL_DCHECK_EQ(arena, other->GetArena()); - _internal_metadata_.InternalSwap(&other->_internal_metadata_); - swap(_impl_._has_bits_[0], other->_impl_._has_bits_[0]); - ::_pbi::ArenaStringPtr::InternalSwap(&_impl_.search_string_, &other->_impl_.search_string_, arena); - ::google::protobuf::internal::memswap< - PROTOBUF_FIELD_OFFSET(ContainsCondition, _impl_.match_type_) - + sizeof(ContainsCondition::_impl_.match_type_) - - PROTOBUF_FIELD_OFFSET(ContainsCondition, _impl_.reference_)>( - reinterpret_cast(&_impl_.reference_), - reinterpret_cast(&other->_impl_.reference_)); -} - -::google::protobuf::Metadata ContainsCondition::GetMetadata() const { - return ::google::protobuf::Message::GetMetadataImpl(GetClassData()->full()); -} -// =================================================================== - -class SearchCondition::_Internal { - public: -}; - -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 ::io::deephaven::proto::backplane::grpc::SearchCondition& from_msg) - : optional_references_{visibility, arena, from.optional_references_}, - search_string_(arena, from.search_string_), - _cached_size_{0} {} - -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_, from); - - // @@protoc_insertion_point(copy_constructor:io.deephaven.proto.backplane.grpc.SearchCondition) -} -inline PROTOBUF_NDEBUG_INLINE SearchCondition::Impl_::Impl_( - ::google::protobuf::internal::InternalVisibility visibility, - ::google::protobuf::Arena* arena) - : optional_references_{visibility, arena}, - search_string_(arena), - _cached_size_{0} {} - -inline void SearchCondition::SharedCtor(::_pb::Arena* arena) { - new (&_impl_) Impl_(internal_visibility(), arena); -} -SearchCondition::~SearchCondition() { - // @@protoc_insertion_point(destructor:io.deephaven.proto.backplane.grpc.SearchCondition) - _internal_metadata_.Delete<::google::protobuf::UnknownFieldSet>(); - SharedDtor(); -} -inline void SearchCondition::SharedDtor() { - ABSL_DCHECK(GetArena() == nullptr); - _impl_.search_string_.Destroy(); - _impl_.~Impl_(); -} - -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_ = { - { - 0, // no _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::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, - {18, 63, 0, PROTOBUF_FIELD_OFFSET(SearchCondition, _impl_.optional_references_)}}, - // string search_string = 1; - {::_pbi::TcParser::FastUS1, - {10, 63, 0, PROTOBUF_FIELD_OFFSET(SearchCondition, _impl_.search_string_)}}, - }}, {{ - 65535, 65535 - }}, {{ - // string search_string = 1; - {PROTOBUF_FIELD_OFFSET(SearchCondition, _impl_.search_string_), 0, 0, - (0 | ::_fl::kFcSingular | ::_fl::kUtf8String | ::_fl::kRepAString)}, - // repeated .io.deephaven.proto.backplane.grpc.Reference optional_references = 2; - {PROTOBUF_FIELD_OFFSET(SearchCondition, _impl_.optional_references_), 0, 0, - (0 | ::_fl::kFcRepeated | ::_fl::kMessage | ::_fl::kTvTable)}, - }}, {{ - {::_pbi::TcParser::GetTable<::io::deephaven::proto::backplane::grpc::Reference>()}, - }}, {{ - "\61\15\0\0\0\0\0\0" - "io.deephaven.proto.backplane.grpc.SearchCondition" - "search_string" - }}, -}; - -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; - - _impl_.optional_references_.Clear(); - _impl_.search_string_.ClearToEmpty(); - _internal_metadata_.Clear<::google::protobuf::UnknownFieldSet>(); -} - -#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) - ABSL_DCHECK_NE(&from, _this); - ::uint32_t cached_has_bits = 0; - (void) cached_has_bits; - - _this->_internal_mutable_optional_references()->MergeFrom( - from._internal_optional_references()); - if (!from._internal_search_string().empty()) { - _this->_internal_set_search_string(from._internal_search_string()); - } - _this->_internal_metadata_.MergeFrom<::google::protobuf::UnknownFieldSet>(from._internal_metadata_); -} - -void SearchCondition::CopyFrom(const SearchCondition& from) { -// @@protoc_insertion_point(class_specific_copy_from_start:io.deephaven.proto.backplane.grpc.SearchCondition) - if (&from == this) return; - Clear(); - MergeFrom(from); -} - - -void SearchCondition::InternalSwap(SearchCondition* PROTOBUF_RESTRICT other) { - using std::swap; - auto* arena = GetArena(); - ABSL_DCHECK_EQ(arena, other->GetArena()); - _internal_metadata_.InternalSwap(&other->_internal_metadata_); - _impl_.optional_references_.InternalSwap(&other->_impl_.optional_references_); - ::_pbi::ArenaStringPtr::InternalSwap(&_impl_.search_string_, &other->_impl_.search_string_, arena); -} - -::google::protobuf::Metadata SearchCondition::GetMetadata() const { - return ::google::protobuf::Message::GetMetadataImpl(GetClassData()->full()); -} -// =================================================================== - -class FlattenRequest::_Internal { - public: - using HasBits = - decltype(std::declval()._impl_._has_bits_); - static constexpr ::int32_t kHasBitsOffset = - 8 * PROTOBUF_FIELD_OFFSET(FlattenRequest, _impl_._has_bits_); -}; - -void FlattenRequest::clear_result_id() { - ::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 ::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_, from); - ::uint32_t cached_has_bits = _impl_._has_bits_[0]; - _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) -} -inline PROTOBUF_NDEBUG_INLINE FlattenRequest::Impl_::Impl_( - ::google::protobuf::internal::InternalVisibility visibility, - ::google::protobuf::Arena* arena) - : _cached_size_{0} {} - -inline void FlattenRequest::SharedCtor(::_pb::Arena* arena) { - new (&_impl_) Impl_(internal_visibility(), arena); - ::memset(reinterpret_cast(&_impl_) + - offsetof(Impl_, result_id_), - 0, - offsetof(Impl_, source_id_) - - offsetof(Impl_, result_id_) + - sizeof(Impl_::source_id_)); -} -FlattenRequest::~FlattenRequest() { - // @@protoc_insertion_point(destructor:io.deephaven.proto.backplane.grpc.FlattenRequest) - _internal_metadata_.Delete<::google::protobuf::UnknownFieldSet>(); - SharedDtor(); -} -inline void FlattenRequest::SharedDtor() { - ABSL_DCHECK(GetArena() == nullptr); - delete _impl_.result_id_; - delete _impl_.source_id_; - _impl_.~Impl_(); -} - -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_ = { - { - PROTOBUF_FIELD_OFFSET(FlattenRequest, _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 - 2, // num_aux_entries - offsetof(decltype(_table_), 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::FlattenRequest>(), // to_prefetch - #endif // PROTOBUF_PREFETCH_PARSE_TABLE - }, {{ - // .io.deephaven.proto.backplane.grpc.TableReference source_id = 2; - {::_pbi::TcParser::FastMtS1, - {18, 1, 1, PROTOBUF_FIELD_OFFSET(FlattenRequest, _impl_.source_id_)}}, - // .io.deephaven.proto.backplane.grpc.Ticket result_id = 1; - {::_pbi::TcParser::FastMtS1, - {10, 0, 0, PROTOBUF_FIELD_OFFSET(FlattenRequest, _impl_.result_id_)}}, - }}, {{ - 65535, 65535 - }}, {{ - // .io.deephaven.proto.backplane.grpc.Ticket result_id = 1; - {PROTOBUF_FIELD_OFFSET(FlattenRequest, _impl_.result_id_), _Internal::kHasBitsOffset + 0, 0, - (0 | ::_fl::kFcOptional | ::_fl::kMessage | ::_fl::kTvTable)}, - // .io.deephaven.proto.backplane.grpc.TableReference source_id = 2; - {PROTOBUF_FIELD_OFFSET(FlattenRequest, _impl_.source_id_), _Internal::kHasBitsOffset + 1, 1, - (0 | ::_fl::kFcOptional | ::_fl::kMessage | ::_fl::kTvTable)}, - }}, {{ - {::_pbi::TcParser::GetTable<::io::deephaven::proto::backplane::grpc::Ticket>()}, - {::_pbi::TcParser::GetTable<::io::deephaven::proto::backplane::grpc::TableReference>()}, - }}, {{ - }}, -}; - -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) { - 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>(); -} - -#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; - (void) cached_has_bits; - - cached_has_bits = from._impl_._has_bits_[0]; - if (cached_has_bits & 0x00000003u) { - 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 (cached_has_bits & 0x00000002u) { - 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_); -} - -void FlattenRequest::CopyFrom(const FlattenRequest& from) { -// @@protoc_insertion_point(class_specific_copy_from_start:io.deephaven.proto.backplane.grpc.FlattenRequest) - if (&from == this) return; - Clear(); - MergeFrom(from); -} - - -void FlattenRequest::InternalSwap(FlattenRequest* PROTOBUF_RESTRICT other) { - using std::swap; - _internal_metadata_.InternalSwap(&other->_internal_metadata_); - swap(_impl_._has_bits_[0], other->_impl_._has_bits_[0]); - ::google::protobuf::internal::memswap< - PROTOBUF_FIELD_OFFSET(FlattenRequest, _impl_.source_id_) - + sizeof(FlattenRequest::_impl_.source_id_) - - PROTOBUF_FIELD_OFFSET(FlattenRequest, _impl_.result_id_)>( - reinterpret_cast(&_impl_.result_id_), - reinterpret_cast(&other->_impl_.result_id_)); -} - -::google::protobuf::Metadata FlattenRequest::GetMetadata() const { - return ::google::protobuf::Message::GetMetadataImpl(GetClassData()->full()); -} -// =================================================================== - -class MetaTableRequest::_Internal { - public: - using HasBits = - decltype(std::declval()._impl_._has_bits_); - static constexpr ::int32_t kHasBitsOffset = - 8 * PROTOBUF_FIELD_OFFSET(MetaTableRequest, _impl_._has_bits_); -}; - -void MetaTableRequest::clear_result_id() { - ::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 ::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_, from); - ::uint32_t cached_has_bits = _impl_._has_bits_[0]; - _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) -} -inline PROTOBUF_NDEBUG_INLINE MetaTableRequest::Impl_::Impl_( - ::google::protobuf::internal::InternalVisibility visibility, - ::google::protobuf::Arena* arena) - : _cached_size_{0} {} - -inline void MetaTableRequest::SharedCtor(::_pb::Arena* arena) { - new (&_impl_) Impl_(internal_visibility(), arena); - ::memset(reinterpret_cast(&_impl_) + - offsetof(Impl_, result_id_), - 0, - offsetof(Impl_, source_id_) - - offsetof(Impl_, result_id_) + - sizeof(Impl_::source_id_)); -} -MetaTableRequest::~MetaTableRequest() { - // @@protoc_insertion_point(destructor:io.deephaven.proto.backplane.grpc.MetaTableRequest) - _internal_metadata_.Delete<::google::protobuf::UnknownFieldSet>(); - SharedDtor(); -} -inline void MetaTableRequest::SharedDtor() { - ABSL_DCHECK(GetArena() == nullptr); - delete _impl_.result_id_; - delete _impl_.source_id_; - _impl_.~Impl_(); -} - -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_ = { - { - PROTOBUF_FIELD_OFFSET(MetaTableRequest, _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 - 2, // num_aux_entries - offsetof(decltype(_table_), 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::MetaTableRequest>(), // to_prefetch - #endif // PROTOBUF_PREFETCH_PARSE_TABLE - }, {{ - // .io.deephaven.proto.backplane.grpc.TableReference source_id = 2; - {::_pbi::TcParser::FastMtS1, - {18, 1, 1, PROTOBUF_FIELD_OFFSET(MetaTableRequest, _impl_.source_id_)}}, - // .io.deephaven.proto.backplane.grpc.Ticket result_id = 1; - {::_pbi::TcParser::FastMtS1, - {10, 0, 0, PROTOBUF_FIELD_OFFSET(MetaTableRequest, _impl_.result_id_)}}, - }}, {{ - 65535, 65535 - }}, {{ - // .io.deephaven.proto.backplane.grpc.Ticket result_id = 1; - {PROTOBUF_FIELD_OFFSET(MetaTableRequest, _impl_.result_id_), _Internal::kHasBitsOffset + 0, 0, - (0 | ::_fl::kFcOptional | ::_fl::kMessage | ::_fl::kTvTable)}, - // .io.deephaven.proto.backplane.grpc.TableReference source_id = 2; - {PROTOBUF_FIELD_OFFSET(MetaTableRequest, _impl_.source_id_), _Internal::kHasBitsOffset + 1, 1, - (0 | ::_fl::kFcOptional | ::_fl::kMessage | ::_fl::kTvTable)}, - }}, {{ - {::_pbi::TcParser::GetTable<::io::deephaven::proto::backplane::grpc::Ticket>()}, - {::_pbi::TcParser::GetTable<::io::deephaven::proto::backplane::grpc::TableReference>()}, - }}, {{ - }}, -}; - -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) { - 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>(); -} - -#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; - (void) cached_has_bits; - - cached_has_bits = from._impl_._has_bits_[0]; - if (cached_has_bits & 0x00000003u) { - 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 (cached_has_bits & 0x00000002u) { - 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_); -} - -void MetaTableRequest::CopyFrom(const MetaTableRequest& from) { -// @@protoc_insertion_point(class_specific_copy_from_start:io.deephaven.proto.backplane.grpc.MetaTableRequest) - if (&from == this) return; - Clear(); - MergeFrom(from); -} - - -void MetaTableRequest::InternalSwap(MetaTableRequest* PROTOBUF_RESTRICT other) { - using std::swap; - _internal_metadata_.InternalSwap(&other->_internal_metadata_); - swap(_impl_._has_bits_[0], other->_impl_._has_bits_[0]); - ::google::protobuf::internal::memswap< - PROTOBUF_FIELD_OFFSET(MetaTableRequest, _impl_.source_id_) - + sizeof(MetaTableRequest::_impl_.source_id_) - - PROTOBUF_FIELD_OFFSET(MetaTableRequest, _impl_.result_id_)>( - reinterpret_cast(&_impl_.result_id_), - reinterpret_cast(&other->_impl_.result_id_)); -} - -::google::protobuf::Metadata MetaTableRequest::GetMetadata() const { - return ::google::protobuf::Message::GetMetadataImpl(GetClassData()->full()); -} -// =================================================================== - -class RunChartDownsampleRequest_ZoomRange::_Internal { - public: - using HasBits = - decltype(std::declval()._impl_._has_bits_); - static constexpr ::int32_t kHasBitsOffset = - 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) -} -RunChartDownsampleRequest_ZoomRange::RunChartDownsampleRequest_ZoomRange( - ::google::protobuf::Arena* arena, const RunChartDownsampleRequest_ZoomRange& from) - : RunChartDownsampleRequest_ZoomRange(arena) { - MergeFrom(from); -} -inline PROTOBUF_NDEBUG_INLINE RunChartDownsampleRequest_ZoomRange::Impl_::Impl_( - ::google::protobuf::internal::InternalVisibility visibility, - ::google::protobuf::Arena* arena) - : _cached_size_{0} {} - -inline void RunChartDownsampleRequest_ZoomRange::SharedCtor(::_pb::Arena* arena) { - new (&_impl_) Impl_(internal_visibility(), arena); - ::memset(reinterpret_cast(&_impl_) + - offsetof(Impl_, min_date_nanos_), - 0, - offsetof(Impl_, max_date_nanos_) - - offsetof(Impl_, min_date_nanos_) + - sizeof(Impl_::max_date_nanos_)); -} -RunChartDownsampleRequest_ZoomRange::~RunChartDownsampleRequest_ZoomRange() { - // @@protoc_insertion_point(destructor:io.deephaven.proto.backplane.grpc.RunChartDownsampleRequest.ZoomRange) - _internal_metadata_.Delete<::google::protobuf::UnknownFieldSet>(); - SharedDtor(); -} -inline void RunChartDownsampleRequest_ZoomRange::SharedDtor() { - ABSL_DCHECK(GetArena() == nullptr); - _impl_.~Impl_(); -} - -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_ = { - { - PROTOBUF_FIELD_OFFSET(RunChartDownsampleRequest_ZoomRange, _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 - 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::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>(), - {16, 1, 0, PROTOBUF_FIELD_OFFSET(RunChartDownsampleRequest_ZoomRange, _impl_.max_date_nanos_)}}, - // optional int64 min_date_nanos = 1 [jstype = JS_STRING]; - {::_pbi::TcParser::SingularVarintNoZag1<::uint64_t, offsetof(RunChartDownsampleRequest_ZoomRange, _impl_.min_date_nanos_), 0>(), - {8, 0, 0, PROTOBUF_FIELD_OFFSET(RunChartDownsampleRequest_ZoomRange, _impl_.min_date_nanos_)}}, - }}, {{ - 65535, 65535 - }}, {{ - // optional int64 min_date_nanos = 1 [jstype = JS_STRING]; - {PROTOBUF_FIELD_OFFSET(RunChartDownsampleRequest_ZoomRange, _impl_.min_date_nanos_), _Internal::kHasBitsOffset + 0, 0, - (0 | ::_fl::kFcOptional | ::_fl::kInt64)}, - // optional int64 max_date_nanos = 2 [jstype = JS_STRING]; - {PROTOBUF_FIELD_OFFSET(RunChartDownsampleRequest_ZoomRange, _impl_.max_date_nanos_), _Internal::kHasBitsOffset + 1, 0, - (0 | ::_fl::kFcOptional | ::_fl::kInt64)}, - }}, - // no aux_entries - {{ - }}, -}; - -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) { - ::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>(); -} - -#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) - ABSL_DCHECK_NE(&from, _this); - ::uint32_t cached_has_bits = 0; - (void) cached_has_bits; - - cached_has_bits = from._impl_._has_bits_[0]; - if (cached_has_bits & 0x00000003u) { - if (cached_has_bits & 0x00000001u) { - _this->_impl_.min_date_nanos_ = from._impl_.min_date_nanos_; - } - if (cached_has_bits & 0x00000002u) { - _this->_impl_.max_date_nanos_ = from._impl_.max_date_nanos_; - } - } - _this->_impl_._has_bits_[0] |= cached_has_bits; - _this->_internal_metadata_.MergeFrom<::google::protobuf::UnknownFieldSet>(from._internal_metadata_); -} - -void RunChartDownsampleRequest_ZoomRange::CopyFrom(const RunChartDownsampleRequest_ZoomRange& from) { -// @@protoc_insertion_point(class_specific_copy_from_start:io.deephaven.proto.backplane.grpc.RunChartDownsampleRequest.ZoomRange) - if (&from == this) return; - Clear(); - MergeFrom(from); -} - - -void RunChartDownsampleRequest_ZoomRange::InternalSwap(RunChartDownsampleRequest_ZoomRange* PROTOBUF_RESTRICT other) { - using std::swap; - _internal_metadata_.InternalSwap(&other->_internal_metadata_); - swap(_impl_._has_bits_[0], other->_impl_._has_bits_[0]); - ::google::protobuf::internal::memswap< - PROTOBUF_FIELD_OFFSET(RunChartDownsampleRequest_ZoomRange, _impl_.max_date_nanos_) - + sizeof(RunChartDownsampleRequest_ZoomRange::_impl_.max_date_nanos_) - - PROTOBUF_FIELD_OFFSET(RunChartDownsampleRequest_ZoomRange, _impl_.min_date_nanos_)>( - reinterpret_cast(&_impl_.min_date_nanos_), - reinterpret_cast(&other->_impl_.min_date_nanos_)); -} - -::google::protobuf::Metadata RunChartDownsampleRequest_ZoomRange::GetMetadata() const { - return ::google::protobuf::Message::GetMetadataImpl(GetClassData()->full()); -} -// =================================================================== - -class RunChartDownsampleRequest::_Internal { - public: - using HasBits = - decltype(std::declval()._impl_._has_bits_); - static constexpr ::int32_t kHasBitsOffset = - 8 * PROTOBUF_FIELD_OFFSET(RunChartDownsampleRequest, _impl_._has_bits_); -}; - -void RunChartDownsampleRequest::clear_result_id() { - ::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 ::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_}, - x_column_name_(arena, from.x_column_name_) {} - -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_, from); - ::uint32_t cached_has_bits = _impl_._has_bits_[0]; - _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) -} -inline PROTOBUF_NDEBUG_INLINE RunChartDownsampleRequest::Impl_::Impl_( - ::google::protobuf::internal::InternalVisibility visibility, - ::google::protobuf::Arena* arena) - : _cached_size_{0}, - y_column_names_{visibility, arena}, - x_column_name_(arena) {} - -inline void RunChartDownsampleRequest::SharedCtor(::_pb::Arena* arena) { - new (&_impl_) Impl_(internal_visibility(), arena); - ::memset(reinterpret_cast(&_impl_) + - offsetof(Impl_, result_id_), - 0, - offsetof(Impl_, pixel_count_) - - offsetof(Impl_, result_id_) + - sizeof(Impl_::pixel_count_)); -} -RunChartDownsampleRequest::~RunChartDownsampleRequest() { - // @@protoc_insertion_point(destructor:io.deephaven.proto.backplane.grpc.RunChartDownsampleRequest) - _internal_metadata_.Delete<::google::protobuf::UnknownFieldSet>(); - SharedDtor(); -} -inline void RunChartDownsampleRequest::SharedDtor() { - ABSL_DCHECK(GetArena() == nullptr); - _impl_.x_column_name_.Destroy(); - delete _impl_.result_id_; - delete _impl_.source_id_; - delete _impl_.zoom_range_; - _impl_.~Impl_(); -} - -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_ = { - { - PROTOBUF_FIELD_OFFSET(RunChartDownsampleRequest, _impl_._has_bits_), - 0, // no _extensions_ - 6, 56, // max_field_number, fast_idx_mask - offsetof(decltype(_table_), field_lookup_table), - 4294967232, // skipmap - offsetof(decltype(_table_), field_entries), - 6, // num_field_entries - 3, // num_aux_entries - offsetof(decltype(_table_), 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::RunChartDownsampleRequest>(), // to_prefetch - #endif // PROTOBUF_PREFETCH_PARSE_TABLE - }, {{ - {::_pbi::TcParser::MiniParse, {}}, - // .io.deephaven.proto.backplane.grpc.Ticket result_id = 1; - {::_pbi::TcParser::FastMtS1, - {10, 0, 0, PROTOBUF_FIELD_OFFSET(RunChartDownsampleRequest, _impl_.result_id_)}}, - // .io.deephaven.proto.backplane.grpc.TableReference source_id = 2; - {::_pbi::TcParser::FastMtS1, - {18, 1, 1, PROTOBUF_FIELD_OFFSET(RunChartDownsampleRequest, _impl_.source_id_)}}, - // int32 pixel_count = 3; - {::_pbi::TcParser::SingularVarintNoZag1<::uint32_t, offsetof(RunChartDownsampleRequest, _impl_.pixel_count_), 63>(), - {24, 63, 0, PROTOBUF_FIELD_OFFSET(RunChartDownsampleRequest, _impl_.pixel_count_)}}, - // .io.deephaven.proto.backplane.grpc.RunChartDownsampleRequest.ZoomRange zoom_range = 4; - {::_pbi::TcParser::FastMtS1, - {34, 2, 2, PROTOBUF_FIELD_OFFSET(RunChartDownsampleRequest, _impl_.zoom_range_)}}, - // string x_column_name = 5; - {::_pbi::TcParser::FastUS1, - {42, 63, 0, PROTOBUF_FIELD_OFFSET(RunChartDownsampleRequest, _impl_.x_column_name_)}}, - // repeated string y_column_names = 6; - {::_pbi::TcParser::FastUR1, - {50, 63, 0, PROTOBUF_FIELD_OFFSET(RunChartDownsampleRequest, _impl_.y_column_names_)}}, - {::_pbi::TcParser::MiniParse, {}}, - }}, {{ - 65535, 65535 - }}, {{ - // .io.deephaven.proto.backplane.grpc.Ticket result_id = 1; - {PROTOBUF_FIELD_OFFSET(RunChartDownsampleRequest, _impl_.result_id_), _Internal::kHasBitsOffset + 0, 0, - (0 | ::_fl::kFcOptional | ::_fl::kMessage | ::_fl::kTvTable)}, - // .io.deephaven.proto.backplane.grpc.TableReference source_id = 2; - {PROTOBUF_FIELD_OFFSET(RunChartDownsampleRequest, _impl_.source_id_), _Internal::kHasBitsOffset + 1, 1, - (0 | ::_fl::kFcOptional | ::_fl::kMessage | ::_fl::kTvTable)}, - // int32 pixel_count = 3; - {PROTOBUF_FIELD_OFFSET(RunChartDownsampleRequest, _impl_.pixel_count_), -1, 0, - (0 | ::_fl::kFcSingular | ::_fl::kInt32)}, - // .io.deephaven.proto.backplane.grpc.RunChartDownsampleRequest.ZoomRange zoom_range = 4; - {PROTOBUF_FIELD_OFFSET(RunChartDownsampleRequest, _impl_.zoom_range_), _Internal::kHasBitsOffset + 2, 2, - (0 | ::_fl::kFcOptional | ::_fl::kMessage | ::_fl::kTvTable)}, - // string x_column_name = 5; - {PROTOBUF_FIELD_OFFSET(RunChartDownsampleRequest, _impl_.x_column_name_), -1, 0, - (0 | ::_fl::kFcSingular | ::_fl::kUtf8String | ::_fl::kRepAString)}, - // repeated string y_column_names = 6; - {PROTOBUF_FIELD_OFFSET(RunChartDownsampleRequest, _impl_.y_column_names_), -1, 0, - (0 | ::_fl::kFcRepeated | ::_fl::kUtf8String | ::_fl::kRepSString)}, - }}, {{ - {::_pbi::TcParser::GetTable<::io::deephaven::proto::backplane::grpc::Ticket>()}, - {::_pbi::TcParser::GetTable<::io::deephaven::proto::backplane::grpc::TableReference>()}, - {::_pbi::TcParser::GetTable<::io::deephaven::proto::backplane::grpc::RunChartDownsampleRequest_ZoomRange>()}, - }}, {{ - "\73\0\0\0\0\15\16\0" - "io.deephaven.proto.backplane.grpc.RunChartDownsampleRequest" - "x_column_name" - "y_column_names" - }}, -}; - -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; - - _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>(); -} - -#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; - (void) cached_has_bits; - - _this->_internal_mutable_y_column_names()->MergeFrom(from._internal_y_column_names()); - if (!from._internal_x_column_name().empty()) { - _this->_internal_set_x_column_name(from._internal_x_column_name()); - } - cached_has_bits = from._impl_._has_bits_[0]; - if (cached_has_bits & 0x00000007u) { - 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 (cached_has_bits & 0x00000002u) { - 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) { - 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->_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_); -} - -void RunChartDownsampleRequest::CopyFrom(const RunChartDownsampleRequest& from) { -// @@protoc_insertion_point(class_specific_copy_from_start:io.deephaven.proto.backplane.grpc.RunChartDownsampleRequest) - if (&from == this) return; - Clear(); - MergeFrom(from); -} - - -void RunChartDownsampleRequest::InternalSwap(RunChartDownsampleRequest* PROTOBUF_RESTRICT other) { - using std::swap; - auto* arena = GetArena(); - ABSL_DCHECK_EQ(arena, other->GetArena()); - _internal_metadata_.InternalSwap(&other->_internal_metadata_); - swap(_impl_._has_bits_[0], other->_impl_._has_bits_[0]); - _impl_.y_column_names_.InternalSwap(&other->_impl_.y_column_names_); - ::_pbi::ArenaStringPtr::InternalSwap(&_impl_.x_column_name_, &other->_impl_.x_column_name_, arena); - ::google::protobuf::internal::memswap< - PROTOBUF_FIELD_OFFSET(RunChartDownsampleRequest, _impl_.pixel_count_) - + sizeof(RunChartDownsampleRequest::_impl_.pixel_count_) - - PROTOBUF_FIELD_OFFSET(RunChartDownsampleRequest, _impl_.result_id_)>( - reinterpret_cast(&_impl_.result_id_), - reinterpret_cast(&other->_impl_.result_id_)); -} - -::google::protobuf::Metadata RunChartDownsampleRequest::GetMetadata() const { - return ::google::protobuf::Message::GetMetadataImpl(GetClassData()->full()); -} -// =================================================================== - -class CreateInputTableRequest_InputTableKind_InMemoryAppendOnly::_Internal { - public: -}; - -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>( - from._internal_metadata_); - - // @@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 - {{ - }}, -}; - - - - - - - - -::google::protobuf::Metadata CreateInputTableRequest_InputTableKind_InMemoryAppendOnly::GetMetadata() const { - return ::google::protobuf::internal::ZeroFieldsBase::GetMetadataImpl(GetClassData()->full()); -} -// =================================================================== - -class CreateInputTableRequest_InputTableKind_InMemoryKeyBacked::_Internal { - public: -}; - -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 ::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_, from); - - // @@protoc_insertion_point(copy_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) - : key_columns_{visibility, arena}, - _cached_size_{0} {} - -inline void CreateInputTableRequest_InputTableKind_InMemoryKeyBacked::SharedCtor(::_pb::Arena* arena) { - new (&_impl_) Impl_(internal_visibility(), arena); -} -CreateInputTableRequest_InputTableKind_InMemoryKeyBacked::~CreateInputTableRequest_InputTableKind_InMemoryKeyBacked() { - // @@protoc_insertion_point(destructor:io.deephaven.proto.backplane.grpc.CreateInputTableRequest.InputTableKind.InMemoryKeyBacked) - _internal_metadata_.Delete<::google::protobuf::UnknownFieldSet>(); - SharedDtor(); -} -inline void CreateInputTableRequest_InputTableKind_InMemoryKeyBacked::SharedDtor() { - ABSL_DCHECK(GetArena() == nullptr); - _impl_.~Impl_(); -} - -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_ = { - { - 0, // no _has_bits_ - 0, // no _extensions_ - 1, 0, // max_field_number, fast_idx_mask - offsetof(decltype(_table_), field_lookup_table), - 4294967294, // skipmap - offsetof(decltype(_table_), field_entries), - 1, // 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_InMemoryKeyBacked>(), // to_prefetch - #endif // PROTOBUF_PREFETCH_PARSE_TABLE - }, {{ - // repeated string key_columns = 1; - {::_pbi::TcParser::FastUR1, - {10, 63, 0, PROTOBUF_FIELD_OFFSET(CreateInputTableRequest_InputTableKind_InMemoryKeyBacked, _impl_.key_columns_)}}, - }}, {{ - 65535, 65535 - }}, {{ - // repeated string key_columns = 1; - {PROTOBUF_FIELD_OFFSET(CreateInputTableRequest_InputTableKind_InMemoryKeyBacked, _impl_.key_columns_), 0, 0, - (0 | ::_fl::kFcRepeated | ::_fl::kUtf8String | ::_fl::kRepSString)}, - }}, - // no aux_entries - {{ - "\132\13\0\0\0\0\0\0" - "io.deephaven.proto.backplane.grpc.CreateInputTableRequest.InputTableKind.InMemoryKeyBacked" - "key_columns" - }}, -}; - -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; - - _impl_.key_columns_.Clear(); - _internal_metadata_.Clear<::google::protobuf::UnknownFieldSet>(); -} - -#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) - ABSL_DCHECK_NE(&from, _this); - ::uint32_t cached_has_bits = 0; - (void) cached_has_bits; - - _this->_internal_mutable_key_columns()->MergeFrom(from._internal_key_columns()); - _this->_internal_metadata_.MergeFrom<::google::protobuf::UnknownFieldSet>(from._internal_metadata_); -} - -void CreateInputTableRequest_InputTableKind_InMemoryKeyBacked::CopyFrom(const CreateInputTableRequest_InputTableKind_InMemoryKeyBacked& from) { -// @@protoc_insertion_point(class_specific_copy_from_start:io.deephaven.proto.backplane.grpc.CreateInputTableRequest.InputTableKind.InMemoryKeyBacked) - if (&from == this) return; - Clear(); - MergeFrom(from); -} - - -void CreateInputTableRequest_InputTableKind_InMemoryKeyBacked::InternalSwap(CreateInputTableRequest_InputTableKind_InMemoryKeyBacked* PROTOBUF_RESTRICT other) { - using std::swap; - _internal_metadata_.InternalSwap(&other->_internal_metadata_); - _impl_.key_columns_.InternalSwap(&other->_impl_.key_columns_); -} - -::google::protobuf::Metadata CreateInputTableRequest_InputTableKind_InMemoryKeyBacked::GetMetadata() const { - return ::google::protobuf::Message::GetMetadataImpl(GetClassData()->full()); -} -// =================================================================== - -class CreateInputTableRequest_InputTableKind_Blink::_Internal { - public: -}; - -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>( - from._internal_metadata_); - - // @@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 - {{ - }}, -}; - - - - - - - - -::google::protobuf::Metadata CreateInputTableRequest_InputTableKind_Blink::GetMetadata() const { - 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_); -}; - -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(); - if (in_memory_append_only) { - ::google::protobuf::Arena* submessage_arena = in_memory_append_only->GetArena(); - if (message_arena != submessage_arena) { - in_memory_append_only = ::google::protobuf::internal::GetOwnedMessage(message_arena, in_memory_append_only, submessage_arena); - } - set_has_in_memory_append_only(); - _impl_.kind_.in_memory_append_only_ = in_memory_append_only; - } - // @@protoc_insertion_point(field_set_allocated:io.deephaven.proto.backplane.grpc.CreateInputTableRequest.InputTableKind.in_memory_append_only) -} -void CreateInputTableRequest_InputTableKind::set_allocated_in_memory_key_backed(::io::deephaven::proto::backplane::grpc::CreateInputTableRequest_InputTableKind_InMemoryKeyBacked* in_memory_key_backed) { - ::google::protobuf::Arena* message_arena = GetArena(); - clear_kind(); - if (in_memory_key_backed) { - ::google::protobuf::Arena* submessage_arena = in_memory_key_backed->GetArena(); - if (message_arena != submessage_arena) { - in_memory_key_backed = ::google::protobuf::internal::GetOwnedMessage(message_arena, in_memory_key_backed, submessage_arena); - } - set_has_in_memory_key_backed(); - _impl_.kind_.in_memory_key_backed_ = in_memory_key_backed; - } - // @@protoc_insertion_point(field_set_allocated:io.deephaven.proto.backplane.grpc.CreateInputTableRequest.InputTableKind.in_memory_key_backed) -} -void CreateInputTableRequest_InputTableKind::set_allocated_blink(::io::deephaven::proto::backplane::grpc::CreateInputTableRequest_InputTableKind_Blink* blink) { - ::google::protobuf::Arena* message_arena = GetArena(); - clear_kind(); - if (blink) { - ::google::protobuf::Arena* submessage_arena = blink->GetArena(); - if (message_arena != submessage_arena) { - blink = ::google::protobuf::internal::GetOwnedMessage(message_arena, blink, submessage_arena); - } - set_has_blink(); - _impl_.kind_.blink_ = blink; - } - // @@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 ::io::deephaven::proto::backplane::grpc::CreateInputTableRequest_InputTableKind& from_msg) - : kind_{}, - _cached_size_{0}, - _oneof_case_{from._oneof_case_[0]} {} - -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_, from); - switch (kind_case()) { - case KIND_NOT_SET: - break; - case kInMemoryAppendOnly: - _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_ = ::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_ = ::google::protobuf::Message::CopyConstruct<::io::deephaven::proto::backplane::grpc::CreateInputTableRequest_InputTableKind_Blink>(arena, *from._impl_.kind_.blink_); - break; - } - - // @@protoc_insertion_point(copy_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) - : kind_{}, - _cached_size_{0}, - _oneof_case_{} {} - -inline void CreateInputTableRequest_InputTableKind::SharedCtor(::_pb::Arena* arena) { - new (&_impl_) Impl_(internal_visibility(), arena); -} -CreateInputTableRequest_InputTableKind::~CreateInputTableRequest_InputTableKind() { - // @@protoc_insertion_point(destructor:io.deephaven.proto.backplane.grpc.CreateInputTableRequest.InputTableKind) - _internal_metadata_.Delete<::google::protobuf::UnknownFieldSet>(); - SharedDtor(); -} -inline void CreateInputTableRequest_InputTableKind::SharedDtor() { - ABSL_DCHECK(GetArena() == nullptr); - if (has_kind()) { - clear_kind(); - } - _impl_.~Impl_(); -} - -void CreateInputTableRequest_InputTableKind::clear_kind() { -// @@protoc_insertion_point(one_of_clear_start:io.deephaven.proto.backplane.grpc.CreateInputTableRequest.InputTableKind) - ::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; - } - case KIND_NOT_SET: { - break; - } - } - _impl_._oneof_case_[0] = KIND_NOT_SET; -} - - -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_ = { - { - 0, // no _has_bits_ - 0, // no _extensions_ - 3, 0, // max_field_number, fast_idx_mask - offsetof(decltype(_table_), field_lookup_table), - 4294967288, // skipmap - offsetof(decltype(_table_), field_entries), - 3, // num_field_entries - 3, // num_aux_entries - offsetof(decltype(_table_), 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>(), // to_prefetch - #endif // PROTOBUF_PREFETCH_PARSE_TABLE - }, {{ - {::_pbi::TcParser::MiniParse, {}}, - }}, {{ - 65535, 65535 - }}, {{ - // .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::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::kTvTable)}, - }}, {{ - {::_pbi::TcParser::GetTable<::io::deephaven::proto::backplane::grpc::CreateInputTableRequest_InputTableKind_InMemoryAppendOnly>()}, - {::_pbi::TcParser::GetTable<::io::deephaven::proto::backplane::grpc::CreateInputTableRequest_InputTableKind_InMemoryKeyBacked>()}, - {::_pbi::TcParser::GetTable<::io::deephaven::proto::backplane::grpc::CreateInputTableRequest_InputTableKind_Blink>()}, - }}, {{ - }}, -}; - -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; - - clear_kind(); - _internal_metadata_.Clear<::google::protobuf::UnknownFieldSet>(); -} - -#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; - - 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; - } - - 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_); -} - -void CreateInputTableRequest_InputTableKind::CopyFrom(const CreateInputTableRequest_InputTableKind& from) { -// @@protoc_insertion_point(class_specific_copy_from_start:io.deephaven.proto.backplane.grpc.CreateInputTableRequest.InputTableKind) - if (&from == this) return; - Clear(); - MergeFrom(from); -} - - -void CreateInputTableRequest_InputTableKind::InternalSwap(CreateInputTableRequest_InputTableKind* PROTOBUF_RESTRICT other) { - using std::swap; - _internal_metadata_.InternalSwap(&other->_internal_metadata_); - swap(_impl_.kind_, other->_impl_.kind_); - swap(_impl_._oneof_case_[0], other->_impl_._oneof_case_[0]); -} - -::google::protobuf::Metadata CreateInputTableRequest_InputTableKind::GetMetadata() const { - return ::google::protobuf::Message::GetMetadataImpl(GetClassData()->full()); -} -// =================================================================== - -class CreateInputTableRequest::_Internal { - public: - using HasBits = - decltype(std::declval()._impl_._has_bits_); - static constexpr ::int32_t kHasBitsOffset = - 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_); -}; - -void CreateInputTableRequest::clear_result_id() { - ::google::protobuf::internal::TSanWrite(&_impl_); - if (_impl_.result_id_ != nullptr) _impl_.result_id_->Clear(); - _impl_._has_bits_[0] &= ~0x00000001u; -} -void CreateInputTableRequest::set_allocated_source_table_id(::io::deephaven::proto::backplane::grpc::TableReference* source_table_id) { - ::google::protobuf::Arena* message_arena = GetArena(); - clear_definition(); - if (source_table_id) { - ::google::protobuf::Arena* submessage_arena = source_table_id->GetArena(); - if (message_arena != submessage_arena) { - source_table_id = ::google::protobuf::internal::GetOwnedMessage(message_arena, source_table_id, submessage_arena); - } - set_has_source_table_id(); - _impl_.definition_.source_table_id_ = source_table_id; - } - // @@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 ::io::deephaven::proto::backplane::grpc::CreateInputTableRequest& from_msg) - : _has_bits_{from._has_bits_}, - _cached_size_{0}, - definition_{}, - _oneof_case_{from._oneof_case_[0]} {} - -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_, from); - ::uint32_t cached_has_bits = _impl_._has_bits_[0]; - _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_ = ::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_}; - break; - } - - // @@protoc_insertion_point(copy_constructor:io.deephaven.proto.backplane.grpc.CreateInputTableRequest) -} -inline PROTOBUF_NDEBUG_INLINE CreateInputTableRequest::Impl_::Impl_( - ::google::protobuf::internal::InternalVisibility visibility, - ::google::protobuf::Arena* arena) - : _cached_size_{0}, - definition_{}, - _oneof_case_{} {} - -inline void CreateInputTableRequest::SharedCtor(::_pb::Arena* arena) { - new (&_impl_) Impl_(internal_visibility(), arena); - ::memset(reinterpret_cast(&_impl_) + - offsetof(Impl_, result_id_), - 0, - offsetof(Impl_, kind_) - - offsetof(Impl_, result_id_) + - sizeof(Impl_::kind_)); -} -CreateInputTableRequest::~CreateInputTableRequest() { - // @@protoc_insertion_point(destructor:io.deephaven.proto.backplane.grpc.CreateInputTableRequest) - _internal_metadata_.Delete<::google::protobuf::UnknownFieldSet>(); - SharedDtor(); -} -inline void CreateInputTableRequest::SharedDtor() { - ABSL_DCHECK(GetArena() == nullptr); - delete _impl_.result_id_; - delete _impl_.kind_; - if (has_definition()) { - clear_definition(); - } - _impl_.~Impl_(); -} - -void CreateInputTableRequest::clear_definition() { -// @@protoc_insertion_point(one_of_clear_start:io.deephaven.proto.backplane.grpc.CreateInputTableRequest) - ::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; - } - case kSchema: { - _impl_.definition_.schema_.Destroy(); - break; - } - case DEFINITION_NOT_SET: { - break; - } - } - _impl_._oneof_case_[0] = DEFINITION_NOT_SET; -} - - -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_ = { - { - PROTOBUF_FIELD_OFFSET(CreateInputTableRequest, _impl_._has_bits_), - 0, // no _extensions_ - 4, 8, // max_field_number, fast_idx_mask - offsetof(decltype(_table_), field_lookup_table), - 4294967280, // skipmap - offsetof(decltype(_table_), field_entries), - 4, // num_field_entries - 3, // num_aux_entries - offsetof(decltype(_table_), 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>(), // to_prefetch - #endif // PROTOBUF_PREFETCH_PARSE_TABLE - }, {{ - // .io.deephaven.proto.backplane.grpc.CreateInputTableRequest.InputTableKind kind = 4; - {::_pbi::TcParser::FastMtS1, - {34, 1, 2, PROTOBUF_FIELD_OFFSET(CreateInputTableRequest, _impl_.kind_)}}, - // .io.deephaven.proto.backplane.grpc.Ticket result_id = 1; - {::_pbi::TcParser::FastMtS1, - {10, 0, 0, PROTOBUF_FIELD_OFFSET(CreateInputTableRequest, _impl_.result_id_)}}, - }}, {{ - 65535, 65535 - }}, {{ - // .io.deephaven.proto.backplane.grpc.Ticket result_id = 1; - {PROTOBUF_FIELD_OFFSET(CreateInputTableRequest, _impl_.result_id_), _Internal::kHasBitsOffset + 0, 0, - (0 | ::_fl::kFcOptional | ::_fl::kMessage | ::_fl::kTvTable)}, - // .io.deephaven.proto.backplane.grpc.TableReference source_table_id = 2; - {PROTOBUF_FIELD_OFFSET(CreateInputTableRequest, _impl_.definition_.source_table_id_), _Internal::kOneofCaseOffset + 0, 1, - (0 | ::_fl::kFcOneof | ::_fl::kMessage | ::_fl::kTvTable)}, - // bytes schema = 3; - {PROTOBUF_FIELD_OFFSET(CreateInputTableRequest, _impl_.definition_.schema_), _Internal::kOneofCaseOffset + 0, 0, - (0 | ::_fl::kFcOneof | ::_fl::kBytes | ::_fl::kRepAString)}, - // .io.deephaven.proto.backplane.grpc.CreateInputTableRequest.InputTableKind kind = 4; - {PROTOBUF_FIELD_OFFSET(CreateInputTableRequest, _impl_.kind_), _Internal::kHasBitsOffset + 1, 2, - (0 | ::_fl::kFcOptional | ::_fl::kMessage | ::_fl::kTvTable)}, - }}, {{ - {::_pbi::TcParser::GetTable<::io::deephaven::proto::backplane::grpc::Ticket>()}, - {::_pbi::TcParser::GetTable<::io::deephaven::proto::backplane::grpc::TableReference>()}, - {::_pbi::TcParser::GetTable<::io::deephaven::proto::backplane::grpc::CreateInputTableRequest_InputTableKind>()}, - }}, {{ - }}, -}; - -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) { - 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>(); -} - -#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; - (void) cached_has_bits; - - cached_has_bits = from._impl_._has_bits_[0]; - if (cached_has_bits & 0x00000003u) { - 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 (cached_has_bits & 0x00000002u) { - 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_); - } - } - } - _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; - } - - 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_); -} - -void CreateInputTableRequest::CopyFrom(const CreateInputTableRequest& from) { -// @@protoc_insertion_point(class_specific_copy_from_start:io.deephaven.proto.backplane.grpc.CreateInputTableRequest) - if (&from == this) return; - Clear(); - MergeFrom(from); -} - - -void CreateInputTableRequest::InternalSwap(CreateInputTableRequest* PROTOBUF_RESTRICT other) { - using std::swap; - _internal_metadata_.InternalSwap(&other->_internal_metadata_); - swap(_impl_._has_bits_[0], other->_impl_._has_bits_[0]); - ::google::protobuf::internal::memswap< - PROTOBUF_FIELD_OFFSET(CreateInputTableRequest, _impl_.kind_) - + sizeof(CreateInputTableRequest::_impl_.kind_) - - PROTOBUF_FIELD_OFFSET(CreateInputTableRequest, _impl_.result_id_)>( - reinterpret_cast(&_impl_.result_id_), - reinterpret_cast(&other->_impl_.result_id_)); - swap(_impl_.definition_, other->_impl_.definition_); - swap(_impl_._oneof_case_[0], other->_impl_._oneof_case_[0]); -} - -::google::protobuf::Metadata CreateInputTableRequest::GetMetadata() const { - return ::google::protobuf::Message::GetMetadataImpl(GetClassData()->full()); -} -// =================================================================== - -class WhereInRequest::_Internal { - public: - using HasBits = - decltype(std::declval()._impl_._has_bits_); - static constexpr ::int32_t kHasBitsOffset = - 8 * PROTOBUF_FIELD_OFFSET(WhereInRequest, _impl_._has_bits_); -}; - -void WhereInRequest::clear_result_id() { - ::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 ::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_} {} - -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_, from); - ::uint32_t cached_has_bits = _impl_._has_bits_[0]; - _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) -} -inline PROTOBUF_NDEBUG_INLINE WhereInRequest::Impl_::Impl_( - ::google::protobuf::internal::InternalVisibility visibility, - ::google::protobuf::Arena* arena) - : _cached_size_{0}, - columns_to_match_{visibility, arena} {} - -inline void WhereInRequest::SharedCtor(::_pb::Arena* arena) { - new (&_impl_) Impl_(internal_visibility(), arena); - ::memset(reinterpret_cast(&_impl_) + - offsetof(Impl_, result_id_), - 0, - offsetof(Impl_, inverted_) - - offsetof(Impl_, result_id_) + - sizeof(Impl_::inverted_)); -} -WhereInRequest::~WhereInRequest() { - // @@protoc_insertion_point(destructor:io.deephaven.proto.backplane.grpc.WhereInRequest) - _internal_metadata_.Delete<::google::protobuf::UnknownFieldSet>(); - SharedDtor(); -} -inline void WhereInRequest::SharedDtor() { - ABSL_DCHECK(GetArena() == nullptr); - delete _impl_.result_id_; - delete _impl_.left_id_; - delete _impl_.right_id_; - _impl_.~Impl_(); -} - -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_ = { - { - PROTOBUF_FIELD_OFFSET(WhereInRequest, _impl_._has_bits_), - 0, // no _extensions_ - 5, 56, // max_field_number, fast_idx_mask - offsetof(decltype(_table_), field_lookup_table), - 4294967264, // skipmap - offsetof(decltype(_table_), field_entries), - 5, // num_field_entries - 3, // num_aux_entries - offsetof(decltype(_table_), 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::WhereInRequest>(), // to_prefetch - #endif // PROTOBUF_PREFETCH_PARSE_TABLE - }, {{ - {::_pbi::TcParser::MiniParse, {}}, - // .io.deephaven.proto.backplane.grpc.Ticket result_id = 1; - {::_pbi::TcParser::FastMtS1, - {10, 0, 0, PROTOBUF_FIELD_OFFSET(WhereInRequest, _impl_.result_id_)}}, - // .io.deephaven.proto.backplane.grpc.TableReference left_id = 2; - {::_pbi::TcParser::FastMtS1, - {18, 1, 1, PROTOBUF_FIELD_OFFSET(WhereInRequest, _impl_.left_id_)}}, - // .io.deephaven.proto.backplane.grpc.TableReference right_id = 3; - {::_pbi::TcParser::FastMtS1, - {26, 2, 2, PROTOBUF_FIELD_OFFSET(WhereInRequest, _impl_.right_id_)}}, - // bool inverted = 4; - {::_pbi::TcParser::SingularVarintNoZag1(), - {32, 63, 0, PROTOBUF_FIELD_OFFSET(WhereInRequest, _impl_.inverted_)}}, - // repeated string columns_to_match = 5; - {::_pbi::TcParser::FastUR1, - {42, 63, 0, PROTOBUF_FIELD_OFFSET(WhereInRequest, _impl_.columns_to_match_)}}, - {::_pbi::TcParser::MiniParse, {}}, - {::_pbi::TcParser::MiniParse, {}}, - }}, {{ - 65535, 65535 - }}, {{ - // .io.deephaven.proto.backplane.grpc.Ticket result_id = 1; - {PROTOBUF_FIELD_OFFSET(WhereInRequest, _impl_.result_id_), _Internal::kHasBitsOffset + 0, 0, - (0 | ::_fl::kFcOptional | ::_fl::kMessage | ::_fl::kTvTable)}, - // .io.deephaven.proto.backplane.grpc.TableReference left_id = 2; - {PROTOBUF_FIELD_OFFSET(WhereInRequest, _impl_.left_id_), _Internal::kHasBitsOffset + 1, 1, - (0 | ::_fl::kFcOptional | ::_fl::kMessage | ::_fl::kTvTable)}, - // .io.deephaven.proto.backplane.grpc.TableReference right_id = 3; - {PROTOBUF_FIELD_OFFSET(WhereInRequest, _impl_.right_id_), _Internal::kHasBitsOffset + 2, 2, - (0 | ::_fl::kFcOptional | ::_fl::kMessage | ::_fl::kTvTable)}, - // bool inverted = 4; - {PROTOBUF_FIELD_OFFSET(WhereInRequest, _impl_.inverted_), -1, 0, - (0 | ::_fl::kFcSingular | ::_fl::kBool)}, - // repeated string columns_to_match = 5; - {PROTOBUF_FIELD_OFFSET(WhereInRequest, _impl_.columns_to_match_), -1, 0, - (0 | ::_fl::kFcRepeated | ::_fl::kUtf8String | ::_fl::kRepSString)}, - }}, {{ - {::_pbi::TcParser::GetTable<::io::deephaven::proto::backplane::grpc::Ticket>()}, - {::_pbi::TcParser::GetTable<::io::deephaven::proto::backplane::grpc::TableReference>()}, - {::_pbi::TcParser::GetTable<::io::deephaven::proto::backplane::grpc::TableReference>()}, - }}, {{ - "\60\0\0\0\0\20\0\0" - "io.deephaven.proto.backplane.grpc.WhereInRequest" - "columns_to_match" - }}, -}; - -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; - - _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>(); -} - -#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; - (void) cached_has_bits; - - _this->_internal_mutable_columns_to_match()->MergeFrom(from._internal_columns_to_match()); - cached_has_bits = from._impl_._has_bits_[0]; - if (cached_has_bits & 0x00000007u) { - 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 (cached_has_bits & 0x00000002u) { - 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) { - 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->_impl_.inverted_ = from._impl_.inverted_; - } - _this->_impl_._has_bits_[0] |= cached_has_bits; - _this->_internal_metadata_.MergeFrom<::google::protobuf::UnknownFieldSet>(from._internal_metadata_); -} - -void WhereInRequest::CopyFrom(const WhereInRequest& from) { -// @@protoc_insertion_point(class_specific_copy_from_start:io.deephaven.proto.backplane.grpc.WhereInRequest) - if (&from == this) return; - Clear(); - MergeFrom(from); -} - - -void WhereInRequest::InternalSwap(WhereInRequest* PROTOBUF_RESTRICT other) { - using std::swap; - _internal_metadata_.InternalSwap(&other->_internal_metadata_); - swap(_impl_._has_bits_[0], other->_impl_._has_bits_[0]); - _impl_.columns_to_match_.InternalSwap(&other->_impl_.columns_to_match_); - ::google::protobuf::internal::memswap< - PROTOBUF_FIELD_OFFSET(WhereInRequest, _impl_.inverted_) - + sizeof(WhereInRequest::_impl_.inverted_) - - PROTOBUF_FIELD_OFFSET(WhereInRequest, _impl_.result_id_)>( - reinterpret_cast(&_impl_.result_id_), - reinterpret_cast(&other->_impl_.result_id_)); -} - -::google::protobuf::Metadata WhereInRequest::GetMetadata() const { - return ::google::protobuf::Message::GetMetadataImpl(GetClassData()->full()); -} -// =================================================================== - -class ColumnStatisticsRequest::_Internal { - public: - using HasBits = - decltype(std::declval()._impl_._has_bits_); - static constexpr ::int32_t kHasBitsOffset = - 8 * PROTOBUF_FIELD_OFFSET(ColumnStatisticsRequest, _impl_._has_bits_); -}; - -void ColumnStatisticsRequest::clear_result_id() { - ::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 ::io::deephaven::proto::backplane::grpc::ColumnStatisticsRequest& from_msg) - : _has_bits_{from._has_bits_}, - _cached_size_{0}, - column_name_(arena, from.column_name_) {} - -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_, from); - ::uint32_t cached_has_bits = _impl_._has_bits_[0]; - _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) -} -inline PROTOBUF_NDEBUG_INLINE ColumnStatisticsRequest::Impl_::Impl_( - ::google::protobuf::internal::InternalVisibility visibility, - ::google::protobuf::Arena* arena) - : _cached_size_{0}, - column_name_(arena) {} - -inline void ColumnStatisticsRequest::SharedCtor(::_pb::Arena* arena) { - new (&_impl_) Impl_(internal_visibility(), arena); - ::memset(reinterpret_cast(&_impl_) + - offsetof(Impl_, result_id_), - 0, - offsetof(Impl_, unique_value_limit_) - - offsetof(Impl_, result_id_) + - sizeof(Impl_::unique_value_limit_)); -} -ColumnStatisticsRequest::~ColumnStatisticsRequest() { - // @@protoc_insertion_point(destructor:io.deephaven.proto.backplane.grpc.ColumnStatisticsRequest) - _internal_metadata_.Delete<::google::protobuf::UnknownFieldSet>(); - SharedDtor(); -} -inline void ColumnStatisticsRequest::SharedDtor() { - ABSL_DCHECK(GetArena() == nullptr); - _impl_.column_name_.Destroy(); - delete _impl_.result_id_; - delete _impl_.source_id_; - _impl_.~Impl_(); -} - -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_ = { - { - PROTOBUF_FIELD_OFFSET(ColumnStatisticsRequest, _impl_._has_bits_), - 0, // no _extensions_ - 4, 24, // max_field_number, fast_idx_mask - offsetof(decltype(_table_), field_lookup_table), - 4294967280, // skipmap - offsetof(decltype(_table_), field_entries), - 4, // num_field_entries - 2, // num_aux_entries - offsetof(decltype(_table_), 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::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>(), - {32, 2, 0, PROTOBUF_FIELD_OFFSET(ColumnStatisticsRequest, _impl_.unique_value_limit_)}}, - // .io.deephaven.proto.backplane.grpc.Ticket result_id = 1; - {::_pbi::TcParser::FastMtS1, - {10, 0, 0, PROTOBUF_FIELD_OFFSET(ColumnStatisticsRequest, _impl_.result_id_)}}, - // .io.deephaven.proto.backplane.grpc.TableReference source_id = 2; - {::_pbi::TcParser::FastMtS1, - {18, 1, 1, PROTOBUF_FIELD_OFFSET(ColumnStatisticsRequest, _impl_.source_id_)}}, - // string column_name = 3; - {::_pbi::TcParser::FastUS1, - {26, 63, 0, PROTOBUF_FIELD_OFFSET(ColumnStatisticsRequest, _impl_.column_name_)}}, - }}, {{ - 65535, 65535 - }}, {{ - // .io.deephaven.proto.backplane.grpc.Ticket result_id = 1; - {PROTOBUF_FIELD_OFFSET(ColumnStatisticsRequest, _impl_.result_id_), _Internal::kHasBitsOffset + 0, 0, - (0 | ::_fl::kFcOptional | ::_fl::kMessage | ::_fl::kTvTable)}, - // .io.deephaven.proto.backplane.grpc.TableReference source_id = 2; - {PROTOBUF_FIELD_OFFSET(ColumnStatisticsRequest, _impl_.source_id_), _Internal::kHasBitsOffset + 1, 1, - (0 | ::_fl::kFcOptional | ::_fl::kMessage | ::_fl::kTvTable)}, - // string column_name = 3; - {PROTOBUF_FIELD_OFFSET(ColumnStatisticsRequest, _impl_.column_name_), -1, 0, - (0 | ::_fl::kFcSingular | ::_fl::kUtf8String | ::_fl::kRepAString)}, - // optional int32 unique_value_limit = 4; - {PROTOBUF_FIELD_OFFSET(ColumnStatisticsRequest, _impl_.unique_value_limit_), _Internal::kHasBitsOffset + 2, 0, - (0 | ::_fl::kFcOptional | ::_fl::kInt32)}, - }}, {{ - {::_pbi::TcParser::GetTable<::io::deephaven::proto::backplane::grpc::Ticket>()}, - {::_pbi::TcParser::GetTable<::io::deephaven::proto::backplane::grpc::TableReference>()}, - }}, {{ - "\71\0\0\13\0\0\0\0" - "io.deephaven.proto.backplane.grpc.ColumnStatisticsRequest" - "column_name" - }}, -}; - -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; - - _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>(); -} - -#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; - (void) cached_has_bits; - - if (!from._internal_column_name().empty()) { - _this->_internal_set_column_name(from._internal_column_name()); - } - cached_has_bits = from._impl_._has_bits_[0]; - if (cached_has_bits & 0x00000007u) { - 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 (cached_has_bits & 0x00000002u) { - 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->_internal_metadata_.MergeFrom<::google::protobuf::UnknownFieldSet>(from._internal_metadata_); -} - -void ColumnStatisticsRequest::CopyFrom(const ColumnStatisticsRequest& from) { -// @@protoc_insertion_point(class_specific_copy_from_start:io.deephaven.proto.backplane.grpc.ColumnStatisticsRequest) - if (&from == this) return; - Clear(); - MergeFrom(from); -} - - -void ColumnStatisticsRequest::InternalSwap(ColumnStatisticsRequest* PROTOBUF_RESTRICT other) { - using std::swap; - auto* arena = GetArena(); - ABSL_DCHECK_EQ(arena, other->GetArena()); - _internal_metadata_.InternalSwap(&other->_internal_metadata_); - swap(_impl_._has_bits_[0], other->_impl_._has_bits_[0]); - ::_pbi::ArenaStringPtr::InternalSwap(&_impl_.column_name_, &other->_impl_.column_name_, arena); - ::google::protobuf::internal::memswap< - PROTOBUF_FIELD_OFFSET(ColumnStatisticsRequest, _impl_.unique_value_limit_) - + sizeof(ColumnStatisticsRequest::_impl_.unique_value_limit_) - - PROTOBUF_FIELD_OFFSET(ColumnStatisticsRequest, _impl_.result_id_)>( - reinterpret_cast(&_impl_.result_id_), - reinterpret_cast(&other->_impl_.result_id_)); -} - -::google::protobuf::Metadata ColumnStatisticsRequest::GetMetadata() const { - 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_); -}; - -void BatchTableRequest_Operation::set_allocated_empty_table(::io::deephaven::proto::backplane::grpc::EmptyTableRequest* empty_table) { - ::google::protobuf::Arena* message_arena = GetArena(); - clear_op(); - if (empty_table) { - ::google::protobuf::Arena* submessage_arena = empty_table->GetArena(); - if (message_arena != submessage_arena) { - empty_table = ::google::protobuf::internal::GetOwnedMessage(message_arena, empty_table, submessage_arena); - } - set_has_empty_table(); - _impl_.op_.empty_table_ = empty_table; - } - // @@protoc_insertion_point(field_set_allocated:io.deephaven.proto.backplane.grpc.BatchTableRequest.Operation.empty_table) -} -void BatchTableRequest_Operation::set_allocated_time_table(::io::deephaven::proto::backplane::grpc::TimeTableRequest* time_table) { - ::google::protobuf::Arena* message_arena = GetArena(); - clear_op(); - if (time_table) { - ::google::protobuf::Arena* submessage_arena = time_table->GetArena(); - if (message_arena != submessage_arena) { - time_table = ::google::protobuf::internal::GetOwnedMessage(message_arena, time_table, submessage_arena); - } - set_has_time_table(); - _impl_.op_.time_table_ = time_table; - } - // @@protoc_insertion_point(field_set_allocated:io.deephaven.proto.backplane.grpc.BatchTableRequest.Operation.time_table) -} -void BatchTableRequest_Operation::set_allocated_drop_columns(::io::deephaven::proto::backplane::grpc::DropColumnsRequest* drop_columns) { - ::google::protobuf::Arena* message_arena = GetArena(); - clear_op(); - if (drop_columns) { - ::google::protobuf::Arena* submessage_arena = drop_columns->GetArena(); - if (message_arena != submessage_arena) { - drop_columns = ::google::protobuf::internal::GetOwnedMessage(message_arena, drop_columns, submessage_arena); - } - set_has_drop_columns(); - _impl_.op_.drop_columns_ = drop_columns; - } - // @@protoc_insertion_point(field_set_allocated:io.deephaven.proto.backplane.grpc.BatchTableRequest.Operation.drop_columns) -} -void BatchTableRequest_Operation::set_allocated_update(::io::deephaven::proto::backplane::grpc::SelectOrUpdateRequest* update) { - ::google::protobuf::Arena* message_arena = GetArena(); - clear_op(); - if (update) { - ::google::protobuf::Arena* submessage_arena = update->GetArena(); - if (message_arena != submessage_arena) { - update = ::google::protobuf::internal::GetOwnedMessage(message_arena, update, submessage_arena); - } - set_has_update(); - _impl_.op_.update_ = update; - } - // @@protoc_insertion_point(field_set_allocated:io.deephaven.proto.backplane.grpc.BatchTableRequest.Operation.update) -} -void BatchTableRequest_Operation::set_allocated_lazy_update(::io::deephaven::proto::backplane::grpc::SelectOrUpdateRequest* lazy_update) { - ::google::protobuf::Arena* message_arena = GetArena(); - clear_op(); - if (lazy_update) { - ::google::protobuf::Arena* submessage_arena = lazy_update->GetArena(); - if (message_arena != submessage_arena) { - lazy_update = ::google::protobuf::internal::GetOwnedMessage(message_arena, lazy_update, submessage_arena); - } - set_has_lazy_update(); - _impl_.op_.lazy_update_ = lazy_update; - } - // @@protoc_insertion_point(field_set_allocated:io.deephaven.proto.backplane.grpc.BatchTableRequest.Operation.lazy_update) -} -void BatchTableRequest_Operation::set_allocated_view(::io::deephaven::proto::backplane::grpc::SelectOrUpdateRequest* view) { - ::google::protobuf::Arena* message_arena = GetArena(); - clear_op(); - if (view) { - ::google::protobuf::Arena* submessage_arena = view->GetArena(); - if (message_arena != submessage_arena) { - view = ::google::protobuf::internal::GetOwnedMessage(message_arena, view, submessage_arena); - } - set_has_view(); - _impl_.op_.view_ = view; - } - // @@protoc_insertion_point(field_set_allocated:io.deephaven.proto.backplane.grpc.BatchTableRequest.Operation.view) -} -void BatchTableRequest_Operation::set_allocated_update_view(::io::deephaven::proto::backplane::grpc::SelectOrUpdateRequest* update_view) { - ::google::protobuf::Arena* message_arena = GetArena(); - clear_op(); - if (update_view) { - ::google::protobuf::Arena* submessage_arena = update_view->GetArena(); - if (message_arena != submessage_arena) { - update_view = ::google::protobuf::internal::GetOwnedMessage(message_arena, update_view, submessage_arena); - } - set_has_update_view(); - _impl_.op_.update_view_ = update_view; - } - // @@protoc_insertion_point(field_set_allocated:io.deephaven.proto.backplane.grpc.BatchTableRequest.Operation.update_view) -} -void BatchTableRequest_Operation::set_allocated_select(::io::deephaven::proto::backplane::grpc::SelectOrUpdateRequest* select) { - ::google::protobuf::Arena* message_arena = GetArena(); - clear_op(); - if (select) { - ::google::protobuf::Arena* submessage_arena = select->GetArena(); - if (message_arena != submessage_arena) { - select = ::google::protobuf::internal::GetOwnedMessage(message_arena, select, submessage_arena); - } - set_has_select(); - _impl_.op_.select_ = select; - } - // @@protoc_insertion_point(field_set_allocated:io.deephaven.proto.backplane.grpc.BatchTableRequest.Operation.select) -} -void BatchTableRequest_Operation::set_allocated_select_distinct(::io::deephaven::proto::backplane::grpc::SelectDistinctRequest* select_distinct) { - ::google::protobuf::Arena* message_arena = GetArena(); - clear_op(); - if (select_distinct) { - ::google::protobuf::Arena* submessage_arena = select_distinct->GetArena(); - if (message_arena != submessage_arena) { - select_distinct = ::google::protobuf::internal::GetOwnedMessage(message_arena, select_distinct, submessage_arena); - } - set_has_select_distinct(); - _impl_.op_.select_distinct_ = select_distinct; - } - // @@protoc_insertion_point(field_set_allocated:io.deephaven.proto.backplane.grpc.BatchTableRequest.Operation.select_distinct) -} -void BatchTableRequest_Operation::set_allocated_filter(::io::deephaven::proto::backplane::grpc::FilterTableRequest* filter) { - ::google::protobuf::Arena* message_arena = GetArena(); - clear_op(); - if (filter) { - ::google::protobuf::Arena* submessage_arena = filter->GetArena(); - if (message_arena != submessage_arena) { - filter = ::google::protobuf::internal::GetOwnedMessage(message_arena, filter, submessage_arena); - } - set_has_filter(); - _impl_.op_.filter_ = filter; - } - // @@protoc_insertion_point(field_set_allocated:io.deephaven.proto.backplane.grpc.BatchTableRequest.Operation.filter) -} -void BatchTableRequest_Operation::set_allocated_unstructured_filter(::io::deephaven::proto::backplane::grpc::UnstructuredFilterTableRequest* unstructured_filter) { - ::google::protobuf::Arena* message_arena = GetArena(); - clear_op(); - if (unstructured_filter) { - ::google::protobuf::Arena* submessage_arena = unstructured_filter->GetArena(); - if (message_arena != submessage_arena) { - unstructured_filter = ::google::protobuf::internal::GetOwnedMessage(message_arena, unstructured_filter, submessage_arena); - } - set_has_unstructured_filter(); - _impl_.op_.unstructured_filter_ = unstructured_filter; - } - // @@protoc_insertion_point(field_set_allocated:io.deephaven.proto.backplane.grpc.BatchTableRequest.Operation.unstructured_filter) -} -void BatchTableRequest_Operation::set_allocated_sort(::io::deephaven::proto::backplane::grpc::SortTableRequest* sort) { - ::google::protobuf::Arena* message_arena = GetArena(); - clear_op(); - if (sort) { - ::google::protobuf::Arena* submessage_arena = sort->GetArena(); - if (message_arena != submessage_arena) { - sort = ::google::protobuf::internal::GetOwnedMessage(message_arena, sort, submessage_arena); - } - set_has_sort(); - _impl_.op_.sort_ = sort; - } - // @@protoc_insertion_point(field_set_allocated:io.deephaven.proto.backplane.grpc.BatchTableRequest.Operation.sort) -} -void BatchTableRequest_Operation::set_allocated_head(::io::deephaven::proto::backplane::grpc::HeadOrTailRequest* head) { - ::google::protobuf::Arena* message_arena = GetArena(); - clear_op(); - if (head) { - ::google::protobuf::Arena* submessage_arena = head->GetArena(); - if (message_arena != submessage_arena) { - head = ::google::protobuf::internal::GetOwnedMessage(message_arena, head, submessage_arena); - } - set_has_head(); - _impl_.op_.head_ = head; - } - // @@protoc_insertion_point(field_set_allocated:io.deephaven.proto.backplane.grpc.BatchTableRequest.Operation.head) -} -void BatchTableRequest_Operation::set_allocated_tail(::io::deephaven::proto::backplane::grpc::HeadOrTailRequest* tail) { - ::google::protobuf::Arena* message_arena = GetArena(); - clear_op(); - if (tail) { - ::google::protobuf::Arena* submessage_arena = tail->GetArena(); - if (message_arena != submessage_arena) { - tail = ::google::protobuf::internal::GetOwnedMessage(message_arena, tail, submessage_arena); - } - set_has_tail(); - _impl_.op_.tail_ = tail; - } - // @@protoc_insertion_point(field_set_allocated:io.deephaven.proto.backplane.grpc.BatchTableRequest.Operation.tail) -} -void BatchTableRequest_Operation::set_allocated_head_by(::io::deephaven::proto::backplane::grpc::HeadOrTailByRequest* head_by) { - ::google::protobuf::Arena* message_arena = GetArena(); - clear_op(); - if (head_by) { - ::google::protobuf::Arena* submessage_arena = head_by->GetArena(); - if (message_arena != submessage_arena) { - head_by = ::google::protobuf::internal::GetOwnedMessage(message_arena, head_by, submessage_arena); - } - set_has_head_by(); - _impl_.op_.head_by_ = head_by; - } - // @@protoc_insertion_point(field_set_allocated:io.deephaven.proto.backplane.grpc.BatchTableRequest.Operation.head_by) -} -void BatchTableRequest_Operation::set_allocated_tail_by(::io::deephaven::proto::backplane::grpc::HeadOrTailByRequest* tail_by) { - ::google::protobuf::Arena* message_arena = GetArena(); - clear_op(); - if (tail_by) { - ::google::protobuf::Arena* submessage_arena = tail_by->GetArena(); - if (message_arena != submessage_arena) { - tail_by = ::google::protobuf::internal::GetOwnedMessage(message_arena, tail_by, submessage_arena); - } - set_has_tail_by(); - _impl_.op_.tail_by_ = tail_by; - } - // @@protoc_insertion_point(field_set_allocated:io.deephaven.proto.backplane.grpc.BatchTableRequest.Operation.tail_by) -} -void BatchTableRequest_Operation::set_allocated_ungroup(::io::deephaven::proto::backplane::grpc::UngroupRequest* ungroup) { - ::google::protobuf::Arena* message_arena = GetArena(); - clear_op(); - if (ungroup) { - ::google::protobuf::Arena* submessage_arena = ungroup->GetArena(); - if (message_arena != submessage_arena) { - ungroup = ::google::protobuf::internal::GetOwnedMessage(message_arena, ungroup, submessage_arena); - } - set_has_ungroup(); - _impl_.op_.ungroup_ = ungroup; - } - // @@protoc_insertion_point(field_set_allocated:io.deephaven.proto.backplane.grpc.BatchTableRequest.Operation.ungroup) -} -void BatchTableRequest_Operation::set_allocated_merge(::io::deephaven::proto::backplane::grpc::MergeTablesRequest* merge) { - ::google::protobuf::Arena* message_arena = GetArena(); - clear_op(); - if (merge) { - ::google::protobuf::Arena* submessage_arena = merge->GetArena(); - if (message_arena != submessage_arena) { - merge = ::google::protobuf::internal::GetOwnedMessage(message_arena, merge, submessage_arena); - } - set_has_merge(); - _impl_.op_.merge_ = merge; - } - // @@protoc_insertion_point(field_set_allocated:io.deephaven.proto.backplane.grpc.BatchTableRequest.Operation.merge) -} -void BatchTableRequest_Operation::set_allocated_combo_aggregate(::io::deephaven::proto::backplane::grpc::ComboAggregateRequest* combo_aggregate) { - ::google::protobuf::Arena* message_arena = GetArena(); - clear_op(); - if (combo_aggregate) { - ::google::protobuf::Arena* submessage_arena = combo_aggregate->GetArena(); - if (message_arena != submessage_arena) { - combo_aggregate = ::google::protobuf::internal::GetOwnedMessage(message_arena, combo_aggregate, submessage_arena); - } - set_has_combo_aggregate(); - _impl_.op_.combo_aggregate_ = combo_aggregate; - } - // @@protoc_insertion_point(field_set_allocated:io.deephaven.proto.backplane.grpc.BatchTableRequest.Operation.combo_aggregate) -} -void BatchTableRequest_Operation::set_allocated_flatten(::io::deephaven::proto::backplane::grpc::FlattenRequest* flatten) { - ::google::protobuf::Arena* message_arena = GetArena(); - clear_op(); - if (flatten) { - ::google::protobuf::Arena* submessage_arena = flatten->GetArena(); - if (message_arena != submessage_arena) { - flatten = ::google::protobuf::internal::GetOwnedMessage(message_arena, flatten, submessage_arena); - } - set_has_flatten(); - _impl_.op_.flatten_ = flatten; - } - // @@protoc_insertion_point(field_set_allocated:io.deephaven.proto.backplane.grpc.BatchTableRequest.Operation.flatten) -} -void BatchTableRequest_Operation::set_allocated_run_chart_downsample(::io::deephaven::proto::backplane::grpc::RunChartDownsampleRequest* run_chart_downsample) { - ::google::protobuf::Arena* message_arena = GetArena(); - clear_op(); - if (run_chart_downsample) { - ::google::protobuf::Arena* submessage_arena = run_chart_downsample->GetArena(); - if (message_arena != submessage_arena) { - run_chart_downsample = ::google::protobuf::internal::GetOwnedMessage(message_arena, run_chart_downsample, submessage_arena); - } - set_has_run_chart_downsample(); - _impl_.op_.run_chart_downsample_ = run_chart_downsample; - } - // @@protoc_insertion_point(field_set_allocated:io.deephaven.proto.backplane.grpc.BatchTableRequest.Operation.run_chart_downsample) -} -void BatchTableRequest_Operation::set_allocated_cross_join(::io::deephaven::proto::backplane::grpc::CrossJoinTablesRequest* cross_join) { - ::google::protobuf::Arena* message_arena = GetArena(); - clear_op(); - if (cross_join) { - ::google::protobuf::Arena* submessage_arena = cross_join->GetArena(); - if (message_arena != submessage_arena) { - cross_join = ::google::protobuf::internal::GetOwnedMessage(message_arena, cross_join, submessage_arena); - } - set_has_cross_join(); - _impl_.op_.cross_join_ = cross_join; - } - // @@protoc_insertion_point(field_set_allocated:io.deephaven.proto.backplane.grpc.BatchTableRequest.Operation.cross_join) -} -void BatchTableRequest_Operation::set_allocated_natural_join(::io::deephaven::proto::backplane::grpc::NaturalJoinTablesRequest* natural_join) { - ::google::protobuf::Arena* message_arena = GetArena(); - clear_op(); - if (natural_join) { - ::google::protobuf::Arena* submessage_arena = natural_join->GetArena(); - if (message_arena != submessage_arena) { - natural_join = ::google::protobuf::internal::GetOwnedMessage(message_arena, natural_join, submessage_arena); - } - set_has_natural_join(); - _impl_.op_.natural_join_ = natural_join; - } - // @@protoc_insertion_point(field_set_allocated:io.deephaven.proto.backplane.grpc.BatchTableRequest.Operation.natural_join) -} -void BatchTableRequest_Operation::set_allocated_exact_join(::io::deephaven::proto::backplane::grpc::ExactJoinTablesRequest* exact_join) { - ::google::protobuf::Arena* message_arena = GetArena(); - clear_op(); - if (exact_join) { - ::google::protobuf::Arena* submessage_arena = exact_join->GetArena(); - if (message_arena != submessage_arena) { - exact_join = ::google::protobuf::internal::GetOwnedMessage(message_arena, exact_join, submessage_arena); - } - set_has_exact_join(); - _impl_.op_.exact_join_ = exact_join; - } - // @@protoc_insertion_point(field_set_allocated:io.deephaven.proto.backplane.grpc.BatchTableRequest.Operation.exact_join) -} -void BatchTableRequest_Operation::set_allocated_left_join(::io::deephaven::proto::backplane::grpc::LeftJoinTablesRequest* left_join) { - ::google::protobuf::Arena* message_arena = GetArena(); - clear_op(); - if (left_join) { - ::google::protobuf::Arena* submessage_arena = left_join->GetArena(); - if (message_arena != submessage_arena) { - left_join = ::google::protobuf::internal::GetOwnedMessage(message_arena, left_join, submessage_arena); - } - set_has_left_join(); - _impl_.op_.left_join_ = left_join; - } - // @@protoc_insertion_point(field_set_allocated:io.deephaven.proto.backplane.grpc.BatchTableRequest.Operation.left_join) -} -void BatchTableRequest_Operation::set_allocated_as_of_join(::io::deephaven::proto::backplane::grpc::AsOfJoinTablesRequest* as_of_join) { - ::google::protobuf::Arena* message_arena = GetArena(); - clear_op(); - if (as_of_join) { - ::google::protobuf::Arena* submessage_arena = as_of_join->GetArena(); - if (message_arena != submessage_arena) { - as_of_join = ::google::protobuf::internal::GetOwnedMessage(message_arena, as_of_join, submessage_arena); - } - set_has_as_of_join(); - _impl_.op_.as_of_join_ = as_of_join; - } - // @@protoc_insertion_point(field_set_allocated:io.deephaven.proto.backplane.grpc.BatchTableRequest.Operation.as_of_join) -} -void BatchTableRequest_Operation::set_allocated_fetch_table(::io::deephaven::proto::backplane::grpc::FetchTableRequest* fetch_table) { - ::google::protobuf::Arena* message_arena = GetArena(); - clear_op(); - if (fetch_table) { - ::google::protobuf::Arena* submessage_arena = fetch_table->GetArena(); - if (message_arena != submessage_arena) { - fetch_table = ::google::protobuf::internal::GetOwnedMessage(message_arena, fetch_table, submessage_arena); - } - set_has_fetch_table(); - _impl_.op_.fetch_table_ = fetch_table; - } - // @@protoc_insertion_point(field_set_allocated:io.deephaven.proto.backplane.grpc.BatchTableRequest.Operation.fetch_table) -} -void BatchTableRequest_Operation::set_allocated_apply_preview_columns(::io::deephaven::proto::backplane::grpc::ApplyPreviewColumnsRequest* apply_preview_columns) { - ::google::protobuf::Arena* message_arena = GetArena(); - clear_op(); - if (apply_preview_columns) { - ::google::protobuf::Arena* submessage_arena = apply_preview_columns->GetArena(); - if (message_arena != submessage_arena) { - apply_preview_columns = ::google::protobuf::internal::GetOwnedMessage(message_arena, apply_preview_columns, submessage_arena); - } - set_has_apply_preview_columns(); - _impl_.op_.apply_preview_columns_ = apply_preview_columns; - } - // @@protoc_insertion_point(field_set_allocated:io.deephaven.proto.backplane.grpc.BatchTableRequest.Operation.apply_preview_columns) -} -void BatchTableRequest_Operation::set_allocated_create_input_table(::io::deephaven::proto::backplane::grpc::CreateInputTableRequest* create_input_table) { - ::google::protobuf::Arena* message_arena = GetArena(); - clear_op(); - if (create_input_table) { - ::google::protobuf::Arena* submessage_arena = create_input_table->GetArena(); - if (message_arena != submessage_arena) { - create_input_table = ::google::protobuf::internal::GetOwnedMessage(message_arena, create_input_table, submessage_arena); - } - set_has_create_input_table(); - _impl_.op_.create_input_table_ = create_input_table; - } - // @@protoc_insertion_point(field_set_allocated:io.deephaven.proto.backplane.grpc.BatchTableRequest.Operation.create_input_table) -} -void BatchTableRequest_Operation::set_allocated_update_by(::io::deephaven::proto::backplane::grpc::UpdateByRequest* update_by) { - ::google::protobuf::Arena* message_arena = GetArena(); - clear_op(); - if (update_by) { - ::google::protobuf::Arena* submessage_arena = update_by->GetArena(); - if (message_arena != submessage_arena) { - update_by = ::google::protobuf::internal::GetOwnedMessage(message_arena, update_by, submessage_arena); - } - set_has_update_by(); - _impl_.op_.update_by_ = update_by; - } - // @@protoc_insertion_point(field_set_allocated:io.deephaven.proto.backplane.grpc.BatchTableRequest.Operation.update_by) -} -void BatchTableRequest_Operation::set_allocated_where_in(::io::deephaven::proto::backplane::grpc::WhereInRequest* where_in) { - ::google::protobuf::Arena* message_arena = GetArena(); - clear_op(); - if (where_in) { - ::google::protobuf::Arena* submessage_arena = where_in->GetArena(); - if (message_arena != submessage_arena) { - where_in = ::google::protobuf::internal::GetOwnedMessage(message_arena, where_in, submessage_arena); - } - set_has_where_in(); - _impl_.op_.where_in_ = where_in; - } - // @@protoc_insertion_point(field_set_allocated:io.deephaven.proto.backplane.grpc.BatchTableRequest.Operation.where_in) -} -void BatchTableRequest_Operation::set_allocated_aggregate_all(::io::deephaven::proto::backplane::grpc::AggregateAllRequest* aggregate_all) { - ::google::protobuf::Arena* message_arena = GetArena(); - clear_op(); - if (aggregate_all) { - ::google::protobuf::Arena* submessage_arena = aggregate_all->GetArena(); - if (message_arena != submessage_arena) { - aggregate_all = ::google::protobuf::internal::GetOwnedMessage(message_arena, aggregate_all, submessage_arena); - } - set_has_aggregate_all(); - _impl_.op_.aggregate_all_ = aggregate_all; - } - // @@protoc_insertion_point(field_set_allocated:io.deephaven.proto.backplane.grpc.BatchTableRequest.Operation.aggregate_all) -} -void BatchTableRequest_Operation::set_allocated_aggregate(::io::deephaven::proto::backplane::grpc::AggregateRequest* aggregate) { - ::google::protobuf::Arena* message_arena = GetArena(); - clear_op(); - if (aggregate) { - ::google::protobuf::Arena* submessage_arena = aggregate->GetArena(); - if (message_arena != submessage_arena) { - aggregate = ::google::protobuf::internal::GetOwnedMessage(message_arena, aggregate, submessage_arena); - } - set_has_aggregate(); - _impl_.op_.aggregate_ = aggregate; - } - // @@protoc_insertion_point(field_set_allocated:io.deephaven.proto.backplane.grpc.BatchTableRequest.Operation.aggregate) -} -void BatchTableRequest_Operation::set_allocated_snapshot(::io::deephaven::proto::backplane::grpc::SnapshotTableRequest* snapshot) { - ::google::protobuf::Arena* message_arena = GetArena(); - clear_op(); - if (snapshot) { - ::google::protobuf::Arena* submessage_arena = snapshot->GetArena(); - if (message_arena != submessage_arena) { - snapshot = ::google::protobuf::internal::GetOwnedMessage(message_arena, snapshot, submessage_arena); - } - set_has_snapshot(); - _impl_.op_.snapshot_ = snapshot; - } - // @@protoc_insertion_point(field_set_allocated:io.deephaven.proto.backplane.grpc.BatchTableRequest.Operation.snapshot) -} -void BatchTableRequest_Operation::set_allocated_snapshot_when(::io::deephaven::proto::backplane::grpc::SnapshotWhenTableRequest* snapshot_when) { - ::google::protobuf::Arena* message_arena = GetArena(); - clear_op(); - if (snapshot_when) { - ::google::protobuf::Arena* submessage_arena = snapshot_when->GetArena(); - if (message_arena != submessage_arena) { - snapshot_when = ::google::protobuf::internal::GetOwnedMessage(message_arena, snapshot_when, submessage_arena); - } - set_has_snapshot_when(); - _impl_.op_.snapshot_when_ = snapshot_when; - } - // @@protoc_insertion_point(field_set_allocated:io.deephaven.proto.backplane.grpc.BatchTableRequest.Operation.snapshot_when) -} -void BatchTableRequest_Operation::set_allocated_meta_table(::io::deephaven::proto::backplane::grpc::MetaTableRequest* meta_table) { - ::google::protobuf::Arena* message_arena = GetArena(); - clear_op(); - if (meta_table) { - ::google::protobuf::Arena* submessage_arena = meta_table->GetArena(); - if (message_arena != submessage_arena) { - meta_table = ::google::protobuf::internal::GetOwnedMessage(message_arena, meta_table, submessage_arena); - } - set_has_meta_table(); - _impl_.op_.meta_table_ = meta_table; - } - // @@protoc_insertion_point(field_set_allocated:io.deephaven.proto.backplane.grpc.BatchTableRequest.Operation.meta_table) -} -void BatchTableRequest_Operation::set_allocated_range_join(::io::deephaven::proto::backplane::grpc::RangeJoinTablesRequest* range_join) { - ::google::protobuf::Arena* message_arena = GetArena(); - clear_op(); - if (range_join) { - ::google::protobuf::Arena* submessage_arena = range_join->GetArena(); - if (message_arena != submessage_arena) { - range_join = ::google::protobuf::internal::GetOwnedMessage(message_arena, range_join, submessage_arena); - } - set_has_range_join(); - _impl_.op_.range_join_ = range_join; - } - // @@protoc_insertion_point(field_set_allocated:io.deephaven.proto.backplane.grpc.BatchTableRequest.Operation.range_join) -} -void BatchTableRequest_Operation::set_allocated_aj(::io::deephaven::proto::backplane::grpc::AjRajTablesRequest* aj) { - ::google::protobuf::Arena* message_arena = GetArena(); - clear_op(); - if (aj) { - ::google::protobuf::Arena* submessage_arena = aj->GetArena(); - if (message_arena != submessage_arena) { - aj = ::google::protobuf::internal::GetOwnedMessage(message_arena, aj, submessage_arena); - } - set_has_aj(); - _impl_.op_.aj_ = aj; - } - // @@protoc_insertion_point(field_set_allocated:io.deephaven.proto.backplane.grpc.BatchTableRequest.Operation.aj) -} -void BatchTableRequest_Operation::set_allocated_raj(::io::deephaven::proto::backplane::grpc::AjRajTablesRequest* raj) { - ::google::protobuf::Arena* message_arena = GetArena(); - clear_op(); - if (raj) { - ::google::protobuf::Arena* submessage_arena = raj->GetArena(); - if (message_arena != submessage_arena) { - raj = ::google::protobuf::internal::GetOwnedMessage(message_arena, raj, submessage_arena); - } - set_has_raj(); - _impl_.op_.raj_ = raj; - } - // @@protoc_insertion_point(field_set_allocated:io.deephaven.proto.backplane.grpc.BatchTableRequest.Operation.raj) -} -void BatchTableRequest_Operation::set_allocated_column_statistics(::io::deephaven::proto::backplane::grpc::ColumnStatisticsRequest* column_statistics) { - ::google::protobuf::Arena* message_arena = GetArena(); - clear_op(); - if (column_statistics) { - ::google::protobuf::Arena* submessage_arena = column_statistics->GetArena(); - if (message_arena != submessage_arena) { - column_statistics = ::google::protobuf::internal::GetOwnedMessage(message_arena, column_statistics, submessage_arena); - } - set_has_column_statistics(); - _impl_.op_.column_statistics_ = column_statistics; - } - // @@protoc_insertion_point(field_set_allocated:io.deephaven.proto.backplane.grpc.BatchTableRequest.Operation.column_statistics) -} -void BatchTableRequest_Operation::set_allocated_multi_join(::io::deephaven::proto::backplane::grpc::MultiJoinTablesRequest* multi_join) { - ::google::protobuf::Arena* message_arena = GetArena(); - clear_op(); - if (multi_join) { - ::google::protobuf::Arena* submessage_arena = multi_join->GetArena(); - if (message_arena != submessage_arena) { - multi_join = ::google::protobuf::internal::GetOwnedMessage(message_arena, multi_join, submessage_arena); - } - set_has_multi_join(); - _impl_.op_.multi_join_ = multi_join; - } - // @@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 ::io::deephaven::proto::backplane::grpc::BatchTableRequest_Operation& from_msg) - : op_{}, - _cached_size_{0}, - _oneof_case_{from._oneof_case_[0]} {} - -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_, from); - switch (op_case()) { - case OP_NOT_SET: - break; - case kEmptyTable: - _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_ = ::google::protobuf::Message::CopyConstruct<::io::deephaven::proto::backplane::grpc::TimeTableRequest>(arena, *from._impl_.op_.time_table_); - break; - case kDropColumns: - _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_ = ::google::protobuf::Message::CopyConstruct<::io::deephaven::proto::backplane::grpc::SelectOrUpdateRequest>(arena, *from._impl_.op_.update_); - break; - case kLazyUpdate: - _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_ = ::google::protobuf::Message::CopyConstruct<::io::deephaven::proto::backplane::grpc::SelectOrUpdateRequest>(arena, *from._impl_.op_.view_); - break; - case kUpdateView: - _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_ = ::google::protobuf::Message::CopyConstruct<::io::deephaven::proto::backplane::grpc::SelectOrUpdateRequest>(arena, *from._impl_.op_.select_); - break; - case kSelectDistinct: - _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_ = ::google::protobuf::Message::CopyConstruct<::io::deephaven::proto::backplane::grpc::FilterTableRequest>(arena, *from._impl_.op_.filter_); - break; - case kUnstructuredFilter: - _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_ = ::google::protobuf::Message::CopyConstruct<::io::deephaven::proto::backplane::grpc::SortTableRequest>(arena, *from._impl_.op_.sort_); - break; - case kHead: - _impl_.op_.head_ = ::google::protobuf::Message::CopyConstruct<::io::deephaven::proto::backplane::grpc::HeadOrTailRequest>(arena, *from._impl_.op_.head_); - break; - case kTail: - _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_ = ::google::protobuf::Message::CopyConstruct<::io::deephaven::proto::backplane::grpc::HeadOrTailByRequest>(arena, *from._impl_.op_.head_by_); - break; - case kTailBy: - _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_ = ::google::protobuf::Message::CopyConstruct<::io::deephaven::proto::backplane::grpc::UngroupRequest>(arena, *from._impl_.op_.ungroup_); - break; - case kMerge: - _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_ = ::google::protobuf::Message::CopyConstruct<::io::deephaven::proto::backplane::grpc::ComboAggregateRequest>(arena, *from._impl_.op_.combo_aggregate_); - break; - case kFlatten: - _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_ = ::google::protobuf::Message::CopyConstruct<::io::deephaven::proto::backplane::grpc::RunChartDownsampleRequest>(arena, *from._impl_.op_.run_chart_downsample_); - break; - case kCrossJoin: - _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_ = ::google::protobuf::Message::CopyConstruct<::io::deephaven::proto::backplane::grpc::NaturalJoinTablesRequest>(arena, *from._impl_.op_.natural_join_); - break; - case kExactJoin: - _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_ = ::google::protobuf::Message::CopyConstruct<::io::deephaven::proto::backplane::grpc::LeftJoinTablesRequest>(arena, *from._impl_.op_.left_join_); - break; - case kAsOfJoin: - _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_ = ::google::protobuf::Message::CopyConstruct<::io::deephaven::proto::backplane::grpc::FetchTableRequest>(arena, *from._impl_.op_.fetch_table_); - break; - case kApplyPreviewColumns: - _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_ = ::google::protobuf::Message::CopyConstruct<::io::deephaven::proto::backplane::grpc::CreateInputTableRequest>(arena, *from._impl_.op_.create_input_table_); - break; - case kUpdateBy: - _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_ = ::google::protobuf::Message::CopyConstruct<::io::deephaven::proto::backplane::grpc::WhereInRequest>(arena, *from._impl_.op_.where_in_); - break; - case kAggregateAll: - _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_ = ::google::protobuf::Message::CopyConstruct<::io::deephaven::proto::backplane::grpc::AggregateRequest>(arena, *from._impl_.op_.aggregate_); - break; - case kSnapshot: - _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_ = ::google::protobuf::Message::CopyConstruct<::io::deephaven::proto::backplane::grpc::SnapshotWhenTableRequest>(arena, *from._impl_.op_.snapshot_when_); - break; - case kMetaTable: - _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_ = ::google::protobuf::Message::CopyConstruct<::io::deephaven::proto::backplane::grpc::RangeJoinTablesRequest>(arena, *from._impl_.op_.range_join_); - break; - case kAj: - _impl_.op_.aj_ = ::google::protobuf::Message::CopyConstruct<::io::deephaven::proto::backplane::grpc::AjRajTablesRequest>(arena, *from._impl_.op_.aj_); - break; - case kRaj: - _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_ = ::google::protobuf::Message::CopyConstruct<::io::deephaven::proto::backplane::grpc::ColumnStatisticsRequest>(arena, *from._impl_.op_.column_statistics_); - break; - case kMultiJoin: - _impl_.op_.multi_join_ = ::google::protobuf::Message::CopyConstruct<::io::deephaven::proto::backplane::grpc::MultiJoinTablesRequest>(arena, *from._impl_.op_.multi_join_); - break; - } - - // @@protoc_insertion_point(copy_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) - : op_{}, - _cached_size_{0}, - _oneof_case_{} {} - -inline void BatchTableRequest_Operation::SharedCtor(::_pb::Arena* arena) { - new (&_impl_) Impl_(internal_visibility(), arena); -} -BatchTableRequest_Operation::~BatchTableRequest_Operation() { - // @@protoc_insertion_point(destructor:io.deephaven.proto.backplane.grpc.BatchTableRequest.Operation) - _internal_metadata_.Delete<::google::protobuf::UnknownFieldSet>(); - SharedDtor(); -} -inline void BatchTableRequest_Operation::SharedDtor() { - ABSL_DCHECK(GetArena() == nullptr); - if (has_op()) { - clear_op(); - } - _impl_.~Impl_(); -} - -void BatchTableRequest_Operation::clear_op() { -// @@protoc_insertion_point(one_of_clear_start:io.deephaven.proto.backplane.grpc.BatchTableRequest.Operation) - ::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; - } - case OP_NOT_SET: { - break; - } - } - _impl_._oneof_case_[0] = OP_NOT_SET; -} - - -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_ = { - { - 0, // no _has_bits_ - 0, // no _extensions_ - 43, 0, // max_field_number, fast_idx_mask - offsetof(decltype(_table_), field_lookup_table), - 268959744, // skipmap - offsetof(decltype(_table_), field_entries), - 41, // num_field_entries - 41, // num_aux_entries - offsetof(decltype(_table_), 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::BatchTableRequest_Operation>(), // to_prefetch - #endif // PROTOBUF_PREFETCH_PARSE_TABLE - }, {{ - {::_pbi::TcParser::MiniParse, {}}, - }}, {{ - 33, 0, 1, - 63488, 30, - 65535, 65535 - }}, {{ - // .io.deephaven.proto.backplane.grpc.EmptyTableRequest empty_table = 1; - {PROTOBUF_FIELD_OFFSET(BatchTableRequest_Operation, _impl_.op_.empty_table_), _Internal::kOneofCaseOffset + 0, 0, - (0 | ::_fl::kFcOneof | ::_fl::kMessage | ::_fl::kTvTable)}, - // .io.deephaven.proto.backplane.grpc.TimeTableRequest time_table = 2; - {PROTOBUF_FIELD_OFFSET(BatchTableRequest_Operation, _impl_.op_.time_table_), _Internal::kOneofCaseOffset + 0, 1, - (0 | ::_fl::kFcOneof | ::_fl::kMessage | ::_fl::kTvTable)}, - // .io.deephaven.proto.backplane.grpc.DropColumnsRequest drop_columns = 3; - {PROTOBUF_FIELD_OFFSET(BatchTableRequest_Operation, _impl_.op_.drop_columns_), _Internal::kOneofCaseOffset + 0, 2, - (0 | ::_fl::kFcOneof | ::_fl::kMessage | ::_fl::kTvTable)}, - // .io.deephaven.proto.backplane.grpc.SelectOrUpdateRequest update = 4; - {PROTOBUF_FIELD_OFFSET(BatchTableRequest_Operation, _impl_.op_.update_), _Internal::kOneofCaseOffset + 0, 3, - (0 | ::_fl::kFcOneof | ::_fl::kMessage | ::_fl::kTvTable)}, - // .io.deephaven.proto.backplane.grpc.SelectOrUpdateRequest lazy_update = 5; - {PROTOBUF_FIELD_OFFSET(BatchTableRequest_Operation, _impl_.op_.lazy_update_), _Internal::kOneofCaseOffset + 0, 4, - (0 | ::_fl::kFcOneof | ::_fl::kMessage | ::_fl::kTvTable)}, - // .io.deephaven.proto.backplane.grpc.SelectOrUpdateRequest view = 6; - {PROTOBUF_FIELD_OFFSET(BatchTableRequest_Operation, _impl_.op_.view_), _Internal::kOneofCaseOffset + 0, 5, - (0 | ::_fl::kFcOneof | ::_fl::kMessage | ::_fl::kTvTable)}, - // .io.deephaven.proto.backplane.grpc.SelectOrUpdateRequest update_view = 7; - {PROTOBUF_FIELD_OFFSET(BatchTableRequest_Operation, _impl_.op_.update_view_), _Internal::kOneofCaseOffset + 0, 6, - (0 | ::_fl::kFcOneof | ::_fl::kMessage | ::_fl::kTvTable)}, - // .io.deephaven.proto.backplane.grpc.SelectOrUpdateRequest select = 8; - {PROTOBUF_FIELD_OFFSET(BatchTableRequest_Operation, _impl_.op_.select_), _Internal::kOneofCaseOffset + 0, 7, - (0 | ::_fl::kFcOneof | ::_fl::kMessage | ::_fl::kTvTable)}, - // .io.deephaven.proto.backplane.grpc.SelectDistinctRequest select_distinct = 9; - {PROTOBUF_FIELD_OFFSET(BatchTableRequest_Operation, _impl_.op_.select_distinct_), _Internal::kOneofCaseOffset + 0, 8, - (0 | ::_fl::kFcOneof | ::_fl::kMessage | ::_fl::kTvTable)}, - // .io.deephaven.proto.backplane.grpc.FilterTableRequest filter = 10; - {PROTOBUF_FIELD_OFFSET(BatchTableRequest_Operation, _impl_.op_.filter_), _Internal::kOneofCaseOffset + 0, 9, - (0 | ::_fl::kFcOneof | ::_fl::kMessage | ::_fl::kTvTable)}, - // .io.deephaven.proto.backplane.grpc.UnstructuredFilterTableRequest unstructured_filter = 11; - {PROTOBUF_FIELD_OFFSET(BatchTableRequest_Operation, _impl_.op_.unstructured_filter_), _Internal::kOneofCaseOffset + 0, 10, - (0 | ::_fl::kFcOneof | ::_fl::kMessage | ::_fl::kTvTable)}, - // .io.deephaven.proto.backplane.grpc.SortTableRequest sort = 12; - {PROTOBUF_FIELD_OFFSET(BatchTableRequest_Operation, _impl_.op_.sort_), _Internal::kOneofCaseOffset + 0, 11, - (0 | ::_fl::kFcOneof | ::_fl::kMessage | ::_fl::kTvTable)}, - // .io.deephaven.proto.backplane.grpc.HeadOrTailRequest head = 13; - {PROTOBUF_FIELD_OFFSET(BatchTableRequest_Operation, _impl_.op_.head_), _Internal::kOneofCaseOffset + 0, 12, - (0 | ::_fl::kFcOneof | ::_fl::kMessage | ::_fl::kTvTable)}, - // .io.deephaven.proto.backplane.grpc.HeadOrTailRequest tail = 14; - {PROTOBUF_FIELD_OFFSET(BatchTableRequest_Operation, _impl_.op_.tail_), _Internal::kOneofCaseOffset + 0, 13, - (0 | ::_fl::kFcOneof | ::_fl::kMessage | ::_fl::kTvTable)}, - // .io.deephaven.proto.backplane.grpc.HeadOrTailByRequest head_by = 15; - {PROTOBUF_FIELD_OFFSET(BatchTableRequest_Operation, _impl_.op_.head_by_), _Internal::kOneofCaseOffset + 0, 14, - (0 | ::_fl::kFcOneof | ::_fl::kMessage | ::_fl::kTvTable)}, - // .io.deephaven.proto.backplane.grpc.HeadOrTailByRequest tail_by = 16; - {PROTOBUF_FIELD_OFFSET(BatchTableRequest_Operation, _impl_.op_.tail_by_), _Internal::kOneofCaseOffset + 0, 15, - (0 | ::_fl::kFcOneof | ::_fl::kMessage | ::_fl::kTvTable)}, - // .io.deephaven.proto.backplane.grpc.UngroupRequest ungroup = 17; - {PROTOBUF_FIELD_OFFSET(BatchTableRequest_Operation, _impl_.op_.ungroup_), _Internal::kOneofCaseOffset + 0, 16, - (0 | ::_fl::kFcOneof | ::_fl::kMessage | ::_fl::kTvTable)}, - // .io.deephaven.proto.backplane.grpc.MergeTablesRequest merge = 18; - {PROTOBUF_FIELD_OFFSET(BatchTableRequest_Operation, _impl_.op_.merge_), _Internal::kOneofCaseOffset + 0, 17, - (0 | ::_fl::kFcOneof | ::_fl::kMessage | ::_fl::kTvTable)}, - // .io.deephaven.proto.backplane.grpc.ComboAggregateRequest combo_aggregate = 19; - {PROTOBUF_FIELD_OFFSET(BatchTableRequest_Operation, _impl_.op_.combo_aggregate_), _Internal::kOneofCaseOffset + 0, 18, - (0 | ::_fl::kFcOneof | ::_fl::kMessage | ::_fl::kTvTable)}, - // .io.deephaven.proto.backplane.grpc.FlattenRequest flatten = 21; - {PROTOBUF_FIELD_OFFSET(BatchTableRequest_Operation, _impl_.op_.flatten_), _Internal::kOneofCaseOffset + 0, 19, - (0 | ::_fl::kFcOneof | ::_fl::kMessage | ::_fl::kTvTable)}, - // .io.deephaven.proto.backplane.grpc.RunChartDownsampleRequest run_chart_downsample = 22; - {PROTOBUF_FIELD_OFFSET(BatchTableRequest_Operation, _impl_.op_.run_chart_downsample_), _Internal::kOneofCaseOffset + 0, 20, - (0 | ::_fl::kFcOneof | ::_fl::kMessage | ::_fl::kTvTable)}, - // .io.deephaven.proto.backplane.grpc.CrossJoinTablesRequest cross_join = 23; - {PROTOBUF_FIELD_OFFSET(BatchTableRequest_Operation, _impl_.op_.cross_join_), _Internal::kOneofCaseOffset + 0, 21, - (0 | ::_fl::kFcOneof | ::_fl::kMessage | ::_fl::kTvTable)}, - // .io.deephaven.proto.backplane.grpc.NaturalJoinTablesRequest natural_join = 24; - {PROTOBUF_FIELD_OFFSET(BatchTableRequest_Operation, _impl_.op_.natural_join_), _Internal::kOneofCaseOffset + 0, 22, - (0 | ::_fl::kFcOneof | ::_fl::kMessage | ::_fl::kTvTable)}, - // .io.deephaven.proto.backplane.grpc.ExactJoinTablesRequest exact_join = 25; - {PROTOBUF_FIELD_OFFSET(BatchTableRequest_Operation, _impl_.op_.exact_join_), _Internal::kOneofCaseOffset + 0, 23, - (0 | ::_fl::kFcOneof | ::_fl::kMessage | ::_fl::kTvTable)}, - // .io.deephaven.proto.backplane.grpc.LeftJoinTablesRequest left_join = 26; - {PROTOBUF_FIELD_OFFSET(BatchTableRequest_Operation, _impl_.op_.left_join_), _Internal::kOneofCaseOffset + 0, 24, - (0 | ::_fl::kFcOneof | ::_fl::kMessage | ::_fl::kTvTable)}, - // .io.deephaven.proto.backplane.grpc.AsOfJoinTablesRequest as_of_join = 27 [deprecated = true]; - {PROTOBUF_FIELD_OFFSET(BatchTableRequest_Operation, _impl_.op_.as_of_join_), _Internal::kOneofCaseOffset + 0, 25, - (0 | ::_fl::kFcOneof | ::_fl::kMessage | ::_fl::kTvTable)}, - // .io.deephaven.proto.backplane.grpc.FetchTableRequest fetch_table = 28; - {PROTOBUF_FIELD_OFFSET(BatchTableRequest_Operation, _impl_.op_.fetch_table_), _Internal::kOneofCaseOffset + 0, 26, - (0 | ::_fl::kFcOneof | ::_fl::kMessage | ::_fl::kTvTable)}, - // .io.deephaven.proto.backplane.grpc.ApplyPreviewColumnsRequest apply_preview_columns = 30; - {PROTOBUF_FIELD_OFFSET(BatchTableRequest_Operation, _impl_.op_.apply_preview_columns_), _Internal::kOneofCaseOffset + 0, 27, - (0 | ::_fl::kFcOneof | ::_fl::kMessage | ::_fl::kTvTable)}, - // .io.deephaven.proto.backplane.grpc.CreateInputTableRequest create_input_table = 31; - {PROTOBUF_FIELD_OFFSET(BatchTableRequest_Operation, _impl_.op_.create_input_table_), _Internal::kOneofCaseOffset + 0, 28, - (0 | ::_fl::kFcOneof | ::_fl::kMessage | ::_fl::kTvTable)}, - // .io.deephaven.proto.backplane.grpc.UpdateByRequest update_by = 32; - {PROTOBUF_FIELD_OFFSET(BatchTableRequest_Operation, _impl_.op_.update_by_), _Internal::kOneofCaseOffset + 0, 29, - (0 | ::_fl::kFcOneof | ::_fl::kMessage | ::_fl::kTvTable)}, - // .io.deephaven.proto.backplane.grpc.WhereInRequest where_in = 33; - {PROTOBUF_FIELD_OFFSET(BatchTableRequest_Operation, _impl_.op_.where_in_), _Internal::kOneofCaseOffset + 0, 30, - (0 | ::_fl::kFcOneof | ::_fl::kMessage | ::_fl::kTvTable)}, - // .io.deephaven.proto.backplane.grpc.AggregateAllRequest aggregate_all = 34; - {PROTOBUF_FIELD_OFFSET(BatchTableRequest_Operation, _impl_.op_.aggregate_all_), _Internal::kOneofCaseOffset + 0, 31, - (0 | ::_fl::kFcOneof | ::_fl::kMessage | ::_fl::kTvTable)}, - // .io.deephaven.proto.backplane.grpc.AggregateRequest aggregate = 35; - {PROTOBUF_FIELD_OFFSET(BatchTableRequest_Operation, _impl_.op_.aggregate_), _Internal::kOneofCaseOffset + 0, 32, - (0 | ::_fl::kFcOneof | ::_fl::kMessage | ::_fl::kTvTable)}, - // .io.deephaven.proto.backplane.grpc.SnapshotTableRequest snapshot = 36; - {PROTOBUF_FIELD_OFFSET(BatchTableRequest_Operation, _impl_.op_.snapshot_), _Internal::kOneofCaseOffset + 0, 33, - (0 | ::_fl::kFcOneof | ::_fl::kMessage | ::_fl::kTvTable)}, - // .io.deephaven.proto.backplane.grpc.SnapshotWhenTableRequest snapshot_when = 37; - {PROTOBUF_FIELD_OFFSET(BatchTableRequest_Operation, _impl_.op_.snapshot_when_), _Internal::kOneofCaseOffset + 0, 34, - (0 | ::_fl::kFcOneof | ::_fl::kMessage | ::_fl::kTvTable)}, - // .io.deephaven.proto.backplane.grpc.MetaTableRequest meta_table = 38; - {PROTOBUF_FIELD_OFFSET(BatchTableRequest_Operation, _impl_.op_.meta_table_), _Internal::kOneofCaseOffset + 0, 35, - (0 | ::_fl::kFcOneof | ::_fl::kMessage | ::_fl::kTvTable)}, - // .io.deephaven.proto.backplane.grpc.RangeJoinTablesRequest range_join = 39; - {PROTOBUF_FIELD_OFFSET(BatchTableRequest_Operation, _impl_.op_.range_join_), _Internal::kOneofCaseOffset + 0, 36, - (0 | ::_fl::kFcOneof | ::_fl::kMessage | ::_fl::kTvTable)}, - // .io.deephaven.proto.backplane.grpc.AjRajTablesRequest aj = 40; - {PROTOBUF_FIELD_OFFSET(BatchTableRequest_Operation, _impl_.op_.aj_), _Internal::kOneofCaseOffset + 0, 37, - (0 | ::_fl::kFcOneof | ::_fl::kMessage | ::_fl::kTvTable)}, - // .io.deephaven.proto.backplane.grpc.AjRajTablesRequest raj = 41; - {PROTOBUF_FIELD_OFFSET(BatchTableRequest_Operation, _impl_.op_.raj_), _Internal::kOneofCaseOffset + 0, 38, - (0 | ::_fl::kFcOneof | ::_fl::kMessage | ::_fl::kTvTable)}, - // .io.deephaven.proto.backplane.grpc.ColumnStatisticsRequest column_statistics = 42; - {PROTOBUF_FIELD_OFFSET(BatchTableRequest_Operation, _impl_.op_.column_statistics_), _Internal::kOneofCaseOffset + 0, 39, - (0 | ::_fl::kFcOneof | ::_fl::kMessage | ::_fl::kTvTable)}, - // .io.deephaven.proto.backplane.grpc.MultiJoinTablesRequest multi_join = 43; - {PROTOBUF_FIELD_OFFSET(BatchTableRequest_Operation, _impl_.op_.multi_join_), _Internal::kOneofCaseOffset + 0, 40, - (0 | ::_fl::kFcOneof | ::_fl::kMessage | ::_fl::kTvTable)}, - }}, {{ - {::_pbi::TcParser::GetTable<::io::deephaven::proto::backplane::grpc::EmptyTableRequest>()}, - {::_pbi::TcParser::GetTable<::io::deephaven::proto::backplane::grpc::TimeTableRequest>()}, - {::_pbi::TcParser::GetTable<::io::deephaven::proto::backplane::grpc::DropColumnsRequest>()}, - {::_pbi::TcParser::GetTable<::io::deephaven::proto::backplane::grpc::SelectOrUpdateRequest>()}, - {::_pbi::TcParser::GetTable<::io::deephaven::proto::backplane::grpc::SelectOrUpdateRequest>()}, - {::_pbi::TcParser::GetTable<::io::deephaven::proto::backplane::grpc::SelectOrUpdateRequest>()}, - {::_pbi::TcParser::GetTable<::io::deephaven::proto::backplane::grpc::SelectOrUpdateRequest>()}, - {::_pbi::TcParser::GetTable<::io::deephaven::proto::backplane::grpc::SelectOrUpdateRequest>()}, - {::_pbi::TcParser::GetTable<::io::deephaven::proto::backplane::grpc::SelectDistinctRequest>()}, - {::_pbi::TcParser::GetTable<::io::deephaven::proto::backplane::grpc::FilterTableRequest>()}, - {::_pbi::TcParser::GetTable<::io::deephaven::proto::backplane::grpc::UnstructuredFilterTableRequest>()}, - {::_pbi::TcParser::GetTable<::io::deephaven::proto::backplane::grpc::SortTableRequest>()}, - {::_pbi::TcParser::GetTable<::io::deephaven::proto::backplane::grpc::HeadOrTailRequest>()}, - {::_pbi::TcParser::GetTable<::io::deephaven::proto::backplane::grpc::HeadOrTailRequest>()}, - {::_pbi::TcParser::GetTable<::io::deephaven::proto::backplane::grpc::HeadOrTailByRequest>()}, - {::_pbi::TcParser::GetTable<::io::deephaven::proto::backplane::grpc::HeadOrTailByRequest>()}, - {::_pbi::TcParser::GetTable<::io::deephaven::proto::backplane::grpc::UngroupRequest>()}, - {::_pbi::TcParser::GetTable<::io::deephaven::proto::backplane::grpc::MergeTablesRequest>()}, - {::_pbi::TcParser::GetTable<::io::deephaven::proto::backplane::grpc::ComboAggregateRequest>()}, - {::_pbi::TcParser::GetTable<::io::deephaven::proto::backplane::grpc::FlattenRequest>()}, - {::_pbi::TcParser::GetTable<::io::deephaven::proto::backplane::grpc::RunChartDownsampleRequest>()}, - {::_pbi::TcParser::GetTable<::io::deephaven::proto::backplane::grpc::CrossJoinTablesRequest>()}, - {::_pbi::TcParser::GetTable<::io::deephaven::proto::backplane::grpc::NaturalJoinTablesRequest>()}, - {::_pbi::TcParser::GetTable<::io::deephaven::proto::backplane::grpc::ExactJoinTablesRequest>()}, - {::_pbi::TcParser::GetTable<::io::deephaven::proto::backplane::grpc::LeftJoinTablesRequest>()}, - {::_pbi::TcParser::GetTable<::io::deephaven::proto::backplane::grpc::AsOfJoinTablesRequest>()}, - {::_pbi::TcParser::GetTable<::io::deephaven::proto::backplane::grpc::FetchTableRequest>()}, - {::_pbi::TcParser::GetTable<::io::deephaven::proto::backplane::grpc::ApplyPreviewColumnsRequest>()}, - {::_pbi::TcParser::GetTable<::io::deephaven::proto::backplane::grpc::CreateInputTableRequest>()}, - {::_pbi::TcParser::GetTable<::io::deephaven::proto::backplane::grpc::UpdateByRequest>()}, - {::_pbi::TcParser::GetTable<::io::deephaven::proto::backplane::grpc::WhereInRequest>()}, - {::_pbi::TcParser::GetTable<::io::deephaven::proto::backplane::grpc::AggregateAllRequest>()}, - {::_pbi::TcParser::GetTable<::io::deephaven::proto::backplane::grpc::AggregateRequest>()}, - {::_pbi::TcParser::GetTable<::io::deephaven::proto::backplane::grpc::SnapshotTableRequest>()}, - {::_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>()}, - }}, {{ - }}, -}; - -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>(); -} - -#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; - - 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; - } - - 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_); -} - -void BatchTableRequest_Operation::CopyFrom(const BatchTableRequest_Operation& from) { -// @@protoc_insertion_point(class_specific_copy_from_start:io.deephaven.proto.backplane.grpc.BatchTableRequest.Operation) - if (&from == this) return; - Clear(); - MergeFrom(from); -} - - -void BatchTableRequest_Operation::InternalSwap(BatchTableRequest_Operation* PROTOBUF_RESTRICT other) { - using std::swap; - _internal_metadata_.InternalSwap(&other->_internal_metadata_); - swap(_impl_.op_, other->_impl_.op_); - swap(_impl_._oneof_case_[0], other->_impl_._oneof_case_[0]); -} - -::google::protobuf::Metadata BatchTableRequest_Operation::GetMetadata() const { - return ::google::protobuf::Message::GetMetadataImpl(GetClassData()->full()); -} -// =================================================================== - -class BatchTableRequest::_Internal { - public: -}; - -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 ::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_, from); - - // @@protoc_insertion_point(copy_constructor:io.deephaven.proto.backplane.grpc.BatchTableRequest) -} -inline PROTOBUF_NDEBUG_INLINE BatchTableRequest::Impl_::Impl_( - ::google::protobuf::internal::InternalVisibility visibility, - ::google::protobuf::Arena* arena) - : ops_{visibility, arena}, - _cached_size_{0} {} - -inline void BatchTableRequest::SharedCtor(::_pb::Arena* arena) { - new (&_impl_) Impl_(internal_visibility(), arena); -} -BatchTableRequest::~BatchTableRequest() { - // @@protoc_insertion_point(destructor:io.deephaven.proto.backplane.grpc.BatchTableRequest) - _internal_metadata_.Delete<::google::protobuf::UnknownFieldSet>(); - SharedDtor(); -} -inline void BatchTableRequest::SharedDtor() { - ABSL_DCHECK(GetArena() == nullptr); - _impl_.~Impl_(); -} - -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_ = { - { - 0, // no _has_bits_ - 0, // no _extensions_ - 1, 0, // max_field_number, fast_idx_mask - offsetof(decltype(_table_), field_lookup_table), - 4294967294, // skipmap - offsetof(decltype(_table_), field_entries), - 1, // num_field_entries - 1, // num_aux_entries - offsetof(decltype(_table_), 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::BatchTableRequest>(), // to_prefetch - #endif // PROTOBUF_PREFETCH_PARSE_TABLE - }, {{ - // repeated .io.deephaven.proto.backplane.grpc.BatchTableRequest.Operation ops = 1; - {::_pbi::TcParser::FastMtR1, - {10, 63, 0, PROTOBUF_FIELD_OFFSET(BatchTableRequest, _impl_.ops_)}}, - }}, {{ - 65535, 65535 - }}, {{ - // repeated .io.deephaven.proto.backplane.grpc.BatchTableRequest.Operation ops = 1; - {PROTOBUF_FIELD_OFFSET(BatchTableRequest, _impl_.ops_), 0, 0, - (0 | ::_fl::kFcRepeated | ::_fl::kMessage | ::_fl::kTvTable)}, - }}, {{ - {::_pbi::TcParser::GetTable<::io::deephaven::proto::backplane::grpc::BatchTableRequest_Operation>()}, - }}, {{ - }}, -}; - -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; - - _impl_.ops_.Clear(); - _internal_metadata_.Clear<::google::protobuf::UnknownFieldSet>(); -} - -#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) - ABSL_DCHECK_NE(&from, _this); - ::uint32_t cached_has_bits = 0; - (void) cached_has_bits; - - _this->_internal_mutable_ops()->MergeFrom( - from._internal_ops()); - _this->_internal_metadata_.MergeFrom<::google::protobuf::UnknownFieldSet>(from._internal_metadata_); -} - -void BatchTableRequest::CopyFrom(const BatchTableRequest& from) { -// @@protoc_insertion_point(class_specific_copy_from_start:io.deephaven.proto.backplane.grpc.BatchTableRequest) - if (&from == this) return; - Clear(); - MergeFrom(from); -} - - -void BatchTableRequest::InternalSwap(BatchTableRequest* PROTOBUF_RESTRICT other) { - using std::swap; - _internal_metadata_.InternalSwap(&other->_internal_metadata_); - _impl_.ops_.InternalSwap(&other->_impl_.ops_); -} - -::google::protobuf::Metadata BatchTableRequest::GetMetadata() const { - return ::google::protobuf::Message::GetMetadataImpl(GetClassData()->full()); -} -// @@protoc_insertion_point(namespace_scope) -} // namespace grpc -} // namespace backplane -} // namespace proto -} // namespace deephaven -} // namespace io -namespace google { -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 deleted file mode 100644 index fb5e51c687f..00000000000 --- a/cpp-client/deephaven/dhclient/proto/deephaven/proto/table.pb.h +++ /dev/null @@ -1,58228 +0,0 @@ -// 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 - -#ifndef GOOGLE_PROTOBUF_INCLUDED_deephaven_2fproto_2ftable_2eproto_2epb_2eh -#define GOOGLE_PROTOBUF_INCLUDED_deephaven_2fproto_2ftable_2eproto_2epb_2eh - -#include -#include -#include -#include - -#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" -#include "google/protobuf/generated_message_bases.h" -#include "google/protobuf/generated_message_tctable_decl.h" -#include "google/protobuf/generated_message_util.h" -#include "google/protobuf/metadata_lite.h" -#include "google/protobuf/generated_message_reflection.h" -#include "google/protobuf/message.h" -#include "google/protobuf/repeated_field.h" // IWYU pragma: export -#include "google/protobuf/extension_set.h" // IWYU pragma: export -#include "google/protobuf/generated_enum_reflection.h" -#include "google/protobuf/unknown_field_set.h" -#include "deephaven/proto/ticket.pb.h" -// @@protoc_insertion_point(includes) - -// Must be included last. -#include "google/protobuf/port_def.inc" - -#define PROTOBUF_INTERNAL_EXPORT_deephaven_2fproto_2ftable_2eproto - -namespace google { -namespace protobuf { -namespace internal { -class AnyMetadata; -} // namespace internal -} // namespace protobuf -} // namespace google - -// Internal implementation detail -- do not use these members. -struct TableStruct_deephaven_2fproto_2ftable_2eproto { - static const ::uint32_t offsets[]; -}; -extern const ::google::protobuf::internal::DescriptorTable - descriptor_table_deephaven_2fproto_2ftable_2eproto; -namespace io { -namespace deephaven { -namespace proto { -namespace backplane { -namespace grpc { -class AggSpec; -struct AggSpecDefaultTypeInternal; -extern AggSpecDefaultTypeInternal _AggSpec_default_instance_; -class AggSpec_AggSpecAbsSum; -struct AggSpec_AggSpecAbsSumDefaultTypeInternal; -extern AggSpec_AggSpecAbsSumDefaultTypeInternal _AggSpec_AggSpecAbsSum_default_instance_; -class AggSpec_AggSpecApproximatePercentile; -struct AggSpec_AggSpecApproximatePercentileDefaultTypeInternal; -extern AggSpec_AggSpecApproximatePercentileDefaultTypeInternal _AggSpec_AggSpecApproximatePercentile_default_instance_; -class AggSpec_AggSpecAvg; -struct AggSpec_AggSpecAvgDefaultTypeInternal; -extern AggSpec_AggSpecAvgDefaultTypeInternal _AggSpec_AggSpecAvg_default_instance_; -class AggSpec_AggSpecCountDistinct; -struct AggSpec_AggSpecCountDistinctDefaultTypeInternal; -extern AggSpec_AggSpecCountDistinctDefaultTypeInternal _AggSpec_AggSpecCountDistinct_default_instance_; -class AggSpec_AggSpecDistinct; -struct AggSpec_AggSpecDistinctDefaultTypeInternal; -extern AggSpec_AggSpecDistinctDefaultTypeInternal _AggSpec_AggSpecDistinct_default_instance_; -class AggSpec_AggSpecFirst; -struct AggSpec_AggSpecFirstDefaultTypeInternal; -extern AggSpec_AggSpecFirstDefaultTypeInternal _AggSpec_AggSpecFirst_default_instance_; -class AggSpec_AggSpecFormula; -struct AggSpec_AggSpecFormulaDefaultTypeInternal; -extern AggSpec_AggSpecFormulaDefaultTypeInternal _AggSpec_AggSpecFormula_default_instance_; -class AggSpec_AggSpecFreeze; -struct AggSpec_AggSpecFreezeDefaultTypeInternal; -extern AggSpec_AggSpecFreezeDefaultTypeInternal _AggSpec_AggSpecFreeze_default_instance_; -class AggSpec_AggSpecGroup; -struct AggSpec_AggSpecGroupDefaultTypeInternal; -extern AggSpec_AggSpecGroupDefaultTypeInternal _AggSpec_AggSpecGroup_default_instance_; -class AggSpec_AggSpecLast; -struct AggSpec_AggSpecLastDefaultTypeInternal; -extern AggSpec_AggSpecLastDefaultTypeInternal _AggSpec_AggSpecLast_default_instance_; -class AggSpec_AggSpecMax; -struct AggSpec_AggSpecMaxDefaultTypeInternal; -extern AggSpec_AggSpecMaxDefaultTypeInternal _AggSpec_AggSpecMax_default_instance_; -class AggSpec_AggSpecMedian; -struct AggSpec_AggSpecMedianDefaultTypeInternal; -extern AggSpec_AggSpecMedianDefaultTypeInternal _AggSpec_AggSpecMedian_default_instance_; -class AggSpec_AggSpecMin; -struct AggSpec_AggSpecMinDefaultTypeInternal; -extern AggSpec_AggSpecMinDefaultTypeInternal _AggSpec_AggSpecMin_default_instance_; -class AggSpec_AggSpecNonUniqueSentinel; -struct AggSpec_AggSpecNonUniqueSentinelDefaultTypeInternal; -extern AggSpec_AggSpecNonUniqueSentinelDefaultTypeInternal _AggSpec_AggSpecNonUniqueSentinel_default_instance_; -class AggSpec_AggSpecPercentile; -struct AggSpec_AggSpecPercentileDefaultTypeInternal; -extern AggSpec_AggSpecPercentileDefaultTypeInternal _AggSpec_AggSpecPercentile_default_instance_; -class AggSpec_AggSpecSorted; -struct AggSpec_AggSpecSortedDefaultTypeInternal; -extern AggSpec_AggSpecSortedDefaultTypeInternal _AggSpec_AggSpecSorted_default_instance_; -class AggSpec_AggSpecSortedColumn; -struct AggSpec_AggSpecSortedColumnDefaultTypeInternal; -extern AggSpec_AggSpecSortedColumnDefaultTypeInternal _AggSpec_AggSpecSortedColumn_default_instance_; -class AggSpec_AggSpecStd; -struct AggSpec_AggSpecStdDefaultTypeInternal; -extern AggSpec_AggSpecStdDefaultTypeInternal _AggSpec_AggSpecStd_default_instance_; -class AggSpec_AggSpecSum; -struct AggSpec_AggSpecSumDefaultTypeInternal; -extern AggSpec_AggSpecSumDefaultTypeInternal _AggSpec_AggSpecSum_default_instance_; -class AggSpec_AggSpecTDigest; -struct AggSpec_AggSpecTDigestDefaultTypeInternal; -extern AggSpec_AggSpecTDigestDefaultTypeInternal _AggSpec_AggSpecTDigest_default_instance_; -class AggSpec_AggSpecUnique; -struct AggSpec_AggSpecUniqueDefaultTypeInternal; -extern AggSpec_AggSpecUniqueDefaultTypeInternal _AggSpec_AggSpecUnique_default_instance_; -class AggSpec_AggSpecVar; -struct AggSpec_AggSpecVarDefaultTypeInternal; -extern AggSpec_AggSpecVarDefaultTypeInternal _AggSpec_AggSpecVar_default_instance_; -class AggSpec_AggSpecWeighted; -struct AggSpec_AggSpecWeightedDefaultTypeInternal; -extern AggSpec_AggSpecWeightedDefaultTypeInternal _AggSpec_AggSpecWeighted_default_instance_; -class AggregateAllRequest; -struct AggregateAllRequestDefaultTypeInternal; -extern AggregateAllRequestDefaultTypeInternal _AggregateAllRequest_default_instance_; -class AggregateRequest; -struct AggregateRequestDefaultTypeInternal; -extern AggregateRequestDefaultTypeInternal _AggregateRequest_default_instance_; -class Aggregation; -struct AggregationDefaultTypeInternal; -extern AggregationDefaultTypeInternal _Aggregation_default_instance_; -class Aggregation_AggregationColumns; -struct Aggregation_AggregationColumnsDefaultTypeInternal; -extern Aggregation_AggregationColumnsDefaultTypeInternal _Aggregation_AggregationColumns_default_instance_; -class Aggregation_AggregationCount; -struct Aggregation_AggregationCountDefaultTypeInternal; -extern Aggregation_AggregationCountDefaultTypeInternal _Aggregation_AggregationCount_default_instance_; -class Aggregation_AggregationPartition; -struct Aggregation_AggregationPartitionDefaultTypeInternal; -extern Aggregation_AggregationPartitionDefaultTypeInternal _Aggregation_AggregationPartition_default_instance_; -class Aggregation_AggregationRowKey; -struct Aggregation_AggregationRowKeyDefaultTypeInternal; -extern Aggregation_AggregationRowKeyDefaultTypeInternal _Aggregation_AggregationRowKey_default_instance_; -class AjRajTablesRequest; -struct AjRajTablesRequestDefaultTypeInternal; -extern AjRajTablesRequestDefaultTypeInternal _AjRajTablesRequest_default_instance_; -class AndCondition; -struct AndConditionDefaultTypeInternal; -extern AndConditionDefaultTypeInternal _AndCondition_default_instance_; -class ApplyPreviewColumnsRequest; -struct ApplyPreviewColumnsRequestDefaultTypeInternal; -extern ApplyPreviewColumnsRequestDefaultTypeInternal _ApplyPreviewColumnsRequest_default_instance_; -class AsOfJoinTablesRequest; -struct AsOfJoinTablesRequestDefaultTypeInternal; -extern AsOfJoinTablesRequestDefaultTypeInternal _AsOfJoinTablesRequest_default_instance_; -class BatchTableRequest; -struct BatchTableRequestDefaultTypeInternal; -extern BatchTableRequestDefaultTypeInternal _BatchTableRequest_default_instance_; -class BatchTableRequest_Operation; -struct BatchTableRequest_OperationDefaultTypeInternal; -extern BatchTableRequest_OperationDefaultTypeInternal _BatchTableRequest_Operation_default_instance_; -class ColumnStatisticsRequest; -struct ColumnStatisticsRequestDefaultTypeInternal; -extern ColumnStatisticsRequestDefaultTypeInternal _ColumnStatisticsRequest_default_instance_; -class ComboAggregateRequest; -struct ComboAggregateRequestDefaultTypeInternal; -extern ComboAggregateRequestDefaultTypeInternal _ComboAggregateRequest_default_instance_; -class ComboAggregateRequest_Aggregate; -struct ComboAggregateRequest_AggregateDefaultTypeInternal; -extern ComboAggregateRequest_AggregateDefaultTypeInternal _ComboAggregateRequest_Aggregate_default_instance_; -class CompareCondition; -struct CompareConditionDefaultTypeInternal; -extern CompareConditionDefaultTypeInternal _CompareCondition_default_instance_; -class Condition; -struct ConditionDefaultTypeInternal; -extern ConditionDefaultTypeInternal _Condition_default_instance_; -class ContainsCondition; -struct ContainsConditionDefaultTypeInternal; -extern ContainsConditionDefaultTypeInternal _ContainsCondition_default_instance_; -class CreateInputTableRequest; -struct CreateInputTableRequestDefaultTypeInternal; -extern CreateInputTableRequestDefaultTypeInternal _CreateInputTableRequest_default_instance_; -class CreateInputTableRequest_InputTableKind; -struct CreateInputTableRequest_InputTableKindDefaultTypeInternal; -extern CreateInputTableRequest_InputTableKindDefaultTypeInternal _CreateInputTableRequest_InputTableKind_default_instance_; -class CreateInputTableRequest_InputTableKind_Blink; -struct CreateInputTableRequest_InputTableKind_BlinkDefaultTypeInternal; -extern CreateInputTableRequest_InputTableKind_BlinkDefaultTypeInternal _CreateInputTableRequest_InputTableKind_Blink_default_instance_; -class CreateInputTableRequest_InputTableKind_InMemoryAppendOnly; -struct CreateInputTableRequest_InputTableKind_InMemoryAppendOnlyDefaultTypeInternal; -extern CreateInputTableRequest_InputTableKind_InMemoryAppendOnlyDefaultTypeInternal _CreateInputTableRequest_InputTableKind_InMemoryAppendOnly_default_instance_; -class CreateInputTableRequest_InputTableKind_InMemoryKeyBacked; -struct CreateInputTableRequest_InputTableKind_InMemoryKeyBackedDefaultTypeInternal; -extern CreateInputTableRequest_InputTableKind_InMemoryKeyBackedDefaultTypeInternal _CreateInputTableRequest_InputTableKind_InMemoryKeyBacked_default_instance_; -class CrossJoinTablesRequest; -struct CrossJoinTablesRequestDefaultTypeInternal; -extern CrossJoinTablesRequestDefaultTypeInternal _CrossJoinTablesRequest_default_instance_; -class DropColumnsRequest; -struct DropColumnsRequestDefaultTypeInternal; -extern DropColumnsRequestDefaultTypeInternal _DropColumnsRequest_default_instance_; -class EmptyTableRequest; -struct EmptyTableRequestDefaultTypeInternal; -extern EmptyTableRequestDefaultTypeInternal _EmptyTableRequest_default_instance_; -class ExactJoinTablesRequest; -struct ExactJoinTablesRequestDefaultTypeInternal; -extern ExactJoinTablesRequestDefaultTypeInternal _ExactJoinTablesRequest_default_instance_; -class ExportedTableCreationResponse; -struct ExportedTableCreationResponseDefaultTypeInternal; -extern ExportedTableCreationResponseDefaultTypeInternal _ExportedTableCreationResponse_default_instance_; -class ExportedTableUpdateMessage; -struct ExportedTableUpdateMessageDefaultTypeInternal; -extern ExportedTableUpdateMessageDefaultTypeInternal _ExportedTableUpdateMessage_default_instance_; -class ExportedTableUpdatesRequest; -struct ExportedTableUpdatesRequestDefaultTypeInternal; -extern ExportedTableUpdatesRequestDefaultTypeInternal _ExportedTableUpdatesRequest_default_instance_; -class FetchTableRequest; -struct FetchTableRequestDefaultTypeInternal; -extern FetchTableRequestDefaultTypeInternal _FetchTableRequest_default_instance_; -class FilterTableRequest; -struct FilterTableRequestDefaultTypeInternal; -extern FilterTableRequestDefaultTypeInternal _FilterTableRequest_default_instance_; -class FlattenRequest; -struct FlattenRequestDefaultTypeInternal; -extern FlattenRequestDefaultTypeInternal _FlattenRequest_default_instance_; -class HeadOrTailByRequest; -struct HeadOrTailByRequestDefaultTypeInternal; -extern HeadOrTailByRequestDefaultTypeInternal _HeadOrTailByRequest_default_instance_; -class HeadOrTailRequest; -struct HeadOrTailRequestDefaultTypeInternal; -extern HeadOrTailRequestDefaultTypeInternal _HeadOrTailRequest_default_instance_; -class InCondition; -struct InConditionDefaultTypeInternal; -extern InConditionDefaultTypeInternal _InCondition_default_instance_; -class InvokeCondition; -struct InvokeConditionDefaultTypeInternal; -extern InvokeConditionDefaultTypeInternal _InvokeCondition_default_instance_; -class IsNullCondition; -struct IsNullConditionDefaultTypeInternal; -extern IsNullConditionDefaultTypeInternal _IsNullCondition_default_instance_; -class LeftJoinTablesRequest; -struct LeftJoinTablesRequestDefaultTypeInternal; -extern LeftJoinTablesRequestDefaultTypeInternal _LeftJoinTablesRequest_default_instance_; -class Literal; -struct LiteralDefaultTypeInternal; -extern LiteralDefaultTypeInternal _Literal_default_instance_; -class MatchesCondition; -struct MatchesConditionDefaultTypeInternal; -extern MatchesConditionDefaultTypeInternal _MatchesCondition_default_instance_; -class MathContext; -struct MathContextDefaultTypeInternal; -extern MathContextDefaultTypeInternal _MathContext_default_instance_; -class MergeTablesRequest; -struct MergeTablesRequestDefaultTypeInternal; -extern MergeTablesRequestDefaultTypeInternal _MergeTablesRequest_default_instance_; -class MetaTableRequest; -struct MetaTableRequestDefaultTypeInternal; -extern MetaTableRequestDefaultTypeInternal _MetaTableRequest_default_instance_; -class MultiJoinInput; -struct MultiJoinInputDefaultTypeInternal; -extern MultiJoinInputDefaultTypeInternal _MultiJoinInput_default_instance_; -class MultiJoinTablesRequest; -struct MultiJoinTablesRequestDefaultTypeInternal; -extern MultiJoinTablesRequestDefaultTypeInternal _MultiJoinTablesRequest_default_instance_; -class NaturalJoinTablesRequest; -struct NaturalJoinTablesRequestDefaultTypeInternal; -extern NaturalJoinTablesRequestDefaultTypeInternal _NaturalJoinTablesRequest_default_instance_; -class NotCondition; -struct NotConditionDefaultTypeInternal; -extern NotConditionDefaultTypeInternal _NotCondition_default_instance_; -class OrCondition; -struct OrConditionDefaultTypeInternal; -extern OrConditionDefaultTypeInternal _OrCondition_default_instance_; -class RangeJoinTablesRequest; -struct RangeJoinTablesRequestDefaultTypeInternal; -extern RangeJoinTablesRequestDefaultTypeInternal _RangeJoinTablesRequest_default_instance_; -class Reference; -struct ReferenceDefaultTypeInternal; -extern ReferenceDefaultTypeInternal _Reference_default_instance_; -class RunChartDownsampleRequest; -struct RunChartDownsampleRequestDefaultTypeInternal; -extern RunChartDownsampleRequestDefaultTypeInternal _RunChartDownsampleRequest_default_instance_; -class RunChartDownsampleRequest_ZoomRange; -struct RunChartDownsampleRequest_ZoomRangeDefaultTypeInternal; -extern RunChartDownsampleRequest_ZoomRangeDefaultTypeInternal _RunChartDownsampleRequest_ZoomRange_default_instance_; -class SearchCondition; -struct SearchConditionDefaultTypeInternal; -extern SearchConditionDefaultTypeInternal _SearchCondition_default_instance_; -class SeekRowRequest; -struct SeekRowRequestDefaultTypeInternal; -extern SeekRowRequestDefaultTypeInternal _SeekRowRequest_default_instance_; -class SeekRowResponse; -struct SeekRowResponseDefaultTypeInternal; -extern SeekRowResponseDefaultTypeInternal _SeekRowResponse_default_instance_; -class SelectDistinctRequest; -struct SelectDistinctRequestDefaultTypeInternal; -extern SelectDistinctRequestDefaultTypeInternal _SelectDistinctRequest_default_instance_; -class SelectOrUpdateRequest; -struct SelectOrUpdateRequestDefaultTypeInternal; -extern SelectOrUpdateRequestDefaultTypeInternal _SelectOrUpdateRequest_default_instance_; -class SnapshotTableRequest; -struct SnapshotTableRequestDefaultTypeInternal; -extern SnapshotTableRequestDefaultTypeInternal _SnapshotTableRequest_default_instance_; -class SnapshotWhenTableRequest; -struct SnapshotWhenTableRequestDefaultTypeInternal; -extern SnapshotWhenTableRequestDefaultTypeInternal _SnapshotWhenTableRequest_default_instance_; -class SortDescriptor; -struct SortDescriptorDefaultTypeInternal; -extern SortDescriptorDefaultTypeInternal _SortDescriptor_default_instance_; -class SortTableRequest; -struct SortTableRequestDefaultTypeInternal; -extern SortTableRequestDefaultTypeInternal _SortTableRequest_default_instance_; -class TableReference; -struct TableReferenceDefaultTypeInternal; -extern TableReferenceDefaultTypeInternal _TableReference_default_instance_; -class TimeTableRequest; -struct TimeTableRequestDefaultTypeInternal; -extern TimeTableRequestDefaultTypeInternal _TimeTableRequest_default_instance_; -class UngroupRequest; -struct UngroupRequestDefaultTypeInternal; -extern UngroupRequestDefaultTypeInternal _UngroupRequest_default_instance_; -class UnstructuredFilterTableRequest; -struct UnstructuredFilterTableRequestDefaultTypeInternal; -extern UnstructuredFilterTableRequestDefaultTypeInternal _UnstructuredFilterTableRequest_default_instance_; -class UpdateByDeltaOptions; -struct UpdateByDeltaOptionsDefaultTypeInternal; -extern UpdateByDeltaOptionsDefaultTypeInternal _UpdateByDeltaOptions_default_instance_; -class UpdateByEmOptions; -struct UpdateByEmOptionsDefaultTypeInternal; -extern UpdateByEmOptionsDefaultTypeInternal _UpdateByEmOptions_default_instance_; -class UpdateByRequest; -struct UpdateByRequestDefaultTypeInternal; -extern UpdateByRequestDefaultTypeInternal _UpdateByRequest_default_instance_; -class UpdateByRequest_UpdateByOperation; -struct UpdateByRequest_UpdateByOperationDefaultTypeInternal; -extern UpdateByRequest_UpdateByOperationDefaultTypeInternal _UpdateByRequest_UpdateByOperation_default_instance_; -class UpdateByRequest_UpdateByOperation_UpdateByColumn; -struct UpdateByRequest_UpdateByOperation_UpdateByColumnDefaultTypeInternal; -extern UpdateByRequest_UpdateByOperation_UpdateByColumnDefaultTypeInternal _UpdateByRequest_UpdateByOperation_UpdateByColumn_default_instance_; -class UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec; -struct UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpecDefaultTypeInternal; -extern UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpecDefaultTypeInternal _UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_default_instance_; -class UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByCumulativeMax; -struct UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByCumulativeMaxDefaultTypeInternal; -extern UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByCumulativeMaxDefaultTypeInternal _UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByCumulativeMax_default_instance_; -class UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByCumulativeMin; -struct UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByCumulativeMinDefaultTypeInternal; -extern UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByCumulativeMinDefaultTypeInternal _UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByCumulativeMin_default_instance_; -class UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByCumulativeProduct; -struct UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByCumulativeProductDefaultTypeInternal; -extern UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByCumulativeProductDefaultTypeInternal _UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByCumulativeProduct_default_instance_; -class UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByCumulativeSum; -struct UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByCumulativeSumDefaultTypeInternal; -extern UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByCumulativeSumDefaultTypeInternal _UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByCumulativeSum_default_instance_; -class UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByDelta; -struct UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByDeltaDefaultTypeInternal; -extern UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByDeltaDefaultTypeInternal _UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByDelta_default_instance_; -class UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByEmMax; -struct UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByEmMaxDefaultTypeInternal; -extern UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByEmMaxDefaultTypeInternal _UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByEmMax_default_instance_; -class UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByEmMin; -struct UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByEmMinDefaultTypeInternal; -extern UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByEmMinDefaultTypeInternal _UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByEmMin_default_instance_; -class UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByEmStd; -struct UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByEmStdDefaultTypeInternal; -extern UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByEmStdDefaultTypeInternal _UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByEmStd_default_instance_; -class UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByEma; -struct UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByEmaDefaultTypeInternal; -extern UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByEmaDefaultTypeInternal _UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByEma_default_instance_; -class UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByEms; -struct UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByEmsDefaultTypeInternal; -extern UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByEmsDefaultTypeInternal _UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByEms_default_instance_; -class UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByFill; -struct UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByFillDefaultTypeInternal; -extern UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByFillDefaultTypeInternal _UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByFill_default_instance_; -class UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingAvg; -struct UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingAvgDefaultTypeInternal; -extern UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingAvgDefaultTypeInternal _UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingAvg_default_instance_; -class UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingCount; -struct UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingCountDefaultTypeInternal; -extern UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingCountDefaultTypeInternal _UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingCount_default_instance_; -class UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingFormula; -struct UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingFormulaDefaultTypeInternal; -extern UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingFormulaDefaultTypeInternal _UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingFormula_default_instance_; -class UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingGroup; -struct UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingGroupDefaultTypeInternal; -extern UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingGroupDefaultTypeInternal _UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingGroup_default_instance_; -class UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingMax; -struct UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingMaxDefaultTypeInternal; -extern UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingMaxDefaultTypeInternal _UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingMax_default_instance_; -class UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingMin; -struct UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingMinDefaultTypeInternal; -extern UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingMinDefaultTypeInternal _UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingMin_default_instance_; -class UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingProduct; -struct UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingProductDefaultTypeInternal; -extern UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingProductDefaultTypeInternal _UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingProduct_default_instance_; -class UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingStd; -struct UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingStdDefaultTypeInternal; -extern UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingStdDefaultTypeInternal _UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingStd_default_instance_; -class UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingSum; -struct UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingSumDefaultTypeInternal; -extern UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingSumDefaultTypeInternal _UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingSum_default_instance_; -class UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingWAvg; -struct UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingWAvgDefaultTypeInternal; -extern UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingWAvgDefaultTypeInternal _UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingWAvg_default_instance_; -class UpdateByRequest_UpdateByOptions; -struct UpdateByRequest_UpdateByOptionsDefaultTypeInternal; -extern UpdateByRequest_UpdateByOptionsDefaultTypeInternal _UpdateByRequest_UpdateByOptions_default_instance_; -class UpdateByWindowScale; -struct UpdateByWindowScaleDefaultTypeInternal; -extern UpdateByWindowScaleDefaultTypeInternal _UpdateByWindowScale_default_instance_; -class UpdateByWindowScale_UpdateByWindowTicks; -struct UpdateByWindowScale_UpdateByWindowTicksDefaultTypeInternal; -extern UpdateByWindowScale_UpdateByWindowTicksDefaultTypeInternal _UpdateByWindowScale_UpdateByWindowTicks_default_instance_; -class UpdateByWindowScale_UpdateByWindowTime; -struct UpdateByWindowScale_UpdateByWindowTimeDefaultTypeInternal; -extern UpdateByWindowScale_UpdateByWindowTimeDefaultTypeInternal _UpdateByWindowScale_UpdateByWindowTime_default_instance_; -class Value; -struct ValueDefaultTypeInternal; -extern ValueDefaultTypeInternal _Value_default_instance_; -class WhereInRequest; -struct WhereInRequestDefaultTypeInternal; -extern WhereInRequestDefaultTypeInternal _WhereInRequest_default_instance_; -} // namespace grpc -} // namespace backplane -} // namespace proto -} // namespace deephaven -} // namespace io -namespace google { -namespace protobuf { -} // namespace protobuf -} // namespace google - -namespace io { -namespace deephaven { -namespace proto { -namespace backplane { -namespace grpc { -enum MathContext_RoundingMode : int { - MathContext_RoundingMode_ROUNDING_MODE_NOT_SPECIFIED = 0, - MathContext_RoundingMode_UP = 1, - MathContext_RoundingMode_DOWN = 2, - MathContext_RoundingMode_CEILING = 3, - MathContext_RoundingMode_FLOOR = 4, - MathContext_RoundingMode_HALF_UP = 5, - MathContext_RoundingMode_HALF_DOWN = 6, - MathContext_RoundingMode_HALF_EVEN = 7, - MathContext_RoundingMode_UNNECESSARY = 8, - MathContext_RoundingMode_MathContext_RoundingMode_INT_MIN_SENTINEL_DO_NOT_USE_ = - std::numeric_limits<::int32_t>::min(), - MathContext_RoundingMode_MathContext_RoundingMode_INT_MAX_SENTINEL_DO_NOT_USE_ = - std::numeric_limits<::int32_t>::max(), -}; - -bool MathContext_RoundingMode_IsValid(int value); -extern const uint32_t MathContext_RoundingMode_internal_data_[]; -constexpr MathContext_RoundingMode MathContext_RoundingMode_RoundingMode_MIN = static_cast(0); -constexpr MathContext_RoundingMode MathContext_RoundingMode_RoundingMode_MAX = static_cast(8); -constexpr int MathContext_RoundingMode_RoundingMode_ARRAYSIZE = 8 + 1; -const ::google::protobuf::EnumDescriptor* -MathContext_RoundingMode_descriptor(); -template -const std::string& MathContext_RoundingMode_Name(T value) { - static_assert(std::is_same::value || - std::is_integral::value, - "Incorrect type passed to RoundingMode_Name()."); - return MathContext_RoundingMode_Name(static_cast(value)); -} -template <> -inline const std::string& MathContext_RoundingMode_Name(MathContext_RoundingMode value) { - return ::google::protobuf::internal::NameOfDenseEnum( - static_cast(value)); -} -inline bool MathContext_RoundingMode_Parse(absl::string_view name, MathContext_RoundingMode* value) { - return ::google::protobuf::internal::ParseNamedEnum( - MathContext_RoundingMode_descriptor(), name, value); -} -enum AsOfJoinTablesRequest_MatchRule : int { - AsOfJoinTablesRequest_MatchRule_LESS_THAN_EQUAL = 0, - AsOfJoinTablesRequest_MatchRule_LESS_THAN = 1, - AsOfJoinTablesRequest_MatchRule_GREATER_THAN_EQUAL = 2, - AsOfJoinTablesRequest_MatchRule_GREATER_THAN = 3, - AsOfJoinTablesRequest_MatchRule_AsOfJoinTablesRequest_MatchRule_INT_MIN_SENTINEL_DO_NOT_USE_ = - std::numeric_limits<::int32_t>::min(), - AsOfJoinTablesRequest_MatchRule_AsOfJoinTablesRequest_MatchRule_INT_MAX_SENTINEL_DO_NOT_USE_ = - std::numeric_limits<::int32_t>::max(), -}; - -bool AsOfJoinTablesRequest_MatchRule_IsValid(int value); -extern const uint32_t AsOfJoinTablesRequest_MatchRule_internal_data_[]; -constexpr AsOfJoinTablesRequest_MatchRule AsOfJoinTablesRequest_MatchRule_MatchRule_MIN = static_cast(0); -constexpr AsOfJoinTablesRequest_MatchRule AsOfJoinTablesRequest_MatchRule_MatchRule_MAX = static_cast(3); -constexpr int AsOfJoinTablesRequest_MatchRule_MatchRule_ARRAYSIZE = 3 + 1; -const ::google::protobuf::EnumDescriptor* -AsOfJoinTablesRequest_MatchRule_descriptor(); -template -const std::string& AsOfJoinTablesRequest_MatchRule_Name(T value) { - static_assert(std::is_same::value || - std::is_integral::value, - "Incorrect type passed to MatchRule_Name()."); - return AsOfJoinTablesRequest_MatchRule_Name(static_cast(value)); -} -template <> -inline const std::string& AsOfJoinTablesRequest_MatchRule_Name(AsOfJoinTablesRequest_MatchRule value) { - return ::google::protobuf::internal::NameOfDenseEnum( - static_cast(value)); -} -inline bool AsOfJoinTablesRequest_MatchRule_Parse(absl::string_view name, AsOfJoinTablesRequest_MatchRule* value) { - return ::google::protobuf::internal::ParseNamedEnum( - AsOfJoinTablesRequest_MatchRule_descriptor(), name, value); -} -enum RangeJoinTablesRequest_RangeStartRule : int { - RangeJoinTablesRequest_RangeStartRule_START_UNSPECIFIED = 0, - RangeJoinTablesRequest_RangeStartRule_LESS_THAN = 1, - RangeJoinTablesRequest_RangeStartRule_LESS_THAN_OR_EQUAL = 2, - RangeJoinTablesRequest_RangeStartRule_LESS_THAN_OR_EQUAL_ALLOW_PRECEDING = 3, - RangeJoinTablesRequest_RangeStartRule_RangeJoinTablesRequest_RangeStartRule_INT_MIN_SENTINEL_DO_NOT_USE_ = - std::numeric_limits<::int32_t>::min(), - RangeJoinTablesRequest_RangeStartRule_RangeJoinTablesRequest_RangeStartRule_INT_MAX_SENTINEL_DO_NOT_USE_ = - std::numeric_limits<::int32_t>::max(), -}; - -bool RangeJoinTablesRequest_RangeStartRule_IsValid(int value); -extern const uint32_t RangeJoinTablesRequest_RangeStartRule_internal_data_[]; -constexpr RangeJoinTablesRequest_RangeStartRule RangeJoinTablesRequest_RangeStartRule_RangeStartRule_MIN = static_cast(0); -constexpr RangeJoinTablesRequest_RangeStartRule RangeJoinTablesRequest_RangeStartRule_RangeStartRule_MAX = static_cast(3); -constexpr int RangeJoinTablesRequest_RangeStartRule_RangeStartRule_ARRAYSIZE = 3 + 1; -const ::google::protobuf::EnumDescriptor* -RangeJoinTablesRequest_RangeStartRule_descriptor(); -template -const std::string& RangeJoinTablesRequest_RangeStartRule_Name(T value) { - static_assert(std::is_same::value || - std::is_integral::value, - "Incorrect type passed to RangeStartRule_Name()."); - return RangeJoinTablesRequest_RangeStartRule_Name(static_cast(value)); -} -template <> -inline const std::string& RangeJoinTablesRequest_RangeStartRule_Name(RangeJoinTablesRequest_RangeStartRule value) { - return ::google::protobuf::internal::NameOfDenseEnum( - static_cast(value)); -} -inline bool RangeJoinTablesRequest_RangeStartRule_Parse(absl::string_view name, RangeJoinTablesRequest_RangeStartRule* value) { - return ::google::protobuf::internal::ParseNamedEnum( - RangeJoinTablesRequest_RangeStartRule_descriptor(), name, value); -} -enum RangeJoinTablesRequest_RangeEndRule : int { - RangeJoinTablesRequest_RangeEndRule_END_UNSPECIFIED = 0, - RangeJoinTablesRequest_RangeEndRule_GREATER_THAN = 1, - RangeJoinTablesRequest_RangeEndRule_GREATER_THAN_OR_EQUAL = 2, - RangeJoinTablesRequest_RangeEndRule_GREATER_THAN_OR_EQUAL_ALLOW_FOLLOWING = 3, - RangeJoinTablesRequest_RangeEndRule_RangeJoinTablesRequest_RangeEndRule_INT_MIN_SENTINEL_DO_NOT_USE_ = - std::numeric_limits<::int32_t>::min(), - RangeJoinTablesRequest_RangeEndRule_RangeJoinTablesRequest_RangeEndRule_INT_MAX_SENTINEL_DO_NOT_USE_ = - std::numeric_limits<::int32_t>::max(), -}; - -bool RangeJoinTablesRequest_RangeEndRule_IsValid(int value); -extern const uint32_t RangeJoinTablesRequest_RangeEndRule_internal_data_[]; -constexpr RangeJoinTablesRequest_RangeEndRule RangeJoinTablesRequest_RangeEndRule_RangeEndRule_MIN = static_cast(0); -constexpr RangeJoinTablesRequest_RangeEndRule RangeJoinTablesRequest_RangeEndRule_RangeEndRule_MAX = static_cast(3); -constexpr int RangeJoinTablesRequest_RangeEndRule_RangeEndRule_ARRAYSIZE = 3 + 1; -const ::google::protobuf::EnumDescriptor* -RangeJoinTablesRequest_RangeEndRule_descriptor(); -template -const std::string& RangeJoinTablesRequest_RangeEndRule_Name(T value) { - static_assert(std::is_same::value || - std::is_integral::value, - "Incorrect type passed to RangeEndRule_Name()."); - return RangeJoinTablesRequest_RangeEndRule_Name(static_cast(value)); -} -template <> -inline const std::string& RangeJoinTablesRequest_RangeEndRule_Name(RangeJoinTablesRequest_RangeEndRule value) { - return ::google::protobuf::internal::NameOfDenseEnum( - static_cast(value)); -} -inline bool RangeJoinTablesRequest_RangeEndRule_Parse(absl::string_view name, RangeJoinTablesRequest_RangeEndRule* value) { - return ::google::protobuf::internal::ParseNamedEnum( - RangeJoinTablesRequest_RangeEndRule_descriptor(), name, value); -} -enum ComboAggregateRequest_AggType : int { - ComboAggregateRequest_AggType_SUM = 0, - ComboAggregateRequest_AggType_ABS_SUM = 1, - ComboAggregateRequest_AggType_GROUP = 2, - ComboAggregateRequest_AggType_AVG = 3, - ComboAggregateRequest_AggType_COUNT = 4, - ComboAggregateRequest_AggType_FIRST = 5, - ComboAggregateRequest_AggType_LAST = 6, - ComboAggregateRequest_AggType_MIN = 7, - ComboAggregateRequest_AggType_MAX = 8, - ComboAggregateRequest_AggType_MEDIAN = 9, - ComboAggregateRequest_AggType_PERCENTILE = 10, - ComboAggregateRequest_AggType_STD = 11, - ComboAggregateRequest_AggType_VAR = 12, - ComboAggregateRequest_AggType_WEIGHTED_AVG = 13, - ComboAggregateRequest_AggType_ComboAggregateRequest_AggType_INT_MIN_SENTINEL_DO_NOT_USE_ = - std::numeric_limits<::int32_t>::min(), - ComboAggregateRequest_AggType_ComboAggregateRequest_AggType_INT_MAX_SENTINEL_DO_NOT_USE_ = - std::numeric_limits<::int32_t>::max(), -}; - -bool ComboAggregateRequest_AggType_IsValid(int value); -extern const uint32_t ComboAggregateRequest_AggType_internal_data_[]; -constexpr ComboAggregateRequest_AggType ComboAggregateRequest_AggType_AggType_MIN = static_cast(0); -constexpr ComboAggregateRequest_AggType ComboAggregateRequest_AggType_AggType_MAX = static_cast(13); -constexpr int ComboAggregateRequest_AggType_AggType_ARRAYSIZE = 13 + 1; -const ::google::protobuf::EnumDescriptor* -ComboAggregateRequest_AggType_descriptor(); -template -const std::string& ComboAggregateRequest_AggType_Name(T value) { - static_assert(std::is_same::value || - std::is_integral::value, - "Incorrect type passed to AggType_Name()."); - return ComboAggregateRequest_AggType_Name(static_cast(value)); -} -template <> -inline const std::string& ComboAggregateRequest_AggType_Name(ComboAggregateRequest_AggType value) { - return ::google::protobuf::internal::NameOfDenseEnum( - static_cast(value)); -} -inline bool ComboAggregateRequest_AggType_Parse(absl::string_view name, ComboAggregateRequest_AggType* value) { - return ::google::protobuf::internal::ParseNamedEnum( - ComboAggregateRequest_AggType_descriptor(), name, value); -} -enum SortDescriptor_SortDirection : int { - SortDescriptor_SortDirection_UNKNOWN = 0, - SortDescriptor_SortDirection_DESCENDING = -1, - SortDescriptor_SortDirection_ASCENDING = 1, - SortDescriptor_SortDirection_REVERSE = 2, - SortDescriptor_SortDirection_SortDescriptor_SortDirection_INT_MIN_SENTINEL_DO_NOT_USE_ = - std::numeric_limits<::int32_t>::min(), - SortDescriptor_SortDirection_SortDescriptor_SortDirection_INT_MAX_SENTINEL_DO_NOT_USE_ = - std::numeric_limits<::int32_t>::max(), -}; - -bool SortDescriptor_SortDirection_IsValid(int value); -extern const uint32_t SortDescriptor_SortDirection_internal_data_[]; -constexpr SortDescriptor_SortDirection SortDescriptor_SortDirection_SortDirection_MIN = static_cast(-1); -constexpr SortDescriptor_SortDirection SortDescriptor_SortDirection_SortDirection_MAX = static_cast(2); -constexpr int SortDescriptor_SortDirection_SortDirection_ARRAYSIZE = 2 + 1; -const ::google::protobuf::EnumDescriptor* -SortDescriptor_SortDirection_descriptor(); -template -const std::string& SortDescriptor_SortDirection_Name(T value) { - static_assert(std::is_same::value || - std::is_integral::value, - "Incorrect type passed to SortDirection_Name()."); - return SortDescriptor_SortDirection_Name(static_cast(value)); -} -template <> -inline const std::string& SortDescriptor_SortDirection_Name(SortDescriptor_SortDirection value) { - return ::google::protobuf::internal::NameOfDenseEnum( - static_cast(value)); -} -inline bool SortDescriptor_SortDirection_Parse(absl::string_view name, SortDescriptor_SortDirection* value) { - return ::google::protobuf::internal::ParseNamedEnum( - SortDescriptor_SortDirection_descriptor(), name, value); -} -enum CompareCondition_CompareOperation : int { - CompareCondition_CompareOperation_LESS_THAN = 0, - CompareCondition_CompareOperation_LESS_THAN_OR_EQUAL = 1, - CompareCondition_CompareOperation_GREATER_THAN = 2, - CompareCondition_CompareOperation_GREATER_THAN_OR_EQUAL = 3, - CompareCondition_CompareOperation_EQUALS = 4, - CompareCondition_CompareOperation_NOT_EQUALS = 5, - CompareCondition_CompareOperation_CompareCondition_CompareOperation_INT_MIN_SENTINEL_DO_NOT_USE_ = - std::numeric_limits<::int32_t>::min(), - CompareCondition_CompareOperation_CompareCondition_CompareOperation_INT_MAX_SENTINEL_DO_NOT_USE_ = - std::numeric_limits<::int32_t>::max(), -}; - -bool CompareCondition_CompareOperation_IsValid(int value); -extern const uint32_t CompareCondition_CompareOperation_internal_data_[]; -constexpr CompareCondition_CompareOperation CompareCondition_CompareOperation_CompareOperation_MIN = static_cast(0); -constexpr CompareCondition_CompareOperation CompareCondition_CompareOperation_CompareOperation_MAX = static_cast(5); -constexpr int CompareCondition_CompareOperation_CompareOperation_ARRAYSIZE = 5 + 1; -const ::google::protobuf::EnumDescriptor* -CompareCondition_CompareOperation_descriptor(); -template -const std::string& CompareCondition_CompareOperation_Name(T value) { - static_assert(std::is_same::value || - std::is_integral::value, - "Incorrect type passed to CompareOperation_Name()."); - return CompareCondition_CompareOperation_Name(static_cast(value)); -} -template <> -inline const std::string& CompareCondition_CompareOperation_Name(CompareCondition_CompareOperation value) { - return ::google::protobuf::internal::NameOfDenseEnum( - static_cast(value)); -} -inline bool CompareCondition_CompareOperation_Parse(absl::string_view name, CompareCondition_CompareOperation* value) { - return ::google::protobuf::internal::ParseNamedEnum( - CompareCondition_CompareOperation_descriptor(), name, value); -} -enum BadDataBehavior : int { - BAD_DATA_BEHAVIOR_NOT_SPECIFIED = 0, - THROW = 1, - RESET = 2, - SKIP = 3, - POISON = 4, - BadDataBehavior_INT_MIN_SENTINEL_DO_NOT_USE_ = - std::numeric_limits<::int32_t>::min(), - BadDataBehavior_INT_MAX_SENTINEL_DO_NOT_USE_ = - std::numeric_limits<::int32_t>::max(), -}; - -bool BadDataBehavior_IsValid(int value); -extern const uint32_t BadDataBehavior_internal_data_[]; -constexpr BadDataBehavior BadDataBehavior_MIN = static_cast(0); -constexpr BadDataBehavior BadDataBehavior_MAX = static_cast(4); -constexpr int BadDataBehavior_ARRAYSIZE = 4 + 1; -const ::google::protobuf::EnumDescriptor* -BadDataBehavior_descriptor(); -template -const std::string& BadDataBehavior_Name(T value) { - static_assert(std::is_same::value || - std::is_integral::value, - "Incorrect type passed to BadDataBehavior_Name()."); - return BadDataBehavior_Name(static_cast(value)); -} -template <> -inline const std::string& BadDataBehavior_Name(BadDataBehavior value) { - return ::google::protobuf::internal::NameOfDenseEnum( - static_cast(value)); -} -inline bool BadDataBehavior_Parse(absl::string_view name, BadDataBehavior* value) { - return ::google::protobuf::internal::ParseNamedEnum( - BadDataBehavior_descriptor(), name, value); -} -enum UpdateByNullBehavior : int { - NULL_BEHAVIOR_NOT_SPECIFIED = 0, - NULL_DOMINATES = 1, - VALUE_DOMINATES = 2, - ZERO_DOMINATES = 3, - UpdateByNullBehavior_INT_MIN_SENTINEL_DO_NOT_USE_ = - std::numeric_limits<::int32_t>::min(), - UpdateByNullBehavior_INT_MAX_SENTINEL_DO_NOT_USE_ = - std::numeric_limits<::int32_t>::max(), -}; - -bool UpdateByNullBehavior_IsValid(int value); -extern const uint32_t UpdateByNullBehavior_internal_data_[]; -constexpr UpdateByNullBehavior UpdateByNullBehavior_MIN = static_cast(0); -constexpr UpdateByNullBehavior UpdateByNullBehavior_MAX = static_cast(3); -constexpr int UpdateByNullBehavior_ARRAYSIZE = 3 + 1; -const ::google::protobuf::EnumDescriptor* -UpdateByNullBehavior_descriptor(); -template -const std::string& UpdateByNullBehavior_Name(T value) { - static_assert(std::is_same::value || - std::is_integral::value, - "Incorrect type passed to UpdateByNullBehavior_Name()."); - return UpdateByNullBehavior_Name(static_cast(value)); -} -template <> -inline const std::string& UpdateByNullBehavior_Name(UpdateByNullBehavior value) { - return ::google::protobuf::internal::NameOfDenseEnum( - static_cast(value)); -} -inline bool UpdateByNullBehavior_Parse(absl::string_view name, UpdateByNullBehavior* value) { - return ::google::protobuf::internal::ParseNamedEnum( - UpdateByNullBehavior_descriptor(), name, value); -} -enum NullValue : int { - NULL_VALUE = 0, - NullValue_INT_MIN_SENTINEL_DO_NOT_USE_ = - std::numeric_limits<::int32_t>::min(), - NullValue_INT_MAX_SENTINEL_DO_NOT_USE_ = - std::numeric_limits<::int32_t>::max(), -}; - -bool NullValue_IsValid(int value); -extern const uint32_t NullValue_internal_data_[]; -constexpr NullValue NullValue_MIN = static_cast(0); -constexpr NullValue NullValue_MAX = static_cast(0); -constexpr int NullValue_ARRAYSIZE = 0 + 1; -const ::google::protobuf::EnumDescriptor* -NullValue_descriptor(); -template -const std::string& NullValue_Name(T value) { - static_assert(std::is_same::value || - std::is_integral::value, - "Incorrect type passed to NullValue_Name()."); - return NullValue_Name(static_cast(value)); -} -template <> -inline const std::string& NullValue_Name(NullValue value) { - return ::google::protobuf::internal::NameOfDenseEnum( - static_cast(value)); -} -inline bool NullValue_Parse(absl::string_view name, NullValue* value) { - return ::google::protobuf::internal::ParseNamedEnum( - NullValue_descriptor(), name, value); -} -enum CaseSensitivity : int { - MATCH_CASE = 0, - IGNORE_CASE = 1, - CaseSensitivity_INT_MIN_SENTINEL_DO_NOT_USE_ = - std::numeric_limits<::int32_t>::min(), - CaseSensitivity_INT_MAX_SENTINEL_DO_NOT_USE_ = - std::numeric_limits<::int32_t>::max(), -}; - -bool CaseSensitivity_IsValid(int value); -extern const uint32_t CaseSensitivity_internal_data_[]; -constexpr CaseSensitivity CaseSensitivity_MIN = static_cast(0); -constexpr CaseSensitivity CaseSensitivity_MAX = static_cast(1); -constexpr int CaseSensitivity_ARRAYSIZE = 1 + 1; -const ::google::protobuf::EnumDescriptor* -CaseSensitivity_descriptor(); -template -const std::string& CaseSensitivity_Name(T value) { - static_assert(std::is_same::value || - std::is_integral::value, - "Incorrect type passed to CaseSensitivity_Name()."); - return CaseSensitivity_Name(static_cast(value)); -} -template <> -inline const std::string& CaseSensitivity_Name(CaseSensitivity value) { - return ::google::protobuf::internal::NameOfDenseEnum( - static_cast(value)); -} -inline bool CaseSensitivity_Parse(absl::string_view name, CaseSensitivity* value) { - return ::google::protobuf::internal::ParseNamedEnum( - CaseSensitivity_descriptor(), name, value); -} -enum MatchType : int { - REGULAR = 0, - INVERTED = 1, - MatchType_INT_MIN_SENTINEL_DO_NOT_USE_ = - std::numeric_limits<::int32_t>::min(), - MatchType_INT_MAX_SENTINEL_DO_NOT_USE_ = - std::numeric_limits<::int32_t>::max(), -}; - -bool MatchType_IsValid(int value); -extern const uint32_t MatchType_internal_data_[]; -constexpr MatchType MatchType_MIN = static_cast(0); -constexpr MatchType MatchType_MAX = static_cast(1); -constexpr int MatchType_ARRAYSIZE = 1 + 1; -const ::google::protobuf::EnumDescriptor* -MatchType_descriptor(); -template -const std::string& MatchType_Name(T value) { - static_assert(std::is_same::value || - std::is_integral::value, - "Incorrect type passed to MatchType_Name()."); - return MatchType_Name(static_cast(value)); -} -template <> -inline const std::string& MatchType_Name(MatchType value) { - return ::google::protobuf::internal::NameOfDenseEnum( - static_cast(value)); -} -inline bool MatchType_Parse(absl::string_view name, MatchType* value) { - return ::google::protobuf::internal::ParseNamedEnum( - MatchType_descriptor(), name, value); -} - -// =================================================================== - - -// ------------------------------------------------------------------- - -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() 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; - } - inline UpdateByWindowScale_UpdateByWindowTime& operator=(UpdateByWindowScale_UpdateByWindowTime&& 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 UpdateByWindowScale_UpdateByWindowTime& default_instance() { - return *internal_default_instance(); - } - enum WindowCase { - kNanos = 2, - 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); } - 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 - if (GetArena() == other->GetArena()) { -#endif // !PROTOBUF_FORCE_COPY_IN_SWAP - InternalSwap(other); - } else { - ::google::protobuf::internal::GenericSwap(this, other); - } - } - void UnsafeArenaSwap(UpdateByWindowScale_UpdateByWindowTime* other) { - if (other == this) return; - ABSL_DCHECK(GetArena() == other->GetArena()); - InternalSwap(other); - } - - // implements Message ---------------------------------------------- - - 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); } - - private: - static void MergeImpl( - ::google::protobuf::MessageLite& to_msg, - const ::google::protobuf::MessageLite& from_msg); - - 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; - #endif // PROTOBUF_CUSTOM_VTABLE - int GetCachedSize() const { return _impl_._cached_size_.Get(); } - - private: - void SharedCtor(::google::protobuf::Arena* arena); - void SharedDtor(); - void InternalSwap(UpdateByWindowScale_UpdateByWindowTime* other); - private: - friend class ::google::protobuf::internal::AnyMetadata; - 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); - 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, - kDurationStringFieldNumber = 3, - }; - // string column = 1; - void clear_column() ; - const std::string& column() const; - template - void set_column(Arg_&& arg, Args_... args); - std::string* mutable_column(); - PROTOBUF_NODISCARD std::string* release_column(); - void set_allocated_column(std::string* value); - - private: - const std::string& _internal_column() const; - inline PROTOBUF_ALWAYS_INLINE void _internal_set_column( - const std::string& value); - std::string* _internal_mutable_column(); - - public: - // sint64 nanos = 2 [jstype = JS_STRING]; - bool has_nanos() const; - void clear_nanos() ; - ::int64_t nanos() const; - void set_nanos(::int64_t value); - - private: - ::int64_t _internal_nanos() const; - void _internal_set_nanos(::int64_t value); - - public: - // string duration_string = 3; - bool has_duration_string() const; - void clear_duration_string() ; - const std::string& duration_string() const; - template - void set_duration_string(Arg_&& arg, Args_... args); - std::string* mutable_duration_string(); - PROTOBUF_NODISCARD std::string* release_duration_string(); - void set_allocated_duration_string(std::string* value); - - private: - const std::string& _internal_duration_string() const; - inline PROTOBUF_ALWAYS_INLINE void _internal_set_duration_string( - const std::string& value); - std::string* _internal_mutable_duration_string(); - - public: - void clear_window(); - WindowCase window_case() const; - // @@protoc_insertion_point(class_scope:io.deephaven.proto.backplane.grpc.UpdateByWindowScale.UpdateByWindowTime) - private: - 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 - 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 UpdateByWindowScale_UpdateByWindowTime& from_msg); - ::google::protobuf::internal::ArenaStringPtr column_; - union WindowUnion { - constexpr WindowUnion() : _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) */ { - public: - inline UpdateByWindowScale_UpdateByWindowTicks() : UpdateByWindowScale_UpdateByWindowTicks(nullptr) {} - ~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; - } - inline UpdateByWindowScale_UpdateByWindowTicks& operator=(UpdateByWindowScale_UpdateByWindowTicks&& 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 UpdateByWindowScale_UpdateByWindowTicks& default_instance() { - return *internal_default_instance(); - } - 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); } - 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 - if (GetArena() == other->GetArena()) { -#endif // !PROTOBUF_FORCE_COPY_IN_SWAP - InternalSwap(other); - } else { - ::google::protobuf::internal::GenericSwap(this, other); - } - } - void UnsafeArenaSwap(UpdateByWindowScale_UpdateByWindowTicks* other) { - if (other == this) return; - ABSL_DCHECK(GetArena() == other->GetArena()); - InternalSwap(other); - } - - // implements Message ---------------------------------------------- - - 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); } - - private: - static void MergeImpl( - ::google::protobuf::MessageLite& to_msg, - const ::google::protobuf::MessageLite& from_msg); - - 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; - #endif // PROTOBUF_CUSTOM_VTABLE - int GetCachedSize() const { return _impl_._cached_size_.Get(); } - - private: - void SharedCtor(::google::protobuf::Arena* arena); - void SharedDtor(); - void InternalSwap(UpdateByWindowScale_UpdateByWindowTicks* other); - private: - friend class ::google::protobuf::internal::AnyMetadata; - 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); - 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, - }; - // double ticks = 1; - void clear_ticks() ; - double ticks() const; - void set_ticks(double value); - - private: - double _internal_ticks() const; - void _internal_set_ticks(double value); - - public: - // @@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 - 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 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) */ { - 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) {} - 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; - } - 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 - && 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 UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByFill& default_instance() { - return *internal_default_instance(); - } - 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); } - 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 - if (GetArena() == other->GetArena()) { -#endif // !PROTOBUF_FORCE_COPY_IN_SWAP - InternalSwap(other); - } else { - ::google::protobuf::internal::GenericSwap(this, other); - } - } - void UnsafeArenaSwap(UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByFill* other) { - if (other == this) return; - ABSL_DCHECK(GetArena() == other->GetArena()); - InternalSwap(other); - } - - // implements Message ---------------------------------------------- - - 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) { - ::google::protobuf::internal::ZeroFieldsBase::CopyImpl(*this, from); - } - using ::google::protobuf::internal::ZeroFieldsBase::MergeFrom; - void MergeFrom(const UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByFill& 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.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); - 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; - 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 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) */ { - 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) {} - 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; - } - 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 - && 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 UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByCumulativeSum& default_instance() { - return *internal_default_instance(); - } - 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); } - 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 - if (GetArena() == other->GetArena()) { -#endif // !PROTOBUF_FORCE_COPY_IN_SWAP - InternalSwap(other); - } else { - ::google::protobuf::internal::GenericSwap(this, other); - } - } - void UnsafeArenaSwap(UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByCumulativeSum* other) { - if (other == this) return; - ABSL_DCHECK(GetArena() == other->GetArena()); - InternalSwap(other); - } - - // implements Message ---------------------------------------------- - - 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) { - ::google::protobuf::internal::ZeroFieldsBase::CopyImpl(*this, from); - } - using ::google::protobuf::internal::ZeroFieldsBase::MergeFrom; - void MergeFrom(const UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByCumulativeSum& 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.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); - 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; - 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 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) */ { - 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) {} - 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; - } - 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 - && 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 UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByCumulativeProduct& default_instance() { - return *internal_default_instance(); - } - 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); } - 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 - if (GetArena() == other->GetArena()) { -#endif // !PROTOBUF_FORCE_COPY_IN_SWAP - InternalSwap(other); - } else { - ::google::protobuf::internal::GenericSwap(this, other); - } - } - void UnsafeArenaSwap(UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByCumulativeProduct* other) { - if (other == this) return; - ABSL_DCHECK(GetArena() == other->GetArena()); - InternalSwap(other); - } - - // implements Message ---------------------------------------------- - - 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) { - ::google::protobuf::internal::ZeroFieldsBase::CopyImpl(*this, from); - } - using ::google::protobuf::internal::ZeroFieldsBase::MergeFrom; - void MergeFrom(const UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByCumulativeProduct& 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.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); - 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; - 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 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) */ { - 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) {} - 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; - } - 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 - && 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 UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByCumulativeMin& default_instance() { - return *internal_default_instance(); - } - 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); } - 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 - if (GetArena() == other->GetArena()) { -#endif // !PROTOBUF_FORCE_COPY_IN_SWAP - InternalSwap(other); - } else { - ::google::protobuf::internal::GenericSwap(this, other); - } - } - void UnsafeArenaSwap(UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByCumulativeMin* other) { - if (other == this) return; - ABSL_DCHECK(GetArena() == other->GetArena()); - InternalSwap(other); - } - - // implements Message ---------------------------------------------- - - 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) { - ::google::protobuf::internal::ZeroFieldsBase::CopyImpl(*this, from); - } - using ::google::protobuf::internal::ZeroFieldsBase::MergeFrom; - void MergeFrom(const UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByCumulativeMin& 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.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); - 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; - 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 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) */ { - 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) {} - 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; - } - 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 - && 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 UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByCumulativeMax& default_instance() { - return *internal_default_instance(); - } - 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); } - 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 - if (GetArena() == other->GetArena()) { -#endif // !PROTOBUF_FORCE_COPY_IN_SWAP - InternalSwap(other); - } else { - ::google::protobuf::internal::GenericSwap(this, other); - } - } - void UnsafeArenaSwap(UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByCumulativeMax* other) { - if (other == this) return; - ABSL_DCHECK(GetArena() == other->GetArena()); - InternalSwap(other); - } - - // implements Message ---------------------------------------------- - - 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) { - ::google::protobuf::internal::ZeroFieldsBase::CopyImpl(*this, from); - } - using ::google::protobuf::internal::ZeroFieldsBase::MergeFrom; - void MergeFrom(const UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByCumulativeMax& 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.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); - 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; - 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 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) */ { - public: - inline UpdateByDeltaOptions() : UpdateByDeltaOptions(nullptr) {} - ~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; - } - inline UpdateByDeltaOptions& operator=(UpdateByDeltaOptions&& 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 UpdateByDeltaOptions& default_instance() { - return *internal_default_instance(); - } - 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); } - 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 - if (GetArena() == other->GetArena()) { -#endif // !PROTOBUF_FORCE_COPY_IN_SWAP - InternalSwap(other); - } else { - ::google::protobuf::internal::GenericSwap(this, other); - } - } - void UnsafeArenaSwap(UpdateByDeltaOptions* other) { - if (other == this) return; - ABSL_DCHECK(GetArena() == other->GetArena()); - InternalSwap(other); - } - - // implements Message ---------------------------------------------- - - 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); } - - private: - static void MergeImpl( - ::google::protobuf::MessageLite& to_msg, - const ::google::protobuf::MessageLite& from_msg); - - 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; - #endif // PROTOBUF_CUSTOM_VTABLE - int GetCachedSize() const { return _impl_._cached_size_.Get(); } - - private: - void SharedCtor(::google::protobuf::Arena* arena); - void SharedDtor(); - void InternalSwap(UpdateByDeltaOptions* other); - private: - friend class ::google::protobuf::internal::AnyMetadata; - 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); - 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, - }; - // .io.deephaven.proto.backplane.grpc.UpdateByNullBehavior null_behavior = 1; - void clear_null_behavior() ; - ::io::deephaven::proto::backplane::grpc::UpdateByNullBehavior null_behavior() const; - void set_null_behavior(::io::deephaven::proto::backplane::grpc::UpdateByNullBehavior value); - - private: - ::io::deephaven::proto::backplane::grpc::UpdateByNullBehavior _internal_null_behavior() const; - void _internal_set_null_behavior(::io::deephaven::proto::backplane::grpc::UpdateByNullBehavior value); - - public: - // @@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 - 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 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) */ { - public: - inline SortDescriptor() : SortDescriptor(nullptr) {} - ~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; - } - inline SortDescriptor& operator=(SortDescriptor&& 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 SortDescriptor& default_instance() { - return *internal_default_instance(); - } - 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); } - 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 - if (GetArena() == other->GetArena()) { -#endif // !PROTOBUF_FORCE_COPY_IN_SWAP - InternalSwap(other); - } else { - ::google::protobuf::internal::GenericSwap(this, other); - } - } - void UnsafeArenaSwap(SortDescriptor* other) { - if (other == this) return; - ABSL_DCHECK(GetArena() == other->GetArena()); - InternalSwap(other); - } - - // implements Message ---------------------------------------------- - - 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); } - - private: - static void MergeImpl( - ::google::protobuf::MessageLite& to_msg, - const ::google::protobuf::MessageLite& from_msg); - - 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; - #endif // PROTOBUF_CUSTOM_VTABLE - int GetCachedSize() const { return _impl_._cached_size_.Get(); } - - private: - void SharedCtor(::google::protobuf::Arena* arena); - void SharedDtor(); - void InternalSwap(SortDescriptor* other); - private: - friend class ::google::protobuf::internal::AnyMetadata; - 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); - 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; - static constexpr SortDirection ASCENDING = SortDescriptor_SortDirection_ASCENDING; - static constexpr SortDirection REVERSE = SortDescriptor_SortDirection_REVERSE; - static inline bool SortDirection_IsValid(int value) { - return SortDescriptor_SortDirection_IsValid(value); - } - static constexpr SortDirection SortDirection_MIN = SortDescriptor_SortDirection_SortDirection_MIN; - static constexpr SortDirection SortDirection_MAX = SortDescriptor_SortDirection_SortDirection_MAX; - static constexpr int SortDirection_ARRAYSIZE = SortDescriptor_SortDirection_SortDirection_ARRAYSIZE; - static inline const ::google::protobuf::EnumDescriptor* SortDirection_descriptor() { - return SortDescriptor_SortDirection_descriptor(); - } - template - static inline const std::string& SortDirection_Name(T value) { - return SortDescriptor_SortDirection_Name(value); - } - static inline bool SortDirection_Parse(absl::string_view name, SortDirection* value) { - return SortDescriptor_SortDirection_Parse(name, value); - } - - // accessors ------------------------------------------------------- - enum : int { - kColumnNameFieldNumber = 1, - kIsAbsoluteFieldNumber = 2, - kDirectionFieldNumber = 3, - }; - // string column_name = 1; - void clear_column_name() ; - const std::string& column_name() const; - template - void set_column_name(Arg_&& arg, Args_... args); - std::string* mutable_column_name(); - PROTOBUF_NODISCARD std::string* release_column_name(); - void set_allocated_column_name(std::string* value); - - private: - const std::string& _internal_column_name() const; - inline PROTOBUF_ALWAYS_INLINE void _internal_set_column_name( - const std::string& value); - std::string* _internal_mutable_column_name(); - - public: - // bool is_absolute = 2; - void clear_is_absolute() ; - bool is_absolute() const; - void set_is_absolute(bool value); - - private: - bool _internal_is_absolute() const; - void _internal_set_is_absolute(bool value); - - public: - // .io.deephaven.proto.backplane.grpc.SortDescriptor.SortDirection direction = 3; - void clear_direction() ; - ::io::deephaven::proto::backplane::grpc::SortDescriptor_SortDirection direction() const; - void set_direction(::io::deephaven::proto::backplane::grpc::SortDescriptor_SortDirection value); - - private: - ::io::deephaven::proto::backplane::grpc::SortDescriptor_SortDirection _internal_direction() const; - void _internal_set_direction(::io::deephaven::proto::backplane::grpc::SortDescriptor_SortDirection value); - - public: - // @@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 - 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 SortDescriptor& from_msg); - ::google::protobuf::internal::ArenaStringPtr column_name_; - bool is_absolute_; - int direction_; - mutable ::google::protobuf::internal::CachedSize _cached_size_; - PROTOBUF_TSAN_DECLARE_MEMBER - }; - 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) */ { - public: - inline SeekRowResponse() : SeekRowResponse(nullptr) {} - ~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; - } - inline SeekRowResponse& operator=(SeekRowResponse&& 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 SeekRowResponse& default_instance() { - return *internal_default_instance(); - } - 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); } - 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 - if (GetArena() == other->GetArena()) { -#endif // !PROTOBUF_FORCE_COPY_IN_SWAP - InternalSwap(other); - } else { - ::google::protobuf::internal::GenericSwap(this, other); - } - } - void UnsafeArenaSwap(SeekRowResponse* other) { - if (other == this) return; - ABSL_DCHECK(GetArena() == other->GetArena()); - InternalSwap(other); - } - - // implements Message ---------------------------------------------- - - 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); } - - private: - static void MergeImpl( - ::google::protobuf::MessageLite& to_msg, - const ::google::protobuf::MessageLite& from_msg); - - 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; - #endif // PROTOBUF_CUSTOM_VTABLE - int GetCachedSize() const { return _impl_._cached_size_.Get(); } - - private: - void SharedCtor(::google::protobuf::Arena* arena); - void SharedDtor(); - void InternalSwap(SeekRowResponse* other); - private: - friend class ::google::protobuf::internal::AnyMetadata; - 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); - 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, - }; - // sint64 result_row = 1 [jstype = JS_STRING]; - void clear_result_row() ; - ::int64_t result_row() const; - void set_result_row(::int64_t value); - - private: - ::int64_t _internal_result_row() const; - void _internal_set_result_row(::int64_t value); - - public: - // @@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 - 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 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) */ { - public: - inline RunChartDownsampleRequest_ZoomRange() : RunChartDownsampleRequest_ZoomRange(nullptr) {} - ~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; - } - inline RunChartDownsampleRequest_ZoomRange& operator=(RunChartDownsampleRequest_ZoomRange&& 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 RunChartDownsampleRequest_ZoomRange& default_instance() { - return *internal_default_instance(); - } - 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); } - 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 - if (GetArena() == other->GetArena()) { -#endif // !PROTOBUF_FORCE_COPY_IN_SWAP - InternalSwap(other); - } else { - ::google::protobuf::internal::GenericSwap(this, other); - } - } - void UnsafeArenaSwap(RunChartDownsampleRequest_ZoomRange* other) { - if (other == this) return; - ABSL_DCHECK(GetArena() == other->GetArena()); - InternalSwap(other); - } - - // implements Message ---------------------------------------------- - - 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); } - - private: - static void MergeImpl( - ::google::protobuf::MessageLite& to_msg, - const ::google::protobuf::MessageLite& from_msg); - - 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; - #endif // PROTOBUF_CUSTOM_VTABLE - int GetCachedSize() const { return _impl_._cached_size_.Get(); } - - private: - void SharedCtor(::google::protobuf::Arena* arena); - void SharedDtor(); - void InternalSwap(RunChartDownsampleRequest_ZoomRange* other); - private: - friend class ::google::protobuf::internal::AnyMetadata; - 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); - 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, - }; - // optional int64 min_date_nanos = 1 [jstype = JS_STRING]; - bool has_min_date_nanos() const; - void clear_min_date_nanos() ; - ::int64_t min_date_nanos() const; - void set_min_date_nanos(::int64_t value); - - private: - ::int64_t _internal_min_date_nanos() const; - void _internal_set_min_date_nanos(::int64_t value); - - public: - // optional int64 max_date_nanos = 2 [jstype = JS_STRING]; - bool has_max_date_nanos() const; - void clear_max_date_nanos() ; - ::int64_t max_date_nanos() const; - void set_max_date_nanos(::int64_t value); - - private: - ::int64_t _internal_max_date_nanos() const; - void _internal_set_max_date_nanos(::int64_t value); - - public: - // @@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 - 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 RunChartDownsampleRequest_ZoomRange& from_msg); - ::google::protobuf::internal::HasBits<1> _has_bits_; - mutable ::google::protobuf::internal::CachedSize _cached_size_; - ::int64_t min_date_nanos_; - ::int64_t max_date_nanos_; - PROTOBUF_TSAN_DECLARE_MEMBER - }; - 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) */ { - public: - inline Reference() : Reference(nullptr) {} - ~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; - } - inline Reference& operator=(Reference&& 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 Reference& default_instance() { - return *internal_default_instance(); - } - 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); } - 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 - if (GetArena() == other->GetArena()) { -#endif // !PROTOBUF_FORCE_COPY_IN_SWAP - InternalSwap(other); - } else { - ::google::protobuf::internal::GenericSwap(this, other); - } - } - void UnsafeArenaSwap(Reference* other) { - if (other == this) return; - ABSL_DCHECK(GetArena() == other->GetArena()); - InternalSwap(other); - } - - // implements Message ---------------------------------------------- - - 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); } - - private: - static void MergeImpl( - ::google::protobuf::MessageLite& to_msg, - const ::google::protobuf::MessageLite& from_msg); - - 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; - #endif // PROTOBUF_CUSTOM_VTABLE - int GetCachedSize() const { return _impl_._cached_size_.Get(); } - - private: - void SharedCtor(::google::protobuf::Arena* arena); - void SharedDtor(); - void InternalSwap(Reference* other); - private: - friend class ::google::protobuf::internal::AnyMetadata; - 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); - 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, - }; - // string column_name = 1; - void clear_column_name() ; - const std::string& column_name() const; - template - void set_column_name(Arg_&& arg, Args_... args); - std::string* mutable_column_name(); - PROTOBUF_NODISCARD std::string* release_column_name(); - void set_allocated_column_name(std::string* value); - - private: - const std::string& _internal_column_name() const; - inline PROTOBUF_ALWAYS_INLINE void _internal_set_column_name( - const std::string& value); - std::string* _internal_mutable_column_name(); - - public: - // @@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 - 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 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) */ { - public: - inline MathContext() : MathContext(nullptr) {} - ~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; - } - inline MathContext& operator=(MathContext&& 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 MathContext& default_instance() { - return *internal_default_instance(); - } - 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); } - 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 - if (GetArena() == other->GetArena()) { -#endif // !PROTOBUF_FORCE_COPY_IN_SWAP - InternalSwap(other); - } else { - ::google::protobuf::internal::GenericSwap(this, other); - } - } - void UnsafeArenaSwap(MathContext* other) { - if (other == this) return; - ABSL_DCHECK(GetArena() == other->GetArena()); - InternalSwap(other); - } - - // implements Message ---------------------------------------------- - - 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); } - - private: - static void MergeImpl( - ::google::protobuf::MessageLite& to_msg, - const ::google::protobuf::MessageLite& from_msg); - - 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; - #endif // PROTOBUF_CUSTOM_VTABLE - int GetCachedSize() const { return _impl_._cached_size_.Get(); } - - private: - void SharedCtor(::google::protobuf::Arena* arena); - void SharedDtor(); - void InternalSwap(MathContext* other); - private: - friend class ::google::protobuf::internal::AnyMetadata; - 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); - 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; - static constexpr RoundingMode DOWN = MathContext_RoundingMode_DOWN; - static constexpr RoundingMode CEILING = MathContext_RoundingMode_CEILING; - static constexpr RoundingMode FLOOR = MathContext_RoundingMode_FLOOR; - static constexpr RoundingMode HALF_UP = MathContext_RoundingMode_HALF_UP; - static constexpr RoundingMode HALF_DOWN = MathContext_RoundingMode_HALF_DOWN; - static constexpr RoundingMode HALF_EVEN = MathContext_RoundingMode_HALF_EVEN; - static constexpr RoundingMode UNNECESSARY = MathContext_RoundingMode_UNNECESSARY; - static inline bool RoundingMode_IsValid(int value) { - return MathContext_RoundingMode_IsValid(value); - } - static constexpr RoundingMode RoundingMode_MIN = MathContext_RoundingMode_RoundingMode_MIN; - static constexpr RoundingMode RoundingMode_MAX = MathContext_RoundingMode_RoundingMode_MAX; - static constexpr int RoundingMode_ARRAYSIZE = MathContext_RoundingMode_RoundingMode_ARRAYSIZE; - static inline const ::google::protobuf::EnumDescriptor* RoundingMode_descriptor() { - return MathContext_RoundingMode_descriptor(); - } - template - static inline const std::string& RoundingMode_Name(T value) { - return MathContext_RoundingMode_Name(value); - } - static inline bool RoundingMode_Parse(absl::string_view name, RoundingMode* value) { - return MathContext_RoundingMode_Parse(name, value); - } - - // accessors ------------------------------------------------------- - enum : int { - kPrecisionFieldNumber = 1, - kRoundingModeFieldNumber = 2, - }; - // sint32 precision = 1; - void clear_precision() ; - ::int32_t precision() const; - void set_precision(::int32_t value); - - private: - ::int32_t _internal_precision() const; - void _internal_set_precision(::int32_t value); - - public: - // .io.deephaven.proto.backplane.grpc.MathContext.RoundingMode rounding_mode = 2; - void clear_rounding_mode() ; - ::io::deephaven::proto::backplane::grpc::MathContext_RoundingMode rounding_mode() const; - void set_rounding_mode(::io::deephaven::proto::backplane::grpc::MathContext_RoundingMode value); - - private: - ::io::deephaven::proto::backplane::grpc::MathContext_RoundingMode _internal_rounding_mode() const; - void _internal_set_rounding_mode(::io::deephaven::proto::backplane::grpc::MathContext_RoundingMode value); - - public: - // @@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 - 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 MathContext& from_msg); - ::int32_t precision_; - int rounding_mode_; - mutable ::google::protobuf::internal::CachedSize _cached_size_; - PROTOBUF_TSAN_DECLARE_MEMBER - }; - 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) */ { - public: - inline Literal() : Literal(nullptr) {} - ~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; - } - inline Literal& operator=(Literal&& 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 Literal& default_instance() { - return *internal_default_instance(); - } - enum ValueCase { - kStringValue = 1, - kDoubleValue = 2, - kBoolValue = 3, - kLongValue = 4, - 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); } - 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 - if (GetArena() == other->GetArena()) { -#endif // !PROTOBUF_FORCE_COPY_IN_SWAP - InternalSwap(other); - } else { - ::google::protobuf::internal::GenericSwap(this, other); - } - } - void UnsafeArenaSwap(Literal* other) { - if (other == this) return; - ABSL_DCHECK(GetArena() == other->GetArena()); - InternalSwap(other); - } - - // implements Message ---------------------------------------------- - - 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); } - - private: - static void MergeImpl( - ::google::protobuf::MessageLite& to_msg, - const ::google::protobuf::MessageLite& from_msg); - - 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; - #endif // PROTOBUF_CUSTOM_VTABLE - int GetCachedSize() const { return _impl_._cached_size_.Get(); } - - private: - void SharedCtor(::google::protobuf::Arena* arena); - void SharedDtor(); - void InternalSwap(Literal* other); - private: - friend class ::google::protobuf::internal::AnyMetadata; - 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); - 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, - kBoolValueFieldNumber = 3, - kLongValueFieldNumber = 4, - kNanoTimeValueFieldNumber = 5, - }; - // string string_value = 1; - bool has_string_value() const; - void clear_string_value() ; - const std::string& string_value() const; - template - void set_string_value(Arg_&& arg, Args_... args); - std::string* mutable_string_value(); - PROTOBUF_NODISCARD std::string* release_string_value(); - void set_allocated_string_value(std::string* value); - - private: - const std::string& _internal_string_value() const; - inline PROTOBUF_ALWAYS_INLINE void _internal_set_string_value( - const std::string& value); - std::string* _internal_mutable_string_value(); - - public: - // double double_value = 2; - bool has_double_value() const; - void clear_double_value() ; - double double_value() const; - void set_double_value(double value); - - private: - double _internal_double_value() const; - void _internal_set_double_value(double value); - - public: - // bool bool_value = 3; - bool has_bool_value() const; - void clear_bool_value() ; - bool bool_value() const; - void set_bool_value(bool value); - - private: - bool _internal_bool_value() const; - void _internal_set_bool_value(bool value); - - public: - // sint64 long_value = 4 [jstype = JS_STRING]; - bool has_long_value() const; - void clear_long_value() ; - ::int64_t long_value() const; - void set_long_value(::int64_t value); - - private: - ::int64_t _internal_long_value() const; - void _internal_set_long_value(::int64_t value); - - public: - // sint64 nano_time_value = 5 [jstype = JS_STRING]; - bool has_nano_time_value() const; - void clear_nano_time_value() ; - ::int64_t nano_time_value() const; - void set_nano_time_value(::int64_t value); - - private: - ::int64_t _internal_nano_time_value() const; - void _internal_set_nano_time_value(::int64_t value); - - public: - void clear_value(); - ValueCase value_case() const; - // @@protoc_insertion_point(class_scope:io.deephaven.proto.backplane.grpc.Literal) - private: - class _Internal; - void set_has_string_value(); - void set_has_double_value(); - 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 - 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 Literal& from_msg); - union ValueUnion { - constexpr ValueUnion() : _constinit_{} {} - ::google::protobuf::internal::ConstantInitialized _constinit_; - ::google::protobuf::internal::ArenaStringPtr string_value_; - double double_value_; - bool bool_value_; - ::int64_t long_value_; - ::int64_t nano_time_value_; - } 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) */ { - public: - inline ExportedTableUpdatesRequest() : ExportedTableUpdatesRequest(nullptr) {} - 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 ---------------------------------------------- - - 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_; - - 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 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 - ) { - 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 CreateInputTableRequest_InputTableKind_InMemoryKeyBacked& default_instance() { - return *internal_default_instance(); - } - 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); } - 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 - if (GetArena() == other->GetArena()) { -#endif // !PROTOBUF_FORCE_COPY_IN_SWAP - InternalSwap(other); - } else { - ::google::protobuf::internal::GenericSwap(this, other); - } - } - void UnsafeArenaSwap(CreateInputTableRequest_InputTableKind_InMemoryKeyBacked* other) { - if (other == this) return; - ABSL_DCHECK(GetArena() == other->GetArena()); - InternalSwap(other); - } - - // implements Message ---------------------------------------------- - - 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); } - - private: - static void MergeImpl( - ::google::protobuf::MessageLite& to_msg, - const ::google::protobuf::MessageLite& from_msg); - - 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; - #endif // PROTOBUF_CUSTOM_VTABLE - int GetCachedSize() const { return _impl_._cached_size_.Get(); } - - private: - void SharedCtor(::google::protobuf::Arena* arena); - void SharedDtor(); - void InternalSwap(CreateInputTableRequest_InputTableKind_InMemoryKeyBacked* other); - private: - friend class ::google::protobuf::internal::AnyMetadata; - 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); - 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, - }; - // repeated string key_columns = 1; - int key_columns_size() const; - private: - int _internal_key_columns_size() const; - - public: - void clear_key_columns() ; - const std::string& key_columns(int index) const; - std::string* mutable_key_columns(int index); - template - void set_key_columns(int index, Arg_&& value, Args_... args); - std::string* add_key_columns(); - template - void add_key_columns(Arg_&& value, Args_... args); - const ::google::protobuf::RepeatedPtrField& key_columns() const; - ::google::protobuf::RepeatedPtrField* mutable_key_columns(); - - private: - const ::google::protobuf::RepeatedPtrField& _internal_key_columns() const; - ::google::protobuf::RepeatedPtrField* _internal_mutable_key_columns(); - - public: - // @@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 - 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 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) */ { - 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) {} - 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; - } - 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 - && 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 CreateInputTableRequest_InputTableKind_InMemoryAppendOnly& default_instance() { - return *internal_default_instance(); - } - 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); } - 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 - if (GetArena() == other->GetArena()) { -#endif // !PROTOBUF_FORCE_COPY_IN_SWAP - InternalSwap(other); - } else { - ::google::protobuf::internal::GenericSwap(this, other); - } - } - void UnsafeArenaSwap(CreateInputTableRequest_InputTableKind_InMemoryAppendOnly* other) { - if (other == this) return; - ABSL_DCHECK(GetArena() == other->GetArena()); - InternalSwap(other); - } - - // implements Message ---------------------------------------------- - - 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) { - ::google::protobuf::internal::ZeroFieldsBase::CopyImpl(*this, from); - } - using ::google::protobuf::internal::ZeroFieldsBase::MergeFrom; - void MergeFrom(const CreateInputTableRequest_InputTableKind_InMemoryAppendOnly& 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.CreateInputTableRequest.InputTableKind.InMemoryAppendOnly"; } - - protected: - explicit CreateInputTableRequest_InputTableKind_InMemoryAppendOnly(::google::protobuf::Arena* arena); - CreateInputTableRequest_InputTableKind_InMemoryAppendOnly(::google::protobuf::Arena* arena, const CreateInputTableRequest_InputTableKind_InMemoryAppendOnly& from); - 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; - 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 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) */ { - 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) {} - 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; - } - 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 - && 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 CreateInputTableRequest_InputTableKind_Blink& default_instance() { - return *internal_default_instance(); - } - 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); } - 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 - if (GetArena() == other->GetArena()) { -#endif // !PROTOBUF_FORCE_COPY_IN_SWAP - InternalSwap(other); - } else { - ::google::protobuf::internal::GenericSwap(this, other); - } - } - void UnsafeArenaSwap(CreateInputTableRequest_InputTableKind_Blink* other) { - if (other == this) return; - ABSL_DCHECK(GetArena() == other->GetArena()); - InternalSwap(other); - } - - // implements Message ---------------------------------------------- - - 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) { - ::google::protobuf::internal::ZeroFieldsBase::CopyImpl(*this, from); - } - using ::google::protobuf::internal::ZeroFieldsBase::MergeFrom; - void MergeFrom(const CreateInputTableRequest_InputTableKind_Blink& 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.CreateInputTableRequest.InputTableKind.Blink"; } - - protected: - explicit CreateInputTableRequest_InputTableKind_Blink(::google::protobuf::Arena* arena); - CreateInputTableRequest_InputTableKind_Blink(::google::protobuf::Arena* arena, const CreateInputTableRequest_InputTableKind_Blink& from); - 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; - 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 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) */ { - public: - inline ComboAggregateRequest_Aggregate() : ComboAggregateRequest_Aggregate(nullptr) {} - ~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; - } - inline ComboAggregateRequest_Aggregate& operator=(ComboAggregateRequest_Aggregate&& 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 ComboAggregateRequest_Aggregate& default_instance() { - return *internal_default_instance(); - } - 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); } - 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 - if (GetArena() == other->GetArena()) { -#endif // !PROTOBUF_FORCE_COPY_IN_SWAP - InternalSwap(other); - } else { - ::google::protobuf::internal::GenericSwap(this, other); - } - } - void UnsafeArenaSwap(ComboAggregateRequest_Aggregate* other) { - if (other == this) return; - ABSL_DCHECK(GetArena() == other->GetArena()); - InternalSwap(other); - } - - // implements Message ---------------------------------------------- - - 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); } - - private: - static void MergeImpl( - ::google::protobuf::MessageLite& to_msg, - const ::google::protobuf::MessageLite& from_msg); - - 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; - #endif // PROTOBUF_CUSTOM_VTABLE - int GetCachedSize() const { return _impl_._cached_size_.Get(); } - - private: - void SharedCtor(::google::protobuf::Arena* arena); - void SharedDtor(); - void InternalSwap(ComboAggregateRequest_Aggregate* other); - private: - friend class ::google::protobuf::internal::AnyMetadata; - 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); - 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, - kTypeFieldNumber = 1, - kAvgMedianFieldNumber = 5, - kPercentileFieldNumber = 4, - }; - // repeated string match_pairs = 2; - int match_pairs_size() const; - private: - int _internal_match_pairs_size() const; - - public: - void clear_match_pairs() ; - const std::string& match_pairs(int index) const; - std::string* mutable_match_pairs(int index); - template - void set_match_pairs(int index, Arg_&& value, Args_... args); - std::string* add_match_pairs(); - template - void add_match_pairs(Arg_&& value, Args_... args); - const ::google::protobuf::RepeatedPtrField& match_pairs() const; - ::google::protobuf::RepeatedPtrField* mutable_match_pairs(); - - private: - const ::google::protobuf::RepeatedPtrField& _internal_match_pairs() const; - ::google::protobuf::RepeatedPtrField* _internal_mutable_match_pairs(); - - public: - // string column_name = 3; - void clear_column_name() ; - const std::string& column_name() const; - template - void set_column_name(Arg_&& arg, Args_... args); - std::string* mutable_column_name(); - PROTOBUF_NODISCARD std::string* release_column_name(); - void set_allocated_column_name(std::string* value); - - private: - const std::string& _internal_column_name() const; - inline PROTOBUF_ALWAYS_INLINE void _internal_set_column_name( - const std::string& value); - std::string* _internal_mutable_column_name(); - - public: - // .io.deephaven.proto.backplane.grpc.ComboAggregateRequest.AggType type = 1; - void clear_type() ; - ::io::deephaven::proto::backplane::grpc::ComboAggregateRequest_AggType type() const; - void set_type(::io::deephaven::proto::backplane::grpc::ComboAggregateRequest_AggType value); - - private: - ::io::deephaven::proto::backplane::grpc::ComboAggregateRequest_AggType _internal_type() const; - void _internal_set_type(::io::deephaven::proto::backplane::grpc::ComboAggregateRequest_AggType value); - - public: - // bool avg_median = 5; - void clear_avg_median() ; - bool avg_median() const; - void set_avg_median(bool value); - - private: - bool _internal_avg_median() const; - void _internal_set_avg_median(bool value); - - public: - // double percentile = 4; - void clear_percentile() ; - double percentile() const; - void set_percentile(double value); - - private: - double _internal_percentile() const; - void _internal_set_percentile(double value); - - public: - // @@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 - 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 ComboAggregateRequest_Aggregate& from_msg); - ::google::protobuf::RepeatedPtrField match_pairs_; - ::google::protobuf::internal::ArenaStringPtr column_name_; - int type_; - bool avg_median_; - double percentile_; - mutable ::google::protobuf::internal::CachedSize _cached_size_; - PROTOBUF_TSAN_DECLARE_MEMBER - }; - 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) */ { - public: - inline Aggregation_AggregationRowKey() : Aggregation_AggregationRowKey(nullptr) {} - ~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; - } - inline Aggregation_AggregationRowKey& operator=(Aggregation_AggregationRowKey&& 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 Aggregation_AggregationRowKey& default_instance() { - return *internal_default_instance(); - } - 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); } - 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 - if (GetArena() == other->GetArena()) { -#endif // !PROTOBUF_FORCE_COPY_IN_SWAP - InternalSwap(other); - } else { - ::google::protobuf::internal::GenericSwap(this, other); - } - } - void UnsafeArenaSwap(Aggregation_AggregationRowKey* other) { - if (other == this) return; - ABSL_DCHECK(GetArena() == other->GetArena()); - InternalSwap(other); - } - - // implements Message ---------------------------------------------- - - 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); } - - private: - static void MergeImpl( - ::google::protobuf::MessageLite& to_msg, - const ::google::protobuf::MessageLite& from_msg); - - 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; - #endif // PROTOBUF_CUSTOM_VTABLE - int GetCachedSize() const { return _impl_._cached_size_.Get(); } - - private: - void SharedCtor(::google::protobuf::Arena* arena); - void SharedDtor(); - void InternalSwap(Aggregation_AggregationRowKey* other); - private: - friend class ::google::protobuf::internal::AnyMetadata; - 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); - 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, - }; - // string column_name = 1; - void clear_column_name() ; - const std::string& column_name() const; - template - void set_column_name(Arg_&& arg, Args_... args); - std::string* mutable_column_name(); - PROTOBUF_NODISCARD std::string* release_column_name(); - void set_allocated_column_name(std::string* value); - - private: - const std::string& _internal_column_name() const; - inline PROTOBUF_ALWAYS_INLINE void _internal_set_column_name( - const std::string& value); - std::string* _internal_mutable_column_name(); - - public: - // @@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 - 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 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) */ { - public: - inline Aggregation_AggregationPartition() : Aggregation_AggregationPartition(nullptr) {} - ~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; - } - inline Aggregation_AggregationPartition& operator=(Aggregation_AggregationPartition&& 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 Aggregation_AggregationPartition& default_instance() { - return *internal_default_instance(); - } - 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); } - 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 - if (GetArena() == other->GetArena()) { -#endif // !PROTOBUF_FORCE_COPY_IN_SWAP - InternalSwap(other); - } else { - ::google::protobuf::internal::GenericSwap(this, other); - } - } - void UnsafeArenaSwap(Aggregation_AggregationPartition* other) { - if (other == this) return; - ABSL_DCHECK(GetArena() == other->GetArena()); - InternalSwap(other); - } - - // implements Message ---------------------------------------------- - - 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); } - - private: - static void MergeImpl( - ::google::protobuf::MessageLite& to_msg, - const ::google::protobuf::MessageLite& from_msg); - - 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; - #endif // PROTOBUF_CUSTOM_VTABLE - int GetCachedSize() const { return _impl_._cached_size_.Get(); } - - private: - void SharedCtor(::google::protobuf::Arena* arena); - void SharedDtor(); - void InternalSwap(Aggregation_AggregationPartition* other); - private: - friend class ::google::protobuf::internal::AnyMetadata; - 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); - 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, - }; - // string column_name = 1; - void clear_column_name() ; - const std::string& column_name() const; - template - void set_column_name(Arg_&& arg, Args_... args); - std::string* mutable_column_name(); - PROTOBUF_NODISCARD std::string* release_column_name(); - void set_allocated_column_name(std::string* value); - - private: - const std::string& _internal_column_name() const; - inline PROTOBUF_ALWAYS_INLINE void _internal_set_column_name( - const std::string& value); - std::string* _internal_mutable_column_name(); - - public: - // bool include_group_by_columns = 2; - void clear_include_group_by_columns() ; - bool include_group_by_columns() const; - void set_include_group_by_columns(bool value); - - private: - bool _internal_include_group_by_columns() const; - void _internal_set_include_group_by_columns(bool value); - - public: - // @@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 - 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 Aggregation_AggregationPartition& from_msg); - ::google::protobuf::internal::ArenaStringPtr column_name_; - bool include_group_by_columns_; - mutable ::google::protobuf::internal::CachedSize _cached_size_; - PROTOBUF_TSAN_DECLARE_MEMBER - }; - 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) */ { - public: - inline Aggregation_AggregationCount() : Aggregation_AggregationCount(nullptr) {} - ~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; - } - inline Aggregation_AggregationCount& operator=(Aggregation_AggregationCount&& 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 Aggregation_AggregationCount& default_instance() { - return *internal_default_instance(); - } - 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); } - 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 - if (GetArena() == other->GetArena()) { -#endif // !PROTOBUF_FORCE_COPY_IN_SWAP - InternalSwap(other); - } else { - ::google::protobuf::internal::GenericSwap(this, other); - } - } - void UnsafeArenaSwap(Aggregation_AggregationCount* other) { - if (other == this) return; - ABSL_DCHECK(GetArena() == other->GetArena()); - InternalSwap(other); - } - - // implements Message ---------------------------------------------- - - 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); } - - private: - static void MergeImpl( - ::google::protobuf::MessageLite& to_msg, - const ::google::protobuf::MessageLite& from_msg); - - 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; - #endif // PROTOBUF_CUSTOM_VTABLE - int GetCachedSize() const { return _impl_._cached_size_.Get(); } - - private: - void SharedCtor(::google::protobuf::Arena* arena); - void SharedDtor(); - void InternalSwap(Aggregation_AggregationCount* other); - private: - friend class ::google::protobuf::internal::AnyMetadata; - 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); - 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, - }; - // string column_name = 1; - void clear_column_name() ; - const std::string& column_name() const; - template - void set_column_name(Arg_&& arg, Args_... args); - std::string* mutable_column_name(); - PROTOBUF_NODISCARD std::string* release_column_name(); - void set_allocated_column_name(std::string* value); - - private: - const std::string& _internal_column_name() const; - inline PROTOBUF_ALWAYS_INLINE void _internal_set_column_name( - const std::string& value); - std::string* _internal_mutable_column_name(); - - public: - // @@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 - 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 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) */ { - public: - inline AggSpec_AggSpecWeighted() : AggSpec_AggSpecWeighted(nullptr) {} - ~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; - } - inline AggSpec_AggSpecWeighted& operator=(AggSpec_AggSpecWeighted&& 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 AggSpec_AggSpecWeighted& default_instance() { - return *internal_default_instance(); - } - 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); } - 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 - if (GetArena() == other->GetArena()) { -#endif // !PROTOBUF_FORCE_COPY_IN_SWAP - InternalSwap(other); - } else { - ::google::protobuf::internal::GenericSwap(this, other); - } - } - void UnsafeArenaSwap(AggSpec_AggSpecWeighted* other) { - if (other == this) return; - ABSL_DCHECK(GetArena() == other->GetArena()); - InternalSwap(other); - } - - // implements Message ---------------------------------------------- - - 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); } - - private: - static void MergeImpl( - ::google::protobuf::MessageLite& to_msg, - const ::google::protobuf::MessageLite& from_msg); - - 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; - #endif // PROTOBUF_CUSTOM_VTABLE - int GetCachedSize() const { return _impl_._cached_size_.Get(); } - - private: - void SharedCtor(::google::protobuf::Arena* arena); - void SharedDtor(); - void InternalSwap(AggSpec_AggSpecWeighted* other); - private: - friend class ::google::protobuf::internal::AnyMetadata; - 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); - 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, - }; - // string weight_column = 1; - void clear_weight_column() ; - const std::string& weight_column() const; - template - void set_weight_column(Arg_&& arg, Args_... args); - std::string* mutable_weight_column(); - PROTOBUF_NODISCARD std::string* release_weight_column(); - void set_allocated_weight_column(std::string* value); - - private: - const std::string& _internal_weight_column() const; - inline PROTOBUF_ALWAYS_INLINE void _internal_set_weight_column( - const std::string& value); - std::string* _internal_mutable_weight_column(); - - public: - // @@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 - 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 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) */ { - 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) {} - 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; - } - inline AggSpec_AggSpecVar& operator=(AggSpec_AggSpecVar&& 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 AggSpec_AggSpecVar& default_instance() { - return *internal_default_instance(); - } - 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); } - 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 - if (GetArena() == other->GetArena()) { -#endif // !PROTOBUF_FORCE_COPY_IN_SWAP - InternalSwap(other); - } else { - ::google::protobuf::internal::GenericSwap(this, other); - } - } - void UnsafeArenaSwap(AggSpec_AggSpecVar* other) { - if (other == this) return; - ABSL_DCHECK(GetArena() == other->GetArena()); - InternalSwap(other); - } - - // implements Message ---------------------------------------------- - - 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) { - ::google::protobuf::internal::ZeroFieldsBase::CopyImpl(*this, from); - } - using ::google::protobuf::internal::ZeroFieldsBase::MergeFrom; - void MergeFrom(const AggSpec_AggSpecVar& 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.AggSpec.AggSpecVar"; } - - protected: - explicit AggSpec_AggSpecVar(::google::protobuf::Arena* arena); - AggSpec_AggSpecVar(::google::protobuf::Arena* arena, const AggSpec_AggSpecVar& from); - 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; - 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 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) */ { - public: - inline AggSpec_AggSpecTDigest() : AggSpec_AggSpecTDigest(nullptr) {} - ~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; - } - inline AggSpec_AggSpecTDigest& operator=(AggSpec_AggSpecTDigest&& 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 AggSpec_AggSpecTDigest& default_instance() { - return *internal_default_instance(); - } - 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); } - 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 - if (GetArena() == other->GetArena()) { -#endif // !PROTOBUF_FORCE_COPY_IN_SWAP - InternalSwap(other); - } else { - ::google::protobuf::internal::GenericSwap(this, other); - } - } - void UnsafeArenaSwap(AggSpec_AggSpecTDigest* other) { - if (other == this) return; - ABSL_DCHECK(GetArena() == other->GetArena()); - InternalSwap(other); - } - - // implements Message ---------------------------------------------- - - 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); } - - private: - static void MergeImpl( - ::google::protobuf::MessageLite& to_msg, - const ::google::protobuf::MessageLite& from_msg); - - 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; - #endif // PROTOBUF_CUSTOM_VTABLE - int GetCachedSize() const { return _impl_._cached_size_.Get(); } - - private: - void SharedCtor(::google::protobuf::Arena* arena); - void SharedDtor(); - void InternalSwap(AggSpec_AggSpecTDigest* other); - private: - friend class ::google::protobuf::internal::AnyMetadata; - 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); - 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, - }; - // optional double compression = 1; - bool has_compression() const; - void clear_compression() ; - double compression() const; - void set_compression(double value); - - private: - double _internal_compression() const; - void _internal_set_compression(double value); - - public: - // @@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 - 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 AggSpec_AggSpecTDigest& from_msg); - ::google::protobuf::internal::HasBits<1> _has_bits_; - mutable ::google::protobuf::internal::CachedSize _cached_size_; - double compression_; - PROTOBUF_TSAN_DECLARE_MEMBER - }; - 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) */ { - 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) {} - 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; - } - inline AggSpec_AggSpecSum& operator=(AggSpec_AggSpecSum&& 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 AggSpec_AggSpecSum& default_instance() { - return *internal_default_instance(); - } - 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); } - 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 - if (GetArena() == other->GetArena()) { -#endif // !PROTOBUF_FORCE_COPY_IN_SWAP - InternalSwap(other); - } else { - ::google::protobuf::internal::GenericSwap(this, other); - } - } - void UnsafeArenaSwap(AggSpec_AggSpecSum* other) { - if (other == this) return; - ABSL_DCHECK(GetArena() == other->GetArena()); - InternalSwap(other); - } - - // implements Message ---------------------------------------------- - - 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) { - ::google::protobuf::internal::ZeroFieldsBase::CopyImpl(*this, from); - } - using ::google::protobuf::internal::ZeroFieldsBase::MergeFrom; - void MergeFrom(const AggSpec_AggSpecSum& 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.AggSpec.AggSpecSum"; } - - protected: - explicit AggSpec_AggSpecSum(::google::protobuf::Arena* arena); - AggSpec_AggSpecSum(::google::protobuf::Arena* arena, const AggSpec_AggSpecSum& from); - 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; - 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 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) */ { - 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) {} - 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; - } - inline AggSpec_AggSpecStd& operator=(AggSpec_AggSpecStd&& 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 AggSpec_AggSpecStd& default_instance() { - return *internal_default_instance(); - } - 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); } - 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 - if (GetArena() == other->GetArena()) { -#endif // !PROTOBUF_FORCE_COPY_IN_SWAP - InternalSwap(other); - } else { - ::google::protobuf::internal::GenericSwap(this, other); - } - } - void UnsafeArenaSwap(AggSpec_AggSpecStd* other) { - if (other == this) return; - ABSL_DCHECK(GetArena() == other->GetArena()); - InternalSwap(other); - } - - // implements Message ---------------------------------------------- - - 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) { - ::google::protobuf::internal::ZeroFieldsBase::CopyImpl(*this, from); - } - using ::google::protobuf::internal::ZeroFieldsBase::MergeFrom; - void MergeFrom(const AggSpec_AggSpecStd& 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.AggSpec.AggSpecStd"; } - - protected: - explicit AggSpec_AggSpecStd(::google::protobuf::Arena* arena); - AggSpec_AggSpecStd(::google::protobuf::Arena* arena, const AggSpec_AggSpecStd& from); - 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; - 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 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) */ { - public: - inline AggSpec_AggSpecSortedColumn() : AggSpec_AggSpecSortedColumn(nullptr) {} - ~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; - } - inline AggSpec_AggSpecSortedColumn& operator=(AggSpec_AggSpecSortedColumn&& 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 AggSpec_AggSpecSortedColumn& default_instance() { - return *internal_default_instance(); - } - 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); } - 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 - if (GetArena() == other->GetArena()) { -#endif // !PROTOBUF_FORCE_COPY_IN_SWAP - InternalSwap(other); - } else { - ::google::protobuf::internal::GenericSwap(this, other); - } - } - void UnsafeArenaSwap(AggSpec_AggSpecSortedColumn* other) { - if (other == this) return; - ABSL_DCHECK(GetArena() == other->GetArena()); - InternalSwap(other); - } - - // implements Message ---------------------------------------------- - - 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); } - - private: - static void MergeImpl( - ::google::protobuf::MessageLite& to_msg, - const ::google::protobuf::MessageLite& from_msg); - - 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; - #endif // PROTOBUF_CUSTOM_VTABLE - int GetCachedSize() const { return _impl_._cached_size_.Get(); } - - private: - void SharedCtor(::google::protobuf::Arena* arena); - void SharedDtor(); - void InternalSwap(AggSpec_AggSpecSortedColumn* other); - private: - friend class ::google::protobuf::internal::AnyMetadata; - 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); - 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, - }; - // string column_name = 1; - void clear_column_name() ; - const std::string& column_name() const; - template - void set_column_name(Arg_&& arg, Args_... args); - std::string* mutable_column_name(); - PROTOBUF_NODISCARD std::string* release_column_name(); - void set_allocated_column_name(std::string* value); - - private: - const std::string& _internal_column_name() const; - inline PROTOBUF_ALWAYS_INLINE void _internal_set_column_name( - const std::string& value); - std::string* _internal_mutable_column_name(); - - public: - // @@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 - 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 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) */ { - public: - inline AggSpec_AggSpecPercentile() : AggSpec_AggSpecPercentile(nullptr) {} - ~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; - } - inline AggSpec_AggSpecPercentile& operator=(AggSpec_AggSpecPercentile&& 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 AggSpec_AggSpecPercentile& default_instance() { - return *internal_default_instance(); - } - 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); } - 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 - if (GetArena() == other->GetArena()) { -#endif // !PROTOBUF_FORCE_COPY_IN_SWAP - InternalSwap(other); - } else { - ::google::protobuf::internal::GenericSwap(this, other); - } - } - void UnsafeArenaSwap(AggSpec_AggSpecPercentile* other) { - if (other == this) return; - ABSL_DCHECK(GetArena() == other->GetArena()); - InternalSwap(other); - } - - // implements Message ---------------------------------------------- - - 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); } - - private: - static void MergeImpl( - ::google::protobuf::MessageLite& to_msg, - const ::google::protobuf::MessageLite& from_msg); - - 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; - #endif // PROTOBUF_CUSTOM_VTABLE - int GetCachedSize() const { return _impl_._cached_size_.Get(); } - - private: - void SharedCtor(::google::protobuf::Arena* arena); - void SharedDtor(); - void InternalSwap(AggSpec_AggSpecPercentile* other); - private: - friend class ::google::protobuf::internal::AnyMetadata; - 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); - 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, - }; - // double percentile = 1; - void clear_percentile() ; - double percentile() const; - void set_percentile(double value); - - private: - double _internal_percentile() const; - void _internal_set_percentile(double value); - - public: - // bool average_evenly_divided = 2; - void clear_average_evenly_divided() ; - bool average_evenly_divided() const; - void set_average_evenly_divided(bool value); - - private: - bool _internal_average_evenly_divided() const; - void _internal_set_average_evenly_divided(bool value); - - public: - // @@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 - 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 AggSpec_AggSpecPercentile& from_msg); - double percentile_; - 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_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() 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; - } - inline AggSpec_AggSpecNonUniqueSentinel& operator=(AggSpec_AggSpecNonUniqueSentinel&& 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 AggSpec_AggSpecNonUniqueSentinel& default_instance() { - return *internal_default_instance(); - } - enum TypeCase { - kNullValue = 1, - kStringValue = 2, - kIntValue = 3, - kLongValue = 4, - kFloatValue = 5, - kDoubleValue = 6, - kBoolValue = 7, - kByteValue = 8, - kShortValue = 9, - 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); } - 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 - if (GetArena() == other->GetArena()) { -#endif // !PROTOBUF_FORCE_COPY_IN_SWAP - InternalSwap(other); - } else { - ::google::protobuf::internal::GenericSwap(this, other); - } - } - void UnsafeArenaSwap(AggSpec_AggSpecNonUniqueSentinel* other) { - if (other == this) return; - ABSL_DCHECK(GetArena() == other->GetArena()); - InternalSwap(other); - } - - // implements Message ---------------------------------------------- - - 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); } - - private: - static void MergeImpl( - ::google::protobuf::MessageLite& to_msg, - const ::google::protobuf::MessageLite& from_msg); - - 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; - #endif // PROTOBUF_CUSTOM_VTABLE - int GetCachedSize() const { return _impl_._cached_size_.Get(); } - - private: - void SharedCtor(::google::protobuf::Arena* arena); - void SharedDtor(); - void InternalSwap(AggSpec_AggSpecNonUniqueSentinel* other); - private: - friend class ::google::protobuf::internal::AnyMetadata; - 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); - 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, - kIntValueFieldNumber = 3, - kLongValueFieldNumber = 4, - kFloatValueFieldNumber = 5, - kDoubleValueFieldNumber = 6, - kBoolValueFieldNumber = 7, - kByteValueFieldNumber = 8, - kShortValueFieldNumber = 9, - kCharValueFieldNumber = 10, - }; - // .io.deephaven.proto.backplane.grpc.NullValue null_value = 1; - bool has_null_value() const; - void clear_null_value() ; - ::io::deephaven::proto::backplane::grpc::NullValue null_value() const; - void set_null_value(::io::deephaven::proto::backplane::grpc::NullValue value); - - private: - ::io::deephaven::proto::backplane::grpc::NullValue _internal_null_value() const; - void _internal_set_null_value(::io::deephaven::proto::backplane::grpc::NullValue value); - - public: - // string string_value = 2; - bool has_string_value() const; - void clear_string_value() ; - const std::string& string_value() const; - template - void set_string_value(Arg_&& arg, Args_... args); - std::string* mutable_string_value(); - PROTOBUF_NODISCARD std::string* release_string_value(); - void set_allocated_string_value(std::string* value); - - private: - const std::string& _internal_string_value() const; - inline PROTOBUF_ALWAYS_INLINE void _internal_set_string_value( - const std::string& value); - std::string* _internal_mutable_string_value(); - - public: - // sint32 int_value = 3; - bool has_int_value() const; - void clear_int_value() ; - ::int32_t int_value() const; - void set_int_value(::int32_t value); - - private: - ::int32_t _internal_int_value() const; - void _internal_set_int_value(::int32_t value); - - public: - // sint64 long_value = 4 [jstype = JS_STRING]; - bool has_long_value() const; - void clear_long_value() ; - ::int64_t long_value() const; - void set_long_value(::int64_t value); - - private: - ::int64_t _internal_long_value() const; - void _internal_set_long_value(::int64_t value); - - public: - // float float_value = 5; - bool has_float_value() const; - void clear_float_value() ; - float float_value() const; - void set_float_value(float value); - - private: - float _internal_float_value() const; - void _internal_set_float_value(float value); - - public: - // double double_value = 6; - bool has_double_value() const; - void clear_double_value() ; - double double_value() const; - void set_double_value(double value); - - private: - double _internal_double_value() const; - void _internal_set_double_value(double value); - - public: - // bool bool_value = 7; - bool has_bool_value() const; - void clear_bool_value() ; - bool bool_value() const; - void set_bool_value(bool value); - - private: - bool _internal_bool_value() const; - void _internal_set_bool_value(bool value); - - public: - // sint32 byte_value = 8; - bool has_byte_value() const; - void clear_byte_value() ; - ::int32_t byte_value() const; - void set_byte_value(::int32_t value); - - private: - ::int32_t _internal_byte_value() const; - void _internal_set_byte_value(::int32_t value); - - public: - // sint32 short_value = 9; - bool has_short_value() const; - void clear_short_value() ; - ::int32_t short_value() const; - void set_short_value(::int32_t value); - - private: - ::int32_t _internal_short_value() const; - void _internal_set_short_value(::int32_t value); - - public: - // sint32 char_value = 10; - bool has_char_value() const; - void clear_char_value() ; - ::int32_t char_value() const; - void set_char_value(::int32_t value); - - private: - ::int32_t _internal_char_value() const; - void _internal_set_char_value(::int32_t value); - - public: - void clear_type(); - TypeCase type_case() const; - // @@protoc_insertion_point(class_scope:io.deephaven.proto.backplane.grpc.AggSpec.AggSpecNonUniqueSentinel) - private: - class _Internal; - void set_has_null_value(); - void set_has_string_value(); - void set_has_int_value(); - void set_has_long_value(); - void set_has_float_value(); - void set_has_double_value(); - void set_has_bool_value(); - 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 - 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 AggSpec_AggSpecNonUniqueSentinel& from_msg); - union TypeUnion { - constexpr TypeUnion() : _constinit_{} {} - ::google::protobuf::internal::ConstantInitialized _constinit_; - int null_value_; - ::google::protobuf::internal::ArenaStringPtr string_value_; - ::int32_t int_value_; - ::int64_t long_value_; - float float_value_; - double double_value_; - bool bool_value_; - ::int32_t byte_value_; - ::int32_t short_value_; - ::int32_t char_value_; - } 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) */ { - 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) {} - 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; - } - inline AggSpec_AggSpecMin& operator=(AggSpec_AggSpecMin&& 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 AggSpec_AggSpecMin& default_instance() { - return *internal_default_instance(); - } - 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); } - 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 - if (GetArena() == other->GetArena()) { -#endif // !PROTOBUF_FORCE_COPY_IN_SWAP - InternalSwap(other); - } else { - ::google::protobuf::internal::GenericSwap(this, other); - } - } - void UnsafeArenaSwap(AggSpec_AggSpecMin* other) { - if (other == this) return; - ABSL_DCHECK(GetArena() == other->GetArena()); - InternalSwap(other); - } - - // implements Message ---------------------------------------------- - - 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) { - ::google::protobuf::internal::ZeroFieldsBase::CopyImpl(*this, from); - } - using ::google::protobuf::internal::ZeroFieldsBase::MergeFrom; - void MergeFrom(const AggSpec_AggSpecMin& 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.AggSpec.AggSpecMin"; } - - protected: - explicit AggSpec_AggSpecMin(::google::protobuf::Arena* arena); - AggSpec_AggSpecMin(::google::protobuf::Arena* arena, const AggSpec_AggSpecMin& from); - 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; - 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 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) */ { - public: - inline AggSpec_AggSpecMedian() : AggSpec_AggSpecMedian(nullptr) {} - ~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; - } - inline AggSpec_AggSpecMedian& operator=(AggSpec_AggSpecMedian&& 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 AggSpec_AggSpecMedian& default_instance() { - return *internal_default_instance(); - } - 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); } - 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 - if (GetArena() == other->GetArena()) { -#endif // !PROTOBUF_FORCE_COPY_IN_SWAP - InternalSwap(other); - } else { - ::google::protobuf::internal::GenericSwap(this, other); - } - } - void UnsafeArenaSwap(AggSpec_AggSpecMedian* other) { - if (other == this) return; - ABSL_DCHECK(GetArena() == other->GetArena()); - InternalSwap(other); - } - - // implements Message ---------------------------------------------- - - 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); } - - private: - static void MergeImpl( - ::google::protobuf::MessageLite& to_msg, - const ::google::protobuf::MessageLite& from_msg); - - 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; - #endif // PROTOBUF_CUSTOM_VTABLE - int GetCachedSize() const { return _impl_._cached_size_.Get(); } - - private: - void SharedCtor(::google::protobuf::Arena* arena); - void SharedDtor(); - void InternalSwap(AggSpec_AggSpecMedian* other); - private: - friend class ::google::protobuf::internal::AnyMetadata; - 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); - 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, - }; - // bool average_evenly_divided = 1; - void clear_average_evenly_divided() ; - bool average_evenly_divided() const; - void set_average_evenly_divided(bool value); - - private: - bool _internal_average_evenly_divided() const; - void _internal_set_average_evenly_divided(bool value); - - public: - // @@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 - 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 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) */ { - 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) {} - 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; - } - inline AggSpec_AggSpecMax& operator=(AggSpec_AggSpecMax&& 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 AggSpec_AggSpecMax& default_instance() { - return *internal_default_instance(); - } - 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); } - 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 - if (GetArena() == other->GetArena()) { -#endif // !PROTOBUF_FORCE_COPY_IN_SWAP - InternalSwap(other); - } else { - ::google::protobuf::internal::GenericSwap(this, other); - } - } - void UnsafeArenaSwap(AggSpec_AggSpecMax* other) { - if (other == this) return; - ABSL_DCHECK(GetArena() == other->GetArena()); - InternalSwap(other); - } - - // implements Message ---------------------------------------------- - - 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) { - ::google::protobuf::internal::ZeroFieldsBase::CopyImpl(*this, from); - } - using ::google::protobuf::internal::ZeroFieldsBase::MergeFrom; - void MergeFrom(const AggSpec_AggSpecMax& 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.AggSpec.AggSpecMax"; } - - protected: - explicit AggSpec_AggSpecMax(::google::protobuf::Arena* arena); - AggSpec_AggSpecMax(::google::protobuf::Arena* arena, const AggSpec_AggSpecMax& from); - 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; - 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 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) */ { - 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) {} - 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; - } - inline AggSpec_AggSpecLast& operator=(AggSpec_AggSpecLast&& 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 AggSpec_AggSpecLast& default_instance() { - return *internal_default_instance(); - } - 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); } - 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 - if (GetArena() == other->GetArena()) { -#endif // !PROTOBUF_FORCE_COPY_IN_SWAP - InternalSwap(other); - } else { - ::google::protobuf::internal::GenericSwap(this, other); - } - } - void UnsafeArenaSwap(AggSpec_AggSpecLast* other) { - if (other == this) return; - ABSL_DCHECK(GetArena() == other->GetArena()); - InternalSwap(other); - } - - // implements Message ---------------------------------------------- - - 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) { - ::google::protobuf::internal::ZeroFieldsBase::CopyImpl(*this, from); - } - using ::google::protobuf::internal::ZeroFieldsBase::MergeFrom; - void MergeFrom(const AggSpec_AggSpecLast& 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.AggSpec.AggSpecLast"; } - - protected: - explicit AggSpec_AggSpecLast(::google::protobuf::Arena* arena); - AggSpec_AggSpecLast(::google::protobuf::Arena* arena, const AggSpec_AggSpecLast& from); - 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; - 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 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) */ { - 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) {} - 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; - } - inline AggSpec_AggSpecGroup& operator=(AggSpec_AggSpecGroup&& 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 AggSpec_AggSpecGroup& default_instance() { - return *internal_default_instance(); - } - 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); } - 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 - if (GetArena() == other->GetArena()) { -#endif // !PROTOBUF_FORCE_COPY_IN_SWAP - InternalSwap(other); - } else { - ::google::protobuf::internal::GenericSwap(this, other); - } - } - void UnsafeArenaSwap(AggSpec_AggSpecGroup* other) { - if (other == this) return; - ABSL_DCHECK(GetArena() == other->GetArena()); - InternalSwap(other); - } - - // implements Message ---------------------------------------------- - - 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) { - ::google::protobuf::internal::ZeroFieldsBase::CopyImpl(*this, from); - } - using ::google::protobuf::internal::ZeroFieldsBase::MergeFrom; - void MergeFrom(const AggSpec_AggSpecGroup& 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.AggSpec.AggSpecGroup"; } - - protected: - explicit AggSpec_AggSpecGroup(::google::protobuf::Arena* arena); - AggSpec_AggSpecGroup(::google::protobuf::Arena* arena, const AggSpec_AggSpecGroup& from); - 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; - 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 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) */ { - 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) {} - 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; - } - inline AggSpec_AggSpecFreeze& operator=(AggSpec_AggSpecFreeze&& 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 AggSpec_AggSpecFreeze& default_instance() { - return *internal_default_instance(); - } - 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); } - 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 - if (GetArena() == other->GetArena()) { -#endif // !PROTOBUF_FORCE_COPY_IN_SWAP - InternalSwap(other); - } else { - ::google::protobuf::internal::GenericSwap(this, other); - } - } - void UnsafeArenaSwap(AggSpec_AggSpecFreeze* other) { - if (other == this) return; - ABSL_DCHECK(GetArena() == other->GetArena()); - InternalSwap(other); - } - - // implements Message ---------------------------------------------- - - 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) { - ::google::protobuf::internal::ZeroFieldsBase::CopyImpl(*this, from); - } - using ::google::protobuf::internal::ZeroFieldsBase::MergeFrom; - void MergeFrom(const AggSpec_AggSpecFreeze& 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.AggSpec.AggSpecFreeze"; } - - protected: - explicit AggSpec_AggSpecFreeze(::google::protobuf::Arena* arena); - AggSpec_AggSpecFreeze(::google::protobuf::Arena* arena, const AggSpec_AggSpecFreeze& from); - 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; - 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 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) */ { - public: - inline AggSpec_AggSpecFormula() : AggSpec_AggSpecFormula(nullptr) {} - ~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; - } - inline AggSpec_AggSpecFormula& operator=(AggSpec_AggSpecFormula&& 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 AggSpec_AggSpecFormula& default_instance() { - return *internal_default_instance(); - } - 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); } - 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 - if (GetArena() == other->GetArena()) { -#endif // !PROTOBUF_FORCE_COPY_IN_SWAP - InternalSwap(other); - } else { - ::google::protobuf::internal::GenericSwap(this, other); - } - } - void UnsafeArenaSwap(AggSpec_AggSpecFormula* other) { - if (other == this) return; - ABSL_DCHECK(GetArena() == other->GetArena()); - InternalSwap(other); - } - - // implements Message ---------------------------------------------- - - 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); } - - private: - static void MergeImpl( - ::google::protobuf::MessageLite& to_msg, - const ::google::protobuf::MessageLite& from_msg); - - 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; - #endif // PROTOBUF_CUSTOM_VTABLE - int GetCachedSize() const { return _impl_._cached_size_.Get(); } - - private: - void SharedCtor(::google::protobuf::Arena* arena); - void SharedDtor(); - void InternalSwap(AggSpec_AggSpecFormula* other); - private: - friend class ::google::protobuf::internal::AnyMetadata; - 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); - 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, - }; - // string formula = 1; - void clear_formula() ; - const std::string& formula() const; - template - void set_formula(Arg_&& arg, Args_... args); - std::string* mutable_formula(); - PROTOBUF_NODISCARD std::string* release_formula(); - void set_allocated_formula(std::string* value); - - private: - const std::string& _internal_formula() const; - inline PROTOBUF_ALWAYS_INLINE void _internal_set_formula( - const std::string& value); - std::string* _internal_mutable_formula(); - - public: - // string param_token = 2; - void clear_param_token() ; - const std::string& param_token() const; - template - void set_param_token(Arg_&& arg, Args_... args); - std::string* mutable_param_token(); - PROTOBUF_NODISCARD std::string* release_param_token(); - void set_allocated_param_token(std::string* value); - - private: - const std::string& _internal_param_token() const; - inline PROTOBUF_ALWAYS_INLINE void _internal_set_param_token( - const std::string& value); - std::string* _internal_mutable_param_token(); - - public: - // @@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 - 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 AggSpec_AggSpecFormula& from_msg); - ::google::protobuf::internal::ArenaStringPtr formula_; - ::google::protobuf::internal::ArenaStringPtr param_token_; - mutable ::google::protobuf::internal::CachedSize _cached_size_; - PROTOBUF_TSAN_DECLARE_MEMBER - }; - 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) */ { - 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) {} - 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; - } - inline AggSpec_AggSpecFirst& operator=(AggSpec_AggSpecFirst&& 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 AggSpec_AggSpecFirst& default_instance() { - return *internal_default_instance(); - } - 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); } - 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 - if (GetArena() == other->GetArena()) { -#endif // !PROTOBUF_FORCE_COPY_IN_SWAP - InternalSwap(other); - } else { - ::google::protobuf::internal::GenericSwap(this, other); - } - } - void UnsafeArenaSwap(AggSpec_AggSpecFirst* other) { - if (other == this) return; - ABSL_DCHECK(GetArena() == other->GetArena()); - InternalSwap(other); - } - - // implements Message ---------------------------------------------- - - 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) { - ::google::protobuf::internal::ZeroFieldsBase::CopyImpl(*this, from); - } - using ::google::protobuf::internal::ZeroFieldsBase::MergeFrom; - void MergeFrom(const AggSpec_AggSpecFirst& 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.AggSpec.AggSpecFirst"; } - - protected: - explicit AggSpec_AggSpecFirst(::google::protobuf::Arena* arena); - AggSpec_AggSpecFirst(::google::protobuf::Arena* arena, const AggSpec_AggSpecFirst& from); - 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; - 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 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) */ { - public: - inline AggSpec_AggSpecDistinct() : AggSpec_AggSpecDistinct(nullptr) {} - ~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; - } - inline AggSpec_AggSpecDistinct& operator=(AggSpec_AggSpecDistinct&& 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 AggSpec_AggSpecDistinct& default_instance() { - return *internal_default_instance(); - } - 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); } - 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 - if (GetArena() == other->GetArena()) { -#endif // !PROTOBUF_FORCE_COPY_IN_SWAP - InternalSwap(other); - } else { - ::google::protobuf::internal::GenericSwap(this, other); - } - } - void UnsafeArenaSwap(AggSpec_AggSpecDistinct* other) { - if (other == this) return; - ABSL_DCHECK(GetArena() == other->GetArena()); - InternalSwap(other); - } - - // implements Message ---------------------------------------------- - - 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); } - - private: - static void MergeImpl( - ::google::protobuf::MessageLite& to_msg, - const ::google::protobuf::MessageLite& from_msg); - - 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; - #endif // PROTOBUF_CUSTOM_VTABLE - int GetCachedSize() const { return _impl_._cached_size_.Get(); } - - private: - void SharedCtor(::google::protobuf::Arena* arena); - void SharedDtor(); - void InternalSwap(AggSpec_AggSpecDistinct* other); - private: - friend class ::google::protobuf::internal::AnyMetadata; - 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); - 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, - }; - // bool include_nulls = 1; - void clear_include_nulls() ; - bool include_nulls() const; - void set_include_nulls(bool value); - - private: - bool _internal_include_nulls() const; - void _internal_set_include_nulls(bool value); - - public: - // @@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 - 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 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) */ { - public: - inline AggSpec_AggSpecCountDistinct() : AggSpec_AggSpecCountDistinct(nullptr) {} - ~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; - } - inline AggSpec_AggSpecCountDistinct& operator=(AggSpec_AggSpecCountDistinct&& 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 AggSpec_AggSpecCountDistinct& default_instance() { - return *internal_default_instance(); - } - 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); } - 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 - if (GetArena() == other->GetArena()) { -#endif // !PROTOBUF_FORCE_COPY_IN_SWAP - InternalSwap(other); - } else { - ::google::protobuf::internal::GenericSwap(this, other); - } - } - void UnsafeArenaSwap(AggSpec_AggSpecCountDistinct* other) { - if (other == this) return; - ABSL_DCHECK(GetArena() == other->GetArena()); - InternalSwap(other); - } - - // implements Message ---------------------------------------------- - - 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); } - - private: - static void MergeImpl( - ::google::protobuf::MessageLite& to_msg, - const ::google::protobuf::MessageLite& from_msg); - - 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; - #endif // PROTOBUF_CUSTOM_VTABLE - int GetCachedSize() const { return _impl_._cached_size_.Get(); } - - private: - void SharedCtor(::google::protobuf::Arena* arena); - void SharedDtor(); - void InternalSwap(AggSpec_AggSpecCountDistinct* other); - private: - friend class ::google::protobuf::internal::AnyMetadata; - 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); - 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, - }; - // bool count_nulls = 1; - void clear_count_nulls() ; - bool count_nulls() const; - void set_count_nulls(bool value); - - private: - bool _internal_count_nulls() const; - void _internal_set_count_nulls(bool value); - - public: - // @@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 - 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 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) */ { - 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) {} - 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; - } - inline AggSpec_AggSpecAvg& operator=(AggSpec_AggSpecAvg&& 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 AggSpec_AggSpecAvg& default_instance() { - return *internal_default_instance(); - } - 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); } - 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 - if (GetArena() == other->GetArena()) { -#endif // !PROTOBUF_FORCE_COPY_IN_SWAP - InternalSwap(other); - } else { - ::google::protobuf::internal::GenericSwap(this, other); - } - } - void UnsafeArenaSwap(AggSpec_AggSpecAvg* other) { - if (other == this) return; - ABSL_DCHECK(GetArena() == other->GetArena()); - InternalSwap(other); - } - - // implements Message ---------------------------------------------- - - 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) { - ::google::protobuf::internal::ZeroFieldsBase::CopyImpl(*this, from); - } - using ::google::protobuf::internal::ZeroFieldsBase::MergeFrom; - void MergeFrom(const AggSpec_AggSpecAvg& 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.AggSpec.AggSpecAvg"; } - - protected: - explicit AggSpec_AggSpecAvg(::google::protobuf::Arena* arena); - AggSpec_AggSpecAvg(::google::protobuf::Arena* arena, const AggSpec_AggSpecAvg& from); - 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; - 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 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) */ { - public: - inline AggSpec_AggSpecApproximatePercentile() : AggSpec_AggSpecApproximatePercentile(nullptr) {} - ~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; - } - inline AggSpec_AggSpecApproximatePercentile& operator=(AggSpec_AggSpecApproximatePercentile&& 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 AggSpec_AggSpecApproximatePercentile& default_instance() { - return *internal_default_instance(); - } - 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); } - 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 - if (GetArena() == other->GetArena()) { -#endif // !PROTOBUF_FORCE_COPY_IN_SWAP - InternalSwap(other); - } else { - ::google::protobuf::internal::GenericSwap(this, other); - } - } - void UnsafeArenaSwap(AggSpec_AggSpecApproximatePercentile* other) { - if (other == this) return; - ABSL_DCHECK(GetArena() == other->GetArena()); - InternalSwap(other); - } - - // implements Message ---------------------------------------------- - - 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); } - - private: - static void MergeImpl( - ::google::protobuf::MessageLite& to_msg, - const ::google::protobuf::MessageLite& from_msg); - - 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; - #endif // PROTOBUF_CUSTOM_VTABLE - int GetCachedSize() const { return _impl_._cached_size_.Get(); } - - private: - void SharedCtor(::google::protobuf::Arena* arena); - void SharedDtor(); - void InternalSwap(AggSpec_AggSpecApproximatePercentile* other); - private: - friend class ::google::protobuf::internal::AnyMetadata; - 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); - 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, - }; - // double percentile = 1; - void clear_percentile() ; - double percentile() const; - void set_percentile(double value); - - private: - double _internal_percentile() const; - void _internal_set_percentile(double value); - - public: - // optional double compression = 2; - bool has_compression() const; - void clear_compression() ; - double compression() const; - void set_compression(double value); - - private: - double _internal_compression() const; - void _internal_set_compression(double value); - - public: - // @@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 - 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 AggSpec_AggSpecApproximatePercentile& from_msg); - ::google::protobuf::internal::HasBits<1> _has_bits_; - mutable ::google::protobuf::internal::CachedSize _cached_size_; - double percentile_; - double compression_; - PROTOBUF_TSAN_DECLARE_MEMBER - }; - 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) */ { - 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) {} - 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; - } - inline AggSpec_AggSpecAbsSum& operator=(AggSpec_AggSpecAbsSum&& 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 AggSpec_AggSpecAbsSum& default_instance() { - return *internal_default_instance(); - } - 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); } - 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 - if (GetArena() == other->GetArena()) { -#endif // !PROTOBUF_FORCE_COPY_IN_SWAP - InternalSwap(other); - } else { - ::google::protobuf::internal::GenericSwap(this, other); - } - } - void UnsafeArenaSwap(AggSpec_AggSpecAbsSum* other) { - if (other == this) return; - ABSL_DCHECK(GetArena() == other->GetArena()); - InternalSwap(other); - } - - // implements Message ---------------------------------------------- - - 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) { - ::google::protobuf::internal::ZeroFieldsBase::CopyImpl(*this, from); - } - using ::google::protobuf::internal::ZeroFieldsBase::MergeFrom; - void MergeFrom(const AggSpec_AggSpecAbsSum& 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.AggSpec.AggSpecAbsSum"; } - - protected: - explicit AggSpec_AggSpecAbsSum(::google::protobuf::Arena* arena); - AggSpec_AggSpecAbsSum(::google::protobuf::Arena* arena, const AggSpec_AggSpecAbsSum& from); - 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; - 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 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) */ { - public: - inline Value() : Value(nullptr) {} - ~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; - } - inline Value& operator=(Value&& 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 Value& default_instance() { - return *internal_default_instance(); - } - enum DataCase { - kReference = 1, - 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); } - 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 - if (GetArena() == other->GetArena()) { -#endif // !PROTOBUF_FORCE_COPY_IN_SWAP - InternalSwap(other); - } else { - ::google::protobuf::internal::GenericSwap(this, other); - } - } - void UnsafeArenaSwap(Value* other) { - if (other == this) return; - ABSL_DCHECK(GetArena() == other->GetArena()); - InternalSwap(other); - } - - // implements Message ---------------------------------------------- - - 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); } - - private: - static void MergeImpl( - ::google::protobuf::MessageLite& to_msg, - const ::google::protobuf::MessageLite& from_msg); - - 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; - #endif // PROTOBUF_CUSTOM_VTABLE - int GetCachedSize() const { return _impl_._cached_size_.Get(); } - - private: - void SharedCtor(::google::protobuf::Arena* arena); - void SharedDtor(); - void InternalSwap(Value* other); - private: - friend class ::google::protobuf::internal::AnyMetadata; - 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); - 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, - }; - // .io.deephaven.proto.backplane.grpc.Reference reference = 1; - bool has_reference() const; - private: - bool _internal_has_reference() const; - - public: - void clear_reference() ; - const ::io::deephaven::proto::backplane::grpc::Reference& reference() const; - PROTOBUF_NODISCARD ::io::deephaven::proto::backplane::grpc::Reference* release_reference(); - ::io::deephaven::proto::backplane::grpc::Reference* mutable_reference(); - void set_allocated_reference(::io::deephaven::proto::backplane::grpc::Reference* value); - void unsafe_arena_set_allocated_reference(::io::deephaven::proto::backplane::grpc::Reference* value); - ::io::deephaven::proto::backplane::grpc::Reference* unsafe_arena_release_reference(); - - private: - const ::io::deephaven::proto::backplane::grpc::Reference& _internal_reference() const; - ::io::deephaven::proto::backplane::grpc::Reference* _internal_mutable_reference(); - - public: - // .io.deephaven.proto.backplane.grpc.Literal literal = 2; - bool has_literal() const; - private: - bool _internal_has_literal() const; - - public: - void clear_literal() ; - const ::io::deephaven::proto::backplane::grpc::Literal& literal() const; - PROTOBUF_NODISCARD ::io::deephaven::proto::backplane::grpc::Literal* release_literal(); - ::io::deephaven::proto::backplane::grpc::Literal* mutable_literal(); - void set_allocated_literal(::io::deephaven::proto::backplane::grpc::Literal* value); - void unsafe_arena_set_allocated_literal(::io::deephaven::proto::backplane::grpc::Literal* value); - ::io::deephaven::proto::backplane::grpc::Literal* unsafe_arena_release_literal(); - - private: - const ::io::deephaven::proto::backplane::grpc::Literal& _internal_literal() const; - ::io::deephaven::proto::backplane::grpc::Literal* _internal_mutable_literal(); - - public: - void clear_data(); - DataCase data_case() const; - // @@protoc_insertion_point(class_scope:io.deephaven.proto.backplane.grpc.Value) - private: - 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 - 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 Value& from_msg); - union DataUnion { - constexpr DataUnion() : _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) */ { - public: - inline UpdateByWindowScale() : UpdateByWindowScale(nullptr) {} - ~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; - } - inline UpdateByWindowScale& operator=(UpdateByWindowScale&& 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 UpdateByWindowScale& default_instance() { - return *internal_default_instance(); - } - enum TypeCase { - kTicks = 1, - 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); } - 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 - if (GetArena() == other->GetArena()) { -#endif // !PROTOBUF_FORCE_COPY_IN_SWAP - InternalSwap(other); - } else { - ::google::protobuf::internal::GenericSwap(this, other); - } - } - void UnsafeArenaSwap(UpdateByWindowScale* other) { - if (other == this) return; - ABSL_DCHECK(GetArena() == other->GetArena()); - InternalSwap(other); - } - - // implements Message ---------------------------------------------- - - 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); } - - private: - static void MergeImpl( - ::google::protobuf::MessageLite& to_msg, - const ::google::protobuf::MessageLite& from_msg); - - 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; - #endif // PROTOBUF_CUSTOM_VTABLE - int GetCachedSize() const { return _impl_._cached_size_.Get(); } - - private: - void SharedCtor(::google::protobuf::Arena* arena); - void SharedDtor(); - void InternalSwap(UpdateByWindowScale* other); - private: - friend class ::google::protobuf::internal::AnyMetadata; - 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); - 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, - }; - // .io.deephaven.proto.backplane.grpc.UpdateByWindowScale.UpdateByWindowTicks ticks = 1; - bool has_ticks() const; - private: - bool _internal_has_ticks() const; - - public: - void clear_ticks() ; - const ::io::deephaven::proto::backplane::grpc::UpdateByWindowScale_UpdateByWindowTicks& ticks() const; - PROTOBUF_NODISCARD ::io::deephaven::proto::backplane::grpc::UpdateByWindowScale_UpdateByWindowTicks* release_ticks(); - ::io::deephaven::proto::backplane::grpc::UpdateByWindowScale_UpdateByWindowTicks* mutable_ticks(); - void set_allocated_ticks(::io::deephaven::proto::backplane::grpc::UpdateByWindowScale_UpdateByWindowTicks* value); - void unsafe_arena_set_allocated_ticks(::io::deephaven::proto::backplane::grpc::UpdateByWindowScale_UpdateByWindowTicks* value); - ::io::deephaven::proto::backplane::grpc::UpdateByWindowScale_UpdateByWindowTicks* unsafe_arena_release_ticks(); - - private: - const ::io::deephaven::proto::backplane::grpc::UpdateByWindowScale_UpdateByWindowTicks& _internal_ticks() const; - ::io::deephaven::proto::backplane::grpc::UpdateByWindowScale_UpdateByWindowTicks* _internal_mutable_ticks(); - - public: - // .io.deephaven.proto.backplane.grpc.UpdateByWindowScale.UpdateByWindowTime time = 2; - bool has_time() const; - private: - bool _internal_has_time() const; - - public: - void clear_time() ; - const ::io::deephaven::proto::backplane::grpc::UpdateByWindowScale_UpdateByWindowTime& time() const; - PROTOBUF_NODISCARD ::io::deephaven::proto::backplane::grpc::UpdateByWindowScale_UpdateByWindowTime* release_time(); - ::io::deephaven::proto::backplane::grpc::UpdateByWindowScale_UpdateByWindowTime* mutable_time(); - void set_allocated_time(::io::deephaven::proto::backplane::grpc::UpdateByWindowScale_UpdateByWindowTime* value); - void unsafe_arena_set_allocated_time(::io::deephaven::proto::backplane::grpc::UpdateByWindowScale_UpdateByWindowTime* value); - ::io::deephaven::proto::backplane::grpc::UpdateByWindowScale_UpdateByWindowTime* unsafe_arena_release_time(); - - private: - const ::io::deephaven::proto::backplane::grpc::UpdateByWindowScale_UpdateByWindowTime& _internal_time() const; - ::io::deephaven::proto::backplane::grpc::UpdateByWindowScale_UpdateByWindowTime* _internal_mutable_time(); - - public: - void clear_type(); - TypeCase type_case() const; - // @@protoc_insertion_point(class_scope:io.deephaven.proto.backplane.grpc.UpdateByWindowScale) - private: - 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 - 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 UpdateByWindowScale& from_msg); - union TypeUnion { - constexpr TypeUnion() : _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) */ { - public: - inline UpdateByRequest_UpdateByOptions() : UpdateByRequest_UpdateByOptions(nullptr) {} - ~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; - } - inline UpdateByRequest_UpdateByOptions& operator=(UpdateByRequest_UpdateByOptions&& 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 UpdateByRequest_UpdateByOptions& default_instance() { - return *internal_default_instance(); - } - 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); } - 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 - if (GetArena() == other->GetArena()) { -#endif // !PROTOBUF_FORCE_COPY_IN_SWAP - InternalSwap(other); - } else { - ::google::protobuf::internal::GenericSwap(this, other); - } - } - void UnsafeArenaSwap(UpdateByRequest_UpdateByOptions* other) { - if (other == this) return; - ABSL_DCHECK(GetArena() == other->GetArena()); - InternalSwap(other); - } - - // implements Message ---------------------------------------------- - - 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); } - - private: - static void MergeImpl( - ::google::protobuf::MessageLite& to_msg, - const ::google::protobuf::MessageLite& from_msg); - - 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; - #endif // PROTOBUF_CUSTOM_VTABLE - int GetCachedSize() const { return _impl_._cached_size_.Get(); } - - private: - void SharedCtor(::google::protobuf::Arena* arena); - void SharedDtor(); - void InternalSwap(UpdateByRequest_UpdateByOptions* other); - private: - friend class ::google::protobuf::internal::AnyMetadata; - 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); - 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, - kChunkCapacityFieldNumber = 2, - kMaxStaticSparseMemoryOverheadFieldNumber = 3, - kMaximumLoadFactorFieldNumber = 5, - kTargetLoadFactorFieldNumber = 6, - kInitialHashTableSizeFieldNumber = 4, - }; - // .io.deephaven.proto.backplane.grpc.MathContext math_context = 7; - bool has_math_context() const; - void clear_math_context() ; - const ::io::deephaven::proto::backplane::grpc::MathContext& math_context() const; - PROTOBUF_NODISCARD ::io::deephaven::proto::backplane::grpc::MathContext* release_math_context(); - ::io::deephaven::proto::backplane::grpc::MathContext* mutable_math_context(); - void set_allocated_math_context(::io::deephaven::proto::backplane::grpc::MathContext* value); - void unsafe_arena_set_allocated_math_context(::io::deephaven::proto::backplane::grpc::MathContext* value); - ::io::deephaven::proto::backplane::grpc::MathContext* unsafe_arena_release_math_context(); - - private: - const ::io::deephaven::proto::backplane::grpc::MathContext& _internal_math_context() const; - ::io::deephaven::proto::backplane::grpc::MathContext* _internal_mutable_math_context(); - - public: - // optional bool use_redirection = 1; - bool has_use_redirection() const; - void clear_use_redirection() ; - bool use_redirection() const; - void set_use_redirection(bool value); - - private: - bool _internal_use_redirection() const; - void _internal_set_use_redirection(bool value); - - public: - // optional int32 chunk_capacity = 2; - bool has_chunk_capacity() const; - void clear_chunk_capacity() ; - ::int32_t chunk_capacity() const; - void set_chunk_capacity(::int32_t value); - - private: - ::int32_t _internal_chunk_capacity() const; - void _internal_set_chunk_capacity(::int32_t value); - - public: - // optional double max_static_sparse_memory_overhead = 3; - bool has_max_static_sparse_memory_overhead() const; - void clear_max_static_sparse_memory_overhead() ; - double max_static_sparse_memory_overhead() const; - void set_max_static_sparse_memory_overhead(double value); - - private: - double _internal_max_static_sparse_memory_overhead() const; - void _internal_set_max_static_sparse_memory_overhead(double value); - - public: - // optional double maximum_load_factor = 5; - bool has_maximum_load_factor() const; - void clear_maximum_load_factor() ; - double maximum_load_factor() const; - void set_maximum_load_factor(double value); - - private: - double _internal_maximum_load_factor() const; - void _internal_set_maximum_load_factor(double value); - - public: - // optional double target_load_factor = 6; - bool has_target_load_factor() const; - void clear_target_load_factor() ; - double target_load_factor() const; - void set_target_load_factor(double value); - - private: - double _internal_target_load_factor() const; - void _internal_set_target_load_factor(double value); - - public: - // optional int32 initial_hash_table_size = 4; - bool has_initial_hash_table_size() const; - void clear_initial_hash_table_size() ; - ::int32_t initial_hash_table_size() const; - void set_initial_hash_table_size(::int32_t value); - - private: - ::int32_t _internal_initial_hash_table_size() const; - void _internal_set_initial_hash_table_size(::int32_t value); - - public: - // @@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 - 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 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_; - bool use_redirection_; - ::int32_t chunk_capacity_; - double max_static_sparse_memory_overhead_; - double maximum_load_factor_; - double target_load_factor_; - ::int32_t initial_hash_table_size_; - PROTOBUF_TSAN_DECLARE_MEMBER - }; - 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) */ { - public: - inline UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByDelta() : UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByDelta(nullptr) {} - ~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; - } - 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 - && 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 UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByDelta& default_instance() { - return *internal_default_instance(); - } - 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); } - 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 - if (GetArena() == other->GetArena()) { -#endif // !PROTOBUF_FORCE_COPY_IN_SWAP - InternalSwap(other); - } else { - ::google::protobuf::internal::GenericSwap(this, other); - } - } - void UnsafeArenaSwap(UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByDelta* other) { - if (other == this) return; - ABSL_DCHECK(GetArena() == other->GetArena()); - InternalSwap(other); - } - - // implements Message ---------------------------------------------- - - 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); } - - private: - static void MergeImpl( - ::google::protobuf::MessageLite& to_msg, - const ::google::protobuf::MessageLite& from_msg); - - 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; - #endif // PROTOBUF_CUSTOM_VTABLE - int GetCachedSize() const { return _impl_._cached_size_.Get(); } - - private: - void SharedCtor(::google::protobuf::Arena* arena); - void SharedDtor(); - void InternalSwap(UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByDelta* other); - private: - friend class ::google::protobuf::internal::AnyMetadata; - 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); - 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, - }; - // .io.deephaven.proto.backplane.grpc.UpdateByDeltaOptions options = 1; - bool has_options() const; - void clear_options() ; - const ::io::deephaven::proto::backplane::grpc::UpdateByDeltaOptions& options() const; - PROTOBUF_NODISCARD ::io::deephaven::proto::backplane::grpc::UpdateByDeltaOptions* release_options(); - ::io::deephaven::proto::backplane::grpc::UpdateByDeltaOptions* mutable_options(); - void set_allocated_options(::io::deephaven::proto::backplane::grpc::UpdateByDeltaOptions* value); - void unsafe_arena_set_allocated_options(::io::deephaven::proto::backplane::grpc::UpdateByDeltaOptions* value); - ::io::deephaven::proto::backplane::grpc::UpdateByDeltaOptions* unsafe_arena_release_options(); - - private: - const ::io::deephaven::proto::backplane::grpc::UpdateByDeltaOptions& _internal_options() const; - ::io::deephaven::proto::backplane::grpc::UpdateByDeltaOptions* _internal_mutable_options(); - - public: - // @@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 - 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 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_; - PROTOBUF_TSAN_DECLARE_MEMBER - }; - 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) */ { - public: - inline UpdateByEmOptions() : UpdateByEmOptions(nullptr) {} - ~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; - } - inline UpdateByEmOptions& operator=(UpdateByEmOptions&& 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 UpdateByEmOptions& default_instance() { - return *internal_default_instance(); - } - 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); } - 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 - if (GetArena() == other->GetArena()) { -#endif // !PROTOBUF_FORCE_COPY_IN_SWAP - InternalSwap(other); - } else { - ::google::protobuf::internal::GenericSwap(this, other); - } - } - void UnsafeArenaSwap(UpdateByEmOptions* other) { - if (other == this) return; - ABSL_DCHECK(GetArena() == other->GetArena()); - InternalSwap(other); - } - - // implements Message ---------------------------------------------- - - 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); } - - private: - static void MergeImpl( - ::google::protobuf::MessageLite& to_msg, - const ::google::protobuf::MessageLite& from_msg); - - 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; - #endif // PROTOBUF_CUSTOM_VTABLE - int GetCachedSize() const { return _impl_._cached_size_.Get(); } - - private: - void SharedCtor(::google::protobuf::Arena* arena); - void SharedDtor(); - void InternalSwap(UpdateByEmOptions* other); - private: - friend class ::google::protobuf::internal::AnyMetadata; - 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); - 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, - kOnNanValueFieldNumber = 2, - kOnNullTimeFieldNumber = 3, - kOnNegativeDeltaTimeFieldNumber = 4, - kOnZeroDeltaTimeFieldNumber = 5, - }; - // .io.deephaven.proto.backplane.grpc.MathContext big_value_context = 6; - bool has_big_value_context() const; - void clear_big_value_context() ; - const ::io::deephaven::proto::backplane::grpc::MathContext& big_value_context() const; - PROTOBUF_NODISCARD ::io::deephaven::proto::backplane::grpc::MathContext* release_big_value_context(); - ::io::deephaven::proto::backplane::grpc::MathContext* mutable_big_value_context(); - void set_allocated_big_value_context(::io::deephaven::proto::backplane::grpc::MathContext* value); - void unsafe_arena_set_allocated_big_value_context(::io::deephaven::proto::backplane::grpc::MathContext* value); - ::io::deephaven::proto::backplane::grpc::MathContext* unsafe_arena_release_big_value_context(); - - private: - const ::io::deephaven::proto::backplane::grpc::MathContext& _internal_big_value_context() const; - ::io::deephaven::proto::backplane::grpc::MathContext* _internal_mutable_big_value_context(); - - public: - // .io.deephaven.proto.backplane.grpc.BadDataBehavior on_null_value = 1; - void clear_on_null_value() ; - ::io::deephaven::proto::backplane::grpc::BadDataBehavior on_null_value() const; - void set_on_null_value(::io::deephaven::proto::backplane::grpc::BadDataBehavior value); - - private: - ::io::deephaven::proto::backplane::grpc::BadDataBehavior _internal_on_null_value() const; - void _internal_set_on_null_value(::io::deephaven::proto::backplane::grpc::BadDataBehavior value); - - public: - // .io.deephaven.proto.backplane.grpc.BadDataBehavior on_nan_value = 2; - void clear_on_nan_value() ; - ::io::deephaven::proto::backplane::grpc::BadDataBehavior on_nan_value() const; - void set_on_nan_value(::io::deephaven::proto::backplane::grpc::BadDataBehavior value); - - private: - ::io::deephaven::proto::backplane::grpc::BadDataBehavior _internal_on_nan_value() const; - void _internal_set_on_nan_value(::io::deephaven::proto::backplane::grpc::BadDataBehavior value); - - public: - // .io.deephaven.proto.backplane.grpc.BadDataBehavior on_null_time = 3; - void clear_on_null_time() ; - ::io::deephaven::proto::backplane::grpc::BadDataBehavior on_null_time() const; - void set_on_null_time(::io::deephaven::proto::backplane::grpc::BadDataBehavior value); - - private: - ::io::deephaven::proto::backplane::grpc::BadDataBehavior _internal_on_null_time() const; - void _internal_set_on_null_time(::io::deephaven::proto::backplane::grpc::BadDataBehavior value); - - public: - // .io.deephaven.proto.backplane.grpc.BadDataBehavior on_negative_delta_time = 4; - void clear_on_negative_delta_time() ; - ::io::deephaven::proto::backplane::grpc::BadDataBehavior on_negative_delta_time() const; - void set_on_negative_delta_time(::io::deephaven::proto::backplane::grpc::BadDataBehavior value); - - private: - ::io::deephaven::proto::backplane::grpc::BadDataBehavior _internal_on_negative_delta_time() const; - void _internal_set_on_negative_delta_time(::io::deephaven::proto::backplane::grpc::BadDataBehavior value); - - public: - // .io.deephaven.proto.backplane.grpc.BadDataBehavior on_zero_delta_time = 5; - void clear_on_zero_delta_time() ; - ::io::deephaven::proto::backplane::grpc::BadDataBehavior on_zero_delta_time() const; - void set_on_zero_delta_time(::io::deephaven::proto::backplane::grpc::BadDataBehavior value); - - private: - ::io::deephaven::proto::backplane::grpc::BadDataBehavior _internal_on_zero_delta_time() const; - void _internal_set_on_zero_delta_time(::io::deephaven::proto::backplane::grpc::BadDataBehavior value); - - public: - // @@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 - 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 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_; - int on_null_value_; - int on_nan_value_; - int on_null_time_; - int on_negative_delta_time_; - int on_zero_delta_time_; - PROTOBUF_TSAN_DECLARE_MEMBER - }; - 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) */ { - public: - inline TimeTableRequest() : TimeTableRequest(nullptr) {} - ~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; - } - inline TimeTableRequest& operator=(TimeTableRequest&& 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 TimeTableRequest& default_instance() { - return *internal_default_instance(); - } - enum StartTimeCase { - kStartTimeNanos = 2, - 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); } - 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 - if (GetArena() == other->GetArena()) { -#endif // !PROTOBUF_FORCE_COPY_IN_SWAP - InternalSwap(other); - } else { - ::google::protobuf::internal::GenericSwap(this, other); - } - } - void UnsafeArenaSwap(TimeTableRequest* other) { - if (other == this) return; - ABSL_DCHECK(GetArena() == other->GetArena()); - InternalSwap(other); - } - - // implements Message ---------------------------------------------- - - 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); } - - private: - static void MergeImpl( - ::google::protobuf::MessageLite& to_msg, - const ::google::protobuf::MessageLite& from_msg); - - 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; - #endif // PROTOBUF_CUSTOM_VTABLE - int GetCachedSize() const { return _impl_._cached_size_.Get(); } - - private: - void SharedCtor(::google::protobuf::Arena* arena); - void SharedDtor(); - void InternalSwap(TimeTableRequest* other); - private: - friend class ::google::protobuf::internal::AnyMetadata; - 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); - 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, - kStartTimeNanosFieldNumber = 2, - kStartTimeStringFieldNumber = 5, - kPeriodNanosFieldNumber = 3, - kPeriodStringFieldNumber = 6, - }; - // .io.deephaven.proto.backplane.grpc.Ticket result_id = 1; - bool has_result_id() const; - void clear_result_id() ; - const ::io::deephaven::proto::backplane::grpc::Ticket& result_id() const; - PROTOBUF_NODISCARD ::io::deephaven::proto::backplane::grpc::Ticket* release_result_id(); - ::io::deephaven::proto::backplane::grpc::Ticket* mutable_result_id(); - void set_allocated_result_id(::io::deephaven::proto::backplane::grpc::Ticket* value); - void unsafe_arena_set_allocated_result_id(::io::deephaven::proto::backplane::grpc::Ticket* value); - ::io::deephaven::proto::backplane::grpc::Ticket* unsafe_arena_release_result_id(); - - private: - const ::io::deephaven::proto::backplane::grpc::Ticket& _internal_result_id() const; - ::io::deephaven::proto::backplane::grpc::Ticket* _internal_mutable_result_id(); - - public: - // bool blink_table = 4; - void clear_blink_table() ; - bool blink_table() const; - void set_blink_table(bool value); - - private: - bool _internal_blink_table() const; - void _internal_set_blink_table(bool value); - - public: - // sint64 start_time_nanos = 2 [jstype = JS_STRING]; - bool has_start_time_nanos() const; - void clear_start_time_nanos() ; - ::int64_t start_time_nanos() const; - void set_start_time_nanos(::int64_t value); - - private: - ::int64_t _internal_start_time_nanos() const; - void _internal_set_start_time_nanos(::int64_t value); - - public: - // string start_time_string = 5; - bool has_start_time_string() const; - void clear_start_time_string() ; - const std::string& start_time_string() const; - template - void set_start_time_string(Arg_&& arg, Args_... args); - std::string* mutable_start_time_string(); - PROTOBUF_NODISCARD std::string* release_start_time_string(); - void set_allocated_start_time_string(std::string* value); - - private: - const std::string& _internal_start_time_string() const; - inline PROTOBUF_ALWAYS_INLINE void _internal_set_start_time_string( - const std::string& value); - std::string* _internal_mutable_start_time_string(); - - public: - // sint64 period_nanos = 3 [jstype = JS_STRING]; - bool has_period_nanos() const; - void clear_period_nanos() ; - ::int64_t period_nanos() const; - void set_period_nanos(::int64_t value); - - private: - ::int64_t _internal_period_nanos() const; - void _internal_set_period_nanos(::int64_t value); - - public: - // string period_string = 6; - bool has_period_string() const; - void clear_period_string() ; - const std::string& period_string() const; - template - void set_period_string(Arg_&& arg, Args_... args); - std::string* mutable_period_string(); - PROTOBUF_NODISCARD std::string* release_period_string(); - void set_allocated_period_string(std::string* value); - - private: - const std::string& _internal_period_string() const; - inline PROTOBUF_ALWAYS_INLINE void _internal_set_period_string( - const std::string& value); - std::string* _internal_mutable_period_string(); - - public: - void clear_start_time(); - StartTimeCase start_time_case() const; - void clear_period(); - PeriodCase period_case() const; - // @@protoc_insertion_point(class_scope:io.deephaven.proto.backplane.grpc.TimeTableRequest) - private: - class _Internal; - void set_has_start_time_nanos(); - 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 - 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 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_; - ::int64_t start_time_nanos_; - ::google::protobuf::internal::ArenaStringPtr start_time_string_; - } start_time_; - union PeriodUnion { - constexpr PeriodUnion() : _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) */ { - public: - inline TableReference() : TableReference(nullptr) {} - ~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; - } - inline TableReference& operator=(TableReference&& 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 TableReference& default_instance() { - return *internal_default_instance(); - } - enum RefCase { - kTicket = 1, - 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); } - 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 - if (GetArena() == other->GetArena()) { -#endif // !PROTOBUF_FORCE_COPY_IN_SWAP - InternalSwap(other); - } else { - ::google::protobuf::internal::GenericSwap(this, other); - } - } - void UnsafeArenaSwap(TableReference* other) { - if (other == this) return; - ABSL_DCHECK(GetArena() == other->GetArena()); - InternalSwap(other); - } - - // implements Message ---------------------------------------------- - - 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); } - - private: - static void MergeImpl( - ::google::protobuf::MessageLite& to_msg, - const ::google::protobuf::MessageLite& from_msg); - - 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; - #endif // PROTOBUF_CUSTOM_VTABLE - int GetCachedSize() const { return _impl_._cached_size_.Get(); } - - private: - void SharedCtor(::google::protobuf::Arena* arena); - void SharedDtor(); - void InternalSwap(TableReference* other); - private: - friend class ::google::protobuf::internal::AnyMetadata; - 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); - 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, - }; - // .io.deephaven.proto.backplane.grpc.Ticket ticket = 1; - bool has_ticket() const; - private: - bool _internal_has_ticket() const; - - public: - void clear_ticket() ; - const ::io::deephaven::proto::backplane::grpc::Ticket& ticket() const; - PROTOBUF_NODISCARD ::io::deephaven::proto::backplane::grpc::Ticket* release_ticket(); - ::io::deephaven::proto::backplane::grpc::Ticket* mutable_ticket(); - void set_allocated_ticket(::io::deephaven::proto::backplane::grpc::Ticket* value); - void unsafe_arena_set_allocated_ticket(::io::deephaven::proto::backplane::grpc::Ticket* value); - ::io::deephaven::proto::backplane::grpc::Ticket* unsafe_arena_release_ticket(); - - private: - const ::io::deephaven::proto::backplane::grpc::Ticket& _internal_ticket() const; - ::io::deephaven::proto::backplane::grpc::Ticket* _internal_mutable_ticket(); - - public: - // sint32 batch_offset = 2; - bool has_batch_offset() const; - void clear_batch_offset() ; - ::int32_t batch_offset() const; - void set_batch_offset(::int32_t value); - - private: - ::int32_t _internal_batch_offset() const; - void _internal_set_batch_offset(::int32_t value); - - public: - void clear_ref(); - RefCase ref_case() const; - // @@protoc_insertion_point(class_scope:io.deephaven.proto.backplane.grpc.TableReference) - private: - 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 - 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 TableReference& from_msg); - union RefUnion { - constexpr RefUnion() : _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) */ { - public: - inline SeekRowRequest() : SeekRowRequest(nullptr) {} - ~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; - } - inline SeekRowRequest& operator=(SeekRowRequest&& 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 SeekRowRequest& default_instance() { - return *internal_default_instance(); - } - 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); } - 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 - if (GetArena() == other->GetArena()) { -#endif // !PROTOBUF_FORCE_COPY_IN_SWAP - InternalSwap(other); - } else { - ::google::protobuf::internal::GenericSwap(this, other); - } - } - void UnsafeArenaSwap(SeekRowRequest* other) { - if (other == this) return; - ABSL_DCHECK(GetArena() == other->GetArena()); - InternalSwap(other); - } - - // implements Message ---------------------------------------------- - - 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); } - - private: - static void MergeImpl( - ::google::protobuf::MessageLite& to_msg, - const ::google::protobuf::MessageLite& from_msg); - - 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; - #endif // PROTOBUF_CUSTOM_VTABLE - int GetCachedSize() const { return _impl_._cached_size_.Get(); } - - private: - void SharedCtor(::google::protobuf::Arena* arena); - void SharedDtor(); - void InternalSwap(SeekRowRequest* other); - private: - friend class ::google::protobuf::internal::AnyMetadata; - 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); - 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, - kSeekValueFieldNumber = 4, - kStartingRowFieldNumber = 2, - kInsensitiveFieldNumber = 5, - kContainsFieldNumber = 6, - kIsBackwardFieldNumber = 7, - }; - // string column_name = 3; - void clear_column_name() ; - const std::string& column_name() const; - template - void set_column_name(Arg_&& arg, Args_... args); - std::string* mutable_column_name(); - PROTOBUF_NODISCARD std::string* release_column_name(); - void set_allocated_column_name(std::string* value); - - private: - const std::string& _internal_column_name() const; - inline PROTOBUF_ALWAYS_INLINE void _internal_set_column_name( - const std::string& value); - std::string* _internal_mutable_column_name(); - - public: - // .io.deephaven.proto.backplane.grpc.Ticket source_id = 1; - bool has_source_id() const; - void clear_source_id() ; - const ::io::deephaven::proto::backplane::grpc::Ticket& source_id() const; - PROTOBUF_NODISCARD ::io::deephaven::proto::backplane::grpc::Ticket* release_source_id(); - ::io::deephaven::proto::backplane::grpc::Ticket* mutable_source_id(); - void set_allocated_source_id(::io::deephaven::proto::backplane::grpc::Ticket* value); - void unsafe_arena_set_allocated_source_id(::io::deephaven::proto::backplane::grpc::Ticket* value); - ::io::deephaven::proto::backplane::grpc::Ticket* unsafe_arena_release_source_id(); - - private: - const ::io::deephaven::proto::backplane::grpc::Ticket& _internal_source_id() const; - ::io::deephaven::proto::backplane::grpc::Ticket* _internal_mutable_source_id(); - - public: - // .io.deephaven.proto.backplane.grpc.Literal seek_value = 4; - bool has_seek_value() const; - void clear_seek_value() ; - const ::io::deephaven::proto::backplane::grpc::Literal& seek_value() const; - PROTOBUF_NODISCARD ::io::deephaven::proto::backplane::grpc::Literal* release_seek_value(); - ::io::deephaven::proto::backplane::grpc::Literal* mutable_seek_value(); - void set_allocated_seek_value(::io::deephaven::proto::backplane::grpc::Literal* value); - void unsafe_arena_set_allocated_seek_value(::io::deephaven::proto::backplane::grpc::Literal* value); - ::io::deephaven::proto::backplane::grpc::Literal* unsafe_arena_release_seek_value(); - - private: - const ::io::deephaven::proto::backplane::grpc::Literal& _internal_seek_value() const; - ::io::deephaven::proto::backplane::grpc::Literal* _internal_mutable_seek_value(); - - public: - // sint64 starting_row = 2 [jstype = JS_STRING]; - void clear_starting_row() ; - ::int64_t starting_row() const; - void set_starting_row(::int64_t value); - - private: - ::int64_t _internal_starting_row() const; - void _internal_set_starting_row(::int64_t value); - - public: - // bool insensitive = 5; - void clear_insensitive() ; - bool insensitive() const; - void set_insensitive(bool value); - - private: - bool _internal_insensitive() const; - void _internal_set_insensitive(bool value); - - public: - // bool contains = 6; - void clear_contains() ; - bool contains() const; - void set_contains(bool value); - - private: - bool _internal_contains() const; - void _internal_set_contains(bool value); - - public: - // bool is_backward = 7; - void clear_is_backward() ; - bool is_backward() const; - void set_is_backward(bool value); - - private: - bool _internal_is_backward() const; - void _internal_set_is_backward(bool value); - - public: - // @@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 - 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 SeekRowRequest& from_msg); - ::google::protobuf::internal::HasBits<1> _has_bits_; - mutable ::google::protobuf::internal::CachedSize _cached_size_; - ::google::protobuf::internal::ArenaStringPtr column_name_; - ::io::deephaven::proto::backplane::grpc::Ticket* source_id_; - ::io::deephaven::proto::backplane::grpc::Literal* seek_value_; - ::int64_t starting_row_; - bool insensitive_; - bool contains_; - bool is_backward_; - PROTOBUF_TSAN_DECLARE_MEMBER - }; - 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) */ { - public: - inline SearchCondition() : SearchCondition(nullptr) {} - ~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; - } - inline SearchCondition& operator=(SearchCondition&& 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 SearchCondition& default_instance() { - return *internal_default_instance(); - } - 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); } - 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 - if (GetArena() == other->GetArena()) { -#endif // !PROTOBUF_FORCE_COPY_IN_SWAP - InternalSwap(other); - } else { - ::google::protobuf::internal::GenericSwap(this, other); - } - } - void UnsafeArenaSwap(SearchCondition* other) { - if (other == this) return; - ABSL_DCHECK(GetArena() == other->GetArena()); - InternalSwap(other); - } - - // implements Message ---------------------------------------------- - - 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); } - - private: - static void MergeImpl( - ::google::protobuf::MessageLite& to_msg, - const ::google::protobuf::MessageLite& from_msg); - - 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; - #endif // PROTOBUF_CUSTOM_VTABLE - int GetCachedSize() const { return _impl_._cached_size_.Get(); } - - private: - void SharedCtor(::google::protobuf::Arena* arena); - void SharedDtor(); - void InternalSwap(SearchCondition* other); - private: - friend class ::google::protobuf::internal::AnyMetadata; - 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); - 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, - }; - // repeated .io.deephaven.proto.backplane.grpc.Reference optional_references = 2; - int optional_references_size() const; - private: - int _internal_optional_references_size() const; - - 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(); - - 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; - // string search_string = 1; - void clear_search_string() ; - const std::string& search_string() const; - template - void set_search_string(Arg_&& arg, Args_... args); - std::string* mutable_search_string(); - PROTOBUF_NODISCARD std::string* release_search_string(); - void set_allocated_search_string(std::string* value); - - private: - const std::string& _internal_search_string() const; - inline PROTOBUF_ALWAYS_INLINE void _internal_set_search_string( - const std::string& value); - std::string* _internal_mutable_search_string(); - - public: - // @@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 - 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 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_; - PROTOBUF_TSAN_DECLARE_MEMBER - }; - 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) */ { - public: - inline MatchesCondition() : MatchesCondition(nullptr) {} - ~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; - } - inline MatchesCondition& operator=(MatchesCondition&& 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 MatchesCondition& default_instance() { - return *internal_default_instance(); - } - 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); } - 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 - if (GetArena() == other->GetArena()) { -#endif // !PROTOBUF_FORCE_COPY_IN_SWAP - InternalSwap(other); - } else { - ::google::protobuf::internal::GenericSwap(this, other); - } - } - void UnsafeArenaSwap(MatchesCondition* other) { - if (other == this) return; - ABSL_DCHECK(GetArena() == other->GetArena()); - InternalSwap(other); - } - - // implements Message ---------------------------------------------- - - 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); } - - private: - static void MergeImpl( - ::google::protobuf::MessageLite& to_msg, - const ::google::protobuf::MessageLite& from_msg); - - 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; - #endif // PROTOBUF_CUSTOM_VTABLE - int GetCachedSize() const { return _impl_._cached_size_.Get(); } - - private: - void SharedCtor(::google::protobuf::Arena* arena); - void SharedDtor(); - void InternalSwap(MatchesCondition* other); - private: - friend class ::google::protobuf::internal::AnyMetadata; - 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); - 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, - kCaseSensitivityFieldNumber = 3, - kMatchTypeFieldNumber = 4, - }; - // string regex = 2; - void clear_regex() ; - const std::string& regex() const; - template - void set_regex(Arg_&& arg, Args_... args); - std::string* mutable_regex(); - PROTOBUF_NODISCARD std::string* release_regex(); - void set_allocated_regex(std::string* value); - - private: - const std::string& _internal_regex() const; - inline PROTOBUF_ALWAYS_INLINE void _internal_set_regex( - const std::string& value); - std::string* _internal_mutable_regex(); - - public: - // .io.deephaven.proto.backplane.grpc.Reference reference = 1; - bool has_reference() const; - void clear_reference() ; - const ::io::deephaven::proto::backplane::grpc::Reference& reference() const; - PROTOBUF_NODISCARD ::io::deephaven::proto::backplane::grpc::Reference* release_reference(); - ::io::deephaven::proto::backplane::grpc::Reference* mutable_reference(); - void set_allocated_reference(::io::deephaven::proto::backplane::grpc::Reference* value); - void unsafe_arena_set_allocated_reference(::io::deephaven::proto::backplane::grpc::Reference* value); - ::io::deephaven::proto::backplane::grpc::Reference* unsafe_arena_release_reference(); - - private: - const ::io::deephaven::proto::backplane::grpc::Reference& _internal_reference() const; - ::io::deephaven::proto::backplane::grpc::Reference* _internal_mutable_reference(); - - public: - // .io.deephaven.proto.backplane.grpc.CaseSensitivity case_sensitivity = 3; - void clear_case_sensitivity() ; - ::io::deephaven::proto::backplane::grpc::CaseSensitivity case_sensitivity() const; - void set_case_sensitivity(::io::deephaven::proto::backplane::grpc::CaseSensitivity value); - - private: - ::io::deephaven::proto::backplane::grpc::CaseSensitivity _internal_case_sensitivity() const; - void _internal_set_case_sensitivity(::io::deephaven::proto::backplane::grpc::CaseSensitivity value); - - public: - // .io.deephaven.proto.backplane.grpc.MatchType match_type = 4; - void clear_match_type() ; - ::io::deephaven::proto::backplane::grpc::MatchType match_type() const; - void set_match_type(::io::deephaven::proto::backplane::grpc::MatchType value); - - private: - ::io::deephaven::proto::backplane::grpc::MatchType _internal_match_type() const; - void _internal_set_match_type(::io::deephaven::proto::backplane::grpc::MatchType value); - - public: - // @@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 - 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 MatchesCondition& from_msg); - ::google::protobuf::internal::HasBits<1> _has_bits_; - mutable ::google::protobuf::internal::CachedSize _cached_size_; - ::google::protobuf::internal::ArenaStringPtr regex_; - ::io::deephaven::proto::backplane::grpc::Reference* reference_; - int case_sensitivity_; - int match_type_; - PROTOBUF_TSAN_DECLARE_MEMBER - }; - 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) */ { - public: - inline IsNullCondition() : IsNullCondition(nullptr) {} - ~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; - } - inline IsNullCondition& operator=(IsNullCondition&& 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 IsNullCondition& default_instance() { - return *internal_default_instance(); - } - 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); } - 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 - if (GetArena() == other->GetArena()) { -#endif // !PROTOBUF_FORCE_COPY_IN_SWAP - InternalSwap(other); - } else { - ::google::protobuf::internal::GenericSwap(this, other); - } - } - void UnsafeArenaSwap(IsNullCondition* other) { - if (other == this) return; - ABSL_DCHECK(GetArena() == other->GetArena()); - InternalSwap(other); - } - - // implements Message ---------------------------------------------- - - 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); } - - private: - static void MergeImpl( - ::google::protobuf::MessageLite& to_msg, - const ::google::protobuf::MessageLite& from_msg); - - 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; - #endif // PROTOBUF_CUSTOM_VTABLE - int GetCachedSize() const { return _impl_._cached_size_.Get(); } - - private: - void SharedCtor(::google::protobuf::Arena* arena); - void SharedDtor(); - void InternalSwap(IsNullCondition* other); - private: - friend class ::google::protobuf::internal::AnyMetadata; - 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); - 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, - }; - // .io.deephaven.proto.backplane.grpc.Reference reference = 1; - bool has_reference() const; - void clear_reference() ; - const ::io::deephaven::proto::backplane::grpc::Reference& reference() const; - PROTOBUF_NODISCARD ::io::deephaven::proto::backplane::grpc::Reference* release_reference(); - ::io::deephaven::proto::backplane::grpc::Reference* mutable_reference(); - void set_allocated_reference(::io::deephaven::proto::backplane::grpc::Reference* value); - void unsafe_arena_set_allocated_reference(::io::deephaven::proto::backplane::grpc::Reference* value); - ::io::deephaven::proto::backplane::grpc::Reference* unsafe_arena_release_reference(); - - private: - const ::io::deephaven::proto::backplane::grpc::Reference& _internal_reference() const; - ::io::deephaven::proto::backplane::grpc::Reference* _internal_mutable_reference(); - - public: - // @@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 - 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 IsNullCondition& from_msg); - ::google::protobuf::internal::HasBits<1> _has_bits_; - mutable ::google::protobuf::internal::CachedSize _cached_size_; - ::io::deephaven::proto::backplane::grpc::Reference* reference_; - PROTOBUF_TSAN_DECLARE_MEMBER - }; - 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) */ { - public: - inline ExportedTableUpdateMessage() : ExportedTableUpdateMessage(nullptr) {} - ~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; - } - inline ExportedTableUpdateMessage& operator=(ExportedTableUpdateMessage&& 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 ExportedTableUpdateMessage& default_instance() { - return *internal_default_instance(); - } - 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); } - 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 - if (GetArena() == other->GetArena()) { -#endif // !PROTOBUF_FORCE_COPY_IN_SWAP - InternalSwap(other); - } else { - ::google::protobuf::internal::GenericSwap(this, other); - } - } - void UnsafeArenaSwap(ExportedTableUpdateMessage* other) { - if (other == this) return; - ABSL_DCHECK(GetArena() == other->GetArena()); - InternalSwap(other); - } - - // implements Message ---------------------------------------------- - - 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); } - - private: - static void MergeImpl( - ::google::protobuf::MessageLite& to_msg, - const ::google::protobuf::MessageLite& from_msg); - - 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; - #endif // PROTOBUF_CUSTOM_VTABLE - int GetCachedSize() const { return _impl_._cached_size_.Get(); } - - private: - void SharedCtor(::google::protobuf::Arena* arena); - void SharedDtor(); - void InternalSwap(ExportedTableUpdateMessage* other); - private: - friend class ::google::protobuf::internal::AnyMetadata; - 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); - 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, - kSizeFieldNumber = 2, - }; - // string update_failure_message = 3; - void clear_update_failure_message() ; - const std::string& update_failure_message() const; - template - void set_update_failure_message(Arg_&& arg, Args_... args); - std::string* mutable_update_failure_message(); - PROTOBUF_NODISCARD std::string* release_update_failure_message(); - void set_allocated_update_failure_message(std::string* value); - - private: - const std::string& _internal_update_failure_message() const; - inline PROTOBUF_ALWAYS_INLINE void _internal_set_update_failure_message( - const std::string& value); - std::string* _internal_mutable_update_failure_message(); - - public: - // .io.deephaven.proto.backplane.grpc.Ticket export_id = 1; - bool has_export_id() const; - void clear_export_id() ; - const ::io::deephaven::proto::backplane::grpc::Ticket& export_id() const; - PROTOBUF_NODISCARD ::io::deephaven::proto::backplane::grpc::Ticket* release_export_id(); - ::io::deephaven::proto::backplane::grpc::Ticket* mutable_export_id(); - void set_allocated_export_id(::io::deephaven::proto::backplane::grpc::Ticket* value); - void unsafe_arena_set_allocated_export_id(::io::deephaven::proto::backplane::grpc::Ticket* value); - ::io::deephaven::proto::backplane::grpc::Ticket* unsafe_arena_release_export_id(); - - private: - const ::io::deephaven::proto::backplane::grpc::Ticket& _internal_export_id() const; - ::io::deephaven::proto::backplane::grpc::Ticket* _internal_mutable_export_id(); - - public: - // sint64 size = 2 [jstype = JS_STRING]; - void clear_size() ; - ::int64_t size() const; - void set_size(::int64_t value); - - private: - ::int64_t _internal_size() const; - void _internal_set_size(::int64_t value); - - public: - // @@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 - 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 ExportedTableUpdateMessage& from_msg); - ::google::protobuf::internal::HasBits<1> _has_bits_; - mutable ::google::protobuf::internal::CachedSize _cached_size_; - ::google::protobuf::internal::ArenaStringPtr update_failure_message_; - ::io::deephaven::proto::backplane::grpc::Ticket* export_id_; - ::int64_t size_; - PROTOBUF_TSAN_DECLARE_MEMBER - }; - 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) */ { - public: - inline EmptyTableRequest() : EmptyTableRequest(nullptr) {} - ~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; - } - inline EmptyTableRequest& operator=(EmptyTableRequest&& 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 EmptyTableRequest& default_instance() { - return *internal_default_instance(); - } - 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); } - 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 - if (GetArena() == other->GetArena()) { -#endif // !PROTOBUF_FORCE_COPY_IN_SWAP - InternalSwap(other); - } else { - ::google::protobuf::internal::GenericSwap(this, other); - } - } - void UnsafeArenaSwap(EmptyTableRequest* other) { - if (other == this) return; - ABSL_DCHECK(GetArena() == other->GetArena()); - InternalSwap(other); - } - - // implements Message ---------------------------------------------- - - 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); } - - private: - static void MergeImpl( - ::google::protobuf::MessageLite& to_msg, - const ::google::protobuf::MessageLite& from_msg); - - 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; - #endif // PROTOBUF_CUSTOM_VTABLE - int GetCachedSize() const { return _impl_._cached_size_.Get(); } - - private: - void SharedCtor(::google::protobuf::Arena* arena); - void SharedDtor(); - void InternalSwap(EmptyTableRequest* other); - private: - friend class ::google::protobuf::internal::AnyMetadata; - 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); - 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, - }; - // .io.deephaven.proto.backplane.grpc.Ticket result_id = 1; - bool has_result_id() const; - void clear_result_id() ; - const ::io::deephaven::proto::backplane::grpc::Ticket& result_id() const; - PROTOBUF_NODISCARD ::io::deephaven::proto::backplane::grpc::Ticket* release_result_id(); - ::io::deephaven::proto::backplane::grpc::Ticket* mutable_result_id(); - void set_allocated_result_id(::io::deephaven::proto::backplane::grpc::Ticket* value); - void unsafe_arena_set_allocated_result_id(::io::deephaven::proto::backplane::grpc::Ticket* value); - ::io::deephaven::proto::backplane::grpc::Ticket* unsafe_arena_release_result_id(); - - private: - const ::io::deephaven::proto::backplane::grpc::Ticket& _internal_result_id() const; - ::io::deephaven::proto::backplane::grpc::Ticket* _internal_mutable_result_id(); - - public: - // sint64 size = 2 [jstype = JS_STRING]; - void clear_size() ; - ::int64_t size() const; - void set_size(::int64_t value); - - private: - ::int64_t _internal_size() const; - void _internal_set_size(::int64_t value); - - public: - // @@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 - 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 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_; - ::int64_t size_; - PROTOBUF_TSAN_DECLARE_MEMBER - }; - 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) */ { - public: - inline CreateInputTableRequest_InputTableKind() : CreateInputTableRequest_InputTableKind(nullptr) {} - ~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; - } - inline CreateInputTableRequest_InputTableKind& operator=(CreateInputTableRequest_InputTableKind&& 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 CreateInputTableRequest_InputTableKind& default_instance() { - return *internal_default_instance(); - } - enum KindCase { - kInMemoryAppendOnly = 1, - kInMemoryKeyBacked = 2, - 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); } - 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 - if (GetArena() == other->GetArena()) { -#endif // !PROTOBUF_FORCE_COPY_IN_SWAP - InternalSwap(other); - } else { - ::google::protobuf::internal::GenericSwap(this, other); - } - } - void UnsafeArenaSwap(CreateInputTableRequest_InputTableKind* other) { - if (other == this) return; - ABSL_DCHECK(GetArena() == other->GetArena()); - InternalSwap(other); - } - - // implements Message ---------------------------------------------- - - 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); } - - private: - static void MergeImpl( - ::google::protobuf::MessageLite& to_msg, - const ::google::protobuf::MessageLite& from_msg); - - 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; - #endif // PROTOBUF_CUSTOM_VTABLE - int GetCachedSize() const { return _impl_._cached_size_.Get(); } - - private: - void SharedCtor(::google::protobuf::Arena* arena); - void SharedDtor(); - void InternalSwap(CreateInputTableRequest_InputTableKind* other); - private: - friend class ::google::protobuf::internal::AnyMetadata; - 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); - 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, - kBlinkFieldNumber = 3, - }; - // .io.deephaven.proto.backplane.grpc.CreateInputTableRequest.InputTableKind.InMemoryAppendOnly in_memory_append_only = 1; - bool has_in_memory_append_only() const; - private: - bool _internal_has_in_memory_append_only() const; - - public: - void clear_in_memory_append_only() ; - const ::io::deephaven::proto::backplane::grpc::CreateInputTableRequest_InputTableKind_InMemoryAppendOnly& in_memory_append_only() const; - PROTOBUF_NODISCARD ::io::deephaven::proto::backplane::grpc::CreateInputTableRequest_InputTableKind_InMemoryAppendOnly* release_in_memory_append_only(); - ::io::deephaven::proto::backplane::grpc::CreateInputTableRequest_InputTableKind_InMemoryAppendOnly* mutable_in_memory_append_only(); - void set_allocated_in_memory_append_only(::io::deephaven::proto::backplane::grpc::CreateInputTableRequest_InputTableKind_InMemoryAppendOnly* value); - void unsafe_arena_set_allocated_in_memory_append_only(::io::deephaven::proto::backplane::grpc::CreateInputTableRequest_InputTableKind_InMemoryAppendOnly* value); - ::io::deephaven::proto::backplane::grpc::CreateInputTableRequest_InputTableKind_InMemoryAppendOnly* unsafe_arena_release_in_memory_append_only(); - - private: - const ::io::deephaven::proto::backplane::grpc::CreateInputTableRequest_InputTableKind_InMemoryAppendOnly& _internal_in_memory_append_only() const; - ::io::deephaven::proto::backplane::grpc::CreateInputTableRequest_InputTableKind_InMemoryAppendOnly* _internal_mutable_in_memory_append_only(); - - public: - // .io.deephaven.proto.backplane.grpc.CreateInputTableRequest.InputTableKind.InMemoryKeyBacked in_memory_key_backed = 2; - bool has_in_memory_key_backed() const; - private: - bool _internal_has_in_memory_key_backed() const; - - public: - void clear_in_memory_key_backed() ; - const ::io::deephaven::proto::backplane::grpc::CreateInputTableRequest_InputTableKind_InMemoryKeyBacked& in_memory_key_backed() const; - PROTOBUF_NODISCARD ::io::deephaven::proto::backplane::grpc::CreateInputTableRequest_InputTableKind_InMemoryKeyBacked* release_in_memory_key_backed(); - ::io::deephaven::proto::backplane::grpc::CreateInputTableRequest_InputTableKind_InMemoryKeyBacked* mutable_in_memory_key_backed(); - void set_allocated_in_memory_key_backed(::io::deephaven::proto::backplane::grpc::CreateInputTableRequest_InputTableKind_InMemoryKeyBacked* value); - void unsafe_arena_set_allocated_in_memory_key_backed(::io::deephaven::proto::backplane::grpc::CreateInputTableRequest_InputTableKind_InMemoryKeyBacked* value); - ::io::deephaven::proto::backplane::grpc::CreateInputTableRequest_InputTableKind_InMemoryKeyBacked* unsafe_arena_release_in_memory_key_backed(); - - private: - const ::io::deephaven::proto::backplane::grpc::CreateInputTableRequest_InputTableKind_InMemoryKeyBacked& _internal_in_memory_key_backed() const; - ::io::deephaven::proto::backplane::grpc::CreateInputTableRequest_InputTableKind_InMemoryKeyBacked* _internal_mutable_in_memory_key_backed(); - - public: - // .io.deephaven.proto.backplane.grpc.CreateInputTableRequest.InputTableKind.Blink blink = 3; - bool has_blink() const; - private: - bool _internal_has_blink() const; - - public: - void clear_blink() ; - const ::io::deephaven::proto::backplane::grpc::CreateInputTableRequest_InputTableKind_Blink& blink() const; - PROTOBUF_NODISCARD ::io::deephaven::proto::backplane::grpc::CreateInputTableRequest_InputTableKind_Blink* release_blink(); - ::io::deephaven::proto::backplane::grpc::CreateInputTableRequest_InputTableKind_Blink* mutable_blink(); - void set_allocated_blink(::io::deephaven::proto::backplane::grpc::CreateInputTableRequest_InputTableKind_Blink* value); - void unsafe_arena_set_allocated_blink(::io::deephaven::proto::backplane::grpc::CreateInputTableRequest_InputTableKind_Blink* value); - ::io::deephaven::proto::backplane::grpc::CreateInputTableRequest_InputTableKind_Blink* unsafe_arena_release_blink(); - - private: - const ::io::deephaven::proto::backplane::grpc::CreateInputTableRequest_InputTableKind_Blink& _internal_blink() const; - ::io::deephaven::proto::backplane::grpc::CreateInputTableRequest_InputTableKind_Blink* _internal_mutable_blink(); - - public: - void clear_kind(); - KindCase kind_case() const; - // @@protoc_insertion_point(class_scope:io.deephaven.proto.backplane.grpc.CreateInputTableRequest.InputTableKind) - private: - class _Internal; - 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 - 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 CreateInputTableRequest_InputTableKind& from_msg); - union KindUnion { - constexpr KindUnion() : _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) */ { - public: - inline ContainsCondition() : ContainsCondition(nullptr) {} - ~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; - } - inline ContainsCondition& operator=(ContainsCondition&& 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 ContainsCondition& default_instance() { - return *internal_default_instance(); - } - 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); } - 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 - if (GetArena() == other->GetArena()) { -#endif // !PROTOBUF_FORCE_COPY_IN_SWAP - InternalSwap(other); - } else { - ::google::protobuf::internal::GenericSwap(this, other); - } - } - void UnsafeArenaSwap(ContainsCondition* other) { - if (other == this) return; - ABSL_DCHECK(GetArena() == other->GetArena()); - InternalSwap(other); - } - - // implements Message ---------------------------------------------- - - 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); } - - private: - static void MergeImpl( - ::google::protobuf::MessageLite& to_msg, - const ::google::protobuf::MessageLite& from_msg); - - 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; - #endif // PROTOBUF_CUSTOM_VTABLE - int GetCachedSize() const { return _impl_._cached_size_.Get(); } - - private: - void SharedCtor(::google::protobuf::Arena* arena); - void SharedDtor(); - void InternalSwap(ContainsCondition* other); - private: - friend class ::google::protobuf::internal::AnyMetadata; - 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); - 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, - kCaseSensitivityFieldNumber = 3, - kMatchTypeFieldNumber = 4, - }; - // string search_string = 2; - void clear_search_string() ; - const std::string& search_string() const; - template - void set_search_string(Arg_&& arg, Args_... args); - std::string* mutable_search_string(); - PROTOBUF_NODISCARD std::string* release_search_string(); - void set_allocated_search_string(std::string* value); - - private: - const std::string& _internal_search_string() const; - inline PROTOBUF_ALWAYS_INLINE void _internal_set_search_string( - const std::string& value); - std::string* _internal_mutable_search_string(); - - public: - // .io.deephaven.proto.backplane.grpc.Reference reference = 1; - bool has_reference() const; - void clear_reference() ; - const ::io::deephaven::proto::backplane::grpc::Reference& reference() const; - PROTOBUF_NODISCARD ::io::deephaven::proto::backplane::grpc::Reference* release_reference(); - ::io::deephaven::proto::backplane::grpc::Reference* mutable_reference(); - void set_allocated_reference(::io::deephaven::proto::backplane::grpc::Reference* value); - void unsafe_arena_set_allocated_reference(::io::deephaven::proto::backplane::grpc::Reference* value); - ::io::deephaven::proto::backplane::grpc::Reference* unsafe_arena_release_reference(); - - private: - const ::io::deephaven::proto::backplane::grpc::Reference& _internal_reference() const; - ::io::deephaven::proto::backplane::grpc::Reference* _internal_mutable_reference(); - - public: - // .io.deephaven.proto.backplane.grpc.CaseSensitivity case_sensitivity = 3; - void clear_case_sensitivity() ; - ::io::deephaven::proto::backplane::grpc::CaseSensitivity case_sensitivity() const; - void set_case_sensitivity(::io::deephaven::proto::backplane::grpc::CaseSensitivity value); - - private: - ::io::deephaven::proto::backplane::grpc::CaseSensitivity _internal_case_sensitivity() const; - void _internal_set_case_sensitivity(::io::deephaven::proto::backplane::grpc::CaseSensitivity value); - - public: - // .io.deephaven.proto.backplane.grpc.MatchType match_type = 4; - void clear_match_type() ; - ::io::deephaven::proto::backplane::grpc::MatchType match_type() const; - void set_match_type(::io::deephaven::proto::backplane::grpc::MatchType value); - - private: - ::io::deephaven::proto::backplane::grpc::MatchType _internal_match_type() const; - void _internal_set_match_type(::io::deephaven::proto::backplane::grpc::MatchType value); - - public: - // @@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 - 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 ContainsCondition& from_msg); - ::google::protobuf::internal::HasBits<1> _has_bits_; - mutable ::google::protobuf::internal::CachedSize _cached_size_; - ::google::protobuf::internal::ArenaStringPtr search_string_; - ::io::deephaven::proto::backplane::grpc::Reference* reference_; - int case_sensitivity_; - int match_type_; - PROTOBUF_TSAN_DECLARE_MEMBER - }; - 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) */ { - public: - inline AggSpec_AggSpecUnique() : AggSpec_AggSpecUnique(nullptr) {} - ~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; - } - inline AggSpec_AggSpecUnique& operator=(AggSpec_AggSpecUnique&& 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 AggSpec_AggSpecUnique& default_instance() { - return *internal_default_instance(); - } - 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); } - 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 - if (GetArena() == other->GetArena()) { -#endif // !PROTOBUF_FORCE_COPY_IN_SWAP - InternalSwap(other); - } else { - ::google::protobuf::internal::GenericSwap(this, other); - } - } - void UnsafeArenaSwap(AggSpec_AggSpecUnique* other) { - if (other == this) return; - ABSL_DCHECK(GetArena() == other->GetArena()); - InternalSwap(other); - } - - // implements Message ---------------------------------------------- - - 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); } - - private: - static void MergeImpl( - ::google::protobuf::MessageLite& to_msg, - const ::google::protobuf::MessageLite& from_msg); - - 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; - #endif // PROTOBUF_CUSTOM_VTABLE - int GetCachedSize() const { return _impl_._cached_size_.Get(); } - - private: - void SharedCtor(::google::protobuf::Arena* arena); - void SharedDtor(); - void InternalSwap(AggSpec_AggSpecUnique* other); - private: - friend class ::google::protobuf::internal::AnyMetadata; - 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); - 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, - }; - // .io.deephaven.proto.backplane.grpc.AggSpec.AggSpecNonUniqueSentinel non_unique_sentinel = 2; - bool has_non_unique_sentinel() const; - void clear_non_unique_sentinel() ; - const ::io::deephaven::proto::backplane::grpc::AggSpec_AggSpecNonUniqueSentinel& non_unique_sentinel() const; - PROTOBUF_NODISCARD ::io::deephaven::proto::backplane::grpc::AggSpec_AggSpecNonUniqueSentinel* release_non_unique_sentinel(); - ::io::deephaven::proto::backplane::grpc::AggSpec_AggSpecNonUniqueSentinel* mutable_non_unique_sentinel(); - void set_allocated_non_unique_sentinel(::io::deephaven::proto::backplane::grpc::AggSpec_AggSpecNonUniqueSentinel* value); - void unsafe_arena_set_allocated_non_unique_sentinel(::io::deephaven::proto::backplane::grpc::AggSpec_AggSpecNonUniqueSentinel* value); - ::io::deephaven::proto::backplane::grpc::AggSpec_AggSpecNonUniqueSentinel* unsafe_arena_release_non_unique_sentinel(); - - private: - const ::io::deephaven::proto::backplane::grpc::AggSpec_AggSpecNonUniqueSentinel& _internal_non_unique_sentinel() const; - ::io::deephaven::proto::backplane::grpc::AggSpec_AggSpecNonUniqueSentinel* _internal_mutable_non_unique_sentinel(); - - public: - // bool include_nulls = 1; - void clear_include_nulls() ; - bool include_nulls() const; - void set_include_nulls(bool value); - - private: - bool _internal_include_nulls() const; - void _internal_set_include_nulls(bool value); - - public: - // @@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 - 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 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_; - bool include_nulls_; - PROTOBUF_TSAN_DECLARE_MEMBER - }; - 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) */ { - public: - inline AggSpec_AggSpecSorted() : AggSpec_AggSpecSorted(nullptr) {} - ~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; - } - inline AggSpec_AggSpecSorted& operator=(AggSpec_AggSpecSorted&& 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 AggSpec_AggSpecSorted& default_instance() { - return *internal_default_instance(); - } - 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); } - 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 - if (GetArena() == other->GetArena()) { -#endif // !PROTOBUF_FORCE_COPY_IN_SWAP - InternalSwap(other); - } else { - ::google::protobuf::internal::GenericSwap(this, other); - } - } - void UnsafeArenaSwap(AggSpec_AggSpecSorted* other) { - if (other == this) return; - ABSL_DCHECK(GetArena() == other->GetArena()); - InternalSwap(other); - } - - // implements Message ---------------------------------------------- - - 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); } - - private: - static void MergeImpl( - ::google::protobuf::MessageLite& to_msg, - const ::google::protobuf::MessageLite& from_msg); - - 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; - #endif // PROTOBUF_CUSTOM_VTABLE - int GetCachedSize() const { return _impl_._cached_size_.Get(); } - - private: - void SharedCtor(::google::protobuf::Arena* arena); - void SharedDtor(); - void InternalSwap(AggSpec_AggSpecSorted* other); - private: - friend class ::google::protobuf::internal::AnyMetadata; - 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); - 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, - }; - // repeated .io.deephaven.proto.backplane.grpc.AggSpec.AggSpecSortedColumn columns = 1; - int columns_size() const; - private: - int _internal_columns_size() const; - - 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(); - - 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; - // @@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 - 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 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) */ { - public: - inline WhereInRequest() : WhereInRequest(nullptr) {} - ~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; - } - inline WhereInRequest& operator=(WhereInRequest&& 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 WhereInRequest& default_instance() { - return *internal_default_instance(); - } - 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); } - 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 - if (GetArena() == other->GetArena()) { -#endif // !PROTOBUF_FORCE_COPY_IN_SWAP - InternalSwap(other); - } else { - ::google::protobuf::internal::GenericSwap(this, other); - } - } - void UnsafeArenaSwap(WhereInRequest* other) { - if (other == this) return; - ABSL_DCHECK(GetArena() == other->GetArena()); - InternalSwap(other); - } - - // implements Message ---------------------------------------------- - - 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); } - - private: - static void MergeImpl( - ::google::protobuf::MessageLite& to_msg, - const ::google::protobuf::MessageLite& from_msg); - - 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; - #endif // PROTOBUF_CUSTOM_VTABLE - int GetCachedSize() const { return _impl_._cached_size_.Get(); } - - private: - void SharedCtor(::google::protobuf::Arena* arena); - void SharedDtor(); - void InternalSwap(WhereInRequest* other); - private: - friend class ::google::protobuf::internal::AnyMetadata; - 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); - 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, - kLeftIdFieldNumber = 2, - kRightIdFieldNumber = 3, - kInvertedFieldNumber = 4, - }; - // repeated string columns_to_match = 5; - int columns_to_match_size() const; - private: - int _internal_columns_to_match_size() const; - - public: - void clear_columns_to_match() ; - const std::string& columns_to_match(int index) const; - std::string* mutable_columns_to_match(int index); - template - void set_columns_to_match(int index, Arg_&& value, Args_... args); - std::string* add_columns_to_match(); - 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(); - - private: - const ::google::protobuf::RepeatedPtrField& _internal_columns_to_match() const; - ::google::protobuf::RepeatedPtrField* _internal_mutable_columns_to_match(); - - public: - // .io.deephaven.proto.backplane.grpc.Ticket result_id = 1; - bool has_result_id() const; - void clear_result_id() ; - const ::io::deephaven::proto::backplane::grpc::Ticket& result_id() const; - PROTOBUF_NODISCARD ::io::deephaven::proto::backplane::grpc::Ticket* release_result_id(); - ::io::deephaven::proto::backplane::grpc::Ticket* mutable_result_id(); - void set_allocated_result_id(::io::deephaven::proto::backplane::grpc::Ticket* value); - void unsafe_arena_set_allocated_result_id(::io::deephaven::proto::backplane::grpc::Ticket* value); - ::io::deephaven::proto::backplane::grpc::Ticket* unsafe_arena_release_result_id(); - - private: - const ::io::deephaven::proto::backplane::grpc::Ticket& _internal_result_id() const; - ::io::deephaven::proto::backplane::grpc::Ticket* _internal_mutable_result_id(); - - public: - // .io.deephaven.proto.backplane.grpc.TableReference left_id = 2; - bool has_left_id() const; - void clear_left_id() ; - const ::io::deephaven::proto::backplane::grpc::TableReference& left_id() const; - PROTOBUF_NODISCARD ::io::deephaven::proto::backplane::grpc::TableReference* release_left_id(); - ::io::deephaven::proto::backplane::grpc::TableReference* mutable_left_id(); - void set_allocated_left_id(::io::deephaven::proto::backplane::grpc::TableReference* value); - void unsafe_arena_set_allocated_left_id(::io::deephaven::proto::backplane::grpc::TableReference* value); - ::io::deephaven::proto::backplane::grpc::TableReference* unsafe_arena_release_left_id(); - - private: - const ::io::deephaven::proto::backplane::grpc::TableReference& _internal_left_id() const; - ::io::deephaven::proto::backplane::grpc::TableReference* _internal_mutable_left_id(); - - public: - // .io.deephaven.proto.backplane.grpc.TableReference right_id = 3; - bool has_right_id() const; - void clear_right_id() ; - const ::io::deephaven::proto::backplane::grpc::TableReference& right_id() const; - PROTOBUF_NODISCARD ::io::deephaven::proto::backplane::grpc::TableReference* release_right_id(); - ::io::deephaven::proto::backplane::grpc::TableReference* mutable_right_id(); - void set_allocated_right_id(::io::deephaven::proto::backplane::grpc::TableReference* value); - void unsafe_arena_set_allocated_right_id(::io::deephaven::proto::backplane::grpc::TableReference* value); - ::io::deephaven::proto::backplane::grpc::TableReference* unsafe_arena_release_right_id(); - - private: - const ::io::deephaven::proto::backplane::grpc::TableReference& _internal_right_id() const; - ::io::deephaven::proto::backplane::grpc::TableReference* _internal_mutable_right_id(); - - public: - // bool inverted = 4; - void clear_inverted() ; - bool inverted() const; - void set_inverted(bool value); - - private: - bool _internal_inverted() const; - void _internal_set_inverted(bool value); - - public: - // @@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 - 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 WhereInRequest& from_msg); - ::google::protobuf::internal::HasBits<1> _has_bits_; - mutable ::google::protobuf::internal::CachedSize _cached_size_; - ::google::protobuf::RepeatedPtrField columns_to_match_; - ::io::deephaven::proto::backplane::grpc::Ticket* result_id_; - ::io::deephaven::proto::backplane::grpc::TableReference* left_id_; - ::io::deephaven::proto::backplane::grpc::TableReference* right_id_; - bool inverted_; - PROTOBUF_TSAN_DECLARE_MEMBER - }; - 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) */ { - public: - inline UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingWAvg() : UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingWAvg(nullptr) {} - ~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; - } - 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 - && 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 UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingWAvg& default_instance() { - return *internal_default_instance(); - } - 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); } - 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 - if (GetArena() == other->GetArena()) { -#endif // !PROTOBUF_FORCE_COPY_IN_SWAP - InternalSwap(other); - } else { - ::google::protobuf::internal::GenericSwap(this, other); - } - } - void UnsafeArenaSwap(UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingWAvg* other) { - if (other == this) return; - ABSL_DCHECK(GetArena() == other->GetArena()); - InternalSwap(other); - } - - // implements Message ---------------------------------------------- - - 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); } - - private: - static void MergeImpl( - ::google::protobuf::MessageLite& to_msg, - const ::google::protobuf::MessageLite& from_msg); - - 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; - #endif // PROTOBUF_CUSTOM_VTABLE - int GetCachedSize() const { return _impl_._cached_size_.Get(); } - - private: - void SharedCtor(::google::protobuf::Arena* arena); - void SharedDtor(); - void InternalSwap(UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingWAvg* other); - private: - friend class ::google::protobuf::internal::AnyMetadata; - 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); - 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, - kForwardWindowScaleFieldNumber = 2, - }; - // string weight_column = 3; - void clear_weight_column() ; - const std::string& weight_column() const; - template - void set_weight_column(Arg_&& arg, Args_... args); - std::string* mutable_weight_column(); - PROTOBUF_NODISCARD std::string* release_weight_column(); - void set_allocated_weight_column(std::string* value); - - private: - const std::string& _internal_weight_column() const; - inline PROTOBUF_ALWAYS_INLINE void _internal_set_weight_column( - const std::string& value); - std::string* _internal_mutable_weight_column(); - - public: - // .io.deephaven.proto.backplane.grpc.UpdateByWindowScale reverse_window_scale = 1; - bool has_reverse_window_scale() const; - void clear_reverse_window_scale() ; - const ::io::deephaven::proto::backplane::grpc::UpdateByWindowScale& reverse_window_scale() const; - PROTOBUF_NODISCARD ::io::deephaven::proto::backplane::grpc::UpdateByWindowScale* release_reverse_window_scale(); - ::io::deephaven::proto::backplane::grpc::UpdateByWindowScale* mutable_reverse_window_scale(); - void set_allocated_reverse_window_scale(::io::deephaven::proto::backplane::grpc::UpdateByWindowScale* value); - void unsafe_arena_set_allocated_reverse_window_scale(::io::deephaven::proto::backplane::grpc::UpdateByWindowScale* value); - ::io::deephaven::proto::backplane::grpc::UpdateByWindowScale* unsafe_arena_release_reverse_window_scale(); - - private: - const ::io::deephaven::proto::backplane::grpc::UpdateByWindowScale& _internal_reverse_window_scale() const; - ::io::deephaven::proto::backplane::grpc::UpdateByWindowScale* _internal_mutable_reverse_window_scale(); - - public: - // .io.deephaven.proto.backplane.grpc.UpdateByWindowScale forward_window_scale = 2; - bool has_forward_window_scale() const; - void clear_forward_window_scale() ; - const ::io::deephaven::proto::backplane::grpc::UpdateByWindowScale& forward_window_scale() const; - PROTOBUF_NODISCARD ::io::deephaven::proto::backplane::grpc::UpdateByWindowScale* release_forward_window_scale(); - ::io::deephaven::proto::backplane::grpc::UpdateByWindowScale* mutable_forward_window_scale(); - void set_allocated_forward_window_scale(::io::deephaven::proto::backplane::grpc::UpdateByWindowScale* value); - void unsafe_arena_set_allocated_forward_window_scale(::io::deephaven::proto::backplane::grpc::UpdateByWindowScale* value); - ::io::deephaven::proto::backplane::grpc::UpdateByWindowScale* unsafe_arena_release_forward_window_scale(); - - private: - const ::io::deephaven::proto::backplane::grpc::UpdateByWindowScale& _internal_forward_window_scale() const; - ::io::deephaven::proto::backplane::grpc::UpdateByWindowScale* _internal_mutable_forward_window_scale(); - - public: - // @@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 - 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 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_; - ::io::deephaven::proto::backplane::grpc::UpdateByWindowScale* reverse_window_scale_; - ::io::deephaven::proto::backplane::grpc::UpdateByWindowScale* forward_window_scale_; - PROTOBUF_TSAN_DECLARE_MEMBER - }; - 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) */ { - public: - inline UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingSum() : UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingSum(nullptr) {} - ~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; - } - 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 - && 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 UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingSum& default_instance() { - return *internal_default_instance(); - } - 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); } - 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 - if (GetArena() == other->GetArena()) { -#endif // !PROTOBUF_FORCE_COPY_IN_SWAP - InternalSwap(other); - } else { - ::google::protobuf::internal::GenericSwap(this, other); - } - } - void UnsafeArenaSwap(UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingSum* other) { - if (other == this) return; - ABSL_DCHECK(GetArena() == other->GetArena()); - InternalSwap(other); - } - - // implements Message ---------------------------------------------- - - 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); } - - private: - static void MergeImpl( - ::google::protobuf::MessageLite& to_msg, - const ::google::protobuf::MessageLite& from_msg); - - 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; - #endif // PROTOBUF_CUSTOM_VTABLE - int GetCachedSize() const { return _impl_._cached_size_.Get(); } - - private: - void SharedCtor(::google::protobuf::Arena* arena); - void SharedDtor(); - void InternalSwap(UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingSum* other); - private: - friend class ::google::protobuf::internal::AnyMetadata; - 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); - 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, - }; - // .io.deephaven.proto.backplane.grpc.UpdateByWindowScale reverse_window_scale = 1; - bool has_reverse_window_scale() const; - void clear_reverse_window_scale() ; - const ::io::deephaven::proto::backplane::grpc::UpdateByWindowScale& reverse_window_scale() const; - PROTOBUF_NODISCARD ::io::deephaven::proto::backplane::grpc::UpdateByWindowScale* release_reverse_window_scale(); - ::io::deephaven::proto::backplane::grpc::UpdateByWindowScale* mutable_reverse_window_scale(); - void set_allocated_reverse_window_scale(::io::deephaven::proto::backplane::grpc::UpdateByWindowScale* value); - void unsafe_arena_set_allocated_reverse_window_scale(::io::deephaven::proto::backplane::grpc::UpdateByWindowScale* value); - ::io::deephaven::proto::backplane::grpc::UpdateByWindowScale* unsafe_arena_release_reverse_window_scale(); - - private: - const ::io::deephaven::proto::backplane::grpc::UpdateByWindowScale& _internal_reverse_window_scale() const; - ::io::deephaven::proto::backplane::grpc::UpdateByWindowScale* _internal_mutable_reverse_window_scale(); - - public: - // .io.deephaven.proto.backplane.grpc.UpdateByWindowScale forward_window_scale = 2; - bool has_forward_window_scale() const; - void clear_forward_window_scale() ; - const ::io::deephaven::proto::backplane::grpc::UpdateByWindowScale& forward_window_scale() const; - PROTOBUF_NODISCARD ::io::deephaven::proto::backplane::grpc::UpdateByWindowScale* release_forward_window_scale(); - ::io::deephaven::proto::backplane::grpc::UpdateByWindowScale* mutable_forward_window_scale(); - void set_allocated_forward_window_scale(::io::deephaven::proto::backplane::grpc::UpdateByWindowScale* value); - void unsafe_arena_set_allocated_forward_window_scale(::io::deephaven::proto::backplane::grpc::UpdateByWindowScale* value); - ::io::deephaven::proto::backplane::grpc::UpdateByWindowScale* unsafe_arena_release_forward_window_scale(); - - private: - const ::io::deephaven::proto::backplane::grpc::UpdateByWindowScale& _internal_forward_window_scale() const; - ::io::deephaven::proto::backplane::grpc::UpdateByWindowScale* _internal_mutable_forward_window_scale(); - - public: - // @@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 - 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 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_; - ::io::deephaven::proto::backplane::grpc::UpdateByWindowScale* forward_window_scale_; - PROTOBUF_TSAN_DECLARE_MEMBER - }; - 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) */ { - public: - inline UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingStd() : UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingStd(nullptr) {} - ~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; - } - 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 - && 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 UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingStd& default_instance() { - return *internal_default_instance(); - } - 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); } - 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 - if (GetArena() == other->GetArena()) { -#endif // !PROTOBUF_FORCE_COPY_IN_SWAP - InternalSwap(other); - } else { - ::google::protobuf::internal::GenericSwap(this, other); - } - } - void UnsafeArenaSwap(UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingStd* other) { - if (other == this) return; - ABSL_DCHECK(GetArena() == other->GetArena()); - InternalSwap(other); - } - - // implements Message ---------------------------------------------- - - 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); } - - private: - static void MergeImpl( - ::google::protobuf::MessageLite& to_msg, - const ::google::protobuf::MessageLite& from_msg); - - 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; - #endif // PROTOBUF_CUSTOM_VTABLE - int GetCachedSize() const { return _impl_._cached_size_.Get(); } - - private: - void SharedCtor(::google::protobuf::Arena* arena); - void SharedDtor(); - void InternalSwap(UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingStd* other); - private: - friend class ::google::protobuf::internal::AnyMetadata; - 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); - 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, - }; - // .io.deephaven.proto.backplane.grpc.UpdateByWindowScale reverse_window_scale = 1; - bool has_reverse_window_scale() const; - void clear_reverse_window_scale() ; - const ::io::deephaven::proto::backplane::grpc::UpdateByWindowScale& reverse_window_scale() const; - PROTOBUF_NODISCARD ::io::deephaven::proto::backplane::grpc::UpdateByWindowScale* release_reverse_window_scale(); - ::io::deephaven::proto::backplane::grpc::UpdateByWindowScale* mutable_reverse_window_scale(); - void set_allocated_reverse_window_scale(::io::deephaven::proto::backplane::grpc::UpdateByWindowScale* value); - void unsafe_arena_set_allocated_reverse_window_scale(::io::deephaven::proto::backplane::grpc::UpdateByWindowScale* value); - ::io::deephaven::proto::backplane::grpc::UpdateByWindowScale* unsafe_arena_release_reverse_window_scale(); - - private: - const ::io::deephaven::proto::backplane::grpc::UpdateByWindowScale& _internal_reverse_window_scale() const; - ::io::deephaven::proto::backplane::grpc::UpdateByWindowScale* _internal_mutable_reverse_window_scale(); - - public: - // .io.deephaven.proto.backplane.grpc.UpdateByWindowScale forward_window_scale = 2; - bool has_forward_window_scale() const; - void clear_forward_window_scale() ; - const ::io::deephaven::proto::backplane::grpc::UpdateByWindowScale& forward_window_scale() const; - PROTOBUF_NODISCARD ::io::deephaven::proto::backplane::grpc::UpdateByWindowScale* release_forward_window_scale(); - ::io::deephaven::proto::backplane::grpc::UpdateByWindowScale* mutable_forward_window_scale(); - void set_allocated_forward_window_scale(::io::deephaven::proto::backplane::grpc::UpdateByWindowScale* value); - void unsafe_arena_set_allocated_forward_window_scale(::io::deephaven::proto::backplane::grpc::UpdateByWindowScale* value); - ::io::deephaven::proto::backplane::grpc::UpdateByWindowScale* unsafe_arena_release_forward_window_scale(); - - private: - const ::io::deephaven::proto::backplane::grpc::UpdateByWindowScale& _internal_forward_window_scale() const; - ::io::deephaven::proto::backplane::grpc::UpdateByWindowScale* _internal_mutable_forward_window_scale(); - - public: - // @@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 - 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 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_; - ::io::deephaven::proto::backplane::grpc::UpdateByWindowScale* forward_window_scale_; - PROTOBUF_TSAN_DECLARE_MEMBER - }; - 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) */ { - public: - inline UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingProduct() : UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingProduct(nullptr) {} - ~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; - } - 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 - && 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 UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingProduct& default_instance() { - return *internal_default_instance(); - } - 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); } - 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 - if (GetArena() == other->GetArena()) { -#endif // !PROTOBUF_FORCE_COPY_IN_SWAP - InternalSwap(other); - } else { - ::google::protobuf::internal::GenericSwap(this, other); - } - } - void UnsafeArenaSwap(UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingProduct* other) { - if (other == this) return; - ABSL_DCHECK(GetArena() == other->GetArena()); - InternalSwap(other); - } - - // implements Message ---------------------------------------------- - - 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); } - - private: - static void MergeImpl( - ::google::protobuf::MessageLite& to_msg, - const ::google::protobuf::MessageLite& from_msg); - - 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; - #endif // PROTOBUF_CUSTOM_VTABLE - int GetCachedSize() const { return _impl_._cached_size_.Get(); } - - private: - void SharedCtor(::google::protobuf::Arena* arena); - void SharedDtor(); - void InternalSwap(UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingProduct* other); - private: - friend class ::google::protobuf::internal::AnyMetadata; - 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); - 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, - }; - // .io.deephaven.proto.backplane.grpc.UpdateByWindowScale reverse_window_scale = 1; - bool has_reverse_window_scale() const; - void clear_reverse_window_scale() ; - const ::io::deephaven::proto::backplane::grpc::UpdateByWindowScale& reverse_window_scale() const; - PROTOBUF_NODISCARD ::io::deephaven::proto::backplane::grpc::UpdateByWindowScale* release_reverse_window_scale(); - ::io::deephaven::proto::backplane::grpc::UpdateByWindowScale* mutable_reverse_window_scale(); - void set_allocated_reverse_window_scale(::io::deephaven::proto::backplane::grpc::UpdateByWindowScale* value); - void unsafe_arena_set_allocated_reverse_window_scale(::io::deephaven::proto::backplane::grpc::UpdateByWindowScale* value); - ::io::deephaven::proto::backplane::grpc::UpdateByWindowScale* unsafe_arena_release_reverse_window_scale(); - - private: - const ::io::deephaven::proto::backplane::grpc::UpdateByWindowScale& _internal_reverse_window_scale() const; - ::io::deephaven::proto::backplane::grpc::UpdateByWindowScale* _internal_mutable_reverse_window_scale(); - - public: - // .io.deephaven.proto.backplane.grpc.UpdateByWindowScale forward_window_scale = 2; - bool has_forward_window_scale() const; - void clear_forward_window_scale() ; - const ::io::deephaven::proto::backplane::grpc::UpdateByWindowScale& forward_window_scale() const; - PROTOBUF_NODISCARD ::io::deephaven::proto::backplane::grpc::UpdateByWindowScale* release_forward_window_scale(); - ::io::deephaven::proto::backplane::grpc::UpdateByWindowScale* mutable_forward_window_scale(); - void set_allocated_forward_window_scale(::io::deephaven::proto::backplane::grpc::UpdateByWindowScale* value); - void unsafe_arena_set_allocated_forward_window_scale(::io::deephaven::proto::backplane::grpc::UpdateByWindowScale* value); - ::io::deephaven::proto::backplane::grpc::UpdateByWindowScale* unsafe_arena_release_forward_window_scale(); - - private: - const ::io::deephaven::proto::backplane::grpc::UpdateByWindowScale& _internal_forward_window_scale() const; - ::io::deephaven::proto::backplane::grpc::UpdateByWindowScale* _internal_mutable_forward_window_scale(); - - public: - // @@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 - 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 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_; - ::io::deephaven::proto::backplane::grpc::UpdateByWindowScale* forward_window_scale_; - PROTOBUF_TSAN_DECLARE_MEMBER - }; - 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) */ { - public: - inline UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingMin() : UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingMin(nullptr) {} - ~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; - } - 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 - && 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 UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingMin& default_instance() { - return *internal_default_instance(); - } - 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); } - 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 - if (GetArena() == other->GetArena()) { -#endif // !PROTOBUF_FORCE_COPY_IN_SWAP - InternalSwap(other); - } else { - ::google::protobuf::internal::GenericSwap(this, other); - } - } - void UnsafeArenaSwap(UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingMin* other) { - if (other == this) return; - ABSL_DCHECK(GetArena() == other->GetArena()); - InternalSwap(other); - } - - // implements Message ---------------------------------------------- - - 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); } - - private: - static void MergeImpl( - ::google::protobuf::MessageLite& to_msg, - const ::google::protobuf::MessageLite& from_msg); - - 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; - #endif // PROTOBUF_CUSTOM_VTABLE - int GetCachedSize() const { return _impl_._cached_size_.Get(); } - - private: - void SharedCtor(::google::protobuf::Arena* arena); - void SharedDtor(); - void InternalSwap(UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingMin* other); - private: - friend class ::google::protobuf::internal::AnyMetadata; - 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); - 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, - }; - // .io.deephaven.proto.backplane.grpc.UpdateByWindowScale reverse_window_scale = 1; - bool has_reverse_window_scale() const; - void clear_reverse_window_scale() ; - const ::io::deephaven::proto::backplane::grpc::UpdateByWindowScale& reverse_window_scale() const; - PROTOBUF_NODISCARD ::io::deephaven::proto::backplane::grpc::UpdateByWindowScale* release_reverse_window_scale(); - ::io::deephaven::proto::backplane::grpc::UpdateByWindowScale* mutable_reverse_window_scale(); - void set_allocated_reverse_window_scale(::io::deephaven::proto::backplane::grpc::UpdateByWindowScale* value); - void unsafe_arena_set_allocated_reverse_window_scale(::io::deephaven::proto::backplane::grpc::UpdateByWindowScale* value); - ::io::deephaven::proto::backplane::grpc::UpdateByWindowScale* unsafe_arena_release_reverse_window_scale(); - - private: - const ::io::deephaven::proto::backplane::grpc::UpdateByWindowScale& _internal_reverse_window_scale() const; - ::io::deephaven::proto::backplane::grpc::UpdateByWindowScale* _internal_mutable_reverse_window_scale(); - - public: - // .io.deephaven.proto.backplane.grpc.UpdateByWindowScale forward_window_scale = 2; - bool has_forward_window_scale() const; - void clear_forward_window_scale() ; - const ::io::deephaven::proto::backplane::grpc::UpdateByWindowScale& forward_window_scale() const; - PROTOBUF_NODISCARD ::io::deephaven::proto::backplane::grpc::UpdateByWindowScale* release_forward_window_scale(); - ::io::deephaven::proto::backplane::grpc::UpdateByWindowScale* mutable_forward_window_scale(); - void set_allocated_forward_window_scale(::io::deephaven::proto::backplane::grpc::UpdateByWindowScale* value); - void unsafe_arena_set_allocated_forward_window_scale(::io::deephaven::proto::backplane::grpc::UpdateByWindowScale* value); - ::io::deephaven::proto::backplane::grpc::UpdateByWindowScale* unsafe_arena_release_forward_window_scale(); - - private: - const ::io::deephaven::proto::backplane::grpc::UpdateByWindowScale& _internal_forward_window_scale() const; - ::io::deephaven::proto::backplane::grpc::UpdateByWindowScale* _internal_mutable_forward_window_scale(); - - public: - // @@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 - 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 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_; - ::io::deephaven::proto::backplane::grpc::UpdateByWindowScale* forward_window_scale_; - PROTOBUF_TSAN_DECLARE_MEMBER - }; - 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) */ { - public: - inline UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingMax() : UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingMax(nullptr) {} - ~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; - } - 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 - && 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 UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingMax& default_instance() { - return *internal_default_instance(); - } - 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); } - 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 - if (GetArena() == other->GetArena()) { -#endif // !PROTOBUF_FORCE_COPY_IN_SWAP - InternalSwap(other); - } else { - ::google::protobuf::internal::GenericSwap(this, other); - } - } - void UnsafeArenaSwap(UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingMax* other) { - if (other == this) return; - ABSL_DCHECK(GetArena() == other->GetArena()); - InternalSwap(other); - } - - // implements Message ---------------------------------------------- - - 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); } - - private: - static void MergeImpl( - ::google::protobuf::MessageLite& to_msg, - const ::google::protobuf::MessageLite& from_msg); - - 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; - #endif // PROTOBUF_CUSTOM_VTABLE - int GetCachedSize() const { return _impl_._cached_size_.Get(); } - - private: - void SharedCtor(::google::protobuf::Arena* arena); - void SharedDtor(); - void InternalSwap(UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingMax* other); - private: - friend class ::google::protobuf::internal::AnyMetadata; - 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); - 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, - }; - // .io.deephaven.proto.backplane.grpc.UpdateByWindowScale reverse_window_scale = 1; - bool has_reverse_window_scale() const; - void clear_reverse_window_scale() ; - const ::io::deephaven::proto::backplane::grpc::UpdateByWindowScale& reverse_window_scale() const; - PROTOBUF_NODISCARD ::io::deephaven::proto::backplane::grpc::UpdateByWindowScale* release_reverse_window_scale(); - ::io::deephaven::proto::backplane::grpc::UpdateByWindowScale* mutable_reverse_window_scale(); - void set_allocated_reverse_window_scale(::io::deephaven::proto::backplane::grpc::UpdateByWindowScale* value); - void unsafe_arena_set_allocated_reverse_window_scale(::io::deephaven::proto::backplane::grpc::UpdateByWindowScale* value); - ::io::deephaven::proto::backplane::grpc::UpdateByWindowScale* unsafe_arena_release_reverse_window_scale(); - - private: - const ::io::deephaven::proto::backplane::grpc::UpdateByWindowScale& _internal_reverse_window_scale() const; - ::io::deephaven::proto::backplane::grpc::UpdateByWindowScale* _internal_mutable_reverse_window_scale(); - - public: - // .io.deephaven.proto.backplane.grpc.UpdateByWindowScale forward_window_scale = 2; - bool has_forward_window_scale() const; - void clear_forward_window_scale() ; - const ::io::deephaven::proto::backplane::grpc::UpdateByWindowScale& forward_window_scale() const; - PROTOBUF_NODISCARD ::io::deephaven::proto::backplane::grpc::UpdateByWindowScale* release_forward_window_scale(); - ::io::deephaven::proto::backplane::grpc::UpdateByWindowScale* mutable_forward_window_scale(); - void set_allocated_forward_window_scale(::io::deephaven::proto::backplane::grpc::UpdateByWindowScale* value); - void unsafe_arena_set_allocated_forward_window_scale(::io::deephaven::proto::backplane::grpc::UpdateByWindowScale* value); - ::io::deephaven::proto::backplane::grpc::UpdateByWindowScale* unsafe_arena_release_forward_window_scale(); - - private: - const ::io::deephaven::proto::backplane::grpc::UpdateByWindowScale& _internal_forward_window_scale() const; - ::io::deephaven::proto::backplane::grpc::UpdateByWindowScale* _internal_mutable_forward_window_scale(); - - public: - // @@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 - 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 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_; - ::io::deephaven::proto::backplane::grpc::UpdateByWindowScale* forward_window_scale_; - PROTOBUF_TSAN_DECLARE_MEMBER - }; - 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) */ { - public: - inline UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingGroup() : UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingGroup(nullptr) {} - ~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; - } - 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 - && 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 UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingGroup& default_instance() { - return *internal_default_instance(); - } - 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); } - 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 - if (GetArena() == other->GetArena()) { -#endif // !PROTOBUF_FORCE_COPY_IN_SWAP - InternalSwap(other); - } else { - ::google::protobuf::internal::GenericSwap(this, other); - } - } - void UnsafeArenaSwap(UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingGroup* other) { - if (other == this) return; - ABSL_DCHECK(GetArena() == other->GetArena()); - InternalSwap(other); - } - - // implements Message ---------------------------------------------- - - 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); } - - private: - static void MergeImpl( - ::google::protobuf::MessageLite& to_msg, - const ::google::protobuf::MessageLite& from_msg); - - 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; - #endif // PROTOBUF_CUSTOM_VTABLE - int GetCachedSize() const { return _impl_._cached_size_.Get(); } - - private: - void SharedCtor(::google::protobuf::Arena* arena); - void SharedDtor(); - void InternalSwap(UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingGroup* other); - private: - friend class ::google::protobuf::internal::AnyMetadata; - 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); - 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, - }; - // .io.deephaven.proto.backplane.grpc.UpdateByWindowScale reverse_window_scale = 1; - bool has_reverse_window_scale() const; - void clear_reverse_window_scale() ; - const ::io::deephaven::proto::backplane::grpc::UpdateByWindowScale& reverse_window_scale() const; - PROTOBUF_NODISCARD ::io::deephaven::proto::backplane::grpc::UpdateByWindowScale* release_reverse_window_scale(); - ::io::deephaven::proto::backplane::grpc::UpdateByWindowScale* mutable_reverse_window_scale(); - void set_allocated_reverse_window_scale(::io::deephaven::proto::backplane::grpc::UpdateByWindowScale* value); - void unsafe_arena_set_allocated_reverse_window_scale(::io::deephaven::proto::backplane::grpc::UpdateByWindowScale* value); - ::io::deephaven::proto::backplane::grpc::UpdateByWindowScale* unsafe_arena_release_reverse_window_scale(); - - private: - const ::io::deephaven::proto::backplane::grpc::UpdateByWindowScale& _internal_reverse_window_scale() const; - ::io::deephaven::proto::backplane::grpc::UpdateByWindowScale* _internal_mutable_reverse_window_scale(); - - public: - // .io.deephaven.proto.backplane.grpc.UpdateByWindowScale forward_window_scale = 2; - bool has_forward_window_scale() const; - void clear_forward_window_scale() ; - const ::io::deephaven::proto::backplane::grpc::UpdateByWindowScale& forward_window_scale() const; - PROTOBUF_NODISCARD ::io::deephaven::proto::backplane::grpc::UpdateByWindowScale* release_forward_window_scale(); - ::io::deephaven::proto::backplane::grpc::UpdateByWindowScale* mutable_forward_window_scale(); - void set_allocated_forward_window_scale(::io::deephaven::proto::backplane::grpc::UpdateByWindowScale* value); - void unsafe_arena_set_allocated_forward_window_scale(::io::deephaven::proto::backplane::grpc::UpdateByWindowScale* value); - ::io::deephaven::proto::backplane::grpc::UpdateByWindowScale* unsafe_arena_release_forward_window_scale(); - - private: - const ::io::deephaven::proto::backplane::grpc::UpdateByWindowScale& _internal_forward_window_scale() const; - ::io::deephaven::proto::backplane::grpc::UpdateByWindowScale* _internal_mutable_forward_window_scale(); - - public: - // @@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 - 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 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_; - ::io::deephaven::proto::backplane::grpc::UpdateByWindowScale* forward_window_scale_; - PROTOBUF_TSAN_DECLARE_MEMBER - }; - 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) */ { - public: - inline UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingFormula() : UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingFormula(nullptr) {} - ~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; - } - 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 - && 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 UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingFormula& default_instance() { - return *internal_default_instance(); - } - 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); } - 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 - if (GetArena() == other->GetArena()) { -#endif // !PROTOBUF_FORCE_COPY_IN_SWAP - InternalSwap(other); - } else { - ::google::protobuf::internal::GenericSwap(this, other); - } - } - void UnsafeArenaSwap(UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingFormula* other) { - if (other == this) return; - ABSL_DCHECK(GetArena() == other->GetArena()); - InternalSwap(other); - } - - // implements Message ---------------------------------------------- - - 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); } - - private: - static void MergeImpl( - ::google::protobuf::MessageLite& to_msg, - const ::google::protobuf::MessageLite& from_msg); - - 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; - #endif // PROTOBUF_CUSTOM_VTABLE - int GetCachedSize() const { return _impl_._cached_size_.Get(); } - - private: - void SharedCtor(::google::protobuf::Arena* arena); - void SharedDtor(); - void InternalSwap(UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingFormula* other); - private: - friend class ::google::protobuf::internal::AnyMetadata; - 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); - 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, - kReverseWindowScaleFieldNumber = 1, - kForwardWindowScaleFieldNumber = 2, - }; - // string formula = 3; - void clear_formula() ; - const std::string& formula() const; - template - void set_formula(Arg_&& arg, Args_... args); - std::string* mutable_formula(); - PROTOBUF_NODISCARD std::string* release_formula(); - void set_allocated_formula(std::string* value); - - private: - const std::string& _internal_formula() const; - inline PROTOBUF_ALWAYS_INLINE void _internal_set_formula( - const std::string& value); - std::string* _internal_mutable_formula(); - - public: - // string param_token = 4; - void clear_param_token() ; - const std::string& param_token() const; - template - void set_param_token(Arg_&& arg, Args_... args); - std::string* mutable_param_token(); - PROTOBUF_NODISCARD std::string* release_param_token(); - void set_allocated_param_token(std::string* value); - - private: - const std::string& _internal_param_token() const; - inline PROTOBUF_ALWAYS_INLINE void _internal_set_param_token( - const std::string& value); - std::string* _internal_mutable_param_token(); - - public: - // .io.deephaven.proto.backplane.grpc.UpdateByWindowScale reverse_window_scale = 1; - bool has_reverse_window_scale() const; - void clear_reverse_window_scale() ; - const ::io::deephaven::proto::backplane::grpc::UpdateByWindowScale& reverse_window_scale() const; - PROTOBUF_NODISCARD ::io::deephaven::proto::backplane::grpc::UpdateByWindowScale* release_reverse_window_scale(); - ::io::deephaven::proto::backplane::grpc::UpdateByWindowScale* mutable_reverse_window_scale(); - void set_allocated_reverse_window_scale(::io::deephaven::proto::backplane::grpc::UpdateByWindowScale* value); - void unsafe_arena_set_allocated_reverse_window_scale(::io::deephaven::proto::backplane::grpc::UpdateByWindowScale* value); - ::io::deephaven::proto::backplane::grpc::UpdateByWindowScale* unsafe_arena_release_reverse_window_scale(); - - private: - const ::io::deephaven::proto::backplane::grpc::UpdateByWindowScale& _internal_reverse_window_scale() const; - ::io::deephaven::proto::backplane::grpc::UpdateByWindowScale* _internal_mutable_reverse_window_scale(); - - public: - // .io.deephaven.proto.backplane.grpc.UpdateByWindowScale forward_window_scale = 2; - bool has_forward_window_scale() const; - void clear_forward_window_scale() ; - const ::io::deephaven::proto::backplane::grpc::UpdateByWindowScale& forward_window_scale() const; - PROTOBUF_NODISCARD ::io::deephaven::proto::backplane::grpc::UpdateByWindowScale* release_forward_window_scale(); - ::io::deephaven::proto::backplane::grpc::UpdateByWindowScale* mutable_forward_window_scale(); - void set_allocated_forward_window_scale(::io::deephaven::proto::backplane::grpc::UpdateByWindowScale* value); - void unsafe_arena_set_allocated_forward_window_scale(::io::deephaven::proto::backplane::grpc::UpdateByWindowScale* value); - ::io::deephaven::proto::backplane::grpc::UpdateByWindowScale* unsafe_arena_release_forward_window_scale(); - - private: - const ::io::deephaven::proto::backplane::grpc::UpdateByWindowScale& _internal_forward_window_scale() const; - ::io::deephaven::proto::backplane::grpc::UpdateByWindowScale* _internal_mutable_forward_window_scale(); - - public: - // @@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 - 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 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_; - ::google::protobuf::internal::ArenaStringPtr param_token_; - ::io::deephaven::proto::backplane::grpc::UpdateByWindowScale* reverse_window_scale_; - ::io::deephaven::proto::backplane::grpc::UpdateByWindowScale* forward_window_scale_; - PROTOBUF_TSAN_DECLARE_MEMBER - }; - 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) */ { - public: - inline UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingCount() : UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingCount(nullptr) {} - ~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; - } - 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 - && 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 UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingCount& default_instance() { - return *internal_default_instance(); - } - 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); } - 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 - if (GetArena() == other->GetArena()) { -#endif // !PROTOBUF_FORCE_COPY_IN_SWAP - InternalSwap(other); - } else { - ::google::protobuf::internal::GenericSwap(this, other); - } - } - void UnsafeArenaSwap(UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingCount* other) { - if (other == this) return; - ABSL_DCHECK(GetArena() == other->GetArena()); - InternalSwap(other); - } - - // implements Message ---------------------------------------------- - - 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); } - - private: - static void MergeImpl( - ::google::protobuf::MessageLite& to_msg, - const ::google::protobuf::MessageLite& from_msg); - - 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; - #endif // PROTOBUF_CUSTOM_VTABLE - int GetCachedSize() const { return _impl_._cached_size_.Get(); } - - private: - void SharedCtor(::google::protobuf::Arena* arena); - void SharedDtor(); - void InternalSwap(UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingCount* other); - private: - friend class ::google::protobuf::internal::AnyMetadata; - 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); - 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, - }; - // .io.deephaven.proto.backplane.grpc.UpdateByWindowScale reverse_window_scale = 1; - bool has_reverse_window_scale() const; - void clear_reverse_window_scale() ; - const ::io::deephaven::proto::backplane::grpc::UpdateByWindowScale& reverse_window_scale() const; - PROTOBUF_NODISCARD ::io::deephaven::proto::backplane::grpc::UpdateByWindowScale* release_reverse_window_scale(); - ::io::deephaven::proto::backplane::grpc::UpdateByWindowScale* mutable_reverse_window_scale(); - void set_allocated_reverse_window_scale(::io::deephaven::proto::backplane::grpc::UpdateByWindowScale* value); - void unsafe_arena_set_allocated_reverse_window_scale(::io::deephaven::proto::backplane::grpc::UpdateByWindowScale* value); - ::io::deephaven::proto::backplane::grpc::UpdateByWindowScale* unsafe_arena_release_reverse_window_scale(); - - private: - const ::io::deephaven::proto::backplane::grpc::UpdateByWindowScale& _internal_reverse_window_scale() const; - ::io::deephaven::proto::backplane::grpc::UpdateByWindowScale* _internal_mutable_reverse_window_scale(); - - public: - // .io.deephaven.proto.backplane.grpc.UpdateByWindowScale forward_window_scale = 2; - bool has_forward_window_scale() const; - void clear_forward_window_scale() ; - const ::io::deephaven::proto::backplane::grpc::UpdateByWindowScale& forward_window_scale() const; - PROTOBUF_NODISCARD ::io::deephaven::proto::backplane::grpc::UpdateByWindowScale* release_forward_window_scale(); - ::io::deephaven::proto::backplane::grpc::UpdateByWindowScale* mutable_forward_window_scale(); - void set_allocated_forward_window_scale(::io::deephaven::proto::backplane::grpc::UpdateByWindowScale* value); - void unsafe_arena_set_allocated_forward_window_scale(::io::deephaven::proto::backplane::grpc::UpdateByWindowScale* value); - ::io::deephaven::proto::backplane::grpc::UpdateByWindowScale* unsafe_arena_release_forward_window_scale(); - - private: - const ::io::deephaven::proto::backplane::grpc::UpdateByWindowScale& _internal_forward_window_scale() const; - ::io::deephaven::proto::backplane::grpc::UpdateByWindowScale* _internal_mutable_forward_window_scale(); - - public: - // @@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 - 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 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_; - ::io::deephaven::proto::backplane::grpc::UpdateByWindowScale* forward_window_scale_; - PROTOBUF_TSAN_DECLARE_MEMBER - }; - 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) */ { - public: - inline UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingAvg() : UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingAvg(nullptr) {} - ~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; - } - 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 - && 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 UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingAvg& default_instance() { - return *internal_default_instance(); - } - 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); } - 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 - if (GetArena() == other->GetArena()) { -#endif // !PROTOBUF_FORCE_COPY_IN_SWAP - InternalSwap(other); - } else { - ::google::protobuf::internal::GenericSwap(this, other); - } - } - void UnsafeArenaSwap(UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingAvg* other) { - if (other == this) return; - ABSL_DCHECK(GetArena() == other->GetArena()); - InternalSwap(other); - } - - // implements Message ---------------------------------------------- - - 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); } - - private: - static void MergeImpl( - ::google::protobuf::MessageLite& to_msg, - const ::google::protobuf::MessageLite& from_msg); - - 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; - #endif // PROTOBUF_CUSTOM_VTABLE - int GetCachedSize() const { return _impl_._cached_size_.Get(); } - - private: - void SharedCtor(::google::protobuf::Arena* arena); - void SharedDtor(); - void InternalSwap(UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingAvg* other); - private: - friend class ::google::protobuf::internal::AnyMetadata; - 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); - 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, - }; - // .io.deephaven.proto.backplane.grpc.UpdateByWindowScale reverse_window_scale = 1; - bool has_reverse_window_scale() const; - void clear_reverse_window_scale() ; - const ::io::deephaven::proto::backplane::grpc::UpdateByWindowScale& reverse_window_scale() const; - PROTOBUF_NODISCARD ::io::deephaven::proto::backplane::grpc::UpdateByWindowScale* release_reverse_window_scale(); - ::io::deephaven::proto::backplane::grpc::UpdateByWindowScale* mutable_reverse_window_scale(); - void set_allocated_reverse_window_scale(::io::deephaven::proto::backplane::grpc::UpdateByWindowScale* value); - void unsafe_arena_set_allocated_reverse_window_scale(::io::deephaven::proto::backplane::grpc::UpdateByWindowScale* value); - ::io::deephaven::proto::backplane::grpc::UpdateByWindowScale* unsafe_arena_release_reverse_window_scale(); - - private: - const ::io::deephaven::proto::backplane::grpc::UpdateByWindowScale& _internal_reverse_window_scale() const; - ::io::deephaven::proto::backplane::grpc::UpdateByWindowScale* _internal_mutable_reverse_window_scale(); - - public: - // .io.deephaven.proto.backplane.grpc.UpdateByWindowScale forward_window_scale = 2; - bool has_forward_window_scale() const; - void clear_forward_window_scale() ; - const ::io::deephaven::proto::backplane::grpc::UpdateByWindowScale& forward_window_scale() const; - PROTOBUF_NODISCARD ::io::deephaven::proto::backplane::grpc::UpdateByWindowScale* release_forward_window_scale(); - ::io::deephaven::proto::backplane::grpc::UpdateByWindowScale* mutable_forward_window_scale(); - void set_allocated_forward_window_scale(::io::deephaven::proto::backplane::grpc::UpdateByWindowScale* value); - void unsafe_arena_set_allocated_forward_window_scale(::io::deephaven::proto::backplane::grpc::UpdateByWindowScale* value); - ::io::deephaven::proto::backplane::grpc::UpdateByWindowScale* unsafe_arena_release_forward_window_scale(); - - private: - const ::io::deephaven::proto::backplane::grpc::UpdateByWindowScale& _internal_forward_window_scale() const; - ::io::deephaven::proto::backplane::grpc::UpdateByWindowScale* _internal_mutable_forward_window_scale(); - - public: - // @@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 - 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 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_; - ::io::deephaven::proto::backplane::grpc::UpdateByWindowScale* forward_window_scale_; - PROTOBUF_TSAN_DECLARE_MEMBER - }; - 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) */ { - public: - inline UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByEms() : UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByEms(nullptr) {} - ~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; - } - 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 - && 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 UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByEms& default_instance() { - return *internal_default_instance(); - } - 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); } - 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 - if (GetArena() == other->GetArena()) { -#endif // !PROTOBUF_FORCE_COPY_IN_SWAP - InternalSwap(other); - } else { - ::google::protobuf::internal::GenericSwap(this, other); - } - } - void UnsafeArenaSwap(UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByEms* other) { - if (other == this) return; - ABSL_DCHECK(GetArena() == other->GetArena()); - InternalSwap(other); - } - - // implements Message ---------------------------------------------- - - 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); } - - private: - static void MergeImpl( - ::google::protobuf::MessageLite& to_msg, - const ::google::protobuf::MessageLite& from_msg); - - 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; - #endif // PROTOBUF_CUSTOM_VTABLE - int GetCachedSize() const { return _impl_._cached_size_.Get(); } - - private: - void SharedCtor(::google::protobuf::Arena* arena); - void SharedDtor(); - void InternalSwap(UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByEms* other); - private: - friend class ::google::protobuf::internal::AnyMetadata; - 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); - 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, - }; - // .io.deephaven.proto.backplane.grpc.UpdateByEmOptions options = 1; - bool has_options() const; - void clear_options() ; - const ::io::deephaven::proto::backplane::grpc::UpdateByEmOptions& options() const; - PROTOBUF_NODISCARD ::io::deephaven::proto::backplane::grpc::UpdateByEmOptions* release_options(); - ::io::deephaven::proto::backplane::grpc::UpdateByEmOptions* mutable_options(); - void set_allocated_options(::io::deephaven::proto::backplane::grpc::UpdateByEmOptions* value); - void unsafe_arena_set_allocated_options(::io::deephaven::proto::backplane::grpc::UpdateByEmOptions* value); - ::io::deephaven::proto::backplane::grpc::UpdateByEmOptions* unsafe_arena_release_options(); - - private: - const ::io::deephaven::proto::backplane::grpc::UpdateByEmOptions& _internal_options() const; - ::io::deephaven::proto::backplane::grpc::UpdateByEmOptions* _internal_mutable_options(); - - public: - // .io.deephaven.proto.backplane.grpc.UpdateByWindowScale window_scale = 2; - bool has_window_scale() const; - void clear_window_scale() ; - const ::io::deephaven::proto::backplane::grpc::UpdateByWindowScale& window_scale() const; - PROTOBUF_NODISCARD ::io::deephaven::proto::backplane::grpc::UpdateByWindowScale* release_window_scale(); - ::io::deephaven::proto::backplane::grpc::UpdateByWindowScale* mutable_window_scale(); - void set_allocated_window_scale(::io::deephaven::proto::backplane::grpc::UpdateByWindowScale* value); - void unsafe_arena_set_allocated_window_scale(::io::deephaven::proto::backplane::grpc::UpdateByWindowScale* value); - ::io::deephaven::proto::backplane::grpc::UpdateByWindowScale* unsafe_arena_release_window_scale(); - - private: - const ::io::deephaven::proto::backplane::grpc::UpdateByWindowScale& _internal_window_scale() const; - ::io::deephaven::proto::backplane::grpc::UpdateByWindowScale* _internal_mutable_window_scale(); - - public: - // @@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 - 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 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_; - ::io::deephaven::proto::backplane::grpc::UpdateByWindowScale* window_scale_; - PROTOBUF_TSAN_DECLARE_MEMBER - }; - 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) */ { - public: - inline UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByEma() : UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByEma(nullptr) {} - ~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; - } - 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 - && 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 UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByEma& default_instance() { - return *internal_default_instance(); - } - 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); } - 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 - if (GetArena() == other->GetArena()) { -#endif // !PROTOBUF_FORCE_COPY_IN_SWAP - InternalSwap(other); - } else { - ::google::protobuf::internal::GenericSwap(this, other); - } - } - void UnsafeArenaSwap(UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByEma* other) { - if (other == this) return; - ABSL_DCHECK(GetArena() == other->GetArena()); - InternalSwap(other); - } - - // implements Message ---------------------------------------------- - - 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); } - - private: - static void MergeImpl( - ::google::protobuf::MessageLite& to_msg, - const ::google::protobuf::MessageLite& from_msg); - - 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; - #endif // PROTOBUF_CUSTOM_VTABLE - int GetCachedSize() const { return _impl_._cached_size_.Get(); } - - private: - void SharedCtor(::google::protobuf::Arena* arena); - void SharedDtor(); - void InternalSwap(UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByEma* other); - private: - friend class ::google::protobuf::internal::AnyMetadata; - 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); - 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, - }; - // .io.deephaven.proto.backplane.grpc.UpdateByEmOptions options = 1; - bool has_options() const; - void clear_options() ; - const ::io::deephaven::proto::backplane::grpc::UpdateByEmOptions& options() const; - PROTOBUF_NODISCARD ::io::deephaven::proto::backplane::grpc::UpdateByEmOptions* release_options(); - ::io::deephaven::proto::backplane::grpc::UpdateByEmOptions* mutable_options(); - void set_allocated_options(::io::deephaven::proto::backplane::grpc::UpdateByEmOptions* value); - void unsafe_arena_set_allocated_options(::io::deephaven::proto::backplane::grpc::UpdateByEmOptions* value); - ::io::deephaven::proto::backplane::grpc::UpdateByEmOptions* unsafe_arena_release_options(); - - private: - const ::io::deephaven::proto::backplane::grpc::UpdateByEmOptions& _internal_options() const; - ::io::deephaven::proto::backplane::grpc::UpdateByEmOptions* _internal_mutable_options(); - - public: - // .io.deephaven.proto.backplane.grpc.UpdateByWindowScale window_scale = 2; - bool has_window_scale() const; - void clear_window_scale() ; - const ::io::deephaven::proto::backplane::grpc::UpdateByWindowScale& window_scale() const; - PROTOBUF_NODISCARD ::io::deephaven::proto::backplane::grpc::UpdateByWindowScale* release_window_scale(); - ::io::deephaven::proto::backplane::grpc::UpdateByWindowScale* mutable_window_scale(); - void set_allocated_window_scale(::io::deephaven::proto::backplane::grpc::UpdateByWindowScale* value); - void unsafe_arena_set_allocated_window_scale(::io::deephaven::proto::backplane::grpc::UpdateByWindowScale* value); - ::io::deephaven::proto::backplane::grpc::UpdateByWindowScale* unsafe_arena_release_window_scale(); - - private: - const ::io::deephaven::proto::backplane::grpc::UpdateByWindowScale& _internal_window_scale() const; - ::io::deephaven::proto::backplane::grpc::UpdateByWindowScale* _internal_mutable_window_scale(); - - public: - // @@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 - 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 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_; - ::io::deephaven::proto::backplane::grpc::UpdateByWindowScale* window_scale_; - PROTOBUF_TSAN_DECLARE_MEMBER - }; - 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) */ { - public: - inline UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByEmStd() : UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByEmStd(nullptr) {} - ~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; - } - 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 - && 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 UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByEmStd& default_instance() { - return *internal_default_instance(); - } - 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); } - 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 - if (GetArena() == other->GetArena()) { -#endif // !PROTOBUF_FORCE_COPY_IN_SWAP - InternalSwap(other); - } else { - ::google::protobuf::internal::GenericSwap(this, other); - } - } - void UnsafeArenaSwap(UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByEmStd* other) { - if (other == this) return; - ABSL_DCHECK(GetArena() == other->GetArena()); - InternalSwap(other); - } - - // implements Message ---------------------------------------------- - - 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); } - - private: - static void MergeImpl( - ::google::protobuf::MessageLite& to_msg, - const ::google::protobuf::MessageLite& from_msg); - - 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; - #endif // PROTOBUF_CUSTOM_VTABLE - int GetCachedSize() const { return _impl_._cached_size_.Get(); } - - private: - void SharedCtor(::google::protobuf::Arena* arena); - void SharedDtor(); - void InternalSwap(UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByEmStd* other); - private: - friend class ::google::protobuf::internal::AnyMetadata; - 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); - 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, - }; - // .io.deephaven.proto.backplane.grpc.UpdateByEmOptions options = 1; - bool has_options() const; - void clear_options() ; - const ::io::deephaven::proto::backplane::grpc::UpdateByEmOptions& options() const; - PROTOBUF_NODISCARD ::io::deephaven::proto::backplane::grpc::UpdateByEmOptions* release_options(); - ::io::deephaven::proto::backplane::grpc::UpdateByEmOptions* mutable_options(); - void set_allocated_options(::io::deephaven::proto::backplane::grpc::UpdateByEmOptions* value); - void unsafe_arena_set_allocated_options(::io::deephaven::proto::backplane::grpc::UpdateByEmOptions* value); - ::io::deephaven::proto::backplane::grpc::UpdateByEmOptions* unsafe_arena_release_options(); - - private: - const ::io::deephaven::proto::backplane::grpc::UpdateByEmOptions& _internal_options() const; - ::io::deephaven::proto::backplane::grpc::UpdateByEmOptions* _internal_mutable_options(); - - public: - // .io.deephaven.proto.backplane.grpc.UpdateByWindowScale window_scale = 2; - bool has_window_scale() const; - void clear_window_scale() ; - const ::io::deephaven::proto::backplane::grpc::UpdateByWindowScale& window_scale() const; - PROTOBUF_NODISCARD ::io::deephaven::proto::backplane::grpc::UpdateByWindowScale* release_window_scale(); - ::io::deephaven::proto::backplane::grpc::UpdateByWindowScale* mutable_window_scale(); - void set_allocated_window_scale(::io::deephaven::proto::backplane::grpc::UpdateByWindowScale* value); - void unsafe_arena_set_allocated_window_scale(::io::deephaven::proto::backplane::grpc::UpdateByWindowScale* value); - ::io::deephaven::proto::backplane::grpc::UpdateByWindowScale* unsafe_arena_release_window_scale(); - - private: - const ::io::deephaven::proto::backplane::grpc::UpdateByWindowScale& _internal_window_scale() const; - ::io::deephaven::proto::backplane::grpc::UpdateByWindowScale* _internal_mutable_window_scale(); - - public: - // @@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 - 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 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_; - ::io::deephaven::proto::backplane::grpc::UpdateByWindowScale* window_scale_; - PROTOBUF_TSAN_DECLARE_MEMBER - }; - 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) */ { - public: - inline UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByEmMin() : UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByEmMin(nullptr) {} - ~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; - } - 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 - && 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 UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByEmMin& default_instance() { - return *internal_default_instance(); - } - 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); } - 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 - if (GetArena() == other->GetArena()) { -#endif // !PROTOBUF_FORCE_COPY_IN_SWAP - InternalSwap(other); - } else { - ::google::protobuf::internal::GenericSwap(this, other); - } - } - void UnsafeArenaSwap(UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByEmMin* other) { - if (other == this) return; - ABSL_DCHECK(GetArena() == other->GetArena()); - InternalSwap(other); - } - - // implements Message ---------------------------------------------- - - 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); } - - private: - static void MergeImpl( - ::google::protobuf::MessageLite& to_msg, - const ::google::protobuf::MessageLite& from_msg); - - 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; - #endif // PROTOBUF_CUSTOM_VTABLE - int GetCachedSize() const { return _impl_._cached_size_.Get(); } - - private: - void SharedCtor(::google::protobuf::Arena* arena); - void SharedDtor(); - void InternalSwap(UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByEmMin* other); - private: - friend class ::google::protobuf::internal::AnyMetadata; - 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); - 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, - }; - // .io.deephaven.proto.backplane.grpc.UpdateByEmOptions options = 1; - bool has_options() const; - void clear_options() ; - const ::io::deephaven::proto::backplane::grpc::UpdateByEmOptions& options() const; - PROTOBUF_NODISCARD ::io::deephaven::proto::backplane::grpc::UpdateByEmOptions* release_options(); - ::io::deephaven::proto::backplane::grpc::UpdateByEmOptions* mutable_options(); - void set_allocated_options(::io::deephaven::proto::backplane::grpc::UpdateByEmOptions* value); - void unsafe_arena_set_allocated_options(::io::deephaven::proto::backplane::grpc::UpdateByEmOptions* value); - ::io::deephaven::proto::backplane::grpc::UpdateByEmOptions* unsafe_arena_release_options(); - - private: - const ::io::deephaven::proto::backplane::grpc::UpdateByEmOptions& _internal_options() const; - ::io::deephaven::proto::backplane::grpc::UpdateByEmOptions* _internal_mutable_options(); - - public: - // .io.deephaven.proto.backplane.grpc.UpdateByWindowScale window_scale = 2; - bool has_window_scale() const; - void clear_window_scale() ; - const ::io::deephaven::proto::backplane::grpc::UpdateByWindowScale& window_scale() const; - PROTOBUF_NODISCARD ::io::deephaven::proto::backplane::grpc::UpdateByWindowScale* release_window_scale(); - ::io::deephaven::proto::backplane::grpc::UpdateByWindowScale* mutable_window_scale(); - void set_allocated_window_scale(::io::deephaven::proto::backplane::grpc::UpdateByWindowScale* value); - void unsafe_arena_set_allocated_window_scale(::io::deephaven::proto::backplane::grpc::UpdateByWindowScale* value); - ::io::deephaven::proto::backplane::grpc::UpdateByWindowScale* unsafe_arena_release_window_scale(); - - private: - const ::io::deephaven::proto::backplane::grpc::UpdateByWindowScale& _internal_window_scale() const; - ::io::deephaven::proto::backplane::grpc::UpdateByWindowScale* _internal_mutable_window_scale(); - - public: - // @@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 - 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 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_; - ::io::deephaven::proto::backplane::grpc::UpdateByWindowScale* window_scale_; - PROTOBUF_TSAN_DECLARE_MEMBER - }; - 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) */ { - public: - inline UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByEmMax() : UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByEmMax(nullptr) {} - ~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; - } - 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 - && 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 UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByEmMax& default_instance() { - return *internal_default_instance(); - } - 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); } - 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 - if (GetArena() == other->GetArena()) { -#endif // !PROTOBUF_FORCE_COPY_IN_SWAP - InternalSwap(other); - } else { - ::google::protobuf::internal::GenericSwap(this, other); - } - } - void UnsafeArenaSwap(UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByEmMax* other) { - if (other == this) return; - ABSL_DCHECK(GetArena() == other->GetArena()); - InternalSwap(other); - } - - // implements Message ---------------------------------------------- - - 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); } - - private: - static void MergeImpl( - ::google::protobuf::MessageLite& to_msg, - const ::google::protobuf::MessageLite& from_msg); - - 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; - #endif // PROTOBUF_CUSTOM_VTABLE - int GetCachedSize() const { return _impl_._cached_size_.Get(); } - - private: - void SharedCtor(::google::protobuf::Arena* arena); - void SharedDtor(); - void InternalSwap(UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByEmMax* other); - private: - friend class ::google::protobuf::internal::AnyMetadata; - 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); - 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, - }; - // .io.deephaven.proto.backplane.grpc.UpdateByEmOptions options = 1; - bool has_options() const; - void clear_options() ; - const ::io::deephaven::proto::backplane::grpc::UpdateByEmOptions& options() const; - PROTOBUF_NODISCARD ::io::deephaven::proto::backplane::grpc::UpdateByEmOptions* release_options(); - ::io::deephaven::proto::backplane::grpc::UpdateByEmOptions* mutable_options(); - void set_allocated_options(::io::deephaven::proto::backplane::grpc::UpdateByEmOptions* value); - void unsafe_arena_set_allocated_options(::io::deephaven::proto::backplane::grpc::UpdateByEmOptions* value); - ::io::deephaven::proto::backplane::grpc::UpdateByEmOptions* unsafe_arena_release_options(); - - private: - const ::io::deephaven::proto::backplane::grpc::UpdateByEmOptions& _internal_options() const; - ::io::deephaven::proto::backplane::grpc::UpdateByEmOptions* _internal_mutable_options(); - - public: - // .io.deephaven.proto.backplane.grpc.UpdateByWindowScale window_scale = 2; - bool has_window_scale() const; - void clear_window_scale() ; - const ::io::deephaven::proto::backplane::grpc::UpdateByWindowScale& window_scale() const; - PROTOBUF_NODISCARD ::io::deephaven::proto::backplane::grpc::UpdateByWindowScale* release_window_scale(); - ::io::deephaven::proto::backplane::grpc::UpdateByWindowScale* mutable_window_scale(); - void set_allocated_window_scale(::io::deephaven::proto::backplane::grpc::UpdateByWindowScale* value); - void unsafe_arena_set_allocated_window_scale(::io::deephaven::proto::backplane::grpc::UpdateByWindowScale* value); - ::io::deephaven::proto::backplane::grpc::UpdateByWindowScale* unsafe_arena_release_window_scale(); - - private: - const ::io::deephaven::proto::backplane::grpc::UpdateByWindowScale& _internal_window_scale() const; - ::io::deephaven::proto::backplane::grpc::UpdateByWindowScale* _internal_mutable_window_scale(); - - public: - // @@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 - 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 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_; - ::io::deephaven::proto::backplane::grpc::UpdateByWindowScale* window_scale_; - PROTOBUF_TSAN_DECLARE_MEMBER - }; - 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) */ { - public: - inline UnstructuredFilterTableRequest() : UnstructuredFilterTableRequest(nullptr) {} - ~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; - } - inline UnstructuredFilterTableRequest& operator=(UnstructuredFilterTableRequest&& 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 UnstructuredFilterTableRequest& default_instance() { - return *internal_default_instance(); - } - 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); } - 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 - if (GetArena() == other->GetArena()) { -#endif // !PROTOBUF_FORCE_COPY_IN_SWAP - InternalSwap(other); - } else { - ::google::protobuf::internal::GenericSwap(this, other); - } - } - void UnsafeArenaSwap(UnstructuredFilterTableRequest* other) { - if (other == this) return; - ABSL_DCHECK(GetArena() == other->GetArena()); - InternalSwap(other); - } - - // implements Message ---------------------------------------------- - - 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); } - - private: - static void MergeImpl( - ::google::protobuf::MessageLite& to_msg, - const ::google::protobuf::MessageLite& from_msg); - - 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; - #endif // PROTOBUF_CUSTOM_VTABLE - int GetCachedSize() const { return _impl_._cached_size_.Get(); } - - private: - void SharedCtor(::google::protobuf::Arena* arena); - void SharedDtor(); - void InternalSwap(UnstructuredFilterTableRequest* other); - private: - friend class ::google::protobuf::internal::AnyMetadata; - 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); - 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, - kSourceIdFieldNumber = 2, - }; - // repeated string filters = 3; - int filters_size() const; - private: - int _internal_filters_size() const; - - public: - void clear_filters() ; - const std::string& filters(int index) const; - std::string* mutable_filters(int index); - template - void set_filters(int index, Arg_&& value, Args_... args); - std::string* add_filters(); - template - void add_filters(Arg_&& value, Args_... args); - const ::google::protobuf::RepeatedPtrField& filters() const; - ::google::protobuf::RepeatedPtrField* mutable_filters(); - - private: - const ::google::protobuf::RepeatedPtrField& _internal_filters() const; - ::google::protobuf::RepeatedPtrField* _internal_mutable_filters(); - - public: - // .io.deephaven.proto.backplane.grpc.Ticket result_id = 1; - bool has_result_id() const; - void clear_result_id() ; - const ::io::deephaven::proto::backplane::grpc::Ticket& result_id() const; - PROTOBUF_NODISCARD ::io::deephaven::proto::backplane::grpc::Ticket* release_result_id(); - ::io::deephaven::proto::backplane::grpc::Ticket* mutable_result_id(); - void set_allocated_result_id(::io::deephaven::proto::backplane::grpc::Ticket* value); - void unsafe_arena_set_allocated_result_id(::io::deephaven::proto::backplane::grpc::Ticket* value); - ::io::deephaven::proto::backplane::grpc::Ticket* unsafe_arena_release_result_id(); - - private: - const ::io::deephaven::proto::backplane::grpc::Ticket& _internal_result_id() const; - ::io::deephaven::proto::backplane::grpc::Ticket* _internal_mutable_result_id(); - - public: - // .io.deephaven.proto.backplane.grpc.TableReference source_id = 2; - bool has_source_id() const; - void clear_source_id() ; - const ::io::deephaven::proto::backplane::grpc::TableReference& source_id() const; - PROTOBUF_NODISCARD ::io::deephaven::proto::backplane::grpc::TableReference* release_source_id(); - ::io::deephaven::proto::backplane::grpc::TableReference* mutable_source_id(); - void set_allocated_source_id(::io::deephaven::proto::backplane::grpc::TableReference* value); - void unsafe_arena_set_allocated_source_id(::io::deephaven::proto::backplane::grpc::TableReference* value); - ::io::deephaven::proto::backplane::grpc::TableReference* unsafe_arena_release_source_id(); - - private: - const ::io::deephaven::proto::backplane::grpc::TableReference& _internal_source_id() const; - ::io::deephaven::proto::backplane::grpc::TableReference* _internal_mutable_source_id(); - - public: - // @@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 - 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 UnstructuredFilterTableRequest& from_msg); - ::google::protobuf::internal::HasBits<1> _has_bits_; - mutable ::google::protobuf::internal::CachedSize _cached_size_; - ::google::protobuf::RepeatedPtrField filters_; - ::io::deephaven::proto::backplane::grpc::Ticket* result_id_; - ::io::deephaven::proto::backplane::grpc::TableReference* source_id_; - PROTOBUF_TSAN_DECLARE_MEMBER - }; - 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) */ { - public: - inline UngroupRequest() : UngroupRequest(nullptr) {} - ~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; - } - inline UngroupRequest& operator=(UngroupRequest&& 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 UngroupRequest& default_instance() { - return *internal_default_instance(); - } - 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); } - 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 - if (GetArena() == other->GetArena()) { -#endif // !PROTOBUF_FORCE_COPY_IN_SWAP - InternalSwap(other); - } else { - ::google::protobuf::internal::GenericSwap(this, other); - } - } - void UnsafeArenaSwap(UngroupRequest* other) { - if (other == this) return; - ABSL_DCHECK(GetArena() == other->GetArena()); - InternalSwap(other); - } - - // implements Message ---------------------------------------------- - - 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); } - - private: - static void MergeImpl( - ::google::protobuf::MessageLite& to_msg, - const ::google::protobuf::MessageLite& from_msg); - - 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; - #endif // PROTOBUF_CUSTOM_VTABLE - int GetCachedSize() const { return _impl_._cached_size_.Get(); } - - private: - void SharedCtor(::google::protobuf::Arena* arena); - void SharedDtor(); - void InternalSwap(UngroupRequest* other); - private: - friend class ::google::protobuf::internal::AnyMetadata; - 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); - 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, - kSourceIdFieldNumber = 2, - kNullFillFieldNumber = 3, - }; - // repeated string columns_to_ungroup = 4; - int columns_to_ungroup_size() const; - private: - int _internal_columns_to_ungroup_size() const; - - public: - void clear_columns_to_ungroup() ; - const std::string& columns_to_ungroup(int index) const; - std::string* mutable_columns_to_ungroup(int index); - template - void set_columns_to_ungroup(int index, Arg_&& value, Args_... args); - std::string* add_columns_to_ungroup(); - 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(); - - private: - const ::google::protobuf::RepeatedPtrField& _internal_columns_to_ungroup() const; - ::google::protobuf::RepeatedPtrField* _internal_mutable_columns_to_ungroup(); - - public: - // .io.deephaven.proto.backplane.grpc.Ticket result_id = 1; - bool has_result_id() const; - void clear_result_id() ; - const ::io::deephaven::proto::backplane::grpc::Ticket& result_id() const; - PROTOBUF_NODISCARD ::io::deephaven::proto::backplane::grpc::Ticket* release_result_id(); - ::io::deephaven::proto::backplane::grpc::Ticket* mutable_result_id(); - void set_allocated_result_id(::io::deephaven::proto::backplane::grpc::Ticket* value); - void unsafe_arena_set_allocated_result_id(::io::deephaven::proto::backplane::grpc::Ticket* value); - ::io::deephaven::proto::backplane::grpc::Ticket* unsafe_arena_release_result_id(); - - private: - const ::io::deephaven::proto::backplane::grpc::Ticket& _internal_result_id() const; - ::io::deephaven::proto::backplane::grpc::Ticket* _internal_mutable_result_id(); - - public: - // .io.deephaven.proto.backplane.grpc.TableReference source_id = 2; - bool has_source_id() const; - void clear_source_id() ; - const ::io::deephaven::proto::backplane::grpc::TableReference& source_id() const; - PROTOBUF_NODISCARD ::io::deephaven::proto::backplane::grpc::TableReference* release_source_id(); - ::io::deephaven::proto::backplane::grpc::TableReference* mutable_source_id(); - void set_allocated_source_id(::io::deephaven::proto::backplane::grpc::TableReference* value); - void unsafe_arena_set_allocated_source_id(::io::deephaven::proto::backplane::grpc::TableReference* value); - ::io::deephaven::proto::backplane::grpc::TableReference* unsafe_arena_release_source_id(); - - private: - const ::io::deephaven::proto::backplane::grpc::TableReference& _internal_source_id() const; - ::io::deephaven::proto::backplane::grpc::TableReference* _internal_mutable_source_id(); - - public: - // bool null_fill = 3; - void clear_null_fill() ; - bool null_fill() const; - void set_null_fill(bool value); - - private: - bool _internal_null_fill() const; - void _internal_set_null_fill(bool value); - - public: - // @@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 - 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 UngroupRequest& from_msg); - ::google::protobuf::internal::HasBits<1> _has_bits_; - mutable ::google::protobuf::internal::CachedSize _cached_size_; - ::google::protobuf::RepeatedPtrField columns_to_ungroup_; - ::io::deephaven::proto::backplane::grpc::Ticket* result_id_; - ::io::deephaven::proto::backplane::grpc::TableReference* source_id_; - bool null_fill_; - PROTOBUF_TSAN_DECLARE_MEMBER - }; - 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) */ { - public: - inline SortTableRequest() : SortTableRequest(nullptr) {} - ~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; - } - inline SortTableRequest& operator=(SortTableRequest&& 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 SortTableRequest& default_instance() { - return *internal_default_instance(); - } - 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); } - 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 - if (GetArena() == other->GetArena()) { -#endif // !PROTOBUF_FORCE_COPY_IN_SWAP - InternalSwap(other); - } else { - ::google::protobuf::internal::GenericSwap(this, other); - } - } - void UnsafeArenaSwap(SortTableRequest* other) { - if (other == this) return; - ABSL_DCHECK(GetArena() == other->GetArena()); - InternalSwap(other); - } - - // implements Message ---------------------------------------------- - - 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); } - - private: - static void MergeImpl( - ::google::protobuf::MessageLite& to_msg, - const ::google::protobuf::MessageLite& from_msg); - - 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; - #endif // PROTOBUF_CUSTOM_VTABLE - int GetCachedSize() const { return _impl_._cached_size_.Get(); } - - private: - void SharedCtor(::google::protobuf::Arena* arena); - void SharedDtor(); - void InternalSwap(SortTableRequest* other); - private: - friend class ::google::protobuf::internal::AnyMetadata; - 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); - 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, - kSourceIdFieldNumber = 2, - }; - // repeated .io.deephaven.proto.backplane.grpc.SortDescriptor sorts = 3; - int sorts_size() const; - private: - int _internal_sorts_size() const; - - 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(); - - 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; - // .io.deephaven.proto.backplane.grpc.Ticket result_id = 1; - bool has_result_id() const; - void clear_result_id() ; - const ::io::deephaven::proto::backplane::grpc::Ticket& result_id() const; - PROTOBUF_NODISCARD ::io::deephaven::proto::backplane::grpc::Ticket* release_result_id(); - ::io::deephaven::proto::backplane::grpc::Ticket* mutable_result_id(); - void set_allocated_result_id(::io::deephaven::proto::backplane::grpc::Ticket* value); - void unsafe_arena_set_allocated_result_id(::io::deephaven::proto::backplane::grpc::Ticket* value); - ::io::deephaven::proto::backplane::grpc::Ticket* unsafe_arena_release_result_id(); - - private: - const ::io::deephaven::proto::backplane::grpc::Ticket& _internal_result_id() const; - ::io::deephaven::proto::backplane::grpc::Ticket* _internal_mutable_result_id(); - - public: - // .io.deephaven.proto.backplane.grpc.TableReference source_id = 2; - bool has_source_id() const; - void clear_source_id() ; - const ::io::deephaven::proto::backplane::grpc::TableReference& source_id() const; - PROTOBUF_NODISCARD ::io::deephaven::proto::backplane::grpc::TableReference* release_source_id(); - ::io::deephaven::proto::backplane::grpc::TableReference* mutable_source_id(); - void set_allocated_source_id(::io::deephaven::proto::backplane::grpc::TableReference* value); - void unsafe_arena_set_allocated_source_id(::io::deephaven::proto::backplane::grpc::TableReference* value); - ::io::deephaven::proto::backplane::grpc::TableReference* unsafe_arena_release_source_id(); - - private: - const ::io::deephaven::proto::backplane::grpc::TableReference& _internal_source_id() const; - ::io::deephaven::proto::backplane::grpc::TableReference* _internal_mutable_source_id(); - - public: - // @@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 - 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 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_; - ::io::deephaven::proto::backplane::grpc::Ticket* result_id_; - ::io::deephaven::proto::backplane::grpc::TableReference* source_id_; - PROTOBUF_TSAN_DECLARE_MEMBER - }; - 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) */ { - public: - inline SnapshotWhenTableRequest() : SnapshotWhenTableRequest(nullptr) {} - ~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; - } - inline SnapshotWhenTableRequest& operator=(SnapshotWhenTableRequest&& 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 SnapshotWhenTableRequest& default_instance() { - return *internal_default_instance(); - } - 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); } - 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 - if (GetArena() == other->GetArena()) { -#endif // !PROTOBUF_FORCE_COPY_IN_SWAP - InternalSwap(other); - } else { - ::google::protobuf::internal::GenericSwap(this, other); - } - } - void UnsafeArenaSwap(SnapshotWhenTableRequest* other) { - if (other == this) return; - ABSL_DCHECK(GetArena() == other->GetArena()); - InternalSwap(other); - } - - // implements Message ---------------------------------------------- - - 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); } - - private: - static void MergeImpl( - ::google::protobuf::MessageLite& to_msg, - const ::google::protobuf::MessageLite& from_msg); - - 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; - #endif // PROTOBUF_CUSTOM_VTABLE - int GetCachedSize() const { return _impl_._cached_size_.Get(); } - - private: - void SharedCtor(::google::protobuf::Arena* arena); - void SharedDtor(); - void InternalSwap(SnapshotWhenTableRequest* other); - private: - friend class ::google::protobuf::internal::AnyMetadata; - 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); - 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, - kBaseIdFieldNumber = 2, - kTriggerIdFieldNumber = 3, - kInitialFieldNumber = 4, - kIncrementalFieldNumber = 5, - kHistoryFieldNumber = 6, - }; - // repeated string stamp_columns = 7; - int stamp_columns_size() const; - private: - int _internal_stamp_columns_size() const; - - public: - void clear_stamp_columns() ; - const std::string& stamp_columns(int index) const; - std::string* mutable_stamp_columns(int index); - template - void set_stamp_columns(int index, Arg_&& value, Args_... args); - std::string* add_stamp_columns(); - template - void add_stamp_columns(Arg_&& value, Args_... args); - const ::google::protobuf::RepeatedPtrField& stamp_columns() const; - ::google::protobuf::RepeatedPtrField* mutable_stamp_columns(); - - private: - const ::google::protobuf::RepeatedPtrField& _internal_stamp_columns() const; - ::google::protobuf::RepeatedPtrField* _internal_mutable_stamp_columns(); - - public: - // .io.deephaven.proto.backplane.grpc.Ticket result_id = 1; - bool has_result_id() const; - void clear_result_id() ; - const ::io::deephaven::proto::backplane::grpc::Ticket& result_id() const; - PROTOBUF_NODISCARD ::io::deephaven::proto::backplane::grpc::Ticket* release_result_id(); - ::io::deephaven::proto::backplane::grpc::Ticket* mutable_result_id(); - void set_allocated_result_id(::io::deephaven::proto::backplane::grpc::Ticket* value); - void unsafe_arena_set_allocated_result_id(::io::deephaven::proto::backplane::grpc::Ticket* value); - ::io::deephaven::proto::backplane::grpc::Ticket* unsafe_arena_release_result_id(); - - private: - const ::io::deephaven::proto::backplane::grpc::Ticket& _internal_result_id() const; - ::io::deephaven::proto::backplane::grpc::Ticket* _internal_mutable_result_id(); - - public: - // .io.deephaven.proto.backplane.grpc.TableReference base_id = 2; - bool has_base_id() const; - void clear_base_id() ; - const ::io::deephaven::proto::backplane::grpc::TableReference& base_id() const; - PROTOBUF_NODISCARD ::io::deephaven::proto::backplane::grpc::TableReference* release_base_id(); - ::io::deephaven::proto::backplane::grpc::TableReference* mutable_base_id(); - void set_allocated_base_id(::io::deephaven::proto::backplane::grpc::TableReference* value); - void unsafe_arena_set_allocated_base_id(::io::deephaven::proto::backplane::grpc::TableReference* value); - ::io::deephaven::proto::backplane::grpc::TableReference* unsafe_arena_release_base_id(); - - private: - const ::io::deephaven::proto::backplane::grpc::TableReference& _internal_base_id() const; - ::io::deephaven::proto::backplane::grpc::TableReference* _internal_mutable_base_id(); - - public: - // .io.deephaven.proto.backplane.grpc.TableReference trigger_id = 3; - bool has_trigger_id() const; - void clear_trigger_id() ; - const ::io::deephaven::proto::backplane::grpc::TableReference& trigger_id() const; - PROTOBUF_NODISCARD ::io::deephaven::proto::backplane::grpc::TableReference* release_trigger_id(); - ::io::deephaven::proto::backplane::grpc::TableReference* mutable_trigger_id(); - void set_allocated_trigger_id(::io::deephaven::proto::backplane::grpc::TableReference* value); - void unsafe_arena_set_allocated_trigger_id(::io::deephaven::proto::backplane::grpc::TableReference* value); - ::io::deephaven::proto::backplane::grpc::TableReference* unsafe_arena_release_trigger_id(); - - private: - const ::io::deephaven::proto::backplane::grpc::TableReference& _internal_trigger_id() const; - ::io::deephaven::proto::backplane::grpc::TableReference* _internal_mutable_trigger_id(); - - public: - // bool initial = 4; - void clear_initial() ; - bool initial() const; - void set_initial(bool value); - - private: - bool _internal_initial() const; - void _internal_set_initial(bool value); - - public: - // bool incremental = 5; - void clear_incremental() ; - bool incremental() const; - void set_incremental(bool value); - - private: - bool _internal_incremental() const; - void _internal_set_incremental(bool value); - - public: - // bool history = 6; - void clear_history() ; - bool history() const; - void set_history(bool value); - - private: - bool _internal_history() const; - void _internal_set_history(bool value); - - public: - // @@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 - 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 SnapshotWhenTableRequest& from_msg); - ::google::protobuf::internal::HasBits<1> _has_bits_; - mutable ::google::protobuf::internal::CachedSize _cached_size_; - ::google::protobuf::RepeatedPtrField stamp_columns_; - ::io::deephaven::proto::backplane::grpc::Ticket* result_id_; - ::io::deephaven::proto::backplane::grpc::TableReference* base_id_; - ::io::deephaven::proto::backplane::grpc::TableReference* trigger_id_; - bool initial_; - bool incremental_; - bool history_; - PROTOBUF_TSAN_DECLARE_MEMBER - }; - 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) */ { - public: - inline SnapshotTableRequest() : SnapshotTableRequest(nullptr) {} - ~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; - } - inline SnapshotTableRequest& operator=(SnapshotTableRequest&& 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 SnapshotTableRequest& default_instance() { - return *internal_default_instance(); - } - 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); } - 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 - if (GetArena() == other->GetArena()) { -#endif // !PROTOBUF_FORCE_COPY_IN_SWAP - InternalSwap(other); - } else { - ::google::protobuf::internal::GenericSwap(this, other); - } - } - void UnsafeArenaSwap(SnapshotTableRequest* other) { - if (other == this) return; - ABSL_DCHECK(GetArena() == other->GetArena()); - InternalSwap(other); - } - - // implements Message ---------------------------------------------- - - 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); } - - private: - static void MergeImpl( - ::google::protobuf::MessageLite& to_msg, - const ::google::protobuf::MessageLite& from_msg); - - 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; - #endif // PROTOBUF_CUSTOM_VTABLE - int GetCachedSize() const { return _impl_._cached_size_.Get(); } - - private: - void SharedCtor(::google::protobuf::Arena* arena); - void SharedDtor(); - void InternalSwap(SnapshotTableRequest* other); - private: - friend class ::google::protobuf::internal::AnyMetadata; - 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); - 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, - }; - // .io.deephaven.proto.backplane.grpc.Ticket result_id = 1; - bool has_result_id() const; - void clear_result_id() ; - const ::io::deephaven::proto::backplane::grpc::Ticket& result_id() const; - PROTOBUF_NODISCARD ::io::deephaven::proto::backplane::grpc::Ticket* release_result_id(); - ::io::deephaven::proto::backplane::grpc::Ticket* mutable_result_id(); - void set_allocated_result_id(::io::deephaven::proto::backplane::grpc::Ticket* value); - void unsafe_arena_set_allocated_result_id(::io::deephaven::proto::backplane::grpc::Ticket* value); - ::io::deephaven::proto::backplane::grpc::Ticket* unsafe_arena_release_result_id(); - - private: - const ::io::deephaven::proto::backplane::grpc::Ticket& _internal_result_id() const; - ::io::deephaven::proto::backplane::grpc::Ticket* _internal_mutable_result_id(); - - public: - // .io.deephaven.proto.backplane.grpc.TableReference source_id = 2; - bool has_source_id() const; - void clear_source_id() ; - const ::io::deephaven::proto::backplane::grpc::TableReference& source_id() const; - PROTOBUF_NODISCARD ::io::deephaven::proto::backplane::grpc::TableReference* release_source_id(); - ::io::deephaven::proto::backplane::grpc::TableReference* mutable_source_id(); - void set_allocated_source_id(::io::deephaven::proto::backplane::grpc::TableReference* value); - void unsafe_arena_set_allocated_source_id(::io::deephaven::proto::backplane::grpc::TableReference* value); - ::io::deephaven::proto::backplane::grpc::TableReference* unsafe_arena_release_source_id(); - - private: - const ::io::deephaven::proto::backplane::grpc::TableReference& _internal_source_id() const; - ::io::deephaven::proto::backplane::grpc::TableReference* _internal_mutable_source_id(); - - public: - // @@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 - 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 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_; - ::io::deephaven::proto::backplane::grpc::TableReference* source_id_; - PROTOBUF_TSAN_DECLARE_MEMBER - }; - 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) */ { - public: - inline SelectOrUpdateRequest() : SelectOrUpdateRequest(nullptr) {} - ~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; - } - inline SelectOrUpdateRequest& operator=(SelectOrUpdateRequest&& 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 SelectOrUpdateRequest& default_instance() { - return *internal_default_instance(); - } - 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); } - 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 - if (GetArena() == other->GetArena()) { -#endif // !PROTOBUF_FORCE_COPY_IN_SWAP - InternalSwap(other); - } else { - ::google::protobuf::internal::GenericSwap(this, other); - } - } - void UnsafeArenaSwap(SelectOrUpdateRequest* other) { - if (other == this) return; - ABSL_DCHECK(GetArena() == other->GetArena()); - InternalSwap(other); - } - - // implements Message ---------------------------------------------- - - 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); } - - private: - static void MergeImpl( - ::google::protobuf::MessageLite& to_msg, - const ::google::protobuf::MessageLite& from_msg); - - 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; - #endif // PROTOBUF_CUSTOM_VTABLE - int GetCachedSize() const { return _impl_._cached_size_.Get(); } - - private: - void SharedCtor(::google::protobuf::Arena* arena); - void SharedDtor(); - void InternalSwap(SelectOrUpdateRequest* other); - private: - friend class ::google::protobuf::internal::AnyMetadata; - 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); - 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, - kSourceIdFieldNumber = 2, - }; - // repeated string column_specs = 3; - int column_specs_size() const; - private: - int _internal_column_specs_size() const; - - public: - void clear_column_specs() ; - const std::string& column_specs(int index) const; - std::string* mutable_column_specs(int index); - template - void set_column_specs(int index, Arg_&& value, Args_... args); - std::string* add_column_specs(); - template - void add_column_specs(Arg_&& value, Args_... args); - const ::google::protobuf::RepeatedPtrField& column_specs() const; - ::google::protobuf::RepeatedPtrField* mutable_column_specs(); - - private: - const ::google::protobuf::RepeatedPtrField& _internal_column_specs() const; - ::google::protobuf::RepeatedPtrField* _internal_mutable_column_specs(); - - public: - // .io.deephaven.proto.backplane.grpc.Ticket result_id = 1; - bool has_result_id() const; - void clear_result_id() ; - const ::io::deephaven::proto::backplane::grpc::Ticket& result_id() const; - PROTOBUF_NODISCARD ::io::deephaven::proto::backplane::grpc::Ticket* release_result_id(); - ::io::deephaven::proto::backplane::grpc::Ticket* mutable_result_id(); - void set_allocated_result_id(::io::deephaven::proto::backplane::grpc::Ticket* value); - void unsafe_arena_set_allocated_result_id(::io::deephaven::proto::backplane::grpc::Ticket* value); - ::io::deephaven::proto::backplane::grpc::Ticket* unsafe_arena_release_result_id(); - - private: - const ::io::deephaven::proto::backplane::grpc::Ticket& _internal_result_id() const; - ::io::deephaven::proto::backplane::grpc::Ticket* _internal_mutable_result_id(); - - public: - // .io.deephaven.proto.backplane.grpc.TableReference source_id = 2; - bool has_source_id() const; - void clear_source_id() ; - const ::io::deephaven::proto::backplane::grpc::TableReference& source_id() const; - PROTOBUF_NODISCARD ::io::deephaven::proto::backplane::grpc::TableReference* release_source_id(); - ::io::deephaven::proto::backplane::grpc::TableReference* mutable_source_id(); - void set_allocated_source_id(::io::deephaven::proto::backplane::grpc::TableReference* value); - void unsafe_arena_set_allocated_source_id(::io::deephaven::proto::backplane::grpc::TableReference* value); - ::io::deephaven::proto::backplane::grpc::TableReference* unsafe_arena_release_source_id(); - - private: - const ::io::deephaven::proto::backplane::grpc::TableReference& _internal_source_id() const; - ::io::deephaven::proto::backplane::grpc::TableReference* _internal_mutable_source_id(); - - public: - // @@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 - 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 SelectOrUpdateRequest& from_msg); - ::google::protobuf::internal::HasBits<1> _has_bits_; - mutable ::google::protobuf::internal::CachedSize _cached_size_; - ::google::protobuf::RepeatedPtrField column_specs_; - ::io::deephaven::proto::backplane::grpc::Ticket* result_id_; - ::io::deephaven::proto::backplane::grpc::TableReference* source_id_; - PROTOBUF_TSAN_DECLARE_MEMBER - }; - 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) */ { - public: - inline SelectDistinctRequest() : SelectDistinctRequest(nullptr) {} - ~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; - } - inline SelectDistinctRequest& operator=(SelectDistinctRequest&& 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 SelectDistinctRequest& default_instance() { - return *internal_default_instance(); - } - 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); } - 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 - if (GetArena() == other->GetArena()) { -#endif // !PROTOBUF_FORCE_COPY_IN_SWAP - InternalSwap(other); - } else { - ::google::protobuf::internal::GenericSwap(this, other); - } - } - void UnsafeArenaSwap(SelectDistinctRequest* other) { - if (other == this) return; - ABSL_DCHECK(GetArena() == other->GetArena()); - InternalSwap(other); - } - - // implements Message ---------------------------------------------- - - 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); } - - private: - static void MergeImpl( - ::google::protobuf::MessageLite& to_msg, - const ::google::protobuf::MessageLite& from_msg); - - 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; - #endif // PROTOBUF_CUSTOM_VTABLE - int GetCachedSize() const { return _impl_._cached_size_.Get(); } - - private: - void SharedCtor(::google::protobuf::Arena* arena); - void SharedDtor(); - void InternalSwap(SelectDistinctRequest* other); - private: - friend class ::google::protobuf::internal::AnyMetadata; - 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); - 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, - kSourceIdFieldNumber = 2, - }; - // repeated string column_names = 3; - int column_names_size() const; - private: - int _internal_column_names_size() const; - - public: - void clear_column_names() ; - const std::string& column_names(int index) const; - std::string* mutable_column_names(int index); - template - void set_column_names(int index, Arg_&& value, Args_... args); - std::string* add_column_names(); - template - void add_column_names(Arg_&& value, Args_... args); - const ::google::protobuf::RepeatedPtrField& column_names() const; - ::google::protobuf::RepeatedPtrField* mutable_column_names(); - - private: - const ::google::protobuf::RepeatedPtrField& _internal_column_names() const; - ::google::protobuf::RepeatedPtrField* _internal_mutable_column_names(); - - public: - // .io.deephaven.proto.backplane.grpc.Ticket result_id = 1; - bool has_result_id() const; - void clear_result_id() ; - const ::io::deephaven::proto::backplane::grpc::Ticket& result_id() const; - PROTOBUF_NODISCARD ::io::deephaven::proto::backplane::grpc::Ticket* release_result_id(); - ::io::deephaven::proto::backplane::grpc::Ticket* mutable_result_id(); - void set_allocated_result_id(::io::deephaven::proto::backplane::grpc::Ticket* value); - void unsafe_arena_set_allocated_result_id(::io::deephaven::proto::backplane::grpc::Ticket* value); - ::io::deephaven::proto::backplane::grpc::Ticket* unsafe_arena_release_result_id(); - - private: - const ::io::deephaven::proto::backplane::grpc::Ticket& _internal_result_id() const; - ::io::deephaven::proto::backplane::grpc::Ticket* _internal_mutable_result_id(); - - public: - // .io.deephaven.proto.backplane.grpc.TableReference source_id = 2; - bool has_source_id() const; - void clear_source_id() ; - const ::io::deephaven::proto::backplane::grpc::TableReference& source_id() const; - PROTOBUF_NODISCARD ::io::deephaven::proto::backplane::grpc::TableReference* release_source_id(); - ::io::deephaven::proto::backplane::grpc::TableReference* mutable_source_id(); - void set_allocated_source_id(::io::deephaven::proto::backplane::grpc::TableReference* value); - void unsafe_arena_set_allocated_source_id(::io::deephaven::proto::backplane::grpc::TableReference* value); - ::io::deephaven::proto::backplane::grpc::TableReference* unsafe_arena_release_source_id(); - - private: - const ::io::deephaven::proto::backplane::grpc::TableReference& _internal_source_id() const; - ::io::deephaven::proto::backplane::grpc::TableReference* _internal_mutable_source_id(); - - public: - // @@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 - 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 SelectDistinctRequest& from_msg); - ::google::protobuf::internal::HasBits<1> _has_bits_; - mutable ::google::protobuf::internal::CachedSize _cached_size_; - ::google::protobuf::RepeatedPtrField column_names_; - ::io::deephaven::proto::backplane::grpc::Ticket* result_id_; - ::io::deephaven::proto::backplane::grpc::TableReference* source_id_; - PROTOBUF_TSAN_DECLARE_MEMBER - }; - 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) */ { - public: - inline RunChartDownsampleRequest() : RunChartDownsampleRequest(nullptr) {} - ~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; - } - inline RunChartDownsampleRequest& operator=(RunChartDownsampleRequest&& 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 RunChartDownsampleRequest& default_instance() { - return *internal_default_instance(); - } - 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); } - 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 - if (GetArena() == other->GetArena()) { -#endif // !PROTOBUF_FORCE_COPY_IN_SWAP - InternalSwap(other); - } else { - ::google::protobuf::internal::GenericSwap(this, other); - } - } - void UnsafeArenaSwap(RunChartDownsampleRequest* other) { - if (other == this) return; - ABSL_DCHECK(GetArena() == other->GetArena()); - InternalSwap(other); - } - - // implements Message ---------------------------------------------- - - 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); } - - private: - static void MergeImpl( - ::google::protobuf::MessageLite& to_msg, - const ::google::protobuf::MessageLite& from_msg); - - 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; - #endif // PROTOBUF_CUSTOM_VTABLE - int GetCachedSize() const { return _impl_._cached_size_.Get(); } - - private: - void SharedCtor(::google::protobuf::Arena* arena); - void SharedDtor(); - void InternalSwap(RunChartDownsampleRequest* other); - private: - friend class ::google::protobuf::internal::AnyMetadata; - 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); - 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, - kResultIdFieldNumber = 1, - kSourceIdFieldNumber = 2, - kZoomRangeFieldNumber = 4, - kPixelCountFieldNumber = 3, - }; - // repeated string y_column_names = 6; - int y_column_names_size() const; - private: - int _internal_y_column_names_size() const; - - public: - void clear_y_column_names() ; - const std::string& y_column_names(int index) const; - std::string* mutable_y_column_names(int index); - template - void set_y_column_names(int index, Arg_&& value, Args_... args); - std::string* add_y_column_names(); - 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(); - - private: - const ::google::protobuf::RepeatedPtrField& _internal_y_column_names() const; - ::google::protobuf::RepeatedPtrField* _internal_mutable_y_column_names(); - - public: - // string x_column_name = 5; - void clear_x_column_name() ; - const std::string& x_column_name() const; - template - void set_x_column_name(Arg_&& arg, Args_... args); - std::string* mutable_x_column_name(); - PROTOBUF_NODISCARD std::string* release_x_column_name(); - void set_allocated_x_column_name(std::string* value); - - private: - const std::string& _internal_x_column_name() const; - inline PROTOBUF_ALWAYS_INLINE void _internal_set_x_column_name( - const std::string& value); - std::string* _internal_mutable_x_column_name(); - - public: - // .io.deephaven.proto.backplane.grpc.Ticket result_id = 1; - bool has_result_id() const; - void clear_result_id() ; - const ::io::deephaven::proto::backplane::grpc::Ticket& result_id() const; - PROTOBUF_NODISCARD ::io::deephaven::proto::backplane::grpc::Ticket* release_result_id(); - ::io::deephaven::proto::backplane::grpc::Ticket* mutable_result_id(); - void set_allocated_result_id(::io::deephaven::proto::backplane::grpc::Ticket* value); - void unsafe_arena_set_allocated_result_id(::io::deephaven::proto::backplane::grpc::Ticket* value); - ::io::deephaven::proto::backplane::grpc::Ticket* unsafe_arena_release_result_id(); - - private: - const ::io::deephaven::proto::backplane::grpc::Ticket& _internal_result_id() const; - ::io::deephaven::proto::backplane::grpc::Ticket* _internal_mutable_result_id(); - - public: - // .io.deephaven.proto.backplane.grpc.TableReference source_id = 2; - bool has_source_id() const; - void clear_source_id() ; - const ::io::deephaven::proto::backplane::grpc::TableReference& source_id() const; - PROTOBUF_NODISCARD ::io::deephaven::proto::backplane::grpc::TableReference* release_source_id(); - ::io::deephaven::proto::backplane::grpc::TableReference* mutable_source_id(); - void set_allocated_source_id(::io::deephaven::proto::backplane::grpc::TableReference* value); - void unsafe_arena_set_allocated_source_id(::io::deephaven::proto::backplane::grpc::TableReference* value); - ::io::deephaven::proto::backplane::grpc::TableReference* unsafe_arena_release_source_id(); - - private: - const ::io::deephaven::proto::backplane::grpc::TableReference& _internal_source_id() const; - ::io::deephaven::proto::backplane::grpc::TableReference* _internal_mutable_source_id(); - - public: - // .io.deephaven.proto.backplane.grpc.RunChartDownsampleRequest.ZoomRange zoom_range = 4; - bool has_zoom_range() const; - void clear_zoom_range() ; - const ::io::deephaven::proto::backplane::grpc::RunChartDownsampleRequest_ZoomRange& zoom_range() const; - PROTOBUF_NODISCARD ::io::deephaven::proto::backplane::grpc::RunChartDownsampleRequest_ZoomRange* release_zoom_range(); - ::io::deephaven::proto::backplane::grpc::RunChartDownsampleRequest_ZoomRange* mutable_zoom_range(); - void set_allocated_zoom_range(::io::deephaven::proto::backplane::grpc::RunChartDownsampleRequest_ZoomRange* value); - void unsafe_arena_set_allocated_zoom_range(::io::deephaven::proto::backplane::grpc::RunChartDownsampleRequest_ZoomRange* value); - ::io::deephaven::proto::backplane::grpc::RunChartDownsampleRequest_ZoomRange* unsafe_arena_release_zoom_range(); - - private: - const ::io::deephaven::proto::backplane::grpc::RunChartDownsampleRequest_ZoomRange& _internal_zoom_range() const; - ::io::deephaven::proto::backplane::grpc::RunChartDownsampleRequest_ZoomRange* _internal_mutable_zoom_range(); - - public: - // int32 pixel_count = 3; - void clear_pixel_count() ; - ::int32_t pixel_count() const; - void set_pixel_count(::int32_t value); - - private: - ::int32_t _internal_pixel_count() const; - void _internal_set_pixel_count(::int32_t value); - - public: - // @@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 - 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 RunChartDownsampleRequest& from_msg); - ::google::protobuf::internal::HasBits<1> _has_bits_; - mutable ::google::protobuf::internal::CachedSize _cached_size_; - ::google::protobuf::RepeatedPtrField y_column_names_; - ::google::protobuf::internal::ArenaStringPtr x_column_name_; - ::io::deephaven::proto::backplane::grpc::Ticket* result_id_; - ::io::deephaven::proto::backplane::grpc::TableReference* source_id_; - ::io::deephaven::proto::backplane::grpc::RunChartDownsampleRequest_ZoomRange* zoom_range_; - ::int32_t pixel_count_; - PROTOBUF_TSAN_DECLARE_MEMBER - }; - 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) */ { - public: - inline NaturalJoinTablesRequest() : NaturalJoinTablesRequest(nullptr) {} - ~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; - } - inline NaturalJoinTablesRequest& operator=(NaturalJoinTablesRequest&& 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 NaturalJoinTablesRequest& default_instance() { - return *internal_default_instance(); - } - 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); } - 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 - if (GetArena() == other->GetArena()) { -#endif // !PROTOBUF_FORCE_COPY_IN_SWAP - InternalSwap(other); - } else { - ::google::protobuf::internal::GenericSwap(this, other); - } - } - void UnsafeArenaSwap(NaturalJoinTablesRequest* other) { - if (other == this) return; - ABSL_DCHECK(GetArena() == other->GetArena()); - InternalSwap(other); - } - - // implements Message ---------------------------------------------- - - 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); } - - private: - static void MergeImpl( - ::google::protobuf::MessageLite& to_msg, - const ::google::protobuf::MessageLite& from_msg); - - 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; - #endif // PROTOBUF_CUSTOM_VTABLE - int GetCachedSize() const { return _impl_._cached_size_.Get(); } - - private: - void SharedCtor(::google::protobuf::Arena* arena); - void SharedDtor(); - void InternalSwap(NaturalJoinTablesRequest* other); - private: - friend class ::google::protobuf::internal::AnyMetadata; - 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); - 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, - kResultIdFieldNumber = 1, - kLeftIdFieldNumber = 2, - kRightIdFieldNumber = 3, - }; - // repeated string columns_to_match = 4; - int columns_to_match_size() const; - private: - int _internal_columns_to_match_size() const; - - public: - void clear_columns_to_match() ; - const std::string& columns_to_match(int index) const; - std::string* mutable_columns_to_match(int index); - template - void set_columns_to_match(int index, Arg_&& value, Args_... args); - std::string* add_columns_to_match(); - 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(); - - private: - const ::google::protobuf::RepeatedPtrField& _internal_columns_to_match() const; - ::google::protobuf::RepeatedPtrField* _internal_mutable_columns_to_match(); - - public: - // repeated string columns_to_add = 5; - int columns_to_add_size() const; - private: - int _internal_columns_to_add_size() const; - - public: - void clear_columns_to_add() ; - const std::string& columns_to_add(int index) const; - std::string* mutable_columns_to_add(int index); - template - void set_columns_to_add(int index, Arg_&& value, Args_... args); - std::string* add_columns_to_add(); - 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(); - - private: - const ::google::protobuf::RepeatedPtrField& _internal_columns_to_add() const; - ::google::protobuf::RepeatedPtrField* _internal_mutable_columns_to_add(); - - public: - // .io.deephaven.proto.backplane.grpc.Ticket result_id = 1; - bool has_result_id() const; - void clear_result_id() ; - const ::io::deephaven::proto::backplane::grpc::Ticket& result_id() const; - PROTOBUF_NODISCARD ::io::deephaven::proto::backplane::grpc::Ticket* release_result_id(); - ::io::deephaven::proto::backplane::grpc::Ticket* mutable_result_id(); - void set_allocated_result_id(::io::deephaven::proto::backplane::grpc::Ticket* value); - void unsafe_arena_set_allocated_result_id(::io::deephaven::proto::backplane::grpc::Ticket* value); - ::io::deephaven::proto::backplane::grpc::Ticket* unsafe_arena_release_result_id(); - - private: - const ::io::deephaven::proto::backplane::grpc::Ticket& _internal_result_id() const; - ::io::deephaven::proto::backplane::grpc::Ticket* _internal_mutable_result_id(); - - public: - // .io.deephaven.proto.backplane.grpc.TableReference left_id = 2; - bool has_left_id() const; - void clear_left_id() ; - const ::io::deephaven::proto::backplane::grpc::TableReference& left_id() const; - PROTOBUF_NODISCARD ::io::deephaven::proto::backplane::grpc::TableReference* release_left_id(); - ::io::deephaven::proto::backplane::grpc::TableReference* mutable_left_id(); - void set_allocated_left_id(::io::deephaven::proto::backplane::grpc::TableReference* value); - void unsafe_arena_set_allocated_left_id(::io::deephaven::proto::backplane::grpc::TableReference* value); - ::io::deephaven::proto::backplane::grpc::TableReference* unsafe_arena_release_left_id(); - - private: - const ::io::deephaven::proto::backplane::grpc::TableReference& _internal_left_id() const; - ::io::deephaven::proto::backplane::grpc::TableReference* _internal_mutable_left_id(); - - public: - // .io.deephaven.proto.backplane.grpc.TableReference right_id = 3; - bool has_right_id() const; - void clear_right_id() ; - const ::io::deephaven::proto::backplane::grpc::TableReference& right_id() const; - PROTOBUF_NODISCARD ::io::deephaven::proto::backplane::grpc::TableReference* release_right_id(); - ::io::deephaven::proto::backplane::grpc::TableReference* mutable_right_id(); - void set_allocated_right_id(::io::deephaven::proto::backplane::grpc::TableReference* value); - void unsafe_arena_set_allocated_right_id(::io::deephaven::proto::backplane::grpc::TableReference* value); - ::io::deephaven::proto::backplane::grpc::TableReference* unsafe_arena_release_right_id(); - - private: - const ::io::deephaven::proto::backplane::grpc::TableReference& _internal_right_id() const; - ::io::deephaven::proto::backplane::grpc::TableReference* _internal_mutable_right_id(); - - public: - // @@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 - 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 NaturalJoinTablesRequest& from_msg); - ::google::protobuf::internal::HasBits<1> _has_bits_; - mutable ::google::protobuf::internal::CachedSize _cached_size_; - ::google::protobuf::RepeatedPtrField columns_to_match_; - ::google::protobuf::RepeatedPtrField columns_to_add_; - ::io::deephaven::proto::backplane::grpc::Ticket* result_id_; - ::io::deephaven::proto::backplane::grpc::TableReference* left_id_; - ::io::deephaven::proto::backplane::grpc::TableReference* right_id_; - PROTOBUF_TSAN_DECLARE_MEMBER - }; - 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) */ { - public: - inline MultiJoinInput() : MultiJoinInput(nullptr) {} - ~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; - } - inline MultiJoinInput& operator=(MultiJoinInput&& 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 MultiJoinInput& default_instance() { - return *internal_default_instance(); - } - 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); } - 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 - if (GetArena() == other->GetArena()) { -#endif // !PROTOBUF_FORCE_COPY_IN_SWAP - InternalSwap(other); - } else { - ::google::protobuf::internal::GenericSwap(this, other); - } - } - void UnsafeArenaSwap(MultiJoinInput* other) { - if (other == this) return; - ABSL_DCHECK(GetArena() == other->GetArena()); - InternalSwap(other); - } - - // implements Message ---------------------------------------------- - - 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); } - - private: - static void MergeImpl( - ::google::protobuf::MessageLite& to_msg, - const ::google::protobuf::MessageLite& from_msg); - - 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; - #endif // PROTOBUF_CUSTOM_VTABLE - int GetCachedSize() const { return _impl_._cached_size_.Get(); } - - private: - void SharedCtor(::google::protobuf::Arena* arena); - void SharedDtor(); - void InternalSwap(MultiJoinInput* other); - private: - friend class ::google::protobuf::internal::AnyMetadata; - 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); - 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, - kSourceIdFieldNumber = 1, - }; - // repeated string columns_to_match = 2; - int columns_to_match_size() const; - private: - int _internal_columns_to_match_size() const; - - public: - void clear_columns_to_match() ; - const std::string& columns_to_match(int index) const; - std::string* mutable_columns_to_match(int index); - template - void set_columns_to_match(int index, Arg_&& value, Args_... args); - std::string* add_columns_to_match(); - 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(); - - private: - const ::google::protobuf::RepeatedPtrField& _internal_columns_to_match() const; - ::google::protobuf::RepeatedPtrField* _internal_mutable_columns_to_match(); - - public: - // repeated string columns_to_add = 3; - int columns_to_add_size() const; - private: - int _internal_columns_to_add_size() const; - - public: - void clear_columns_to_add() ; - const std::string& columns_to_add(int index) const; - std::string* mutable_columns_to_add(int index); - template - void set_columns_to_add(int index, Arg_&& value, Args_... args); - std::string* add_columns_to_add(); - 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(); - - private: - const ::google::protobuf::RepeatedPtrField& _internal_columns_to_add() const; - ::google::protobuf::RepeatedPtrField* _internal_mutable_columns_to_add(); - - public: - // .io.deephaven.proto.backplane.grpc.TableReference source_id = 1; - bool has_source_id() const; - void clear_source_id() ; - const ::io::deephaven::proto::backplane::grpc::TableReference& source_id() const; - PROTOBUF_NODISCARD ::io::deephaven::proto::backplane::grpc::TableReference* release_source_id(); - ::io::deephaven::proto::backplane::grpc::TableReference* mutable_source_id(); - void set_allocated_source_id(::io::deephaven::proto::backplane::grpc::TableReference* value); - void unsafe_arena_set_allocated_source_id(::io::deephaven::proto::backplane::grpc::TableReference* value); - ::io::deephaven::proto::backplane::grpc::TableReference* unsafe_arena_release_source_id(); - - private: - const ::io::deephaven::proto::backplane::grpc::TableReference& _internal_source_id() const; - ::io::deephaven::proto::backplane::grpc::TableReference* _internal_mutable_source_id(); - - public: - // @@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 - 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 MultiJoinInput& from_msg); - ::google::protobuf::internal::HasBits<1> _has_bits_; - mutable ::google::protobuf::internal::CachedSize _cached_size_; - ::google::protobuf::RepeatedPtrField columns_to_match_; - ::google::protobuf::RepeatedPtrField columns_to_add_; - ::io::deephaven::proto::backplane::grpc::TableReference* source_id_; - PROTOBUF_TSAN_DECLARE_MEMBER - }; - 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) */ { - public: - inline MetaTableRequest() : MetaTableRequest(nullptr) {} - ~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; - } - inline MetaTableRequest& operator=(MetaTableRequest&& 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 MetaTableRequest& default_instance() { - return *internal_default_instance(); - } - 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); } - 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 - if (GetArena() == other->GetArena()) { -#endif // !PROTOBUF_FORCE_COPY_IN_SWAP - InternalSwap(other); - } else { - ::google::protobuf::internal::GenericSwap(this, other); - } - } - void UnsafeArenaSwap(MetaTableRequest* other) { - if (other == this) return; - ABSL_DCHECK(GetArena() == other->GetArena()); - InternalSwap(other); - } - - // implements Message ---------------------------------------------- - - 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); } - - private: - static void MergeImpl( - ::google::protobuf::MessageLite& to_msg, - const ::google::protobuf::MessageLite& from_msg); - - 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; - #endif // PROTOBUF_CUSTOM_VTABLE - int GetCachedSize() const { return _impl_._cached_size_.Get(); } - - private: - void SharedCtor(::google::protobuf::Arena* arena); - void SharedDtor(); - void InternalSwap(MetaTableRequest* other); - private: - friend class ::google::protobuf::internal::AnyMetadata; - 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); - 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, - }; - // .io.deephaven.proto.backplane.grpc.Ticket result_id = 1; - bool has_result_id() const; - void clear_result_id() ; - const ::io::deephaven::proto::backplane::grpc::Ticket& result_id() const; - PROTOBUF_NODISCARD ::io::deephaven::proto::backplane::grpc::Ticket* release_result_id(); - ::io::deephaven::proto::backplane::grpc::Ticket* mutable_result_id(); - void set_allocated_result_id(::io::deephaven::proto::backplane::grpc::Ticket* value); - void unsafe_arena_set_allocated_result_id(::io::deephaven::proto::backplane::grpc::Ticket* value); - ::io::deephaven::proto::backplane::grpc::Ticket* unsafe_arena_release_result_id(); - - private: - const ::io::deephaven::proto::backplane::grpc::Ticket& _internal_result_id() const; - ::io::deephaven::proto::backplane::grpc::Ticket* _internal_mutable_result_id(); - - public: - // .io.deephaven.proto.backplane.grpc.TableReference source_id = 2; - bool has_source_id() const; - void clear_source_id() ; - const ::io::deephaven::proto::backplane::grpc::TableReference& source_id() const; - PROTOBUF_NODISCARD ::io::deephaven::proto::backplane::grpc::TableReference* release_source_id(); - ::io::deephaven::proto::backplane::grpc::TableReference* mutable_source_id(); - void set_allocated_source_id(::io::deephaven::proto::backplane::grpc::TableReference* value); - void unsafe_arena_set_allocated_source_id(::io::deephaven::proto::backplane::grpc::TableReference* value); - ::io::deephaven::proto::backplane::grpc::TableReference* unsafe_arena_release_source_id(); - - private: - const ::io::deephaven::proto::backplane::grpc::TableReference& _internal_source_id() const; - ::io::deephaven::proto::backplane::grpc::TableReference* _internal_mutable_source_id(); - - public: - // @@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 - 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 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_; - ::io::deephaven::proto::backplane::grpc::TableReference* source_id_; - PROTOBUF_TSAN_DECLARE_MEMBER - }; - 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) */ { - public: - inline MergeTablesRequest() : MergeTablesRequest(nullptr) {} - ~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; - } - inline MergeTablesRequest& operator=(MergeTablesRequest&& 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 MergeTablesRequest& default_instance() { - return *internal_default_instance(); - } - 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); } - 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 - if (GetArena() == other->GetArena()) { -#endif // !PROTOBUF_FORCE_COPY_IN_SWAP - InternalSwap(other); - } else { - ::google::protobuf::internal::GenericSwap(this, other); - } - } - void UnsafeArenaSwap(MergeTablesRequest* other) { - if (other == this) return; - ABSL_DCHECK(GetArena() == other->GetArena()); - InternalSwap(other); - } - - // implements Message ---------------------------------------------- - - 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); } - - private: - static void MergeImpl( - ::google::protobuf::MessageLite& to_msg, - const ::google::protobuf::MessageLite& from_msg); - - 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; - #endif // PROTOBUF_CUSTOM_VTABLE - int GetCachedSize() const { return _impl_._cached_size_.Get(); } - - private: - void SharedCtor(::google::protobuf::Arena* arena); - void SharedDtor(); - void InternalSwap(MergeTablesRequest* other); - private: - friend class ::google::protobuf::internal::AnyMetadata; - 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); - 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, - kResultIdFieldNumber = 1, - }; - // repeated .io.deephaven.proto.backplane.grpc.TableReference source_ids = 2; - int source_ids_size() const; - private: - int _internal_source_ids_size() const; - - 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(); - - 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; - // string key_column = 3; - void clear_key_column() ; - const std::string& key_column() const; - template - void set_key_column(Arg_&& arg, Args_... args); - std::string* mutable_key_column(); - PROTOBUF_NODISCARD std::string* release_key_column(); - void set_allocated_key_column(std::string* value); - - private: - const std::string& _internal_key_column() const; - inline PROTOBUF_ALWAYS_INLINE void _internal_set_key_column( - const std::string& value); - std::string* _internal_mutable_key_column(); - - public: - // .io.deephaven.proto.backplane.grpc.Ticket result_id = 1; - bool has_result_id() const; - void clear_result_id() ; - const ::io::deephaven::proto::backplane::grpc::Ticket& result_id() const; - PROTOBUF_NODISCARD ::io::deephaven::proto::backplane::grpc::Ticket* release_result_id(); - ::io::deephaven::proto::backplane::grpc::Ticket* mutable_result_id(); - void set_allocated_result_id(::io::deephaven::proto::backplane::grpc::Ticket* value); - void unsafe_arena_set_allocated_result_id(::io::deephaven::proto::backplane::grpc::Ticket* value); - ::io::deephaven::proto::backplane::grpc::Ticket* unsafe_arena_release_result_id(); - - private: - const ::io::deephaven::proto::backplane::grpc::Ticket& _internal_result_id() const; - ::io::deephaven::proto::backplane::grpc::Ticket* _internal_mutable_result_id(); - - public: - // @@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 - 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 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_; - ::google::protobuf::internal::ArenaStringPtr key_column_; - ::io::deephaven::proto::backplane::grpc::Ticket* result_id_; - PROTOBUF_TSAN_DECLARE_MEMBER - }; - 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) */ { - public: - inline LeftJoinTablesRequest() : LeftJoinTablesRequest(nullptr) {} - ~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; - } - inline LeftJoinTablesRequest& operator=(LeftJoinTablesRequest&& 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 LeftJoinTablesRequest& default_instance() { - return *internal_default_instance(); - } - 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); } - 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 - if (GetArena() == other->GetArena()) { -#endif // !PROTOBUF_FORCE_COPY_IN_SWAP - InternalSwap(other); - } else { - ::google::protobuf::internal::GenericSwap(this, other); - } - } - void UnsafeArenaSwap(LeftJoinTablesRequest* other) { - if (other == this) return; - ABSL_DCHECK(GetArena() == other->GetArena()); - InternalSwap(other); - } - - // implements Message ---------------------------------------------- - - 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); } - - private: - static void MergeImpl( - ::google::protobuf::MessageLite& to_msg, - const ::google::protobuf::MessageLite& from_msg); - - 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; - #endif // PROTOBUF_CUSTOM_VTABLE - int GetCachedSize() const { return _impl_._cached_size_.Get(); } - - private: - void SharedCtor(::google::protobuf::Arena* arena); - void SharedDtor(); - void InternalSwap(LeftJoinTablesRequest* other); - private: - friend class ::google::protobuf::internal::AnyMetadata; - 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); - 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, - kResultIdFieldNumber = 1, - kLeftIdFieldNumber = 2, - kRightIdFieldNumber = 3, - }; - // repeated string columns_to_match = 4; - int columns_to_match_size() const; - private: - int _internal_columns_to_match_size() const; - - public: - void clear_columns_to_match() ; - const std::string& columns_to_match(int index) const; - std::string* mutable_columns_to_match(int index); - template - void set_columns_to_match(int index, Arg_&& value, Args_... args); - std::string* add_columns_to_match(); - 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(); - - private: - const ::google::protobuf::RepeatedPtrField& _internal_columns_to_match() const; - ::google::protobuf::RepeatedPtrField* _internal_mutable_columns_to_match(); - - public: - // repeated string columns_to_add = 5; - int columns_to_add_size() const; - private: - int _internal_columns_to_add_size() const; - - public: - void clear_columns_to_add() ; - const std::string& columns_to_add(int index) const; - std::string* mutable_columns_to_add(int index); - template - void set_columns_to_add(int index, Arg_&& value, Args_... args); - std::string* add_columns_to_add(); - 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(); - - private: - const ::google::protobuf::RepeatedPtrField& _internal_columns_to_add() const; - ::google::protobuf::RepeatedPtrField* _internal_mutable_columns_to_add(); - - public: - // .io.deephaven.proto.backplane.grpc.Ticket result_id = 1; - bool has_result_id() const; - void clear_result_id() ; - const ::io::deephaven::proto::backplane::grpc::Ticket& result_id() const; - PROTOBUF_NODISCARD ::io::deephaven::proto::backplane::grpc::Ticket* release_result_id(); - ::io::deephaven::proto::backplane::grpc::Ticket* mutable_result_id(); - void set_allocated_result_id(::io::deephaven::proto::backplane::grpc::Ticket* value); - void unsafe_arena_set_allocated_result_id(::io::deephaven::proto::backplane::grpc::Ticket* value); - ::io::deephaven::proto::backplane::grpc::Ticket* unsafe_arena_release_result_id(); - - private: - const ::io::deephaven::proto::backplane::grpc::Ticket& _internal_result_id() const; - ::io::deephaven::proto::backplane::grpc::Ticket* _internal_mutable_result_id(); - - public: - // .io.deephaven.proto.backplane.grpc.TableReference left_id = 2; - bool has_left_id() const; - void clear_left_id() ; - const ::io::deephaven::proto::backplane::grpc::TableReference& left_id() const; - PROTOBUF_NODISCARD ::io::deephaven::proto::backplane::grpc::TableReference* release_left_id(); - ::io::deephaven::proto::backplane::grpc::TableReference* mutable_left_id(); - void set_allocated_left_id(::io::deephaven::proto::backplane::grpc::TableReference* value); - void unsafe_arena_set_allocated_left_id(::io::deephaven::proto::backplane::grpc::TableReference* value); - ::io::deephaven::proto::backplane::grpc::TableReference* unsafe_arena_release_left_id(); - - private: - const ::io::deephaven::proto::backplane::grpc::TableReference& _internal_left_id() const; - ::io::deephaven::proto::backplane::grpc::TableReference* _internal_mutable_left_id(); - - public: - // .io.deephaven.proto.backplane.grpc.TableReference right_id = 3; - bool has_right_id() const; - void clear_right_id() ; - const ::io::deephaven::proto::backplane::grpc::TableReference& right_id() const; - PROTOBUF_NODISCARD ::io::deephaven::proto::backplane::grpc::TableReference* release_right_id(); - ::io::deephaven::proto::backplane::grpc::TableReference* mutable_right_id(); - void set_allocated_right_id(::io::deephaven::proto::backplane::grpc::TableReference* value); - void unsafe_arena_set_allocated_right_id(::io::deephaven::proto::backplane::grpc::TableReference* value); - ::io::deephaven::proto::backplane::grpc::TableReference* unsafe_arena_release_right_id(); - - private: - const ::io::deephaven::proto::backplane::grpc::TableReference& _internal_right_id() const; - ::io::deephaven::proto::backplane::grpc::TableReference* _internal_mutable_right_id(); - - public: - // @@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 - 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 LeftJoinTablesRequest& from_msg); - ::google::protobuf::internal::HasBits<1> _has_bits_; - mutable ::google::protobuf::internal::CachedSize _cached_size_; - ::google::protobuf::RepeatedPtrField columns_to_match_; - ::google::protobuf::RepeatedPtrField columns_to_add_; - ::io::deephaven::proto::backplane::grpc::Ticket* result_id_; - ::io::deephaven::proto::backplane::grpc::TableReference* left_id_; - ::io::deephaven::proto::backplane::grpc::TableReference* right_id_; - PROTOBUF_TSAN_DECLARE_MEMBER - }; - 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) */ { - public: - inline InvokeCondition() : InvokeCondition(nullptr) {} - ~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; - } - inline InvokeCondition& operator=(InvokeCondition&& 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 InvokeCondition& default_instance() { - return *internal_default_instance(); - } - 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); } - 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 - if (GetArena() == other->GetArena()) { -#endif // !PROTOBUF_FORCE_COPY_IN_SWAP - InternalSwap(other); - } else { - ::google::protobuf::internal::GenericSwap(this, other); - } - } - void UnsafeArenaSwap(InvokeCondition* other) { - if (other == this) return; - ABSL_DCHECK(GetArena() == other->GetArena()); - InternalSwap(other); - } - - // implements Message ---------------------------------------------- - - 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); } - - private: - static void MergeImpl( - ::google::protobuf::MessageLite& to_msg, - const ::google::protobuf::MessageLite& from_msg); - - 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; - #endif // PROTOBUF_CUSTOM_VTABLE - int GetCachedSize() const { return _impl_._cached_size_.Get(); } - - private: - void SharedCtor(::google::protobuf::Arena* arena); - void SharedDtor(); - void InternalSwap(InvokeCondition* other); - private: - friend class ::google::protobuf::internal::AnyMetadata; - 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); - 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, - kTargetFieldNumber = 2, - }; - // repeated .io.deephaven.proto.backplane.grpc.Value arguments = 3; - int arguments_size() const; - private: - int _internal_arguments_size() const; - - 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(); - - 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; - // string method = 1; - void clear_method() ; - const std::string& method() const; - template - void set_method(Arg_&& arg, Args_... args); - std::string* mutable_method(); - PROTOBUF_NODISCARD std::string* release_method(); - void set_allocated_method(std::string* value); - - private: - const std::string& _internal_method() const; - inline PROTOBUF_ALWAYS_INLINE void _internal_set_method( - const std::string& value); - std::string* _internal_mutable_method(); - - public: - // .io.deephaven.proto.backplane.grpc.Value target = 2; - bool has_target() const; - void clear_target() ; - const ::io::deephaven::proto::backplane::grpc::Value& target() const; - PROTOBUF_NODISCARD ::io::deephaven::proto::backplane::grpc::Value* release_target(); - ::io::deephaven::proto::backplane::grpc::Value* mutable_target(); - void set_allocated_target(::io::deephaven::proto::backplane::grpc::Value* value); - void unsafe_arena_set_allocated_target(::io::deephaven::proto::backplane::grpc::Value* value); - ::io::deephaven::proto::backplane::grpc::Value* unsafe_arena_release_target(); - - private: - const ::io::deephaven::proto::backplane::grpc::Value& _internal_target() const; - ::io::deephaven::proto::backplane::grpc::Value* _internal_mutable_target(); - - public: - // @@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 - 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 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_; - ::google::protobuf::internal::ArenaStringPtr method_; - ::io::deephaven::proto::backplane::grpc::Value* target_; - PROTOBUF_TSAN_DECLARE_MEMBER - }; - 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) */ { - public: - inline InCondition() : InCondition(nullptr) {} - ~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; - } - inline InCondition& operator=(InCondition&& 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 InCondition& default_instance() { - return *internal_default_instance(); - } - 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); } - 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 - if (GetArena() == other->GetArena()) { -#endif // !PROTOBUF_FORCE_COPY_IN_SWAP - InternalSwap(other); - } else { - ::google::protobuf::internal::GenericSwap(this, other); - } - } - void UnsafeArenaSwap(InCondition* other) { - if (other == this) return; - ABSL_DCHECK(GetArena() == other->GetArena()); - InternalSwap(other); - } - - // implements Message ---------------------------------------------- - - 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); } - - private: - static void MergeImpl( - ::google::protobuf::MessageLite& to_msg, - const ::google::protobuf::MessageLite& from_msg); - - 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; - #endif // PROTOBUF_CUSTOM_VTABLE - int GetCachedSize() const { return _impl_._cached_size_.Get(); } - - private: - void SharedCtor(::google::protobuf::Arena* arena); - void SharedDtor(); - void InternalSwap(InCondition* other); - private: - friend class ::google::protobuf::internal::AnyMetadata; - 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); - 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, - kCaseSensitivityFieldNumber = 3, - kMatchTypeFieldNumber = 4, - }; - // repeated .io.deephaven.proto.backplane.grpc.Value candidates = 2; - int candidates_size() const; - private: - int _internal_candidates_size() const; - - 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(); - - 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; - // .io.deephaven.proto.backplane.grpc.Value target = 1; - bool has_target() const; - void clear_target() ; - const ::io::deephaven::proto::backplane::grpc::Value& target() const; - PROTOBUF_NODISCARD ::io::deephaven::proto::backplane::grpc::Value* release_target(); - ::io::deephaven::proto::backplane::grpc::Value* mutable_target(); - void set_allocated_target(::io::deephaven::proto::backplane::grpc::Value* value); - void unsafe_arena_set_allocated_target(::io::deephaven::proto::backplane::grpc::Value* value); - ::io::deephaven::proto::backplane::grpc::Value* unsafe_arena_release_target(); - - private: - const ::io::deephaven::proto::backplane::grpc::Value& _internal_target() const; - ::io::deephaven::proto::backplane::grpc::Value* _internal_mutable_target(); - - public: - // .io.deephaven.proto.backplane.grpc.CaseSensitivity case_sensitivity = 3; - void clear_case_sensitivity() ; - ::io::deephaven::proto::backplane::grpc::CaseSensitivity case_sensitivity() const; - void set_case_sensitivity(::io::deephaven::proto::backplane::grpc::CaseSensitivity value); - - private: - ::io::deephaven::proto::backplane::grpc::CaseSensitivity _internal_case_sensitivity() const; - void _internal_set_case_sensitivity(::io::deephaven::proto::backplane::grpc::CaseSensitivity value); - - public: - // .io.deephaven.proto.backplane.grpc.MatchType match_type = 4; - void clear_match_type() ; - ::io::deephaven::proto::backplane::grpc::MatchType match_type() const; - void set_match_type(::io::deephaven::proto::backplane::grpc::MatchType value); - - private: - ::io::deephaven::proto::backplane::grpc::MatchType _internal_match_type() const; - void _internal_set_match_type(::io::deephaven::proto::backplane::grpc::MatchType value); - - public: - // @@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 - 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 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_; - ::io::deephaven::proto::backplane::grpc::Value* target_; - int case_sensitivity_; - int match_type_; - PROTOBUF_TSAN_DECLARE_MEMBER - }; - 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) */ { - public: - inline HeadOrTailRequest() : HeadOrTailRequest(nullptr) {} - ~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; - } - inline HeadOrTailRequest& operator=(HeadOrTailRequest&& 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 HeadOrTailRequest& default_instance() { - return *internal_default_instance(); - } - 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); } - 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 - if (GetArena() == other->GetArena()) { -#endif // !PROTOBUF_FORCE_COPY_IN_SWAP - InternalSwap(other); - } else { - ::google::protobuf::internal::GenericSwap(this, other); - } - } - void UnsafeArenaSwap(HeadOrTailRequest* other) { - if (other == this) return; - ABSL_DCHECK(GetArena() == other->GetArena()); - InternalSwap(other); - } - - // implements Message ---------------------------------------------- - - 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); } - - private: - static void MergeImpl( - ::google::protobuf::MessageLite& to_msg, - const ::google::protobuf::MessageLite& from_msg); - - 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; - #endif // PROTOBUF_CUSTOM_VTABLE - int GetCachedSize() const { return _impl_._cached_size_.Get(); } - - private: - void SharedCtor(::google::protobuf::Arena* arena); - void SharedDtor(); - void InternalSwap(HeadOrTailRequest* other); - private: - friend class ::google::protobuf::internal::AnyMetadata; - 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); - 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, - kNumRowsFieldNumber = 3, - }; - // .io.deephaven.proto.backplane.grpc.Ticket result_id = 1; - bool has_result_id() const; - void clear_result_id() ; - const ::io::deephaven::proto::backplane::grpc::Ticket& result_id() const; - PROTOBUF_NODISCARD ::io::deephaven::proto::backplane::grpc::Ticket* release_result_id(); - ::io::deephaven::proto::backplane::grpc::Ticket* mutable_result_id(); - void set_allocated_result_id(::io::deephaven::proto::backplane::grpc::Ticket* value); - void unsafe_arena_set_allocated_result_id(::io::deephaven::proto::backplane::grpc::Ticket* value); - ::io::deephaven::proto::backplane::grpc::Ticket* unsafe_arena_release_result_id(); - - private: - const ::io::deephaven::proto::backplane::grpc::Ticket& _internal_result_id() const; - ::io::deephaven::proto::backplane::grpc::Ticket* _internal_mutable_result_id(); - - public: - // .io.deephaven.proto.backplane.grpc.TableReference source_id = 2; - bool has_source_id() const; - void clear_source_id() ; - const ::io::deephaven::proto::backplane::grpc::TableReference& source_id() const; - PROTOBUF_NODISCARD ::io::deephaven::proto::backplane::grpc::TableReference* release_source_id(); - ::io::deephaven::proto::backplane::grpc::TableReference* mutable_source_id(); - void set_allocated_source_id(::io::deephaven::proto::backplane::grpc::TableReference* value); - void unsafe_arena_set_allocated_source_id(::io::deephaven::proto::backplane::grpc::TableReference* value); - ::io::deephaven::proto::backplane::grpc::TableReference* unsafe_arena_release_source_id(); - - private: - const ::io::deephaven::proto::backplane::grpc::TableReference& _internal_source_id() const; - ::io::deephaven::proto::backplane::grpc::TableReference* _internal_mutable_source_id(); - - public: - // sint64 num_rows = 3 [jstype = JS_STRING]; - void clear_num_rows() ; - ::int64_t num_rows() const; - void set_num_rows(::int64_t value); - - private: - ::int64_t _internal_num_rows() const; - void _internal_set_num_rows(::int64_t value); - - public: - // @@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 - 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 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_; - ::io::deephaven::proto::backplane::grpc::TableReference* source_id_; - ::int64_t num_rows_; - PROTOBUF_TSAN_DECLARE_MEMBER - }; - 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) */ { - public: - inline HeadOrTailByRequest() : HeadOrTailByRequest(nullptr) {} - ~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; - } - inline HeadOrTailByRequest& operator=(HeadOrTailByRequest&& 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 HeadOrTailByRequest& default_instance() { - return *internal_default_instance(); - } - 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); } - 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 - if (GetArena() == other->GetArena()) { -#endif // !PROTOBUF_FORCE_COPY_IN_SWAP - InternalSwap(other); - } else { - ::google::protobuf::internal::GenericSwap(this, other); - } - } - void UnsafeArenaSwap(HeadOrTailByRequest* other) { - if (other == this) return; - ABSL_DCHECK(GetArena() == other->GetArena()); - InternalSwap(other); - } - - // implements Message ---------------------------------------------- - - 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); } - - private: - static void MergeImpl( - ::google::protobuf::MessageLite& to_msg, - const ::google::protobuf::MessageLite& from_msg); - - 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; - #endif // PROTOBUF_CUSTOM_VTABLE - int GetCachedSize() const { return _impl_._cached_size_.Get(); } - - private: - void SharedCtor(::google::protobuf::Arena* arena); - void SharedDtor(); - void InternalSwap(HeadOrTailByRequest* other); - private: - friend class ::google::protobuf::internal::AnyMetadata; - 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); - 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, - kSourceIdFieldNumber = 2, - kNumRowsFieldNumber = 3, - }; - // repeated string group_by_column_specs = 4; - int group_by_column_specs_size() const; - private: - int _internal_group_by_column_specs_size() const; - - public: - 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); - template - void set_group_by_column_specs(int index, Arg_&& value, Args_... args); - std::string* add_group_by_column_specs(); - 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(); - - private: - const ::google::protobuf::RepeatedPtrField& _internal_group_by_column_specs() const; - ::google::protobuf::RepeatedPtrField* _internal_mutable_group_by_column_specs(); - - public: - // .io.deephaven.proto.backplane.grpc.Ticket result_id = 1; - bool has_result_id() const; - void clear_result_id() ; - const ::io::deephaven::proto::backplane::grpc::Ticket& result_id() const; - PROTOBUF_NODISCARD ::io::deephaven::proto::backplane::grpc::Ticket* release_result_id(); - ::io::deephaven::proto::backplane::grpc::Ticket* mutable_result_id(); - void set_allocated_result_id(::io::deephaven::proto::backplane::grpc::Ticket* value); - void unsafe_arena_set_allocated_result_id(::io::deephaven::proto::backplane::grpc::Ticket* value); - ::io::deephaven::proto::backplane::grpc::Ticket* unsafe_arena_release_result_id(); - - private: - const ::io::deephaven::proto::backplane::grpc::Ticket& _internal_result_id() const; - ::io::deephaven::proto::backplane::grpc::Ticket* _internal_mutable_result_id(); - - public: - // .io.deephaven.proto.backplane.grpc.TableReference source_id = 2; - bool has_source_id() const; - void clear_source_id() ; - const ::io::deephaven::proto::backplane::grpc::TableReference& source_id() const; - PROTOBUF_NODISCARD ::io::deephaven::proto::backplane::grpc::TableReference* release_source_id(); - ::io::deephaven::proto::backplane::grpc::TableReference* mutable_source_id(); - void set_allocated_source_id(::io::deephaven::proto::backplane::grpc::TableReference* value); - void unsafe_arena_set_allocated_source_id(::io::deephaven::proto::backplane::grpc::TableReference* value); - ::io::deephaven::proto::backplane::grpc::TableReference* unsafe_arena_release_source_id(); - - private: - const ::io::deephaven::proto::backplane::grpc::TableReference& _internal_source_id() const; - ::io::deephaven::proto::backplane::grpc::TableReference* _internal_mutable_source_id(); - - public: - // sint64 num_rows = 3 [jstype = JS_STRING]; - void clear_num_rows() ; - ::int64_t num_rows() const; - void set_num_rows(::int64_t value); - - private: - ::int64_t _internal_num_rows() const; - void _internal_set_num_rows(::int64_t value); - - public: - // @@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 - 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 HeadOrTailByRequest& from_msg); - ::google::protobuf::internal::HasBits<1> _has_bits_; - mutable ::google::protobuf::internal::CachedSize _cached_size_; - ::google::protobuf::RepeatedPtrField group_by_column_specs_; - ::io::deephaven::proto::backplane::grpc::Ticket* result_id_; - ::io::deephaven::proto::backplane::grpc::TableReference* source_id_; - ::int64_t num_rows_; - PROTOBUF_TSAN_DECLARE_MEMBER - }; - 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) */ { - public: - inline FlattenRequest() : FlattenRequest(nullptr) {} - ~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; - } - inline FlattenRequest& operator=(FlattenRequest&& 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 FlattenRequest& default_instance() { - return *internal_default_instance(); - } - 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); } - 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 - if (GetArena() == other->GetArena()) { -#endif // !PROTOBUF_FORCE_COPY_IN_SWAP - InternalSwap(other); - } else { - ::google::protobuf::internal::GenericSwap(this, other); - } - } - void UnsafeArenaSwap(FlattenRequest* other) { - if (other == this) return; - ABSL_DCHECK(GetArena() == other->GetArena()); - InternalSwap(other); - } - - // implements Message ---------------------------------------------- - - 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); } - - private: - static void MergeImpl( - ::google::protobuf::MessageLite& to_msg, - const ::google::protobuf::MessageLite& from_msg); - - 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; - #endif // PROTOBUF_CUSTOM_VTABLE - int GetCachedSize() const { return _impl_._cached_size_.Get(); } - - private: - void SharedCtor(::google::protobuf::Arena* arena); - void SharedDtor(); - void InternalSwap(FlattenRequest* other); - private: - friend class ::google::protobuf::internal::AnyMetadata; - 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); - 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, - }; - // .io.deephaven.proto.backplane.grpc.Ticket result_id = 1; - bool has_result_id() const; - void clear_result_id() ; - const ::io::deephaven::proto::backplane::grpc::Ticket& result_id() const; - PROTOBUF_NODISCARD ::io::deephaven::proto::backplane::grpc::Ticket* release_result_id(); - ::io::deephaven::proto::backplane::grpc::Ticket* mutable_result_id(); - void set_allocated_result_id(::io::deephaven::proto::backplane::grpc::Ticket* value); - void unsafe_arena_set_allocated_result_id(::io::deephaven::proto::backplane::grpc::Ticket* value); - ::io::deephaven::proto::backplane::grpc::Ticket* unsafe_arena_release_result_id(); - - private: - const ::io::deephaven::proto::backplane::grpc::Ticket& _internal_result_id() const; - ::io::deephaven::proto::backplane::grpc::Ticket* _internal_mutable_result_id(); - - public: - // .io.deephaven.proto.backplane.grpc.TableReference source_id = 2; - bool has_source_id() const; - void clear_source_id() ; - const ::io::deephaven::proto::backplane::grpc::TableReference& source_id() const; - PROTOBUF_NODISCARD ::io::deephaven::proto::backplane::grpc::TableReference* release_source_id(); - ::io::deephaven::proto::backplane::grpc::TableReference* mutable_source_id(); - void set_allocated_source_id(::io::deephaven::proto::backplane::grpc::TableReference* value); - void unsafe_arena_set_allocated_source_id(::io::deephaven::proto::backplane::grpc::TableReference* value); - ::io::deephaven::proto::backplane::grpc::TableReference* unsafe_arena_release_source_id(); - - private: - const ::io::deephaven::proto::backplane::grpc::TableReference& _internal_source_id() const; - ::io::deephaven::proto::backplane::grpc::TableReference* _internal_mutable_source_id(); - - public: - // @@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 - 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 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_; - ::io::deephaven::proto::backplane::grpc::TableReference* source_id_; - PROTOBUF_TSAN_DECLARE_MEMBER - }; - 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) */ { - public: - inline FetchTableRequest() : FetchTableRequest(nullptr) {} - ~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; - } - inline FetchTableRequest& operator=(FetchTableRequest&& 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 FetchTableRequest& default_instance() { - return *internal_default_instance(); - } - 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); } - 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 - if (GetArena() == other->GetArena()) { -#endif // !PROTOBUF_FORCE_COPY_IN_SWAP - InternalSwap(other); - } else { - ::google::protobuf::internal::GenericSwap(this, other); - } - } - void UnsafeArenaSwap(FetchTableRequest* other) { - if (other == this) return; - ABSL_DCHECK(GetArena() == other->GetArena()); - InternalSwap(other); - } - - // implements Message ---------------------------------------------- - - 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); } - - private: - static void MergeImpl( - ::google::protobuf::MessageLite& to_msg, - const ::google::protobuf::MessageLite& from_msg); - - 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; - #endif // PROTOBUF_CUSTOM_VTABLE - int GetCachedSize() const { return _impl_._cached_size_.Get(); } - - private: - void SharedCtor(::google::protobuf::Arena* arena); - void SharedDtor(); - void InternalSwap(FetchTableRequest* other); - private: - friend class ::google::protobuf::internal::AnyMetadata; - 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); - 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, - }; - // .io.deephaven.proto.backplane.grpc.TableReference source_id = 1; - bool has_source_id() const; - void clear_source_id() ; - const ::io::deephaven::proto::backplane::grpc::TableReference& source_id() const; - PROTOBUF_NODISCARD ::io::deephaven::proto::backplane::grpc::TableReference* release_source_id(); - ::io::deephaven::proto::backplane::grpc::TableReference* mutable_source_id(); - void set_allocated_source_id(::io::deephaven::proto::backplane::grpc::TableReference* value); - void unsafe_arena_set_allocated_source_id(::io::deephaven::proto::backplane::grpc::TableReference* value); - ::io::deephaven::proto::backplane::grpc::TableReference* unsafe_arena_release_source_id(); - - private: - const ::io::deephaven::proto::backplane::grpc::TableReference& _internal_source_id() const; - ::io::deephaven::proto::backplane::grpc::TableReference* _internal_mutable_source_id(); - - public: - // .io.deephaven.proto.backplane.grpc.Ticket result_id = 2; - bool has_result_id() const; - void clear_result_id() ; - const ::io::deephaven::proto::backplane::grpc::Ticket& result_id() const; - PROTOBUF_NODISCARD ::io::deephaven::proto::backplane::grpc::Ticket* release_result_id(); - ::io::deephaven::proto::backplane::grpc::Ticket* mutable_result_id(); - void set_allocated_result_id(::io::deephaven::proto::backplane::grpc::Ticket* value); - void unsafe_arena_set_allocated_result_id(::io::deephaven::proto::backplane::grpc::Ticket* value); - ::io::deephaven::proto::backplane::grpc::Ticket* unsafe_arena_release_result_id(); - - private: - const ::io::deephaven::proto::backplane::grpc::Ticket& _internal_result_id() const; - ::io::deephaven::proto::backplane::grpc::Ticket* _internal_mutable_result_id(); - - public: - // @@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 - 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 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_; - ::io::deephaven::proto::backplane::grpc::Ticket* result_id_; - PROTOBUF_TSAN_DECLARE_MEMBER - }; - 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) */ { - public: - inline ExportedTableCreationResponse() : ExportedTableCreationResponse(nullptr) {} - ~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; - } - inline ExportedTableCreationResponse& operator=(ExportedTableCreationResponse&& 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 ExportedTableCreationResponse& default_instance() { - return *internal_default_instance(); - } - 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); } - 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 - if (GetArena() == other->GetArena()) { -#endif // !PROTOBUF_FORCE_COPY_IN_SWAP - InternalSwap(other); - } else { - ::google::protobuf::internal::GenericSwap(this, other); - } - } - void UnsafeArenaSwap(ExportedTableCreationResponse* other) { - if (other == this) return; - ABSL_DCHECK(GetArena() == other->GetArena()); - InternalSwap(other); - } - - // implements Message ---------------------------------------------- - - 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); } - - private: - static void MergeImpl( - ::google::protobuf::MessageLite& to_msg, - const ::google::protobuf::MessageLite& from_msg); - - 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; - #endif // PROTOBUF_CUSTOM_VTABLE - int GetCachedSize() const { return _impl_._cached_size_.Get(); } - - private: - void SharedCtor(::google::protobuf::Arena* arena); - void SharedDtor(); - void InternalSwap(ExportedTableCreationResponse* other); - private: - friend class ::google::protobuf::internal::AnyMetadata; - 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); - 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, - kResultIdFieldNumber = 1, - kSizeFieldNumber = 6, - kSuccessFieldNumber = 2, - kIsStaticFieldNumber = 5, - }; - // string error_info = 3; - void clear_error_info() ; - const std::string& error_info() const; - template - void set_error_info(Arg_&& arg, Args_... args); - std::string* mutable_error_info(); - PROTOBUF_NODISCARD std::string* release_error_info(); - void set_allocated_error_info(std::string* value); - - private: - const std::string& _internal_error_info() const; - inline PROTOBUF_ALWAYS_INLINE void _internal_set_error_info( - const std::string& value); - std::string* _internal_mutable_error_info(); - - public: - // bytes schema_header = 4; - void clear_schema_header() ; - const std::string& schema_header() const; - template - void set_schema_header(Arg_&& arg, Args_... args); - std::string* mutable_schema_header(); - PROTOBUF_NODISCARD std::string* release_schema_header(); - void set_allocated_schema_header(std::string* value); - - private: - const std::string& _internal_schema_header() const; - inline PROTOBUF_ALWAYS_INLINE void _internal_set_schema_header( - const std::string& value); - std::string* _internal_mutable_schema_header(); - - public: - // .io.deephaven.proto.backplane.grpc.TableReference result_id = 1; - bool has_result_id() const; - void clear_result_id() ; - const ::io::deephaven::proto::backplane::grpc::TableReference& result_id() const; - PROTOBUF_NODISCARD ::io::deephaven::proto::backplane::grpc::TableReference* release_result_id(); - ::io::deephaven::proto::backplane::grpc::TableReference* mutable_result_id(); - void set_allocated_result_id(::io::deephaven::proto::backplane::grpc::TableReference* value); - void unsafe_arena_set_allocated_result_id(::io::deephaven::proto::backplane::grpc::TableReference* value); - ::io::deephaven::proto::backplane::grpc::TableReference* unsafe_arena_release_result_id(); - - private: - const ::io::deephaven::proto::backplane::grpc::TableReference& _internal_result_id() const; - ::io::deephaven::proto::backplane::grpc::TableReference* _internal_mutable_result_id(); - - public: - // sint64 size = 6 [jstype = JS_STRING]; - void clear_size() ; - ::int64_t size() const; - void set_size(::int64_t value); - - private: - ::int64_t _internal_size() const; - void _internal_set_size(::int64_t value); - - public: - // bool success = 2; - void clear_success() ; - bool success() const; - void set_success(bool value); - - private: - bool _internal_success() const; - void _internal_set_success(bool value); - - public: - // bool is_static = 5; - void clear_is_static() ; - bool is_static() const; - void set_is_static(bool value); - - private: - bool _internal_is_static() const; - void _internal_set_is_static(bool value); - - public: - // @@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 - 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 ExportedTableCreationResponse& from_msg); - ::google::protobuf::internal::HasBits<1> _has_bits_; - mutable ::google::protobuf::internal::CachedSize _cached_size_; - ::google::protobuf::internal::ArenaStringPtr error_info_; - ::google::protobuf::internal::ArenaStringPtr schema_header_; - ::io::deephaven::proto::backplane::grpc::TableReference* result_id_; - ::int64_t size_; - bool success_; - bool is_static_; - PROTOBUF_TSAN_DECLARE_MEMBER - }; - 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) */ { - public: - inline ExactJoinTablesRequest() : ExactJoinTablesRequest(nullptr) {} - ~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; - } - inline ExactJoinTablesRequest& operator=(ExactJoinTablesRequest&& 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 ExactJoinTablesRequest& default_instance() { - return *internal_default_instance(); - } - 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); } - 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 - if (GetArena() == other->GetArena()) { -#endif // !PROTOBUF_FORCE_COPY_IN_SWAP - InternalSwap(other); - } else { - ::google::protobuf::internal::GenericSwap(this, other); - } - } - void UnsafeArenaSwap(ExactJoinTablesRequest* other) { - if (other == this) return; - ABSL_DCHECK(GetArena() == other->GetArena()); - InternalSwap(other); - } - - // implements Message ---------------------------------------------- - - 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); } - - private: - static void MergeImpl( - ::google::protobuf::MessageLite& to_msg, - const ::google::protobuf::MessageLite& from_msg); - - 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; - #endif // PROTOBUF_CUSTOM_VTABLE - int GetCachedSize() const { return _impl_._cached_size_.Get(); } - - private: - void SharedCtor(::google::protobuf::Arena* arena); - void SharedDtor(); - void InternalSwap(ExactJoinTablesRequest* other); - private: - friend class ::google::protobuf::internal::AnyMetadata; - 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); - 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, - kResultIdFieldNumber = 1, - kLeftIdFieldNumber = 2, - kRightIdFieldNumber = 3, - }; - // repeated string columns_to_match = 4; - int columns_to_match_size() const; - private: - int _internal_columns_to_match_size() const; - - public: - void clear_columns_to_match() ; - const std::string& columns_to_match(int index) const; - std::string* mutable_columns_to_match(int index); - template - void set_columns_to_match(int index, Arg_&& value, Args_... args); - std::string* add_columns_to_match(); - 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(); - - private: - const ::google::protobuf::RepeatedPtrField& _internal_columns_to_match() const; - ::google::protobuf::RepeatedPtrField* _internal_mutable_columns_to_match(); - - public: - // repeated string columns_to_add = 5; - int columns_to_add_size() const; - private: - int _internal_columns_to_add_size() const; - - public: - void clear_columns_to_add() ; - const std::string& columns_to_add(int index) const; - std::string* mutable_columns_to_add(int index); - template - void set_columns_to_add(int index, Arg_&& value, Args_... args); - std::string* add_columns_to_add(); - 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(); - - private: - const ::google::protobuf::RepeatedPtrField& _internal_columns_to_add() const; - ::google::protobuf::RepeatedPtrField* _internal_mutable_columns_to_add(); - - public: - // .io.deephaven.proto.backplane.grpc.Ticket result_id = 1; - bool has_result_id() const; - void clear_result_id() ; - const ::io::deephaven::proto::backplane::grpc::Ticket& result_id() const; - PROTOBUF_NODISCARD ::io::deephaven::proto::backplane::grpc::Ticket* release_result_id(); - ::io::deephaven::proto::backplane::grpc::Ticket* mutable_result_id(); - void set_allocated_result_id(::io::deephaven::proto::backplane::grpc::Ticket* value); - void unsafe_arena_set_allocated_result_id(::io::deephaven::proto::backplane::grpc::Ticket* value); - ::io::deephaven::proto::backplane::grpc::Ticket* unsafe_arena_release_result_id(); - - private: - const ::io::deephaven::proto::backplane::grpc::Ticket& _internal_result_id() const; - ::io::deephaven::proto::backplane::grpc::Ticket* _internal_mutable_result_id(); - - public: - // .io.deephaven.proto.backplane.grpc.TableReference left_id = 2; - bool has_left_id() const; - void clear_left_id() ; - const ::io::deephaven::proto::backplane::grpc::TableReference& left_id() const; - PROTOBUF_NODISCARD ::io::deephaven::proto::backplane::grpc::TableReference* release_left_id(); - ::io::deephaven::proto::backplane::grpc::TableReference* mutable_left_id(); - void set_allocated_left_id(::io::deephaven::proto::backplane::grpc::TableReference* value); - void unsafe_arena_set_allocated_left_id(::io::deephaven::proto::backplane::grpc::TableReference* value); - ::io::deephaven::proto::backplane::grpc::TableReference* unsafe_arena_release_left_id(); - - private: - const ::io::deephaven::proto::backplane::grpc::TableReference& _internal_left_id() const; - ::io::deephaven::proto::backplane::grpc::TableReference* _internal_mutable_left_id(); - - public: - // .io.deephaven.proto.backplane.grpc.TableReference right_id = 3; - bool has_right_id() const; - void clear_right_id() ; - const ::io::deephaven::proto::backplane::grpc::TableReference& right_id() const; - PROTOBUF_NODISCARD ::io::deephaven::proto::backplane::grpc::TableReference* release_right_id(); - ::io::deephaven::proto::backplane::grpc::TableReference* mutable_right_id(); - void set_allocated_right_id(::io::deephaven::proto::backplane::grpc::TableReference* value); - void unsafe_arena_set_allocated_right_id(::io::deephaven::proto::backplane::grpc::TableReference* value); - ::io::deephaven::proto::backplane::grpc::TableReference* unsafe_arena_release_right_id(); - - private: - const ::io::deephaven::proto::backplane::grpc::TableReference& _internal_right_id() const; - ::io::deephaven::proto::backplane::grpc::TableReference* _internal_mutable_right_id(); - - public: - // @@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 - 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 ExactJoinTablesRequest& from_msg); - ::google::protobuf::internal::HasBits<1> _has_bits_; - mutable ::google::protobuf::internal::CachedSize _cached_size_; - ::google::protobuf::RepeatedPtrField columns_to_match_; - ::google::protobuf::RepeatedPtrField columns_to_add_; - ::io::deephaven::proto::backplane::grpc::Ticket* result_id_; - ::io::deephaven::proto::backplane::grpc::TableReference* left_id_; - ::io::deephaven::proto::backplane::grpc::TableReference* right_id_; - PROTOBUF_TSAN_DECLARE_MEMBER - }; - 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) */ { - public: - inline DropColumnsRequest() : DropColumnsRequest(nullptr) {} - ~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; - } - inline DropColumnsRequest& operator=(DropColumnsRequest&& 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 DropColumnsRequest& default_instance() { - return *internal_default_instance(); - } - 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); } - 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 - if (GetArena() == other->GetArena()) { -#endif // !PROTOBUF_FORCE_COPY_IN_SWAP - InternalSwap(other); - } else { - ::google::protobuf::internal::GenericSwap(this, other); - } - } - void UnsafeArenaSwap(DropColumnsRequest* other) { - if (other == this) return; - ABSL_DCHECK(GetArena() == other->GetArena()); - InternalSwap(other); - } - - // implements Message ---------------------------------------------- - - 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); } - - private: - static void MergeImpl( - ::google::protobuf::MessageLite& to_msg, - const ::google::protobuf::MessageLite& from_msg); - - 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; - #endif // PROTOBUF_CUSTOM_VTABLE - int GetCachedSize() const { return _impl_._cached_size_.Get(); } - - private: - void SharedCtor(::google::protobuf::Arena* arena); - void SharedDtor(); - void InternalSwap(DropColumnsRequest* other); - private: - friend class ::google::protobuf::internal::AnyMetadata; - 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); - 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, - kSourceIdFieldNumber = 2, - }; - // repeated string column_names = 3; - int column_names_size() const; - private: - int _internal_column_names_size() const; - - public: - void clear_column_names() ; - const std::string& column_names(int index) const; - std::string* mutable_column_names(int index); - template - void set_column_names(int index, Arg_&& value, Args_... args); - std::string* add_column_names(); - template - void add_column_names(Arg_&& value, Args_... args); - const ::google::protobuf::RepeatedPtrField& column_names() const; - ::google::protobuf::RepeatedPtrField* mutable_column_names(); - - private: - const ::google::protobuf::RepeatedPtrField& _internal_column_names() const; - ::google::protobuf::RepeatedPtrField* _internal_mutable_column_names(); - - public: - // .io.deephaven.proto.backplane.grpc.Ticket result_id = 1; - bool has_result_id() const; - void clear_result_id() ; - const ::io::deephaven::proto::backplane::grpc::Ticket& result_id() const; - PROTOBUF_NODISCARD ::io::deephaven::proto::backplane::grpc::Ticket* release_result_id(); - ::io::deephaven::proto::backplane::grpc::Ticket* mutable_result_id(); - void set_allocated_result_id(::io::deephaven::proto::backplane::grpc::Ticket* value); - void unsafe_arena_set_allocated_result_id(::io::deephaven::proto::backplane::grpc::Ticket* value); - ::io::deephaven::proto::backplane::grpc::Ticket* unsafe_arena_release_result_id(); - - private: - const ::io::deephaven::proto::backplane::grpc::Ticket& _internal_result_id() const; - ::io::deephaven::proto::backplane::grpc::Ticket* _internal_mutable_result_id(); - - public: - // .io.deephaven.proto.backplane.grpc.TableReference source_id = 2; - bool has_source_id() const; - void clear_source_id() ; - const ::io::deephaven::proto::backplane::grpc::TableReference& source_id() const; - PROTOBUF_NODISCARD ::io::deephaven::proto::backplane::grpc::TableReference* release_source_id(); - ::io::deephaven::proto::backplane::grpc::TableReference* mutable_source_id(); - void set_allocated_source_id(::io::deephaven::proto::backplane::grpc::TableReference* value); - void unsafe_arena_set_allocated_source_id(::io::deephaven::proto::backplane::grpc::TableReference* value); - ::io::deephaven::proto::backplane::grpc::TableReference* unsafe_arena_release_source_id(); - - private: - const ::io::deephaven::proto::backplane::grpc::TableReference& _internal_source_id() const; - ::io::deephaven::proto::backplane::grpc::TableReference* _internal_mutable_source_id(); - - public: - // @@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 - 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 DropColumnsRequest& from_msg); - ::google::protobuf::internal::HasBits<1> _has_bits_; - mutable ::google::protobuf::internal::CachedSize _cached_size_; - ::google::protobuf::RepeatedPtrField column_names_; - ::io::deephaven::proto::backplane::grpc::Ticket* result_id_; - ::io::deephaven::proto::backplane::grpc::TableReference* source_id_; - PROTOBUF_TSAN_DECLARE_MEMBER - }; - 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) */ { - public: - inline CrossJoinTablesRequest() : CrossJoinTablesRequest(nullptr) {} - ~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; - } - inline CrossJoinTablesRequest& operator=(CrossJoinTablesRequest&& 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 CrossJoinTablesRequest& default_instance() { - return *internal_default_instance(); - } - 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); } - 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 - if (GetArena() == other->GetArena()) { -#endif // !PROTOBUF_FORCE_COPY_IN_SWAP - InternalSwap(other); - } else { - ::google::protobuf::internal::GenericSwap(this, other); - } - } - void UnsafeArenaSwap(CrossJoinTablesRequest* other) { - if (other == this) return; - ABSL_DCHECK(GetArena() == other->GetArena()); - InternalSwap(other); - } - - // implements Message ---------------------------------------------- - - 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); } - - private: - static void MergeImpl( - ::google::protobuf::MessageLite& to_msg, - const ::google::protobuf::MessageLite& from_msg); - - 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; - #endif // PROTOBUF_CUSTOM_VTABLE - int GetCachedSize() const { return _impl_._cached_size_.Get(); } - - private: - void SharedCtor(::google::protobuf::Arena* arena); - void SharedDtor(); - void InternalSwap(CrossJoinTablesRequest* other); - private: - friend class ::google::protobuf::internal::AnyMetadata; - 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); - 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, - kResultIdFieldNumber = 1, - kLeftIdFieldNumber = 2, - kRightIdFieldNumber = 3, - kReserveBitsFieldNumber = 6, - }; - // repeated string columns_to_match = 4; - int columns_to_match_size() const; - private: - int _internal_columns_to_match_size() const; - - public: - void clear_columns_to_match() ; - const std::string& columns_to_match(int index) const; - std::string* mutable_columns_to_match(int index); - template - void set_columns_to_match(int index, Arg_&& value, Args_... args); - std::string* add_columns_to_match(); - 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(); - - private: - const ::google::protobuf::RepeatedPtrField& _internal_columns_to_match() const; - ::google::protobuf::RepeatedPtrField* _internal_mutable_columns_to_match(); - - public: - // repeated string columns_to_add = 5; - int columns_to_add_size() const; - private: - int _internal_columns_to_add_size() const; - - public: - void clear_columns_to_add() ; - const std::string& columns_to_add(int index) const; - std::string* mutable_columns_to_add(int index); - template - void set_columns_to_add(int index, Arg_&& value, Args_... args); - std::string* add_columns_to_add(); - 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(); - - private: - const ::google::protobuf::RepeatedPtrField& _internal_columns_to_add() const; - ::google::protobuf::RepeatedPtrField* _internal_mutable_columns_to_add(); - - public: - // .io.deephaven.proto.backplane.grpc.Ticket result_id = 1; - bool has_result_id() const; - void clear_result_id() ; - const ::io::deephaven::proto::backplane::grpc::Ticket& result_id() const; - PROTOBUF_NODISCARD ::io::deephaven::proto::backplane::grpc::Ticket* release_result_id(); - ::io::deephaven::proto::backplane::grpc::Ticket* mutable_result_id(); - void set_allocated_result_id(::io::deephaven::proto::backplane::grpc::Ticket* value); - void unsafe_arena_set_allocated_result_id(::io::deephaven::proto::backplane::grpc::Ticket* value); - ::io::deephaven::proto::backplane::grpc::Ticket* unsafe_arena_release_result_id(); - - private: - const ::io::deephaven::proto::backplane::grpc::Ticket& _internal_result_id() const; - ::io::deephaven::proto::backplane::grpc::Ticket* _internal_mutable_result_id(); - - public: - // .io.deephaven.proto.backplane.grpc.TableReference left_id = 2; - bool has_left_id() const; - void clear_left_id() ; - const ::io::deephaven::proto::backplane::grpc::TableReference& left_id() const; - PROTOBUF_NODISCARD ::io::deephaven::proto::backplane::grpc::TableReference* release_left_id(); - ::io::deephaven::proto::backplane::grpc::TableReference* mutable_left_id(); - void set_allocated_left_id(::io::deephaven::proto::backplane::grpc::TableReference* value); - void unsafe_arena_set_allocated_left_id(::io::deephaven::proto::backplane::grpc::TableReference* value); - ::io::deephaven::proto::backplane::grpc::TableReference* unsafe_arena_release_left_id(); - - private: - const ::io::deephaven::proto::backplane::grpc::TableReference& _internal_left_id() const; - ::io::deephaven::proto::backplane::grpc::TableReference* _internal_mutable_left_id(); - - public: - // .io.deephaven.proto.backplane.grpc.TableReference right_id = 3; - bool has_right_id() const; - void clear_right_id() ; - const ::io::deephaven::proto::backplane::grpc::TableReference& right_id() const; - PROTOBUF_NODISCARD ::io::deephaven::proto::backplane::grpc::TableReference* release_right_id(); - ::io::deephaven::proto::backplane::grpc::TableReference* mutable_right_id(); - void set_allocated_right_id(::io::deephaven::proto::backplane::grpc::TableReference* value); - void unsafe_arena_set_allocated_right_id(::io::deephaven::proto::backplane::grpc::TableReference* value); - ::io::deephaven::proto::backplane::grpc::TableReference* unsafe_arena_release_right_id(); - - private: - const ::io::deephaven::proto::backplane::grpc::TableReference& _internal_right_id() const; - ::io::deephaven::proto::backplane::grpc::TableReference* _internal_mutable_right_id(); - - public: - // int32 reserve_bits = 6; - void clear_reserve_bits() ; - ::int32_t reserve_bits() const; - void set_reserve_bits(::int32_t value); - - private: - ::int32_t _internal_reserve_bits() const; - void _internal_set_reserve_bits(::int32_t value); - - public: - // @@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 - 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 CrossJoinTablesRequest& from_msg); - ::google::protobuf::internal::HasBits<1> _has_bits_; - mutable ::google::protobuf::internal::CachedSize _cached_size_; - ::google::protobuf::RepeatedPtrField columns_to_match_; - ::google::protobuf::RepeatedPtrField columns_to_add_; - ::io::deephaven::proto::backplane::grpc::Ticket* result_id_; - ::io::deephaven::proto::backplane::grpc::TableReference* left_id_; - ::io::deephaven::proto::backplane::grpc::TableReference* right_id_; - ::int32_t reserve_bits_; - PROTOBUF_TSAN_DECLARE_MEMBER - }; - 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) */ { - public: - inline CreateInputTableRequest() : CreateInputTableRequest(nullptr) {} - ~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; - } - inline CreateInputTableRequest& operator=(CreateInputTableRequest&& 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 CreateInputTableRequest& default_instance() { - return *internal_default_instance(); - } - enum DefinitionCase { - kSourceTableId = 2, - 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); } - 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 - if (GetArena() == other->GetArena()) { -#endif // !PROTOBUF_FORCE_COPY_IN_SWAP - InternalSwap(other); - } else { - ::google::protobuf::internal::GenericSwap(this, other); - } - } - void UnsafeArenaSwap(CreateInputTableRequest* other) { - if (other == this) return; - ABSL_DCHECK(GetArena() == other->GetArena()); - InternalSwap(other); - } - - // implements Message ---------------------------------------------- - - 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); } - - private: - static void MergeImpl( - ::google::protobuf::MessageLite& to_msg, - const ::google::protobuf::MessageLite& from_msg); - - 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; - #endif // PROTOBUF_CUSTOM_VTABLE - int GetCachedSize() const { return _impl_._cached_size_.Get(); } - - private: - void SharedCtor(::google::protobuf::Arena* arena); - void SharedDtor(); - void InternalSwap(CreateInputTableRequest* other); - private: - friend class ::google::protobuf::internal::AnyMetadata; - 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); - 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, - kSourceTableIdFieldNumber = 2, - kSchemaFieldNumber = 3, - }; - // .io.deephaven.proto.backplane.grpc.Ticket result_id = 1; - bool has_result_id() const; - void clear_result_id() ; - const ::io::deephaven::proto::backplane::grpc::Ticket& result_id() const; - PROTOBUF_NODISCARD ::io::deephaven::proto::backplane::grpc::Ticket* release_result_id(); - ::io::deephaven::proto::backplane::grpc::Ticket* mutable_result_id(); - void set_allocated_result_id(::io::deephaven::proto::backplane::grpc::Ticket* value); - void unsafe_arena_set_allocated_result_id(::io::deephaven::proto::backplane::grpc::Ticket* value); - ::io::deephaven::proto::backplane::grpc::Ticket* unsafe_arena_release_result_id(); - - private: - const ::io::deephaven::proto::backplane::grpc::Ticket& _internal_result_id() const; - ::io::deephaven::proto::backplane::grpc::Ticket* _internal_mutable_result_id(); - - public: - // .io.deephaven.proto.backplane.grpc.CreateInputTableRequest.InputTableKind kind = 4; - bool has_kind() const; - void clear_kind() ; - const ::io::deephaven::proto::backplane::grpc::CreateInputTableRequest_InputTableKind& kind() const; - PROTOBUF_NODISCARD ::io::deephaven::proto::backplane::grpc::CreateInputTableRequest_InputTableKind* release_kind(); - ::io::deephaven::proto::backplane::grpc::CreateInputTableRequest_InputTableKind* mutable_kind(); - void set_allocated_kind(::io::deephaven::proto::backplane::grpc::CreateInputTableRequest_InputTableKind* value); - void unsafe_arena_set_allocated_kind(::io::deephaven::proto::backplane::grpc::CreateInputTableRequest_InputTableKind* value); - ::io::deephaven::proto::backplane::grpc::CreateInputTableRequest_InputTableKind* unsafe_arena_release_kind(); - - private: - const ::io::deephaven::proto::backplane::grpc::CreateInputTableRequest_InputTableKind& _internal_kind() const; - ::io::deephaven::proto::backplane::grpc::CreateInputTableRequest_InputTableKind* _internal_mutable_kind(); - - public: - // .io.deephaven.proto.backplane.grpc.TableReference source_table_id = 2; - bool has_source_table_id() const; - private: - bool _internal_has_source_table_id() const; - - public: - void clear_source_table_id() ; - const ::io::deephaven::proto::backplane::grpc::TableReference& source_table_id() const; - PROTOBUF_NODISCARD ::io::deephaven::proto::backplane::grpc::TableReference* release_source_table_id(); - ::io::deephaven::proto::backplane::grpc::TableReference* mutable_source_table_id(); - void set_allocated_source_table_id(::io::deephaven::proto::backplane::grpc::TableReference* value); - void unsafe_arena_set_allocated_source_table_id(::io::deephaven::proto::backplane::grpc::TableReference* value); - ::io::deephaven::proto::backplane::grpc::TableReference* unsafe_arena_release_source_table_id(); - - private: - const ::io::deephaven::proto::backplane::grpc::TableReference& _internal_source_table_id() const; - ::io::deephaven::proto::backplane::grpc::TableReference* _internal_mutable_source_table_id(); - - public: - // bytes schema = 3; - bool has_schema() const; - void clear_schema() ; - const std::string& schema() const; - template - void set_schema(Arg_&& arg, Args_... args); - std::string* mutable_schema(); - PROTOBUF_NODISCARD std::string* release_schema(); - void set_allocated_schema(std::string* value); - - private: - const std::string& _internal_schema() const; - inline PROTOBUF_ALWAYS_INLINE void _internal_set_schema( - const std::string& value); - std::string* _internal_mutable_schema(); - - public: - void clear_definition(); - DefinitionCase definition_case() const; - // @@protoc_insertion_point(class_scope:io.deephaven.proto.backplane.grpc.CreateInputTableRequest) - private: - 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 - 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 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_; - ::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) */ { - public: - inline CompareCondition() : CompareCondition(nullptr) {} - ~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; - } - inline CompareCondition& operator=(CompareCondition&& 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 CompareCondition& default_instance() { - return *internal_default_instance(); - } - 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); } - 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 - if (GetArena() == other->GetArena()) { -#endif // !PROTOBUF_FORCE_COPY_IN_SWAP - InternalSwap(other); - } else { - ::google::protobuf::internal::GenericSwap(this, other); - } - } - void UnsafeArenaSwap(CompareCondition* other) { - if (other == this) return; - ABSL_DCHECK(GetArena() == other->GetArena()); - InternalSwap(other); - } - - // implements Message ---------------------------------------------- - - 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); } - - private: - static void MergeImpl( - ::google::protobuf::MessageLite& to_msg, - const ::google::protobuf::MessageLite& from_msg); - - 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; - #endif // PROTOBUF_CUSTOM_VTABLE - int GetCachedSize() const { return _impl_._cached_size_.Get(); } - - private: - void SharedCtor(::google::protobuf::Arena* arena); - void SharedDtor(); - void InternalSwap(CompareCondition* other); - private: - friend class ::google::protobuf::internal::AnyMetadata; - 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); - 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; - static constexpr CompareOperation GREATER_THAN = CompareCondition_CompareOperation_GREATER_THAN; - static constexpr CompareOperation GREATER_THAN_OR_EQUAL = CompareCondition_CompareOperation_GREATER_THAN_OR_EQUAL; - static constexpr CompareOperation EQUALS = CompareCondition_CompareOperation_EQUALS; - static constexpr CompareOperation NOT_EQUALS = CompareCondition_CompareOperation_NOT_EQUALS; - static inline bool CompareOperation_IsValid(int value) { - return CompareCondition_CompareOperation_IsValid(value); - } - static constexpr CompareOperation CompareOperation_MIN = CompareCondition_CompareOperation_CompareOperation_MIN; - static constexpr CompareOperation CompareOperation_MAX = CompareCondition_CompareOperation_CompareOperation_MAX; - static constexpr int CompareOperation_ARRAYSIZE = CompareCondition_CompareOperation_CompareOperation_ARRAYSIZE; - static inline const ::google::protobuf::EnumDescriptor* CompareOperation_descriptor() { - return CompareCondition_CompareOperation_descriptor(); - } - template - static inline const std::string& CompareOperation_Name(T value) { - return CompareCondition_CompareOperation_Name(value); - } - static inline bool CompareOperation_Parse(absl::string_view name, CompareOperation* value) { - return CompareCondition_CompareOperation_Parse(name, value); - } - - // accessors ------------------------------------------------------- - enum : int { - kLhsFieldNumber = 3, - kRhsFieldNumber = 4, - kOperationFieldNumber = 1, - kCaseSensitivityFieldNumber = 2, - }; - // .io.deephaven.proto.backplane.grpc.Value lhs = 3; - bool has_lhs() const; - void clear_lhs() ; - const ::io::deephaven::proto::backplane::grpc::Value& lhs() const; - PROTOBUF_NODISCARD ::io::deephaven::proto::backplane::grpc::Value* release_lhs(); - ::io::deephaven::proto::backplane::grpc::Value* mutable_lhs(); - void set_allocated_lhs(::io::deephaven::proto::backplane::grpc::Value* value); - void unsafe_arena_set_allocated_lhs(::io::deephaven::proto::backplane::grpc::Value* value); - ::io::deephaven::proto::backplane::grpc::Value* unsafe_arena_release_lhs(); - - private: - const ::io::deephaven::proto::backplane::grpc::Value& _internal_lhs() const; - ::io::deephaven::proto::backplane::grpc::Value* _internal_mutable_lhs(); - - public: - // .io.deephaven.proto.backplane.grpc.Value rhs = 4; - bool has_rhs() const; - void clear_rhs() ; - const ::io::deephaven::proto::backplane::grpc::Value& rhs() const; - PROTOBUF_NODISCARD ::io::deephaven::proto::backplane::grpc::Value* release_rhs(); - ::io::deephaven::proto::backplane::grpc::Value* mutable_rhs(); - void set_allocated_rhs(::io::deephaven::proto::backplane::grpc::Value* value); - void unsafe_arena_set_allocated_rhs(::io::deephaven::proto::backplane::grpc::Value* value); - ::io::deephaven::proto::backplane::grpc::Value* unsafe_arena_release_rhs(); - - private: - const ::io::deephaven::proto::backplane::grpc::Value& _internal_rhs() const; - ::io::deephaven::proto::backplane::grpc::Value* _internal_mutable_rhs(); - - public: - // .io.deephaven.proto.backplane.grpc.CompareCondition.CompareOperation operation = 1; - void clear_operation() ; - ::io::deephaven::proto::backplane::grpc::CompareCondition_CompareOperation operation() const; - void set_operation(::io::deephaven::proto::backplane::grpc::CompareCondition_CompareOperation value); - - private: - ::io::deephaven::proto::backplane::grpc::CompareCondition_CompareOperation _internal_operation() const; - void _internal_set_operation(::io::deephaven::proto::backplane::grpc::CompareCondition_CompareOperation value); - - public: - // .io.deephaven.proto.backplane.grpc.CaseSensitivity case_sensitivity = 2; - void clear_case_sensitivity() ; - ::io::deephaven::proto::backplane::grpc::CaseSensitivity case_sensitivity() const; - void set_case_sensitivity(::io::deephaven::proto::backplane::grpc::CaseSensitivity value); - - private: - ::io::deephaven::proto::backplane::grpc::CaseSensitivity _internal_case_sensitivity() const; - void _internal_set_case_sensitivity(::io::deephaven::proto::backplane::grpc::CaseSensitivity value); - - public: - // @@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 - 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 CompareCondition& from_msg); - ::google::protobuf::internal::HasBits<1> _has_bits_; - mutable ::google::protobuf::internal::CachedSize _cached_size_; - ::io::deephaven::proto::backplane::grpc::Value* lhs_; - ::io::deephaven::proto::backplane::grpc::Value* rhs_; - int operation_; - int case_sensitivity_; - PROTOBUF_TSAN_DECLARE_MEMBER - }; - 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) */ { - public: - inline ComboAggregateRequest() : ComboAggregateRequest(nullptr) {} - ~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; - } - inline ComboAggregateRequest& operator=(ComboAggregateRequest&& 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 ComboAggregateRequest& default_instance() { - return *internal_default_instance(); - } - 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); } - 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 - if (GetArena() == other->GetArena()) { -#endif // !PROTOBUF_FORCE_COPY_IN_SWAP - InternalSwap(other); - } else { - ::google::protobuf::internal::GenericSwap(this, other); - } - } - void UnsafeArenaSwap(ComboAggregateRequest* other) { - if (other == this) return; - ABSL_DCHECK(GetArena() == other->GetArena()); - InternalSwap(other); - } - - // implements Message ---------------------------------------------- - - 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); } - - private: - static void MergeImpl( - ::google::protobuf::MessageLite& to_msg, - const ::google::protobuf::MessageLite& from_msg); - - 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; - #endif // PROTOBUF_CUSTOM_VTABLE - int GetCachedSize() const { return _impl_._cached_size_.Get(); } - - private: - void SharedCtor(::google::protobuf::Arena* arena); - void SharedDtor(); - void InternalSwap(ComboAggregateRequest* other); - private: - friend class ::google::protobuf::internal::AnyMetadata; - 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); - 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; - static constexpr AggType GROUP = ComboAggregateRequest_AggType_GROUP; - static constexpr AggType AVG = ComboAggregateRequest_AggType_AVG; - static constexpr AggType COUNT = ComboAggregateRequest_AggType_COUNT; - static constexpr AggType FIRST = ComboAggregateRequest_AggType_FIRST; - static constexpr AggType LAST = ComboAggregateRequest_AggType_LAST; - static constexpr AggType MIN = ComboAggregateRequest_AggType_MIN; - static constexpr AggType MAX = ComboAggregateRequest_AggType_MAX; - static constexpr AggType MEDIAN = ComboAggregateRequest_AggType_MEDIAN; - static constexpr AggType PERCENTILE = ComboAggregateRequest_AggType_PERCENTILE; - static constexpr AggType STD = ComboAggregateRequest_AggType_STD; - static constexpr AggType VAR = ComboAggregateRequest_AggType_VAR; - static constexpr AggType WEIGHTED_AVG = ComboAggregateRequest_AggType_WEIGHTED_AVG; - static inline bool AggType_IsValid(int value) { - return ComboAggregateRequest_AggType_IsValid(value); - } - static constexpr AggType AggType_MIN = ComboAggregateRequest_AggType_AggType_MIN; - static constexpr AggType AggType_MAX = ComboAggregateRequest_AggType_AggType_MAX; - static constexpr int AggType_ARRAYSIZE = ComboAggregateRequest_AggType_AggType_ARRAYSIZE; - static inline const ::google::protobuf::EnumDescriptor* AggType_descriptor() { - return ComboAggregateRequest_AggType_descriptor(); - } - template - static inline const std::string& AggType_Name(T value) { - return ComboAggregateRequest_AggType_Name(value); - } - static inline bool AggType_Parse(absl::string_view name, AggType* value) { - return ComboAggregateRequest_AggType_Parse(name, value); - } - - // accessors ------------------------------------------------------- - enum : int { - kAggregatesFieldNumber = 3, - kGroupByColumnsFieldNumber = 4, - kResultIdFieldNumber = 1, - kSourceIdFieldNumber = 2, - kForceComboFieldNumber = 5, - }; - // repeated .io.deephaven.proto.backplane.grpc.ComboAggregateRequest.Aggregate aggregates = 3; - int aggregates_size() const; - private: - int _internal_aggregates_size() const; - - 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(); - - 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; - // repeated string group_by_columns = 4; - int group_by_columns_size() const; - private: - int _internal_group_by_columns_size() const; - - public: - void clear_group_by_columns() ; - const std::string& group_by_columns(int index) const; - std::string* mutable_group_by_columns(int index); - template - void set_group_by_columns(int index, Arg_&& value, Args_... args); - std::string* add_group_by_columns(); - 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(); - - private: - const ::google::protobuf::RepeatedPtrField& _internal_group_by_columns() const; - ::google::protobuf::RepeatedPtrField* _internal_mutable_group_by_columns(); - - public: - // .io.deephaven.proto.backplane.grpc.Ticket result_id = 1; - bool has_result_id() const; - void clear_result_id() ; - const ::io::deephaven::proto::backplane::grpc::Ticket& result_id() const; - PROTOBUF_NODISCARD ::io::deephaven::proto::backplane::grpc::Ticket* release_result_id(); - ::io::deephaven::proto::backplane::grpc::Ticket* mutable_result_id(); - void set_allocated_result_id(::io::deephaven::proto::backplane::grpc::Ticket* value); - void unsafe_arena_set_allocated_result_id(::io::deephaven::proto::backplane::grpc::Ticket* value); - ::io::deephaven::proto::backplane::grpc::Ticket* unsafe_arena_release_result_id(); - - private: - const ::io::deephaven::proto::backplane::grpc::Ticket& _internal_result_id() const; - ::io::deephaven::proto::backplane::grpc::Ticket* _internal_mutable_result_id(); - - public: - // .io.deephaven.proto.backplane.grpc.TableReference source_id = 2; - bool has_source_id() const; - void clear_source_id() ; - const ::io::deephaven::proto::backplane::grpc::TableReference& source_id() const; - PROTOBUF_NODISCARD ::io::deephaven::proto::backplane::grpc::TableReference* release_source_id(); - ::io::deephaven::proto::backplane::grpc::TableReference* mutable_source_id(); - void set_allocated_source_id(::io::deephaven::proto::backplane::grpc::TableReference* value); - void unsafe_arena_set_allocated_source_id(::io::deephaven::proto::backplane::grpc::TableReference* value); - ::io::deephaven::proto::backplane::grpc::TableReference* unsafe_arena_release_source_id(); - - private: - const ::io::deephaven::proto::backplane::grpc::TableReference& _internal_source_id() const; - ::io::deephaven::proto::backplane::grpc::TableReference* _internal_mutable_source_id(); - - public: - // bool force_combo = 5; - void clear_force_combo() ; - bool force_combo() const; - void set_force_combo(bool value); - - private: - bool _internal_force_combo() const; - void _internal_set_force_combo(bool value); - - public: - // @@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 - 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 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_; - ::google::protobuf::RepeatedPtrField group_by_columns_; - ::io::deephaven::proto::backplane::grpc::Ticket* result_id_; - ::io::deephaven::proto::backplane::grpc::TableReference* source_id_; - bool force_combo_; - PROTOBUF_TSAN_DECLARE_MEMBER - }; - 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) */ { - public: - inline ColumnStatisticsRequest() : ColumnStatisticsRequest(nullptr) {} - ~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; - } - inline ColumnStatisticsRequest& operator=(ColumnStatisticsRequest&& 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 ColumnStatisticsRequest& default_instance() { - return *internal_default_instance(); - } - 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); } - 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 - if (GetArena() == other->GetArena()) { -#endif // !PROTOBUF_FORCE_COPY_IN_SWAP - InternalSwap(other); - } else { - ::google::protobuf::internal::GenericSwap(this, other); - } - } - void UnsafeArenaSwap(ColumnStatisticsRequest* other) { - if (other == this) return; - ABSL_DCHECK(GetArena() == other->GetArena()); - InternalSwap(other); - } - - // implements Message ---------------------------------------------- - - 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); } - - private: - static void MergeImpl( - ::google::protobuf::MessageLite& to_msg, - const ::google::protobuf::MessageLite& from_msg); - - 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; - #endif // PROTOBUF_CUSTOM_VTABLE - int GetCachedSize() const { return _impl_._cached_size_.Get(); } - - private: - void SharedCtor(::google::protobuf::Arena* arena); - void SharedDtor(); - void InternalSwap(ColumnStatisticsRequest* other); - private: - friend class ::google::protobuf::internal::AnyMetadata; - 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); - 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, - kSourceIdFieldNumber = 2, - kUniqueValueLimitFieldNumber = 4, - }; - // string column_name = 3; - void clear_column_name() ; - const std::string& column_name() const; - template - void set_column_name(Arg_&& arg, Args_... args); - std::string* mutable_column_name(); - PROTOBUF_NODISCARD std::string* release_column_name(); - void set_allocated_column_name(std::string* value); - - private: - const std::string& _internal_column_name() const; - inline PROTOBUF_ALWAYS_INLINE void _internal_set_column_name( - const std::string& value); - std::string* _internal_mutable_column_name(); - - public: - // .io.deephaven.proto.backplane.grpc.Ticket result_id = 1; - bool has_result_id() const; - void clear_result_id() ; - const ::io::deephaven::proto::backplane::grpc::Ticket& result_id() const; - PROTOBUF_NODISCARD ::io::deephaven::proto::backplane::grpc::Ticket* release_result_id(); - ::io::deephaven::proto::backplane::grpc::Ticket* mutable_result_id(); - void set_allocated_result_id(::io::deephaven::proto::backplane::grpc::Ticket* value); - void unsafe_arena_set_allocated_result_id(::io::deephaven::proto::backplane::grpc::Ticket* value); - ::io::deephaven::proto::backplane::grpc::Ticket* unsafe_arena_release_result_id(); - - private: - const ::io::deephaven::proto::backplane::grpc::Ticket& _internal_result_id() const; - ::io::deephaven::proto::backplane::grpc::Ticket* _internal_mutable_result_id(); - - public: - // .io.deephaven.proto.backplane.grpc.TableReference source_id = 2; - bool has_source_id() const; - void clear_source_id() ; - const ::io::deephaven::proto::backplane::grpc::TableReference& source_id() const; - PROTOBUF_NODISCARD ::io::deephaven::proto::backplane::grpc::TableReference* release_source_id(); - ::io::deephaven::proto::backplane::grpc::TableReference* mutable_source_id(); - void set_allocated_source_id(::io::deephaven::proto::backplane::grpc::TableReference* value); - void unsafe_arena_set_allocated_source_id(::io::deephaven::proto::backplane::grpc::TableReference* value); - ::io::deephaven::proto::backplane::grpc::TableReference* unsafe_arena_release_source_id(); - - private: - const ::io::deephaven::proto::backplane::grpc::TableReference& _internal_source_id() const; - ::io::deephaven::proto::backplane::grpc::TableReference* _internal_mutable_source_id(); - - public: - // optional int32 unique_value_limit = 4; - bool has_unique_value_limit() const; - void clear_unique_value_limit() ; - ::int32_t unique_value_limit() const; - void set_unique_value_limit(::int32_t value); - - private: - ::int32_t _internal_unique_value_limit() const; - void _internal_set_unique_value_limit(::int32_t value); - - public: - // @@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 - 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 ColumnStatisticsRequest& from_msg); - ::google::protobuf::internal::HasBits<1> _has_bits_; - mutable ::google::protobuf::internal::CachedSize _cached_size_; - ::google::protobuf::internal::ArenaStringPtr column_name_; - ::io::deephaven::proto::backplane::grpc::Ticket* result_id_; - ::io::deephaven::proto::backplane::grpc::TableReference* source_id_; - ::int32_t unique_value_limit_; - PROTOBUF_TSAN_DECLARE_MEMBER - }; - 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) */ { - public: - inline AsOfJoinTablesRequest() : AsOfJoinTablesRequest(nullptr) {} - ~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; - } - inline AsOfJoinTablesRequest& operator=(AsOfJoinTablesRequest&& 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 AsOfJoinTablesRequest& default_instance() { - return *internal_default_instance(); - } - 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); } - 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 - if (GetArena() == other->GetArena()) { -#endif // !PROTOBUF_FORCE_COPY_IN_SWAP - InternalSwap(other); - } else { - ::google::protobuf::internal::GenericSwap(this, other); - } - } - void UnsafeArenaSwap(AsOfJoinTablesRequest* other) { - if (other == this) return; - ABSL_DCHECK(GetArena() == other->GetArena()); - InternalSwap(other); - } - - // implements Message ---------------------------------------------- - - 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); } - - private: - static void MergeImpl( - ::google::protobuf::MessageLite& to_msg, - const ::google::protobuf::MessageLite& from_msg); - - 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; - #endif // PROTOBUF_CUSTOM_VTABLE - int GetCachedSize() const { return _impl_._cached_size_.Get(); } - - private: - void SharedCtor(::google::protobuf::Arena* arena); - void SharedDtor(); - void InternalSwap(AsOfJoinTablesRequest* other); - private: - friend class ::google::protobuf::internal::AnyMetadata; - 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); - 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; - static constexpr MatchRule GREATER_THAN_EQUAL = AsOfJoinTablesRequest_MatchRule_GREATER_THAN_EQUAL; - static constexpr MatchRule GREATER_THAN = AsOfJoinTablesRequest_MatchRule_GREATER_THAN; - static inline bool MatchRule_IsValid(int value) { - return AsOfJoinTablesRequest_MatchRule_IsValid(value); - } - static constexpr MatchRule MatchRule_MIN = AsOfJoinTablesRequest_MatchRule_MatchRule_MIN; - static constexpr MatchRule MatchRule_MAX = AsOfJoinTablesRequest_MatchRule_MatchRule_MAX; - static constexpr int MatchRule_ARRAYSIZE = AsOfJoinTablesRequest_MatchRule_MatchRule_ARRAYSIZE; - static inline const ::google::protobuf::EnumDescriptor* MatchRule_descriptor() { - return AsOfJoinTablesRequest_MatchRule_descriptor(); - } - template - static inline const std::string& MatchRule_Name(T value) { - return AsOfJoinTablesRequest_MatchRule_Name(value); - } - static inline bool MatchRule_Parse(absl::string_view name, MatchRule* value) { - return AsOfJoinTablesRequest_MatchRule_Parse(name, value); - } - - // accessors ------------------------------------------------------- - enum : int { - kColumnsToMatchFieldNumber = 4, - kColumnsToAddFieldNumber = 5, - kResultIdFieldNumber = 1, - kLeftIdFieldNumber = 2, - kRightIdFieldNumber = 3, - kAsOfMatchRuleFieldNumber = 7, - }; - // repeated string columns_to_match = 4; - int columns_to_match_size() const; - private: - int _internal_columns_to_match_size() const; - - public: - void clear_columns_to_match() ; - const std::string& columns_to_match(int index) const; - std::string* mutable_columns_to_match(int index); - template - void set_columns_to_match(int index, Arg_&& value, Args_... args); - std::string* add_columns_to_match(); - 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(); - - private: - const ::google::protobuf::RepeatedPtrField& _internal_columns_to_match() const; - ::google::protobuf::RepeatedPtrField* _internal_mutable_columns_to_match(); - - public: - // repeated string columns_to_add = 5; - int columns_to_add_size() const; - private: - int _internal_columns_to_add_size() const; - - public: - void clear_columns_to_add() ; - const std::string& columns_to_add(int index) const; - std::string* mutable_columns_to_add(int index); - template - void set_columns_to_add(int index, Arg_&& value, Args_... args); - std::string* add_columns_to_add(); - 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(); - - private: - const ::google::protobuf::RepeatedPtrField& _internal_columns_to_add() const; - ::google::protobuf::RepeatedPtrField* _internal_mutable_columns_to_add(); - - public: - // .io.deephaven.proto.backplane.grpc.Ticket result_id = 1; - bool has_result_id() const; - void clear_result_id() ; - const ::io::deephaven::proto::backplane::grpc::Ticket& result_id() const; - PROTOBUF_NODISCARD ::io::deephaven::proto::backplane::grpc::Ticket* release_result_id(); - ::io::deephaven::proto::backplane::grpc::Ticket* mutable_result_id(); - void set_allocated_result_id(::io::deephaven::proto::backplane::grpc::Ticket* value); - void unsafe_arena_set_allocated_result_id(::io::deephaven::proto::backplane::grpc::Ticket* value); - ::io::deephaven::proto::backplane::grpc::Ticket* unsafe_arena_release_result_id(); - - private: - const ::io::deephaven::proto::backplane::grpc::Ticket& _internal_result_id() const; - ::io::deephaven::proto::backplane::grpc::Ticket* _internal_mutable_result_id(); - - public: - // .io.deephaven.proto.backplane.grpc.TableReference left_id = 2; - bool has_left_id() const; - void clear_left_id() ; - const ::io::deephaven::proto::backplane::grpc::TableReference& left_id() const; - PROTOBUF_NODISCARD ::io::deephaven::proto::backplane::grpc::TableReference* release_left_id(); - ::io::deephaven::proto::backplane::grpc::TableReference* mutable_left_id(); - void set_allocated_left_id(::io::deephaven::proto::backplane::grpc::TableReference* value); - void unsafe_arena_set_allocated_left_id(::io::deephaven::proto::backplane::grpc::TableReference* value); - ::io::deephaven::proto::backplane::grpc::TableReference* unsafe_arena_release_left_id(); - - private: - const ::io::deephaven::proto::backplane::grpc::TableReference& _internal_left_id() const; - ::io::deephaven::proto::backplane::grpc::TableReference* _internal_mutable_left_id(); - - public: - // .io.deephaven.proto.backplane.grpc.TableReference right_id = 3; - bool has_right_id() const; - void clear_right_id() ; - const ::io::deephaven::proto::backplane::grpc::TableReference& right_id() const; - PROTOBUF_NODISCARD ::io::deephaven::proto::backplane::grpc::TableReference* release_right_id(); - ::io::deephaven::proto::backplane::grpc::TableReference* mutable_right_id(); - void set_allocated_right_id(::io::deephaven::proto::backplane::grpc::TableReference* value); - void unsafe_arena_set_allocated_right_id(::io::deephaven::proto::backplane::grpc::TableReference* value); - ::io::deephaven::proto::backplane::grpc::TableReference* unsafe_arena_release_right_id(); - - private: - const ::io::deephaven::proto::backplane::grpc::TableReference& _internal_right_id() const; - ::io::deephaven::proto::backplane::grpc::TableReference* _internal_mutable_right_id(); - - public: - // .io.deephaven.proto.backplane.grpc.AsOfJoinTablesRequest.MatchRule as_of_match_rule = 7; - void clear_as_of_match_rule() ; - ::io::deephaven::proto::backplane::grpc::AsOfJoinTablesRequest_MatchRule as_of_match_rule() const; - void set_as_of_match_rule(::io::deephaven::proto::backplane::grpc::AsOfJoinTablesRequest_MatchRule value); - - private: - ::io::deephaven::proto::backplane::grpc::AsOfJoinTablesRequest_MatchRule _internal_as_of_match_rule() const; - void _internal_set_as_of_match_rule(::io::deephaven::proto::backplane::grpc::AsOfJoinTablesRequest_MatchRule value); - - public: - // @@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 - 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 AsOfJoinTablesRequest& from_msg); - ::google::protobuf::internal::HasBits<1> _has_bits_; - mutable ::google::protobuf::internal::CachedSize _cached_size_; - ::google::protobuf::RepeatedPtrField columns_to_match_; - ::google::protobuf::RepeatedPtrField columns_to_add_; - ::io::deephaven::proto::backplane::grpc::Ticket* result_id_; - ::io::deephaven::proto::backplane::grpc::TableReference* left_id_; - ::io::deephaven::proto::backplane::grpc::TableReference* right_id_; - int as_of_match_rule_; - PROTOBUF_TSAN_DECLARE_MEMBER - }; - 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) */ { - public: - inline ApplyPreviewColumnsRequest() : ApplyPreviewColumnsRequest(nullptr) {} - ~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; - } - inline ApplyPreviewColumnsRequest& operator=(ApplyPreviewColumnsRequest&& 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 ApplyPreviewColumnsRequest& default_instance() { - return *internal_default_instance(); - } - 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); } - 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 - if (GetArena() == other->GetArena()) { -#endif // !PROTOBUF_FORCE_COPY_IN_SWAP - InternalSwap(other); - } else { - ::google::protobuf::internal::GenericSwap(this, other); - } - } - void UnsafeArenaSwap(ApplyPreviewColumnsRequest* other) { - if (other == this) return; - ABSL_DCHECK(GetArena() == other->GetArena()); - InternalSwap(other); - } - - // implements Message ---------------------------------------------- - - 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); } - - private: - static void MergeImpl( - ::google::protobuf::MessageLite& to_msg, - const ::google::protobuf::MessageLite& from_msg); - - 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; - #endif // PROTOBUF_CUSTOM_VTABLE - int GetCachedSize() const { return _impl_._cached_size_.Get(); } - - private: - void SharedCtor(::google::protobuf::Arena* arena); - void SharedDtor(); - void InternalSwap(ApplyPreviewColumnsRequest* other); - private: - friend class ::google::protobuf::internal::AnyMetadata; - 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); - 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, - }; - // .io.deephaven.proto.backplane.grpc.TableReference source_id = 1; - bool has_source_id() const; - void clear_source_id() ; - const ::io::deephaven::proto::backplane::grpc::TableReference& source_id() const; - PROTOBUF_NODISCARD ::io::deephaven::proto::backplane::grpc::TableReference* release_source_id(); - ::io::deephaven::proto::backplane::grpc::TableReference* mutable_source_id(); - void set_allocated_source_id(::io::deephaven::proto::backplane::grpc::TableReference* value); - void unsafe_arena_set_allocated_source_id(::io::deephaven::proto::backplane::grpc::TableReference* value); - ::io::deephaven::proto::backplane::grpc::TableReference* unsafe_arena_release_source_id(); - - private: - const ::io::deephaven::proto::backplane::grpc::TableReference& _internal_source_id() const; - ::io::deephaven::proto::backplane::grpc::TableReference* _internal_mutable_source_id(); - - public: - // .io.deephaven.proto.backplane.grpc.Ticket result_id = 2; - bool has_result_id() const; - void clear_result_id() ; - const ::io::deephaven::proto::backplane::grpc::Ticket& result_id() const; - PROTOBUF_NODISCARD ::io::deephaven::proto::backplane::grpc::Ticket* release_result_id(); - ::io::deephaven::proto::backplane::grpc::Ticket* mutable_result_id(); - void set_allocated_result_id(::io::deephaven::proto::backplane::grpc::Ticket* value); - void unsafe_arena_set_allocated_result_id(::io::deephaven::proto::backplane::grpc::Ticket* value); - ::io::deephaven::proto::backplane::grpc::Ticket* unsafe_arena_release_result_id(); - - private: - const ::io::deephaven::proto::backplane::grpc::Ticket& _internal_result_id() const; - ::io::deephaven::proto::backplane::grpc::Ticket* _internal_mutable_result_id(); - - public: - // @@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 - 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 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_; - ::io::deephaven::proto::backplane::grpc::Ticket* result_id_; - PROTOBUF_TSAN_DECLARE_MEMBER - }; - 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) */ { - public: - inline AjRajTablesRequest() : AjRajTablesRequest(nullptr) {} - ~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; - } - inline AjRajTablesRequest& operator=(AjRajTablesRequest&& 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 AjRajTablesRequest& default_instance() { - return *internal_default_instance(); - } - 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); } - 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 - if (GetArena() == other->GetArena()) { -#endif // !PROTOBUF_FORCE_COPY_IN_SWAP - InternalSwap(other); - } else { - ::google::protobuf::internal::GenericSwap(this, other); - } - } - void UnsafeArenaSwap(AjRajTablesRequest* other) { - if (other == this) return; - ABSL_DCHECK(GetArena() == other->GetArena()); - InternalSwap(other); - } - - // implements Message ---------------------------------------------- - - 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); } - - private: - static void MergeImpl( - ::google::protobuf::MessageLite& to_msg, - const ::google::protobuf::MessageLite& from_msg); - - 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; - #endif // PROTOBUF_CUSTOM_VTABLE - int GetCachedSize() const { return _impl_._cached_size_.Get(); } - - private: - void SharedCtor(::google::protobuf::Arena* arena); - void SharedDtor(); - void InternalSwap(AjRajTablesRequest* other); - private: - friend class ::google::protobuf::internal::AnyMetadata; - 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); - 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, - kAsOfColumnFieldNumber = 5, - kResultIdFieldNumber = 1, - kLeftIdFieldNumber = 2, - kRightIdFieldNumber = 3, - }; - // repeated string exact_match_columns = 4; - int exact_match_columns_size() const; - private: - int _internal_exact_match_columns_size() const; - - public: - void clear_exact_match_columns() ; - const std::string& exact_match_columns(int index) const; - std::string* mutable_exact_match_columns(int index); - template - void set_exact_match_columns(int index, Arg_&& value, Args_... args); - std::string* add_exact_match_columns(); - 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(); - - private: - const ::google::protobuf::RepeatedPtrField& _internal_exact_match_columns() const; - ::google::protobuf::RepeatedPtrField* _internal_mutable_exact_match_columns(); - - public: - // repeated string columns_to_add = 6; - int columns_to_add_size() const; - private: - int _internal_columns_to_add_size() const; - - public: - void clear_columns_to_add() ; - const std::string& columns_to_add(int index) const; - std::string* mutable_columns_to_add(int index); - template - void set_columns_to_add(int index, Arg_&& value, Args_... args); - std::string* add_columns_to_add(); - 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(); - - private: - const ::google::protobuf::RepeatedPtrField& _internal_columns_to_add() const; - ::google::protobuf::RepeatedPtrField* _internal_mutable_columns_to_add(); - - public: - // string as_of_column = 5; - void clear_as_of_column() ; - const std::string& as_of_column() const; - template - void set_as_of_column(Arg_&& arg, Args_... args); - std::string* mutable_as_of_column(); - PROTOBUF_NODISCARD std::string* release_as_of_column(); - void set_allocated_as_of_column(std::string* value); - - private: - const std::string& _internal_as_of_column() const; - inline PROTOBUF_ALWAYS_INLINE void _internal_set_as_of_column( - const std::string& value); - std::string* _internal_mutable_as_of_column(); - - public: - // .io.deephaven.proto.backplane.grpc.Ticket result_id = 1; - bool has_result_id() const; - void clear_result_id() ; - const ::io::deephaven::proto::backplane::grpc::Ticket& result_id() const; - PROTOBUF_NODISCARD ::io::deephaven::proto::backplane::grpc::Ticket* release_result_id(); - ::io::deephaven::proto::backplane::grpc::Ticket* mutable_result_id(); - void set_allocated_result_id(::io::deephaven::proto::backplane::grpc::Ticket* value); - void unsafe_arena_set_allocated_result_id(::io::deephaven::proto::backplane::grpc::Ticket* value); - ::io::deephaven::proto::backplane::grpc::Ticket* unsafe_arena_release_result_id(); - - private: - const ::io::deephaven::proto::backplane::grpc::Ticket& _internal_result_id() const; - ::io::deephaven::proto::backplane::grpc::Ticket* _internal_mutable_result_id(); - - public: - // .io.deephaven.proto.backplane.grpc.TableReference left_id = 2; - bool has_left_id() const; - void clear_left_id() ; - const ::io::deephaven::proto::backplane::grpc::TableReference& left_id() const; - PROTOBUF_NODISCARD ::io::deephaven::proto::backplane::grpc::TableReference* release_left_id(); - ::io::deephaven::proto::backplane::grpc::TableReference* mutable_left_id(); - void set_allocated_left_id(::io::deephaven::proto::backplane::grpc::TableReference* value); - void unsafe_arena_set_allocated_left_id(::io::deephaven::proto::backplane::grpc::TableReference* value); - ::io::deephaven::proto::backplane::grpc::TableReference* unsafe_arena_release_left_id(); - - private: - const ::io::deephaven::proto::backplane::grpc::TableReference& _internal_left_id() const; - ::io::deephaven::proto::backplane::grpc::TableReference* _internal_mutable_left_id(); - - public: - // .io.deephaven.proto.backplane.grpc.TableReference right_id = 3; - bool has_right_id() const; - void clear_right_id() ; - const ::io::deephaven::proto::backplane::grpc::TableReference& right_id() const; - PROTOBUF_NODISCARD ::io::deephaven::proto::backplane::grpc::TableReference* release_right_id(); - ::io::deephaven::proto::backplane::grpc::TableReference* mutable_right_id(); - void set_allocated_right_id(::io::deephaven::proto::backplane::grpc::TableReference* value); - void unsafe_arena_set_allocated_right_id(::io::deephaven::proto::backplane::grpc::TableReference* value); - ::io::deephaven::proto::backplane::grpc::TableReference* unsafe_arena_release_right_id(); - - private: - const ::io::deephaven::proto::backplane::grpc::TableReference& _internal_right_id() const; - ::io::deephaven::proto::backplane::grpc::TableReference* _internal_mutable_right_id(); - - public: - // @@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 - 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 AjRajTablesRequest& from_msg); - ::google::protobuf::internal::HasBits<1> _has_bits_; - mutable ::google::protobuf::internal::CachedSize _cached_size_; - ::google::protobuf::RepeatedPtrField exact_match_columns_; - ::google::protobuf::RepeatedPtrField columns_to_add_; - ::google::protobuf::internal::ArenaStringPtr as_of_column_; - ::io::deephaven::proto::backplane::grpc::Ticket* result_id_; - ::io::deephaven::proto::backplane::grpc::TableReference* left_id_; - ::io::deephaven::proto::backplane::grpc::TableReference* right_id_; - PROTOBUF_TSAN_DECLARE_MEMBER - }; - 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) */ { - public: - inline AggSpec() : AggSpec(nullptr) {} - ~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; - } - inline AggSpec& operator=(AggSpec&& 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 AggSpec& default_instance() { - return *internal_default_instance(); - } - enum TypeCase { - kAbsSum = 1, - kApproximatePercentile = 2, - kAvg = 3, - kCountDistinct = 4, - kDistinct = 5, - kFirst = 6, - kFormula = 7, - kFreeze = 8, - kGroup = 9, - kLast = 10, - kMax = 11, - kMedian = 12, - kMin = 13, - kPercentile = 14, - kSortedFirst = 15, - kSortedLast = 16, - kStd = 17, - kSum = 18, - kTDigest = 19, - kUnique = 20, - kWeightedAvg = 21, - kWeightedSum = 22, - 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); } - 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 - if (GetArena() == other->GetArena()) { -#endif // !PROTOBUF_FORCE_COPY_IN_SWAP - InternalSwap(other); - } else { - ::google::protobuf::internal::GenericSwap(this, other); - } - } - void UnsafeArenaSwap(AggSpec* other) { - if (other == this) return; - ABSL_DCHECK(GetArena() == other->GetArena()); - InternalSwap(other); - } - - // implements Message ---------------------------------------------- - - 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); } - - private: - static void MergeImpl( - ::google::protobuf::MessageLite& to_msg, - const ::google::protobuf::MessageLite& from_msg); - - 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; - #endif // PROTOBUF_CUSTOM_VTABLE - int GetCachedSize() const { return _impl_._cached_size_.Get(); } - - private: - void SharedCtor(::google::protobuf::Arena* arena); - void SharedDtor(); - void InternalSwap(AggSpec* other); - private: - friend class ::google::protobuf::internal::AnyMetadata; - 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); - 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; - using AggSpecFormula = AggSpec_AggSpecFormula; - using AggSpecMedian = AggSpec_AggSpecMedian; - using AggSpecPercentile = AggSpec_AggSpecPercentile; - using AggSpecSorted = AggSpec_AggSpecSorted; - using AggSpecSortedColumn = AggSpec_AggSpecSortedColumn; - using AggSpecTDigest = AggSpec_AggSpecTDigest; - using AggSpecUnique = AggSpec_AggSpecUnique; - using AggSpecNonUniqueSentinel = AggSpec_AggSpecNonUniqueSentinel; - using AggSpecWeighted = AggSpec_AggSpecWeighted; - using AggSpecAbsSum = AggSpec_AggSpecAbsSum; - using AggSpecAvg = AggSpec_AggSpecAvg; - using AggSpecFirst = AggSpec_AggSpecFirst; - using AggSpecFreeze = AggSpec_AggSpecFreeze; - using AggSpecGroup = AggSpec_AggSpecGroup; - using AggSpecLast = AggSpec_AggSpecLast; - using AggSpecMax = AggSpec_AggSpecMax; - using AggSpecMin = AggSpec_AggSpecMin; - using AggSpecStd = AggSpec_AggSpecStd; - using AggSpecSum = AggSpec_AggSpecSum; - using AggSpecVar = AggSpec_AggSpecVar; - - // accessors ------------------------------------------------------- - enum : int { - kAbsSumFieldNumber = 1, - kApproximatePercentileFieldNumber = 2, - kAvgFieldNumber = 3, - kCountDistinctFieldNumber = 4, - kDistinctFieldNumber = 5, - kFirstFieldNumber = 6, - kFormulaFieldNumber = 7, - kFreezeFieldNumber = 8, - kGroupFieldNumber = 9, - kLastFieldNumber = 10, - kMaxFieldNumber = 11, - kMedianFieldNumber = 12, - kMinFieldNumber = 13, - kPercentileFieldNumber = 14, - kSortedFirstFieldNumber = 15, - kSortedLastFieldNumber = 16, - kStdFieldNumber = 17, - kSumFieldNumber = 18, - kTDigestFieldNumber = 19, - kUniqueFieldNumber = 20, - kWeightedAvgFieldNumber = 21, - kWeightedSumFieldNumber = 22, - kVarFieldNumber = 23, - }; - // .io.deephaven.proto.backplane.grpc.AggSpec.AggSpecAbsSum abs_sum = 1; - bool has_abs_sum() const; - private: - bool _internal_has_abs_sum() const; - - public: - void clear_abs_sum() ; - const ::io::deephaven::proto::backplane::grpc::AggSpec_AggSpecAbsSum& abs_sum() const; - PROTOBUF_NODISCARD ::io::deephaven::proto::backplane::grpc::AggSpec_AggSpecAbsSum* release_abs_sum(); - ::io::deephaven::proto::backplane::grpc::AggSpec_AggSpecAbsSum* mutable_abs_sum(); - void set_allocated_abs_sum(::io::deephaven::proto::backplane::grpc::AggSpec_AggSpecAbsSum* value); - void unsafe_arena_set_allocated_abs_sum(::io::deephaven::proto::backplane::grpc::AggSpec_AggSpecAbsSum* value); - ::io::deephaven::proto::backplane::grpc::AggSpec_AggSpecAbsSum* unsafe_arena_release_abs_sum(); - - private: - const ::io::deephaven::proto::backplane::grpc::AggSpec_AggSpecAbsSum& _internal_abs_sum() const; - ::io::deephaven::proto::backplane::grpc::AggSpec_AggSpecAbsSum* _internal_mutable_abs_sum(); - - public: - // .io.deephaven.proto.backplane.grpc.AggSpec.AggSpecApproximatePercentile approximate_percentile = 2; - bool has_approximate_percentile() const; - private: - bool _internal_has_approximate_percentile() const; - - public: - void clear_approximate_percentile() ; - const ::io::deephaven::proto::backplane::grpc::AggSpec_AggSpecApproximatePercentile& approximate_percentile() const; - PROTOBUF_NODISCARD ::io::deephaven::proto::backplane::grpc::AggSpec_AggSpecApproximatePercentile* release_approximate_percentile(); - ::io::deephaven::proto::backplane::grpc::AggSpec_AggSpecApproximatePercentile* mutable_approximate_percentile(); - void set_allocated_approximate_percentile(::io::deephaven::proto::backplane::grpc::AggSpec_AggSpecApproximatePercentile* value); - void unsafe_arena_set_allocated_approximate_percentile(::io::deephaven::proto::backplane::grpc::AggSpec_AggSpecApproximatePercentile* value); - ::io::deephaven::proto::backplane::grpc::AggSpec_AggSpecApproximatePercentile* unsafe_arena_release_approximate_percentile(); - - private: - const ::io::deephaven::proto::backplane::grpc::AggSpec_AggSpecApproximatePercentile& _internal_approximate_percentile() const; - ::io::deephaven::proto::backplane::grpc::AggSpec_AggSpecApproximatePercentile* _internal_mutable_approximate_percentile(); - - public: - // .io.deephaven.proto.backplane.grpc.AggSpec.AggSpecAvg avg = 3; - bool has_avg() const; - private: - bool _internal_has_avg() const; - - public: - void clear_avg() ; - const ::io::deephaven::proto::backplane::grpc::AggSpec_AggSpecAvg& avg() const; - PROTOBUF_NODISCARD ::io::deephaven::proto::backplane::grpc::AggSpec_AggSpecAvg* release_avg(); - ::io::deephaven::proto::backplane::grpc::AggSpec_AggSpecAvg* mutable_avg(); - void set_allocated_avg(::io::deephaven::proto::backplane::grpc::AggSpec_AggSpecAvg* value); - void unsafe_arena_set_allocated_avg(::io::deephaven::proto::backplane::grpc::AggSpec_AggSpecAvg* value); - ::io::deephaven::proto::backplane::grpc::AggSpec_AggSpecAvg* unsafe_arena_release_avg(); - - private: - const ::io::deephaven::proto::backplane::grpc::AggSpec_AggSpecAvg& _internal_avg() const; - ::io::deephaven::proto::backplane::grpc::AggSpec_AggSpecAvg* _internal_mutable_avg(); - - public: - // .io.deephaven.proto.backplane.grpc.AggSpec.AggSpecCountDistinct count_distinct = 4; - bool has_count_distinct() const; - private: - bool _internal_has_count_distinct() const; - - public: - void clear_count_distinct() ; - const ::io::deephaven::proto::backplane::grpc::AggSpec_AggSpecCountDistinct& count_distinct() const; - PROTOBUF_NODISCARD ::io::deephaven::proto::backplane::grpc::AggSpec_AggSpecCountDistinct* release_count_distinct(); - ::io::deephaven::proto::backplane::grpc::AggSpec_AggSpecCountDistinct* mutable_count_distinct(); - void set_allocated_count_distinct(::io::deephaven::proto::backplane::grpc::AggSpec_AggSpecCountDistinct* value); - void unsafe_arena_set_allocated_count_distinct(::io::deephaven::proto::backplane::grpc::AggSpec_AggSpecCountDistinct* value); - ::io::deephaven::proto::backplane::grpc::AggSpec_AggSpecCountDistinct* unsafe_arena_release_count_distinct(); - - private: - const ::io::deephaven::proto::backplane::grpc::AggSpec_AggSpecCountDistinct& _internal_count_distinct() const; - ::io::deephaven::proto::backplane::grpc::AggSpec_AggSpecCountDistinct* _internal_mutable_count_distinct(); - - public: - // .io.deephaven.proto.backplane.grpc.AggSpec.AggSpecDistinct distinct = 5; - bool has_distinct() const; - private: - bool _internal_has_distinct() const; - - public: - void clear_distinct() ; - const ::io::deephaven::proto::backplane::grpc::AggSpec_AggSpecDistinct& distinct() const; - PROTOBUF_NODISCARD ::io::deephaven::proto::backplane::grpc::AggSpec_AggSpecDistinct* release_distinct(); - ::io::deephaven::proto::backplane::grpc::AggSpec_AggSpecDistinct* mutable_distinct(); - void set_allocated_distinct(::io::deephaven::proto::backplane::grpc::AggSpec_AggSpecDistinct* value); - void unsafe_arena_set_allocated_distinct(::io::deephaven::proto::backplane::grpc::AggSpec_AggSpecDistinct* value); - ::io::deephaven::proto::backplane::grpc::AggSpec_AggSpecDistinct* unsafe_arena_release_distinct(); - - private: - const ::io::deephaven::proto::backplane::grpc::AggSpec_AggSpecDistinct& _internal_distinct() const; - ::io::deephaven::proto::backplane::grpc::AggSpec_AggSpecDistinct* _internal_mutable_distinct(); - - public: - // .io.deephaven.proto.backplane.grpc.AggSpec.AggSpecFirst first = 6; - bool has_first() const; - private: - bool _internal_has_first() const; - - public: - void clear_first() ; - const ::io::deephaven::proto::backplane::grpc::AggSpec_AggSpecFirst& first() const; - PROTOBUF_NODISCARD ::io::deephaven::proto::backplane::grpc::AggSpec_AggSpecFirst* release_first(); - ::io::deephaven::proto::backplane::grpc::AggSpec_AggSpecFirst* mutable_first(); - void set_allocated_first(::io::deephaven::proto::backplane::grpc::AggSpec_AggSpecFirst* value); - void unsafe_arena_set_allocated_first(::io::deephaven::proto::backplane::grpc::AggSpec_AggSpecFirst* value); - ::io::deephaven::proto::backplane::grpc::AggSpec_AggSpecFirst* unsafe_arena_release_first(); - - private: - const ::io::deephaven::proto::backplane::grpc::AggSpec_AggSpecFirst& _internal_first() const; - ::io::deephaven::proto::backplane::grpc::AggSpec_AggSpecFirst* _internal_mutable_first(); - - public: - // .io.deephaven.proto.backplane.grpc.AggSpec.AggSpecFormula formula = 7; - bool has_formula() const; - private: - bool _internal_has_formula() const; - - public: - void clear_formula() ; - const ::io::deephaven::proto::backplane::grpc::AggSpec_AggSpecFormula& formula() const; - PROTOBUF_NODISCARD ::io::deephaven::proto::backplane::grpc::AggSpec_AggSpecFormula* release_formula(); - ::io::deephaven::proto::backplane::grpc::AggSpec_AggSpecFormula* mutable_formula(); - void set_allocated_formula(::io::deephaven::proto::backplane::grpc::AggSpec_AggSpecFormula* value); - void unsafe_arena_set_allocated_formula(::io::deephaven::proto::backplane::grpc::AggSpec_AggSpecFormula* value); - ::io::deephaven::proto::backplane::grpc::AggSpec_AggSpecFormula* unsafe_arena_release_formula(); - - private: - const ::io::deephaven::proto::backplane::grpc::AggSpec_AggSpecFormula& _internal_formula() const; - ::io::deephaven::proto::backplane::grpc::AggSpec_AggSpecFormula* _internal_mutable_formula(); - - public: - // .io.deephaven.proto.backplane.grpc.AggSpec.AggSpecFreeze freeze = 8; - bool has_freeze() const; - private: - bool _internal_has_freeze() const; - - public: - void clear_freeze() ; - const ::io::deephaven::proto::backplane::grpc::AggSpec_AggSpecFreeze& freeze() const; - PROTOBUF_NODISCARD ::io::deephaven::proto::backplane::grpc::AggSpec_AggSpecFreeze* release_freeze(); - ::io::deephaven::proto::backplane::grpc::AggSpec_AggSpecFreeze* mutable_freeze(); - void set_allocated_freeze(::io::deephaven::proto::backplane::grpc::AggSpec_AggSpecFreeze* value); - void unsafe_arena_set_allocated_freeze(::io::deephaven::proto::backplane::grpc::AggSpec_AggSpecFreeze* value); - ::io::deephaven::proto::backplane::grpc::AggSpec_AggSpecFreeze* unsafe_arena_release_freeze(); - - private: - const ::io::deephaven::proto::backplane::grpc::AggSpec_AggSpecFreeze& _internal_freeze() const; - ::io::deephaven::proto::backplane::grpc::AggSpec_AggSpecFreeze* _internal_mutable_freeze(); - - public: - // .io.deephaven.proto.backplane.grpc.AggSpec.AggSpecGroup group = 9; - bool has_group() const; - private: - bool _internal_has_group() const; - - public: - void clear_group() ; - const ::io::deephaven::proto::backplane::grpc::AggSpec_AggSpecGroup& group() const; - PROTOBUF_NODISCARD ::io::deephaven::proto::backplane::grpc::AggSpec_AggSpecGroup* release_group(); - ::io::deephaven::proto::backplane::grpc::AggSpec_AggSpecGroup* mutable_group(); - void set_allocated_group(::io::deephaven::proto::backplane::grpc::AggSpec_AggSpecGroup* value); - void unsafe_arena_set_allocated_group(::io::deephaven::proto::backplane::grpc::AggSpec_AggSpecGroup* value); - ::io::deephaven::proto::backplane::grpc::AggSpec_AggSpecGroup* unsafe_arena_release_group(); - - private: - const ::io::deephaven::proto::backplane::grpc::AggSpec_AggSpecGroup& _internal_group() const; - ::io::deephaven::proto::backplane::grpc::AggSpec_AggSpecGroup* _internal_mutable_group(); - - public: - // .io.deephaven.proto.backplane.grpc.AggSpec.AggSpecLast last = 10; - bool has_last() const; - private: - bool _internal_has_last() const; - - public: - void clear_last() ; - const ::io::deephaven::proto::backplane::grpc::AggSpec_AggSpecLast& last() const; - PROTOBUF_NODISCARD ::io::deephaven::proto::backplane::grpc::AggSpec_AggSpecLast* release_last(); - ::io::deephaven::proto::backplane::grpc::AggSpec_AggSpecLast* mutable_last(); - void set_allocated_last(::io::deephaven::proto::backplane::grpc::AggSpec_AggSpecLast* value); - void unsafe_arena_set_allocated_last(::io::deephaven::proto::backplane::grpc::AggSpec_AggSpecLast* value); - ::io::deephaven::proto::backplane::grpc::AggSpec_AggSpecLast* unsafe_arena_release_last(); - - private: - const ::io::deephaven::proto::backplane::grpc::AggSpec_AggSpecLast& _internal_last() const; - ::io::deephaven::proto::backplane::grpc::AggSpec_AggSpecLast* _internal_mutable_last(); - - public: - // .io.deephaven.proto.backplane.grpc.AggSpec.AggSpecMax max = 11; - bool has_max() const; - private: - bool _internal_has_max() const; - - public: - void clear_max() ; - const ::io::deephaven::proto::backplane::grpc::AggSpec_AggSpecMax& max() const; - PROTOBUF_NODISCARD ::io::deephaven::proto::backplane::grpc::AggSpec_AggSpecMax* release_max(); - ::io::deephaven::proto::backplane::grpc::AggSpec_AggSpecMax* mutable_max(); - void set_allocated_max(::io::deephaven::proto::backplane::grpc::AggSpec_AggSpecMax* value); - void unsafe_arena_set_allocated_max(::io::deephaven::proto::backplane::grpc::AggSpec_AggSpecMax* value); - ::io::deephaven::proto::backplane::grpc::AggSpec_AggSpecMax* unsafe_arena_release_max(); - - private: - const ::io::deephaven::proto::backplane::grpc::AggSpec_AggSpecMax& _internal_max() const; - ::io::deephaven::proto::backplane::grpc::AggSpec_AggSpecMax* _internal_mutable_max(); - - public: - // .io.deephaven.proto.backplane.grpc.AggSpec.AggSpecMedian median = 12; - bool has_median() const; - private: - bool _internal_has_median() const; - - public: - void clear_median() ; - const ::io::deephaven::proto::backplane::grpc::AggSpec_AggSpecMedian& median() const; - PROTOBUF_NODISCARD ::io::deephaven::proto::backplane::grpc::AggSpec_AggSpecMedian* release_median(); - ::io::deephaven::proto::backplane::grpc::AggSpec_AggSpecMedian* mutable_median(); - void set_allocated_median(::io::deephaven::proto::backplane::grpc::AggSpec_AggSpecMedian* value); - void unsafe_arena_set_allocated_median(::io::deephaven::proto::backplane::grpc::AggSpec_AggSpecMedian* value); - ::io::deephaven::proto::backplane::grpc::AggSpec_AggSpecMedian* unsafe_arena_release_median(); - - private: - const ::io::deephaven::proto::backplane::grpc::AggSpec_AggSpecMedian& _internal_median() const; - ::io::deephaven::proto::backplane::grpc::AggSpec_AggSpecMedian* _internal_mutable_median(); - - public: - // .io.deephaven.proto.backplane.grpc.AggSpec.AggSpecMin min = 13; - bool has_min() const; - private: - bool _internal_has_min() const; - - public: - void clear_min() ; - const ::io::deephaven::proto::backplane::grpc::AggSpec_AggSpecMin& min() const; - PROTOBUF_NODISCARD ::io::deephaven::proto::backplane::grpc::AggSpec_AggSpecMin* release_min(); - ::io::deephaven::proto::backplane::grpc::AggSpec_AggSpecMin* mutable_min(); - void set_allocated_min(::io::deephaven::proto::backplane::grpc::AggSpec_AggSpecMin* value); - void unsafe_arena_set_allocated_min(::io::deephaven::proto::backplane::grpc::AggSpec_AggSpecMin* value); - ::io::deephaven::proto::backplane::grpc::AggSpec_AggSpecMin* unsafe_arena_release_min(); - - private: - const ::io::deephaven::proto::backplane::grpc::AggSpec_AggSpecMin& _internal_min() const; - ::io::deephaven::proto::backplane::grpc::AggSpec_AggSpecMin* _internal_mutable_min(); - - public: - // .io.deephaven.proto.backplane.grpc.AggSpec.AggSpecPercentile percentile = 14; - bool has_percentile() const; - private: - bool _internal_has_percentile() const; - - public: - void clear_percentile() ; - const ::io::deephaven::proto::backplane::grpc::AggSpec_AggSpecPercentile& percentile() const; - PROTOBUF_NODISCARD ::io::deephaven::proto::backplane::grpc::AggSpec_AggSpecPercentile* release_percentile(); - ::io::deephaven::proto::backplane::grpc::AggSpec_AggSpecPercentile* mutable_percentile(); - void set_allocated_percentile(::io::deephaven::proto::backplane::grpc::AggSpec_AggSpecPercentile* value); - void unsafe_arena_set_allocated_percentile(::io::deephaven::proto::backplane::grpc::AggSpec_AggSpecPercentile* value); - ::io::deephaven::proto::backplane::grpc::AggSpec_AggSpecPercentile* unsafe_arena_release_percentile(); - - private: - const ::io::deephaven::proto::backplane::grpc::AggSpec_AggSpecPercentile& _internal_percentile() const; - ::io::deephaven::proto::backplane::grpc::AggSpec_AggSpecPercentile* _internal_mutable_percentile(); - - public: - // .io.deephaven.proto.backplane.grpc.AggSpec.AggSpecSorted sorted_first = 15; - bool has_sorted_first() const; - private: - bool _internal_has_sorted_first() const; - - public: - void clear_sorted_first() ; - const ::io::deephaven::proto::backplane::grpc::AggSpec_AggSpecSorted& sorted_first() const; - PROTOBUF_NODISCARD ::io::deephaven::proto::backplane::grpc::AggSpec_AggSpecSorted* release_sorted_first(); - ::io::deephaven::proto::backplane::grpc::AggSpec_AggSpecSorted* mutable_sorted_first(); - void set_allocated_sorted_first(::io::deephaven::proto::backplane::grpc::AggSpec_AggSpecSorted* value); - void unsafe_arena_set_allocated_sorted_first(::io::deephaven::proto::backplane::grpc::AggSpec_AggSpecSorted* value); - ::io::deephaven::proto::backplane::grpc::AggSpec_AggSpecSorted* unsafe_arena_release_sorted_first(); - - private: - const ::io::deephaven::proto::backplane::grpc::AggSpec_AggSpecSorted& _internal_sorted_first() const; - ::io::deephaven::proto::backplane::grpc::AggSpec_AggSpecSorted* _internal_mutable_sorted_first(); - - public: - // .io.deephaven.proto.backplane.grpc.AggSpec.AggSpecSorted sorted_last = 16; - bool has_sorted_last() const; - private: - bool _internal_has_sorted_last() const; - - public: - void clear_sorted_last() ; - const ::io::deephaven::proto::backplane::grpc::AggSpec_AggSpecSorted& sorted_last() const; - PROTOBUF_NODISCARD ::io::deephaven::proto::backplane::grpc::AggSpec_AggSpecSorted* release_sorted_last(); - ::io::deephaven::proto::backplane::grpc::AggSpec_AggSpecSorted* mutable_sorted_last(); - void set_allocated_sorted_last(::io::deephaven::proto::backplane::grpc::AggSpec_AggSpecSorted* value); - void unsafe_arena_set_allocated_sorted_last(::io::deephaven::proto::backplane::grpc::AggSpec_AggSpecSorted* value); - ::io::deephaven::proto::backplane::grpc::AggSpec_AggSpecSorted* unsafe_arena_release_sorted_last(); - - private: - const ::io::deephaven::proto::backplane::grpc::AggSpec_AggSpecSorted& _internal_sorted_last() const; - ::io::deephaven::proto::backplane::grpc::AggSpec_AggSpecSorted* _internal_mutable_sorted_last(); - - public: - // .io.deephaven.proto.backplane.grpc.AggSpec.AggSpecStd std = 17; - bool has_std() const; - private: - bool _internal_has_std() const; - - public: - void clear_std() ; - const ::io::deephaven::proto::backplane::grpc::AggSpec_AggSpecStd& std() const; - PROTOBUF_NODISCARD ::io::deephaven::proto::backplane::grpc::AggSpec_AggSpecStd* release_std(); - ::io::deephaven::proto::backplane::grpc::AggSpec_AggSpecStd* mutable_std(); - void set_allocated_std(::io::deephaven::proto::backplane::grpc::AggSpec_AggSpecStd* value); - void unsafe_arena_set_allocated_std(::io::deephaven::proto::backplane::grpc::AggSpec_AggSpecStd* value); - ::io::deephaven::proto::backplane::grpc::AggSpec_AggSpecStd* unsafe_arena_release_std(); - - private: - const ::io::deephaven::proto::backplane::grpc::AggSpec_AggSpecStd& _internal_std() const; - ::io::deephaven::proto::backplane::grpc::AggSpec_AggSpecStd* _internal_mutable_std(); - - public: - // .io.deephaven.proto.backplane.grpc.AggSpec.AggSpecSum sum = 18; - bool has_sum() const; - private: - bool _internal_has_sum() const; - - public: - void clear_sum() ; - const ::io::deephaven::proto::backplane::grpc::AggSpec_AggSpecSum& sum() const; - PROTOBUF_NODISCARD ::io::deephaven::proto::backplane::grpc::AggSpec_AggSpecSum* release_sum(); - ::io::deephaven::proto::backplane::grpc::AggSpec_AggSpecSum* mutable_sum(); - void set_allocated_sum(::io::deephaven::proto::backplane::grpc::AggSpec_AggSpecSum* value); - void unsafe_arena_set_allocated_sum(::io::deephaven::proto::backplane::grpc::AggSpec_AggSpecSum* value); - ::io::deephaven::proto::backplane::grpc::AggSpec_AggSpecSum* unsafe_arena_release_sum(); - - private: - const ::io::deephaven::proto::backplane::grpc::AggSpec_AggSpecSum& _internal_sum() const; - ::io::deephaven::proto::backplane::grpc::AggSpec_AggSpecSum* _internal_mutable_sum(); - - public: - // .io.deephaven.proto.backplane.grpc.AggSpec.AggSpecTDigest t_digest = 19; - bool has_t_digest() const; - private: - bool _internal_has_t_digest() const; - - public: - void clear_t_digest() ; - const ::io::deephaven::proto::backplane::grpc::AggSpec_AggSpecTDigest& t_digest() const; - PROTOBUF_NODISCARD ::io::deephaven::proto::backplane::grpc::AggSpec_AggSpecTDigest* release_t_digest(); - ::io::deephaven::proto::backplane::grpc::AggSpec_AggSpecTDigest* mutable_t_digest(); - void set_allocated_t_digest(::io::deephaven::proto::backplane::grpc::AggSpec_AggSpecTDigest* value); - void unsafe_arena_set_allocated_t_digest(::io::deephaven::proto::backplane::grpc::AggSpec_AggSpecTDigest* value); - ::io::deephaven::proto::backplane::grpc::AggSpec_AggSpecTDigest* unsafe_arena_release_t_digest(); - - private: - const ::io::deephaven::proto::backplane::grpc::AggSpec_AggSpecTDigest& _internal_t_digest() const; - ::io::deephaven::proto::backplane::grpc::AggSpec_AggSpecTDigest* _internal_mutable_t_digest(); - - public: - // .io.deephaven.proto.backplane.grpc.AggSpec.AggSpecUnique unique = 20; - bool has_unique() const; - private: - bool _internal_has_unique() const; - - public: - void clear_unique() ; - const ::io::deephaven::proto::backplane::grpc::AggSpec_AggSpecUnique& unique() const; - PROTOBUF_NODISCARD ::io::deephaven::proto::backplane::grpc::AggSpec_AggSpecUnique* release_unique(); - ::io::deephaven::proto::backplane::grpc::AggSpec_AggSpecUnique* mutable_unique(); - void set_allocated_unique(::io::deephaven::proto::backplane::grpc::AggSpec_AggSpecUnique* value); - void unsafe_arena_set_allocated_unique(::io::deephaven::proto::backplane::grpc::AggSpec_AggSpecUnique* value); - ::io::deephaven::proto::backplane::grpc::AggSpec_AggSpecUnique* unsafe_arena_release_unique(); - - private: - const ::io::deephaven::proto::backplane::grpc::AggSpec_AggSpecUnique& _internal_unique() const; - ::io::deephaven::proto::backplane::grpc::AggSpec_AggSpecUnique* _internal_mutable_unique(); - - public: - // .io.deephaven.proto.backplane.grpc.AggSpec.AggSpecWeighted weighted_avg = 21; - bool has_weighted_avg() const; - private: - bool _internal_has_weighted_avg() const; - - public: - void clear_weighted_avg() ; - const ::io::deephaven::proto::backplane::grpc::AggSpec_AggSpecWeighted& weighted_avg() const; - PROTOBUF_NODISCARD ::io::deephaven::proto::backplane::grpc::AggSpec_AggSpecWeighted* release_weighted_avg(); - ::io::deephaven::proto::backplane::grpc::AggSpec_AggSpecWeighted* mutable_weighted_avg(); - void set_allocated_weighted_avg(::io::deephaven::proto::backplane::grpc::AggSpec_AggSpecWeighted* value); - void unsafe_arena_set_allocated_weighted_avg(::io::deephaven::proto::backplane::grpc::AggSpec_AggSpecWeighted* value); - ::io::deephaven::proto::backplane::grpc::AggSpec_AggSpecWeighted* unsafe_arena_release_weighted_avg(); - - private: - const ::io::deephaven::proto::backplane::grpc::AggSpec_AggSpecWeighted& _internal_weighted_avg() const; - ::io::deephaven::proto::backplane::grpc::AggSpec_AggSpecWeighted* _internal_mutable_weighted_avg(); - - public: - // .io.deephaven.proto.backplane.grpc.AggSpec.AggSpecWeighted weighted_sum = 22; - bool has_weighted_sum() const; - private: - bool _internal_has_weighted_sum() const; - - public: - void clear_weighted_sum() ; - const ::io::deephaven::proto::backplane::grpc::AggSpec_AggSpecWeighted& weighted_sum() const; - PROTOBUF_NODISCARD ::io::deephaven::proto::backplane::grpc::AggSpec_AggSpecWeighted* release_weighted_sum(); - ::io::deephaven::proto::backplane::grpc::AggSpec_AggSpecWeighted* mutable_weighted_sum(); - void set_allocated_weighted_sum(::io::deephaven::proto::backplane::grpc::AggSpec_AggSpecWeighted* value); - void unsafe_arena_set_allocated_weighted_sum(::io::deephaven::proto::backplane::grpc::AggSpec_AggSpecWeighted* value); - ::io::deephaven::proto::backplane::grpc::AggSpec_AggSpecWeighted* unsafe_arena_release_weighted_sum(); - - private: - const ::io::deephaven::proto::backplane::grpc::AggSpec_AggSpecWeighted& _internal_weighted_sum() const; - ::io::deephaven::proto::backplane::grpc::AggSpec_AggSpecWeighted* _internal_mutable_weighted_sum(); - - public: - // .io.deephaven.proto.backplane.grpc.AggSpec.AggSpecVar var = 23; - bool has_var() const; - private: - bool _internal_has_var() const; - - public: - void clear_var() ; - const ::io::deephaven::proto::backplane::grpc::AggSpec_AggSpecVar& var() const; - PROTOBUF_NODISCARD ::io::deephaven::proto::backplane::grpc::AggSpec_AggSpecVar* release_var(); - ::io::deephaven::proto::backplane::grpc::AggSpec_AggSpecVar* mutable_var(); - void set_allocated_var(::io::deephaven::proto::backplane::grpc::AggSpec_AggSpecVar* value); - void unsafe_arena_set_allocated_var(::io::deephaven::proto::backplane::grpc::AggSpec_AggSpecVar* value); - ::io::deephaven::proto::backplane::grpc::AggSpec_AggSpecVar* unsafe_arena_release_var(); - - private: - const ::io::deephaven::proto::backplane::grpc::AggSpec_AggSpecVar& _internal_var() const; - ::io::deephaven::proto::backplane::grpc::AggSpec_AggSpecVar* _internal_mutable_var(); - - public: - void clear_type(); - TypeCase type_case() const; - // @@protoc_insertion_point(class_scope:io.deephaven.proto.backplane.grpc.AggSpec) - private: - class _Internal; - void set_has_abs_sum(); - void set_has_approximate_percentile(); - void set_has_avg(); - void set_has_count_distinct(); - void set_has_distinct(); - void set_has_first(); - void set_has_formula(); - void set_has_freeze(); - void set_has_group(); - void set_has_last(); - void set_has_max(); - void set_has_median(); - void set_has_min(); - void set_has_percentile(); - void set_has_sorted_first(); - void set_has_sorted_last(); - void set_has_std(); - void set_has_sum(); - void set_has_t_digest(); - void set_has_unique(); - 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 - 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 AggSpec& from_msg); - union TypeUnion { - constexpr TypeUnion() : _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_; - ::io::deephaven::proto::backplane::grpc::AggSpec_AggSpecCountDistinct* count_distinct_; - ::io::deephaven::proto::backplane::grpc::AggSpec_AggSpecDistinct* distinct_; - ::io::deephaven::proto::backplane::grpc::AggSpec_AggSpecFirst* first_; - ::io::deephaven::proto::backplane::grpc::AggSpec_AggSpecFormula* formula_; - ::io::deephaven::proto::backplane::grpc::AggSpec_AggSpecFreeze* freeze_; - ::io::deephaven::proto::backplane::grpc::AggSpec_AggSpecGroup* group_; - ::io::deephaven::proto::backplane::grpc::AggSpec_AggSpecLast* last_; - ::io::deephaven::proto::backplane::grpc::AggSpec_AggSpecMax* max_; - ::io::deephaven::proto::backplane::grpc::AggSpec_AggSpecMedian* median_; - ::io::deephaven::proto::backplane::grpc::AggSpec_AggSpecMin* min_; - ::io::deephaven::proto::backplane::grpc::AggSpec_AggSpecPercentile* percentile_; - ::io::deephaven::proto::backplane::grpc::AggSpec_AggSpecSorted* sorted_first_; - ::io::deephaven::proto::backplane::grpc::AggSpec_AggSpecSorted* sorted_last_; - ::io::deephaven::proto::backplane::grpc::AggSpec_AggSpecStd* std_; - ::io::deephaven::proto::backplane::grpc::AggSpec_AggSpecSum* sum_; - ::io::deephaven::proto::backplane::grpc::AggSpec_AggSpecTDigest* t_digest_; - ::io::deephaven::proto::backplane::grpc::AggSpec_AggSpecUnique* unique_; - ::io::deephaven::proto::backplane::grpc::AggSpec_AggSpecWeighted* weighted_avg_; - ::io::deephaven::proto::backplane::grpc::AggSpec_AggSpecWeighted* weighted_sum_; - ::io::deephaven::proto::backplane::grpc::AggSpec_AggSpecVar* var_; - } 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) */ { - public: - inline UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec() : UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec(nullptr) {} - ~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; - } - 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 - && 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 UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec& default_instance() { - return *internal_default_instance(); - } - enum TypeCase { - kSum = 1, - kMin = 2, - kMax = 3, - kProduct = 4, - kFill = 5, - kEma = 6, - kRollingSum = 7, - kRollingGroup = 8, - kRollingAvg = 9, - kRollingMin = 10, - kRollingMax = 11, - kRollingProduct = 12, - kDelta = 13, - kEms = 14, - kEmMin = 15, - kEmMax = 16, - kEmStd = 17, - kRollingCount = 18, - kRollingStd = 19, - kRollingWavg = 20, - 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); } - 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 - if (GetArena() == other->GetArena()) { -#endif // !PROTOBUF_FORCE_COPY_IN_SWAP - InternalSwap(other); - } else { - ::google::protobuf::internal::GenericSwap(this, other); - } - } - void UnsafeArenaSwap(UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec* other) { - if (other == this) return; - ABSL_DCHECK(GetArena() == other->GetArena()); - InternalSwap(other); - } - - // implements Message ---------------------------------------------- - - 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); } - - private: - static void MergeImpl( - ::google::protobuf::MessageLite& to_msg, - const ::google::protobuf::MessageLite& from_msg); - - 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; - #endif // PROTOBUF_CUSTOM_VTABLE - int GetCachedSize() const { return _impl_._cached_size_.Get(); } - - private: - void SharedCtor(::google::protobuf::Arena* arena); - void SharedDtor(); - void InternalSwap(UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec* other); - private: - friend class ::google::protobuf::internal::AnyMetadata; - 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); - 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; - using UpdateByCumulativeProduct = UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByCumulativeProduct; - using UpdateByFill = UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByFill; - using UpdateByEma = UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByEma; - using UpdateByEms = UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByEms; - using UpdateByEmMin = UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByEmMin; - using UpdateByEmMax = UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByEmMax; - using UpdateByEmStd = UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByEmStd; - using UpdateByDelta = UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByDelta; - using UpdateByRollingSum = UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingSum; - using UpdateByRollingGroup = UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingGroup; - using UpdateByRollingAvg = UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingAvg; - using UpdateByRollingMin = UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingMin; - using UpdateByRollingMax = UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingMax; - using UpdateByRollingProduct = UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingProduct; - using UpdateByRollingCount = UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingCount; - using UpdateByRollingStd = UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingStd; - using UpdateByRollingWAvg = UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingWAvg; - using UpdateByRollingFormula = UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingFormula; - - // accessors ------------------------------------------------------- - enum : int { - kSumFieldNumber = 1, - kMinFieldNumber = 2, - kMaxFieldNumber = 3, - kProductFieldNumber = 4, - kFillFieldNumber = 5, - kEmaFieldNumber = 6, - kRollingSumFieldNumber = 7, - kRollingGroupFieldNumber = 8, - kRollingAvgFieldNumber = 9, - kRollingMinFieldNumber = 10, - kRollingMaxFieldNumber = 11, - kRollingProductFieldNumber = 12, - kDeltaFieldNumber = 13, - kEmsFieldNumber = 14, - kEmMinFieldNumber = 15, - kEmMaxFieldNumber = 16, - kEmStdFieldNumber = 17, - kRollingCountFieldNumber = 18, - kRollingStdFieldNumber = 19, - kRollingWavgFieldNumber = 20, - kRollingFormulaFieldNumber = 21, - }; - // .io.deephaven.proto.backplane.grpc.UpdateByRequest.UpdateByOperation.UpdateByColumn.UpdateBySpec.UpdateByCumulativeSum sum = 1; - bool has_sum() const; - private: - bool _internal_has_sum() const; - - public: - void clear_sum() ; - const ::io::deephaven::proto::backplane::grpc::UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByCumulativeSum& sum() const; - PROTOBUF_NODISCARD ::io::deephaven::proto::backplane::grpc::UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByCumulativeSum* release_sum(); - ::io::deephaven::proto::backplane::grpc::UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByCumulativeSum* mutable_sum(); - void set_allocated_sum(::io::deephaven::proto::backplane::grpc::UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByCumulativeSum* value); - void unsafe_arena_set_allocated_sum(::io::deephaven::proto::backplane::grpc::UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByCumulativeSum* value); - ::io::deephaven::proto::backplane::grpc::UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByCumulativeSum* unsafe_arena_release_sum(); - - private: - const ::io::deephaven::proto::backplane::grpc::UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByCumulativeSum& _internal_sum() const; - ::io::deephaven::proto::backplane::grpc::UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByCumulativeSum* _internal_mutable_sum(); - - public: - // .io.deephaven.proto.backplane.grpc.UpdateByRequest.UpdateByOperation.UpdateByColumn.UpdateBySpec.UpdateByCumulativeMin min = 2; - bool has_min() const; - private: - bool _internal_has_min() const; - - public: - void clear_min() ; - const ::io::deephaven::proto::backplane::grpc::UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByCumulativeMin& min() const; - PROTOBUF_NODISCARD ::io::deephaven::proto::backplane::grpc::UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByCumulativeMin* release_min(); - ::io::deephaven::proto::backplane::grpc::UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByCumulativeMin* mutable_min(); - void set_allocated_min(::io::deephaven::proto::backplane::grpc::UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByCumulativeMin* value); - void unsafe_arena_set_allocated_min(::io::deephaven::proto::backplane::grpc::UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByCumulativeMin* value); - ::io::deephaven::proto::backplane::grpc::UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByCumulativeMin* unsafe_arena_release_min(); - - private: - const ::io::deephaven::proto::backplane::grpc::UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByCumulativeMin& _internal_min() const; - ::io::deephaven::proto::backplane::grpc::UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByCumulativeMin* _internal_mutable_min(); - - public: - // .io.deephaven.proto.backplane.grpc.UpdateByRequest.UpdateByOperation.UpdateByColumn.UpdateBySpec.UpdateByCumulativeMax max = 3; - bool has_max() const; - private: - bool _internal_has_max() const; - - public: - void clear_max() ; - const ::io::deephaven::proto::backplane::grpc::UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByCumulativeMax& max() const; - PROTOBUF_NODISCARD ::io::deephaven::proto::backplane::grpc::UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByCumulativeMax* release_max(); - ::io::deephaven::proto::backplane::grpc::UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByCumulativeMax* mutable_max(); - void set_allocated_max(::io::deephaven::proto::backplane::grpc::UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByCumulativeMax* value); - void unsafe_arena_set_allocated_max(::io::deephaven::proto::backplane::grpc::UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByCumulativeMax* value); - ::io::deephaven::proto::backplane::grpc::UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByCumulativeMax* unsafe_arena_release_max(); - - private: - const ::io::deephaven::proto::backplane::grpc::UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByCumulativeMax& _internal_max() const; - ::io::deephaven::proto::backplane::grpc::UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByCumulativeMax* _internal_mutable_max(); - - public: - // .io.deephaven.proto.backplane.grpc.UpdateByRequest.UpdateByOperation.UpdateByColumn.UpdateBySpec.UpdateByCumulativeProduct product = 4; - bool has_product() const; - private: - bool _internal_has_product() const; - - public: - void clear_product() ; - const ::io::deephaven::proto::backplane::grpc::UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByCumulativeProduct& product() const; - PROTOBUF_NODISCARD ::io::deephaven::proto::backplane::grpc::UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByCumulativeProduct* release_product(); - ::io::deephaven::proto::backplane::grpc::UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByCumulativeProduct* mutable_product(); - void set_allocated_product(::io::deephaven::proto::backplane::grpc::UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByCumulativeProduct* value); - void unsafe_arena_set_allocated_product(::io::deephaven::proto::backplane::grpc::UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByCumulativeProduct* value); - ::io::deephaven::proto::backplane::grpc::UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByCumulativeProduct* unsafe_arena_release_product(); - - private: - const ::io::deephaven::proto::backplane::grpc::UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByCumulativeProduct& _internal_product() const; - ::io::deephaven::proto::backplane::grpc::UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByCumulativeProduct* _internal_mutable_product(); - - public: - // .io.deephaven.proto.backplane.grpc.UpdateByRequest.UpdateByOperation.UpdateByColumn.UpdateBySpec.UpdateByFill fill = 5; - bool has_fill() const; - private: - bool _internal_has_fill() const; - - public: - void clear_fill() ; - const ::io::deephaven::proto::backplane::grpc::UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByFill& fill() const; - PROTOBUF_NODISCARD ::io::deephaven::proto::backplane::grpc::UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByFill* release_fill(); - ::io::deephaven::proto::backplane::grpc::UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByFill* mutable_fill(); - void set_allocated_fill(::io::deephaven::proto::backplane::grpc::UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByFill* value); - void unsafe_arena_set_allocated_fill(::io::deephaven::proto::backplane::grpc::UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByFill* value); - ::io::deephaven::proto::backplane::grpc::UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByFill* unsafe_arena_release_fill(); - - private: - const ::io::deephaven::proto::backplane::grpc::UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByFill& _internal_fill() const; - ::io::deephaven::proto::backplane::grpc::UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByFill* _internal_mutable_fill(); - - public: - // .io.deephaven.proto.backplane.grpc.UpdateByRequest.UpdateByOperation.UpdateByColumn.UpdateBySpec.UpdateByEma ema = 6; - bool has_ema() const; - private: - bool _internal_has_ema() const; - - public: - void clear_ema() ; - const ::io::deephaven::proto::backplane::grpc::UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByEma& ema() const; - PROTOBUF_NODISCARD ::io::deephaven::proto::backplane::grpc::UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByEma* release_ema(); - ::io::deephaven::proto::backplane::grpc::UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByEma* mutable_ema(); - void set_allocated_ema(::io::deephaven::proto::backplane::grpc::UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByEma* value); - void unsafe_arena_set_allocated_ema(::io::deephaven::proto::backplane::grpc::UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByEma* value); - ::io::deephaven::proto::backplane::grpc::UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByEma* unsafe_arena_release_ema(); - - private: - const ::io::deephaven::proto::backplane::grpc::UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByEma& _internal_ema() const; - ::io::deephaven::proto::backplane::grpc::UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByEma* _internal_mutable_ema(); - - public: - // .io.deephaven.proto.backplane.grpc.UpdateByRequest.UpdateByOperation.UpdateByColumn.UpdateBySpec.UpdateByRollingSum rolling_sum = 7; - bool has_rolling_sum() const; - private: - bool _internal_has_rolling_sum() const; - - public: - void clear_rolling_sum() ; - const ::io::deephaven::proto::backplane::grpc::UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingSum& rolling_sum() const; - PROTOBUF_NODISCARD ::io::deephaven::proto::backplane::grpc::UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingSum* release_rolling_sum(); - ::io::deephaven::proto::backplane::grpc::UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingSum* mutable_rolling_sum(); - void set_allocated_rolling_sum(::io::deephaven::proto::backplane::grpc::UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingSum* value); - void unsafe_arena_set_allocated_rolling_sum(::io::deephaven::proto::backplane::grpc::UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingSum* value); - ::io::deephaven::proto::backplane::grpc::UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingSum* unsafe_arena_release_rolling_sum(); - - private: - const ::io::deephaven::proto::backplane::grpc::UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingSum& _internal_rolling_sum() const; - ::io::deephaven::proto::backplane::grpc::UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingSum* _internal_mutable_rolling_sum(); - - public: - // .io.deephaven.proto.backplane.grpc.UpdateByRequest.UpdateByOperation.UpdateByColumn.UpdateBySpec.UpdateByRollingGroup rolling_group = 8; - bool has_rolling_group() const; - private: - bool _internal_has_rolling_group() const; - - public: - void clear_rolling_group() ; - const ::io::deephaven::proto::backplane::grpc::UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingGroup& rolling_group() const; - PROTOBUF_NODISCARD ::io::deephaven::proto::backplane::grpc::UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingGroup* release_rolling_group(); - ::io::deephaven::proto::backplane::grpc::UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingGroup* mutable_rolling_group(); - void set_allocated_rolling_group(::io::deephaven::proto::backplane::grpc::UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingGroup* value); - void unsafe_arena_set_allocated_rolling_group(::io::deephaven::proto::backplane::grpc::UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingGroup* value); - ::io::deephaven::proto::backplane::grpc::UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingGroup* unsafe_arena_release_rolling_group(); - - private: - const ::io::deephaven::proto::backplane::grpc::UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingGroup& _internal_rolling_group() const; - ::io::deephaven::proto::backplane::grpc::UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingGroup* _internal_mutable_rolling_group(); - - public: - // .io.deephaven.proto.backplane.grpc.UpdateByRequest.UpdateByOperation.UpdateByColumn.UpdateBySpec.UpdateByRollingAvg rolling_avg = 9; - bool has_rolling_avg() const; - private: - bool _internal_has_rolling_avg() const; - - public: - void clear_rolling_avg() ; - const ::io::deephaven::proto::backplane::grpc::UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingAvg& rolling_avg() const; - PROTOBUF_NODISCARD ::io::deephaven::proto::backplane::grpc::UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingAvg* release_rolling_avg(); - ::io::deephaven::proto::backplane::grpc::UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingAvg* mutable_rolling_avg(); - void set_allocated_rolling_avg(::io::deephaven::proto::backplane::grpc::UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingAvg* value); - void unsafe_arena_set_allocated_rolling_avg(::io::deephaven::proto::backplane::grpc::UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingAvg* value); - ::io::deephaven::proto::backplane::grpc::UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingAvg* unsafe_arena_release_rolling_avg(); - - private: - const ::io::deephaven::proto::backplane::grpc::UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingAvg& _internal_rolling_avg() const; - ::io::deephaven::proto::backplane::grpc::UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingAvg* _internal_mutable_rolling_avg(); - - public: - // .io.deephaven.proto.backplane.grpc.UpdateByRequest.UpdateByOperation.UpdateByColumn.UpdateBySpec.UpdateByRollingMin rolling_min = 10; - bool has_rolling_min() const; - private: - bool _internal_has_rolling_min() const; - - public: - void clear_rolling_min() ; - const ::io::deephaven::proto::backplane::grpc::UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingMin& rolling_min() const; - PROTOBUF_NODISCARD ::io::deephaven::proto::backplane::grpc::UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingMin* release_rolling_min(); - ::io::deephaven::proto::backplane::grpc::UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingMin* mutable_rolling_min(); - void set_allocated_rolling_min(::io::deephaven::proto::backplane::grpc::UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingMin* value); - void unsafe_arena_set_allocated_rolling_min(::io::deephaven::proto::backplane::grpc::UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingMin* value); - ::io::deephaven::proto::backplane::grpc::UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingMin* unsafe_arena_release_rolling_min(); - - private: - const ::io::deephaven::proto::backplane::grpc::UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingMin& _internal_rolling_min() const; - ::io::deephaven::proto::backplane::grpc::UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingMin* _internal_mutable_rolling_min(); - - public: - // .io.deephaven.proto.backplane.grpc.UpdateByRequest.UpdateByOperation.UpdateByColumn.UpdateBySpec.UpdateByRollingMax rolling_max = 11; - bool has_rolling_max() const; - private: - bool _internal_has_rolling_max() const; - - public: - void clear_rolling_max() ; - const ::io::deephaven::proto::backplane::grpc::UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingMax& rolling_max() const; - PROTOBUF_NODISCARD ::io::deephaven::proto::backplane::grpc::UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingMax* release_rolling_max(); - ::io::deephaven::proto::backplane::grpc::UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingMax* mutable_rolling_max(); - void set_allocated_rolling_max(::io::deephaven::proto::backplane::grpc::UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingMax* value); - void unsafe_arena_set_allocated_rolling_max(::io::deephaven::proto::backplane::grpc::UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingMax* value); - ::io::deephaven::proto::backplane::grpc::UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingMax* unsafe_arena_release_rolling_max(); - - private: - const ::io::deephaven::proto::backplane::grpc::UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingMax& _internal_rolling_max() const; - ::io::deephaven::proto::backplane::grpc::UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingMax* _internal_mutable_rolling_max(); - - public: - // .io.deephaven.proto.backplane.grpc.UpdateByRequest.UpdateByOperation.UpdateByColumn.UpdateBySpec.UpdateByRollingProduct rolling_product = 12; - bool has_rolling_product() const; - private: - bool _internal_has_rolling_product() const; - - public: - void clear_rolling_product() ; - const ::io::deephaven::proto::backplane::grpc::UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingProduct& rolling_product() const; - PROTOBUF_NODISCARD ::io::deephaven::proto::backplane::grpc::UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingProduct* release_rolling_product(); - ::io::deephaven::proto::backplane::grpc::UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingProduct* mutable_rolling_product(); - void set_allocated_rolling_product(::io::deephaven::proto::backplane::grpc::UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingProduct* value); - void unsafe_arena_set_allocated_rolling_product(::io::deephaven::proto::backplane::grpc::UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingProduct* value); - ::io::deephaven::proto::backplane::grpc::UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingProduct* unsafe_arena_release_rolling_product(); - - private: - const ::io::deephaven::proto::backplane::grpc::UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingProduct& _internal_rolling_product() const; - ::io::deephaven::proto::backplane::grpc::UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingProduct* _internal_mutable_rolling_product(); - - public: - // .io.deephaven.proto.backplane.grpc.UpdateByRequest.UpdateByOperation.UpdateByColumn.UpdateBySpec.UpdateByDelta delta = 13; - bool has_delta() const; - private: - bool _internal_has_delta() const; - - public: - void clear_delta() ; - const ::io::deephaven::proto::backplane::grpc::UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByDelta& delta() const; - PROTOBUF_NODISCARD ::io::deephaven::proto::backplane::grpc::UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByDelta* release_delta(); - ::io::deephaven::proto::backplane::grpc::UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByDelta* mutable_delta(); - void set_allocated_delta(::io::deephaven::proto::backplane::grpc::UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByDelta* value); - void unsafe_arena_set_allocated_delta(::io::deephaven::proto::backplane::grpc::UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByDelta* value); - ::io::deephaven::proto::backplane::grpc::UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByDelta* unsafe_arena_release_delta(); - - private: - const ::io::deephaven::proto::backplane::grpc::UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByDelta& _internal_delta() const; - ::io::deephaven::proto::backplane::grpc::UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByDelta* _internal_mutable_delta(); - - public: - // .io.deephaven.proto.backplane.grpc.UpdateByRequest.UpdateByOperation.UpdateByColumn.UpdateBySpec.UpdateByEms ems = 14; - bool has_ems() const; - private: - bool _internal_has_ems() const; - - public: - void clear_ems() ; - const ::io::deephaven::proto::backplane::grpc::UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByEms& ems() const; - PROTOBUF_NODISCARD ::io::deephaven::proto::backplane::grpc::UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByEms* release_ems(); - ::io::deephaven::proto::backplane::grpc::UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByEms* mutable_ems(); - void set_allocated_ems(::io::deephaven::proto::backplane::grpc::UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByEms* value); - void unsafe_arena_set_allocated_ems(::io::deephaven::proto::backplane::grpc::UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByEms* value); - ::io::deephaven::proto::backplane::grpc::UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByEms* unsafe_arena_release_ems(); - - private: - const ::io::deephaven::proto::backplane::grpc::UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByEms& _internal_ems() const; - ::io::deephaven::proto::backplane::grpc::UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByEms* _internal_mutable_ems(); - - public: - // .io.deephaven.proto.backplane.grpc.UpdateByRequest.UpdateByOperation.UpdateByColumn.UpdateBySpec.UpdateByEmMin em_min = 15; - bool has_em_min() const; - private: - bool _internal_has_em_min() const; - - public: - void clear_em_min() ; - const ::io::deephaven::proto::backplane::grpc::UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByEmMin& em_min() const; - PROTOBUF_NODISCARD ::io::deephaven::proto::backplane::grpc::UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByEmMin* release_em_min(); - ::io::deephaven::proto::backplane::grpc::UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByEmMin* mutable_em_min(); - void set_allocated_em_min(::io::deephaven::proto::backplane::grpc::UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByEmMin* value); - void unsafe_arena_set_allocated_em_min(::io::deephaven::proto::backplane::grpc::UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByEmMin* value); - ::io::deephaven::proto::backplane::grpc::UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByEmMin* unsafe_arena_release_em_min(); - - private: - const ::io::deephaven::proto::backplane::grpc::UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByEmMin& _internal_em_min() const; - ::io::deephaven::proto::backplane::grpc::UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByEmMin* _internal_mutable_em_min(); - - public: - // .io.deephaven.proto.backplane.grpc.UpdateByRequest.UpdateByOperation.UpdateByColumn.UpdateBySpec.UpdateByEmMax em_max = 16; - bool has_em_max() const; - private: - bool _internal_has_em_max() const; - - public: - void clear_em_max() ; - const ::io::deephaven::proto::backplane::grpc::UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByEmMax& em_max() const; - PROTOBUF_NODISCARD ::io::deephaven::proto::backplane::grpc::UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByEmMax* release_em_max(); - ::io::deephaven::proto::backplane::grpc::UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByEmMax* mutable_em_max(); - void set_allocated_em_max(::io::deephaven::proto::backplane::grpc::UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByEmMax* value); - void unsafe_arena_set_allocated_em_max(::io::deephaven::proto::backplane::grpc::UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByEmMax* value); - ::io::deephaven::proto::backplane::grpc::UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByEmMax* unsafe_arena_release_em_max(); - - private: - const ::io::deephaven::proto::backplane::grpc::UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByEmMax& _internal_em_max() const; - ::io::deephaven::proto::backplane::grpc::UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByEmMax* _internal_mutable_em_max(); - - public: - // .io.deephaven.proto.backplane.grpc.UpdateByRequest.UpdateByOperation.UpdateByColumn.UpdateBySpec.UpdateByEmStd em_std = 17; - bool has_em_std() const; - private: - bool _internal_has_em_std() const; - - public: - void clear_em_std() ; - const ::io::deephaven::proto::backplane::grpc::UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByEmStd& em_std() const; - PROTOBUF_NODISCARD ::io::deephaven::proto::backplane::grpc::UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByEmStd* release_em_std(); - ::io::deephaven::proto::backplane::grpc::UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByEmStd* mutable_em_std(); - void set_allocated_em_std(::io::deephaven::proto::backplane::grpc::UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByEmStd* value); - void unsafe_arena_set_allocated_em_std(::io::deephaven::proto::backplane::grpc::UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByEmStd* value); - ::io::deephaven::proto::backplane::grpc::UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByEmStd* unsafe_arena_release_em_std(); - - private: - const ::io::deephaven::proto::backplane::grpc::UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByEmStd& _internal_em_std() const; - ::io::deephaven::proto::backplane::grpc::UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByEmStd* _internal_mutable_em_std(); - - public: - // .io.deephaven.proto.backplane.grpc.UpdateByRequest.UpdateByOperation.UpdateByColumn.UpdateBySpec.UpdateByRollingCount rolling_count = 18; - bool has_rolling_count() const; - private: - bool _internal_has_rolling_count() const; - - public: - void clear_rolling_count() ; - const ::io::deephaven::proto::backplane::grpc::UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingCount& rolling_count() const; - PROTOBUF_NODISCARD ::io::deephaven::proto::backplane::grpc::UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingCount* release_rolling_count(); - ::io::deephaven::proto::backplane::grpc::UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingCount* mutable_rolling_count(); - void set_allocated_rolling_count(::io::deephaven::proto::backplane::grpc::UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingCount* value); - void unsafe_arena_set_allocated_rolling_count(::io::deephaven::proto::backplane::grpc::UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingCount* value); - ::io::deephaven::proto::backplane::grpc::UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingCount* unsafe_arena_release_rolling_count(); - - private: - const ::io::deephaven::proto::backplane::grpc::UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingCount& _internal_rolling_count() const; - ::io::deephaven::proto::backplane::grpc::UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingCount* _internal_mutable_rolling_count(); - - public: - // .io.deephaven.proto.backplane.grpc.UpdateByRequest.UpdateByOperation.UpdateByColumn.UpdateBySpec.UpdateByRollingStd rolling_std = 19; - bool has_rolling_std() const; - private: - bool _internal_has_rolling_std() const; - - public: - void clear_rolling_std() ; - const ::io::deephaven::proto::backplane::grpc::UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingStd& rolling_std() const; - PROTOBUF_NODISCARD ::io::deephaven::proto::backplane::grpc::UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingStd* release_rolling_std(); - ::io::deephaven::proto::backplane::grpc::UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingStd* mutable_rolling_std(); - void set_allocated_rolling_std(::io::deephaven::proto::backplane::grpc::UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingStd* value); - void unsafe_arena_set_allocated_rolling_std(::io::deephaven::proto::backplane::grpc::UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingStd* value); - ::io::deephaven::proto::backplane::grpc::UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingStd* unsafe_arena_release_rolling_std(); - - private: - const ::io::deephaven::proto::backplane::grpc::UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingStd& _internal_rolling_std() const; - ::io::deephaven::proto::backplane::grpc::UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingStd* _internal_mutable_rolling_std(); - - public: - // .io.deephaven.proto.backplane.grpc.UpdateByRequest.UpdateByOperation.UpdateByColumn.UpdateBySpec.UpdateByRollingWAvg rolling_wavg = 20; - bool has_rolling_wavg() const; - private: - bool _internal_has_rolling_wavg() const; - - public: - void clear_rolling_wavg() ; - const ::io::deephaven::proto::backplane::grpc::UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingWAvg& rolling_wavg() const; - PROTOBUF_NODISCARD ::io::deephaven::proto::backplane::grpc::UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingWAvg* release_rolling_wavg(); - ::io::deephaven::proto::backplane::grpc::UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingWAvg* mutable_rolling_wavg(); - void set_allocated_rolling_wavg(::io::deephaven::proto::backplane::grpc::UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingWAvg* value); - void unsafe_arena_set_allocated_rolling_wavg(::io::deephaven::proto::backplane::grpc::UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingWAvg* value); - ::io::deephaven::proto::backplane::grpc::UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingWAvg* unsafe_arena_release_rolling_wavg(); - - private: - const ::io::deephaven::proto::backplane::grpc::UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingWAvg& _internal_rolling_wavg() const; - ::io::deephaven::proto::backplane::grpc::UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingWAvg* _internal_mutable_rolling_wavg(); - - public: - // .io.deephaven.proto.backplane.grpc.UpdateByRequest.UpdateByOperation.UpdateByColumn.UpdateBySpec.UpdateByRollingFormula rolling_formula = 21; - bool has_rolling_formula() const; - private: - bool _internal_has_rolling_formula() const; - - public: - void clear_rolling_formula() ; - const ::io::deephaven::proto::backplane::grpc::UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingFormula& rolling_formula() const; - PROTOBUF_NODISCARD ::io::deephaven::proto::backplane::grpc::UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingFormula* release_rolling_formula(); - ::io::deephaven::proto::backplane::grpc::UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingFormula* mutable_rolling_formula(); - void set_allocated_rolling_formula(::io::deephaven::proto::backplane::grpc::UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingFormula* value); - void unsafe_arena_set_allocated_rolling_formula(::io::deephaven::proto::backplane::grpc::UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingFormula* value); - ::io::deephaven::proto::backplane::grpc::UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingFormula* unsafe_arena_release_rolling_formula(); - - private: - const ::io::deephaven::proto::backplane::grpc::UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingFormula& _internal_rolling_formula() const; - ::io::deephaven::proto::backplane::grpc::UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingFormula* _internal_mutable_rolling_formula(); - - public: - void clear_type(); - TypeCase type_case() const; - // @@protoc_insertion_point(class_scope:io.deephaven.proto.backplane.grpc.UpdateByRequest.UpdateByOperation.UpdateByColumn.UpdateBySpec) - private: - class _Internal; - void set_has_sum(); - void set_has_min(); - void set_has_max(); - void set_has_product(); - void set_has_fill(); - void set_has_ema(); - void set_has_rolling_sum(); - void set_has_rolling_group(); - void set_has_rolling_avg(); - void set_has_rolling_min(); - void set_has_rolling_max(); - void set_has_rolling_product(); - void set_has_delta(); - void set_has_ems(); - void set_has_em_min(); - void set_has_em_max(); - void set_has_em_std(); - void set_has_rolling_count(); - 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 - 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 UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec& from_msg); - union TypeUnion { - constexpr TypeUnion() : _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_; - ::io::deephaven::proto::backplane::grpc::UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByCumulativeProduct* product_; - ::io::deephaven::proto::backplane::grpc::UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByFill* fill_; - ::io::deephaven::proto::backplane::grpc::UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByEma* ema_; - ::io::deephaven::proto::backplane::grpc::UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingSum* rolling_sum_; - ::io::deephaven::proto::backplane::grpc::UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingGroup* rolling_group_; - ::io::deephaven::proto::backplane::grpc::UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingAvg* rolling_avg_; - ::io::deephaven::proto::backplane::grpc::UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingMin* rolling_min_; - ::io::deephaven::proto::backplane::grpc::UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingMax* rolling_max_; - ::io::deephaven::proto::backplane::grpc::UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingProduct* rolling_product_; - ::io::deephaven::proto::backplane::grpc::UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByDelta* delta_; - ::io::deephaven::proto::backplane::grpc::UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByEms* ems_; - ::io::deephaven::proto::backplane::grpc::UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByEmMin* em_min_; - ::io::deephaven::proto::backplane::grpc::UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByEmMax* em_max_; - ::io::deephaven::proto::backplane::grpc::UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByEmStd* em_std_; - ::io::deephaven::proto::backplane::grpc::UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingCount* rolling_count_; - ::io::deephaven::proto::backplane::grpc::UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingStd* rolling_std_; - ::io::deephaven::proto::backplane::grpc::UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingWAvg* rolling_wavg_; - ::io::deephaven::proto::backplane::grpc::UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingFormula* rolling_formula_; - } 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) */ { - public: - inline MultiJoinTablesRequest() : MultiJoinTablesRequest(nullptr) {} - ~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; - } - inline MultiJoinTablesRequest& operator=(MultiJoinTablesRequest&& 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 MultiJoinTablesRequest& default_instance() { - return *internal_default_instance(); - } - 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); } - 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 - if (GetArena() == other->GetArena()) { -#endif // !PROTOBUF_FORCE_COPY_IN_SWAP - InternalSwap(other); - } else { - ::google::protobuf::internal::GenericSwap(this, other); - } - } - void UnsafeArenaSwap(MultiJoinTablesRequest* other) { - if (other == this) return; - ABSL_DCHECK(GetArena() == other->GetArena()); - InternalSwap(other); - } - - // implements Message ---------------------------------------------- - - 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); } - - private: - static void MergeImpl( - ::google::protobuf::MessageLite& to_msg, - const ::google::protobuf::MessageLite& from_msg); - - 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; - #endif // PROTOBUF_CUSTOM_VTABLE - int GetCachedSize() const { return _impl_._cached_size_.Get(); } - - private: - void SharedCtor(::google::protobuf::Arena* arena); - void SharedDtor(); - void InternalSwap(MultiJoinTablesRequest* other); - private: - friend class ::google::protobuf::internal::AnyMetadata; - 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); - 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, - }; - // repeated .io.deephaven.proto.backplane.grpc.MultiJoinInput multi_join_inputs = 2; - int multi_join_inputs_size() const; - private: - int _internal_multi_join_inputs_size() const; - - 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(); - - 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; - // .io.deephaven.proto.backplane.grpc.Ticket result_id = 1; - bool has_result_id() const; - void clear_result_id() ; - const ::io::deephaven::proto::backplane::grpc::Ticket& result_id() const; - PROTOBUF_NODISCARD ::io::deephaven::proto::backplane::grpc::Ticket* release_result_id(); - ::io::deephaven::proto::backplane::grpc::Ticket* mutable_result_id(); - void set_allocated_result_id(::io::deephaven::proto::backplane::grpc::Ticket* value); - void unsafe_arena_set_allocated_result_id(::io::deephaven::proto::backplane::grpc::Ticket* value); - ::io::deephaven::proto::backplane::grpc::Ticket* unsafe_arena_release_result_id(); - - private: - const ::io::deephaven::proto::backplane::grpc::Ticket& _internal_result_id() const; - ::io::deephaven::proto::backplane::grpc::Ticket* _internal_mutable_result_id(); - - public: - // @@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 - 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 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_; - ::io::deephaven::proto::backplane::grpc::Ticket* result_id_; - PROTOBUF_TSAN_DECLARE_MEMBER - }; - 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) */ { - public: - inline AndCondition() : AndCondition(nullptr) {} - ~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; - } - inline AndCondition& operator=(AndCondition&& 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 AndCondition& default_instance() { - return *internal_default_instance(); - } - 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); } - 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 - if (GetArena() == other->GetArena()) { -#endif // !PROTOBUF_FORCE_COPY_IN_SWAP - InternalSwap(other); - } else { - ::google::protobuf::internal::GenericSwap(this, other); - } - } - void UnsafeArenaSwap(AndCondition* other) { - if (other == this) return; - ABSL_DCHECK(GetArena() == other->GetArena()); - InternalSwap(other); - } - - // implements Message ---------------------------------------------- - - 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); } - - private: - static void MergeImpl( - ::google::protobuf::MessageLite& to_msg, - const ::google::protobuf::MessageLite& from_msg); - - 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; - #endif // PROTOBUF_CUSTOM_VTABLE - int GetCachedSize() const { return _impl_._cached_size_.Get(); } - - private: - void SharedCtor(::google::protobuf::Arena* arena); - void SharedDtor(); - void InternalSwap(AndCondition* other); - private: - friend class ::google::protobuf::internal::AnyMetadata; - 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); - 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, - }; - // repeated .io.deephaven.proto.backplane.grpc.Condition filters = 1; - int filters_size() const; - private: - int _internal_filters_size() const; - - 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(); - - 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; - // @@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 - 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 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) */ { - public: - inline Condition() : Condition(nullptr) {} - ~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; - } - inline Condition& operator=(Condition&& 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 Condition& default_instance() { - return *internal_default_instance(); - } - enum DataCase { - kAnd = 1, - kOr = 2, - kNot = 3, - kCompare = 4, - kIn = 5, - kInvoke = 6, - kIsNull = 7, - kMatches = 8, - kContains = 9, - 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); } - 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 - if (GetArena() == other->GetArena()) { -#endif // !PROTOBUF_FORCE_COPY_IN_SWAP - InternalSwap(other); - } else { - ::google::protobuf::internal::GenericSwap(this, other); - } - } - void UnsafeArenaSwap(Condition* other) { - if (other == this) return; - ABSL_DCHECK(GetArena() == other->GetArena()); - InternalSwap(other); - } - - // implements Message ---------------------------------------------- - - 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); } - - private: - static void MergeImpl( - ::google::protobuf::MessageLite& to_msg, - const ::google::protobuf::MessageLite& from_msg); - - 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; - #endif // PROTOBUF_CUSTOM_VTABLE - int GetCachedSize() const { return _impl_._cached_size_.Get(); } - - private: - void SharedCtor(::google::protobuf::Arena* arena); - void SharedDtor(); - void InternalSwap(Condition* other); - private: - friend class ::google::protobuf::internal::AnyMetadata; - 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); - 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, - kNotFieldNumber = 3, - kCompareFieldNumber = 4, - kInFieldNumber = 5, - kInvokeFieldNumber = 6, - kIsNullFieldNumber = 7, - kMatchesFieldNumber = 8, - kContainsFieldNumber = 9, - kSearchFieldNumber = 10, - }; - // .io.deephaven.proto.backplane.grpc.AndCondition and = 1; - bool has_and_() const; - private: - bool _internal_has_and_() const; - - public: - void clear_and_() ; - const ::io::deephaven::proto::backplane::grpc::AndCondition& and_() const; - PROTOBUF_NODISCARD ::io::deephaven::proto::backplane::grpc::AndCondition* release_and_(); - ::io::deephaven::proto::backplane::grpc::AndCondition* mutable_and_(); - void set_allocated_and_(::io::deephaven::proto::backplane::grpc::AndCondition* value); - void unsafe_arena_set_allocated_and_(::io::deephaven::proto::backplane::grpc::AndCondition* value); - ::io::deephaven::proto::backplane::grpc::AndCondition* unsafe_arena_release_and_(); - - private: - const ::io::deephaven::proto::backplane::grpc::AndCondition& _internal_and_() const; - ::io::deephaven::proto::backplane::grpc::AndCondition* _internal_mutable_and_(); - - public: - // .io.deephaven.proto.backplane.grpc.OrCondition or = 2; - bool has_or_() const; - private: - bool _internal_has_or_() const; - - public: - void clear_or_() ; - const ::io::deephaven::proto::backplane::grpc::OrCondition& or_() const; - PROTOBUF_NODISCARD ::io::deephaven::proto::backplane::grpc::OrCondition* release_or_(); - ::io::deephaven::proto::backplane::grpc::OrCondition* mutable_or_(); - void set_allocated_or_(::io::deephaven::proto::backplane::grpc::OrCondition* value); - void unsafe_arena_set_allocated_or_(::io::deephaven::proto::backplane::grpc::OrCondition* value); - ::io::deephaven::proto::backplane::grpc::OrCondition* unsafe_arena_release_or_(); - - private: - const ::io::deephaven::proto::backplane::grpc::OrCondition& _internal_or_() const; - ::io::deephaven::proto::backplane::grpc::OrCondition* _internal_mutable_or_(); - - public: - // .io.deephaven.proto.backplane.grpc.NotCondition not = 3; - bool has_not_() const; - private: - bool _internal_has_not_() const; - - public: - void clear_not_() ; - const ::io::deephaven::proto::backplane::grpc::NotCondition& not_() const; - PROTOBUF_NODISCARD ::io::deephaven::proto::backplane::grpc::NotCondition* release_not_(); - ::io::deephaven::proto::backplane::grpc::NotCondition* mutable_not_(); - void set_allocated_not_(::io::deephaven::proto::backplane::grpc::NotCondition* value); - void unsafe_arena_set_allocated_not_(::io::deephaven::proto::backplane::grpc::NotCondition* value); - ::io::deephaven::proto::backplane::grpc::NotCondition* unsafe_arena_release_not_(); - - private: - const ::io::deephaven::proto::backplane::grpc::NotCondition& _internal_not_() const; - ::io::deephaven::proto::backplane::grpc::NotCondition* _internal_mutable_not_(); - - public: - // .io.deephaven.proto.backplane.grpc.CompareCondition compare = 4; - bool has_compare() const; - private: - bool _internal_has_compare() const; - - public: - void clear_compare() ; - const ::io::deephaven::proto::backplane::grpc::CompareCondition& compare() const; - PROTOBUF_NODISCARD ::io::deephaven::proto::backplane::grpc::CompareCondition* release_compare(); - ::io::deephaven::proto::backplane::grpc::CompareCondition* mutable_compare(); - void set_allocated_compare(::io::deephaven::proto::backplane::grpc::CompareCondition* value); - void unsafe_arena_set_allocated_compare(::io::deephaven::proto::backplane::grpc::CompareCondition* value); - ::io::deephaven::proto::backplane::grpc::CompareCondition* unsafe_arena_release_compare(); - - private: - const ::io::deephaven::proto::backplane::grpc::CompareCondition& _internal_compare() const; - ::io::deephaven::proto::backplane::grpc::CompareCondition* _internal_mutable_compare(); - - public: - // .io.deephaven.proto.backplane.grpc.InCondition in = 5; - bool has_in() const; - private: - bool _internal_has_in() const; - - public: - void clear_in() ; - const ::io::deephaven::proto::backplane::grpc::InCondition& in() const; - PROTOBUF_NODISCARD ::io::deephaven::proto::backplane::grpc::InCondition* release_in(); - ::io::deephaven::proto::backplane::grpc::InCondition* mutable_in(); - void set_allocated_in(::io::deephaven::proto::backplane::grpc::InCondition* value); - void unsafe_arena_set_allocated_in(::io::deephaven::proto::backplane::grpc::InCondition* value); - ::io::deephaven::proto::backplane::grpc::InCondition* unsafe_arena_release_in(); - - private: - const ::io::deephaven::proto::backplane::grpc::InCondition& _internal_in() const; - ::io::deephaven::proto::backplane::grpc::InCondition* _internal_mutable_in(); - - public: - // .io.deephaven.proto.backplane.grpc.InvokeCondition invoke = 6; - bool has_invoke() const; - private: - bool _internal_has_invoke() const; - - public: - void clear_invoke() ; - const ::io::deephaven::proto::backplane::grpc::InvokeCondition& invoke() const; - PROTOBUF_NODISCARD ::io::deephaven::proto::backplane::grpc::InvokeCondition* release_invoke(); - ::io::deephaven::proto::backplane::grpc::InvokeCondition* mutable_invoke(); - void set_allocated_invoke(::io::deephaven::proto::backplane::grpc::InvokeCondition* value); - void unsafe_arena_set_allocated_invoke(::io::deephaven::proto::backplane::grpc::InvokeCondition* value); - ::io::deephaven::proto::backplane::grpc::InvokeCondition* unsafe_arena_release_invoke(); - - private: - const ::io::deephaven::proto::backplane::grpc::InvokeCondition& _internal_invoke() const; - ::io::deephaven::proto::backplane::grpc::InvokeCondition* _internal_mutable_invoke(); - - public: - // .io.deephaven.proto.backplane.grpc.IsNullCondition is_null = 7; - bool has_is_null() const; - private: - bool _internal_has_is_null() const; - - public: - void clear_is_null() ; - const ::io::deephaven::proto::backplane::grpc::IsNullCondition& is_null() const; - PROTOBUF_NODISCARD ::io::deephaven::proto::backplane::grpc::IsNullCondition* release_is_null(); - ::io::deephaven::proto::backplane::grpc::IsNullCondition* mutable_is_null(); - void set_allocated_is_null(::io::deephaven::proto::backplane::grpc::IsNullCondition* value); - void unsafe_arena_set_allocated_is_null(::io::deephaven::proto::backplane::grpc::IsNullCondition* value); - ::io::deephaven::proto::backplane::grpc::IsNullCondition* unsafe_arena_release_is_null(); - - private: - const ::io::deephaven::proto::backplane::grpc::IsNullCondition& _internal_is_null() const; - ::io::deephaven::proto::backplane::grpc::IsNullCondition* _internal_mutable_is_null(); - - public: - // .io.deephaven.proto.backplane.grpc.MatchesCondition matches = 8; - bool has_matches() const; - private: - bool _internal_has_matches() const; - - public: - void clear_matches() ; - const ::io::deephaven::proto::backplane::grpc::MatchesCondition& matches() const; - PROTOBUF_NODISCARD ::io::deephaven::proto::backplane::grpc::MatchesCondition* release_matches(); - ::io::deephaven::proto::backplane::grpc::MatchesCondition* mutable_matches(); - void set_allocated_matches(::io::deephaven::proto::backplane::grpc::MatchesCondition* value); - void unsafe_arena_set_allocated_matches(::io::deephaven::proto::backplane::grpc::MatchesCondition* value); - ::io::deephaven::proto::backplane::grpc::MatchesCondition* unsafe_arena_release_matches(); - - private: - const ::io::deephaven::proto::backplane::grpc::MatchesCondition& _internal_matches() const; - ::io::deephaven::proto::backplane::grpc::MatchesCondition* _internal_mutable_matches(); - - public: - // .io.deephaven.proto.backplane.grpc.ContainsCondition contains = 9; - bool has_contains() const; - private: - bool _internal_has_contains() const; - - public: - void clear_contains() ; - const ::io::deephaven::proto::backplane::grpc::ContainsCondition& contains() const; - PROTOBUF_NODISCARD ::io::deephaven::proto::backplane::grpc::ContainsCondition* release_contains(); - ::io::deephaven::proto::backplane::grpc::ContainsCondition* mutable_contains(); - void set_allocated_contains(::io::deephaven::proto::backplane::grpc::ContainsCondition* value); - void unsafe_arena_set_allocated_contains(::io::deephaven::proto::backplane::grpc::ContainsCondition* value); - ::io::deephaven::proto::backplane::grpc::ContainsCondition* unsafe_arena_release_contains(); - - private: - const ::io::deephaven::proto::backplane::grpc::ContainsCondition& _internal_contains() const; - ::io::deephaven::proto::backplane::grpc::ContainsCondition* _internal_mutable_contains(); - - public: - // .io.deephaven.proto.backplane.grpc.SearchCondition search = 10; - bool has_search() const; - private: - bool _internal_has_search() const; - - public: - void clear_search() ; - const ::io::deephaven::proto::backplane::grpc::SearchCondition& search() const; - PROTOBUF_NODISCARD ::io::deephaven::proto::backplane::grpc::SearchCondition* release_search(); - ::io::deephaven::proto::backplane::grpc::SearchCondition* mutable_search(); - void set_allocated_search(::io::deephaven::proto::backplane::grpc::SearchCondition* value); - void unsafe_arena_set_allocated_search(::io::deephaven::proto::backplane::grpc::SearchCondition* value); - ::io::deephaven::proto::backplane::grpc::SearchCondition* unsafe_arena_release_search(); - - private: - const ::io::deephaven::proto::backplane::grpc::SearchCondition& _internal_search() const; - ::io::deephaven::proto::backplane::grpc::SearchCondition* _internal_mutable_search(); - - public: - void clear_data(); - DataCase data_case() const; - // @@protoc_insertion_point(class_scope:io.deephaven.proto.backplane.grpc.Condition) - private: - class _Internal; - void set_has_and_(); - void set_has_or_(); - void set_has_not_(); - void set_has_compare(); - void set_has_in(); - void set_has_invoke(); - void set_has_is_null(); - 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 - 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 Condition& from_msg); - union DataUnion { - constexpr DataUnion() : _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__; - ::io::deephaven::proto::backplane::grpc::CompareCondition* compare_; - ::io::deephaven::proto::backplane::grpc::InCondition* in_; - ::io::deephaven::proto::backplane::grpc::InvokeCondition* invoke_; - ::io::deephaven::proto::backplane::grpc::IsNullCondition* is_null_; - ::io::deephaven::proto::backplane::grpc::MatchesCondition* matches_; - ::io::deephaven::proto::backplane::grpc::ContainsCondition* contains_; - ::io::deephaven::proto::backplane::grpc::SearchCondition* search_; - } 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) */ { - public: - inline NotCondition() : NotCondition(nullptr) {} - ~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; - } - inline NotCondition& operator=(NotCondition&& 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 NotCondition& default_instance() { - return *internal_default_instance(); - } - 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); } - 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 - if (GetArena() == other->GetArena()) { -#endif // !PROTOBUF_FORCE_COPY_IN_SWAP - InternalSwap(other); - } else { - ::google::protobuf::internal::GenericSwap(this, other); - } - } - void UnsafeArenaSwap(NotCondition* other) { - if (other == this) return; - ABSL_DCHECK(GetArena() == other->GetArena()); - InternalSwap(other); - } - - // implements Message ---------------------------------------------- - - 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); } - - private: - static void MergeImpl( - ::google::protobuf::MessageLite& to_msg, - const ::google::protobuf::MessageLite& from_msg); - - 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; - #endif // PROTOBUF_CUSTOM_VTABLE - int GetCachedSize() const { return _impl_._cached_size_.Get(); } - - private: - void SharedCtor(::google::protobuf::Arena* arena); - void SharedDtor(); - void InternalSwap(NotCondition* other); - private: - friend class ::google::protobuf::internal::AnyMetadata; - 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); - 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, - }; - // .io.deephaven.proto.backplane.grpc.Condition filter = 1; - bool has_filter() const; - void clear_filter() ; - const ::io::deephaven::proto::backplane::grpc::Condition& filter() const; - PROTOBUF_NODISCARD ::io::deephaven::proto::backplane::grpc::Condition* release_filter(); - ::io::deephaven::proto::backplane::grpc::Condition* mutable_filter(); - void set_allocated_filter(::io::deephaven::proto::backplane::grpc::Condition* value); - void unsafe_arena_set_allocated_filter(::io::deephaven::proto::backplane::grpc::Condition* value); - ::io::deephaven::proto::backplane::grpc::Condition* unsafe_arena_release_filter(); - - private: - const ::io::deephaven::proto::backplane::grpc::Condition& _internal_filter() const; - ::io::deephaven::proto::backplane::grpc::Condition* _internal_mutable_filter(); - - public: - // @@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 - 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 NotCondition& from_msg); - ::google::protobuf::internal::HasBits<1> _has_bits_; - mutable ::google::protobuf::internal::CachedSize _cached_size_; - ::io::deephaven::proto::backplane::grpc::Condition* filter_; - PROTOBUF_TSAN_DECLARE_MEMBER - }; - 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) */ { - public: - inline OrCondition() : OrCondition(nullptr) {} - ~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; - } - inline OrCondition& operator=(OrCondition&& 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 OrCondition& default_instance() { - return *internal_default_instance(); - } - 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); } - 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 - if (GetArena() == other->GetArena()) { -#endif // !PROTOBUF_FORCE_COPY_IN_SWAP - InternalSwap(other); - } else { - ::google::protobuf::internal::GenericSwap(this, other); - } - } - void UnsafeArenaSwap(OrCondition* other) { - if (other == this) return; - ABSL_DCHECK(GetArena() == other->GetArena()); - InternalSwap(other); - } - - // implements Message ---------------------------------------------- - - 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); } - - private: - static void MergeImpl( - ::google::protobuf::MessageLite& to_msg, - const ::google::protobuf::MessageLite& from_msg); - - 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; - #endif // PROTOBUF_CUSTOM_VTABLE - int GetCachedSize() const { return _impl_._cached_size_.Get(); } - - private: - void SharedCtor(::google::protobuf::Arena* arena); - void SharedDtor(); - void InternalSwap(OrCondition* other); - private: - friend class ::google::protobuf::internal::AnyMetadata; - 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); - 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, - }; - // repeated .io.deephaven.proto.backplane.grpc.Condition filters = 1; - int filters_size() const; - private: - int _internal_filters_size() const; - - 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(); - - 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; - // @@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 - 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 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) */ { - public: - inline Aggregation_AggregationColumns() : Aggregation_AggregationColumns(nullptr) {} - ~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; - } - inline Aggregation_AggregationColumns& operator=(Aggregation_AggregationColumns&& 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 Aggregation_AggregationColumns& default_instance() { - return *internal_default_instance(); - } - 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); } - 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 - if (GetArena() == other->GetArena()) { -#endif // !PROTOBUF_FORCE_COPY_IN_SWAP - InternalSwap(other); - } else { - ::google::protobuf::internal::GenericSwap(this, other); - } - } - void UnsafeArenaSwap(Aggregation_AggregationColumns* other) { - if (other == this) return; - ABSL_DCHECK(GetArena() == other->GetArena()); - InternalSwap(other); - } - - // implements Message ---------------------------------------------- - - 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); } - - private: - static void MergeImpl( - ::google::protobuf::MessageLite& to_msg, - const ::google::protobuf::MessageLite& from_msg); - - 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; - #endif // PROTOBUF_CUSTOM_VTABLE - int GetCachedSize() const { return _impl_._cached_size_.Get(); } - - private: - void SharedCtor(::google::protobuf::Arena* arena); - void SharedDtor(); - void InternalSwap(Aggregation_AggregationColumns* other); - private: - friend class ::google::protobuf::internal::AnyMetadata; - 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); - 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, - }; - // repeated string match_pairs = 2; - int match_pairs_size() const; - private: - int _internal_match_pairs_size() const; - - public: - void clear_match_pairs() ; - const std::string& match_pairs(int index) const; - std::string* mutable_match_pairs(int index); - template - void set_match_pairs(int index, Arg_&& value, Args_... args); - std::string* add_match_pairs(); - template - void add_match_pairs(Arg_&& value, Args_... args); - const ::google::protobuf::RepeatedPtrField& match_pairs() const; - ::google::protobuf::RepeatedPtrField* mutable_match_pairs(); - - private: - const ::google::protobuf::RepeatedPtrField& _internal_match_pairs() const; - ::google::protobuf::RepeatedPtrField* _internal_mutable_match_pairs(); - - public: - // .io.deephaven.proto.backplane.grpc.AggSpec spec = 1; - bool has_spec() const; - void clear_spec() ; - const ::io::deephaven::proto::backplane::grpc::AggSpec& spec() const; - PROTOBUF_NODISCARD ::io::deephaven::proto::backplane::grpc::AggSpec* release_spec(); - ::io::deephaven::proto::backplane::grpc::AggSpec* mutable_spec(); - void set_allocated_spec(::io::deephaven::proto::backplane::grpc::AggSpec* value); - void unsafe_arena_set_allocated_spec(::io::deephaven::proto::backplane::grpc::AggSpec* value); - ::io::deephaven::proto::backplane::grpc::AggSpec* unsafe_arena_release_spec(); - - private: - const ::io::deephaven::proto::backplane::grpc::AggSpec& _internal_spec() const; - ::io::deephaven::proto::backplane::grpc::AggSpec* _internal_mutable_spec(); - - public: - // @@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 - 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 Aggregation_AggregationColumns& from_msg); - ::google::protobuf::internal::HasBits<1> _has_bits_; - mutable ::google::protobuf::internal::CachedSize _cached_size_; - ::google::protobuf::RepeatedPtrField match_pairs_; - ::io::deephaven::proto::backplane::grpc::AggSpec* spec_; - PROTOBUF_TSAN_DECLARE_MEMBER - }; - 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) */ { - public: - inline AggregateAllRequest() : AggregateAllRequest(nullptr) {} - ~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; - } - inline AggregateAllRequest& operator=(AggregateAllRequest&& 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 AggregateAllRequest& default_instance() { - return *internal_default_instance(); - } - 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); } - 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 - if (GetArena() == other->GetArena()) { -#endif // !PROTOBUF_FORCE_COPY_IN_SWAP - InternalSwap(other); - } else { - ::google::protobuf::internal::GenericSwap(this, other); - } - } - void UnsafeArenaSwap(AggregateAllRequest* other) { - if (other == this) return; - ABSL_DCHECK(GetArena() == other->GetArena()); - InternalSwap(other); - } - - // implements Message ---------------------------------------------- - - 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); } - - private: - static void MergeImpl( - ::google::protobuf::MessageLite& to_msg, - const ::google::protobuf::MessageLite& from_msg); - - 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; - #endif // PROTOBUF_CUSTOM_VTABLE - int GetCachedSize() const { return _impl_._cached_size_.Get(); } - - private: - void SharedCtor(::google::protobuf::Arena* arena); - void SharedDtor(); - void InternalSwap(AggregateAllRequest* other); - private: - friend class ::google::protobuf::internal::AnyMetadata; - 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); - 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, - kSourceIdFieldNumber = 2, - kSpecFieldNumber = 3, - }; - // repeated string group_by_columns = 4; - int group_by_columns_size() const; - private: - int _internal_group_by_columns_size() const; - - public: - void clear_group_by_columns() ; - const std::string& group_by_columns(int index) const; - std::string* mutable_group_by_columns(int index); - template - void set_group_by_columns(int index, Arg_&& value, Args_... args); - std::string* add_group_by_columns(); - 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(); - - private: - const ::google::protobuf::RepeatedPtrField& _internal_group_by_columns() const; - ::google::protobuf::RepeatedPtrField* _internal_mutable_group_by_columns(); - - public: - // .io.deephaven.proto.backplane.grpc.Ticket result_id = 1; - bool has_result_id() const; - void clear_result_id() ; - const ::io::deephaven::proto::backplane::grpc::Ticket& result_id() const; - PROTOBUF_NODISCARD ::io::deephaven::proto::backplane::grpc::Ticket* release_result_id(); - ::io::deephaven::proto::backplane::grpc::Ticket* mutable_result_id(); - void set_allocated_result_id(::io::deephaven::proto::backplane::grpc::Ticket* value); - void unsafe_arena_set_allocated_result_id(::io::deephaven::proto::backplane::grpc::Ticket* value); - ::io::deephaven::proto::backplane::grpc::Ticket* unsafe_arena_release_result_id(); - - private: - const ::io::deephaven::proto::backplane::grpc::Ticket& _internal_result_id() const; - ::io::deephaven::proto::backplane::grpc::Ticket* _internal_mutable_result_id(); - - public: - // .io.deephaven.proto.backplane.grpc.TableReference source_id = 2; - bool has_source_id() const; - void clear_source_id() ; - const ::io::deephaven::proto::backplane::grpc::TableReference& source_id() const; - PROTOBUF_NODISCARD ::io::deephaven::proto::backplane::grpc::TableReference* release_source_id(); - ::io::deephaven::proto::backplane::grpc::TableReference* mutable_source_id(); - void set_allocated_source_id(::io::deephaven::proto::backplane::grpc::TableReference* value); - void unsafe_arena_set_allocated_source_id(::io::deephaven::proto::backplane::grpc::TableReference* value); - ::io::deephaven::proto::backplane::grpc::TableReference* unsafe_arena_release_source_id(); - - private: - const ::io::deephaven::proto::backplane::grpc::TableReference& _internal_source_id() const; - ::io::deephaven::proto::backplane::grpc::TableReference* _internal_mutable_source_id(); - - public: - // .io.deephaven.proto.backplane.grpc.AggSpec spec = 3; - bool has_spec() const; - void clear_spec() ; - const ::io::deephaven::proto::backplane::grpc::AggSpec& spec() const; - PROTOBUF_NODISCARD ::io::deephaven::proto::backplane::grpc::AggSpec* release_spec(); - ::io::deephaven::proto::backplane::grpc::AggSpec* mutable_spec(); - void set_allocated_spec(::io::deephaven::proto::backplane::grpc::AggSpec* value); - void unsafe_arena_set_allocated_spec(::io::deephaven::proto::backplane::grpc::AggSpec* value); - ::io::deephaven::proto::backplane::grpc::AggSpec* unsafe_arena_release_spec(); - - private: - const ::io::deephaven::proto::backplane::grpc::AggSpec& _internal_spec() const; - ::io::deephaven::proto::backplane::grpc::AggSpec* _internal_mutable_spec(); - - public: - // @@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 - 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 AggregateAllRequest& from_msg); - ::google::protobuf::internal::HasBits<1> _has_bits_; - mutable ::google::protobuf::internal::CachedSize _cached_size_; - ::google::protobuf::RepeatedPtrField group_by_columns_; - ::io::deephaven::proto::backplane::grpc::Ticket* result_id_; - ::io::deephaven::proto::backplane::grpc::TableReference* source_id_; - ::io::deephaven::proto::backplane::grpc::AggSpec* spec_; - PROTOBUF_TSAN_DECLARE_MEMBER - }; - 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) */ { - public: - inline UpdateByRequest_UpdateByOperation_UpdateByColumn() : UpdateByRequest_UpdateByOperation_UpdateByColumn(nullptr) {} - ~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; - } - 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 - && 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 UpdateByRequest_UpdateByOperation_UpdateByColumn& default_instance() { - return *internal_default_instance(); - } - 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); } - 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 - if (GetArena() == other->GetArena()) { -#endif // !PROTOBUF_FORCE_COPY_IN_SWAP - InternalSwap(other); - } else { - ::google::protobuf::internal::GenericSwap(this, other); - } - } - void UnsafeArenaSwap(UpdateByRequest_UpdateByOperation_UpdateByColumn* other) { - if (other == this) return; - ABSL_DCHECK(GetArena() == other->GetArena()); - InternalSwap(other); - } - - // implements Message ---------------------------------------------- - - 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); } - - private: - static void MergeImpl( - ::google::protobuf::MessageLite& to_msg, - const ::google::protobuf::MessageLite& from_msg); - - 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; - #endif // PROTOBUF_CUSTOM_VTABLE - int GetCachedSize() const { return _impl_._cached_size_.Get(); } - - private: - void SharedCtor(::google::protobuf::Arena* arena); - void SharedDtor(); - void InternalSwap(UpdateByRequest_UpdateByOperation_UpdateByColumn* other); - private: - friend class ::google::protobuf::internal::AnyMetadata; - 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); - 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, - }; - // repeated string match_pairs = 2; - int match_pairs_size() const; - private: - int _internal_match_pairs_size() const; - - public: - void clear_match_pairs() ; - const std::string& match_pairs(int index) const; - std::string* mutable_match_pairs(int index); - template - void set_match_pairs(int index, Arg_&& value, Args_... args); - std::string* add_match_pairs(); - template - void add_match_pairs(Arg_&& value, Args_... args); - const ::google::protobuf::RepeatedPtrField& match_pairs() const; - ::google::protobuf::RepeatedPtrField* mutable_match_pairs(); - - private: - const ::google::protobuf::RepeatedPtrField& _internal_match_pairs() const; - ::google::protobuf::RepeatedPtrField* _internal_mutable_match_pairs(); - - public: - // .io.deephaven.proto.backplane.grpc.UpdateByRequest.UpdateByOperation.UpdateByColumn.UpdateBySpec spec = 1; - bool has_spec() const; - void clear_spec() ; - const ::io::deephaven::proto::backplane::grpc::UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec& spec() const; - PROTOBUF_NODISCARD ::io::deephaven::proto::backplane::grpc::UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec* release_spec(); - ::io::deephaven::proto::backplane::grpc::UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec* mutable_spec(); - void set_allocated_spec(::io::deephaven::proto::backplane::grpc::UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec* value); - void unsafe_arena_set_allocated_spec(::io::deephaven::proto::backplane::grpc::UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec* value); - ::io::deephaven::proto::backplane::grpc::UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec* unsafe_arena_release_spec(); - - private: - const ::io::deephaven::proto::backplane::grpc::UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec& _internal_spec() const; - ::io::deephaven::proto::backplane::grpc::UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec* _internal_mutable_spec(); - - public: - // @@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 - 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 UpdateByRequest_UpdateByOperation_UpdateByColumn& from_msg); - ::google::protobuf::internal::HasBits<1> _has_bits_; - mutable ::google::protobuf::internal::CachedSize _cached_size_; - ::google::protobuf::RepeatedPtrField match_pairs_; - ::io::deephaven::proto::backplane::grpc::UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec* spec_; - PROTOBUF_TSAN_DECLARE_MEMBER - }; - 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) */ { - public: - inline FilterTableRequest() : FilterTableRequest(nullptr) {} - ~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; - } - inline FilterTableRequest& operator=(FilterTableRequest&& 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 FilterTableRequest& default_instance() { - return *internal_default_instance(); - } - 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); } - 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 - if (GetArena() == other->GetArena()) { -#endif // !PROTOBUF_FORCE_COPY_IN_SWAP - InternalSwap(other); - } else { - ::google::protobuf::internal::GenericSwap(this, other); - } - } - void UnsafeArenaSwap(FilterTableRequest* other) { - if (other == this) return; - ABSL_DCHECK(GetArena() == other->GetArena()); - InternalSwap(other); - } - - // implements Message ---------------------------------------------- - - 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); } - - private: - static void MergeImpl( - ::google::protobuf::MessageLite& to_msg, - const ::google::protobuf::MessageLite& from_msg); - - 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; - #endif // PROTOBUF_CUSTOM_VTABLE - int GetCachedSize() const { return _impl_._cached_size_.Get(); } - - private: - void SharedCtor(::google::protobuf::Arena* arena); - void SharedDtor(); - void InternalSwap(FilterTableRequest* other); - private: - friend class ::google::protobuf::internal::AnyMetadata; - 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); - 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, - kSourceIdFieldNumber = 2, - }; - // repeated .io.deephaven.proto.backplane.grpc.Condition filters = 3; - int filters_size() const; - private: - int _internal_filters_size() const; - - 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(); - - 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; - // .io.deephaven.proto.backplane.grpc.Ticket result_id = 1; - bool has_result_id() const; - void clear_result_id() ; - const ::io::deephaven::proto::backplane::grpc::Ticket& result_id() const; - PROTOBUF_NODISCARD ::io::deephaven::proto::backplane::grpc::Ticket* release_result_id(); - ::io::deephaven::proto::backplane::grpc::Ticket* mutable_result_id(); - void set_allocated_result_id(::io::deephaven::proto::backplane::grpc::Ticket* value); - void unsafe_arena_set_allocated_result_id(::io::deephaven::proto::backplane::grpc::Ticket* value); - ::io::deephaven::proto::backplane::grpc::Ticket* unsafe_arena_release_result_id(); - - private: - const ::io::deephaven::proto::backplane::grpc::Ticket& _internal_result_id() const; - ::io::deephaven::proto::backplane::grpc::Ticket* _internal_mutable_result_id(); - - public: - // .io.deephaven.proto.backplane.grpc.TableReference source_id = 2; - bool has_source_id() const; - void clear_source_id() ; - const ::io::deephaven::proto::backplane::grpc::TableReference& source_id() const; - PROTOBUF_NODISCARD ::io::deephaven::proto::backplane::grpc::TableReference* release_source_id(); - ::io::deephaven::proto::backplane::grpc::TableReference* mutable_source_id(); - void set_allocated_source_id(::io::deephaven::proto::backplane::grpc::TableReference* value); - void unsafe_arena_set_allocated_source_id(::io::deephaven::proto::backplane::grpc::TableReference* value); - ::io::deephaven::proto::backplane::grpc::TableReference* unsafe_arena_release_source_id(); - - private: - const ::io::deephaven::proto::backplane::grpc::TableReference& _internal_source_id() const; - ::io::deephaven::proto::backplane::grpc::TableReference* _internal_mutable_source_id(); - - public: - // @@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 - 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 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_; - ::io::deephaven::proto::backplane::grpc::Ticket* result_id_; - ::io::deephaven::proto::backplane::grpc::TableReference* source_id_; - PROTOBUF_TSAN_DECLARE_MEMBER - }; - 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) */ { - public: - inline Aggregation() : Aggregation(nullptr) {} - ~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; - } - inline Aggregation& operator=(Aggregation&& 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 Aggregation& default_instance() { - return *internal_default_instance(); - } - enum TypeCase { - kColumns = 1, - kCount = 2, - kFirstRowKey = 3, - kLastRowKey = 4, - 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); } - 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 - if (GetArena() == other->GetArena()) { -#endif // !PROTOBUF_FORCE_COPY_IN_SWAP - InternalSwap(other); - } else { - ::google::protobuf::internal::GenericSwap(this, other); - } - } - void UnsafeArenaSwap(Aggregation* other) { - if (other == this) return; - ABSL_DCHECK(GetArena() == other->GetArena()); - InternalSwap(other); - } - - // implements Message ---------------------------------------------- - - 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); } - - private: - static void MergeImpl( - ::google::protobuf::MessageLite& to_msg, - const ::google::protobuf::MessageLite& from_msg); - - 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; - #endif // PROTOBUF_CUSTOM_VTABLE - int GetCachedSize() const { return _impl_._cached_size_.Get(); } - - private: - void SharedCtor(::google::protobuf::Arena* arena); - void SharedDtor(); - void InternalSwap(Aggregation* other); - private: - friend class ::google::protobuf::internal::AnyMetadata; - 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); - 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, - kFirstRowKeyFieldNumber = 3, - kLastRowKeyFieldNumber = 4, - kPartitionFieldNumber = 5, - }; - // .io.deephaven.proto.backplane.grpc.Aggregation.AggregationColumns columns = 1; - bool has_columns() const; - private: - bool _internal_has_columns() const; - - public: - void clear_columns() ; - const ::io::deephaven::proto::backplane::grpc::Aggregation_AggregationColumns& columns() const; - PROTOBUF_NODISCARD ::io::deephaven::proto::backplane::grpc::Aggregation_AggregationColumns* release_columns(); - ::io::deephaven::proto::backplane::grpc::Aggregation_AggregationColumns* mutable_columns(); - void set_allocated_columns(::io::deephaven::proto::backplane::grpc::Aggregation_AggregationColumns* value); - void unsafe_arena_set_allocated_columns(::io::deephaven::proto::backplane::grpc::Aggregation_AggregationColumns* value); - ::io::deephaven::proto::backplane::grpc::Aggregation_AggregationColumns* unsafe_arena_release_columns(); - - private: - const ::io::deephaven::proto::backplane::grpc::Aggregation_AggregationColumns& _internal_columns() const; - ::io::deephaven::proto::backplane::grpc::Aggregation_AggregationColumns* _internal_mutable_columns(); - - public: - // .io.deephaven.proto.backplane.grpc.Aggregation.AggregationCount count = 2; - bool has_count() const; - private: - bool _internal_has_count() const; - - public: - void clear_count() ; - const ::io::deephaven::proto::backplane::grpc::Aggregation_AggregationCount& count() const; - PROTOBUF_NODISCARD ::io::deephaven::proto::backplane::grpc::Aggregation_AggregationCount* release_count(); - ::io::deephaven::proto::backplane::grpc::Aggregation_AggregationCount* mutable_count(); - void set_allocated_count(::io::deephaven::proto::backplane::grpc::Aggregation_AggregationCount* value); - void unsafe_arena_set_allocated_count(::io::deephaven::proto::backplane::grpc::Aggregation_AggregationCount* value); - ::io::deephaven::proto::backplane::grpc::Aggregation_AggregationCount* unsafe_arena_release_count(); - - private: - const ::io::deephaven::proto::backplane::grpc::Aggregation_AggregationCount& _internal_count() const; - ::io::deephaven::proto::backplane::grpc::Aggregation_AggregationCount* _internal_mutable_count(); - - public: - // .io.deephaven.proto.backplane.grpc.Aggregation.AggregationRowKey first_row_key = 3; - bool has_first_row_key() const; - private: - bool _internal_has_first_row_key() const; - - public: - void clear_first_row_key() ; - const ::io::deephaven::proto::backplane::grpc::Aggregation_AggregationRowKey& first_row_key() const; - PROTOBUF_NODISCARD ::io::deephaven::proto::backplane::grpc::Aggregation_AggregationRowKey* release_first_row_key(); - ::io::deephaven::proto::backplane::grpc::Aggregation_AggregationRowKey* mutable_first_row_key(); - void set_allocated_first_row_key(::io::deephaven::proto::backplane::grpc::Aggregation_AggregationRowKey* value); - void unsafe_arena_set_allocated_first_row_key(::io::deephaven::proto::backplane::grpc::Aggregation_AggregationRowKey* value); - ::io::deephaven::proto::backplane::grpc::Aggregation_AggregationRowKey* unsafe_arena_release_first_row_key(); - - private: - const ::io::deephaven::proto::backplane::grpc::Aggregation_AggregationRowKey& _internal_first_row_key() const; - ::io::deephaven::proto::backplane::grpc::Aggregation_AggregationRowKey* _internal_mutable_first_row_key(); - - public: - // .io.deephaven.proto.backplane.grpc.Aggregation.AggregationRowKey last_row_key = 4; - bool has_last_row_key() const; - private: - bool _internal_has_last_row_key() const; - - public: - void clear_last_row_key() ; - const ::io::deephaven::proto::backplane::grpc::Aggregation_AggregationRowKey& last_row_key() const; - PROTOBUF_NODISCARD ::io::deephaven::proto::backplane::grpc::Aggregation_AggregationRowKey* release_last_row_key(); - ::io::deephaven::proto::backplane::grpc::Aggregation_AggregationRowKey* mutable_last_row_key(); - void set_allocated_last_row_key(::io::deephaven::proto::backplane::grpc::Aggregation_AggregationRowKey* value); - void unsafe_arena_set_allocated_last_row_key(::io::deephaven::proto::backplane::grpc::Aggregation_AggregationRowKey* value); - ::io::deephaven::proto::backplane::grpc::Aggregation_AggregationRowKey* unsafe_arena_release_last_row_key(); - - private: - const ::io::deephaven::proto::backplane::grpc::Aggregation_AggregationRowKey& _internal_last_row_key() const; - ::io::deephaven::proto::backplane::grpc::Aggregation_AggregationRowKey* _internal_mutable_last_row_key(); - - public: - // .io.deephaven.proto.backplane.grpc.Aggregation.AggregationPartition partition = 5; - bool has_partition() const; - private: - bool _internal_has_partition() const; - - public: - void clear_partition() ; - const ::io::deephaven::proto::backplane::grpc::Aggregation_AggregationPartition& partition() const; - PROTOBUF_NODISCARD ::io::deephaven::proto::backplane::grpc::Aggregation_AggregationPartition* release_partition(); - ::io::deephaven::proto::backplane::grpc::Aggregation_AggregationPartition* mutable_partition(); - void set_allocated_partition(::io::deephaven::proto::backplane::grpc::Aggregation_AggregationPartition* value); - void unsafe_arena_set_allocated_partition(::io::deephaven::proto::backplane::grpc::Aggregation_AggregationPartition* value); - ::io::deephaven::proto::backplane::grpc::Aggregation_AggregationPartition* unsafe_arena_release_partition(); - - private: - const ::io::deephaven::proto::backplane::grpc::Aggregation_AggregationPartition& _internal_partition() const; - ::io::deephaven::proto::backplane::grpc::Aggregation_AggregationPartition* _internal_mutable_partition(); - - public: - void clear_type(); - TypeCase type_case() const; - // @@protoc_insertion_point(class_scope:io.deephaven.proto.backplane.grpc.Aggregation) - private: - class _Internal; - void set_has_columns(); - void set_has_count(); - 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 - 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 Aggregation& from_msg); - union TypeUnion { - constexpr TypeUnion() : _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_; - ::io::deephaven::proto::backplane::grpc::Aggregation_AggregationRowKey* last_row_key_; - ::io::deephaven::proto::backplane::grpc::Aggregation_AggregationPartition* partition_; - } 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) */ { - public: - inline UpdateByRequest_UpdateByOperation() : UpdateByRequest_UpdateByOperation(nullptr) {} - ~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; - } - inline UpdateByRequest_UpdateByOperation& operator=(UpdateByRequest_UpdateByOperation&& 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 UpdateByRequest_UpdateByOperation& default_instance() { - return *internal_default_instance(); - } - enum TypeCase { - 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); } - 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 - if (GetArena() == other->GetArena()) { -#endif // !PROTOBUF_FORCE_COPY_IN_SWAP - InternalSwap(other); - } else { - ::google::protobuf::internal::GenericSwap(this, other); - } - } - void UnsafeArenaSwap(UpdateByRequest_UpdateByOperation* other) { - if (other == this) return; - ABSL_DCHECK(GetArena() == other->GetArena()); - InternalSwap(other); - } - - // implements Message ---------------------------------------------- - - 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); } - - private: - static void MergeImpl( - ::google::protobuf::MessageLite& to_msg, - const ::google::protobuf::MessageLite& from_msg); - - 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; - #endif // PROTOBUF_CUSTOM_VTABLE - int GetCachedSize() const { return _impl_._cached_size_.Get(); } - - private: - void SharedCtor(::google::protobuf::Arena* arena); - void SharedDtor(); - void InternalSwap(UpdateByRequest_UpdateByOperation* other); - private: - friend class ::google::protobuf::internal::AnyMetadata; - 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); - 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, - }; - // .io.deephaven.proto.backplane.grpc.UpdateByRequest.UpdateByOperation.UpdateByColumn column = 1; - bool has_column() const; - private: - bool _internal_has_column() const; - - public: - void clear_column() ; - const ::io::deephaven::proto::backplane::grpc::UpdateByRequest_UpdateByOperation_UpdateByColumn& column() const; - PROTOBUF_NODISCARD ::io::deephaven::proto::backplane::grpc::UpdateByRequest_UpdateByOperation_UpdateByColumn* release_column(); - ::io::deephaven::proto::backplane::grpc::UpdateByRequest_UpdateByOperation_UpdateByColumn* mutable_column(); - void set_allocated_column(::io::deephaven::proto::backplane::grpc::UpdateByRequest_UpdateByOperation_UpdateByColumn* value); - void unsafe_arena_set_allocated_column(::io::deephaven::proto::backplane::grpc::UpdateByRequest_UpdateByOperation_UpdateByColumn* value); - ::io::deephaven::proto::backplane::grpc::UpdateByRequest_UpdateByOperation_UpdateByColumn* unsafe_arena_release_column(); - - private: - const ::io::deephaven::proto::backplane::grpc::UpdateByRequest_UpdateByOperation_UpdateByColumn& _internal_column() const; - ::io::deephaven::proto::backplane::grpc::UpdateByRequest_UpdateByOperation_UpdateByColumn* _internal_mutable_column(); - - public: - void clear_type(); - TypeCase type_case() const; - // @@protoc_insertion_point(class_scope:io.deephaven.proto.backplane.grpc.UpdateByRequest.UpdateByOperation) - 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 - 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 UpdateByRequest_UpdateByOperation& from_msg); - union TypeUnion { - constexpr TypeUnion() : _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) */ { - public: - inline RangeJoinTablesRequest() : RangeJoinTablesRequest(nullptr) {} - ~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; - } - inline RangeJoinTablesRequest& operator=(RangeJoinTablesRequest&& 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 RangeJoinTablesRequest& default_instance() { - return *internal_default_instance(); - } - 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); } - 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 - if (GetArena() == other->GetArena()) { -#endif // !PROTOBUF_FORCE_COPY_IN_SWAP - InternalSwap(other); - } else { - ::google::protobuf::internal::GenericSwap(this, other); - } - } - void UnsafeArenaSwap(RangeJoinTablesRequest* other) { - if (other == this) return; - ABSL_DCHECK(GetArena() == other->GetArena()); - InternalSwap(other); - } - - // implements Message ---------------------------------------------- - - 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); } - - private: - static void MergeImpl( - ::google::protobuf::MessageLite& to_msg, - const ::google::protobuf::MessageLite& from_msg); - - 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; - #endif // PROTOBUF_CUSTOM_VTABLE - int GetCachedSize() const { return _impl_._cached_size_.Get(); } - - private: - void SharedCtor(::google::protobuf::Arena* arena); - void SharedDtor(); - void InternalSwap(RangeJoinTablesRequest* other); - private: - friend class ::google::protobuf::internal::AnyMetadata; - 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); - 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; - static constexpr RangeStartRule LESS_THAN_OR_EQUAL = RangeJoinTablesRequest_RangeStartRule_LESS_THAN_OR_EQUAL; - static constexpr RangeStartRule LESS_THAN_OR_EQUAL_ALLOW_PRECEDING = RangeJoinTablesRequest_RangeStartRule_LESS_THAN_OR_EQUAL_ALLOW_PRECEDING; - static inline bool RangeStartRule_IsValid(int value) { - return RangeJoinTablesRequest_RangeStartRule_IsValid(value); - } - static constexpr RangeStartRule RangeStartRule_MIN = RangeJoinTablesRequest_RangeStartRule_RangeStartRule_MIN; - static constexpr RangeStartRule RangeStartRule_MAX = RangeJoinTablesRequest_RangeStartRule_RangeStartRule_MAX; - static constexpr int RangeStartRule_ARRAYSIZE = RangeJoinTablesRequest_RangeStartRule_RangeStartRule_ARRAYSIZE; - static inline const ::google::protobuf::EnumDescriptor* RangeStartRule_descriptor() { - return RangeJoinTablesRequest_RangeStartRule_descriptor(); - } - template - static inline const std::string& RangeStartRule_Name(T value) { - return RangeJoinTablesRequest_RangeStartRule_Name(value); - } - 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; - static constexpr RangeEndRule GREATER_THAN_OR_EQUAL = RangeJoinTablesRequest_RangeEndRule_GREATER_THAN_OR_EQUAL; - static constexpr RangeEndRule GREATER_THAN_OR_EQUAL_ALLOW_FOLLOWING = RangeJoinTablesRequest_RangeEndRule_GREATER_THAN_OR_EQUAL_ALLOW_FOLLOWING; - static inline bool RangeEndRule_IsValid(int value) { - return RangeJoinTablesRequest_RangeEndRule_IsValid(value); - } - static constexpr RangeEndRule RangeEndRule_MIN = RangeJoinTablesRequest_RangeEndRule_RangeEndRule_MIN; - static constexpr RangeEndRule RangeEndRule_MAX = RangeJoinTablesRequest_RangeEndRule_RangeEndRule_MAX; - static constexpr int RangeEndRule_ARRAYSIZE = RangeJoinTablesRequest_RangeEndRule_RangeEndRule_ARRAYSIZE; - static inline const ::google::protobuf::EnumDescriptor* RangeEndRule_descriptor() { - return RangeJoinTablesRequest_RangeEndRule_descriptor(); - } - template - static inline const std::string& RangeEndRule_Name(T value) { - return RangeJoinTablesRequest_RangeEndRule_Name(value); - } - static inline bool RangeEndRule_Parse(absl::string_view name, RangeEndRule* value) { - return RangeJoinTablesRequest_RangeEndRule_Parse(name, value); - } - - // accessors ------------------------------------------------------- - enum : int { - kExactMatchColumnsFieldNumber = 4, - kAggregationsFieldNumber = 10, - kLeftStartColumnFieldNumber = 5, - kRightRangeColumnFieldNumber = 7, - kLeftEndColumnFieldNumber = 9, - kRangeMatchFieldNumber = 11, - kResultIdFieldNumber = 1, - kLeftIdFieldNumber = 2, - kRightIdFieldNumber = 3, - kRangeStartRuleFieldNumber = 6, - kRangeEndRuleFieldNumber = 8, - }; - // repeated string exact_match_columns = 4; - int exact_match_columns_size() const; - private: - int _internal_exact_match_columns_size() const; - - public: - void clear_exact_match_columns() ; - const std::string& exact_match_columns(int index) const; - std::string* mutable_exact_match_columns(int index); - template - void set_exact_match_columns(int index, Arg_&& value, Args_... args); - std::string* add_exact_match_columns(); - 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(); - - private: - const ::google::protobuf::RepeatedPtrField& _internal_exact_match_columns() const; - ::google::protobuf::RepeatedPtrField* _internal_mutable_exact_match_columns(); - - public: - // repeated .io.deephaven.proto.backplane.grpc.Aggregation aggregations = 10; - int aggregations_size() const; - private: - int _internal_aggregations_size() const; - - 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(); - - 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; - // string left_start_column = 5; - void clear_left_start_column() ; - const std::string& left_start_column() const; - template - void set_left_start_column(Arg_&& arg, Args_... args); - std::string* mutable_left_start_column(); - PROTOBUF_NODISCARD std::string* release_left_start_column(); - void set_allocated_left_start_column(std::string* value); - - private: - const std::string& _internal_left_start_column() const; - inline PROTOBUF_ALWAYS_INLINE void _internal_set_left_start_column( - const std::string& value); - std::string* _internal_mutable_left_start_column(); - - public: - // string right_range_column = 7; - void clear_right_range_column() ; - const std::string& right_range_column() const; - template - void set_right_range_column(Arg_&& arg, Args_... args); - std::string* mutable_right_range_column(); - PROTOBUF_NODISCARD std::string* release_right_range_column(); - void set_allocated_right_range_column(std::string* value); - - private: - const std::string& _internal_right_range_column() const; - inline PROTOBUF_ALWAYS_INLINE void _internal_set_right_range_column( - const std::string& value); - std::string* _internal_mutable_right_range_column(); - - public: - // string left_end_column = 9; - void clear_left_end_column() ; - const std::string& left_end_column() const; - template - void set_left_end_column(Arg_&& arg, Args_... args); - std::string* mutable_left_end_column(); - PROTOBUF_NODISCARD std::string* release_left_end_column(); - void set_allocated_left_end_column(std::string* value); - - private: - const std::string& _internal_left_end_column() const; - inline PROTOBUF_ALWAYS_INLINE void _internal_set_left_end_column( - const std::string& value); - std::string* _internal_mutable_left_end_column(); - - public: - // string range_match = 11; - void clear_range_match() ; - const std::string& range_match() const; - template - void set_range_match(Arg_&& arg, Args_... args); - std::string* mutable_range_match(); - PROTOBUF_NODISCARD std::string* release_range_match(); - void set_allocated_range_match(std::string* value); - - private: - const std::string& _internal_range_match() const; - inline PROTOBUF_ALWAYS_INLINE void _internal_set_range_match( - const std::string& value); - std::string* _internal_mutable_range_match(); - - public: - // .io.deephaven.proto.backplane.grpc.Ticket result_id = 1; - bool has_result_id() const; - void clear_result_id() ; - const ::io::deephaven::proto::backplane::grpc::Ticket& result_id() const; - PROTOBUF_NODISCARD ::io::deephaven::proto::backplane::grpc::Ticket* release_result_id(); - ::io::deephaven::proto::backplane::grpc::Ticket* mutable_result_id(); - void set_allocated_result_id(::io::deephaven::proto::backplane::grpc::Ticket* value); - void unsafe_arena_set_allocated_result_id(::io::deephaven::proto::backplane::grpc::Ticket* value); - ::io::deephaven::proto::backplane::grpc::Ticket* unsafe_arena_release_result_id(); - - private: - const ::io::deephaven::proto::backplane::grpc::Ticket& _internal_result_id() const; - ::io::deephaven::proto::backplane::grpc::Ticket* _internal_mutable_result_id(); - - public: - // .io.deephaven.proto.backplane.grpc.TableReference left_id = 2; - bool has_left_id() const; - void clear_left_id() ; - const ::io::deephaven::proto::backplane::grpc::TableReference& left_id() const; - PROTOBUF_NODISCARD ::io::deephaven::proto::backplane::grpc::TableReference* release_left_id(); - ::io::deephaven::proto::backplane::grpc::TableReference* mutable_left_id(); - void set_allocated_left_id(::io::deephaven::proto::backplane::grpc::TableReference* value); - void unsafe_arena_set_allocated_left_id(::io::deephaven::proto::backplane::grpc::TableReference* value); - ::io::deephaven::proto::backplane::grpc::TableReference* unsafe_arena_release_left_id(); - - private: - const ::io::deephaven::proto::backplane::grpc::TableReference& _internal_left_id() const; - ::io::deephaven::proto::backplane::grpc::TableReference* _internal_mutable_left_id(); - - public: - // .io.deephaven.proto.backplane.grpc.TableReference right_id = 3; - bool has_right_id() const; - void clear_right_id() ; - const ::io::deephaven::proto::backplane::grpc::TableReference& right_id() const; - PROTOBUF_NODISCARD ::io::deephaven::proto::backplane::grpc::TableReference* release_right_id(); - ::io::deephaven::proto::backplane::grpc::TableReference* mutable_right_id(); - void set_allocated_right_id(::io::deephaven::proto::backplane::grpc::TableReference* value); - void unsafe_arena_set_allocated_right_id(::io::deephaven::proto::backplane::grpc::TableReference* value); - ::io::deephaven::proto::backplane::grpc::TableReference* unsafe_arena_release_right_id(); - - private: - const ::io::deephaven::proto::backplane::grpc::TableReference& _internal_right_id() const; - ::io::deephaven::proto::backplane::grpc::TableReference* _internal_mutable_right_id(); - - public: - // .io.deephaven.proto.backplane.grpc.RangeJoinTablesRequest.RangeStartRule range_start_rule = 6; - void clear_range_start_rule() ; - ::io::deephaven::proto::backplane::grpc::RangeJoinTablesRequest_RangeStartRule range_start_rule() const; - void set_range_start_rule(::io::deephaven::proto::backplane::grpc::RangeJoinTablesRequest_RangeStartRule value); - - private: - ::io::deephaven::proto::backplane::grpc::RangeJoinTablesRequest_RangeStartRule _internal_range_start_rule() const; - void _internal_set_range_start_rule(::io::deephaven::proto::backplane::grpc::RangeJoinTablesRequest_RangeStartRule value); - - public: - // .io.deephaven.proto.backplane.grpc.RangeJoinTablesRequest.RangeEndRule range_end_rule = 8; - void clear_range_end_rule() ; - ::io::deephaven::proto::backplane::grpc::RangeJoinTablesRequest_RangeEndRule range_end_rule() const; - void set_range_end_rule(::io::deephaven::proto::backplane::grpc::RangeJoinTablesRequest_RangeEndRule value); - - private: - ::io::deephaven::proto::backplane::grpc::RangeJoinTablesRequest_RangeEndRule _internal_range_end_rule() const; - void _internal_set_range_end_rule(::io::deephaven::proto::backplane::grpc::RangeJoinTablesRequest_RangeEndRule value); - - public: - // @@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 - 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 RangeJoinTablesRequest& from_msg); - ::google::protobuf::internal::HasBits<1> _has_bits_; - mutable ::google::protobuf::internal::CachedSize _cached_size_; - ::google::protobuf::RepeatedPtrField exact_match_columns_; - ::google::protobuf::RepeatedPtrField< ::io::deephaven::proto::backplane::grpc::Aggregation > aggregations_; - ::google::protobuf::internal::ArenaStringPtr left_start_column_; - ::google::protobuf::internal::ArenaStringPtr right_range_column_; - ::google::protobuf::internal::ArenaStringPtr left_end_column_; - ::google::protobuf::internal::ArenaStringPtr range_match_; - ::io::deephaven::proto::backplane::grpc::Ticket* result_id_; - ::io::deephaven::proto::backplane::grpc::TableReference* left_id_; - ::io::deephaven::proto::backplane::grpc::TableReference* right_id_; - int range_start_rule_; - int range_end_rule_; - PROTOBUF_TSAN_DECLARE_MEMBER - }; - 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) */ { - public: - inline AggregateRequest() : AggregateRequest(nullptr) {} - ~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; - } - inline AggregateRequest& operator=(AggregateRequest&& 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 AggregateRequest& default_instance() { - return *internal_default_instance(); - } - 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); } - 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 - if (GetArena() == other->GetArena()) { -#endif // !PROTOBUF_FORCE_COPY_IN_SWAP - InternalSwap(other); - } else { - ::google::protobuf::internal::GenericSwap(this, other); - } - } - void UnsafeArenaSwap(AggregateRequest* other) { - if (other == this) return; - ABSL_DCHECK(GetArena() == other->GetArena()); - InternalSwap(other); - } - - // implements Message ---------------------------------------------- - - 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); } - - private: - static void MergeImpl( - ::google::protobuf::MessageLite& to_msg, - const ::google::protobuf::MessageLite& from_msg); - - 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; - #endif // PROTOBUF_CUSTOM_VTABLE - int GetCachedSize() const { return _impl_._cached_size_.Get(); } - - private: - void SharedCtor(::google::protobuf::Arena* arena); - void SharedDtor(); - void InternalSwap(AggregateRequest* other); - private: - friend class ::google::protobuf::internal::AnyMetadata; - 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); - 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, - kResultIdFieldNumber = 1, - kSourceIdFieldNumber = 2, - kInitialGroupsIdFieldNumber = 3, - kPreserveEmptyFieldNumber = 4, - }; - // repeated .io.deephaven.proto.backplane.grpc.Aggregation aggregations = 5; - int aggregations_size() const; - private: - int _internal_aggregations_size() const; - - 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(); - - 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; - // repeated string group_by_columns = 6; - int group_by_columns_size() const; - private: - int _internal_group_by_columns_size() const; - - public: - void clear_group_by_columns() ; - const std::string& group_by_columns(int index) const; - std::string* mutable_group_by_columns(int index); - template - void set_group_by_columns(int index, Arg_&& value, Args_... args); - std::string* add_group_by_columns(); - 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(); - - private: - const ::google::protobuf::RepeatedPtrField& _internal_group_by_columns() const; - ::google::protobuf::RepeatedPtrField* _internal_mutable_group_by_columns(); - - public: - // .io.deephaven.proto.backplane.grpc.Ticket result_id = 1; - bool has_result_id() const; - void clear_result_id() ; - const ::io::deephaven::proto::backplane::grpc::Ticket& result_id() const; - PROTOBUF_NODISCARD ::io::deephaven::proto::backplane::grpc::Ticket* release_result_id(); - ::io::deephaven::proto::backplane::grpc::Ticket* mutable_result_id(); - void set_allocated_result_id(::io::deephaven::proto::backplane::grpc::Ticket* value); - void unsafe_arena_set_allocated_result_id(::io::deephaven::proto::backplane::grpc::Ticket* value); - ::io::deephaven::proto::backplane::grpc::Ticket* unsafe_arena_release_result_id(); - - private: - const ::io::deephaven::proto::backplane::grpc::Ticket& _internal_result_id() const; - ::io::deephaven::proto::backplane::grpc::Ticket* _internal_mutable_result_id(); - - public: - // .io.deephaven.proto.backplane.grpc.TableReference source_id = 2; - bool has_source_id() const; - void clear_source_id() ; - const ::io::deephaven::proto::backplane::grpc::TableReference& source_id() const; - PROTOBUF_NODISCARD ::io::deephaven::proto::backplane::grpc::TableReference* release_source_id(); - ::io::deephaven::proto::backplane::grpc::TableReference* mutable_source_id(); - void set_allocated_source_id(::io::deephaven::proto::backplane::grpc::TableReference* value); - void unsafe_arena_set_allocated_source_id(::io::deephaven::proto::backplane::grpc::TableReference* value); - ::io::deephaven::proto::backplane::grpc::TableReference* unsafe_arena_release_source_id(); - - private: - const ::io::deephaven::proto::backplane::grpc::TableReference& _internal_source_id() const; - ::io::deephaven::proto::backplane::grpc::TableReference* _internal_mutable_source_id(); - - public: - // .io.deephaven.proto.backplane.grpc.TableReference initial_groups_id = 3; - bool has_initial_groups_id() const; - void clear_initial_groups_id() ; - const ::io::deephaven::proto::backplane::grpc::TableReference& initial_groups_id() const; - PROTOBUF_NODISCARD ::io::deephaven::proto::backplane::grpc::TableReference* release_initial_groups_id(); - ::io::deephaven::proto::backplane::grpc::TableReference* mutable_initial_groups_id(); - void set_allocated_initial_groups_id(::io::deephaven::proto::backplane::grpc::TableReference* value); - void unsafe_arena_set_allocated_initial_groups_id(::io::deephaven::proto::backplane::grpc::TableReference* value); - ::io::deephaven::proto::backplane::grpc::TableReference* unsafe_arena_release_initial_groups_id(); - - private: - const ::io::deephaven::proto::backplane::grpc::TableReference& _internal_initial_groups_id() const; - ::io::deephaven::proto::backplane::grpc::TableReference* _internal_mutable_initial_groups_id(); - - public: - // bool preserve_empty = 4; - void clear_preserve_empty() ; - bool preserve_empty() const; - void set_preserve_empty(bool value); - - private: - bool _internal_preserve_empty() const; - void _internal_set_preserve_empty(bool value); - - public: - // @@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 - 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 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_; - ::google::protobuf::RepeatedPtrField group_by_columns_; - ::io::deephaven::proto::backplane::grpc::Ticket* result_id_; - ::io::deephaven::proto::backplane::grpc::TableReference* source_id_; - ::io::deephaven::proto::backplane::grpc::TableReference* initial_groups_id_; - bool preserve_empty_; - PROTOBUF_TSAN_DECLARE_MEMBER - }; - 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) */ { - public: - inline UpdateByRequest() : UpdateByRequest(nullptr) {} - ~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; - } - inline UpdateByRequest& operator=(UpdateByRequest&& 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 UpdateByRequest& default_instance() { - return *internal_default_instance(); - } - 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); } - 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 - if (GetArena() == other->GetArena()) { -#endif // !PROTOBUF_FORCE_COPY_IN_SWAP - InternalSwap(other); - } else { - ::google::protobuf::internal::GenericSwap(this, other); - } - } - void UnsafeArenaSwap(UpdateByRequest* other) { - if (other == this) return; - ABSL_DCHECK(GetArena() == other->GetArena()); - InternalSwap(other); - } - - // implements Message ---------------------------------------------- - - 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); } - - private: - static void MergeImpl( - ::google::protobuf::MessageLite& to_msg, - const ::google::protobuf::MessageLite& from_msg); - - 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; - #endif // PROTOBUF_CUSTOM_VTABLE - int GetCachedSize() const { return _impl_._cached_size_.Get(); } - - private: - void SharedCtor(::google::protobuf::Arena* arena); - void SharedDtor(); - void InternalSwap(UpdateByRequest* other); - private: - friend class ::google::protobuf::internal::AnyMetadata; - 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); - 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, - kResultIdFieldNumber = 1, - kSourceIdFieldNumber = 2, - kOptionsFieldNumber = 3, - }; - // repeated .io.deephaven.proto.backplane.grpc.UpdateByRequest.UpdateByOperation operations = 4; - int operations_size() const; - private: - int _internal_operations_size() const; - - 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(); - - 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; - // repeated string group_by_columns = 5; - int group_by_columns_size() const; - private: - int _internal_group_by_columns_size() const; - - public: - void clear_group_by_columns() ; - const std::string& group_by_columns(int index) const; - std::string* mutable_group_by_columns(int index); - template - void set_group_by_columns(int index, Arg_&& value, Args_... args); - std::string* add_group_by_columns(); - 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(); - - private: - const ::google::protobuf::RepeatedPtrField& _internal_group_by_columns() const; - ::google::protobuf::RepeatedPtrField* _internal_mutable_group_by_columns(); - - public: - // .io.deephaven.proto.backplane.grpc.Ticket result_id = 1; - bool has_result_id() const; - void clear_result_id() ; - const ::io::deephaven::proto::backplane::grpc::Ticket& result_id() const; - PROTOBUF_NODISCARD ::io::deephaven::proto::backplane::grpc::Ticket* release_result_id(); - ::io::deephaven::proto::backplane::grpc::Ticket* mutable_result_id(); - void set_allocated_result_id(::io::deephaven::proto::backplane::grpc::Ticket* value); - void unsafe_arena_set_allocated_result_id(::io::deephaven::proto::backplane::grpc::Ticket* value); - ::io::deephaven::proto::backplane::grpc::Ticket* unsafe_arena_release_result_id(); - - private: - const ::io::deephaven::proto::backplane::grpc::Ticket& _internal_result_id() const; - ::io::deephaven::proto::backplane::grpc::Ticket* _internal_mutable_result_id(); - - public: - // .io.deephaven.proto.backplane.grpc.TableReference source_id = 2; - bool has_source_id() const; - void clear_source_id() ; - const ::io::deephaven::proto::backplane::grpc::TableReference& source_id() const; - PROTOBUF_NODISCARD ::io::deephaven::proto::backplane::grpc::TableReference* release_source_id(); - ::io::deephaven::proto::backplane::grpc::TableReference* mutable_source_id(); - void set_allocated_source_id(::io::deephaven::proto::backplane::grpc::TableReference* value); - void unsafe_arena_set_allocated_source_id(::io::deephaven::proto::backplane::grpc::TableReference* value); - ::io::deephaven::proto::backplane::grpc::TableReference* unsafe_arena_release_source_id(); - - private: - const ::io::deephaven::proto::backplane::grpc::TableReference& _internal_source_id() const; - ::io::deephaven::proto::backplane::grpc::TableReference* _internal_mutable_source_id(); - - public: - // .io.deephaven.proto.backplane.grpc.UpdateByRequest.UpdateByOptions options = 3; - bool has_options() const; - void clear_options() ; - const ::io::deephaven::proto::backplane::grpc::UpdateByRequest_UpdateByOptions& options() const; - PROTOBUF_NODISCARD ::io::deephaven::proto::backplane::grpc::UpdateByRequest_UpdateByOptions* release_options(); - ::io::deephaven::proto::backplane::grpc::UpdateByRequest_UpdateByOptions* mutable_options(); - void set_allocated_options(::io::deephaven::proto::backplane::grpc::UpdateByRequest_UpdateByOptions* value); - void unsafe_arena_set_allocated_options(::io::deephaven::proto::backplane::grpc::UpdateByRequest_UpdateByOptions* value); - ::io::deephaven::proto::backplane::grpc::UpdateByRequest_UpdateByOptions* unsafe_arena_release_options(); - - private: - const ::io::deephaven::proto::backplane::grpc::UpdateByRequest_UpdateByOptions& _internal_options() const; - ::io::deephaven::proto::backplane::grpc::UpdateByRequest_UpdateByOptions* _internal_mutable_options(); - - public: - // @@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 - 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 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_; - ::google::protobuf::RepeatedPtrField group_by_columns_; - ::io::deephaven::proto::backplane::grpc::Ticket* result_id_; - ::io::deephaven::proto::backplane::grpc::TableReference* source_id_; - ::io::deephaven::proto::backplane::grpc::UpdateByRequest_UpdateByOptions* options_; - PROTOBUF_TSAN_DECLARE_MEMBER - }; - 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) */ { - public: - inline BatchTableRequest_Operation() : BatchTableRequest_Operation(nullptr) {} - ~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; - } - inline BatchTableRequest_Operation& operator=(BatchTableRequest_Operation&& 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 BatchTableRequest_Operation& default_instance() { - return *internal_default_instance(); - } - enum OpCase { - kEmptyTable = 1, - kTimeTable = 2, - kDropColumns = 3, - kUpdate = 4, - kLazyUpdate = 5, - kView = 6, - kUpdateView = 7, - kSelect = 8, - kSelectDistinct = 9, - kFilter = 10, - kUnstructuredFilter = 11, - kSort = 12, - kHead = 13, - kTail = 14, - kHeadBy = 15, - kTailBy = 16, - kUngroup = 17, - kMerge = 18, - kComboAggregate = 19, - kFlatten = 21, - kRunChartDownsample = 22, - kCrossJoin = 23, - kNaturalJoin = 24, - kExactJoin = 25, - kLeftJoin = 26, - kAsOfJoin = 27, - kFetchTable = 28, - kApplyPreviewColumns = 30, - kCreateInputTable = 31, - kUpdateBy = 32, - kWhereIn = 33, - kAggregateAll = 34, - kAggregate = 35, - kSnapshot = 36, - kSnapshotWhen = 37, - kMetaTable = 38, - kRangeJoin = 39, - kAj = 40, - kRaj = 41, - kColumnStatistics = 42, - 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); } - 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 - if (GetArena() == other->GetArena()) { -#endif // !PROTOBUF_FORCE_COPY_IN_SWAP - InternalSwap(other); - } else { - ::google::protobuf::internal::GenericSwap(this, other); - } - } - void UnsafeArenaSwap(BatchTableRequest_Operation* other) { - if (other == this) return; - ABSL_DCHECK(GetArena() == other->GetArena()); - InternalSwap(other); - } - - // implements Message ---------------------------------------------- - - 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); } - - private: - static void MergeImpl( - ::google::protobuf::MessageLite& to_msg, - const ::google::protobuf::MessageLite& from_msg); - - 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; - #endif // PROTOBUF_CUSTOM_VTABLE - int GetCachedSize() const { return _impl_._cached_size_.Get(); } - - private: - void SharedCtor(::google::protobuf::Arena* arena); - void SharedDtor(); - void InternalSwap(BatchTableRequest_Operation* other); - private: - friend class ::google::protobuf::internal::AnyMetadata; - 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); - 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, - kDropColumnsFieldNumber = 3, - kUpdateFieldNumber = 4, - kLazyUpdateFieldNumber = 5, - kViewFieldNumber = 6, - kUpdateViewFieldNumber = 7, - kSelectFieldNumber = 8, - kSelectDistinctFieldNumber = 9, - kFilterFieldNumber = 10, - kUnstructuredFilterFieldNumber = 11, - kSortFieldNumber = 12, - kHeadFieldNumber = 13, - kTailFieldNumber = 14, - kHeadByFieldNumber = 15, - kTailByFieldNumber = 16, - kUngroupFieldNumber = 17, - kMergeFieldNumber = 18, - kComboAggregateFieldNumber = 19, - kFlattenFieldNumber = 21, - kRunChartDownsampleFieldNumber = 22, - kCrossJoinFieldNumber = 23, - kNaturalJoinFieldNumber = 24, - kExactJoinFieldNumber = 25, - kLeftJoinFieldNumber = 26, - kAsOfJoinFieldNumber = 27, - kFetchTableFieldNumber = 28, - kApplyPreviewColumnsFieldNumber = 30, - kCreateInputTableFieldNumber = 31, - kUpdateByFieldNumber = 32, - kWhereInFieldNumber = 33, - kAggregateAllFieldNumber = 34, - kAggregateFieldNumber = 35, - kSnapshotFieldNumber = 36, - kSnapshotWhenFieldNumber = 37, - kMetaTableFieldNumber = 38, - kRangeJoinFieldNumber = 39, - kAjFieldNumber = 40, - kRajFieldNumber = 41, - kColumnStatisticsFieldNumber = 42, - kMultiJoinFieldNumber = 43, - }; - // .io.deephaven.proto.backplane.grpc.EmptyTableRequest empty_table = 1; - bool has_empty_table() const; - private: - bool _internal_has_empty_table() const; - - public: - void clear_empty_table() ; - const ::io::deephaven::proto::backplane::grpc::EmptyTableRequest& empty_table() const; - PROTOBUF_NODISCARD ::io::deephaven::proto::backplane::grpc::EmptyTableRequest* release_empty_table(); - ::io::deephaven::proto::backplane::grpc::EmptyTableRequest* mutable_empty_table(); - void set_allocated_empty_table(::io::deephaven::proto::backplane::grpc::EmptyTableRequest* value); - void unsafe_arena_set_allocated_empty_table(::io::deephaven::proto::backplane::grpc::EmptyTableRequest* value); - ::io::deephaven::proto::backplane::grpc::EmptyTableRequest* unsafe_arena_release_empty_table(); - - private: - const ::io::deephaven::proto::backplane::grpc::EmptyTableRequest& _internal_empty_table() const; - ::io::deephaven::proto::backplane::grpc::EmptyTableRequest* _internal_mutable_empty_table(); - - public: - // .io.deephaven.proto.backplane.grpc.TimeTableRequest time_table = 2; - bool has_time_table() const; - private: - bool _internal_has_time_table() const; - - public: - void clear_time_table() ; - const ::io::deephaven::proto::backplane::grpc::TimeTableRequest& time_table() const; - PROTOBUF_NODISCARD ::io::deephaven::proto::backplane::grpc::TimeTableRequest* release_time_table(); - ::io::deephaven::proto::backplane::grpc::TimeTableRequest* mutable_time_table(); - void set_allocated_time_table(::io::deephaven::proto::backplane::grpc::TimeTableRequest* value); - void unsafe_arena_set_allocated_time_table(::io::deephaven::proto::backplane::grpc::TimeTableRequest* value); - ::io::deephaven::proto::backplane::grpc::TimeTableRequest* unsafe_arena_release_time_table(); - - private: - const ::io::deephaven::proto::backplane::grpc::TimeTableRequest& _internal_time_table() const; - ::io::deephaven::proto::backplane::grpc::TimeTableRequest* _internal_mutable_time_table(); - - public: - // .io.deephaven.proto.backplane.grpc.DropColumnsRequest drop_columns = 3; - bool has_drop_columns() const; - private: - bool _internal_has_drop_columns() const; - - public: - void clear_drop_columns() ; - const ::io::deephaven::proto::backplane::grpc::DropColumnsRequest& drop_columns() const; - PROTOBUF_NODISCARD ::io::deephaven::proto::backplane::grpc::DropColumnsRequest* release_drop_columns(); - ::io::deephaven::proto::backplane::grpc::DropColumnsRequest* mutable_drop_columns(); - void set_allocated_drop_columns(::io::deephaven::proto::backplane::grpc::DropColumnsRequest* value); - void unsafe_arena_set_allocated_drop_columns(::io::deephaven::proto::backplane::grpc::DropColumnsRequest* value); - ::io::deephaven::proto::backplane::grpc::DropColumnsRequest* unsafe_arena_release_drop_columns(); - - private: - const ::io::deephaven::proto::backplane::grpc::DropColumnsRequest& _internal_drop_columns() const; - ::io::deephaven::proto::backplane::grpc::DropColumnsRequest* _internal_mutable_drop_columns(); - - public: - // .io.deephaven.proto.backplane.grpc.SelectOrUpdateRequest update = 4; - bool has_update() const; - private: - bool _internal_has_update() const; - - public: - void clear_update() ; - const ::io::deephaven::proto::backplane::grpc::SelectOrUpdateRequest& update() const; - PROTOBUF_NODISCARD ::io::deephaven::proto::backplane::grpc::SelectOrUpdateRequest* release_update(); - ::io::deephaven::proto::backplane::grpc::SelectOrUpdateRequest* mutable_update(); - void set_allocated_update(::io::deephaven::proto::backplane::grpc::SelectOrUpdateRequest* value); - void unsafe_arena_set_allocated_update(::io::deephaven::proto::backplane::grpc::SelectOrUpdateRequest* value); - ::io::deephaven::proto::backplane::grpc::SelectOrUpdateRequest* unsafe_arena_release_update(); - - private: - const ::io::deephaven::proto::backplane::grpc::SelectOrUpdateRequest& _internal_update() const; - ::io::deephaven::proto::backplane::grpc::SelectOrUpdateRequest* _internal_mutable_update(); - - public: - // .io.deephaven.proto.backplane.grpc.SelectOrUpdateRequest lazy_update = 5; - bool has_lazy_update() const; - private: - bool _internal_has_lazy_update() const; - - public: - void clear_lazy_update() ; - const ::io::deephaven::proto::backplane::grpc::SelectOrUpdateRequest& lazy_update() const; - PROTOBUF_NODISCARD ::io::deephaven::proto::backplane::grpc::SelectOrUpdateRequest* release_lazy_update(); - ::io::deephaven::proto::backplane::grpc::SelectOrUpdateRequest* mutable_lazy_update(); - void set_allocated_lazy_update(::io::deephaven::proto::backplane::grpc::SelectOrUpdateRequest* value); - void unsafe_arena_set_allocated_lazy_update(::io::deephaven::proto::backplane::grpc::SelectOrUpdateRequest* value); - ::io::deephaven::proto::backplane::grpc::SelectOrUpdateRequest* unsafe_arena_release_lazy_update(); - - private: - const ::io::deephaven::proto::backplane::grpc::SelectOrUpdateRequest& _internal_lazy_update() const; - ::io::deephaven::proto::backplane::grpc::SelectOrUpdateRequest* _internal_mutable_lazy_update(); - - public: - // .io.deephaven.proto.backplane.grpc.SelectOrUpdateRequest view = 6; - bool has_view() const; - private: - bool _internal_has_view() const; - - public: - void clear_view() ; - const ::io::deephaven::proto::backplane::grpc::SelectOrUpdateRequest& view() const; - PROTOBUF_NODISCARD ::io::deephaven::proto::backplane::grpc::SelectOrUpdateRequest* release_view(); - ::io::deephaven::proto::backplane::grpc::SelectOrUpdateRequest* mutable_view(); - void set_allocated_view(::io::deephaven::proto::backplane::grpc::SelectOrUpdateRequest* value); - void unsafe_arena_set_allocated_view(::io::deephaven::proto::backplane::grpc::SelectOrUpdateRequest* value); - ::io::deephaven::proto::backplane::grpc::SelectOrUpdateRequest* unsafe_arena_release_view(); - - private: - const ::io::deephaven::proto::backplane::grpc::SelectOrUpdateRequest& _internal_view() const; - ::io::deephaven::proto::backplane::grpc::SelectOrUpdateRequest* _internal_mutable_view(); - - public: - // .io.deephaven.proto.backplane.grpc.SelectOrUpdateRequest update_view = 7; - bool has_update_view() const; - private: - bool _internal_has_update_view() const; - - public: - void clear_update_view() ; - const ::io::deephaven::proto::backplane::grpc::SelectOrUpdateRequest& update_view() const; - PROTOBUF_NODISCARD ::io::deephaven::proto::backplane::grpc::SelectOrUpdateRequest* release_update_view(); - ::io::deephaven::proto::backplane::grpc::SelectOrUpdateRequest* mutable_update_view(); - void set_allocated_update_view(::io::deephaven::proto::backplane::grpc::SelectOrUpdateRequest* value); - void unsafe_arena_set_allocated_update_view(::io::deephaven::proto::backplane::grpc::SelectOrUpdateRequest* value); - ::io::deephaven::proto::backplane::grpc::SelectOrUpdateRequest* unsafe_arena_release_update_view(); - - private: - const ::io::deephaven::proto::backplane::grpc::SelectOrUpdateRequest& _internal_update_view() const; - ::io::deephaven::proto::backplane::grpc::SelectOrUpdateRequest* _internal_mutable_update_view(); - - public: - // .io.deephaven.proto.backplane.grpc.SelectOrUpdateRequest select = 8; - bool has_select() const; - private: - bool _internal_has_select() const; - - public: - void clear_select() ; - const ::io::deephaven::proto::backplane::grpc::SelectOrUpdateRequest& select() const; - PROTOBUF_NODISCARD ::io::deephaven::proto::backplane::grpc::SelectOrUpdateRequest* release_select(); - ::io::deephaven::proto::backplane::grpc::SelectOrUpdateRequest* mutable_select(); - void set_allocated_select(::io::deephaven::proto::backplane::grpc::SelectOrUpdateRequest* value); - void unsafe_arena_set_allocated_select(::io::deephaven::proto::backplane::grpc::SelectOrUpdateRequest* value); - ::io::deephaven::proto::backplane::grpc::SelectOrUpdateRequest* unsafe_arena_release_select(); - - private: - const ::io::deephaven::proto::backplane::grpc::SelectOrUpdateRequest& _internal_select() const; - ::io::deephaven::proto::backplane::grpc::SelectOrUpdateRequest* _internal_mutable_select(); - - public: - // .io.deephaven.proto.backplane.grpc.SelectDistinctRequest select_distinct = 9; - bool has_select_distinct() const; - private: - bool _internal_has_select_distinct() const; - - public: - void clear_select_distinct() ; - const ::io::deephaven::proto::backplane::grpc::SelectDistinctRequest& select_distinct() const; - PROTOBUF_NODISCARD ::io::deephaven::proto::backplane::grpc::SelectDistinctRequest* release_select_distinct(); - ::io::deephaven::proto::backplane::grpc::SelectDistinctRequest* mutable_select_distinct(); - void set_allocated_select_distinct(::io::deephaven::proto::backplane::grpc::SelectDistinctRequest* value); - void unsafe_arena_set_allocated_select_distinct(::io::deephaven::proto::backplane::grpc::SelectDistinctRequest* value); - ::io::deephaven::proto::backplane::grpc::SelectDistinctRequest* unsafe_arena_release_select_distinct(); - - private: - const ::io::deephaven::proto::backplane::grpc::SelectDistinctRequest& _internal_select_distinct() const; - ::io::deephaven::proto::backplane::grpc::SelectDistinctRequest* _internal_mutable_select_distinct(); - - public: - // .io.deephaven.proto.backplane.grpc.FilterTableRequest filter = 10; - bool has_filter() const; - private: - bool _internal_has_filter() const; - - public: - void clear_filter() ; - const ::io::deephaven::proto::backplane::grpc::FilterTableRequest& filter() const; - PROTOBUF_NODISCARD ::io::deephaven::proto::backplane::grpc::FilterTableRequest* release_filter(); - ::io::deephaven::proto::backplane::grpc::FilterTableRequest* mutable_filter(); - void set_allocated_filter(::io::deephaven::proto::backplane::grpc::FilterTableRequest* value); - void unsafe_arena_set_allocated_filter(::io::deephaven::proto::backplane::grpc::FilterTableRequest* value); - ::io::deephaven::proto::backplane::grpc::FilterTableRequest* unsafe_arena_release_filter(); - - private: - const ::io::deephaven::proto::backplane::grpc::FilterTableRequest& _internal_filter() const; - ::io::deephaven::proto::backplane::grpc::FilterTableRequest* _internal_mutable_filter(); - - public: - // .io.deephaven.proto.backplane.grpc.UnstructuredFilterTableRequest unstructured_filter = 11; - bool has_unstructured_filter() const; - private: - bool _internal_has_unstructured_filter() const; - - public: - void clear_unstructured_filter() ; - const ::io::deephaven::proto::backplane::grpc::UnstructuredFilterTableRequest& unstructured_filter() const; - PROTOBUF_NODISCARD ::io::deephaven::proto::backplane::grpc::UnstructuredFilterTableRequest* release_unstructured_filter(); - ::io::deephaven::proto::backplane::grpc::UnstructuredFilterTableRequest* mutable_unstructured_filter(); - void set_allocated_unstructured_filter(::io::deephaven::proto::backplane::grpc::UnstructuredFilterTableRequest* value); - void unsafe_arena_set_allocated_unstructured_filter(::io::deephaven::proto::backplane::grpc::UnstructuredFilterTableRequest* value); - ::io::deephaven::proto::backplane::grpc::UnstructuredFilterTableRequest* unsafe_arena_release_unstructured_filter(); - - private: - const ::io::deephaven::proto::backplane::grpc::UnstructuredFilterTableRequest& _internal_unstructured_filter() const; - ::io::deephaven::proto::backplane::grpc::UnstructuredFilterTableRequest* _internal_mutable_unstructured_filter(); - - public: - // .io.deephaven.proto.backplane.grpc.SortTableRequest sort = 12; - bool has_sort() const; - private: - bool _internal_has_sort() const; - - public: - void clear_sort() ; - const ::io::deephaven::proto::backplane::grpc::SortTableRequest& sort() const; - PROTOBUF_NODISCARD ::io::deephaven::proto::backplane::grpc::SortTableRequest* release_sort(); - ::io::deephaven::proto::backplane::grpc::SortTableRequest* mutable_sort(); - void set_allocated_sort(::io::deephaven::proto::backplane::grpc::SortTableRequest* value); - void unsafe_arena_set_allocated_sort(::io::deephaven::proto::backplane::grpc::SortTableRequest* value); - ::io::deephaven::proto::backplane::grpc::SortTableRequest* unsafe_arena_release_sort(); - - private: - const ::io::deephaven::proto::backplane::grpc::SortTableRequest& _internal_sort() const; - ::io::deephaven::proto::backplane::grpc::SortTableRequest* _internal_mutable_sort(); - - public: - // .io.deephaven.proto.backplane.grpc.HeadOrTailRequest head = 13; - bool has_head() const; - private: - bool _internal_has_head() const; - - public: - void clear_head() ; - const ::io::deephaven::proto::backplane::grpc::HeadOrTailRequest& head() const; - PROTOBUF_NODISCARD ::io::deephaven::proto::backplane::grpc::HeadOrTailRequest* release_head(); - ::io::deephaven::proto::backplane::grpc::HeadOrTailRequest* mutable_head(); - void set_allocated_head(::io::deephaven::proto::backplane::grpc::HeadOrTailRequest* value); - void unsafe_arena_set_allocated_head(::io::deephaven::proto::backplane::grpc::HeadOrTailRequest* value); - ::io::deephaven::proto::backplane::grpc::HeadOrTailRequest* unsafe_arena_release_head(); - - private: - const ::io::deephaven::proto::backplane::grpc::HeadOrTailRequest& _internal_head() const; - ::io::deephaven::proto::backplane::grpc::HeadOrTailRequest* _internal_mutable_head(); - - public: - // .io.deephaven.proto.backplane.grpc.HeadOrTailRequest tail = 14; - bool has_tail() const; - private: - bool _internal_has_tail() const; - - public: - void clear_tail() ; - const ::io::deephaven::proto::backplane::grpc::HeadOrTailRequest& tail() const; - PROTOBUF_NODISCARD ::io::deephaven::proto::backplane::grpc::HeadOrTailRequest* release_tail(); - ::io::deephaven::proto::backplane::grpc::HeadOrTailRequest* mutable_tail(); - void set_allocated_tail(::io::deephaven::proto::backplane::grpc::HeadOrTailRequest* value); - void unsafe_arena_set_allocated_tail(::io::deephaven::proto::backplane::grpc::HeadOrTailRequest* value); - ::io::deephaven::proto::backplane::grpc::HeadOrTailRequest* unsafe_arena_release_tail(); - - private: - const ::io::deephaven::proto::backplane::grpc::HeadOrTailRequest& _internal_tail() const; - ::io::deephaven::proto::backplane::grpc::HeadOrTailRequest* _internal_mutable_tail(); - - public: - // .io.deephaven.proto.backplane.grpc.HeadOrTailByRequest head_by = 15; - bool has_head_by() const; - private: - bool _internal_has_head_by() const; - - public: - void clear_head_by() ; - const ::io::deephaven::proto::backplane::grpc::HeadOrTailByRequest& head_by() const; - PROTOBUF_NODISCARD ::io::deephaven::proto::backplane::grpc::HeadOrTailByRequest* release_head_by(); - ::io::deephaven::proto::backplane::grpc::HeadOrTailByRequest* mutable_head_by(); - void set_allocated_head_by(::io::deephaven::proto::backplane::grpc::HeadOrTailByRequest* value); - void unsafe_arena_set_allocated_head_by(::io::deephaven::proto::backplane::grpc::HeadOrTailByRequest* value); - ::io::deephaven::proto::backplane::grpc::HeadOrTailByRequest* unsafe_arena_release_head_by(); - - private: - const ::io::deephaven::proto::backplane::grpc::HeadOrTailByRequest& _internal_head_by() const; - ::io::deephaven::proto::backplane::grpc::HeadOrTailByRequest* _internal_mutable_head_by(); - - public: - // .io.deephaven.proto.backplane.grpc.HeadOrTailByRequest tail_by = 16; - bool has_tail_by() const; - private: - bool _internal_has_tail_by() const; - - public: - void clear_tail_by() ; - const ::io::deephaven::proto::backplane::grpc::HeadOrTailByRequest& tail_by() const; - PROTOBUF_NODISCARD ::io::deephaven::proto::backplane::grpc::HeadOrTailByRequest* release_tail_by(); - ::io::deephaven::proto::backplane::grpc::HeadOrTailByRequest* mutable_tail_by(); - void set_allocated_tail_by(::io::deephaven::proto::backplane::grpc::HeadOrTailByRequest* value); - void unsafe_arena_set_allocated_tail_by(::io::deephaven::proto::backplane::grpc::HeadOrTailByRequest* value); - ::io::deephaven::proto::backplane::grpc::HeadOrTailByRequest* unsafe_arena_release_tail_by(); - - private: - const ::io::deephaven::proto::backplane::grpc::HeadOrTailByRequest& _internal_tail_by() const; - ::io::deephaven::proto::backplane::grpc::HeadOrTailByRequest* _internal_mutable_tail_by(); - - public: - // .io.deephaven.proto.backplane.grpc.UngroupRequest ungroup = 17; - bool has_ungroup() const; - private: - bool _internal_has_ungroup() const; - - public: - void clear_ungroup() ; - const ::io::deephaven::proto::backplane::grpc::UngroupRequest& ungroup() const; - PROTOBUF_NODISCARD ::io::deephaven::proto::backplane::grpc::UngroupRequest* release_ungroup(); - ::io::deephaven::proto::backplane::grpc::UngroupRequest* mutable_ungroup(); - void set_allocated_ungroup(::io::deephaven::proto::backplane::grpc::UngroupRequest* value); - void unsafe_arena_set_allocated_ungroup(::io::deephaven::proto::backplane::grpc::UngroupRequest* value); - ::io::deephaven::proto::backplane::grpc::UngroupRequest* unsafe_arena_release_ungroup(); - - private: - const ::io::deephaven::proto::backplane::grpc::UngroupRequest& _internal_ungroup() const; - ::io::deephaven::proto::backplane::grpc::UngroupRequest* _internal_mutable_ungroup(); - - public: - // .io.deephaven.proto.backplane.grpc.MergeTablesRequest merge = 18; - bool has_merge() const; - private: - bool _internal_has_merge() const; - - public: - void clear_merge() ; - const ::io::deephaven::proto::backplane::grpc::MergeTablesRequest& merge() const; - PROTOBUF_NODISCARD ::io::deephaven::proto::backplane::grpc::MergeTablesRequest* release_merge(); - ::io::deephaven::proto::backplane::grpc::MergeTablesRequest* mutable_merge(); - void set_allocated_merge(::io::deephaven::proto::backplane::grpc::MergeTablesRequest* value); - void unsafe_arena_set_allocated_merge(::io::deephaven::proto::backplane::grpc::MergeTablesRequest* value); - ::io::deephaven::proto::backplane::grpc::MergeTablesRequest* unsafe_arena_release_merge(); - - private: - const ::io::deephaven::proto::backplane::grpc::MergeTablesRequest& _internal_merge() const; - ::io::deephaven::proto::backplane::grpc::MergeTablesRequest* _internal_mutable_merge(); - - public: - // .io.deephaven.proto.backplane.grpc.ComboAggregateRequest combo_aggregate = 19; - bool has_combo_aggregate() const; - private: - bool _internal_has_combo_aggregate() const; - - public: - void clear_combo_aggregate() ; - const ::io::deephaven::proto::backplane::grpc::ComboAggregateRequest& combo_aggregate() const; - PROTOBUF_NODISCARD ::io::deephaven::proto::backplane::grpc::ComboAggregateRequest* release_combo_aggregate(); - ::io::deephaven::proto::backplane::grpc::ComboAggregateRequest* mutable_combo_aggregate(); - void set_allocated_combo_aggregate(::io::deephaven::proto::backplane::grpc::ComboAggregateRequest* value); - void unsafe_arena_set_allocated_combo_aggregate(::io::deephaven::proto::backplane::grpc::ComboAggregateRequest* value); - ::io::deephaven::proto::backplane::grpc::ComboAggregateRequest* unsafe_arena_release_combo_aggregate(); - - private: - const ::io::deephaven::proto::backplane::grpc::ComboAggregateRequest& _internal_combo_aggregate() const; - ::io::deephaven::proto::backplane::grpc::ComboAggregateRequest* _internal_mutable_combo_aggregate(); - - public: - // .io.deephaven.proto.backplane.grpc.FlattenRequest flatten = 21; - bool has_flatten() const; - private: - bool _internal_has_flatten() const; - - public: - void clear_flatten() ; - const ::io::deephaven::proto::backplane::grpc::FlattenRequest& flatten() const; - PROTOBUF_NODISCARD ::io::deephaven::proto::backplane::grpc::FlattenRequest* release_flatten(); - ::io::deephaven::proto::backplane::grpc::FlattenRequest* mutable_flatten(); - void set_allocated_flatten(::io::deephaven::proto::backplane::grpc::FlattenRequest* value); - void unsafe_arena_set_allocated_flatten(::io::deephaven::proto::backplane::grpc::FlattenRequest* value); - ::io::deephaven::proto::backplane::grpc::FlattenRequest* unsafe_arena_release_flatten(); - - private: - const ::io::deephaven::proto::backplane::grpc::FlattenRequest& _internal_flatten() const; - ::io::deephaven::proto::backplane::grpc::FlattenRequest* _internal_mutable_flatten(); - - public: - // .io.deephaven.proto.backplane.grpc.RunChartDownsampleRequest run_chart_downsample = 22; - bool has_run_chart_downsample() const; - private: - bool _internal_has_run_chart_downsample() const; - - public: - void clear_run_chart_downsample() ; - const ::io::deephaven::proto::backplane::grpc::RunChartDownsampleRequest& run_chart_downsample() const; - PROTOBUF_NODISCARD ::io::deephaven::proto::backplane::grpc::RunChartDownsampleRequest* release_run_chart_downsample(); - ::io::deephaven::proto::backplane::grpc::RunChartDownsampleRequest* mutable_run_chart_downsample(); - void set_allocated_run_chart_downsample(::io::deephaven::proto::backplane::grpc::RunChartDownsampleRequest* value); - void unsafe_arena_set_allocated_run_chart_downsample(::io::deephaven::proto::backplane::grpc::RunChartDownsampleRequest* value); - ::io::deephaven::proto::backplane::grpc::RunChartDownsampleRequest* unsafe_arena_release_run_chart_downsample(); - - private: - const ::io::deephaven::proto::backplane::grpc::RunChartDownsampleRequest& _internal_run_chart_downsample() const; - ::io::deephaven::proto::backplane::grpc::RunChartDownsampleRequest* _internal_mutable_run_chart_downsample(); - - public: - // .io.deephaven.proto.backplane.grpc.CrossJoinTablesRequest cross_join = 23; - bool has_cross_join() const; - private: - bool _internal_has_cross_join() const; - - public: - void clear_cross_join() ; - const ::io::deephaven::proto::backplane::grpc::CrossJoinTablesRequest& cross_join() const; - PROTOBUF_NODISCARD ::io::deephaven::proto::backplane::grpc::CrossJoinTablesRequest* release_cross_join(); - ::io::deephaven::proto::backplane::grpc::CrossJoinTablesRequest* mutable_cross_join(); - void set_allocated_cross_join(::io::deephaven::proto::backplane::grpc::CrossJoinTablesRequest* value); - void unsafe_arena_set_allocated_cross_join(::io::deephaven::proto::backplane::grpc::CrossJoinTablesRequest* value); - ::io::deephaven::proto::backplane::grpc::CrossJoinTablesRequest* unsafe_arena_release_cross_join(); - - private: - const ::io::deephaven::proto::backplane::grpc::CrossJoinTablesRequest& _internal_cross_join() const; - ::io::deephaven::proto::backplane::grpc::CrossJoinTablesRequest* _internal_mutable_cross_join(); - - public: - // .io.deephaven.proto.backplane.grpc.NaturalJoinTablesRequest natural_join = 24; - bool has_natural_join() const; - private: - bool _internal_has_natural_join() const; - - public: - void clear_natural_join() ; - const ::io::deephaven::proto::backplane::grpc::NaturalJoinTablesRequest& natural_join() const; - PROTOBUF_NODISCARD ::io::deephaven::proto::backplane::grpc::NaturalJoinTablesRequest* release_natural_join(); - ::io::deephaven::proto::backplane::grpc::NaturalJoinTablesRequest* mutable_natural_join(); - void set_allocated_natural_join(::io::deephaven::proto::backplane::grpc::NaturalJoinTablesRequest* value); - void unsafe_arena_set_allocated_natural_join(::io::deephaven::proto::backplane::grpc::NaturalJoinTablesRequest* value); - ::io::deephaven::proto::backplane::grpc::NaturalJoinTablesRequest* unsafe_arena_release_natural_join(); - - private: - const ::io::deephaven::proto::backplane::grpc::NaturalJoinTablesRequest& _internal_natural_join() const; - ::io::deephaven::proto::backplane::grpc::NaturalJoinTablesRequest* _internal_mutable_natural_join(); - - public: - // .io.deephaven.proto.backplane.grpc.ExactJoinTablesRequest exact_join = 25; - bool has_exact_join() const; - private: - bool _internal_has_exact_join() const; - - public: - void clear_exact_join() ; - const ::io::deephaven::proto::backplane::grpc::ExactJoinTablesRequest& exact_join() const; - PROTOBUF_NODISCARD ::io::deephaven::proto::backplane::grpc::ExactJoinTablesRequest* release_exact_join(); - ::io::deephaven::proto::backplane::grpc::ExactJoinTablesRequest* mutable_exact_join(); - void set_allocated_exact_join(::io::deephaven::proto::backplane::grpc::ExactJoinTablesRequest* value); - void unsafe_arena_set_allocated_exact_join(::io::deephaven::proto::backplane::grpc::ExactJoinTablesRequest* value); - ::io::deephaven::proto::backplane::grpc::ExactJoinTablesRequest* unsafe_arena_release_exact_join(); - - private: - const ::io::deephaven::proto::backplane::grpc::ExactJoinTablesRequest& _internal_exact_join() const; - ::io::deephaven::proto::backplane::grpc::ExactJoinTablesRequest* _internal_mutable_exact_join(); - - public: - // .io.deephaven.proto.backplane.grpc.LeftJoinTablesRequest left_join = 26; - bool has_left_join() const; - private: - bool _internal_has_left_join() const; - - public: - void clear_left_join() ; - const ::io::deephaven::proto::backplane::grpc::LeftJoinTablesRequest& left_join() const; - PROTOBUF_NODISCARD ::io::deephaven::proto::backplane::grpc::LeftJoinTablesRequest* release_left_join(); - ::io::deephaven::proto::backplane::grpc::LeftJoinTablesRequest* mutable_left_join(); - void set_allocated_left_join(::io::deephaven::proto::backplane::grpc::LeftJoinTablesRequest* value); - void unsafe_arena_set_allocated_left_join(::io::deephaven::proto::backplane::grpc::LeftJoinTablesRequest* value); - ::io::deephaven::proto::backplane::grpc::LeftJoinTablesRequest* unsafe_arena_release_left_join(); - - private: - const ::io::deephaven::proto::backplane::grpc::LeftJoinTablesRequest& _internal_left_join() const; - ::io::deephaven::proto::backplane::grpc::LeftJoinTablesRequest* _internal_mutable_left_join(); - - public: - // .io.deephaven.proto.backplane.grpc.AsOfJoinTablesRequest as_of_join = 27 [deprecated = true]; - [[deprecated]] bool has_as_of_join() const; - private: - bool _internal_has_as_of_join() const; - - public: - [[deprecated]] void clear_as_of_join() ; - [[deprecated]] const ::io::deephaven::proto::backplane::grpc::AsOfJoinTablesRequest& as_of_join() const; - [[deprecated]] PROTOBUF_NODISCARD ::io::deephaven::proto::backplane::grpc::AsOfJoinTablesRequest* release_as_of_join(); - [[deprecated]] ::io::deephaven::proto::backplane::grpc::AsOfJoinTablesRequest* mutable_as_of_join(); - [[deprecated]] void set_allocated_as_of_join(::io::deephaven::proto::backplane::grpc::AsOfJoinTablesRequest* value); - [[deprecated]] void unsafe_arena_set_allocated_as_of_join(::io::deephaven::proto::backplane::grpc::AsOfJoinTablesRequest* value); - [[deprecated]] ::io::deephaven::proto::backplane::grpc::AsOfJoinTablesRequest* unsafe_arena_release_as_of_join(); - - private: - const ::io::deephaven::proto::backplane::grpc::AsOfJoinTablesRequest& _internal_as_of_join() const; - ::io::deephaven::proto::backplane::grpc::AsOfJoinTablesRequest* _internal_mutable_as_of_join(); - - public: - // .io.deephaven.proto.backplane.grpc.FetchTableRequest fetch_table = 28; - bool has_fetch_table() const; - private: - bool _internal_has_fetch_table() const; - - public: - void clear_fetch_table() ; - const ::io::deephaven::proto::backplane::grpc::FetchTableRequest& fetch_table() const; - PROTOBUF_NODISCARD ::io::deephaven::proto::backplane::grpc::FetchTableRequest* release_fetch_table(); - ::io::deephaven::proto::backplane::grpc::FetchTableRequest* mutable_fetch_table(); - void set_allocated_fetch_table(::io::deephaven::proto::backplane::grpc::FetchTableRequest* value); - void unsafe_arena_set_allocated_fetch_table(::io::deephaven::proto::backplane::grpc::FetchTableRequest* value); - ::io::deephaven::proto::backplane::grpc::FetchTableRequest* unsafe_arena_release_fetch_table(); - - private: - const ::io::deephaven::proto::backplane::grpc::FetchTableRequest& _internal_fetch_table() const; - ::io::deephaven::proto::backplane::grpc::FetchTableRequest* _internal_mutable_fetch_table(); - - public: - // .io.deephaven.proto.backplane.grpc.ApplyPreviewColumnsRequest apply_preview_columns = 30; - bool has_apply_preview_columns() const; - private: - bool _internal_has_apply_preview_columns() const; - - public: - void clear_apply_preview_columns() ; - const ::io::deephaven::proto::backplane::grpc::ApplyPreviewColumnsRequest& apply_preview_columns() const; - PROTOBUF_NODISCARD ::io::deephaven::proto::backplane::grpc::ApplyPreviewColumnsRequest* release_apply_preview_columns(); - ::io::deephaven::proto::backplane::grpc::ApplyPreviewColumnsRequest* mutable_apply_preview_columns(); - void set_allocated_apply_preview_columns(::io::deephaven::proto::backplane::grpc::ApplyPreviewColumnsRequest* value); - void unsafe_arena_set_allocated_apply_preview_columns(::io::deephaven::proto::backplane::grpc::ApplyPreviewColumnsRequest* value); - ::io::deephaven::proto::backplane::grpc::ApplyPreviewColumnsRequest* unsafe_arena_release_apply_preview_columns(); - - private: - const ::io::deephaven::proto::backplane::grpc::ApplyPreviewColumnsRequest& _internal_apply_preview_columns() const; - ::io::deephaven::proto::backplane::grpc::ApplyPreviewColumnsRequest* _internal_mutable_apply_preview_columns(); - - public: - // .io.deephaven.proto.backplane.grpc.CreateInputTableRequest create_input_table = 31; - bool has_create_input_table() const; - private: - bool _internal_has_create_input_table() const; - - public: - void clear_create_input_table() ; - const ::io::deephaven::proto::backplane::grpc::CreateInputTableRequest& create_input_table() const; - PROTOBUF_NODISCARD ::io::deephaven::proto::backplane::grpc::CreateInputTableRequest* release_create_input_table(); - ::io::deephaven::proto::backplane::grpc::CreateInputTableRequest* mutable_create_input_table(); - void set_allocated_create_input_table(::io::deephaven::proto::backplane::grpc::CreateInputTableRequest* value); - void unsafe_arena_set_allocated_create_input_table(::io::deephaven::proto::backplane::grpc::CreateInputTableRequest* value); - ::io::deephaven::proto::backplane::grpc::CreateInputTableRequest* unsafe_arena_release_create_input_table(); - - private: - const ::io::deephaven::proto::backplane::grpc::CreateInputTableRequest& _internal_create_input_table() const; - ::io::deephaven::proto::backplane::grpc::CreateInputTableRequest* _internal_mutable_create_input_table(); - - public: - // .io.deephaven.proto.backplane.grpc.UpdateByRequest update_by = 32; - bool has_update_by() const; - private: - bool _internal_has_update_by() const; - - public: - void clear_update_by() ; - const ::io::deephaven::proto::backplane::grpc::UpdateByRequest& update_by() const; - PROTOBUF_NODISCARD ::io::deephaven::proto::backplane::grpc::UpdateByRequest* release_update_by(); - ::io::deephaven::proto::backplane::grpc::UpdateByRequest* mutable_update_by(); - void set_allocated_update_by(::io::deephaven::proto::backplane::grpc::UpdateByRequest* value); - void unsafe_arena_set_allocated_update_by(::io::deephaven::proto::backplane::grpc::UpdateByRequest* value); - ::io::deephaven::proto::backplane::grpc::UpdateByRequest* unsafe_arena_release_update_by(); - - private: - const ::io::deephaven::proto::backplane::grpc::UpdateByRequest& _internal_update_by() const; - ::io::deephaven::proto::backplane::grpc::UpdateByRequest* _internal_mutable_update_by(); - - public: - // .io.deephaven.proto.backplane.grpc.WhereInRequest where_in = 33; - bool has_where_in() const; - private: - bool _internal_has_where_in() const; - - public: - void clear_where_in() ; - const ::io::deephaven::proto::backplane::grpc::WhereInRequest& where_in() const; - PROTOBUF_NODISCARD ::io::deephaven::proto::backplane::grpc::WhereInRequest* release_where_in(); - ::io::deephaven::proto::backplane::grpc::WhereInRequest* mutable_where_in(); - void set_allocated_where_in(::io::deephaven::proto::backplane::grpc::WhereInRequest* value); - void unsafe_arena_set_allocated_where_in(::io::deephaven::proto::backplane::grpc::WhereInRequest* value); - ::io::deephaven::proto::backplane::grpc::WhereInRequest* unsafe_arena_release_where_in(); - - private: - const ::io::deephaven::proto::backplane::grpc::WhereInRequest& _internal_where_in() const; - ::io::deephaven::proto::backplane::grpc::WhereInRequest* _internal_mutable_where_in(); - - public: - // .io.deephaven.proto.backplane.grpc.AggregateAllRequest aggregate_all = 34; - bool has_aggregate_all() const; - private: - bool _internal_has_aggregate_all() const; - - public: - void clear_aggregate_all() ; - const ::io::deephaven::proto::backplane::grpc::AggregateAllRequest& aggregate_all() const; - PROTOBUF_NODISCARD ::io::deephaven::proto::backplane::grpc::AggregateAllRequest* release_aggregate_all(); - ::io::deephaven::proto::backplane::grpc::AggregateAllRequest* mutable_aggregate_all(); - void set_allocated_aggregate_all(::io::deephaven::proto::backplane::grpc::AggregateAllRequest* value); - void unsafe_arena_set_allocated_aggregate_all(::io::deephaven::proto::backplane::grpc::AggregateAllRequest* value); - ::io::deephaven::proto::backplane::grpc::AggregateAllRequest* unsafe_arena_release_aggregate_all(); - - private: - const ::io::deephaven::proto::backplane::grpc::AggregateAllRequest& _internal_aggregate_all() const; - ::io::deephaven::proto::backplane::grpc::AggregateAllRequest* _internal_mutable_aggregate_all(); - - public: - // .io.deephaven.proto.backplane.grpc.AggregateRequest aggregate = 35; - bool has_aggregate() const; - private: - bool _internal_has_aggregate() const; - - public: - void clear_aggregate() ; - const ::io::deephaven::proto::backplane::grpc::AggregateRequest& aggregate() const; - PROTOBUF_NODISCARD ::io::deephaven::proto::backplane::grpc::AggregateRequest* release_aggregate(); - ::io::deephaven::proto::backplane::grpc::AggregateRequest* mutable_aggregate(); - void set_allocated_aggregate(::io::deephaven::proto::backplane::grpc::AggregateRequest* value); - void unsafe_arena_set_allocated_aggregate(::io::deephaven::proto::backplane::grpc::AggregateRequest* value); - ::io::deephaven::proto::backplane::grpc::AggregateRequest* unsafe_arena_release_aggregate(); - - private: - const ::io::deephaven::proto::backplane::grpc::AggregateRequest& _internal_aggregate() const; - ::io::deephaven::proto::backplane::grpc::AggregateRequest* _internal_mutable_aggregate(); - - public: - // .io.deephaven.proto.backplane.grpc.SnapshotTableRequest snapshot = 36; - bool has_snapshot() const; - private: - bool _internal_has_snapshot() const; - - public: - void clear_snapshot() ; - const ::io::deephaven::proto::backplane::grpc::SnapshotTableRequest& snapshot() const; - PROTOBUF_NODISCARD ::io::deephaven::proto::backplane::grpc::SnapshotTableRequest* release_snapshot(); - ::io::deephaven::proto::backplane::grpc::SnapshotTableRequest* mutable_snapshot(); - void set_allocated_snapshot(::io::deephaven::proto::backplane::grpc::SnapshotTableRequest* value); - void unsafe_arena_set_allocated_snapshot(::io::deephaven::proto::backplane::grpc::SnapshotTableRequest* value); - ::io::deephaven::proto::backplane::grpc::SnapshotTableRequest* unsafe_arena_release_snapshot(); - - private: - const ::io::deephaven::proto::backplane::grpc::SnapshotTableRequest& _internal_snapshot() const; - ::io::deephaven::proto::backplane::grpc::SnapshotTableRequest* _internal_mutable_snapshot(); - - public: - // .io.deephaven.proto.backplane.grpc.SnapshotWhenTableRequest snapshot_when = 37; - bool has_snapshot_when() const; - private: - bool _internal_has_snapshot_when() const; - - public: - void clear_snapshot_when() ; - const ::io::deephaven::proto::backplane::grpc::SnapshotWhenTableRequest& snapshot_when() const; - PROTOBUF_NODISCARD ::io::deephaven::proto::backplane::grpc::SnapshotWhenTableRequest* release_snapshot_when(); - ::io::deephaven::proto::backplane::grpc::SnapshotWhenTableRequest* mutable_snapshot_when(); - void set_allocated_snapshot_when(::io::deephaven::proto::backplane::grpc::SnapshotWhenTableRequest* value); - void unsafe_arena_set_allocated_snapshot_when(::io::deephaven::proto::backplane::grpc::SnapshotWhenTableRequest* value); - ::io::deephaven::proto::backplane::grpc::SnapshotWhenTableRequest* unsafe_arena_release_snapshot_when(); - - private: - const ::io::deephaven::proto::backplane::grpc::SnapshotWhenTableRequest& _internal_snapshot_when() const; - ::io::deephaven::proto::backplane::grpc::SnapshotWhenTableRequest* _internal_mutable_snapshot_when(); - - public: - // .io.deephaven.proto.backplane.grpc.MetaTableRequest meta_table = 38; - bool has_meta_table() const; - private: - bool _internal_has_meta_table() const; - - public: - void clear_meta_table() ; - const ::io::deephaven::proto::backplane::grpc::MetaTableRequest& meta_table() const; - PROTOBUF_NODISCARD ::io::deephaven::proto::backplane::grpc::MetaTableRequest* release_meta_table(); - ::io::deephaven::proto::backplane::grpc::MetaTableRequest* mutable_meta_table(); - void set_allocated_meta_table(::io::deephaven::proto::backplane::grpc::MetaTableRequest* value); - void unsafe_arena_set_allocated_meta_table(::io::deephaven::proto::backplane::grpc::MetaTableRequest* value); - ::io::deephaven::proto::backplane::grpc::MetaTableRequest* unsafe_arena_release_meta_table(); - - private: - const ::io::deephaven::proto::backplane::grpc::MetaTableRequest& _internal_meta_table() const; - ::io::deephaven::proto::backplane::grpc::MetaTableRequest* _internal_mutable_meta_table(); - - public: - // .io.deephaven.proto.backplane.grpc.RangeJoinTablesRequest range_join = 39; - bool has_range_join() const; - private: - bool _internal_has_range_join() const; - - public: - void clear_range_join() ; - const ::io::deephaven::proto::backplane::grpc::RangeJoinTablesRequest& range_join() const; - PROTOBUF_NODISCARD ::io::deephaven::proto::backplane::grpc::RangeJoinTablesRequest* release_range_join(); - ::io::deephaven::proto::backplane::grpc::RangeJoinTablesRequest* mutable_range_join(); - void set_allocated_range_join(::io::deephaven::proto::backplane::grpc::RangeJoinTablesRequest* value); - void unsafe_arena_set_allocated_range_join(::io::deephaven::proto::backplane::grpc::RangeJoinTablesRequest* value); - ::io::deephaven::proto::backplane::grpc::RangeJoinTablesRequest* unsafe_arena_release_range_join(); - - private: - const ::io::deephaven::proto::backplane::grpc::RangeJoinTablesRequest& _internal_range_join() const; - ::io::deephaven::proto::backplane::grpc::RangeJoinTablesRequest* _internal_mutable_range_join(); - - public: - // .io.deephaven.proto.backplane.grpc.AjRajTablesRequest aj = 40; - bool has_aj() const; - private: - bool _internal_has_aj() const; - - public: - void clear_aj() ; - const ::io::deephaven::proto::backplane::grpc::AjRajTablesRequest& aj() const; - PROTOBUF_NODISCARD ::io::deephaven::proto::backplane::grpc::AjRajTablesRequest* release_aj(); - ::io::deephaven::proto::backplane::grpc::AjRajTablesRequest* mutable_aj(); - void set_allocated_aj(::io::deephaven::proto::backplane::grpc::AjRajTablesRequest* value); - void unsafe_arena_set_allocated_aj(::io::deephaven::proto::backplane::grpc::AjRajTablesRequest* value); - ::io::deephaven::proto::backplane::grpc::AjRajTablesRequest* unsafe_arena_release_aj(); - - private: - const ::io::deephaven::proto::backplane::grpc::AjRajTablesRequest& _internal_aj() const; - ::io::deephaven::proto::backplane::grpc::AjRajTablesRequest* _internal_mutable_aj(); - - public: - // .io.deephaven.proto.backplane.grpc.AjRajTablesRequest raj = 41; - bool has_raj() const; - private: - bool _internal_has_raj() const; - - public: - void clear_raj() ; - const ::io::deephaven::proto::backplane::grpc::AjRajTablesRequest& raj() const; - PROTOBUF_NODISCARD ::io::deephaven::proto::backplane::grpc::AjRajTablesRequest* release_raj(); - ::io::deephaven::proto::backplane::grpc::AjRajTablesRequest* mutable_raj(); - void set_allocated_raj(::io::deephaven::proto::backplane::grpc::AjRajTablesRequest* value); - void unsafe_arena_set_allocated_raj(::io::deephaven::proto::backplane::grpc::AjRajTablesRequest* value); - ::io::deephaven::proto::backplane::grpc::AjRajTablesRequest* unsafe_arena_release_raj(); - - private: - const ::io::deephaven::proto::backplane::grpc::AjRajTablesRequest& _internal_raj() const; - ::io::deephaven::proto::backplane::grpc::AjRajTablesRequest* _internal_mutable_raj(); - - public: - // .io.deephaven.proto.backplane.grpc.ColumnStatisticsRequest column_statistics = 42; - bool has_column_statistics() const; - private: - bool _internal_has_column_statistics() const; - - public: - void clear_column_statistics() ; - const ::io::deephaven::proto::backplane::grpc::ColumnStatisticsRequest& column_statistics() const; - PROTOBUF_NODISCARD ::io::deephaven::proto::backplane::grpc::ColumnStatisticsRequest* release_column_statistics(); - ::io::deephaven::proto::backplane::grpc::ColumnStatisticsRequest* mutable_column_statistics(); - void set_allocated_column_statistics(::io::deephaven::proto::backplane::grpc::ColumnStatisticsRequest* value); - void unsafe_arena_set_allocated_column_statistics(::io::deephaven::proto::backplane::grpc::ColumnStatisticsRequest* value); - ::io::deephaven::proto::backplane::grpc::ColumnStatisticsRequest* unsafe_arena_release_column_statistics(); - - private: - const ::io::deephaven::proto::backplane::grpc::ColumnStatisticsRequest& _internal_column_statistics() const; - ::io::deephaven::proto::backplane::grpc::ColumnStatisticsRequest* _internal_mutable_column_statistics(); - - public: - // .io.deephaven.proto.backplane.grpc.MultiJoinTablesRequest multi_join = 43; - bool has_multi_join() const; - private: - bool _internal_has_multi_join() const; - - public: - void clear_multi_join() ; - const ::io::deephaven::proto::backplane::grpc::MultiJoinTablesRequest& multi_join() const; - PROTOBUF_NODISCARD ::io::deephaven::proto::backplane::grpc::MultiJoinTablesRequest* release_multi_join(); - ::io::deephaven::proto::backplane::grpc::MultiJoinTablesRequest* mutable_multi_join(); - void set_allocated_multi_join(::io::deephaven::proto::backplane::grpc::MultiJoinTablesRequest* value); - void unsafe_arena_set_allocated_multi_join(::io::deephaven::proto::backplane::grpc::MultiJoinTablesRequest* value); - ::io::deephaven::proto::backplane::grpc::MultiJoinTablesRequest* unsafe_arena_release_multi_join(); - - private: - const ::io::deephaven::proto::backplane::grpc::MultiJoinTablesRequest& _internal_multi_join() const; - ::io::deephaven::proto::backplane::grpc::MultiJoinTablesRequest* _internal_mutable_multi_join(); - - public: - void clear_op(); - OpCase op_case() const; - // @@protoc_insertion_point(class_scope:io.deephaven.proto.backplane.grpc.BatchTableRequest.Operation) - private: - class _Internal; - void set_has_empty_table(); - void set_has_time_table(); - void set_has_drop_columns(); - void set_has_update(); - void set_has_lazy_update(); - void set_has_view(); - void set_has_update_view(); - void set_has_select(); - void set_has_select_distinct(); - void set_has_filter(); - void set_has_unstructured_filter(); - void set_has_sort(); - void set_has_head(); - void set_has_tail(); - void set_has_head_by(); - void set_has_tail_by(); - void set_has_ungroup(); - void set_has_merge(); - void set_has_combo_aggregate(); - void set_has_flatten(); - void set_has_run_chart_downsample(); - void set_has_cross_join(); - void set_has_natural_join(); - void set_has_exact_join(); - void set_has_left_join(); - void set_has_as_of_join(); - void set_has_fetch_table(); - void set_has_apply_preview_columns(); - void set_has_create_input_table(); - void set_has_update_by(); - void set_has_where_in(); - void set_has_aggregate_all(); - void set_has_aggregate(); - void set_has_snapshot(); - void set_has_snapshot_when(); - void set_has_meta_table(); - void set_has_range_join(); - void set_has_aj(); - 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 - 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 BatchTableRequest_Operation& from_msg); - union OpUnion { - constexpr OpUnion() : _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_; - ::io::deephaven::proto::backplane::grpc::SelectOrUpdateRequest* update_; - ::io::deephaven::proto::backplane::grpc::SelectOrUpdateRequest* lazy_update_; - ::io::deephaven::proto::backplane::grpc::SelectOrUpdateRequest* view_; - ::io::deephaven::proto::backplane::grpc::SelectOrUpdateRequest* update_view_; - ::io::deephaven::proto::backplane::grpc::SelectOrUpdateRequest* select_; - ::io::deephaven::proto::backplane::grpc::SelectDistinctRequest* select_distinct_; - ::io::deephaven::proto::backplane::grpc::FilterTableRequest* filter_; - ::io::deephaven::proto::backplane::grpc::UnstructuredFilterTableRequest* unstructured_filter_; - ::io::deephaven::proto::backplane::grpc::SortTableRequest* sort_; - ::io::deephaven::proto::backplane::grpc::HeadOrTailRequest* head_; - ::io::deephaven::proto::backplane::grpc::HeadOrTailRequest* tail_; - ::io::deephaven::proto::backplane::grpc::HeadOrTailByRequest* head_by_; - ::io::deephaven::proto::backplane::grpc::HeadOrTailByRequest* tail_by_; - ::io::deephaven::proto::backplane::grpc::UngroupRequest* ungroup_; - ::io::deephaven::proto::backplane::grpc::MergeTablesRequest* merge_; - ::io::deephaven::proto::backplane::grpc::ComboAggregateRequest* combo_aggregate_; - ::io::deephaven::proto::backplane::grpc::FlattenRequest* flatten_; - ::io::deephaven::proto::backplane::grpc::RunChartDownsampleRequest* run_chart_downsample_; - ::io::deephaven::proto::backplane::grpc::CrossJoinTablesRequest* cross_join_; - ::io::deephaven::proto::backplane::grpc::NaturalJoinTablesRequest* natural_join_; - ::io::deephaven::proto::backplane::grpc::ExactJoinTablesRequest* exact_join_; - ::io::deephaven::proto::backplane::grpc::LeftJoinTablesRequest* left_join_; - ::io::deephaven::proto::backplane::grpc::AsOfJoinTablesRequest* as_of_join_; - ::io::deephaven::proto::backplane::grpc::FetchTableRequest* fetch_table_; - ::io::deephaven::proto::backplane::grpc::ApplyPreviewColumnsRequest* apply_preview_columns_; - ::io::deephaven::proto::backplane::grpc::CreateInputTableRequest* create_input_table_; - ::io::deephaven::proto::backplane::grpc::UpdateByRequest* update_by_; - ::io::deephaven::proto::backplane::grpc::WhereInRequest* where_in_; - ::io::deephaven::proto::backplane::grpc::AggregateAllRequest* aggregate_all_; - ::io::deephaven::proto::backplane::grpc::AggregateRequest* aggregate_; - ::io::deephaven::proto::backplane::grpc::SnapshotTableRequest* snapshot_; - ::io::deephaven::proto::backplane::grpc::SnapshotWhenTableRequest* snapshot_when_; - ::io::deephaven::proto::backplane::grpc::MetaTableRequest* meta_table_; - ::io::deephaven::proto::backplane::grpc::RangeJoinTablesRequest* range_join_; - ::io::deephaven::proto::backplane::grpc::AjRajTablesRequest* aj_; - ::io::deephaven::proto::backplane::grpc::AjRajTablesRequest* raj_; - ::io::deephaven::proto::backplane::grpc::ColumnStatisticsRequest* column_statistics_; - ::io::deephaven::proto::backplane::grpc::MultiJoinTablesRequest* multi_join_; - } 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) */ { - public: - inline BatchTableRequest() : BatchTableRequest(nullptr) {} - ~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; - } - inline BatchTableRequest& operator=(BatchTableRequest&& 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 BatchTableRequest& default_instance() { - return *internal_default_instance(); - } - 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); } - 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 - if (GetArena() == other->GetArena()) { -#endif // !PROTOBUF_FORCE_COPY_IN_SWAP - InternalSwap(other); - } else { - ::google::protobuf::internal::GenericSwap(this, other); - } - } - void UnsafeArenaSwap(BatchTableRequest* other) { - if (other == this) return; - ABSL_DCHECK(GetArena() == other->GetArena()); - InternalSwap(other); - } - - // implements Message ---------------------------------------------- - - 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); } - - private: - static void MergeImpl( - ::google::protobuf::MessageLite& to_msg, - const ::google::protobuf::MessageLite& from_msg); - - 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; - #endif // PROTOBUF_CUSTOM_VTABLE - int GetCachedSize() const { return _impl_._cached_size_.Get(); } - - private: - void SharedCtor(::google::protobuf::Arena* arena); - void SharedDtor(); - void InternalSwap(BatchTableRequest* other); - private: - friend class ::google::protobuf::internal::AnyMetadata; - 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); - 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, - }; - // repeated .io.deephaven.proto.backplane.grpc.BatchTableRequest.Operation ops = 1; - int ops_size() const; - private: - int _internal_ops_size() const; - - 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(); - - 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; - // @@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 - 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 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 - }; - union { Impl_ _impl_; }; - friend struct ::TableStruct_deephaven_2fproto_2ftable_2eproto; -}; - -// =================================================================== - - - - -// =================================================================== - - -#ifdef __GNUC__ -#pragma GCC diagnostic push -#pragma GCC diagnostic ignored "-Wstrict-aliasing" -#endif // __GNUC__ -// ------------------------------------------------------------------- - -// TableReference - -// .io.deephaven.proto.backplane.grpc.Ticket ticket = 1; -inline bool TableReference::has_ticket() const { - return ref_case() == kTicket; -} -inline bool TableReference::_internal_has_ticket() const { - return ref_case() == kTicket; -} -inline void TableReference::set_has_ticket() { - _impl_._oneof_case_[0] = kTicket; -} -inline ::io::deephaven::proto::backplane::grpc::Ticket* TableReference::release_ticket() { - // @@protoc_insertion_point(field_release:io.deephaven.proto.backplane.grpc.TableReference.ticket) - if (ref_case() == kTicket) { - clear_has_ref(); - auto* temp = _impl_.ref_.ticket_; - if (GetArena() != nullptr) { - temp = ::google::protobuf::internal::DuplicateIfNonNull(temp); - } - _impl_.ref_.ticket_ = nullptr; - return temp; - } else { - return nullptr; - } -} -inline const ::io::deephaven::proto::backplane::grpc::Ticket& TableReference::_internal_ticket() const { - return ref_case() == kTicket ? *_impl_.ref_.ticket_ : reinterpret_cast<::io::deephaven::proto::backplane::grpc::Ticket&>(::io::deephaven::proto::backplane::grpc::_Ticket_default_instance_); -} -inline const ::io::deephaven::proto::backplane::grpc::Ticket& TableReference::ticket() const ABSL_ATTRIBUTE_LIFETIME_BOUND { - // @@protoc_insertion_point(field_get:io.deephaven.proto.backplane.grpc.TableReference.ticket) - return _internal_ticket(); -} -inline ::io::deephaven::proto::backplane::grpc::Ticket* TableReference::unsafe_arena_release_ticket() { - // @@protoc_insertion_point(field_unsafe_arena_release:io.deephaven.proto.backplane.grpc.TableReference.ticket) - if (ref_case() == kTicket) { - clear_has_ref(); - auto* temp = _impl_.ref_.ticket_; - _impl_.ref_.ticket_ = nullptr; - return temp; - } else { - return nullptr; - } -} -inline void TableReference::unsafe_arena_set_allocated_ticket(::io::deephaven::proto::backplane::grpc::Ticket* value) { - // We rely on the oneof clear method to free the earlier contents - // of this oneof. We can directly use the pointer we're given to - // set the new value. - clear_ref(); - if (value) { - set_has_ticket(); - _impl_.ref_.ticket_ = value; - } - // @@protoc_insertion_point(field_unsafe_arena_set_allocated:io.deephaven.proto.backplane.grpc.TableReference.ticket) -} -inline ::io::deephaven::proto::backplane::grpc::Ticket* TableReference::_internal_mutable_ticket() { - if (ref_case() != kTicket) { - clear_ref(); - set_has_ticket(); - _impl_.ref_.ticket_ = - ::google::protobuf::Message::DefaultConstruct<::io::deephaven::proto::backplane::grpc::Ticket>(GetArena()); - } - return _impl_.ref_.ticket_; -} -inline ::io::deephaven::proto::backplane::grpc::Ticket* TableReference::mutable_ticket() ABSL_ATTRIBUTE_LIFETIME_BOUND { - ::io::deephaven::proto::backplane::grpc::Ticket* _msg = _internal_mutable_ticket(); - // @@protoc_insertion_point(field_mutable:io.deephaven.proto.backplane.grpc.TableReference.ticket) - return _msg; -} - -// sint32 batch_offset = 2; -inline bool TableReference::has_batch_offset() const { - return ref_case() == kBatchOffset; -} -inline void TableReference::set_has_batch_offset() { - _impl_._oneof_case_[0] = kBatchOffset; -} -inline void TableReference::clear_batch_offset() { - ::google::protobuf::internal::TSanWrite(&_impl_); - if (ref_case() == kBatchOffset) { - _impl_.ref_.batch_offset_ = 0; - clear_has_ref(); - } -} -inline ::int32_t TableReference::batch_offset() const { - // @@protoc_insertion_point(field_get:io.deephaven.proto.backplane.grpc.TableReference.batch_offset) - return _internal_batch_offset(); -} -inline void TableReference::set_batch_offset(::int32_t 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 { - if (ref_case() == kBatchOffset) { - return _impl_.ref_.batch_offset_; - } - return 0; -} - -inline bool TableReference::has_ref() const { - return ref_case() != REF_NOT_SET; -} -inline void TableReference::clear_has_ref() { - _impl_._oneof_case_[0] = REF_NOT_SET; -} -inline TableReference::RefCase TableReference::ref_case() const { - return TableReference::RefCase(_impl_._oneof_case_[0]); -} -// ------------------------------------------------------------------- - -// ExportedTableCreationResponse - -// .io.deephaven.proto.backplane.grpc.TableReference result_id = 1; -inline bool ExportedTableCreationResponse::has_result_id() const { - bool value = (_impl_._has_bits_[0] & 0x00000001u) != 0; - PROTOBUF_ASSUME(!value || _impl_.result_id_ != nullptr); - return value; -} -inline void ExportedTableCreationResponse::clear_result_id() { - ::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 { - ::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_); -} -inline const ::io::deephaven::proto::backplane::grpc::TableReference& ExportedTableCreationResponse::result_id() const ABSL_ATTRIBUTE_LIFETIME_BOUND { - // @@protoc_insertion_point(field_get:io.deephaven.proto.backplane.grpc.ExportedTableCreationResponse.result_id) - return _internal_result_id(); -} -inline void ExportedTableCreationResponse::unsafe_arena_set_allocated_result_id(::io::deephaven::proto::backplane::grpc::TableReference* value) { - ::google::protobuf::internal::TSanWrite(&_impl_); - if (GetArena() == nullptr) { - delete reinterpret_cast<::google::protobuf::MessageLite*>(_impl_.result_id_); - } - _impl_.result_id_ = reinterpret_cast<::io::deephaven::proto::backplane::grpc::TableReference*>(value); - if (value != nullptr) { - _impl_._has_bits_[0] |= 0x00000001u; - } else { - _impl_._has_bits_[0] &= ~0x00000001u; - } - // @@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() { - ::google::protobuf::internal::TSanWrite(&_impl_); - - _impl_._has_bits_[0] &= ~0x00000001u; - ::io::deephaven::proto::backplane::grpc::TableReference* released = _impl_.result_id_; - _impl_.result_id_ = nullptr; -#ifdef PROTOBUF_FORCE_COPY_IN_RELEASE - auto* old = reinterpret_cast<::google::protobuf::MessageLite*>(released); - released = ::google::protobuf::internal::DuplicateIfNonNull(released); - if (GetArena() == nullptr) { - delete old; - } -#else // PROTOBUF_FORCE_COPY_IN_RELEASE - if (GetArena() != nullptr) { - released = ::google::protobuf::internal::DuplicateIfNonNull(released); - } -#endif // !PROTOBUF_FORCE_COPY_IN_RELEASE - return released; -} -inline ::io::deephaven::proto::backplane::grpc::TableReference* ExportedTableCreationResponse::unsafe_arena_release_result_id() { - ::google::protobuf::internal::TSanWrite(&_impl_); - // @@protoc_insertion_point(field_release:io.deephaven.proto.backplane.grpc.ExportedTableCreationResponse.result_id) - - _impl_._has_bits_[0] &= ~0x00000001u; - ::io::deephaven::proto::backplane::grpc::TableReference* temp = _impl_.result_id_; - _impl_.result_id_ = nullptr; - return temp; -} -inline ::io::deephaven::proto::backplane::grpc::TableReference* ExportedTableCreationResponse::_internal_mutable_result_id() { - ::google::protobuf::internal::TSanWrite(&_impl_); - if (_impl_.result_id_ == nullptr) { - 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(); - ::google::protobuf::internal::TSanWrite(&_impl_); - if (message_arena == nullptr) { - delete (_impl_.result_id_); - } - - if (value != nullptr) { - ::google::protobuf::Arena* submessage_arena = (value)->GetArena(); - if (message_arena != submessage_arena) { - value = ::google::protobuf::internal::GetOwnedMessage(message_arena, value, submessage_arena); - } - _impl_._has_bits_[0] |= 0x00000001u; - } else { - _impl_._has_bits_[0] &= ~0x00000001u; - } - - _impl_.result_id_ = reinterpret_cast<::io::deephaven::proto::backplane::grpc::TableReference*>(value); - // @@protoc_insertion_point(field_set_allocated:io.deephaven.proto.backplane.grpc.ExportedTableCreationResponse.result_id) -} - -// bool success = 2; -inline void ExportedTableCreationResponse::clear_success() { - ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.success_ = false; -} -inline bool ExportedTableCreationResponse::success() const { - // @@protoc_insertion_point(field_get:io.deephaven.proto.backplane.grpc.ExportedTableCreationResponse.success) - return _internal_success(); -} -inline void ExportedTableCreationResponse::set_success(bool value) { - _internal_set_success(value); - // @@protoc_insertion_point(field_set:io.deephaven.proto.backplane.grpc.ExportedTableCreationResponse.success) -} -inline bool ExportedTableCreationResponse::_internal_success() const { - ::google::protobuf::internal::TSanRead(&_impl_); - return _impl_.success_; -} -inline void ExportedTableCreationResponse::_internal_set_success(bool value) { - ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.success_ = value; -} - -// string error_info = 3; -inline void ExportedTableCreationResponse::clear_error_info() { - ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.error_info_.ClearToEmpty(); -} -inline const std::string& ExportedTableCreationResponse::error_info() const - ABSL_ATTRIBUTE_LIFETIME_BOUND { - // @@protoc_insertion_point(field_get:io.deephaven.proto.backplane.grpc.ExportedTableCreationResponse.error_info) - return _internal_error_info(); -} -template -inline PROTOBUF_ALWAYS_INLINE void ExportedTableCreationResponse::set_error_info(Arg_&& arg, - Args_... args) { - ::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) -} -inline std::string* ExportedTableCreationResponse::mutable_error_info() ABSL_ATTRIBUTE_LIFETIME_BOUND { - std::string* _s = _internal_mutable_error_info(); - // @@protoc_insertion_point(field_mutable:io.deephaven.proto.backplane.grpc.ExportedTableCreationResponse.error_info) - return _s; -} -inline const std::string& ExportedTableCreationResponse::_internal_error_info() const { - ::google::protobuf::internal::TSanRead(&_impl_); - return _impl_.error_info_.Get(); -} -inline void ExportedTableCreationResponse::_internal_set_error_info(const std::string& value) { - ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.error_info_.Set(value, GetArena()); -} -inline std::string* ExportedTableCreationResponse::_internal_mutable_error_info() { - ::google::protobuf::internal::TSanWrite(&_impl_); - return _impl_.error_info_.Mutable( GetArena()); -} -inline std::string* ExportedTableCreationResponse::release_error_info() { - ::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) { - ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.error_info_.SetAllocated(value, GetArena()); - #ifdef PROTOBUF_FORCE_COPY_DEFAULT_STRING - if (_impl_.error_info_.IsDefault()) { - _impl_.error_info_.Set("", GetArena()); - } - #endif // PROTOBUF_FORCE_COPY_DEFAULT_STRING - // @@protoc_insertion_point(field_set_allocated:io.deephaven.proto.backplane.grpc.ExportedTableCreationResponse.error_info) -} - -// bytes schema_header = 4; -inline void ExportedTableCreationResponse::clear_schema_header() { - ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.schema_header_.ClearToEmpty(); -} -inline const std::string& ExportedTableCreationResponse::schema_header() const - ABSL_ATTRIBUTE_LIFETIME_BOUND { - // @@protoc_insertion_point(field_get:io.deephaven.proto.backplane.grpc.ExportedTableCreationResponse.schema_header) - return _internal_schema_header(); -} -template -inline PROTOBUF_ALWAYS_INLINE void ExportedTableCreationResponse::set_schema_header(Arg_&& arg, - Args_... args) { - ::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) -} -inline std::string* ExportedTableCreationResponse::mutable_schema_header() ABSL_ATTRIBUTE_LIFETIME_BOUND { - std::string* _s = _internal_mutable_schema_header(); - // @@protoc_insertion_point(field_mutable:io.deephaven.proto.backplane.grpc.ExportedTableCreationResponse.schema_header) - return _s; -} -inline const std::string& ExportedTableCreationResponse::_internal_schema_header() const { - ::google::protobuf::internal::TSanRead(&_impl_); - return _impl_.schema_header_.Get(); -} -inline void ExportedTableCreationResponse::_internal_set_schema_header(const std::string& value) { - ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.schema_header_.Set(value, GetArena()); -} -inline std::string* ExportedTableCreationResponse::_internal_mutable_schema_header() { - ::google::protobuf::internal::TSanWrite(&_impl_); - return _impl_.schema_header_.Mutable( GetArena()); -} -inline std::string* ExportedTableCreationResponse::release_schema_header() { - ::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) { - ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.schema_header_.SetAllocated(value, GetArena()); - #ifdef PROTOBUF_FORCE_COPY_DEFAULT_STRING - if (_impl_.schema_header_.IsDefault()) { - _impl_.schema_header_.Set("", GetArena()); - } - #endif // PROTOBUF_FORCE_COPY_DEFAULT_STRING - // @@protoc_insertion_point(field_set_allocated:io.deephaven.proto.backplane.grpc.ExportedTableCreationResponse.schema_header) -} - -// bool is_static = 5; -inline void ExportedTableCreationResponse::clear_is_static() { - ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.is_static_ = false; -} -inline bool ExportedTableCreationResponse::is_static() const { - // @@protoc_insertion_point(field_get:io.deephaven.proto.backplane.grpc.ExportedTableCreationResponse.is_static) - return _internal_is_static(); -} -inline void ExportedTableCreationResponse::set_is_static(bool value) { - _internal_set_is_static(value); - // @@protoc_insertion_point(field_set:io.deephaven.proto.backplane.grpc.ExportedTableCreationResponse.is_static) -} -inline bool ExportedTableCreationResponse::_internal_is_static() const { - ::google::protobuf::internal::TSanRead(&_impl_); - return _impl_.is_static_; -} -inline void ExportedTableCreationResponse::_internal_set_is_static(bool value) { - ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.is_static_ = value; -} - -// sint64 size = 6 [jstype = JS_STRING]; -inline void ExportedTableCreationResponse::clear_size() { - ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.size_ = ::int64_t{0}; -} -inline ::int64_t ExportedTableCreationResponse::size() const { - // @@protoc_insertion_point(field_get:io.deephaven.proto.backplane.grpc.ExportedTableCreationResponse.size) - return _internal_size(); -} -inline void ExportedTableCreationResponse::set_size(::int64_t value) { - _internal_set_size(value); - // @@protoc_insertion_point(field_set:io.deephaven.proto.backplane.grpc.ExportedTableCreationResponse.size) -} -inline ::int64_t ExportedTableCreationResponse::_internal_size() const { - ::google::protobuf::internal::TSanRead(&_impl_); - return _impl_.size_; -} -inline void ExportedTableCreationResponse::_internal_set_size(::int64_t value) { - ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.size_ = value; -} - -// ------------------------------------------------------------------- - -// FetchTableRequest - -// .io.deephaven.proto.backplane.grpc.TableReference source_id = 1; -inline bool FetchTableRequest::has_source_id() const { - bool value = (_impl_._has_bits_[0] & 0x00000001u) != 0; - PROTOBUF_ASSUME(!value || _impl_.source_id_ != nullptr); - return value; -} -inline void FetchTableRequest::clear_source_id() { - ::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 { - ::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_); -} -inline const ::io::deephaven::proto::backplane::grpc::TableReference& FetchTableRequest::source_id() const ABSL_ATTRIBUTE_LIFETIME_BOUND { - // @@protoc_insertion_point(field_get:io.deephaven.proto.backplane.grpc.FetchTableRequest.source_id) - return _internal_source_id(); -} -inline void FetchTableRequest::unsafe_arena_set_allocated_source_id(::io::deephaven::proto::backplane::grpc::TableReference* value) { - ::google::protobuf::internal::TSanWrite(&_impl_); - if (GetArena() == nullptr) { - delete reinterpret_cast<::google::protobuf::MessageLite*>(_impl_.source_id_); - } - _impl_.source_id_ = reinterpret_cast<::io::deephaven::proto::backplane::grpc::TableReference*>(value); - if (value != nullptr) { - _impl_._has_bits_[0] |= 0x00000001u; - } else { - _impl_._has_bits_[0] &= ~0x00000001u; - } - // @@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() { - ::google::protobuf::internal::TSanWrite(&_impl_); - - _impl_._has_bits_[0] &= ~0x00000001u; - ::io::deephaven::proto::backplane::grpc::TableReference* released = _impl_.source_id_; - _impl_.source_id_ = nullptr; -#ifdef PROTOBUF_FORCE_COPY_IN_RELEASE - auto* old = reinterpret_cast<::google::protobuf::MessageLite*>(released); - released = ::google::protobuf::internal::DuplicateIfNonNull(released); - if (GetArena() == nullptr) { - delete old; - } -#else // PROTOBUF_FORCE_COPY_IN_RELEASE - if (GetArena() != nullptr) { - released = ::google::protobuf::internal::DuplicateIfNonNull(released); - } -#endif // !PROTOBUF_FORCE_COPY_IN_RELEASE - return released; -} -inline ::io::deephaven::proto::backplane::grpc::TableReference* FetchTableRequest::unsafe_arena_release_source_id() { - ::google::protobuf::internal::TSanWrite(&_impl_); - // @@protoc_insertion_point(field_release:io.deephaven.proto.backplane.grpc.FetchTableRequest.source_id) - - _impl_._has_bits_[0] &= ~0x00000001u; - ::io::deephaven::proto::backplane::grpc::TableReference* temp = _impl_.source_id_; - _impl_.source_id_ = nullptr; - return temp; -} -inline ::io::deephaven::proto::backplane::grpc::TableReference* FetchTableRequest::_internal_mutable_source_id() { - ::google::protobuf::internal::TSanWrite(&_impl_); - if (_impl_.source_id_ == nullptr) { - 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(); - ::google::protobuf::internal::TSanWrite(&_impl_); - if (message_arena == nullptr) { - delete (_impl_.source_id_); - } - - if (value != nullptr) { - ::google::protobuf::Arena* submessage_arena = (value)->GetArena(); - if (message_arena != submessage_arena) { - value = ::google::protobuf::internal::GetOwnedMessage(message_arena, value, submessage_arena); - } - _impl_._has_bits_[0] |= 0x00000001u; - } else { - _impl_._has_bits_[0] &= ~0x00000001u; - } - - _impl_.source_id_ = reinterpret_cast<::io::deephaven::proto::backplane::grpc::TableReference*>(value); - // @@protoc_insertion_point(field_set_allocated:io.deephaven.proto.backplane.grpc.FetchTableRequest.source_id) -} - -// .io.deephaven.proto.backplane.grpc.Ticket result_id = 2; -inline bool FetchTableRequest::has_result_id() const { - bool value = (_impl_._has_bits_[0] & 0x00000002u) != 0; - PROTOBUF_ASSUME(!value || _impl_.result_id_ != nullptr); - return value; -} -inline const ::io::deephaven::proto::backplane::grpc::Ticket& FetchTableRequest::_internal_result_id() const { - ::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_); -} -inline const ::io::deephaven::proto::backplane::grpc::Ticket& FetchTableRequest::result_id() const ABSL_ATTRIBUTE_LIFETIME_BOUND { - // @@protoc_insertion_point(field_get:io.deephaven.proto.backplane.grpc.FetchTableRequest.result_id) - return _internal_result_id(); -} -inline void FetchTableRequest::unsafe_arena_set_allocated_result_id(::io::deephaven::proto::backplane::grpc::Ticket* value) { - ::google::protobuf::internal::TSanWrite(&_impl_); - if (GetArena() == nullptr) { - delete reinterpret_cast<::google::protobuf::MessageLite*>(_impl_.result_id_); - } - _impl_.result_id_ = reinterpret_cast<::io::deephaven::proto::backplane::grpc::Ticket*>(value); - if (value != nullptr) { - _impl_._has_bits_[0] |= 0x00000002u; - } else { - _impl_._has_bits_[0] &= ~0x00000002u; - } - // @@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() { - ::google::protobuf::internal::TSanWrite(&_impl_); - - _impl_._has_bits_[0] &= ~0x00000002u; - ::io::deephaven::proto::backplane::grpc::Ticket* released = _impl_.result_id_; - _impl_.result_id_ = nullptr; -#ifdef PROTOBUF_FORCE_COPY_IN_RELEASE - auto* old = reinterpret_cast<::google::protobuf::MessageLite*>(released); - released = ::google::protobuf::internal::DuplicateIfNonNull(released); - if (GetArena() == nullptr) { - delete old; - } -#else // PROTOBUF_FORCE_COPY_IN_RELEASE - if (GetArena() != nullptr) { - released = ::google::protobuf::internal::DuplicateIfNonNull(released); - } -#endif // !PROTOBUF_FORCE_COPY_IN_RELEASE - return released; -} -inline ::io::deephaven::proto::backplane::grpc::Ticket* FetchTableRequest::unsafe_arena_release_result_id() { - ::google::protobuf::internal::TSanWrite(&_impl_); - // @@protoc_insertion_point(field_release:io.deephaven.proto.backplane.grpc.FetchTableRequest.result_id) - - _impl_._has_bits_[0] &= ~0x00000002u; - ::io::deephaven::proto::backplane::grpc::Ticket* temp = _impl_.result_id_; - _impl_.result_id_ = nullptr; - return temp; -} -inline ::io::deephaven::proto::backplane::grpc::Ticket* FetchTableRequest::_internal_mutable_result_id() { - ::google::protobuf::internal::TSanWrite(&_impl_); - if (_impl_.result_id_ == nullptr) { - 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(); - ::google::protobuf::internal::TSanWrite(&_impl_); - if (message_arena == nullptr) { - delete reinterpret_cast<::google::protobuf::MessageLite*>(_impl_.result_id_); - } - - if (value != nullptr) { - ::google::protobuf::Arena* submessage_arena = reinterpret_cast<::google::protobuf::MessageLite*>(value)->GetArena(); - if (message_arena != submessage_arena) { - value = ::google::protobuf::internal::GetOwnedMessage(message_arena, value, submessage_arena); - } - _impl_._has_bits_[0] |= 0x00000002u; - } else { - _impl_._has_bits_[0] &= ~0x00000002u; - } - - _impl_.result_id_ = reinterpret_cast<::io::deephaven::proto::backplane::grpc::Ticket*>(value); - // @@protoc_insertion_point(field_set_allocated:io.deephaven.proto.backplane.grpc.FetchTableRequest.result_id) -} - -// ------------------------------------------------------------------- - -// ApplyPreviewColumnsRequest - -// .io.deephaven.proto.backplane.grpc.TableReference source_id = 1; -inline bool ApplyPreviewColumnsRequest::has_source_id() const { - bool value = (_impl_._has_bits_[0] & 0x00000001u) != 0; - PROTOBUF_ASSUME(!value || _impl_.source_id_ != nullptr); - return value; -} -inline void ApplyPreviewColumnsRequest::clear_source_id() { - ::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 { - ::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_); -} -inline const ::io::deephaven::proto::backplane::grpc::TableReference& ApplyPreviewColumnsRequest::source_id() const ABSL_ATTRIBUTE_LIFETIME_BOUND { - // @@protoc_insertion_point(field_get:io.deephaven.proto.backplane.grpc.ApplyPreviewColumnsRequest.source_id) - return _internal_source_id(); -} -inline void ApplyPreviewColumnsRequest::unsafe_arena_set_allocated_source_id(::io::deephaven::proto::backplane::grpc::TableReference* value) { - ::google::protobuf::internal::TSanWrite(&_impl_); - if (GetArena() == nullptr) { - delete reinterpret_cast<::google::protobuf::MessageLite*>(_impl_.source_id_); - } - _impl_.source_id_ = reinterpret_cast<::io::deephaven::proto::backplane::grpc::TableReference*>(value); - if (value != nullptr) { - _impl_._has_bits_[0] |= 0x00000001u; - } else { - _impl_._has_bits_[0] &= ~0x00000001u; - } - // @@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() { - ::google::protobuf::internal::TSanWrite(&_impl_); - - _impl_._has_bits_[0] &= ~0x00000001u; - ::io::deephaven::proto::backplane::grpc::TableReference* released = _impl_.source_id_; - _impl_.source_id_ = nullptr; -#ifdef PROTOBUF_FORCE_COPY_IN_RELEASE - auto* old = reinterpret_cast<::google::protobuf::MessageLite*>(released); - released = ::google::protobuf::internal::DuplicateIfNonNull(released); - if (GetArena() == nullptr) { - delete old; - } -#else // PROTOBUF_FORCE_COPY_IN_RELEASE - if (GetArena() != nullptr) { - released = ::google::protobuf::internal::DuplicateIfNonNull(released); - } -#endif // !PROTOBUF_FORCE_COPY_IN_RELEASE - return released; -} -inline ::io::deephaven::proto::backplane::grpc::TableReference* ApplyPreviewColumnsRequest::unsafe_arena_release_source_id() { - ::google::protobuf::internal::TSanWrite(&_impl_); - // @@protoc_insertion_point(field_release:io.deephaven.proto.backplane.grpc.ApplyPreviewColumnsRequest.source_id) - - _impl_._has_bits_[0] &= ~0x00000001u; - ::io::deephaven::proto::backplane::grpc::TableReference* temp = _impl_.source_id_; - _impl_.source_id_ = nullptr; - return temp; -} -inline ::io::deephaven::proto::backplane::grpc::TableReference* ApplyPreviewColumnsRequest::_internal_mutable_source_id() { - ::google::protobuf::internal::TSanWrite(&_impl_); - if (_impl_.source_id_ == nullptr) { - 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(); - ::google::protobuf::internal::TSanWrite(&_impl_); - if (message_arena == nullptr) { - delete (_impl_.source_id_); - } - - if (value != nullptr) { - ::google::protobuf::Arena* submessage_arena = (value)->GetArena(); - if (message_arena != submessage_arena) { - value = ::google::protobuf::internal::GetOwnedMessage(message_arena, value, submessage_arena); - } - _impl_._has_bits_[0] |= 0x00000001u; - } else { - _impl_._has_bits_[0] &= ~0x00000001u; - } - - _impl_.source_id_ = reinterpret_cast<::io::deephaven::proto::backplane::grpc::TableReference*>(value); - // @@protoc_insertion_point(field_set_allocated:io.deephaven.proto.backplane.grpc.ApplyPreviewColumnsRequest.source_id) -} - -// .io.deephaven.proto.backplane.grpc.Ticket result_id = 2; -inline bool ApplyPreviewColumnsRequest::has_result_id() const { - bool value = (_impl_._has_bits_[0] & 0x00000002u) != 0; - PROTOBUF_ASSUME(!value || _impl_.result_id_ != nullptr); - return value; -} -inline const ::io::deephaven::proto::backplane::grpc::Ticket& ApplyPreviewColumnsRequest::_internal_result_id() const { - ::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_); -} -inline const ::io::deephaven::proto::backplane::grpc::Ticket& ApplyPreviewColumnsRequest::result_id() const ABSL_ATTRIBUTE_LIFETIME_BOUND { - // @@protoc_insertion_point(field_get:io.deephaven.proto.backplane.grpc.ApplyPreviewColumnsRequest.result_id) - return _internal_result_id(); -} -inline void ApplyPreviewColumnsRequest::unsafe_arena_set_allocated_result_id(::io::deephaven::proto::backplane::grpc::Ticket* value) { - ::google::protobuf::internal::TSanWrite(&_impl_); - if (GetArena() == nullptr) { - delete reinterpret_cast<::google::protobuf::MessageLite*>(_impl_.result_id_); - } - _impl_.result_id_ = reinterpret_cast<::io::deephaven::proto::backplane::grpc::Ticket*>(value); - if (value != nullptr) { - _impl_._has_bits_[0] |= 0x00000002u; - } else { - _impl_._has_bits_[0] &= ~0x00000002u; - } - // @@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() { - ::google::protobuf::internal::TSanWrite(&_impl_); - - _impl_._has_bits_[0] &= ~0x00000002u; - ::io::deephaven::proto::backplane::grpc::Ticket* released = _impl_.result_id_; - _impl_.result_id_ = nullptr; -#ifdef PROTOBUF_FORCE_COPY_IN_RELEASE - auto* old = reinterpret_cast<::google::protobuf::MessageLite*>(released); - released = ::google::protobuf::internal::DuplicateIfNonNull(released); - if (GetArena() == nullptr) { - delete old; - } -#else // PROTOBUF_FORCE_COPY_IN_RELEASE - if (GetArena() != nullptr) { - released = ::google::protobuf::internal::DuplicateIfNonNull(released); - } -#endif // !PROTOBUF_FORCE_COPY_IN_RELEASE - return released; -} -inline ::io::deephaven::proto::backplane::grpc::Ticket* ApplyPreviewColumnsRequest::unsafe_arena_release_result_id() { - ::google::protobuf::internal::TSanWrite(&_impl_); - // @@protoc_insertion_point(field_release:io.deephaven.proto.backplane.grpc.ApplyPreviewColumnsRequest.result_id) - - _impl_._has_bits_[0] &= ~0x00000002u; - ::io::deephaven::proto::backplane::grpc::Ticket* temp = _impl_.result_id_; - _impl_.result_id_ = nullptr; - return temp; -} -inline ::io::deephaven::proto::backplane::grpc::Ticket* ApplyPreviewColumnsRequest::_internal_mutable_result_id() { - ::google::protobuf::internal::TSanWrite(&_impl_); - if (_impl_.result_id_ == nullptr) { - 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(); - ::google::protobuf::internal::TSanWrite(&_impl_); - if (message_arena == nullptr) { - delete reinterpret_cast<::google::protobuf::MessageLite*>(_impl_.result_id_); - } - - if (value != nullptr) { - ::google::protobuf::Arena* submessage_arena = reinterpret_cast<::google::protobuf::MessageLite*>(value)->GetArena(); - if (message_arena != submessage_arena) { - value = ::google::protobuf::internal::GetOwnedMessage(message_arena, value, submessage_arena); - } - _impl_._has_bits_[0] |= 0x00000002u; - } else { - _impl_._has_bits_[0] &= ~0x00000002u; - } - - _impl_.result_id_ = reinterpret_cast<::io::deephaven::proto::backplane::grpc::Ticket*>(value); - // @@protoc_insertion_point(field_set_allocated:io.deephaven.proto.backplane.grpc.ApplyPreviewColumnsRequest.result_id) -} - -// ------------------------------------------------------------------- - -// ExportedTableUpdatesRequest - -// ------------------------------------------------------------------- - -// ExportedTableUpdateMessage - -// .io.deephaven.proto.backplane.grpc.Ticket export_id = 1; -inline bool ExportedTableUpdateMessage::has_export_id() const { - bool value = (_impl_._has_bits_[0] & 0x00000001u) != 0; - PROTOBUF_ASSUME(!value || _impl_.export_id_ != nullptr); - return value; -} -inline const ::io::deephaven::proto::backplane::grpc::Ticket& ExportedTableUpdateMessage::_internal_export_id() const { - ::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_); -} -inline const ::io::deephaven::proto::backplane::grpc::Ticket& ExportedTableUpdateMessage::export_id() const ABSL_ATTRIBUTE_LIFETIME_BOUND { - // @@protoc_insertion_point(field_get:io.deephaven.proto.backplane.grpc.ExportedTableUpdateMessage.export_id) - return _internal_export_id(); -} -inline void ExportedTableUpdateMessage::unsafe_arena_set_allocated_export_id(::io::deephaven::proto::backplane::grpc::Ticket* value) { - ::google::protobuf::internal::TSanWrite(&_impl_); - if (GetArena() == nullptr) { - delete reinterpret_cast<::google::protobuf::MessageLite*>(_impl_.export_id_); - } - _impl_.export_id_ = reinterpret_cast<::io::deephaven::proto::backplane::grpc::Ticket*>(value); - if (value != nullptr) { - _impl_._has_bits_[0] |= 0x00000001u; - } else { - _impl_._has_bits_[0] &= ~0x00000001u; - } - // @@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() { - ::google::protobuf::internal::TSanWrite(&_impl_); - - _impl_._has_bits_[0] &= ~0x00000001u; - ::io::deephaven::proto::backplane::grpc::Ticket* released = _impl_.export_id_; - _impl_.export_id_ = nullptr; -#ifdef PROTOBUF_FORCE_COPY_IN_RELEASE - auto* old = reinterpret_cast<::google::protobuf::MessageLite*>(released); - released = ::google::protobuf::internal::DuplicateIfNonNull(released); - if (GetArena() == nullptr) { - delete old; - } -#else // PROTOBUF_FORCE_COPY_IN_RELEASE - if (GetArena() != nullptr) { - released = ::google::protobuf::internal::DuplicateIfNonNull(released); - } -#endif // !PROTOBUF_FORCE_COPY_IN_RELEASE - return released; -} -inline ::io::deephaven::proto::backplane::grpc::Ticket* ExportedTableUpdateMessage::unsafe_arena_release_export_id() { - ::google::protobuf::internal::TSanWrite(&_impl_); - // @@protoc_insertion_point(field_release:io.deephaven.proto.backplane.grpc.ExportedTableUpdateMessage.export_id) - - _impl_._has_bits_[0] &= ~0x00000001u; - ::io::deephaven::proto::backplane::grpc::Ticket* temp = _impl_.export_id_; - _impl_.export_id_ = nullptr; - return temp; -} -inline ::io::deephaven::proto::backplane::grpc::Ticket* ExportedTableUpdateMessage::_internal_mutable_export_id() { - ::google::protobuf::internal::TSanWrite(&_impl_); - if (_impl_.export_id_ == nullptr) { - 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(); - ::google::protobuf::internal::TSanWrite(&_impl_); - if (message_arena == nullptr) { - delete reinterpret_cast<::google::protobuf::MessageLite*>(_impl_.export_id_); - } - - if (value != nullptr) { - ::google::protobuf::Arena* submessage_arena = reinterpret_cast<::google::protobuf::MessageLite*>(value)->GetArena(); - if (message_arena != submessage_arena) { - value = ::google::protobuf::internal::GetOwnedMessage(message_arena, value, submessage_arena); - } - _impl_._has_bits_[0] |= 0x00000001u; - } else { - _impl_._has_bits_[0] &= ~0x00000001u; - } - - _impl_.export_id_ = reinterpret_cast<::io::deephaven::proto::backplane::grpc::Ticket*>(value); - // @@protoc_insertion_point(field_set_allocated:io.deephaven.proto.backplane.grpc.ExportedTableUpdateMessage.export_id) -} - -// sint64 size = 2 [jstype = JS_STRING]; -inline void ExportedTableUpdateMessage::clear_size() { - ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.size_ = ::int64_t{0}; -} -inline ::int64_t ExportedTableUpdateMessage::size() const { - // @@protoc_insertion_point(field_get:io.deephaven.proto.backplane.grpc.ExportedTableUpdateMessage.size) - return _internal_size(); -} -inline void ExportedTableUpdateMessage::set_size(::int64_t value) { - _internal_set_size(value); - // @@protoc_insertion_point(field_set:io.deephaven.proto.backplane.grpc.ExportedTableUpdateMessage.size) -} -inline ::int64_t ExportedTableUpdateMessage::_internal_size() const { - ::google::protobuf::internal::TSanRead(&_impl_); - return _impl_.size_; -} -inline void ExportedTableUpdateMessage::_internal_set_size(::int64_t value) { - ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.size_ = value; -} - -// string update_failure_message = 3; -inline void ExportedTableUpdateMessage::clear_update_failure_message() { - ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.update_failure_message_.ClearToEmpty(); -} -inline const std::string& ExportedTableUpdateMessage::update_failure_message() const - ABSL_ATTRIBUTE_LIFETIME_BOUND { - // @@protoc_insertion_point(field_get:io.deephaven.proto.backplane.grpc.ExportedTableUpdateMessage.update_failure_message) - return _internal_update_failure_message(); -} -template -inline PROTOBUF_ALWAYS_INLINE void ExportedTableUpdateMessage::set_update_failure_message(Arg_&& arg, - Args_... args) { - ::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) -} -inline std::string* ExportedTableUpdateMessage::mutable_update_failure_message() ABSL_ATTRIBUTE_LIFETIME_BOUND { - std::string* _s = _internal_mutable_update_failure_message(); - // @@protoc_insertion_point(field_mutable:io.deephaven.proto.backplane.grpc.ExportedTableUpdateMessage.update_failure_message) - return _s; -} -inline const std::string& ExportedTableUpdateMessage::_internal_update_failure_message() const { - ::google::protobuf::internal::TSanRead(&_impl_); - return _impl_.update_failure_message_.Get(); -} -inline void ExportedTableUpdateMessage::_internal_set_update_failure_message(const std::string& value) { - ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.update_failure_message_.Set(value, GetArena()); -} -inline std::string* ExportedTableUpdateMessage::_internal_mutable_update_failure_message() { - ::google::protobuf::internal::TSanWrite(&_impl_); - return _impl_.update_failure_message_.Mutable( GetArena()); -} -inline std::string* ExportedTableUpdateMessage::release_update_failure_message() { - ::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) { - ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.update_failure_message_.SetAllocated(value, GetArena()); - #ifdef PROTOBUF_FORCE_COPY_DEFAULT_STRING - if (_impl_.update_failure_message_.IsDefault()) { - _impl_.update_failure_message_.Set("", GetArena()); - } - #endif // PROTOBUF_FORCE_COPY_DEFAULT_STRING - // @@protoc_insertion_point(field_set_allocated:io.deephaven.proto.backplane.grpc.ExportedTableUpdateMessage.update_failure_message) -} - -// ------------------------------------------------------------------- - -// EmptyTableRequest - -// .io.deephaven.proto.backplane.grpc.Ticket result_id = 1; -inline bool EmptyTableRequest::has_result_id() const { - bool value = (_impl_._has_bits_[0] & 0x00000001u) != 0; - PROTOBUF_ASSUME(!value || _impl_.result_id_ != nullptr); - return value; -} -inline const ::io::deephaven::proto::backplane::grpc::Ticket& EmptyTableRequest::_internal_result_id() const { - ::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_); -} -inline const ::io::deephaven::proto::backplane::grpc::Ticket& EmptyTableRequest::result_id() const ABSL_ATTRIBUTE_LIFETIME_BOUND { - // @@protoc_insertion_point(field_get:io.deephaven.proto.backplane.grpc.EmptyTableRequest.result_id) - return _internal_result_id(); -} -inline void EmptyTableRequest::unsafe_arena_set_allocated_result_id(::io::deephaven::proto::backplane::grpc::Ticket* value) { - ::google::protobuf::internal::TSanWrite(&_impl_); - if (GetArena() == nullptr) { - delete reinterpret_cast<::google::protobuf::MessageLite*>(_impl_.result_id_); - } - _impl_.result_id_ = reinterpret_cast<::io::deephaven::proto::backplane::grpc::Ticket*>(value); - if (value != nullptr) { - _impl_._has_bits_[0] |= 0x00000001u; - } else { - _impl_._has_bits_[0] &= ~0x00000001u; - } - // @@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() { - ::google::protobuf::internal::TSanWrite(&_impl_); - - _impl_._has_bits_[0] &= ~0x00000001u; - ::io::deephaven::proto::backplane::grpc::Ticket* released = _impl_.result_id_; - _impl_.result_id_ = nullptr; -#ifdef PROTOBUF_FORCE_COPY_IN_RELEASE - auto* old = reinterpret_cast<::google::protobuf::MessageLite*>(released); - released = ::google::protobuf::internal::DuplicateIfNonNull(released); - if (GetArena() == nullptr) { - delete old; - } -#else // PROTOBUF_FORCE_COPY_IN_RELEASE - if (GetArena() != nullptr) { - released = ::google::protobuf::internal::DuplicateIfNonNull(released); - } -#endif // !PROTOBUF_FORCE_COPY_IN_RELEASE - return released; -} -inline ::io::deephaven::proto::backplane::grpc::Ticket* EmptyTableRequest::unsafe_arena_release_result_id() { - ::google::protobuf::internal::TSanWrite(&_impl_); - // @@protoc_insertion_point(field_release:io.deephaven.proto.backplane.grpc.EmptyTableRequest.result_id) - - _impl_._has_bits_[0] &= ~0x00000001u; - ::io::deephaven::proto::backplane::grpc::Ticket* temp = _impl_.result_id_; - _impl_.result_id_ = nullptr; - return temp; -} -inline ::io::deephaven::proto::backplane::grpc::Ticket* EmptyTableRequest::_internal_mutable_result_id() { - ::google::protobuf::internal::TSanWrite(&_impl_); - if (_impl_.result_id_ == nullptr) { - 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(); - ::google::protobuf::internal::TSanWrite(&_impl_); - if (message_arena == nullptr) { - delete reinterpret_cast<::google::protobuf::MessageLite*>(_impl_.result_id_); - } - - if (value != nullptr) { - ::google::protobuf::Arena* submessage_arena = reinterpret_cast<::google::protobuf::MessageLite*>(value)->GetArena(); - if (message_arena != submessage_arena) { - value = ::google::protobuf::internal::GetOwnedMessage(message_arena, value, submessage_arena); - } - _impl_._has_bits_[0] |= 0x00000001u; - } else { - _impl_._has_bits_[0] &= ~0x00000001u; - } - - _impl_.result_id_ = reinterpret_cast<::io::deephaven::proto::backplane::grpc::Ticket*>(value); - // @@protoc_insertion_point(field_set_allocated:io.deephaven.proto.backplane.grpc.EmptyTableRequest.result_id) -} - -// sint64 size = 2 [jstype = JS_STRING]; -inline void EmptyTableRequest::clear_size() { - ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.size_ = ::int64_t{0}; -} -inline ::int64_t EmptyTableRequest::size() const { - // @@protoc_insertion_point(field_get:io.deephaven.proto.backplane.grpc.EmptyTableRequest.size) - return _internal_size(); -} -inline void EmptyTableRequest::set_size(::int64_t value) { - _internal_set_size(value); - // @@protoc_insertion_point(field_set:io.deephaven.proto.backplane.grpc.EmptyTableRequest.size) -} -inline ::int64_t EmptyTableRequest::_internal_size() const { - ::google::protobuf::internal::TSanRead(&_impl_); - return _impl_.size_; -} -inline void EmptyTableRequest::_internal_set_size(::int64_t value) { - ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.size_ = value; -} - -// ------------------------------------------------------------------- - -// TimeTableRequest - -// .io.deephaven.proto.backplane.grpc.Ticket result_id = 1; -inline bool TimeTableRequest::has_result_id() const { - bool value = (_impl_._has_bits_[0] & 0x00000001u) != 0; - PROTOBUF_ASSUME(!value || _impl_.result_id_ != nullptr); - return value; -} -inline const ::io::deephaven::proto::backplane::grpc::Ticket& TimeTableRequest::_internal_result_id() const { - ::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_); -} -inline const ::io::deephaven::proto::backplane::grpc::Ticket& TimeTableRequest::result_id() const ABSL_ATTRIBUTE_LIFETIME_BOUND { - // @@protoc_insertion_point(field_get:io.deephaven.proto.backplane.grpc.TimeTableRequest.result_id) - return _internal_result_id(); -} -inline void TimeTableRequest::unsafe_arena_set_allocated_result_id(::io::deephaven::proto::backplane::grpc::Ticket* value) { - ::google::protobuf::internal::TSanWrite(&_impl_); - if (GetArena() == nullptr) { - delete reinterpret_cast<::google::protobuf::MessageLite*>(_impl_.result_id_); - } - _impl_.result_id_ = reinterpret_cast<::io::deephaven::proto::backplane::grpc::Ticket*>(value); - if (value != nullptr) { - _impl_._has_bits_[0] |= 0x00000001u; - } else { - _impl_._has_bits_[0] &= ~0x00000001u; - } - // @@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() { - ::google::protobuf::internal::TSanWrite(&_impl_); - - _impl_._has_bits_[0] &= ~0x00000001u; - ::io::deephaven::proto::backplane::grpc::Ticket* released = _impl_.result_id_; - _impl_.result_id_ = nullptr; -#ifdef PROTOBUF_FORCE_COPY_IN_RELEASE - auto* old = reinterpret_cast<::google::protobuf::MessageLite*>(released); - released = ::google::protobuf::internal::DuplicateIfNonNull(released); - if (GetArena() == nullptr) { - delete old; - } -#else // PROTOBUF_FORCE_COPY_IN_RELEASE - if (GetArena() != nullptr) { - released = ::google::protobuf::internal::DuplicateIfNonNull(released); - } -#endif // !PROTOBUF_FORCE_COPY_IN_RELEASE - return released; -} -inline ::io::deephaven::proto::backplane::grpc::Ticket* TimeTableRequest::unsafe_arena_release_result_id() { - ::google::protobuf::internal::TSanWrite(&_impl_); - // @@protoc_insertion_point(field_release:io.deephaven.proto.backplane.grpc.TimeTableRequest.result_id) - - _impl_._has_bits_[0] &= ~0x00000001u; - ::io::deephaven::proto::backplane::grpc::Ticket* temp = _impl_.result_id_; - _impl_.result_id_ = nullptr; - return temp; -} -inline ::io::deephaven::proto::backplane::grpc::Ticket* TimeTableRequest::_internal_mutable_result_id() { - ::google::protobuf::internal::TSanWrite(&_impl_); - if (_impl_.result_id_ == nullptr) { - 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(); - ::google::protobuf::internal::TSanWrite(&_impl_); - if (message_arena == nullptr) { - delete reinterpret_cast<::google::protobuf::MessageLite*>(_impl_.result_id_); - } - - if (value != nullptr) { - ::google::protobuf::Arena* submessage_arena = reinterpret_cast<::google::protobuf::MessageLite*>(value)->GetArena(); - if (message_arena != submessage_arena) { - value = ::google::protobuf::internal::GetOwnedMessage(message_arena, value, submessage_arena); - } - _impl_._has_bits_[0] |= 0x00000001u; - } else { - _impl_._has_bits_[0] &= ~0x00000001u; - } - - _impl_.result_id_ = reinterpret_cast<::io::deephaven::proto::backplane::grpc::Ticket*>(value); - // @@protoc_insertion_point(field_set_allocated:io.deephaven.proto.backplane.grpc.TimeTableRequest.result_id) -} - -// sint64 start_time_nanos = 2 [jstype = JS_STRING]; -inline bool TimeTableRequest::has_start_time_nanos() const { - return start_time_case() == kStartTimeNanos; -} -inline void TimeTableRequest::set_has_start_time_nanos() { - _impl_._oneof_case_[0] = kStartTimeNanos; -} -inline void TimeTableRequest::clear_start_time_nanos() { - ::google::protobuf::internal::TSanWrite(&_impl_); - if (start_time_case() == kStartTimeNanos) { - _impl_.start_time_.start_time_nanos_ = ::int64_t{0}; - clear_has_start_time(); - } -} -inline ::int64_t TimeTableRequest::start_time_nanos() const { - // @@protoc_insertion_point(field_get:io.deephaven.proto.backplane.grpc.TimeTableRequest.start_time_nanos) - return _internal_start_time_nanos(); -} -inline void TimeTableRequest::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; - // @@protoc_insertion_point(field_set:io.deephaven.proto.backplane.grpc.TimeTableRequest.start_time_nanos) -} -inline ::int64_t TimeTableRequest::_internal_start_time_nanos() const { - if (start_time_case() == kStartTimeNanos) { - return _impl_.start_time_.start_time_nanos_; - } - return ::int64_t{0}; -} - -// string start_time_string = 5; -inline bool TimeTableRequest::has_start_time_string() const { - return start_time_case() == kStartTimeString; -} -inline void TimeTableRequest::set_has_start_time_string() { - _impl_._oneof_case_[0] = kStartTimeString; -} -inline void TimeTableRequest::clear_start_time_string() { - ::google::protobuf::internal::TSanWrite(&_impl_); - if (start_time_case() == kStartTimeString) { - _impl_.start_time_.start_time_string_.Destroy(); - clear_has_start_time(); - } -} -inline const std::string& TimeTableRequest::start_time_string() const - ABSL_ATTRIBUTE_LIFETIME_BOUND { - // @@protoc_insertion_point(field_get:io.deephaven.proto.backplane.grpc.TimeTableRequest.start_time_string) - return _internal_start_time_string(); -} -template -inline PROTOBUF_ALWAYS_INLINE void TimeTableRequest::set_start_time_string(Arg_&& arg, - Args_... args) { - ::google::protobuf::internal::TSanWrite(&_impl_); - if (start_time_case() != kStartTimeString) { - clear_start_time(); - - set_has_start_time_string(); - _impl_.start_time_.start_time_string_.InitDefault(); - } - _impl_.start_time_.start_time_string_.Set(static_cast(arg), args..., GetArena()); - // @@protoc_insertion_point(field_set:io.deephaven.proto.backplane.grpc.TimeTableRequest.start_time_string) -} -inline std::string* TimeTableRequest::mutable_start_time_string() ABSL_ATTRIBUTE_LIFETIME_BOUND { - std::string* _s = _internal_mutable_start_time_string(); - // @@protoc_insertion_point(field_mutable:io.deephaven.proto.backplane.grpc.TimeTableRequest.start_time_string) - return _s; -} -inline const std::string& TimeTableRequest::_internal_start_time_string() const { - ::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) { - ::google::protobuf::internal::TSanWrite(&_impl_); - if (start_time_case() != kStartTimeString) { - clear_start_time(); - - set_has_start_time_string(); - _impl_.start_time_.start_time_string_.InitDefault(); - } - _impl_.start_time_.start_time_string_.Set(value, GetArena()); -} -inline std::string* TimeTableRequest::_internal_mutable_start_time_string() { - ::google::protobuf::internal::TSanWrite(&_impl_); - if (start_time_case() != kStartTimeString) { - clear_start_time(); - - set_has_start_time_string(); - _impl_.start_time_.start_time_string_.InitDefault(); - } - return _impl_.start_time_.start_time_string_.Mutable( GetArena()); -} -inline std::string* TimeTableRequest::release_start_time_string() { - ::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; - } - clear_has_start_time(); - return _impl_.start_time_.start_time_string_.Release(); -} -inline void TimeTableRequest::set_allocated_start_time_string(std::string* value) { - ::google::protobuf::internal::TSanWrite(&_impl_); - if (has_start_time()) { - clear_start_time(); - } - if (value != nullptr) { - set_has_start_time_string(); - _impl_.start_time_.start_time_string_.InitAllocated(value, GetArena()); - } - // @@protoc_insertion_point(field_set_allocated:io.deephaven.proto.backplane.grpc.TimeTableRequest.start_time_string) -} - -// sint64 period_nanos = 3 [jstype = JS_STRING]; -inline bool TimeTableRequest::has_period_nanos() const { - return period_case() == kPeriodNanos; -} -inline void TimeTableRequest::set_has_period_nanos() { - _impl_._oneof_case_[1] = kPeriodNanos; -} -inline void TimeTableRequest::clear_period_nanos() { - ::google::protobuf::internal::TSanWrite(&_impl_); - if (period_case() == kPeriodNanos) { - _impl_.period_.period_nanos_ = ::int64_t{0}; - clear_has_period(); - } -} -inline ::int64_t TimeTableRequest::period_nanos() const { - // @@protoc_insertion_point(field_get:io.deephaven.proto.backplane.grpc.TimeTableRequest.period_nanos) - return _internal_period_nanos(); -} -inline void TimeTableRequest::set_period_nanos(::int64_t 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 { - if (period_case() == kPeriodNanos) { - return _impl_.period_.period_nanos_; - } - return ::int64_t{0}; -} - -// string period_string = 6; -inline bool TimeTableRequest::has_period_string() const { - return period_case() == kPeriodString; -} -inline void TimeTableRequest::set_has_period_string() { - _impl_._oneof_case_[1] = kPeriodString; -} -inline void TimeTableRequest::clear_period_string() { - ::google::protobuf::internal::TSanWrite(&_impl_); - if (period_case() == kPeriodString) { - _impl_.period_.period_string_.Destroy(); - clear_has_period(); - } -} -inline const std::string& TimeTableRequest::period_string() const - ABSL_ATTRIBUTE_LIFETIME_BOUND { - // @@protoc_insertion_point(field_get:io.deephaven.proto.backplane.grpc.TimeTableRequest.period_string) - return _internal_period_string(); -} -template -inline PROTOBUF_ALWAYS_INLINE void TimeTableRequest::set_period_string(Arg_&& arg, - Args_... args) { - ::google::protobuf::internal::TSanWrite(&_impl_); - if (period_case() != kPeriodString) { - clear_period(); - - set_has_period_string(); - _impl_.period_.period_string_.InitDefault(); - } - _impl_.period_.period_string_.Set(static_cast(arg), args..., GetArena()); - // @@protoc_insertion_point(field_set:io.deephaven.proto.backplane.grpc.TimeTableRequest.period_string) -} -inline std::string* TimeTableRequest::mutable_period_string() ABSL_ATTRIBUTE_LIFETIME_BOUND { - std::string* _s = _internal_mutable_period_string(); - // @@protoc_insertion_point(field_mutable:io.deephaven.proto.backplane.grpc.TimeTableRequest.period_string) - return _s; -} -inline const std::string& TimeTableRequest::_internal_period_string() const { - ::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) { - ::google::protobuf::internal::TSanWrite(&_impl_); - if (period_case() != kPeriodString) { - clear_period(); - - set_has_period_string(); - _impl_.period_.period_string_.InitDefault(); - } - _impl_.period_.period_string_.Set(value, GetArena()); -} -inline std::string* TimeTableRequest::_internal_mutable_period_string() { - ::google::protobuf::internal::TSanWrite(&_impl_); - if (period_case() != kPeriodString) { - clear_period(); - - set_has_period_string(); - _impl_.period_.period_string_.InitDefault(); - } - return _impl_.period_.period_string_.Mutable( GetArena()); -} -inline std::string* TimeTableRequest::release_period_string() { - ::google::protobuf::internal::TSanWrite(&_impl_); - // @@protoc_insertion_point(field_release:io.deephaven.proto.backplane.grpc.TimeTableRequest.period_string) - if (period_case() != kPeriodString) { - return nullptr; - } - clear_has_period(); - return _impl_.period_.period_string_.Release(); -} -inline void TimeTableRequest::set_allocated_period_string(std::string* value) { - ::google::protobuf::internal::TSanWrite(&_impl_); - if (has_period()) { - clear_period(); - } - if (value != nullptr) { - set_has_period_string(); - _impl_.period_.period_string_.InitAllocated(value, GetArena()); - } - // @@protoc_insertion_point(field_set_allocated:io.deephaven.proto.backplane.grpc.TimeTableRequest.period_string) -} - -// bool blink_table = 4; -inline void TimeTableRequest::clear_blink_table() { - ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.blink_table_ = false; -} -inline bool TimeTableRequest::blink_table() const { - // @@protoc_insertion_point(field_get:io.deephaven.proto.backplane.grpc.TimeTableRequest.blink_table) - return _internal_blink_table(); -} -inline void TimeTableRequest::set_blink_table(bool value) { - _internal_set_blink_table(value); - // @@protoc_insertion_point(field_set:io.deephaven.proto.backplane.grpc.TimeTableRequest.blink_table) -} -inline bool TimeTableRequest::_internal_blink_table() const { - ::google::protobuf::internal::TSanRead(&_impl_); - return _impl_.blink_table_; -} -inline void TimeTableRequest::_internal_set_blink_table(bool value) { - ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.blink_table_ = value; -} - -inline bool TimeTableRequest::has_start_time() const { - return start_time_case() != START_TIME_NOT_SET; -} -inline void TimeTableRequest::clear_has_start_time() { - _impl_._oneof_case_[0] = START_TIME_NOT_SET; -} -inline bool TimeTableRequest::has_period() const { - return period_case() != PERIOD_NOT_SET; -} -inline void TimeTableRequest::clear_has_period() { - _impl_._oneof_case_[1] = PERIOD_NOT_SET; -} -inline TimeTableRequest::StartTimeCase TimeTableRequest::start_time_case() const { - return TimeTableRequest::StartTimeCase(_impl_._oneof_case_[0]); -} -inline TimeTableRequest::PeriodCase TimeTableRequest::period_case() const { - return TimeTableRequest::PeriodCase(_impl_._oneof_case_[1]); -} -// ------------------------------------------------------------------- - -// SelectOrUpdateRequest - -// .io.deephaven.proto.backplane.grpc.Ticket result_id = 1; -inline bool SelectOrUpdateRequest::has_result_id() const { - bool value = (_impl_._has_bits_[0] & 0x00000001u) != 0; - PROTOBUF_ASSUME(!value || _impl_.result_id_ != nullptr); - return value; -} -inline const ::io::deephaven::proto::backplane::grpc::Ticket& SelectOrUpdateRequest::_internal_result_id() const { - ::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_); -} -inline const ::io::deephaven::proto::backplane::grpc::Ticket& SelectOrUpdateRequest::result_id() const ABSL_ATTRIBUTE_LIFETIME_BOUND { - // @@protoc_insertion_point(field_get:io.deephaven.proto.backplane.grpc.SelectOrUpdateRequest.result_id) - return _internal_result_id(); -} -inline void SelectOrUpdateRequest::unsafe_arena_set_allocated_result_id(::io::deephaven::proto::backplane::grpc::Ticket* value) { - ::google::protobuf::internal::TSanWrite(&_impl_); - if (GetArena() == nullptr) { - delete reinterpret_cast<::google::protobuf::MessageLite*>(_impl_.result_id_); - } - _impl_.result_id_ = reinterpret_cast<::io::deephaven::proto::backplane::grpc::Ticket*>(value); - if (value != nullptr) { - _impl_._has_bits_[0] |= 0x00000001u; - } else { - _impl_._has_bits_[0] &= ~0x00000001u; - } - // @@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() { - ::google::protobuf::internal::TSanWrite(&_impl_); - - _impl_._has_bits_[0] &= ~0x00000001u; - ::io::deephaven::proto::backplane::grpc::Ticket* released = _impl_.result_id_; - _impl_.result_id_ = nullptr; -#ifdef PROTOBUF_FORCE_COPY_IN_RELEASE - auto* old = reinterpret_cast<::google::protobuf::MessageLite*>(released); - released = ::google::protobuf::internal::DuplicateIfNonNull(released); - if (GetArena() == nullptr) { - delete old; - } -#else // PROTOBUF_FORCE_COPY_IN_RELEASE - if (GetArena() != nullptr) { - released = ::google::protobuf::internal::DuplicateIfNonNull(released); - } -#endif // !PROTOBUF_FORCE_COPY_IN_RELEASE - return released; -} -inline ::io::deephaven::proto::backplane::grpc::Ticket* SelectOrUpdateRequest::unsafe_arena_release_result_id() { - ::google::protobuf::internal::TSanWrite(&_impl_); - // @@protoc_insertion_point(field_release:io.deephaven.proto.backplane.grpc.SelectOrUpdateRequest.result_id) - - _impl_._has_bits_[0] &= ~0x00000001u; - ::io::deephaven::proto::backplane::grpc::Ticket* temp = _impl_.result_id_; - _impl_.result_id_ = nullptr; - return temp; -} -inline ::io::deephaven::proto::backplane::grpc::Ticket* SelectOrUpdateRequest::_internal_mutable_result_id() { - ::google::protobuf::internal::TSanWrite(&_impl_); - if (_impl_.result_id_ == nullptr) { - 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(); - ::google::protobuf::internal::TSanWrite(&_impl_); - if (message_arena == nullptr) { - delete reinterpret_cast<::google::protobuf::MessageLite*>(_impl_.result_id_); - } - - if (value != nullptr) { - ::google::protobuf::Arena* submessage_arena = reinterpret_cast<::google::protobuf::MessageLite*>(value)->GetArena(); - if (message_arena != submessage_arena) { - value = ::google::protobuf::internal::GetOwnedMessage(message_arena, value, submessage_arena); - } - _impl_._has_bits_[0] |= 0x00000001u; - } else { - _impl_._has_bits_[0] &= ~0x00000001u; - } - - _impl_.result_id_ = reinterpret_cast<::io::deephaven::proto::backplane::grpc::Ticket*>(value); - // @@protoc_insertion_point(field_set_allocated:io.deephaven.proto.backplane.grpc.SelectOrUpdateRequest.result_id) -} - -// .io.deephaven.proto.backplane.grpc.TableReference source_id = 2; -inline bool SelectOrUpdateRequest::has_source_id() const { - bool value = (_impl_._has_bits_[0] & 0x00000002u) != 0; - PROTOBUF_ASSUME(!value || _impl_.source_id_ != nullptr); - return value; -} -inline void SelectOrUpdateRequest::clear_source_id() { - ::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 { - ::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_); -} -inline const ::io::deephaven::proto::backplane::grpc::TableReference& SelectOrUpdateRequest::source_id() const ABSL_ATTRIBUTE_LIFETIME_BOUND { - // @@protoc_insertion_point(field_get:io.deephaven.proto.backplane.grpc.SelectOrUpdateRequest.source_id) - return _internal_source_id(); -} -inline void SelectOrUpdateRequest::unsafe_arena_set_allocated_source_id(::io::deephaven::proto::backplane::grpc::TableReference* value) { - ::google::protobuf::internal::TSanWrite(&_impl_); - if (GetArena() == nullptr) { - delete reinterpret_cast<::google::protobuf::MessageLite*>(_impl_.source_id_); - } - _impl_.source_id_ = reinterpret_cast<::io::deephaven::proto::backplane::grpc::TableReference*>(value); - if (value != nullptr) { - _impl_._has_bits_[0] |= 0x00000002u; - } else { - _impl_._has_bits_[0] &= ~0x00000002u; - } - // @@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() { - ::google::protobuf::internal::TSanWrite(&_impl_); - - _impl_._has_bits_[0] &= ~0x00000002u; - ::io::deephaven::proto::backplane::grpc::TableReference* released = _impl_.source_id_; - _impl_.source_id_ = nullptr; -#ifdef PROTOBUF_FORCE_COPY_IN_RELEASE - auto* old = reinterpret_cast<::google::protobuf::MessageLite*>(released); - released = ::google::protobuf::internal::DuplicateIfNonNull(released); - if (GetArena() == nullptr) { - delete old; - } -#else // PROTOBUF_FORCE_COPY_IN_RELEASE - if (GetArena() != nullptr) { - released = ::google::protobuf::internal::DuplicateIfNonNull(released); - } -#endif // !PROTOBUF_FORCE_COPY_IN_RELEASE - return released; -} -inline ::io::deephaven::proto::backplane::grpc::TableReference* SelectOrUpdateRequest::unsafe_arena_release_source_id() { - ::google::protobuf::internal::TSanWrite(&_impl_); - // @@protoc_insertion_point(field_release:io.deephaven.proto.backplane.grpc.SelectOrUpdateRequest.source_id) - - _impl_._has_bits_[0] &= ~0x00000002u; - ::io::deephaven::proto::backplane::grpc::TableReference* temp = _impl_.source_id_; - _impl_.source_id_ = nullptr; - return temp; -} -inline ::io::deephaven::proto::backplane::grpc::TableReference* SelectOrUpdateRequest::_internal_mutable_source_id() { - ::google::protobuf::internal::TSanWrite(&_impl_); - if (_impl_.source_id_ == nullptr) { - 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(); - ::google::protobuf::internal::TSanWrite(&_impl_); - if (message_arena == nullptr) { - delete (_impl_.source_id_); - } - - if (value != nullptr) { - ::google::protobuf::Arena* submessage_arena = (value)->GetArena(); - if (message_arena != submessage_arena) { - value = ::google::protobuf::internal::GetOwnedMessage(message_arena, value, submessage_arena); - } - _impl_._has_bits_[0] |= 0x00000002u; - } else { - _impl_._has_bits_[0] &= ~0x00000002u; - } - - _impl_.source_id_ = reinterpret_cast<::io::deephaven::proto::backplane::grpc::TableReference*>(value); - // @@protoc_insertion_point(field_set_allocated:io.deephaven.proto.backplane.grpc.SelectOrUpdateRequest.source_id) -} - -// repeated string column_specs = 3; -inline int SelectOrUpdateRequest::_internal_column_specs_size() const { - return _internal_column_specs().size(); -} -inline int SelectOrUpdateRequest::column_specs_size() const { - return _internal_column_specs_size(); -} -inline void SelectOrUpdateRequest::clear_column_specs() { - ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.column_specs_.Clear(); -} -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; -} -inline const std::string& SelectOrUpdateRequest::column_specs(int index) const - ABSL_ATTRIBUTE_LIFETIME_BOUND { - // @@protoc_insertion_point(field_get:io.deephaven.proto.backplane.grpc.SelectOrUpdateRequest.column_specs) - return _internal_column_specs().Get(index); -} -inline std::string* SelectOrUpdateRequest::mutable_column_specs(int index) - ABSL_ATTRIBUTE_LIFETIME_BOUND { - // @@protoc_insertion_point(field_mutable:io.deephaven.proto.backplane.grpc.SelectOrUpdateRequest.column_specs) - return _internal_mutable_column_specs()->Mutable(index); -} -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) -} -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 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) - return _internal_column_specs(); -} -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) - ::google::protobuf::internal::TSanWrite(&_impl_); - return _internal_mutable_column_specs(); -} -inline const ::google::protobuf::RepeatedPtrField& -SelectOrUpdateRequest::_internal_column_specs() const { - ::google::protobuf::internal::TSanRead(&_impl_); - return _impl_.column_specs_; -} -inline ::google::protobuf::RepeatedPtrField* -SelectOrUpdateRequest::_internal_mutable_column_specs() { - ::google::protobuf::internal::TSanRead(&_impl_); - return &_impl_.column_specs_; -} - -// ------------------------------------------------------------------- - -// MathContext - -// sint32 precision = 1; -inline void MathContext::clear_precision() { - ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.precision_ = 0; -} -inline ::int32_t MathContext::precision() const { - // @@protoc_insertion_point(field_get:io.deephaven.proto.backplane.grpc.MathContext.precision) - return _internal_precision(); -} -inline void MathContext::set_precision(::int32_t value) { - _internal_set_precision(value); - // @@protoc_insertion_point(field_set:io.deephaven.proto.backplane.grpc.MathContext.precision) -} -inline ::int32_t MathContext::_internal_precision() const { - ::google::protobuf::internal::TSanRead(&_impl_); - return _impl_.precision_; -} -inline void MathContext::_internal_set_precision(::int32_t value) { - ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.precision_ = value; -} - -// .io.deephaven.proto.backplane.grpc.MathContext.RoundingMode rounding_mode = 2; -inline void MathContext::clear_rounding_mode() { - ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.rounding_mode_ = 0; -} -inline ::io::deephaven::proto::backplane::grpc::MathContext_RoundingMode MathContext::rounding_mode() const { - // @@protoc_insertion_point(field_get:io.deephaven.proto.backplane.grpc.MathContext.rounding_mode) - return _internal_rounding_mode(); -} -inline void MathContext::set_rounding_mode(::io::deephaven::proto::backplane::grpc::MathContext_RoundingMode value) { - _internal_set_rounding_mode(value); - // @@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 { - ::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) { - ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.rounding_mode_ = value; -} - -// ------------------------------------------------------------------- - -// UpdateByWindowScale_UpdateByWindowTicks - -// double ticks = 1; -inline void UpdateByWindowScale_UpdateByWindowTicks::clear_ticks() { - ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.ticks_ = 0; -} -inline double UpdateByWindowScale_UpdateByWindowTicks::ticks() const { - // @@protoc_insertion_point(field_get:io.deephaven.proto.backplane.grpc.UpdateByWindowScale.UpdateByWindowTicks.ticks) - return _internal_ticks(); -} -inline void UpdateByWindowScale_UpdateByWindowTicks::set_ticks(double value) { - _internal_set_ticks(value); - // @@protoc_insertion_point(field_set:io.deephaven.proto.backplane.grpc.UpdateByWindowScale.UpdateByWindowTicks.ticks) -} -inline double UpdateByWindowScale_UpdateByWindowTicks::_internal_ticks() const { - ::google::protobuf::internal::TSanRead(&_impl_); - return _impl_.ticks_; -} -inline void UpdateByWindowScale_UpdateByWindowTicks::_internal_set_ticks(double value) { - ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.ticks_ = value; -} - -// ------------------------------------------------------------------- - -// UpdateByWindowScale_UpdateByWindowTime - -// string column = 1; -inline void UpdateByWindowScale_UpdateByWindowTime::clear_column() { - ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.column_.ClearToEmpty(); -} -inline const std::string& UpdateByWindowScale_UpdateByWindowTime::column() const - ABSL_ATTRIBUTE_LIFETIME_BOUND { - // @@protoc_insertion_point(field_get:io.deephaven.proto.backplane.grpc.UpdateByWindowScale.UpdateByWindowTime.column) - return _internal_column(); -} -template -inline PROTOBUF_ALWAYS_INLINE void UpdateByWindowScale_UpdateByWindowTime::set_column(Arg_&& arg, - Args_... args) { - ::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) -} -inline std::string* UpdateByWindowScale_UpdateByWindowTime::mutable_column() ABSL_ATTRIBUTE_LIFETIME_BOUND { - std::string* _s = _internal_mutable_column(); - // @@protoc_insertion_point(field_mutable:io.deephaven.proto.backplane.grpc.UpdateByWindowScale.UpdateByWindowTime.column) - return _s; -} -inline const std::string& UpdateByWindowScale_UpdateByWindowTime::_internal_column() const { - ::google::protobuf::internal::TSanRead(&_impl_); - return _impl_.column_.Get(); -} -inline void UpdateByWindowScale_UpdateByWindowTime::_internal_set_column(const std::string& value) { - ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.column_.Set(value, GetArena()); -} -inline std::string* UpdateByWindowScale_UpdateByWindowTime::_internal_mutable_column() { - ::google::protobuf::internal::TSanWrite(&_impl_); - return _impl_.column_.Mutable( GetArena()); -} -inline std::string* UpdateByWindowScale_UpdateByWindowTime::release_column() { - ::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) { - ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.column_.SetAllocated(value, GetArena()); - #ifdef PROTOBUF_FORCE_COPY_DEFAULT_STRING - if (_impl_.column_.IsDefault()) { - _impl_.column_.Set("", GetArena()); - } - #endif // PROTOBUF_FORCE_COPY_DEFAULT_STRING - // @@protoc_insertion_point(field_set_allocated:io.deephaven.proto.backplane.grpc.UpdateByWindowScale.UpdateByWindowTime.column) -} - -// sint64 nanos = 2 [jstype = JS_STRING]; -inline bool UpdateByWindowScale_UpdateByWindowTime::has_nanos() const { - return window_case() == kNanos; -} -inline void UpdateByWindowScale_UpdateByWindowTime::set_has_nanos() { - _impl_._oneof_case_[0] = kNanos; -} -inline void UpdateByWindowScale_UpdateByWindowTime::clear_nanos() { - ::google::protobuf::internal::TSanWrite(&_impl_); - if (window_case() == kNanos) { - _impl_.window_.nanos_ = ::int64_t{0}; - clear_has_window(); - } -} -inline ::int64_t UpdateByWindowScale_UpdateByWindowTime::nanos() const { - // @@protoc_insertion_point(field_get:io.deephaven.proto.backplane.grpc.UpdateByWindowScale.UpdateByWindowTime.nanos) - return _internal_nanos(); -} -inline void UpdateByWindowScale_UpdateByWindowTime::set_nanos(::int64_t 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 { - if (window_case() == kNanos) { - return _impl_.window_.nanos_; - } - return ::int64_t{0}; -} - -// string duration_string = 3; -inline bool UpdateByWindowScale_UpdateByWindowTime::has_duration_string() const { - return window_case() == kDurationString; -} -inline void UpdateByWindowScale_UpdateByWindowTime::set_has_duration_string() { - _impl_._oneof_case_[0] = kDurationString; -} -inline void UpdateByWindowScale_UpdateByWindowTime::clear_duration_string() { - ::google::protobuf::internal::TSanWrite(&_impl_); - if (window_case() == kDurationString) { - _impl_.window_.duration_string_.Destroy(); - clear_has_window(); - } -} -inline const std::string& UpdateByWindowScale_UpdateByWindowTime::duration_string() const - ABSL_ATTRIBUTE_LIFETIME_BOUND { - // @@protoc_insertion_point(field_get:io.deephaven.proto.backplane.grpc.UpdateByWindowScale.UpdateByWindowTime.duration_string) - return _internal_duration_string(); -} -template -inline PROTOBUF_ALWAYS_INLINE void UpdateByWindowScale_UpdateByWindowTime::set_duration_string(Arg_&& arg, - Args_... args) { - ::google::protobuf::internal::TSanWrite(&_impl_); - if (window_case() != kDurationString) { - clear_window(); - - set_has_duration_string(); - _impl_.window_.duration_string_.InitDefault(); - } - _impl_.window_.duration_string_.Set(static_cast(arg), args..., GetArena()); - // @@protoc_insertion_point(field_set:io.deephaven.proto.backplane.grpc.UpdateByWindowScale.UpdateByWindowTime.duration_string) -} -inline std::string* UpdateByWindowScale_UpdateByWindowTime::mutable_duration_string() ABSL_ATTRIBUTE_LIFETIME_BOUND { - std::string* _s = _internal_mutable_duration_string(); - // @@protoc_insertion_point(field_mutable:io.deephaven.proto.backplane.grpc.UpdateByWindowScale.UpdateByWindowTime.duration_string) - return _s; -} -inline const std::string& UpdateByWindowScale_UpdateByWindowTime::_internal_duration_string() const { - ::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) { - ::google::protobuf::internal::TSanWrite(&_impl_); - if (window_case() != kDurationString) { - clear_window(); - - set_has_duration_string(); - _impl_.window_.duration_string_.InitDefault(); - } - _impl_.window_.duration_string_.Set(value, GetArena()); -} -inline std::string* UpdateByWindowScale_UpdateByWindowTime::_internal_mutable_duration_string() { - ::google::protobuf::internal::TSanWrite(&_impl_); - if (window_case() != kDurationString) { - clear_window(); - - set_has_duration_string(); - _impl_.window_.duration_string_.InitDefault(); - } - return _impl_.window_.duration_string_.Mutable( GetArena()); -} -inline std::string* UpdateByWindowScale_UpdateByWindowTime::release_duration_string() { - ::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; - } - clear_has_window(); - return _impl_.window_.duration_string_.Release(); -} -inline void UpdateByWindowScale_UpdateByWindowTime::set_allocated_duration_string(std::string* value) { - ::google::protobuf::internal::TSanWrite(&_impl_); - if (has_window()) { - clear_window(); - } - if (value != nullptr) { - set_has_duration_string(); - _impl_.window_.duration_string_.InitAllocated(value, GetArena()); - } - // @@protoc_insertion_point(field_set_allocated:io.deephaven.proto.backplane.grpc.UpdateByWindowScale.UpdateByWindowTime.duration_string) -} - -inline bool UpdateByWindowScale_UpdateByWindowTime::has_window() const { - return window_case() != WINDOW_NOT_SET; -} -inline void UpdateByWindowScale_UpdateByWindowTime::clear_has_window() { - _impl_._oneof_case_[0] = WINDOW_NOT_SET; -} -inline UpdateByWindowScale_UpdateByWindowTime::WindowCase UpdateByWindowScale_UpdateByWindowTime::window_case() const { - return UpdateByWindowScale_UpdateByWindowTime::WindowCase(_impl_._oneof_case_[0]); -} -// ------------------------------------------------------------------- - -// UpdateByWindowScale - -// .io.deephaven.proto.backplane.grpc.UpdateByWindowScale.UpdateByWindowTicks ticks = 1; -inline bool UpdateByWindowScale::has_ticks() const { - return type_case() == kTicks; -} -inline bool UpdateByWindowScale::_internal_has_ticks() const { - return type_case() == kTicks; -} -inline void UpdateByWindowScale::set_has_ticks() { - _impl_._oneof_case_[0] = kTicks; -} -inline void UpdateByWindowScale::clear_ticks() { - ::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(); - } -} -inline ::io::deephaven::proto::backplane::grpc::UpdateByWindowScale_UpdateByWindowTicks* UpdateByWindowScale::release_ticks() { - // @@protoc_insertion_point(field_release:io.deephaven.proto.backplane.grpc.UpdateByWindowScale.ticks) - if (type_case() == kTicks) { - clear_has_type(); - auto* temp = _impl_.type_.ticks_; - if (GetArena() != nullptr) { - temp = ::google::protobuf::internal::DuplicateIfNonNull(temp); - } - _impl_.type_.ticks_ = nullptr; - return temp; - } else { - return nullptr; - } -} -inline const ::io::deephaven::proto::backplane::grpc::UpdateByWindowScale_UpdateByWindowTicks& UpdateByWindowScale::_internal_ticks() const { - return type_case() == kTicks ? *_impl_.type_.ticks_ : reinterpret_cast<::io::deephaven::proto::backplane::grpc::UpdateByWindowScale_UpdateByWindowTicks&>(::io::deephaven::proto::backplane::grpc::_UpdateByWindowScale_UpdateByWindowTicks_default_instance_); -} -inline const ::io::deephaven::proto::backplane::grpc::UpdateByWindowScale_UpdateByWindowTicks& UpdateByWindowScale::ticks() const ABSL_ATTRIBUTE_LIFETIME_BOUND { - // @@protoc_insertion_point(field_get:io.deephaven.proto.backplane.grpc.UpdateByWindowScale.ticks) - return _internal_ticks(); -} -inline ::io::deephaven::proto::backplane::grpc::UpdateByWindowScale_UpdateByWindowTicks* UpdateByWindowScale::unsafe_arena_release_ticks() { - // @@protoc_insertion_point(field_unsafe_arena_release:io.deephaven.proto.backplane.grpc.UpdateByWindowScale.ticks) - if (type_case() == kTicks) { - clear_has_type(); - auto* temp = _impl_.type_.ticks_; - _impl_.type_.ticks_ = nullptr; - return temp; - } else { - return nullptr; - } -} -inline void UpdateByWindowScale::unsafe_arena_set_allocated_ticks(::io::deephaven::proto::backplane::grpc::UpdateByWindowScale_UpdateByWindowTicks* value) { - // We rely on the oneof clear method to free the earlier contents - // of this oneof. We can directly use the pointer we're given to - // set the new value. - clear_type(); - if (value) { - set_has_ticks(); - _impl_.type_.ticks_ = value; - } - // @@protoc_insertion_point(field_unsafe_arena_set_allocated:io.deephaven.proto.backplane.grpc.UpdateByWindowScale.ticks) -} -inline ::io::deephaven::proto::backplane::grpc::UpdateByWindowScale_UpdateByWindowTicks* UpdateByWindowScale::_internal_mutable_ticks() { - if (type_case() != kTicks) { - clear_type(); - set_has_ticks(); - _impl_.type_.ticks_ = - ::google::protobuf::Message::DefaultConstruct<::io::deephaven::proto::backplane::grpc::UpdateByWindowScale_UpdateByWindowTicks>(GetArena()); - } - return _impl_.type_.ticks_; -} -inline ::io::deephaven::proto::backplane::grpc::UpdateByWindowScale_UpdateByWindowTicks* UpdateByWindowScale::mutable_ticks() ABSL_ATTRIBUTE_LIFETIME_BOUND { - ::io::deephaven::proto::backplane::grpc::UpdateByWindowScale_UpdateByWindowTicks* _msg = _internal_mutable_ticks(); - // @@protoc_insertion_point(field_mutable:io.deephaven.proto.backplane.grpc.UpdateByWindowScale.ticks) - return _msg; -} - -// .io.deephaven.proto.backplane.grpc.UpdateByWindowScale.UpdateByWindowTime time = 2; -inline bool UpdateByWindowScale::has_time() const { - return type_case() == kTime; -} -inline bool UpdateByWindowScale::_internal_has_time() const { - return type_case() == kTime; -} -inline void UpdateByWindowScale::set_has_time() { - _impl_._oneof_case_[0] = kTime; -} -inline void UpdateByWindowScale::clear_time() { - ::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(); - } -} -inline ::io::deephaven::proto::backplane::grpc::UpdateByWindowScale_UpdateByWindowTime* UpdateByWindowScale::release_time() { - // @@protoc_insertion_point(field_release:io.deephaven.proto.backplane.grpc.UpdateByWindowScale.time) - if (type_case() == kTime) { - clear_has_type(); - auto* temp = _impl_.type_.time_; - if (GetArena() != nullptr) { - temp = ::google::protobuf::internal::DuplicateIfNonNull(temp); - } - _impl_.type_.time_ = nullptr; - return temp; - } else { - return nullptr; - } -} -inline const ::io::deephaven::proto::backplane::grpc::UpdateByWindowScale_UpdateByWindowTime& UpdateByWindowScale::_internal_time() const { - return type_case() == kTime ? *_impl_.type_.time_ : reinterpret_cast<::io::deephaven::proto::backplane::grpc::UpdateByWindowScale_UpdateByWindowTime&>(::io::deephaven::proto::backplane::grpc::_UpdateByWindowScale_UpdateByWindowTime_default_instance_); -} -inline const ::io::deephaven::proto::backplane::grpc::UpdateByWindowScale_UpdateByWindowTime& UpdateByWindowScale::time() const ABSL_ATTRIBUTE_LIFETIME_BOUND { - // @@protoc_insertion_point(field_get:io.deephaven.proto.backplane.grpc.UpdateByWindowScale.time) - return _internal_time(); -} -inline ::io::deephaven::proto::backplane::grpc::UpdateByWindowScale_UpdateByWindowTime* UpdateByWindowScale::unsafe_arena_release_time() { - // @@protoc_insertion_point(field_unsafe_arena_release:io.deephaven.proto.backplane.grpc.UpdateByWindowScale.time) - if (type_case() == kTime) { - clear_has_type(); - auto* temp = _impl_.type_.time_; - _impl_.type_.time_ = nullptr; - return temp; - } else { - return nullptr; - } -} -inline void UpdateByWindowScale::unsafe_arena_set_allocated_time(::io::deephaven::proto::backplane::grpc::UpdateByWindowScale_UpdateByWindowTime* value) { - // We rely on the oneof clear method to free the earlier contents - // of this oneof. We can directly use the pointer we're given to - // set the new value. - clear_type(); - if (value) { - set_has_time(); - _impl_.type_.time_ = value; - } - // @@protoc_insertion_point(field_unsafe_arena_set_allocated:io.deephaven.proto.backplane.grpc.UpdateByWindowScale.time) -} -inline ::io::deephaven::proto::backplane::grpc::UpdateByWindowScale_UpdateByWindowTime* UpdateByWindowScale::_internal_mutable_time() { - if (type_case() != kTime) { - clear_type(); - set_has_time(); - _impl_.type_.time_ = - ::google::protobuf::Message::DefaultConstruct<::io::deephaven::proto::backplane::grpc::UpdateByWindowScale_UpdateByWindowTime>(GetArena()); - } - return _impl_.type_.time_; -} -inline ::io::deephaven::proto::backplane::grpc::UpdateByWindowScale_UpdateByWindowTime* UpdateByWindowScale::mutable_time() ABSL_ATTRIBUTE_LIFETIME_BOUND { - ::io::deephaven::proto::backplane::grpc::UpdateByWindowScale_UpdateByWindowTime* _msg = _internal_mutable_time(); - // @@protoc_insertion_point(field_mutable:io.deephaven.proto.backplane.grpc.UpdateByWindowScale.time) - return _msg; -} - -inline bool UpdateByWindowScale::has_type() const { - return type_case() != TYPE_NOT_SET; -} -inline void UpdateByWindowScale::clear_has_type() { - _impl_._oneof_case_[0] = TYPE_NOT_SET; -} -inline UpdateByWindowScale::TypeCase UpdateByWindowScale::type_case() const { - return UpdateByWindowScale::TypeCase(_impl_._oneof_case_[0]); -} -// ------------------------------------------------------------------- - -// UpdateByEmOptions - -// .io.deephaven.proto.backplane.grpc.BadDataBehavior on_null_value = 1; -inline void UpdateByEmOptions::clear_on_null_value() { - ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.on_null_value_ = 0; -} -inline ::io::deephaven::proto::backplane::grpc::BadDataBehavior UpdateByEmOptions::on_null_value() const { - // @@protoc_insertion_point(field_get:io.deephaven.proto.backplane.grpc.UpdateByEmOptions.on_null_value) - return _internal_on_null_value(); -} -inline void UpdateByEmOptions::set_on_null_value(::io::deephaven::proto::backplane::grpc::BadDataBehavior value) { - _internal_set_on_null_value(value); - // @@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 { - ::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) { - ::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() { - ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.on_nan_value_ = 0; -} -inline ::io::deephaven::proto::backplane::grpc::BadDataBehavior UpdateByEmOptions::on_nan_value() const { - // @@protoc_insertion_point(field_get:io.deephaven.proto.backplane.grpc.UpdateByEmOptions.on_nan_value) - return _internal_on_nan_value(); -} -inline void UpdateByEmOptions::set_on_nan_value(::io::deephaven::proto::backplane::grpc::BadDataBehavior value) { - _internal_set_on_nan_value(value); - // @@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 { - ::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) { - ::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() { - ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.on_null_time_ = 0; -} -inline ::io::deephaven::proto::backplane::grpc::BadDataBehavior UpdateByEmOptions::on_null_time() const { - // @@protoc_insertion_point(field_get:io.deephaven.proto.backplane.grpc.UpdateByEmOptions.on_null_time) - return _internal_on_null_time(); -} -inline void UpdateByEmOptions::set_on_null_time(::io::deephaven::proto::backplane::grpc::BadDataBehavior value) { - _internal_set_on_null_time(value); - // @@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 { - ::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) { - ::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() { - ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.on_negative_delta_time_ = 0; -} -inline ::io::deephaven::proto::backplane::grpc::BadDataBehavior UpdateByEmOptions::on_negative_delta_time() const { - // @@protoc_insertion_point(field_get:io.deephaven.proto.backplane.grpc.UpdateByEmOptions.on_negative_delta_time) - return _internal_on_negative_delta_time(); -} -inline void UpdateByEmOptions::set_on_negative_delta_time(::io::deephaven::proto::backplane::grpc::BadDataBehavior value) { - _internal_set_on_negative_delta_time(value); - // @@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 { - ::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) { - ::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() { - ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.on_zero_delta_time_ = 0; -} -inline ::io::deephaven::proto::backplane::grpc::BadDataBehavior UpdateByEmOptions::on_zero_delta_time() const { - // @@protoc_insertion_point(field_get:io.deephaven.proto.backplane.grpc.UpdateByEmOptions.on_zero_delta_time) - return _internal_on_zero_delta_time(); -} -inline void UpdateByEmOptions::set_on_zero_delta_time(::io::deephaven::proto::backplane::grpc::BadDataBehavior value) { - _internal_set_on_zero_delta_time(value); - // @@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 { - ::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) { - ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.on_zero_delta_time_ = value; -} - -// .io.deephaven.proto.backplane.grpc.MathContext big_value_context = 6; -inline bool UpdateByEmOptions::has_big_value_context() const { - bool value = (_impl_._has_bits_[0] & 0x00000001u) != 0; - PROTOBUF_ASSUME(!value || _impl_.big_value_context_ != nullptr); - return value; -} -inline void UpdateByEmOptions::clear_big_value_context() { - ::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 { - ::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_); -} -inline const ::io::deephaven::proto::backplane::grpc::MathContext& UpdateByEmOptions::big_value_context() const ABSL_ATTRIBUTE_LIFETIME_BOUND { - // @@protoc_insertion_point(field_get:io.deephaven.proto.backplane.grpc.UpdateByEmOptions.big_value_context) - return _internal_big_value_context(); -} -inline void UpdateByEmOptions::unsafe_arena_set_allocated_big_value_context(::io::deephaven::proto::backplane::grpc::MathContext* value) { - ::google::protobuf::internal::TSanWrite(&_impl_); - if (GetArena() == nullptr) { - delete reinterpret_cast<::google::protobuf::MessageLite*>(_impl_.big_value_context_); - } - _impl_.big_value_context_ = reinterpret_cast<::io::deephaven::proto::backplane::grpc::MathContext*>(value); - if (value != nullptr) { - _impl_._has_bits_[0] |= 0x00000001u; - } else { - _impl_._has_bits_[0] &= ~0x00000001u; - } - // @@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() { - ::google::protobuf::internal::TSanWrite(&_impl_); - - _impl_._has_bits_[0] &= ~0x00000001u; - ::io::deephaven::proto::backplane::grpc::MathContext* released = _impl_.big_value_context_; - _impl_.big_value_context_ = nullptr; -#ifdef PROTOBUF_FORCE_COPY_IN_RELEASE - auto* old = reinterpret_cast<::google::protobuf::MessageLite*>(released); - released = ::google::protobuf::internal::DuplicateIfNonNull(released); - if (GetArena() == nullptr) { - delete old; - } -#else // PROTOBUF_FORCE_COPY_IN_RELEASE - if (GetArena() != nullptr) { - released = ::google::protobuf::internal::DuplicateIfNonNull(released); - } -#endif // !PROTOBUF_FORCE_COPY_IN_RELEASE - return released; -} -inline ::io::deephaven::proto::backplane::grpc::MathContext* UpdateByEmOptions::unsafe_arena_release_big_value_context() { - ::google::protobuf::internal::TSanWrite(&_impl_); - // @@protoc_insertion_point(field_release:io.deephaven.proto.backplane.grpc.UpdateByEmOptions.big_value_context) - - _impl_._has_bits_[0] &= ~0x00000001u; - ::io::deephaven::proto::backplane::grpc::MathContext* temp = _impl_.big_value_context_; - _impl_.big_value_context_ = nullptr; - return temp; -} -inline ::io::deephaven::proto::backplane::grpc::MathContext* UpdateByEmOptions::_internal_mutable_big_value_context() { - ::google::protobuf::internal::TSanWrite(&_impl_); - if (_impl_.big_value_context_ == nullptr) { - 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(); - ::google::protobuf::internal::TSanWrite(&_impl_); - if (message_arena == nullptr) { - delete (_impl_.big_value_context_); - } - - if (value != nullptr) { - ::google::protobuf::Arena* submessage_arena = (value)->GetArena(); - if (message_arena != submessage_arena) { - value = ::google::protobuf::internal::GetOwnedMessage(message_arena, value, submessage_arena); - } - _impl_._has_bits_[0] |= 0x00000001u; - } else { - _impl_._has_bits_[0] &= ~0x00000001u; - } - - _impl_.big_value_context_ = reinterpret_cast<::io::deephaven::proto::backplane::grpc::MathContext*>(value); - // @@protoc_insertion_point(field_set_allocated:io.deephaven.proto.backplane.grpc.UpdateByEmOptions.big_value_context) -} - -// ------------------------------------------------------------------- - -// UpdateByDeltaOptions - -// .io.deephaven.proto.backplane.grpc.UpdateByNullBehavior null_behavior = 1; -inline void UpdateByDeltaOptions::clear_null_behavior() { - ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.null_behavior_ = 0; -} -inline ::io::deephaven::proto::backplane::grpc::UpdateByNullBehavior UpdateByDeltaOptions::null_behavior() const { - // @@protoc_insertion_point(field_get:io.deephaven.proto.backplane.grpc.UpdateByDeltaOptions.null_behavior) - return _internal_null_behavior(); -} -inline void UpdateByDeltaOptions::set_null_behavior(::io::deephaven::proto::backplane::grpc::UpdateByNullBehavior value) { - _internal_set_null_behavior(value); - // @@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 { - ::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) { - ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.null_behavior_ = value; -} - -// ------------------------------------------------------------------- - -// UpdateByRequest_UpdateByOptions - -// optional bool use_redirection = 1; -inline bool UpdateByRequest_UpdateByOptions::has_use_redirection() const { - bool value = (_impl_._has_bits_[0] & 0x00000002u) != 0; - return value; -} -inline void UpdateByRequest_UpdateByOptions::clear_use_redirection() { - ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.use_redirection_ = false; - _impl_._has_bits_[0] &= ~0x00000002u; -} -inline bool UpdateByRequest_UpdateByOptions::use_redirection() const { - // @@protoc_insertion_point(field_get:io.deephaven.proto.backplane.grpc.UpdateByRequest.UpdateByOptions.use_redirection) - return _internal_use_redirection(); -} -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 { - ::google::protobuf::internal::TSanRead(&_impl_); - return _impl_.use_redirection_; -} -inline void UpdateByRequest_UpdateByOptions::_internal_set_use_redirection(bool value) { - ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.use_redirection_ = value; -} - -// optional int32 chunk_capacity = 2; -inline bool UpdateByRequest_UpdateByOptions::has_chunk_capacity() const { - bool value = (_impl_._has_bits_[0] & 0x00000004u) != 0; - return value; -} -inline void UpdateByRequest_UpdateByOptions::clear_chunk_capacity() { - ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.chunk_capacity_ = 0; - _impl_._has_bits_[0] &= ~0x00000004u; -} -inline ::int32_t UpdateByRequest_UpdateByOptions::chunk_capacity() const { - // @@protoc_insertion_point(field_get:io.deephaven.proto.backplane.grpc.UpdateByRequest.UpdateByOptions.chunk_capacity) - return _internal_chunk_capacity(); -} -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 { - ::google::protobuf::internal::TSanRead(&_impl_); - return _impl_.chunk_capacity_; -} -inline void UpdateByRequest_UpdateByOptions::_internal_set_chunk_capacity(::int32_t value) { - ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.chunk_capacity_ = value; -} - -// optional double max_static_sparse_memory_overhead = 3; -inline bool UpdateByRequest_UpdateByOptions::has_max_static_sparse_memory_overhead() const { - bool value = (_impl_._has_bits_[0] & 0x00000008u) != 0; - return value; -} -inline void UpdateByRequest_UpdateByOptions::clear_max_static_sparse_memory_overhead() { - ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.max_static_sparse_memory_overhead_ = 0; - _impl_._has_bits_[0] &= ~0x00000008u; -} -inline double UpdateByRequest_UpdateByOptions::max_static_sparse_memory_overhead() const { - // @@protoc_insertion_point(field_get:io.deephaven.proto.backplane.grpc.UpdateByRequest.UpdateByOptions.max_static_sparse_memory_overhead) - return _internal_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 { - ::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) { - ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.max_static_sparse_memory_overhead_ = value; -} - -// optional int32 initial_hash_table_size = 4; -inline bool UpdateByRequest_UpdateByOptions::has_initial_hash_table_size() const { - bool value = (_impl_._has_bits_[0] & 0x00000040u) != 0; - return value; -} -inline void UpdateByRequest_UpdateByOptions::clear_initial_hash_table_size() { - ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.initial_hash_table_size_ = 0; - _impl_._has_bits_[0] &= ~0x00000040u; -} -inline ::int32_t UpdateByRequest_UpdateByOptions::initial_hash_table_size() const { - // @@protoc_insertion_point(field_get:io.deephaven.proto.backplane.grpc.UpdateByRequest.UpdateByOptions.initial_hash_table_size) - return _internal_initial_hash_table_size(); -} -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 { - ::google::protobuf::internal::TSanRead(&_impl_); - return _impl_.initial_hash_table_size_; -} -inline void UpdateByRequest_UpdateByOptions::_internal_set_initial_hash_table_size(::int32_t value) { - ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.initial_hash_table_size_ = value; -} - -// optional double maximum_load_factor = 5; -inline bool UpdateByRequest_UpdateByOptions::has_maximum_load_factor() const { - bool value = (_impl_._has_bits_[0] & 0x00000010u) != 0; - return value; -} -inline void UpdateByRequest_UpdateByOptions::clear_maximum_load_factor() { - ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.maximum_load_factor_ = 0; - _impl_._has_bits_[0] &= ~0x00000010u; -} -inline double UpdateByRequest_UpdateByOptions::maximum_load_factor() const { - // @@protoc_insertion_point(field_get:io.deephaven.proto.backplane.grpc.UpdateByRequest.UpdateByOptions.maximum_load_factor) - return _internal_maximum_load_factor(); -} -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 { - ::google::protobuf::internal::TSanRead(&_impl_); - return _impl_.maximum_load_factor_; -} -inline void UpdateByRequest_UpdateByOptions::_internal_set_maximum_load_factor(double value) { - ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.maximum_load_factor_ = value; -} - -// optional double target_load_factor = 6; -inline bool UpdateByRequest_UpdateByOptions::has_target_load_factor() const { - bool value = (_impl_._has_bits_[0] & 0x00000020u) != 0; - return value; -} -inline void UpdateByRequest_UpdateByOptions::clear_target_load_factor() { - ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.target_load_factor_ = 0; - _impl_._has_bits_[0] &= ~0x00000020u; -} -inline double UpdateByRequest_UpdateByOptions::target_load_factor() const { - // @@protoc_insertion_point(field_get:io.deephaven.proto.backplane.grpc.UpdateByRequest.UpdateByOptions.target_load_factor) - return _internal_target_load_factor(); -} -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 { - ::google::protobuf::internal::TSanRead(&_impl_); - return _impl_.target_load_factor_; -} -inline void UpdateByRequest_UpdateByOptions::_internal_set_target_load_factor(double value) { - ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.target_load_factor_ = value; -} - -// .io.deephaven.proto.backplane.grpc.MathContext math_context = 7; -inline bool UpdateByRequest_UpdateByOptions::has_math_context() const { - bool value = (_impl_._has_bits_[0] & 0x00000001u) != 0; - PROTOBUF_ASSUME(!value || _impl_.math_context_ != nullptr); - return value; -} -inline void UpdateByRequest_UpdateByOptions::clear_math_context() { - ::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 { - ::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_); -} -inline const ::io::deephaven::proto::backplane::grpc::MathContext& UpdateByRequest_UpdateByOptions::math_context() const ABSL_ATTRIBUTE_LIFETIME_BOUND { - // @@protoc_insertion_point(field_get:io.deephaven.proto.backplane.grpc.UpdateByRequest.UpdateByOptions.math_context) - return _internal_math_context(); -} -inline void UpdateByRequest_UpdateByOptions::unsafe_arena_set_allocated_math_context(::io::deephaven::proto::backplane::grpc::MathContext* value) { - ::google::protobuf::internal::TSanWrite(&_impl_); - if (GetArena() == nullptr) { - delete reinterpret_cast<::google::protobuf::MessageLite*>(_impl_.math_context_); - } - _impl_.math_context_ = reinterpret_cast<::io::deephaven::proto::backplane::grpc::MathContext*>(value); - if (value != nullptr) { - _impl_._has_bits_[0] |= 0x00000001u; - } else { - _impl_._has_bits_[0] &= ~0x00000001u; - } - // @@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() { - ::google::protobuf::internal::TSanWrite(&_impl_); - - _impl_._has_bits_[0] &= ~0x00000001u; - ::io::deephaven::proto::backplane::grpc::MathContext* released = _impl_.math_context_; - _impl_.math_context_ = nullptr; -#ifdef PROTOBUF_FORCE_COPY_IN_RELEASE - auto* old = reinterpret_cast<::google::protobuf::MessageLite*>(released); - released = ::google::protobuf::internal::DuplicateIfNonNull(released); - if (GetArena() == nullptr) { - delete old; - } -#else // PROTOBUF_FORCE_COPY_IN_RELEASE - if (GetArena() != nullptr) { - released = ::google::protobuf::internal::DuplicateIfNonNull(released); - } -#endif // !PROTOBUF_FORCE_COPY_IN_RELEASE - return released; -} -inline ::io::deephaven::proto::backplane::grpc::MathContext* UpdateByRequest_UpdateByOptions::unsafe_arena_release_math_context() { - ::google::protobuf::internal::TSanWrite(&_impl_); - // @@protoc_insertion_point(field_release:io.deephaven.proto.backplane.grpc.UpdateByRequest.UpdateByOptions.math_context) - - _impl_._has_bits_[0] &= ~0x00000001u; - ::io::deephaven::proto::backplane::grpc::MathContext* temp = _impl_.math_context_; - _impl_.math_context_ = nullptr; - return temp; -} -inline ::io::deephaven::proto::backplane::grpc::MathContext* UpdateByRequest_UpdateByOptions::_internal_mutable_math_context() { - ::google::protobuf::internal::TSanWrite(&_impl_); - if (_impl_.math_context_ == nullptr) { - 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(); - ::google::protobuf::internal::TSanWrite(&_impl_); - if (message_arena == nullptr) { - delete (_impl_.math_context_); - } - - if (value != nullptr) { - ::google::protobuf::Arena* submessage_arena = (value)->GetArena(); - if (message_arena != submessage_arena) { - value = ::google::protobuf::internal::GetOwnedMessage(message_arena, value, submessage_arena); - } - _impl_._has_bits_[0] |= 0x00000001u; - } else { - _impl_._has_bits_[0] &= ~0x00000001u; - } - - _impl_.math_context_ = reinterpret_cast<::io::deephaven::proto::backplane::grpc::MathContext*>(value); - // @@protoc_insertion_point(field_set_allocated:io.deephaven.proto.backplane.grpc.UpdateByRequest.UpdateByOptions.math_context) -} - -// ------------------------------------------------------------------- - -// UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByCumulativeSum - -// ------------------------------------------------------------------- - -// UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByCumulativeMin - -// ------------------------------------------------------------------- - -// UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByCumulativeMax - -// ------------------------------------------------------------------- - -// UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByCumulativeProduct - -// ------------------------------------------------------------------- - -// UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByFill - -// ------------------------------------------------------------------- - -// UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByEma - -// .io.deephaven.proto.backplane.grpc.UpdateByEmOptions options = 1; -inline bool UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByEma::has_options() const { - bool value = (_impl_._has_bits_[0] & 0x00000001u) != 0; - PROTOBUF_ASSUME(!value || _impl_.options_ != nullptr); - return value; -} -inline void UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByEma::clear_options() { - ::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 { - ::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_); -} -inline const ::io::deephaven::proto::backplane::grpc::UpdateByEmOptions& UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByEma::options() const ABSL_ATTRIBUTE_LIFETIME_BOUND { - // @@protoc_insertion_point(field_get:io.deephaven.proto.backplane.grpc.UpdateByRequest.UpdateByOperation.UpdateByColumn.UpdateBySpec.UpdateByEma.options) - return _internal_options(); -} -inline void UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByEma::unsafe_arena_set_allocated_options(::io::deephaven::proto::backplane::grpc::UpdateByEmOptions* value) { - ::google::protobuf::internal::TSanWrite(&_impl_); - if (GetArena() == nullptr) { - delete reinterpret_cast<::google::protobuf::MessageLite*>(_impl_.options_); - } - _impl_.options_ = reinterpret_cast<::io::deephaven::proto::backplane::grpc::UpdateByEmOptions*>(value); - if (value != nullptr) { - _impl_._has_bits_[0] |= 0x00000001u; - } else { - _impl_._has_bits_[0] &= ~0x00000001u; - } - // @@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() { - ::google::protobuf::internal::TSanWrite(&_impl_); - - _impl_._has_bits_[0] &= ~0x00000001u; - ::io::deephaven::proto::backplane::grpc::UpdateByEmOptions* released = _impl_.options_; - _impl_.options_ = nullptr; -#ifdef PROTOBUF_FORCE_COPY_IN_RELEASE - auto* old = reinterpret_cast<::google::protobuf::MessageLite*>(released); - released = ::google::protobuf::internal::DuplicateIfNonNull(released); - if (GetArena() == nullptr) { - delete old; - } -#else // PROTOBUF_FORCE_COPY_IN_RELEASE - if (GetArena() != nullptr) { - released = ::google::protobuf::internal::DuplicateIfNonNull(released); - } -#endif // !PROTOBUF_FORCE_COPY_IN_RELEASE - return released; -} -inline ::io::deephaven::proto::backplane::grpc::UpdateByEmOptions* UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByEma::unsafe_arena_release_options() { - ::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; - ::io::deephaven::proto::backplane::grpc::UpdateByEmOptions* temp = _impl_.options_; - _impl_.options_ = nullptr; - return temp; -} -inline ::io::deephaven::proto::backplane::grpc::UpdateByEmOptions* UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByEma::_internal_mutable_options() { - ::google::protobuf::internal::TSanWrite(&_impl_); - if (_impl_.options_ == nullptr) { - 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(); - ::google::protobuf::internal::TSanWrite(&_impl_); - if (message_arena == nullptr) { - delete (_impl_.options_); - } - - if (value != nullptr) { - ::google::protobuf::Arena* submessage_arena = (value)->GetArena(); - if (message_arena != submessage_arena) { - value = ::google::protobuf::internal::GetOwnedMessage(message_arena, value, submessage_arena); - } - _impl_._has_bits_[0] |= 0x00000001u; - } else { - _impl_._has_bits_[0] &= ~0x00000001u; - } - - _impl_.options_ = reinterpret_cast<::io::deephaven::proto::backplane::grpc::UpdateByEmOptions*>(value); - // @@protoc_insertion_point(field_set_allocated:io.deephaven.proto.backplane.grpc.UpdateByRequest.UpdateByOperation.UpdateByColumn.UpdateBySpec.UpdateByEma.options) -} - -// .io.deephaven.proto.backplane.grpc.UpdateByWindowScale window_scale = 2; -inline bool UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByEma::has_window_scale() const { - bool value = (_impl_._has_bits_[0] & 0x00000002u) != 0; - PROTOBUF_ASSUME(!value || _impl_.window_scale_ != nullptr); - return value; -} -inline void UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByEma::clear_window_scale() { - ::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 { - ::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_); -} -inline const ::io::deephaven::proto::backplane::grpc::UpdateByWindowScale& UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByEma::window_scale() const ABSL_ATTRIBUTE_LIFETIME_BOUND { - // @@protoc_insertion_point(field_get:io.deephaven.proto.backplane.grpc.UpdateByRequest.UpdateByOperation.UpdateByColumn.UpdateBySpec.UpdateByEma.window_scale) - return _internal_window_scale(); -} -inline void UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByEma::unsafe_arena_set_allocated_window_scale(::io::deephaven::proto::backplane::grpc::UpdateByWindowScale* value) { - ::google::protobuf::internal::TSanWrite(&_impl_); - if (GetArena() == nullptr) { - delete reinterpret_cast<::google::protobuf::MessageLite*>(_impl_.window_scale_); - } - _impl_.window_scale_ = reinterpret_cast<::io::deephaven::proto::backplane::grpc::UpdateByWindowScale*>(value); - if (value != nullptr) { - _impl_._has_bits_[0] |= 0x00000002u; - } else { - _impl_._has_bits_[0] &= ~0x00000002u; - } - // @@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() { - ::google::protobuf::internal::TSanWrite(&_impl_); - - _impl_._has_bits_[0] &= ~0x00000002u; - ::io::deephaven::proto::backplane::grpc::UpdateByWindowScale* released = _impl_.window_scale_; - _impl_.window_scale_ = nullptr; -#ifdef PROTOBUF_FORCE_COPY_IN_RELEASE - auto* old = reinterpret_cast<::google::protobuf::MessageLite*>(released); - released = ::google::protobuf::internal::DuplicateIfNonNull(released); - if (GetArena() == nullptr) { - delete old; - } -#else // PROTOBUF_FORCE_COPY_IN_RELEASE - if (GetArena() != nullptr) { - released = ::google::protobuf::internal::DuplicateIfNonNull(released); - } -#endif // !PROTOBUF_FORCE_COPY_IN_RELEASE - return released; -} -inline ::io::deephaven::proto::backplane::grpc::UpdateByWindowScale* UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByEma::unsafe_arena_release_window_scale() { - ::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; - ::io::deephaven::proto::backplane::grpc::UpdateByWindowScale* temp = _impl_.window_scale_; - _impl_.window_scale_ = nullptr; - return temp; -} -inline ::io::deephaven::proto::backplane::grpc::UpdateByWindowScale* UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByEma::_internal_mutable_window_scale() { - ::google::protobuf::internal::TSanWrite(&_impl_); - if (_impl_.window_scale_ == nullptr) { - 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(); - ::google::protobuf::internal::TSanWrite(&_impl_); - if (message_arena == nullptr) { - delete (_impl_.window_scale_); - } - - if (value != nullptr) { - ::google::protobuf::Arena* submessage_arena = (value)->GetArena(); - if (message_arena != submessage_arena) { - value = ::google::protobuf::internal::GetOwnedMessage(message_arena, value, submessage_arena); - } - _impl_._has_bits_[0] |= 0x00000002u; - } else { - _impl_._has_bits_[0] &= ~0x00000002u; - } - - _impl_.window_scale_ = reinterpret_cast<::io::deephaven::proto::backplane::grpc::UpdateByWindowScale*>(value); - // @@protoc_insertion_point(field_set_allocated:io.deephaven.proto.backplane.grpc.UpdateByRequest.UpdateByOperation.UpdateByColumn.UpdateBySpec.UpdateByEma.window_scale) -} - -// ------------------------------------------------------------------- - -// UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByEms - -// .io.deephaven.proto.backplane.grpc.UpdateByEmOptions options = 1; -inline bool UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByEms::has_options() const { - bool value = (_impl_._has_bits_[0] & 0x00000001u) != 0; - PROTOBUF_ASSUME(!value || _impl_.options_ != nullptr); - return value; -} -inline void UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByEms::clear_options() { - ::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 { - ::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_); -} -inline const ::io::deephaven::proto::backplane::grpc::UpdateByEmOptions& UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByEms::options() const ABSL_ATTRIBUTE_LIFETIME_BOUND { - // @@protoc_insertion_point(field_get:io.deephaven.proto.backplane.grpc.UpdateByRequest.UpdateByOperation.UpdateByColumn.UpdateBySpec.UpdateByEms.options) - return _internal_options(); -} -inline void UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByEms::unsafe_arena_set_allocated_options(::io::deephaven::proto::backplane::grpc::UpdateByEmOptions* value) { - ::google::protobuf::internal::TSanWrite(&_impl_); - if (GetArena() == nullptr) { - delete reinterpret_cast<::google::protobuf::MessageLite*>(_impl_.options_); - } - _impl_.options_ = reinterpret_cast<::io::deephaven::proto::backplane::grpc::UpdateByEmOptions*>(value); - if (value != nullptr) { - _impl_._has_bits_[0] |= 0x00000001u; - } else { - _impl_._has_bits_[0] &= ~0x00000001u; - } - // @@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() { - ::google::protobuf::internal::TSanWrite(&_impl_); - - _impl_._has_bits_[0] &= ~0x00000001u; - ::io::deephaven::proto::backplane::grpc::UpdateByEmOptions* released = _impl_.options_; - _impl_.options_ = nullptr; -#ifdef PROTOBUF_FORCE_COPY_IN_RELEASE - auto* old = reinterpret_cast<::google::protobuf::MessageLite*>(released); - released = ::google::protobuf::internal::DuplicateIfNonNull(released); - if (GetArena() == nullptr) { - delete old; - } -#else // PROTOBUF_FORCE_COPY_IN_RELEASE - if (GetArena() != nullptr) { - released = ::google::protobuf::internal::DuplicateIfNonNull(released); - } -#endif // !PROTOBUF_FORCE_COPY_IN_RELEASE - return released; -} -inline ::io::deephaven::proto::backplane::grpc::UpdateByEmOptions* UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByEms::unsafe_arena_release_options() { - ::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; - ::io::deephaven::proto::backplane::grpc::UpdateByEmOptions* temp = _impl_.options_; - _impl_.options_ = nullptr; - return temp; -} -inline ::io::deephaven::proto::backplane::grpc::UpdateByEmOptions* UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByEms::_internal_mutable_options() { - ::google::protobuf::internal::TSanWrite(&_impl_); - if (_impl_.options_ == nullptr) { - 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(); - ::google::protobuf::internal::TSanWrite(&_impl_); - if (message_arena == nullptr) { - delete (_impl_.options_); - } - - if (value != nullptr) { - ::google::protobuf::Arena* submessage_arena = (value)->GetArena(); - if (message_arena != submessage_arena) { - value = ::google::protobuf::internal::GetOwnedMessage(message_arena, value, submessage_arena); - } - _impl_._has_bits_[0] |= 0x00000001u; - } else { - _impl_._has_bits_[0] &= ~0x00000001u; - } - - _impl_.options_ = reinterpret_cast<::io::deephaven::proto::backplane::grpc::UpdateByEmOptions*>(value); - // @@protoc_insertion_point(field_set_allocated:io.deephaven.proto.backplane.grpc.UpdateByRequest.UpdateByOperation.UpdateByColumn.UpdateBySpec.UpdateByEms.options) -} - -// .io.deephaven.proto.backplane.grpc.UpdateByWindowScale window_scale = 2; -inline bool UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByEms::has_window_scale() const { - bool value = (_impl_._has_bits_[0] & 0x00000002u) != 0; - PROTOBUF_ASSUME(!value || _impl_.window_scale_ != nullptr); - return value; -} -inline void UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByEms::clear_window_scale() { - ::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 { - ::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_); -} -inline const ::io::deephaven::proto::backplane::grpc::UpdateByWindowScale& UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByEms::window_scale() const ABSL_ATTRIBUTE_LIFETIME_BOUND { - // @@protoc_insertion_point(field_get:io.deephaven.proto.backplane.grpc.UpdateByRequest.UpdateByOperation.UpdateByColumn.UpdateBySpec.UpdateByEms.window_scale) - return _internal_window_scale(); -} -inline void UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByEms::unsafe_arena_set_allocated_window_scale(::io::deephaven::proto::backplane::grpc::UpdateByWindowScale* value) { - ::google::protobuf::internal::TSanWrite(&_impl_); - if (GetArena() == nullptr) { - delete reinterpret_cast<::google::protobuf::MessageLite*>(_impl_.window_scale_); - } - _impl_.window_scale_ = reinterpret_cast<::io::deephaven::proto::backplane::grpc::UpdateByWindowScale*>(value); - if (value != nullptr) { - _impl_._has_bits_[0] |= 0x00000002u; - } else { - _impl_._has_bits_[0] &= ~0x00000002u; - } - // @@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() { - ::google::protobuf::internal::TSanWrite(&_impl_); - - _impl_._has_bits_[0] &= ~0x00000002u; - ::io::deephaven::proto::backplane::grpc::UpdateByWindowScale* released = _impl_.window_scale_; - _impl_.window_scale_ = nullptr; -#ifdef PROTOBUF_FORCE_COPY_IN_RELEASE - auto* old = reinterpret_cast<::google::protobuf::MessageLite*>(released); - released = ::google::protobuf::internal::DuplicateIfNonNull(released); - if (GetArena() == nullptr) { - delete old; - } -#else // PROTOBUF_FORCE_COPY_IN_RELEASE - if (GetArena() != nullptr) { - released = ::google::protobuf::internal::DuplicateIfNonNull(released); - } -#endif // !PROTOBUF_FORCE_COPY_IN_RELEASE - return released; -} -inline ::io::deephaven::proto::backplane::grpc::UpdateByWindowScale* UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByEms::unsafe_arena_release_window_scale() { - ::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; - ::io::deephaven::proto::backplane::grpc::UpdateByWindowScale* temp = _impl_.window_scale_; - _impl_.window_scale_ = nullptr; - return temp; -} -inline ::io::deephaven::proto::backplane::grpc::UpdateByWindowScale* UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByEms::_internal_mutable_window_scale() { - ::google::protobuf::internal::TSanWrite(&_impl_); - if (_impl_.window_scale_ == nullptr) { - 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(); - ::google::protobuf::internal::TSanWrite(&_impl_); - if (message_arena == nullptr) { - delete (_impl_.window_scale_); - } - - if (value != nullptr) { - ::google::protobuf::Arena* submessage_arena = (value)->GetArena(); - if (message_arena != submessage_arena) { - value = ::google::protobuf::internal::GetOwnedMessage(message_arena, value, submessage_arena); - } - _impl_._has_bits_[0] |= 0x00000002u; - } else { - _impl_._has_bits_[0] &= ~0x00000002u; - } - - _impl_.window_scale_ = reinterpret_cast<::io::deephaven::proto::backplane::grpc::UpdateByWindowScale*>(value); - // @@protoc_insertion_point(field_set_allocated:io.deephaven.proto.backplane.grpc.UpdateByRequest.UpdateByOperation.UpdateByColumn.UpdateBySpec.UpdateByEms.window_scale) -} - -// ------------------------------------------------------------------- - -// UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByEmMin - -// .io.deephaven.proto.backplane.grpc.UpdateByEmOptions options = 1; -inline bool UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByEmMin::has_options() const { - bool value = (_impl_._has_bits_[0] & 0x00000001u) != 0; - PROTOBUF_ASSUME(!value || _impl_.options_ != nullptr); - return value; -} -inline void UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByEmMin::clear_options() { - ::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 { - ::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_); -} -inline const ::io::deephaven::proto::backplane::grpc::UpdateByEmOptions& UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByEmMin::options() const ABSL_ATTRIBUTE_LIFETIME_BOUND { - // @@protoc_insertion_point(field_get:io.deephaven.proto.backplane.grpc.UpdateByRequest.UpdateByOperation.UpdateByColumn.UpdateBySpec.UpdateByEmMin.options) - return _internal_options(); -} -inline void UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByEmMin::unsafe_arena_set_allocated_options(::io::deephaven::proto::backplane::grpc::UpdateByEmOptions* value) { - ::google::protobuf::internal::TSanWrite(&_impl_); - if (GetArena() == nullptr) { - delete reinterpret_cast<::google::protobuf::MessageLite*>(_impl_.options_); - } - _impl_.options_ = reinterpret_cast<::io::deephaven::proto::backplane::grpc::UpdateByEmOptions*>(value); - if (value != nullptr) { - _impl_._has_bits_[0] |= 0x00000001u; - } else { - _impl_._has_bits_[0] &= ~0x00000001u; - } - // @@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() { - ::google::protobuf::internal::TSanWrite(&_impl_); - - _impl_._has_bits_[0] &= ~0x00000001u; - ::io::deephaven::proto::backplane::grpc::UpdateByEmOptions* released = _impl_.options_; - _impl_.options_ = nullptr; -#ifdef PROTOBUF_FORCE_COPY_IN_RELEASE - auto* old = reinterpret_cast<::google::protobuf::MessageLite*>(released); - released = ::google::protobuf::internal::DuplicateIfNonNull(released); - if (GetArena() == nullptr) { - delete old; - } -#else // PROTOBUF_FORCE_COPY_IN_RELEASE - if (GetArena() != nullptr) { - released = ::google::protobuf::internal::DuplicateIfNonNull(released); - } -#endif // !PROTOBUF_FORCE_COPY_IN_RELEASE - return released; -} -inline ::io::deephaven::proto::backplane::grpc::UpdateByEmOptions* UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByEmMin::unsafe_arena_release_options() { - ::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; - ::io::deephaven::proto::backplane::grpc::UpdateByEmOptions* temp = _impl_.options_; - _impl_.options_ = nullptr; - return temp; -} -inline ::io::deephaven::proto::backplane::grpc::UpdateByEmOptions* UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByEmMin::_internal_mutable_options() { - ::google::protobuf::internal::TSanWrite(&_impl_); - if (_impl_.options_ == nullptr) { - 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(); - ::google::protobuf::internal::TSanWrite(&_impl_); - if (message_arena == nullptr) { - delete (_impl_.options_); - } - - if (value != nullptr) { - ::google::protobuf::Arena* submessage_arena = (value)->GetArena(); - if (message_arena != submessage_arena) { - value = ::google::protobuf::internal::GetOwnedMessage(message_arena, value, submessage_arena); - } - _impl_._has_bits_[0] |= 0x00000001u; - } else { - _impl_._has_bits_[0] &= ~0x00000001u; - } - - _impl_.options_ = reinterpret_cast<::io::deephaven::proto::backplane::grpc::UpdateByEmOptions*>(value); - // @@protoc_insertion_point(field_set_allocated:io.deephaven.proto.backplane.grpc.UpdateByRequest.UpdateByOperation.UpdateByColumn.UpdateBySpec.UpdateByEmMin.options) -} - -// .io.deephaven.proto.backplane.grpc.UpdateByWindowScale window_scale = 2; -inline bool UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByEmMin::has_window_scale() const { - bool value = (_impl_._has_bits_[0] & 0x00000002u) != 0; - PROTOBUF_ASSUME(!value || _impl_.window_scale_ != nullptr); - return value; -} -inline void UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByEmMin::clear_window_scale() { - ::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 { - ::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_); -} -inline const ::io::deephaven::proto::backplane::grpc::UpdateByWindowScale& UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByEmMin::window_scale() const ABSL_ATTRIBUTE_LIFETIME_BOUND { - // @@protoc_insertion_point(field_get:io.deephaven.proto.backplane.grpc.UpdateByRequest.UpdateByOperation.UpdateByColumn.UpdateBySpec.UpdateByEmMin.window_scale) - return _internal_window_scale(); -} -inline void UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByEmMin::unsafe_arena_set_allocated_window_scale(::io::deephaven::proto::backplane::grpc::UpdateByWindowScale* value) { - ::google::protobuf::internal::TSanWrite(&_impl_); - if (GetArena() == nullptr) { - delete reinterpret_cast<::google::protobuf::MessageLite*>(_impl_.window_scale_); - } - _impl_.window_scale_ = reinterpret_cast<::io::deephaven::proto::backplane::grpc::UpdateByWindowScale*>(value); - if (value != nullptr) { - _impl_._has_bits_[0] |= 0x00000002u; - } else { - _impl_._has_bits_[0] &= ~0x00000002u; - } - // @@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() { - ::google::protobuf::internal::TSanWrite(&_impl_); - - _impl_._has_bits_[0] &= ~0x00000002u; - ::io::deephaven::proto::backplane::grpc::UpdateByWindowScale* released = _impl_.window_scale_; - _impl_.window_scale_ = nullptr; -#ifdef PROTOBUF_FORCE_COPY_IN_RELEASE - auto* old = reinterpret_cast<::google::protobuf::MessageLite*>(released); - released = ::google::protobuf::internal::DuplicateIfNonNull(released); - if (GetArena() == nullptr) { - delete old; - } -#else // PROTOBUF_FORCE_COPY_IN_RELEASE - if (GetArena() != nullptr) { - released = ::google::protobuf::internal::DuplicateIfNonNull(released); - } -#endif // !PROTOBUF_FORCE_COPY_IN_RELEASE - return released; -} -inline ::io::deephaven::proto::backplane::grpc::UpdateByWindowScale* UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByEmMin::unsafe_arena_release_window_scale() { - ::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; - ::io::deephaven::proto::backplane::grpc::UpdateByWindowScale* temp = _impl_.window_scale_; - _impl_.window_scale_ = nullptr; - return temp; -} -inline ::io::deephaven::proto::backplane::grpc::UpdateByWindowScale* UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByEmMin::_internal_mutable_window_scale() { - ::google::protobuf::internal::TSanWrite(&_impl_); - if (_impl_.window_scale_ == nullptr) { - 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(); - ::google::protobuf::internal::TSanWrite(&_impl_); - if (message_arena == nullptr) { - delete (_impl_.window_scale_); - } - - if (value != nullptr) { - ::google::protobuf::Arena* submessage_arena = (value)->GetArena(); - if (message_arena != submessage_arena) { - value = ::google::protobuf::internal::GetOwnedMessage(message_arena, value, submessage_arena); - } - _impl_._has_bits_[0] |= 0x00000002u; - } else { - _impl_._has_bits_[0] &= ~0x00000002u; - } - - _impl_.window_scale_ = reinterpret_cast<::io::deephaven::proto::backplane::grpc::UpdateByWindowScale*>(value); - // @@protoc_insertion_point(field_set_allocated:io.deephaven.proto.backplane.grpc.UpdateByRequest.UpdateByOperation.UpdateByColumn.UpdateBySpec.UpdateByEmMin.window_scale) -} - -// ------------------------------------------------------------------- - -// UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByEmMax - -// .io.deephaven.proto.backplane.grpc.UpdateByEmOptions options = 1; -inline bool UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByEmMax::has_options() const { - bool value = (_impl_._has_bits_[0] & 0x00000001u) != 0; - PROTOBUF_ASSUME(!value || _impl_.options_ != nullptr); - return value; -} -inline void UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByEmMax::clear_options() { - ::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 { - ::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_); -} -inline const ::io::deephaven::proto::backplane::grpc::UpdateByEmOptions& UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByEmMax::options() const ABSL_ATTRIBUTE_LIFETIME_BOUND { - // @@protoc_insertion_point(field_get:io.deephaven.proto.backplane.grpc.UpdateByRequest.UpdateByOperation.UpdateByColumn.UpdateBySpec.UpdateByEmMax.options) - return _internal_options(); -} -inline void UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByEmMax::unsafe_arena_set_allocated_options(::io::deephaven::proto::backplane::grpc::UpdateByEmOptions* value) { - ::google::protobuf::internal::TSanWrite(&_impl_); - if (GetArena() == nullptr) { - delete reinterpret_cast<::google::protobuf::MessageLite*>(_impl_.options_); - } - _impl_.options_ = reinterpret_cast<::io::deephaven::proto::backplane::grpc::UpdateByEmOptions*>(value); - if (value != nullptr) { - _impl_._has_bits_[0] |= 0x00000001u; - } else { - _impl_._has_bits_[0] &= ~0x00000001u; - } - // @@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() { - ::google::protobuf::internal::TSanWrite(&_impl_); - - _impl_._has_bits_[0] &= ~0x00000001u; - ::io::deephaven::proto::backplane::grpc::UpdateByEmOptions* released = _impl_.options_; - _impl_.options_ = nullptr; -#ifdef PROTOBUF_FORCE_COPY_IN_RELEASE - auto* old = reinterpret_cast<::google::protobuf::MessageLite*>(released); - released = ::google::protobuf::internal::DuplicateIfNonNull(released); - if (GetArena() == nullptr) { - delete old; - } -#else // PROTOBUF_FORCE_COPY_IN_RELEASE - if (GetArena() != nullptr) { - released = ::google::protobuf::internal::DuplicateIfNonNull(released); - } -#endif // !PROTOBUF_FORCE_COPY_IN_RELEASE - return released; -} -inline ::io::deephaven::proto::backplane::grpc::UpdateByEmOptions* UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByEmMax::unsafe_arena_release_options() { - ::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; - ::io::deephaven::proto::backplane::grpc::UpdateByEmOptions* temp = _impl_.options_; - _impl_.options_ = nullptr; - return temp; -} -inline ::io::deephaven::proto::backplane::grpc::UpdateByEmOptions* UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByEmMax::_internal_mutable_options() { - ::google::protobuf::internal::TSanWrite(&_impl_); - if (_impl_.options_ == nullptr) { - 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(); - ::google::protobuf::internal::TSanWrite(&_impl_); - if (message_arena == nullptr) { - delete (_impl_.options_); - } - - if (value != nullptr) { - ::google::protobuf::Arena* submessage_arena = (value)->GetArena(); - if (message_arena != submessage_arena) { - value = ::google::protobuf::internal::GetOwnedMessage(message_arena, value, submessage_arena); - } - _impl_._has_bits_[0] |= 0x00000001u; - } else { - _impl_._has_bits_[0] &= ~0x00000001u; - } - - _impl_.options_ = reinterpret_cast<::io::deephaven::proto::backplane::grpc::UpdateByEmOptions*>(value); - // @@protoc_insertion_point(field_set_allocated:io.deephaven.proto.backplane.grpc.UpdateByRequest.UpdateByOperation.UpdateByColumn.UpdateBySpec.UpdateByEmMax.options) -} - -// .io.deephaven.proto.backplane.grpc.UpdateByWindowScale window_scale = 2; -inline bool UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByEmMax::has_window_scale() const { - bool value = (_impl_._has_bits_[0] & 0x00000002u) != 0; - PROTOBUF_ASSUME(!value || _impl_.window_scale_ != nullptr); - return value; -} -inline void UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByEmMax::clear_window_scale() { - ::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 { - ::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_); -} -inline const ::io::deephaven::proto::backplane::grpc::UpdateByWindowScale& UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByEmMax::window_scale() const ABSL_ATTRIBUTE_LIFETIME_BOUND { - // @@protoc_insertion_point(field_get:io.deephaven.proto.backplane.grpc.UpdateByRequest.UpdateByOperation.UpdateByColumn.UpdateBySpec.UpdateByEmMax.window_scale) - return _internal_window_scale(); -} -inline void UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByEmMax::unsafe_arena_set_allocated_window_scale(::io::deephaven::proto::backplane::grpc::UpdateByWindowScale* value) { - ::google::protobuf::internal::TSanWrite(&_impl_); - if (GetArena() == nullptr) { - delete reinterpret_cast<::google::protobuf::MessageLite*>(_impl_.window_scale_); - } - _impl_.window_scale_ = reinterpret_cast<::io::deephaven::proto::backplane::grpc::UpdateByWindowScale*>(value); - if (value != nullptr) { - _impl_._has_bits_[0] |= 0x00000002u; - } else { - _impl_._has_bits_[0] &= ~0x00000002u; - } - // @@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() { - ::google::protobuf::internal::TSanWrite(&_impl_); - - _impl_._has_bits_[0] &= ~0x00000002u; - ::io::deephaven::proto::backplane::grpc::UpdateByWindowScale* released = _impl_.window_scale_; - _impl_.window_scale_ = nullptr; -#ifdef PROTOBUF_FORCE_COPY_IN_RELEASE - auto* old = reinterpret_cast<::google::protobuf::MessageLite*>(released); - released = ::google::protobuf::internal::DuplicateIfNonNull(released); - if (GetArena() == nullptr) { - delete old; - } -#else // PROTOBUF_FORCE_COPY_IN_RELEASE - if (GetArena() != nullptr) { - released = ::google::protobuf::internal::DuplicateIfNonNull(released); - } -#endif // !PROTOBUF_FORCE_COPY_IN_RELEASE - return released; -} -inline ::io::deephaven::proto::backplane::grpc::UpdateByWindowScale* UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByEmMax::unsafe_arena_release_window_scale() { - ::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; - ::io::deephaven::proto::backplane::grpc::UpdateByWindowScale* temp = _impl_.window_scale_; - _impl_.window_scale_ = nullptr; - return temp; -} -inline ::io::deephaven::proto::backplane::grpc::UpdateByWindowScale* UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByEmMax::_internal_mutable_window_scale() { - ::google::protobuf::internal::TSanWrite(&_impl_); - if (_impl_.window_scale_ == nullptr) { - 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(); - ::google::protobuf::internal::TSanWrite(&_impl_); - if (message_arena == nullptr) { - delete (_impl_.window_scale_); - } - - if (value != nullptr) { - ::google::protobuf::Arena* submessage_arena = (value)->GetArena(); - if (message_arena != submessage_arena) { - value = ::google::protobuf::internal::GetOwnedMessage(message_arena, value, submessage_arena); - } - _impl_._has_bits_[0] |= 0x00000002u; - } else { - _impl_._has_bits_[0] &= ~0x00000002u; - } - - _impl_.window_scale_ = reinterpret_cast<::io::deephaven::proto::backplane::grpc::UpdateByWindowScale*>(value); - // @@protoc_insertion_point(field_set_allocated:io.deephaven.proto.backplane.grpc.UpdateByRequest.UpdateByOperation.UpdateByColumn.UpdateBySpec.UpdateByEmMax.window_scale) -} - -// ------------------------------------------------------------------- - -// UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByEmStd - -// .io.deephaven.proto.backplane.grpc.UpdateByEmOptions options = 1; -inline bool UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByEmStd::has_options() const { - bool value = (_impl_._has_bits_[0] & 0x00000001u) != 0; - PROTOBUF_ASSUME(!value || _impl_.options_ != nullptr); - return value; -} -inline void UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByEmStd::clear_options() { - ::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 { - ::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_); -} -inline const ::io::deephaven::proto::backplane::grpc::UpdateByEmOptions& UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByEmStd::options() const ABSL_ATTRIBUTE_LIFETIME_BOUND { - // @@protoc_insertion_point(field_get:io.deephaven.proto.backplane.grpc.UpdateByRequest.UpdateByOperation.UpdateByColumn.UpdateBySpec.UpdateByEmStd.options) - return _internal_options(); -} -inline void UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByEmStd::unsafe_arena_set_allocated_options(::io::deephaven::proto::backplane::grpc::UpdateByEmOptions* value) { - ::google::protobuf::internal::TSanWrite(&_impl_); - if (GetArena() == nullptr) { - delete reinterpret_cast<::google::protobuf::MessageLite*>(_impl_.options_); - } - _impl_.options_ = reinterpret_cast<::io::deephaven::proto::backplane::grpc::UpdateByEmOptions*>(value); - if (value != nullptr) { - _impl_._has_bits_[0] |= 0x00000001u; - } else { - _impl_._has_bits_[0] &= ~0x00000001u; - } - // @@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() { - ::google::protobuf::internal::TSanWrite(&_impl_); - - _impl_._has_bits_[0] &= ~0x00000001u; - ::io::deephaven::proto::backplane::grpc::UpdateByEmOptions* released = _impl_.options_; - _impl_.options_ = nullptr; -#ifdef PROTOBUF_FORCE_COPY_IN_RELEASE - auto* old = reinterpret_cast<::google::protobuf::MessageLite*>(released); - released = ::google::protobuf::internal::DuplicateIfNonNull(released); - if (GetArena() == nullptr) { - delete old; - } -#else // PROTOBUF_FORCE_COPY_IN_RELEASE - if (GetArena() != nullptr) { - released = ::google::protobuf::internal::DuplicateIfNonNull(released); - } -#endif // !PROTOBUF_FORCE_COPY_IN_RELEASE - return released; -} -inline ::io::deephaven::proto::backplane::grpc::UpdateByEmOptions* UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByEmStd::unsafe_arena_release_options() { - ::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; - ::io::deephaven::proto::backplane::grpc::UpdateByEmOptions* temp = _impl_.options_; - _impl_.options_ = nullptr; - return temp; -} -inline ::io::deephaven::proto::backplane::grpc::UpdateByEmOptions* UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByEmStd::_internal_mutable_options() { - ::google::protobuf::internal::TSanWrite(&_impl_); - if (_impl_.options_ == nullptr) { - 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(); - ::google::protobuf::internal::TSanWrite(&_impl_); - if (message_arena == nullptr) { - delete (_impl_.options_); - } - - if (value != nullptr) { - ::google::protobuf::Arena* submessage_arena = (value)->GetArena(); - if (message_arena != submessage_arena) { - value = ::google::protobuf::internal::GetOwnedMessage(message_arena, value, submessage_arena); - } - _impl_._has_bits_[0] |= 0x00000001u; - } else { - _impl_._has_bits_[0] &= ~0x00000001u; - } - - _impl_.options_ = reinterpret_cast<::io::deephaven::proto::backplane::grpc::UpdateByEmOptions*>(value); - // @@protoc_insertion_point(field_set_allocated:io.deephaven.proto.backplane.grpc.UpdateByRequest.UpdateByOperation.UpdateByColumn.UpdateBySpec.UpdateByEmStd.options) -} - -// .io.deephaven.proto.backplane.grpc.UpdateByWindowScale window_scale = 2; -inline bool UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByEmStd::has_window_scale() const { - bool value = (_impl_._has_bits_[0] & 0x00000002u) != 0; - PROTOBUF_ASSUME(!value || _impl_.window_scale_ != nullptr); - return value; -} -inline void UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByEmStd::clear_window_scale() { - ::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 { - ::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_); -} -inline const ::io::deephaven::proto::backplane::grpc::UpdateByWindowScale& UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByEmStd::window_scale() const ABSL_ATTRIBUTE_LIFETIME_BOUND { - // @@protoc_insertion_point(field_get:io.deephaven.proto.backplane.grpc.UpdateByRequest.UpdateByOperation.UpdateByColumn.UpdateBySpec.UpdateByEmStd.window_scale) - return _internal_window_scale(); -} -inline void UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByEmStd::unsafe_arena_set_allocated_window_scale(::io::deephaven::proto::backplane::grpc::UpdateByWindowScale* value) { - ::google::protobuf::internal::TSanWrite(&_impl_); - if (GetArena() == nullptr) { - delete reinterpret_cast<::google::protobuf::MessageLite*>(_impl_.window_scale_); - } - _impl_.window_scale_ = reinterpret_cast<::io::deephaven::proto::backplane::grpc::UpdateByWindowScale*>(value); - if (value != nullptr) { - _impl_._has_bits_[0] |= 0x00000002u; - } else { - _impl_._has_bits_[0] &= ~0x00000002u; - } - // @@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() { - ::google::protobuf::internal::TSanWrite(&_impl_); - - _impl_._has_bits_[0] &= ~0x00000002u; - ::io::deephaven::proto::backplane::grpc::UpdateByWindowScale* released = _impl_.window_scale_; - _impl_.window_scale_ = nullptr; -#ifdef PROTOBUF_FORCE_COPY_IN_RELEASE - auto* old = reinterpret_cast<::google::protobuf::MessageLite*>(released); - released = ::google::protobuf::internal::DuplicateIfNonNull(released); - if (GetArena() == nullptr) { - delete old; - } -#else // PROTOBUF_FORCE_COPY_IN_RELEASE - if (GetArena() != nullptr) { - released = ::google::protobuf::internal::DuplicateIfNonNull(released); - } -#endif // !PROTOBUF_FORCE_COPY_IN_RELEASE - return released; -} -inline ::io::deephaven::proto::backplane::grpc::UpdateByWindowScale* UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByEmStd::unsafe_arena_release_window_scale() { - ::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; - ::io::deephaven::proto::backplane::grpc::UpdateByWindowScale* temp = _impl_.window_scale_; - _impl_.window_scale_ = nullptr; - return temp; -} -inline ::io::deephaven::proto::backplane::grpc::UpdateByWindowScale* UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByEmStd::_internal_mutable_window_scale() { - ::google::protobuf::internal::TSanWrite(&_impl_); - if (_impl_.window_scale_ == nullptr) { - 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(); - ::google::protobuf::internal::TSanWrite(&_impl_); - if (message_arena == nullptr) { - delete (_impl_.window_scale_); - } - - if (value != nullptr) { - ::google::protobuf::Arena* submessage_arena = (value)->GetArena(); - if (message_arena != submessage_arena) { - value = ::google::protobuf::internal::GetOwnedMessage(message_arena, value, submessage_arena); - } - _impl_._has_bits_[0] |= 0x00000002u; - } else { - _impl_._has_bits_[0] &= ~0x00000002u; - } - - _impl_.window_scale_ = reinterpret_cast<::io::deephaven::proto::backplane::grpc::UpdateByWindowScale*>(value); - // @@protoc_insertion_point(field_set_allocated:io.deephaven.proto.backplane.grpc.UpdateByRequest.UpdateByOperation.UpdateByColumn.UpdateBySpec.UpdateByEmStd.window_scale) -} - -// ------------------------------------------------------------------- - -// UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByDelta - -// .io.deephaven.proto.backplane.grpc.UpdateByDeltaOptions options = 1; -inline bool UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByDelta::has_options() const { - bool value = (_impl_._has_bits_[0] & 0x00000001u) != 0; - PROTOBUF_ASSUME(!value || _impl_.options_ != nullptr); - return value; -} -inline void UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByDelta::clear_options() { - ::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 { - ::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_); -} -inline const ::io::deephaven::proto::backplane::grpc::UpdateByDeltaOptions& UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByDelta::options() const ABSL_ATTRIBUTE_LIFETIME_BOUND { - // @@protoc_insertion_point(field_get:io.deephaven.proto.backplane.grpc.UpdateByRequest.UpdateByOperation.UpdateByColumn.UpdateBySpec.UpdateByDelta.options) - return _internal_options(); -} -inline void UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByDelta::unsafe_arena_set_allocated_options(::io::deephaven::proto::backplane::grpc::UpdateByDeltaOptions* value) { - ::google::protobuf::internal::TSanWrite(&_impl_); - if (GetArena() == nullptr) { - delete reinterpret_cast<::google::protobuf::MessageLite*>(_impl_.options_); - } - _impl_.options_ = reinterpret_cast<::io::deephaven::proto::backplane::grpc::UpdateByDeltaOptions*>(value); - if (value != nullptr) { - _impl_._has_bits_[0] |= 0x00000001u; - } else { - _impl_._has_bits_[0] &= ~0x00000001u; - } - // @@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() { - ::google::protobuf::internal::TSanWrite(&_impl_); - - _impl_._has_bits_[0] &= ~0x00000001u; - ::io::deephaven::proto::backplane::grpc::UpdateByDeltaOptions* released = _impl_.options_; - _impl_.options_ = nullptr; -#ifdef PROTOBUF_FORCE_COPY_IN_RELEASE - auto* old = reinterpret_cast<::google::protobuf::MessageLite*>(released); - released = ::google::protobuf::internal::DuplicateIfNonNull(released); - if (GetArena() == nullptr) { - delete old; - } -#else // PROTOBUF_FORCE_COPY_IN_RELEASE - if (GetArena() != nullptr) { - released = ::google::protobuf::internal::DuplicateIfNonNull(released); - } -#endif // !PROTOBUF_FORCE_COPY_IN_RELEASE - return released; -} -inline ::io::deephaven::proto::backplane::grpc::UpdateByDeltaOptions* UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByDelta::unsafe_arena_release_options() { - ::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; - ::io::deephaven::proto::backplane::grpc::UpdateByDeltaOptions* temp = _impl_.options_; - _impl_.options_ = nullptr; - return temp; -} -inline ::io::deephaven::proto::backplane::grpc::UpdateByDeltaOptions* UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByDelta::_internal_mutable_options() { - ::google::protobuf::internal::TSanWrite(&_impl_); - if (_impl_.options_ == nullptr) { - 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(); - ::google::protobuf::internal::TSanWrite(&_impl_); - if (message_arena == nullptr) { - delete (_impl_.options_); - } - - if (value != nullptr) { - ::google::protobuf::Arena* submessage_arena = (value)->GetArena(); - if (message_arena != submessage_arena) { - value = ::google::protobuf::internal::GetOwnedMessage(message_arena, value, submessage_arena); - } - _impl_._has_bits_[0] |= 0x00000001u; - } else { - _impl_._has_bits_[0] &= ~0x00000001u; - } - - _impl_.options_ = reinterpret_cast<::io::deephaven::proto::backplane::grpc::UpdateByDeltaOptions*>(value); - // @@protoc_insertion_point(field_set_allocated:io.deephaven.proto.backplane.grpc.UpdateByRequest.UpdateByOperation.UpdateByColumn.UpdateBySpec.UpdateByDelta.options) -} - -// ------------------------------------------------------------------- - -// UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingSum - -// .io.deephaven.proto.backplane.grpc.UpdateByWindowScale reverse_window_scale = 1; -inline bool UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingSum::has_reverse_window_scale() const { - bool value = (_impl_._has_bits_[0] & 0x00000001u) != 0; - PROTOBUF_ASSUME(!value || _impl_.reverse_window_scale_ != nullptr); - return value; -} -inline void UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingSum::clear_reverse_window_scale() { - ::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 { - ::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_); -} -inline const ::io::deephaven::proto::backplane::grpc::UpdateByWindowScale& UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingSum::reverse_window_scale() const ABSL_ATTRIBUTE_LIFETIME_BOUND { - // @@protoc_insertion_point(field_get:io.deephaven.proto.backplane.grpc.UpdateByRequest.UpdateByOperation.UpdateByColumn.UpdateBySpec.UpdateByRollingSum.reverse_window_scale) - 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) { - ::google::protobuf::internal::TSanWrite(&_impl_); - if (GetArena() == nullptr) { - delete reinterpret_cast<::google::protobuf::MessageLite*>(_impl_.reverse_window_scale_); - } - _impl_.reverse_window_scale_ = reinterpret_cast<::io::deephaven::proto::backplane::grpc::UpdateByWindowScale*>(value); - if (value != nullptr) { - _impl_._has_bits_[0] |= 0x00000001u; - } else { - _impl_._has_bits_[0] &= ~0x00000001u; - } - // @@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() { - ::google::protobuf::internal::TSanWrite(&_impl_); - - _impl_._has_bits_[0] &= ~0x00000001u; - ::io::deephaven::proto::backplane::grpc::UpdateByWindowScale* released = _impl_.reverse_window_scale_; - _impl_.reverse_window_scale_ = nullptr; -#ifdef PROTOBUF_FORCE_COPY_IN_RELEASE - auto* old = reinterpret_cast<::google::protobuf::MessageLite*>(released); - released = ::google::protobuf::internal::DuplicateIfNonNull(released); - if (GetArena() == nullptr) { - delete old; - } -#else // PROTOBUF_FORCE_COPY_IN_RELEASE - if (GetArena() != nullptr) { - released = ::google::protobuf::internal::DuplicateIfNonNull(released); - } -#endif // !PROTOBUF_FORCE_COPY_IN_RELEASE - return released; -} -inline ::io::deephaven::proto::backplane::grpc::UpdateByWindowScale* UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingSum::unsafe_arena_release_reverse_window_scale() { - ::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; - ::io::deephaven::proto::backplane::grpc::UpdateByWindowScale* temp = _impl_.reverse_window_scale_; - _impl_.reverse_window_scale_ = nullptr; - return temp; -} -inline ::io::deephaven::proto::backplane::grpc::UpdateByWindowScale* UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingSum::_internal_mutable_reverse_window_scale() { - ::google::protobuf::internal::TSanWrite(&_impl_); - if (_impl_.reverse_window_scale_ == nullptr) { - 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(); - ::google::protobuf::internal::TSanWrite(&_impl_); - if (message_arena == nullptr) { - delete (_impl_.reverse_window_scale_); - } - - if (value != nullptr) { - ::google::protobuf::Arena* submessage_arena = (value)->GetArena(); - if (message_arena != submessage_arena) { - value = ::google::protobuf::internal::GetOwnedMessage(message_arena, value, submessage_arena); - } - _impl_._has_bits_[0] |= 0x00000001u; - } else { - _impl_._has_bits_[0] &= ~0x00000001u; - } - - _impl_.reverse_window_scale_ = reinterpret_cast<::io::deephaven::proto::backplane::grpc::UpdateByWindowScale*>(value); - // @@protoc_insertion_point(field_set_allocated:io.deephaven.proto.backplane.grpc.UpdateByRequest.UpdateByOperation.UpdateByColumn.UpdateBySpec.UpdateByRollingSum.reverse_window_scale) -} - -// .io.deephaven.proto.backplane.grpc.UpdateByWindowScale forward_window_scale = 2; -inline bool UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingSum::has_forward_window_scale() const { - bool value = (_impl_._has_bits_[0] & 0x00000002u) != 0; - PROTOBUF_ASSUME(!value || _impl_.forward_window_scale_ != nullptr); - return value; -} -inline void UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingSum::clear_forward_window_scale() { - ::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 { - ::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_); -} -inline const ::io::deephaven::proto::backplane::grpc::UpdateByWindowScale& UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingSum::forward_window_scale() const ABSL_ATTRIBUTE_LIFETIME_BOUND { - // @@protoc_insertion_point(field_get:io.deephaven.proto.backplane.grpc.UpdateByRequest.UpdateByOperation.UpdateByColumn.UpdateBySpec.UpdateByRollingSum.forward_window_scale) - 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) { - ::google::protobuf::internal::TSanWrite(&_impl_); - if (GetArena() == nullptr) { - delete reinterpret_cast<::google::protobuf::MessageLite*>(_impl_.forward_window_scale_); - } - _impl_.forward_window_scale_ = reinterpret_cast<::io::deephaven::proto::backplane::grpc::UpdateByWindowScale*>(value); - if (value != nullptr) { - _impl_._has_bits_[0] |= 0x00000002u; - } else { - _impl_._has_bits_[0] &= ~0x00000002u; - } - // @@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() { - ::google::protobuf::internal::TSanWrite(&_impl_); - - _impl_._has_bits_[0] &= ~0x00000002u; - ::io::deephaven::proto::backplane::grpc::UpdateByWindowScale* released = _impl_.forward_window_scale_; - _impl_.forward_window_scale_ = nullptr; -#ifdef PROTOBUF_FORCE_COPY_IN_RELEASE - auto* old = reinterpret_cast<::google::protobuf::MessageLite*>(released); - released = ::google::protobuf::internal::DuplicateIfNonNull(released); - if (GetArena() == nullptr) { - delete old; - } -#else // PROTOBUF_FORCE_COPY_IN_RELEASE - if (GetArena() != nullptr) { - released = ::google::protobuf::internal::DuplicateIfNonNull(released); - } -#endif // !PROTOBUF_FORCE_COPY_IN_RELEASE - return released; -} -inline ::io::deephaven::proto::backplane::grpc::UpdateByWindowScale* UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingSum::unsafe_arena_release_forward_window_scale() { - ::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; - ::io::deephaven::proto::backplane::grpc::UpdateByWindowScale* temp = _impl_.forward_window_scale_; - _impl_.forward_window_scale_ = nullptr; - return temp; -} -inline ::io::deephaven::proto::backplane::grpc::UpdateByWindowScale* UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingSum::_internal_mutable_forward_window_scale() { - ::google::protobuf::internal::TSanWrite(&_impl_); - if (_impl_.forward_window_scale_ == nullptr) { - 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(); - ::google::protobuf::internal::TSanWrite(&_impl_); - if (message_arena == nullptr) { - delete (_impl_.forward_window_scale_); - } - - if (value != nullptr) { - ::google::protobuf::Arena* submessage_arena = (value)->GetArena(); - if (message_arena != submessage_arena) { - value = ::google::protobuf::internal::GetOwnedMessage(message_arena, value, submessage_arena); - } - _impl_._has_bits_[0] |= 0x00000002u; - } else { - _impl_._has_bits_[0] &= ~0x00000002u; - } - - _impl_.forward_window_scale_ = reinterpret_cast<::io::deephaven::proto::backplane::grpc::UpdateByWindowScale*>(value); - // @@protoc_insertion_point(field_set_allocated:io.deephaven.proto.backplane.grpc.UpdateByRequest.UpdateByOperation.UpdateByColumn.UpdateBySpec.UpdateByRollingSum.forward_window_scale) -} - -// ------------------------------------------------------------------- - -// UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingGroup - -// .io.deephaven.proto.backplane.grpc.UpdateByWindowScale reverse_window_scale = 1; -inline bool UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingGroup::has_reverse_window_scale() const { - bool value = (_impl_._has_bits_[0] & 0x00000001u) != 0; - PROTOBUF_ASSUME(!value || _impl_.reverse_window_scale_ != nullptr); - return value; -} -inline void UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingGroup::clear_reverse_window_scale() { - ::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 { - ::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_); -} -inline const ::io::deephaven::proto::backplane::grpc::UpdateByWindowScale& UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingGroup::reverse_window_scale() const ABSL_ATTRIBUTE_LIFETIME_BOUND { - // @@protoc_insertion_point(field_get:io.deephaven.proto.backplane.grpc.UpdateByRequest.UpdateByOperation.UpdateByColumn.UpdateBySpec.UpdateByRollingGroup.reverse_window_scale) - 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) { - ::google::protobuf::internal::TSanWrite(&_impl_); - if (GetArena() == nullptr) { - delete reinterpret_cast<::google::protobuf::MessageLite*>(_impl_.reverse_window_scale_); - } - _impl_.reverse_window_scale_ = reinterpret_cast<::io::deephaven::proto::backplane::grpc::UpdateByWindowScale*>(value); - if (value != nullptr) { - _impl_._has_bits_[0] |= 0x00000001u; - } else { - _impl_._has_bits_[0] &= ~0x00000001u; - } - // @@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() { - ::google::protobuf::internal::TSanWrite(&_impl_); - - _impl_._has_bits_[0] &= ~0x00000001u; - ::io::deephaven::proto::backplane::grpc::UpdateByWindowScale* released = _impl_.reverse_window_scale_; - _impl_.reverse_window_scale_ = nullptr; -#ifdef PROTOBUF_FORCE_COPY_IN_RELEASE - auto* old = reinterpret_cast<::google::protobuf::MessageLite*>(released); - released = ::google::protobuf::internal::DuplicateIfNonNull(released); - if (GetArena() == nullptr) { - delete old; - } -#else // PROTOBUF_FORCE_COPY_IN_RELEASE - if (GetArena() != nullptr) { - released = ::google::protobuf::internal::DuplicateIfNonNull(released); - } -#endif // !PROTOBUF_FORCE_COPY_IN_RELEASE - return released; -} -inline ::io::deephaven::proto::backplane::grpc::UpdateByWindowScale* UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingGroup::unsafe_arena_release_reverse_window_scale() { - ::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; - ::io::deephaven::proto::backplane::grpc::UpdateByWindowScale* temp = _impl_.reverse_window_scale_; - _impl_.reverse_window_scale_ = nullptr; - return temp; -} -inline ::io::deephaven::proto::backplane::grpc::UpdateByWindowScale* UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingGroup::_internal_mutable_reverse_window_scale() { - ::google::protobuf::internal::TSanWrite(&_impl_); - if (_impl_.reverse_window_scale_ == nullptr) { - 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(); - ::google::protobuf::internal::TSanWrite(&_impl_); - if (message_arena == nullptr) { - delete (_impl_.reverse_window_scale_); - } - - if (value != nullptr) { - ::google::protobuf::Arena* submessage_arena = (value)->GetArena(); - if (message_arena != submessage_arena) { - value = ::google::protobuf::internal::GetOwnedMessage(message_arena, value, submessage_arena); - } - _impl_._has_bits_[0] |= 0x00000001u; - } else { - _impl_._has_bits_[0] &= ~0x00000001u; - } - - _impl_.reverse_window_scale_ = reinterpret_cast<::io::deephaven::proto::backplane::grpc::UpdateByWindowScale*>(value); - // @@protoc_insertion_point(field_set_allocated:io.deephaven.proto.backplane.grpc.UpdateByRequest.UpdateByOperation.UpdateByColumn.UpdateBySpec.UpdateByRollingGroup.reverse_window_scale) -} - -// .io.deephaven.proto.backplane.grpc.UpdateByWindowScale forward_window_scale = 2; -inline bool UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingGroup::has_forward_window_scale() const { - bool value = (_impl_._has_bits_[0] & 0x00000002u) != 0; - PROTOBUF_ASSUME(!value || _impl_.forward_window_scale_ != nullptr); - return value; -} -inline void UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingGroup::clear_forward_window_scale() { - ::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 { - ::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_); -} -inline const ::io::deephaven::proto::backplane::grpc::UpdateByWindowScale& UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingGroup::forward_window_scale() const ABSL_ATTRIBUTE_LIFETIME_BOUND { - // @@protoc_insertion_point(field_get:io.deephaven.proto.backplane.grpc.UpdateByRequest.UpdateByOperation.UpdateByColumn.UpdateBySpec.UpdateByRollingGroup.forward_window_scale) - 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) { - ::google::protobuf::internal::TSanWrite(&_impl_); - if (GetArena() == nullptr) { - delete reinterpret_cast<::google::protobuf::MessageLite*>(_impl_.forward_window_scale_); - } - _impl_.forward_window_scale_ = reinterpret_cast<::io::deephaven::proto::backplane::grpc::UpdateByWindowScale*>(value); - if (value != nullptr) { - _impl_._has_bits_[0] |= 0x00000002u; - } else { - _impl_._has_bits_[0] &= ~0x00000002u; - } - // @@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() { - ::google::protobuf::internal::TSanWrite(&_impl_); - - _impl_._has_bits_[0] &= ~0x00000002u; - ::io::deephaven::proto::backplane::grpc::UpdateByWindowScale* released = _impl_.forward_window_scale_; - _impl_.forward_window_scale_ = nullptr; -#ifdef PROTOBUF_FORCE_COPY_IN_RELEASE - auto* old = reinterpret_cast<::google::protobuf::MessageLite*>(released); - released = ::google::protobuf::internal::DuplicateIfNonNull(released); - if (GetArena() == nullptr) { - delete old; - } -#else // PROTOBUF_FORCE_COPY_IN_RELEASE - if (GetArena() != nullptr) { - released = ::google::protobuf::internal::DuplicateIfNonNull(released); - } -#endif // !PROTOBUF_FORCE_COPY_IN_RELEASE - return released; -} -inline ::io::deephaven::proto::backplane::grpc::UpdateByWindowScale* UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingGroup::unsafe_arena_release_forward_window_scale() { - ::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; - ::io::deephaven::proto::backplane::grpc::UpdateByWindowScale* temp = _impl_.forward_window_scale_; - _impl_.forward_window_scale_ = nullptr; - return temp; -} -inline ::io::deephaven::proto::backplane::grpc::UpdateByWindowScale* UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingGroup::_internal_mutable_forward_window_scale() { - ::google::protobuf::internal::TSanWrite(&_impl_); - if (_impl_.forward_window_scale_ == nullptr) { - 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(); - ::google::protobuf::internal::TSanWrite(&_impl_); - if (message_arena == nullptr) { - delete (_impl_.forward_window_scale_); - } - - if (value != nullptr) { - ::google::protobuf::Arena* submessage_arena = (value)->GetArena(); - if (message_arena != submessage_arena) { - value = ::google::protobuf::internal::GetOwnedMessage(message_arena, value, submessage_arena); - } - _impl_._has_bits_[0] |= 0x00000002u; - } else { - _impl_._has_bits_[0] &= ~0x00000002u; - } - - _impl_.forward_window_scale_ = reinterpret_cast<::io::deephaven::proto::backplane::grpc::UpdateByWindowScale*>(value); - // @@protoc_insertion_point(field_set_allocated:io.deephaven.proto.backplane.grpc.UpdateByRequest.UpdateByOperation.UpdateByColumn.UpdateBySpec.UpdateByRollingGroup.forward_window_scale) -} - -// ------------------------------------------------------------------- - -// UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingAvg - -// .io.deephaven.proto.backplane.grpc.UpdateByWindowScale reverse_window_scale = 1; -inline bool UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingAvg::has_reverse_window_scale() const { - bool value = (_impl_._has_bits_[0] & 0x00000001u) != 0; - PROTOBUF_ASSUME(!value || _impl_.reverse_window_scale_ != nullptr); - return value; -} -inline void UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingAvg::clear_reverse_window_scale() { - ::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 { - ::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_); -} -inline const ::io::deephaven::proto::backplane::grpc::UpdateByWindowScale& UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingAvg::reverse_window_scale() const ABSL_ATTRIBUTE_LIFETIME_BOUND { - // @@protoc_insertion_point(field_get:io.deephaven.proto.backplane.grpc.UpdateByRequest.UpdateByOperation.UpdateByColumn.UpdateBySpec.UpdateByRollingAvg.reverse_window_scale) - 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) { - ::google::protobuf::internal::TSanWrite(&_impl_); - if (GetArena() == nullptr) { - delete reinterpret_cast<::google::protobuf::MessageLite*>(_impl_.reverse_window_scale_); - } - _impl_.reverse_window_scale_ = reinterpret_cast<::io::deephaven::proto::backplane::grpc::UpdateByWindowScale*>(value); - if (value != nullptr) { - _impl_._has_bits_[0] |= 0x00000001u; - } else { - _impl_._has_bits_[0] &= ~0x00000001u; - } - // @@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() { - ::google::protobuf::internal::TSanWrite(&_impl_); - - _impl_._has_bits_[0] &= ~0x00000001u; - ::io::deephaven::proto::backplane::grpc::UpdateByWindowScale* released = _impl_.reverse_window_scale_; - _impl_.reverse_window_scale_ = nullptr; -#ifdef PROTOBUF_FORCE_COPY_IN_RELEASE - auto* old = reinterpret_cast<::google::protobuf::MessageLite*>(released); - released = ::google::protobuf::internal::DuplicateIfNonNull(released); - if (GetArena() == nullptr) { - delete old; - } -#else // PROTOBUF_FORCE_COPY_IN_RELEASE - if (GetArena() != nullptr) { - released = ::google::protobuf::internal::DuplicateIfNonNull(released); - } -#endif // !PROTOBUF_FORCE_COPY_IN_RELEASE - return released; -} -inline ::io::deephaven::proto::backplane::grpc::UpdateByWindowScale* UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingAvg::unsafe_arena_release_reverse_window_scale() { - ::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; - ::io::deephaven::proto::backplane::grpc::UpdateByWindowScale* temp = _impl_.reverse_window_scale_; - _impl_.reverse_window_scale_ = nullptr; - return temp; -} -inline ::io::deephaven::proto::backplane::grpc::UpdateByWindowScale* UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingAvg::_internal_mutable_reverse_window_scale() { - ::google::protobuf::internal::TSanWrite(&_impl_); - if (_impl_.reverse_window_scale_ == nullptr) { - 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(); - ::google::protobuf::internal::TSanWrite(&_impl_); - if (message_arena == nullptr) { - delete (_impl_.reverse_window_scale_); - } - - if (value != nullptr) { - ::google::protobuf::Arena* submessage_arena = (value)->GetArena(); - if (message_arena != submessage_arena) { - value = ::google::protobuf::internal::GetOwnedMessage(message_arena, value, submessage_arena); - } - _impl_._has_bits_[0] |= 0x00000001u; - } else { - _impl_._has_bits_[0] &= ~0x00000001u; - } - - _impl_.reverse_window_scale_ = reinterpret_cast<::io::deephaven::proto::backplane::grpc::UpdateByWindowScale*>(value); - // @@protoc_insertion_point(field_set_allocated:io.deephaven.proto.backplane.grpc.UpdateByRequest.UpdateByOperation.UpdateByColumn.UpdateBySpec.UpdateByRollingAvg.reverse_window_scale) -} - -// .io.deephaven.proto.backplane.grpc.UpdateByWindowScale forward_window_scale = 2; -inline bool UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingAvg::has_forward_window_scale() const { - bool value = (_impl_._has_bits_[0] & 0x00000002u) != 0; - PROTOBUF_ASSUME(!value || _impl_.forward_window_scale_ != nullptr); - return value; -} -inline void UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingAvg::clear_forward_window_scale() { - ::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 { - ::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_); -} -inline const ::io::deephaven::proto::backplane::grpc::UpdateByWindowScale& UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingAvg::forward_window_scale() const ABSL_ATTRIBUTE_LIFETIME_BOUND { - // @@protoc_insertion_point(field_get:io.deephaven.proto.backplane.grpc.UpdateByRequest.UpdateByOperation.UpdateByColumn.UpdateBySpec.UpdateByRollingAvg.forward_window_scale) - 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) { - ::google::protobuf::internal::TSanWrite(&_impl_); - if (GetArena() == nullptr) { - delete reinterpret_cast<::google::protobuf::MessageLite*>(_impl_.forward_window_scale_); - } - _impl_.forward_window_scale_ = reinterpret_cast<::io::deephaven::proto::backplane::grpc::UpdateByWindowScale*>(value); - if (value != nullptr) { - _impl_._has_bits_[0] |= 0x00000002u; - } else { - _impl_._has_bits_[0] &= ~0x00000002u; - } - // @@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() { - ::google::protobuf::internal::TSanWrite(&_impl_); - - _impl_._has_bits_[0] &= ~0x00000002u; - ::io::deephaven::proto::backplane::grpc::UpdateByWindowScale* released = _impl_.forward_window_scale_; - _impl_.forward_window_scale_ = nullptr; -#ifdef PROTOBUF_FORCE_COPY_IN_RELEASE - auto* old = reinterpret_cast<::google::protobuf::MessageLite*>(released); - released = ::google::protobuf::internal::DuplicateIfNonNull(released); - if (GetArena() == nullptr) { - delete old; - } -#else // PROTOBUF_FORCE_COPY_IN_RELEASE - if (GetArena() != nullptr) { - released = ::google::protobuf::internal::DuplicateIfNonNull(released); - } -#endif // !PROTOBUF_FORCE_COPY_IN_RELEASE - return released; -} -inline ::io::deephaven::proto::backplane::grpc::UpdateByWindowScale* UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingAvg::unsafe_arena_release_forward_window_scale() { - ::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; - ::io::deephaven::proto::backplane::grpc::UpdateByWindowScale* temp = _impl_.forward_window_scale_; - _impl_.forward_window_scale_ = nullptr; - return temp; -} -inline ::io::deephaven::proto::backplane::grpc::UpdateByWindowScale* UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingAvg::_internal_mutable_forward_window_scale() { - ::google::protobuf::internal::TSanWrite(&_impl_); - if (_impl_.forward_window_scale_ == nullptr) { - 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(); - ::google::protobuf::internal::TSanWrite(&_impl_); - if (message_arena == nullptr) { - delete (_impl_.forward_window_scale_); - } - - if (value != nullptr) { - ::google::protobuf::Arena* submessage_arena = (value)->GetArena(); - if (message_arena != submessage_arena) { - value = ::google::protobuf::internal::GetOwnedMessage(message_arena, value, submessage_arena); - } - _impl_._has_bits_[0] |= 0x00000002u; - } else { - _impl_._has_bits_[0] &= ~0x00000002u; - } - - _impl_.forward_window_scale_ = reinterpret_cast<::io::deephaven::proto::backplane::grpc::UpdateByWindowScale*>(value); - // @@protoc_insertion_point(field_set_allocated:io.deephaven.proto.backplane.grpc.UpdateByRequest.UpdateByOperation.UpdateByColumn.UpdateBySpec.UpdateByRollingAvg.forward_window_scale) -} - -// ------------------------------------------------------------------- - -// UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingMin - -// .io.deephaven.proto.backplane.grpc.UpdateByWindowScale reverse_window_scale = 1; -inline bool UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingMin::has_reverse_window_scale() const { - bool value = (_impl_._has_bits_[0] & 0x00000001u) != 0; - PROTOBUF_ASSUME(!value || _impl_.reverse_window_scale_ != nullptr); - return value; -} -inline void UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingMin::clear_reverse_window_scale() { - ::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 { - ::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_); -} -inline const ::io::deephaven::proto::backplane::grpc::UpdateByWindowScale& UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingMin::reverse_window_scale() const ABSL_ATTRIBUTE_LIFETIME_BOUND { - // @@protoc_insertion_point(field_get:io.deephaven.proto.backplane.grpc.UpdateByRequest.UpdateByOperation.UpdateByColumn.UpdateBySpec.UpdateByRollingMin.reverse_window_scale) - 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) { - ::google::protobuf::internal::TSanWrite(&_impl_); - if (GetArena() == nullptr) { - delete reinterpret_cast<::google::protobuf::MessageLite*>(_impl_.reverse_window_scale_); - } - _impl_.reverse_window_scale_ = reinterpret_cast<::io::deephaven::proto::backplane::grpc::UpdateByWindowScale*>(value); - if (value != nullptr) { - _impl_._has_bits_[0] |= 0x00000001u; - } else { - _impl_._has_bits_[0] &= ~0x00000001u; - } - // @@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() { - ::google::protobuf::internal::TSanWrite(&_impl_); - - _impl_._has_bits_[0] &= ~0x00000001u; - ::io::deephaven::proto::backplane::grpc::UpdateByWindowScale* released = _impl_.reverse_window_scale_; - _impl_.reverse_window_scale_ = nullptr; -#ifdef PROTOBUF_FORCE_COPY_IN_RELEASE - auto* old = reinterpret_cast<::google::protobuf::MessageLite*>(released); - released = ::google::protobuf::internal::DuplicateIfNonNull(released); - if (GetArena() == nullptr) { - delete old; - } -#else // PROTOBUF_FORCE_COPY_IN_RELEASE - if (GetArena() != nullptr) { - released = ::google::protobuf::internal::DuplicateIfNonNull(released); - } -#endif // !PROTOBUF_FORCE_COPY_IN_RELEASE - return released; -} -inline ::io::deephaven::proto::backplane::grpc::UpdateByWindowScale* UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingMin::unsafe_arena_release_reverse_window_scale() { - ::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; - ::io::deephaven::proto::backplane::grpc::UpdateByWindowScale* temp = _impl_.reverse_window_scale_; - _impl_.reverse_window_scale_ = nullptr; - return temp; -} -inline ::io::deephaven::proto::backplane::grpc::UpdateByWindowScale* UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingMin::_internal_mutable_reverse_window_scale() { - ::google::protobuf::internal::TSanWrite(&_impl_); - if (_impl_.reverse_window_scale_ == nullptr) { - 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(); - ::google::protobuf::internal::TSanWrite(&_impl_); - if (message_arena == nullptr) { - delete (_impl_.reverse_window_scale_); - } - - if (value != nullptr) { - ::google::protobuf::Arena* submessage_arena = (value)->GetArena(); - if (message_arena != submessage_arena) { - value = ::google::protobuf::internal::GetOwnedMessage(message_arena, value, submessage_arena); - } - _impl_._has_bits_[0] |= 0x00000001u; - } else { - _impl_._has_bits_[0] &= ~0x00000001u; - } - - _impl_.reverse_window_scale_ = reinterpret_cast<::io::deephaven::proto::backplane::grpc::UpdateByWindowScale*>(value); - // @@protoc_insertion_point(field_set_allocated:io.deephaven.proto.backplane.grpc.UpdateByRequest.UpdateByOperation.UpdateByColumn.UpdateBySpec.UpdateByRollingMin.reverse_window_scale) -} - -// .io.deephaven.proto.backplane.grpc.UpdateByWindowScale forward_window_scale = 2; -inline bool UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingMin::has_forward_window_scale() const { - bool value = (_impl_._has_bits_[0] & 0x00000002u) != 0; - PROTOBUF_ASSUME(!value || _impl_.forward_window_scale_ != nullptr); - return value; -} -inline void UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingMin::clear_forward_window_scale() { - ::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 { - ::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_); -} -inline const ::io::deephaven::proto::backplane::grpc::UpdateByWindowScale& UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingMin::forward_window_scale() const ABSL_ATTRIBUTE_LIFETIME_BOUND { - // @@protoc_insertion_point(field_get:io.deephaven.proto.backplane.grpc.UpdateByRequest.UpdateByOperation.UpdateByColumn.UpdateBySpec.UpdateByRollingMin.forward_window_scale) - 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) { - ::google::protobuf::internal::TSanWrite(&_impl_); - if (GetArena() == nullptr) { - delete reinterpret_cast<::google::protobuf::MessageLite*>(_impl_.forward_window_scale_); - } - _impl_.forward_window_scale_ = reinterpret_cast<::io::deephaven::proto::backplane::grpc::UpdateByWindowScale*>(value); - if (value != nullptr) { - _impl_._has_bits_[0] |= 0x00000002u; - } else { - _impl_._has_bits_[0] &= ~0x00000002u; - } - // @@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() { - ::google::protobuf::internal::TSanWrite(&_impl_); - - _impl_._has_bits_[0] &= ~0x00000002u; - ::io::deephaven::proto::backplane::grpc::UpdateByWindowScale* released = _impl_.forward_window_scale_; - _impl_.forward_window_scale_ = nullptr; -#ifdef PROTOBUF_FORCE_COPY_IN_RELEASE - auto* old = reinterpret_cast<::google::protobuf::MessageLite*>(released); - released = ::google::protobuf::internal::DuplicateIfNonNull(released); - if (GetArena() == nullptr) { - delete old; - } -#else // PROTOBUF_FORCE_COPY_IN_RELEASE - if (GetArena() != nullptr) { - released = ::google::protobuf::internal::DuplicateIfNonNull(released); - } -#endif // !PROTOBUF_FORCE_COPY_IN_RELEASE - return released; -} -inline ::io::deephaven::proto::backplane::grpc::UpdateByWindowScale* UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingMin::unsafe_arena_release_forward_window_scale() { - ::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; - ::io::deephaven::proto::backplane::grpc::UpdateByWindowScale* temp = _impl_.forward_window_scale_; - _impl_.forward_window_scale_ = nullptr; - return temp; -} -inline ::io::deephaven::proto::backplane::grpc::UpdateByWindowScale* UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingMin::_internal_mutable_forward_window_scale() { - ::google::protobuf::internal::TSanWrite(&_impl_); - if (_impl_.forward_window_scale_ == nullptr) { - 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(); - ::google::protobuf::internal::TSanWrite(&_impl_); - if (message_arena == nullptr) { - delete (_impl_.forward_window_scale_); - } - - if (value != nullptr) { - ::google::protobuf::Arena* submessage_arena = (value)->GetArena(); - if (message_arena != submessage_arena) { - value = ::google::protobuf::internal::GetOwnedMessage(message_arena, value, submessage_arena); - } - _impl_._has_bits_[0] |= 0x00000002u; - } else { - _impl_._has_bits_[0] &= ~0x00000002u; - } - - _impl_.forward_window_scale_ = reinterpret_cast<::io::deephaven::proto::backplane::grpc::UpdateByWindowScale*>(value); - // @@protoc_insertion_point(field_set_allocated:io.deephaven.proto.backplane.grpc.UpdateByRequest.UpdateByOperation.UpdateByColumn.UpdateBySpec.UpdateByRollingMin.forward_window_scale) -} - -// ------------------------------------------------------------------- - -// UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingMax - -// .io.deephaven.proto.backplane.grpc.UpdateByWindowScale reverse_window_scale = 1; -inline bool UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingMax::has_reverse_window_scale() const { - bool value = (_impl_._has_bits_[0] & 0x00000001u) != 0; - PROTOBUF_ASSUME(!value || _impl_.reverse_window_scale_ != nullptr); - return value; -} -inline void UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingMax::clear_reverse_window_scale() { - ::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 { - ::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_); -} -inline const ::io::deephaven::proto::backplane::grpc::UpdateByWindowScale& UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingMax::reverse_window_scale() const ABSL_ATTRIBUTE_LIFETIME_BOUND { - // @@protoc_insertion_point(field_get:io.deephaven.proto.backplane.grpc.UpdateByRequest.UpdateByOperation.UpdateByColumn.UpdateBySpec.UpdateByRollingMax.reverse_window_scale) - 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) { - ::google::protobuf::internal::TSanWrite(&_impl_); - if (GetArena() == nullptr) { - delete reinterpret_cast<::google::protobuf::MessageLite*>(_impl_.reverse_window_scale_); - } - _impl_.reverse_window_scale_ = reinterpret_cast<::io::deephaven::proto::backplane::grpc::UpdateByWindowScale*>(value); - if (value != nullptr) { - _impl_._has_bits_[0] |= 0x00000001u; - } else { - _impl_._has_bits_[0] &= ~0x00000001u; - } - // @@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() { - ::google::protobuf::internal::TSanWrite(&_impl_); - - _impl_._has_bits_[0] &= ~0x00000001u; - ::io::deephaven::proto::backplane::grpc::UpdateByWindowScale* released = _impl_.reverse_window_scale_; - _impl_.reverse_window_scale_ = nullptr; -#ifdef PROTOBUF_FORCE_COPY_IN_RELEASE - auto* old = reinterpret_cast<::google::protobuf::MessageLite*>(released); - released = ::google::protobuf::internal::DuplicateIfNonNull(released); - if (GetArena() == nullptr) { - delete old; - } -#else // PROTOBUF_FORCE_COPY_IN_RELEASE - if (GetArena() != nullptr) { - released = ::google::protobuf::internal::DuplicateIfNonNull(released); - } -#endif // !PROTOBUF_FORCE_COPY_IN_RELEASE - return released; -} -inline ::io::deephaven::proto::backplane::grpc::UpdateByWindowScale* UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingMax::unsafe_arena_release_reverse_window_scale() { - ::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; - ::io::deephaven::proto::backplane::grpc::UpdateByWindowScale* temp = _impl_.reverse_window_scale_; - _impl_.reverse_window_scale_ = nullptr; - return temp; -} -inline ::io::deephaven::proto::backplane::grpc::UpdateByWindowScale* UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingMax::_internal_mutable_reverse_window_scale() { - ::google::protobuf::internal::TSanWrite(&_impl_); - if (_impl_.reverse_window_scale_ == nullptr) { - 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(); - ::google::protobuf::internal::TSanWrite(&_impl_); - if (message_arena == nullptr) { - delete (_impl_.reverse_window_scale_); - } - - if (value != nullptr) { - ::google::protobuf::Arena* submessage_arena = (value)->GetArena(); - if (message_arena != submessage_arena) { - value = ::google::protobuf::internal::GetOwnedMessage(message_arena, value, submessage_arena); - } - _impl_._has_bits_[0] |= 0x00000001u; - } else { - _impl_._has_bits_[0] &= ~0x00000001u; - } - - _impl_.reverse_window_scale_ = reinterpret_cast<::io::deephaven::proto::backplane::grpc::UpdateByWindowScale*>(value); - // @@protoc_insertion_point(field_set_allocated:io.deephaven.proto.backplane.grpc.UpdateByRequest.UpdateByOperation.UpdateByColumn.UpdateBySpec.UpdateByRollingMax.reverse_window_scale) -} - -// .io.deephaven.proto.backplane.grpc.UpdateByWindowScale forward_window_scale = 2; -inline bool UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingMax::has_forward_window_scale() const { - bool value = (_impl_._has_bits_[0] & 0x00000002u) != 0; - PROTOBUF_ASSUME(!value || _impl_.forward_window_scale_ != nullptr); - return value; -} -inline void UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingMax::clear_forward_window_scale() { - ::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 { - ::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_); -} -inline const ::io::deephaven::proto::backplane::grpc::UpdateByWindowScale& UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingMax::forward_window_scale() const ABSL_ATTRIBUTE_LIFETIME_BOUND { - // @@protoc_insertion_point(field_get:io.deephaven.proto.backplane.grpc.UpdateByRequest.UpdateByOperation.UpdateByColumn.UpdateBySpec.UpdateByRollingMax.forward_window_scale) - 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) { - ::google::protobuf::internal::TSanWrite(&_impl_); - if (GetArena() == nullptr) { - delete reinterpret_cast<::google::protobuf::MessageLite*>(_impl_.forward_window_scale_); - } - _impl_.forward_window_scale_ = reinterpret_cast<::io::deephaven::proto::backplane::grpc::UpdateByWindowScale*>(value); - if (value != nullptr) { - _impl_._has_bits_[0] |= 0x00000002u; - } else { - _impl_._has_bits_[0] &= ~0x00000002u; - } - // @@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() { - ::google::protobuf::internal::TSanWrite(&_impl_); - - _impl_._has_bits_[0] &= ~0x00000002u; - ::io::deephaven::proto::backplane::grpc::UpdateByWindowScale* released = _impl_.forward_window_scale_; - _impl_.forward_window_scale_ = nullptr; -#ifdef PROTOBUF_FORCE_COPY_IN_RELEASE - auto* old = reinterpret_cast<::google::protobuf::MessageLite*>(released); - released = ::google::protobuf::internal::DuplicateIfNonNull(released); - if (GetArena() == nullptr) { - delete old; - } -#else // PROTOBUF_FORCE_COPY_IN_RELEASE - if (GetArena() != nullptr) { - released = ::google::protobuf::internal::DuplicateIfNonNull(released); - } -#endif // !PROTOBUF_FORCE_COPY_IN_RELEASE - return released; -} -inline ::io::deephaven::proto::backplane::grpc::UpdateByWindowScale* UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingMax::unsafe_arena_release_forward_window_scale() { - ::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; - ::io::deephaven::proto::backplane::grpc::UpdateByWindowScale* temp = _impl_.forward_window_scale_; - _impl_.forward_window_scale_ = nullptr; - return temp; -} -inline ::io::deephaven::proto::backplane::grpc::UpdateByWindowScale* UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingMax::_internal_mutable_forward_window_scale() { - ::google::protobuf::internal::TSanWrite(&_impl_); - if (_impl_.forward_window_scale_ == nullptr) { - 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(); - ::google::protobuf::internal::TSanWrite(&_impl_); - if (message_arena == nullptr) { - delete (_impl_.forward_window_scale_); - } - - if (value != nullptr) { - ::google::protobuf::Arena* submessage_arena = (value)->GetArena(); - if (message_arena != submessage_arena) { - value = ::google::protobuf::internal::GetOwnedMessage(message_arena, value, submessage_arena); - } - _impl_._has_bits_[0] |= 0x00000002u; - } else { - _impl_._has_bits_[0] &= ~0x00000002u; - } - - _impl_.forward_window_scale_ = reinterpret_cast<::io::deephaven::proto::backplane::grpc::UpdateByWindowScale*>(value); - // @@protoc_insertion_point(field_set_allocated:io.deephaven.proto.backplane.grpc.UpdateByRequest.UpdateByOperation.UpdateByColumn.UpdateBySpec.UpdateByRollingMax.forward_window_scale) -} - -// ------------------------------------------------------------------- - -// UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingProduct - -// .io.deephaven.proto.backplane.grpc.UpdateByWindowScale reverse_window_scale = 1; -inline bool UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingProduct::has_reverse_window_scale() const { - bool value = (_impl_._has_bits_[0] & 0x00000001u) != 0; - PROTOBUF_ASSUME(!value || _impl_.reverse_window_scale_ != nullptr); - return value; -} -inline void UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingProduct::clear_reverse_window_scale() { - ::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 { - ::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_); -} -inline const ::io::deephaven::proto::backplane::grpc::UpdateByWindowScale& UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingProduct::reverse_window_scale() const ABSL_ATTRIBUTE_LIFETIME_BOUND { - // @@protoc_insertion_point(field_get:io.deephaven.proto.backplane.grpc.UpdateByRequest.UpdateByOperation.UpdateByColumn.UpdateBySpec.UpdateByRollingProduct.reverse_window_scale) - 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) { - ::google::protobuf::internal::TSanWrite(&_impl_); - if (GetArena() == nullptr) { - delete reinterpret_cast<::google::protobuf::MessageLite*>(_impl_.reverse_window_scale_); - } - _impl_.reverse_window_scale_ = reinterpret_cast<::io::deephaven::proto::backplane::grpc::UpdateByWindowScale*>(value); - if (value != nullptr) { - _impl_._has_bits_[0] |= 0x00000001u; - } else { - _impl_._has_bits_[0] &= ~0x00000001u; - } - // @@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() { - ::google::protobuf::internal::TSanWrite(&_impl_); - - _impl_._has_bits_[0] &= ~0x00000001u; - ::io::deephaven::proto::backplane::grpc::UpdateByWindowScale* released = _impl_.reverse_window_scale_; - _impl_.reverse_window_scale_ = nullptr; -#ifdef PROTOBUF_FORCE_COPY_IN_RELEASE - auto* old = reinterpret_cast<::google::protobuf::MessageLite*>(released); - released = ::google::protobuf::internal::DuplicateIfNonNull(released); - if (GetArena() == nullptr) { - delete old; - } -#else // PROTOBUF_FORCE_COPY_IN_RELEASE - if (GetArena() != nullptr) { - released = ::google::protobuf::internal::DuplicateIfNonNull(released); - } -#endif // !PROTOBUF_FORCE_COPY_IN_RELEASE - return released; -} -inline ::io::deephaven::proto::backplane::grpc::UpdateByWindowScale* UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingProduct::unsafe_arena_release_reverse_window_scale() { - ::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; - ::io::deephaven::proto::backplane::grpc::UpdateByWindowScale* temp = _impl_.reverse_window_scale_; - _impl_.reverse_window_scale_ = nullptr; - return temp; -} -inline ::io::deephaven::proto::backplane::grpc::UpdateByWindowScale* UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingProduct::_internal_mutable_reverse_window_scale() { - ::google::protobuf::internal::TSanWrite(&_impl_); - if (_impl_.reverse_window_scale_ == nullptr) { - 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(); - ::google::protobuf::internal::TSanWrite(&_impl_); - if (message_arena == nullptr) { - delete (_impl_.reverse_window_scale_); - } - - if (value != nullptr) { - ::google::protobuf::Arena* submessage_arena = (value)->GetArena(); - if (message_arena != submessage_arena) { - value = ::google::protobuf::internal::GetOwnedMessage(message_arena, value, submessage_arena); - } - _impl_._has_bits_[0] |= 0x00000001u; - } else { - _impl_._has_bits_[0] &= ~0x00000001u; - } - - _impl_.reverse_window_scale_ = reinterpret_cast<::io::deephaven::proto::backplane::grpc::UpdateByWindowScale*>(value); - // @@protoc_insertion_point(field_set_allocated:io.deephaven.proto.backplane.grpc.UpdateByRequest.UpdateByOperation.UpdateByColumn.UpdateBySpec.UpdateByRollingProduct.reverse_window_scale) -} - -// .io.deephaven.proto.backplane.grpc.UpdateByWindowScale forward_window_scale = 2; -inline bool UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingProduct::has_forward_window_scale() const { - bool value = (_impl_._has_bits_[0] & 0x00000002u) != 0; - PROTOBUF_ASSUME(!value || _impl_.forward_window_scale_ != nullptr); - return value; -} -inline void UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingProduct::clear_forward_window_scale() { - ::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 { - ::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_); -} -inline const ::io::deephaven::proto::backplane::grpc::UpdateByWindowScale& UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingProduct::forward_window_scale() const ABSL_ATTRIBUTE_LIFETIME_BOUND { - // @@protoc_insertion_point(field_get:io.deephaven.proto.backplane.grpc.UpdateByRequest.UpdateByOperation.UpdateByColumn.UpdateBySpec.UpdateByRollingProduct.forward_window_scale) - 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) { - ::google::protobuf::internal::TSanWrite(&_impl_); - if (GetArena() == nullptr) { - delete reinterpret_cast<::google::protobuf::MessageLite*>(_impl_.forward_window_scale_); - } - _impl_.forward_window_scale_ = reinterpret_cast<::io::deephaven::proto::backplane::grpc::UpdateByWindowScale*>(value); - if (value != nullptr) { - _impl_._has_bits_[0] |= 0x00000002u; - } else { - _impl_._has_bits_[0] &= ~0x00000002u; - } - // @@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() { - ::google::protobuf::internal::TSanWrite(&_impl_); - - _impl_._has_bits_[0] &= ~0x00000002u; - ::io::deephaven::proto::backplane::grpc::UpdateByWindowScale* released = _impl_.forward_window_scale_; - _impl_.forward_window_scale_ = nullptr; -#ifdef PROTOBUF_FORCE_COPY_IN_RELEASE - auto* old = reinterpret_cast<::google::protobuf::MessageLite*>(released); - released = ::google::protobuf::internal::DuplicateIfNonNull(released); - if (GetArena() == nullptr) { - delete old; - } -#else // PROTOBUF_FORCE_COPY_IN_RELEASE - if (GetArena() != nullptr) { - released = ::google::protobuf::internal::DuplicateIfNonNull(released); - } -#endif // !PROTOBUF_FORCE_COPY_IN_RELEASE - return released; -} -inline ::io::deephaven::proto::backplane::grpc::UpdateByWindowScale* UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingProduct::unsafe_arena_release_forward_window_scale() { - ::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; - ::io::deephaven::proto::backplane::grpc::UpdateByWindowScale* temp = _impl_.forward_window_scale_; - _impl_.forward_window_scale_ = nullptr; - return temp; -} -inline ::io::deephaven::proto::backplane::grpc::UpdateByWindowScale* UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingProduct::_internal_mutable_forward_window_scale() { - ::google::protobuf::internal::TSanWrite(&_impl_); - if (_impl_.forward_window_scale_ == nullptr) { - 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(); - ::google::protobuf::internal::TSanWrite(&_impl_); - if (message_arena == nullptr) { - delete (_impl_.forward_window_scale_); - } - - if (value != nullptr) { - ::google::protobuf::Arena* submessage_arena = (value)->GetArena(); - if (message_arena != submessage_arena) { - value = ::google::protobuf::internal::GetOwnedMessage(message_arena, value, submessage_arena); - } - _impl_._has_bits_[0] |= 0x00000002u; - } else { - _impl_._has_bits_[0] &= ~0x00000002u; - } - - _impl_.forward_window_scale_ = reinterpret_cast<::io::deephaven::proto::backplane::grpc::UpdateByWindowScale*>(value); - // @@protoc_insertion_point(field_set_allocated:io.deephaven.proto.backplane.grpc.UpdateByRequest.UpdateByOperation.UpdateByColumn.UpdateBySpec.UpdateByRollingProduct.forward_window_scale) -} - -// ------------------------------------------------------------------- - -// UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingCount - -// .io.deephaven.proto.backplane.grpc.UpdateByWindowScale reverse_window_scale = 1; -inline bool UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingCount::has_reverse_window_scale() const { - bool value = (_impl_._has_bits_[0] & 0x00000001u) != 0; - PROTOBUF_ASSUME(!value || _impl_.reverse_window_scale_ != nullptr); - return value; -} -inline void UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingCount::clear_reverse_window_scale() { - ::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 { - ::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_); -} -inline const ::io::deephaven::proto::backplane::grpc::UpdateByWindowScale& UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingCount::reverse_window_scale() const ABSL_ATTRIBUTE_LIFETIME_BOUND { - // @@protoc_insertion_point(field_get:io.deephaven.proto.backplane.grpc.UpdateByRequest.UpdateByOperation.UpdateByColumn.UpdateBySpec.UpdateByRollingCount.reverse_window_scale) - 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) { - ::google::protobuf::internal::TSanWrite(&_impl_); - if (GetArena() == nullptr) { - delete reinterpret_cast<::google::protobuf::MessageLite*>(_impl_.reverse_window_scale_); - } - _impl_.reverse_window_scale_ = reinterpret_cast<::io::deephaven::proto::backplane::grpc::UpdateByWindowScale*>(value); - if (value != nullptr) { - _impl_._has_bits_[0] |= 0x00000001u; - } else { - _impl_._has_bits_[0] &= ~0x00000001u; - } - // @@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() { - ::google::protobuf::internal::TSanWrite(&_impl_); - - _impl_._has_bits_[0] &= ~0x00000001u; - ::io::deephaven::proto::backplane::grpc::UpdateByWindowScale* released = _impl_.reverse_window_scale_; - _impl_.reverse_window_scale_ = nullptr; -#ifdef PROTOBUF_FORCE_COPY_IN_RELEASE - auto* old = reinterpret_cast<::google::protobuf::MessageLite*>(released); - released = ::google::protobuf::internal::DuplicateIfNonNull(released); - if (GetArena() == nullptr) { - delete old; - } -#else // PROTOBUF_FORCE_COPY_IN_RELEASE - if (GetArena() != nullptr) { - released = ::google::protobuf::internal::DuplicateIfNonNull(released); - } -#endif // !PROTOBUF_FORCE_COPY_IN_RELEASE - return released; -} -inline ::io::deephaven::proto::backplane::grpc::UpdateByWindowScale* UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingCount::unsafe_arena_release_reverse_window_scale() { - ::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; - ::io::deephaven::proto::backplane::grpc::UpdateByWindowScale* temp = _impl_.reverse_window_scale_; - _impl_.reverse_window_scale_ = nullptr; - return temp; -} -inline ::io::deephaven::proto::backplane::grpc::UpdateByWindowScale* UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingCount::_internal_mutable_reverse_window_scale() { - ::google::protobuf::internal::TSanWrite(&_impl_); - if (_impl_.reverse_window_scale_ == nullptr) { - 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(); - ::google::protobuf::internal::TSanWrite(&_impl_); - if (message_arena == nullptr) { - delete (_impl_.reverse_window_scale_); - } - - if (value != nullptr) { - ::google::protobuf::Arena* submessage_arena = (value)->GetArena(); - if (message_arena != submessage_arena) { - value = ::google::protobuf::internal::GetOwnedMessage(message_arena, value, submessage_arena); - } - _impl_._has_bits_[0] |= 0x00000001u; - } else { - _impl_._has_bits_[0] &= ~0x00000001u; - } - - _impl_.reverse_window_scale_ = reinterpret_cast<::io::deephaven::proto::backplane::grpc::UpdateByWindowScale*>(value); - // @@protoc_insertion_point(field_set_allocated:io.deephaven.proto.backplane.grpc.UpdateByRequest.UpdateByOperation.UpdateByColumn.UpdateBySpec.UpdateByRollingCount.reverse_window_scale) -} - -// .io.deephaven.proto.backplane.grpc.UpdateByWindowScale forward_window_scale = 2; -inline bool UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingCount::has_forward_window_scale() const { - bool value = (_impl_._has_bits_[0] & 0x00000002u) != 0; - PROTOBUF_ASSUME(!value || _impl_.forward_window_scale_ != nullptr); - return value; -} -inline void UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingCount::clear_forward_window_scale() { - ::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 { - ::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_); -} -inline const ::io::deephaven::proto::backplane::grpc::UpdateByWindowScale& UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingCount::forward_window_scale() const ABSL_ATTRIBUTE_LIFETIME_BOUND { - // @@protoc_insertion_point(field_get:io.deephaven.proto.backplane.grpc.UpdateByRequest.UpdateByOperation.UpdateByColumn.UpdateBySpec.UpdateByRollingCount.forward_window_scale) - 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) { - ::google::protobuf::internal::TSanWrite(&_impl_); - if (GetArena() == nullptr) { - delete reinterpret_cast<::google::protobuf::MessageLite*>(_impl_.forward_window_scale_); - } - _impl_.forward_window_scale_ = reinterpret_cast<::io::deephaven::proto::backplane::grpc::UpdateByWindowScale*>(value); - if (value != nullptr) { - _impl_._has_bits_[0] |= 0x00000002u; - } else { - _impl_._has_bits_[0] &= ~0x00000002u; - } - // @@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() { - ::google::protobuf::internal::TSanWrite(&_impl_); - - _impl_._has_bits_[0] &= ~0x00000002u; - ::io::deephaven::proto::backplane::grpc::UpdateByWindowScale* released = _impl_.forward_window_scale_; - _impl_.forward_window_scale_ = nullptr; -#ifdef PROTOBUF_FORCE_COPY_IN_RELEASE - auto* old = reinterpret_cast<::google::protobuf::MessageLite*>(released); - released = ::google::protobuf::internal::DuplicateIfNonNull(released); - if (GetArena() == nullptr) { - delete old; - } -#else // PROTOBUF_FORCE_COPY_IN_RELEASE - if (GetArena() != nullptr) { - released = ::google::protobuf::internal::DuplicateIfNonNull(released); - } -#endif // !PROTOBUF_FORCE_COPY_IN_RELEASE - return released; -} -inline ::io::deephaven::proto::backplane::grpc::UpdateByWindowScale* UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingCount::unsafe_arena_release_forward_window_scale() { - ::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; - ::io::deephaven::proto::backplane::grpc::UpdateByWindowScale* temp = _impl_.forward_window_scale_; - _impl_.forward_window_scale_ = nullptr; - return temp; -} -inline ::io::deephaven::proto::backplane::grpc::UpdateByWindowScale* UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingCount::_internal_mutable_forward_window_scale() { - ::google::protobuf::internal::TSanWrite(&_impl_); - if (_impl_.forward_window_scale_ == nullptr) { - 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(); - ::google::protobuf::internal::TSanWrite(&_impl_); - if (message_arena == nullptr) { - delete (_impl_.forward_window_scale_); - } - - if (value != nullptr) { - ::google::protobuf::Arena* submessage_arena = (value)->GetArena(); - if (message_arena != submessage_arena) { - value = ::google::protobuf::internal::GetOwnedMessage(message_arena, value, submessage_arena); - } - _impl_._has_bits_[0] |= 0x00000002u; - } else { - _impl_._has_bits_[0] &= ~0x00000002u; - } - - _impl_.forward_window_scale_ = reinterpret_cast<::io::deephaven::proto::backplane::grpc::UpdateByWindowScale*>(value); - // @@protoc_insertion_point(field_set_allocated:io.deephaven.proto.backplane.grpc.UpdateByRequest.UpdateByOperation.UpdateByColumn.UpdateBySpec.UpdateByRollingCount.forward_window_scale) -} - -// ------------------------------------------------------------------- - -// UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingStd - -// .io.deephaven.proto.backplane.grpc.UpdateByWindowScale reverse_window_scale = 1; -inline bool UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingStd::has_reverse_window_scale() const { - bool value = (_impl_._has_bits_[0] & 0x00000001u) != 0; - PROTOBUF_ASSUME(!value || _impl_.reverse_window_scale_ != nullptr); - return value; -} -inline void UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingStd::clear_reverse_window_scale() { - ::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 { - ::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_); -} -inline const ::io::deephaven::proto::backplane::grpc::UpdateByWindowScale& UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingStd::reverse_window_scale() const ABSL_ATTRIBUTE_LIFETIME_BOUND { - // @@protoc_insertion_point(field_get:io.deephaven.proto.backplane.grpc.UpdateByRequest.UpdateByOperation.UpdateByColumn.UpdateBySpec.UpdateByRollingStd.reverse_window_scale) - 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) { - ::google::protobuf::internal::TSanWrite(&_impl_); - if (GetArena() == nullptr) { - delete reinterpret_cast<::google::protobuf::MessageLite*>(_impl_.reverse_window_scale_); - } - _impl_.reverse_window_scale_ = reinterpret_cast<::io::deephaven::proto::backplane::grpc::UpdateByWindowScale*>(value); - if (value != nullptr) { - _impl_._has_bits_[0] |= 0x00000001u; - } else { - _impl_._has_bits_[0] &= ~0x00000001u; - } - // @@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() { - ::google::protobuf::internal::TSanWrite(&_impl_); - - _impl_._has_bits_[0] &= ~0x00000001u; - ::io::deephaven::proto::backplane::grpc::UpdateByWindowScale* released = _impl_.reverse_window_scale_; - _impl_.reverse_window_scale_ = nullptr; -#ifdef PROTOBUF_FORCE_COPY_IN_RELEASE - auto* old = reinterpret_cast<::google::protobuf::MessageLite*>(released); - released = ::google::protobuf::internal::DuplicateIfNonNull(released); - if (GetArena() == nullptr) { - delete old; - } -#else // PROTOBUF_FORCE_COPY_IN_RELEASE - if (GetArena() != nullptr) { - released = ::google::protobuf::internal::DuplicateIfNonNull(released); - } -#endif // !PROTOBUF_FORCE_COPY_IN_RELEASE - return released; -} -inline ::io::deephaven::proto::backplane::grpc::UpdateByWindowScale* UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingStd::unsafe_arena_release_reverse_window_scale() { - ::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; - ::io::deephaven::proto::backplane::grpc::UpdateByWindowScale* temp = _impl_.reverse_window_scale_; - _impl_.reverse_window_scale_ = nullptr; - return temp; -} -inline ::io::deephaven::proto::backplane::grpc::UpdateByWindowScale* UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingStd::_internal_mutable_reverse_window_scale() { - ::google::protobuf::internal::TSanWrite(&_impl_); - if (_impl_.reverse_window_scale_ == nullptr) { - 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(); - ::google::protobuf::internal::TSanWrite(&_impl_); - if (message_arena == nullptr) { - delete (_impl_.reverse_window_scale_); - } - - if (value != nullptr) { - ::google::protobuf::Arena* submessage_arena = (value)->GetArena(); - if (message_arena != submessage_arena) { - value = ::google::protobuf::internal::GetOwnedMessage(message_arena, value, submessage_arena); - } - _impl_._has_bits_[0] |= 0x00000001u; - } else { - _impl_._has_bits_[0] &= ~0x00000001u; - } - - _impl_.reverse_window_scale_ = reinterpret_cast<::io::deephaven::proto::backplane::grpc::UpdateByWindowScale*>(value); - // @@protoc_insertion_point(field_set_allocated:io.deephaven.proto.backplane.grpc.UpdateByRequest.UpdateByOperation.UpdateByColumn.UpdateBySpec.UpdateByRollingStd.reverse_window_scale) -} - -// .io.deephaven.proto.backplane.grpc.UpdateByWindowScale forward_window_scale = 2; -inline bool UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingStd::has_forward_window_scale() const { - bool value = (_impl_._has_bits_[0] & 0x00000002u) != 0; - PROTOBUF_ASSUME(!value || _impl_.forward_window_scale_ != nullptr); - return value; -} -inline void UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingStd::clear_forward_window_scale() { - ::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 { - ::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_); -} -inline const ::io::deephaven::proto::backplane::grpc::UpdateByWindowScale& UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingStd::forward_window_scale() const ABSL_ATTRIBUTE_LIFETIME_BOUND { - // @@protoc_insertion_point(field_get:io.deephaven.proto.backplane.grpc.UpdateByRequest.UpdateByOperation.UpdateByColumn.UpdateBySpec.UpdateByRollingStd.forward_window_scale) - 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) { - ::google::protobuf::internal::TSanWrite(&_impl_); - if (GetArena() == nullptr) { - delete reinterpret_cast<::google::protobuf::MessageLite*>(_impl_.forward_window_scale_); - } - _impl_.forward_window_scale_ = reinterpret_cast<::io::deephaven::proto::backplane::grpc::UpdateByWindowScale*>(value); - if (value != nullptr) { - _impl_._has_bits_[0] |= 0x00000002u; - } else { - _impl_._has_bits_[0] &= ~0x00000002u; - } - // @@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() { - ::google::protobuf::internal::TSanWrite(&_impl_); - - _impl_._has_bits_[0] &= ~0x00000002u; - ::io::deephaven::proto::backplane::grpc::UpdateByWindowScale* released = _impl_.forward_window_scale_; - _impl_.forward_window_scale_ = nullptr; -#ifdef PROTOBUF_FORCE_COPY_IN_RELEASE - auto* old = reinterpret_cast<::google::protobuf::MessageLite*>(released); - released = ::google::protobuf::internal::DuplicateIfNonNull(released); - if (GetArena() == nullptr) { - delete old; - } -#else // PROTOBUF_FORCE_COPY_IN_RELEASE - if (GetArena() != nullptr) { - released = ::google::protobuf::internal::DuplicateIfNonNull(released); - } -#endif // !PROTOBUF_FORCE_COPY_IN_RELEASE - return released; -} -inline ::io::deephaven::proto::backplane::grpc::UpdateByWindowScale* UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingStd::unsafe_arena_release_forward_window_scale() { - ::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; - ::io::deephaven::proto::backplane::grpc::UpdateByWindowScale* temp = _impl_.forward_window_scale_; - _impl_.forward_window_scale_ = nullptr; - return temp; -} -inline ::io::deephaven::proto::backplane::grpc::UpdateByWindowScale* UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingStd::_internal_mutable_forward_window_scale() { - ::google::protobuf::internal::TSanWrite(&_impl_); - if (_impl_.forward_window_scale_ == nullptr) { - 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(); - ::google::protobuf::internal::TSanWrite(&_impl_); - if (message_arena == nullptr) { - delete (_impl_.forward_window_scale_); - } - - if (value != nullptr) { - ::google::protobuf::Arena* submessage_arena = (value)->GetArena(); - if (message_arena != submessage_arena) { - value = ::google::protobuf::internal::GetOwnedMessage(message_arena, value, submessage_arena); - } - _impl_._has_bits_[0] |= 0x00000002u; - } else { - _impl_._has_bits_[0] &= ~0x00000002u; - } - - _impl_.forward_window_scale_ = reinterpret_cast<::io::deephaven::proto::backplane::grpc::UpdateByWindowScale*>(value); - // @@protoc_insertion_point(field_set_allocated:io.deephaven.proto.backplane.grpc.UpdateByRequest.UpdateByOperation.UpdateByColumn.UpdateBySpec.UpdateByRollingStd.forward_window_scale) -} - -// ------------------------------------------------------------------- - -// UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingWAvg - -// .io.deephaven.proto.backplane.grpc.UpdateByWindowScale reverse_window_scale = 1; -inline bool UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingWAvg::has_reverse_window_scale() const { - bool value = (_impl_._has_bits_[0] & 0x00000001u) != 0; - PROTOBUF_ASSUME(!value || _impl_.reverse_window_scale_ != nullptr); - return value; -} -inline void UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingWAvg::clear_reverse_window_scale() { - ::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 { - ::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_); -} -inline const ::io::deephaven::proto::backplane::grpc::UpdateByWindowScale& UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingWAvg::reverse_window_scale() const ABSL_ATTRIBUTE_LIFETIME_BOUND { - // @@protoc_insertion_point(field_get:io.deephaven.proto.backplane.grpc.UpdateByRequest.UpdateByOperation.UpdateByColumn.UpdateBySpec.UpdateByRollingWAvg.reverse_window_scale) - 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) { - ::google::protobuf::internal::TSanWrite(&_impl_); - if (GetArena() == nullptr) { - delete reinterpret_cast<::google::protobuf::MessageLite*>(_impl_.reverse_window_scale_); - } - _impl_.reverse_window_scale_ = reinterpret_cast<::io::deephaven::proto::backplane::grpc::UpdateByWindowScale*>(value); - if (value != nullptr) { - _impl_._has_bits_[0] |= 0x00000001u; - } else { - _impl_._has_bits_[0] &= ~0x00000001u; - } - // @@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() { - ::google::protobuf::internal::TSanWrite(&_impl_); - - _impl_._has_bits_[0] &= ~0x00000001u; - ::io::deephaven::proto::backplane::grpc::UpdateByWindowScale* released = _impl_.reverse_window_scale_; - _impl_.reverse_window_scale_ = nullptr; -#ifdef PROTOBUF_FORCE_COPY_IN_RELEASE - auto* old = reinterpret_cast<::google::protobuf::MessageLite*>(released); - released = ::google::protobuf::internal::DuplicateIfNonNull(released); - if (GetArena() == nullptr) { - delete old; - } -#else // PROTOBUF_FORCE_COPY_IN_RELEASE - if (GetArena() != nullptr) { - released = ::google::protobuf::internal::DuplicateIfNonNull(released); - } -#endif // !PROTOBUF_FORCE_COPY_IN_RELEASE - return released; -} -inline ::io::deephaven::proto::backplane::grpc::UpdateByWindowScale* UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingWAvg::unsafe_arena_release_reverse_window_scale() { - ::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; - ::io::deephaven::proto::backplane::grpc::UpdateByWindowScale* temp = _impl_.reverse_window_scale_; - _impl_.reverse_window_scale_ = nullptr; - return temp; -} -inline ::io::deephaven::proto::backplane::grpc::UpdateByWindowScale* UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingWAvg::_internal_mutable_reverse_window_scale() { - ::google::protobuf::internal::TSanWrite(&_impl_); - if (_impl_.reverse_window_scale_ == nullptr) { - 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(); - ::google::protobuf::internal::TSanWrite(&_impl_); - if (message_arena == nullptr) { - delete (_impl_.reverse_window_scale_); - } - - if (value != nullptr) { - ::google::protobuf::Arena* submessage_arena = (value)->GetArena(); - if (message_arena != submessage_arena) { - value = ::google::protobuf::internal::GetOwnedMessage(message_arena, value, submessage_arena); - } - _impl_._has_bits_[0] |= 0x00000001u; - } else { - _impl_._has_bits_[0] &= ~0x00000001u; - } - - _impl_.reverse_window_scale_ = reinterpret_cast<::io::deephaven::proto::backplane::grpc::UpdateByWindowScale*>(value); - // @@protoc_insertion_point(field_set_allocated:io.deephaven.proto.backplane.grpc.UpdateByRequest.UpdateByOperation.UpdateByColumn.UpdateBySpec.UpdateByRollingWAvg.reverse_window_scale) -} - -// .io.deephaven.proto.backplane.grpc.UpdateByWindowScale forward_window_scale = 2; -inline bool UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingWAvg::has_forward_window_scale() const { - bool value = (_impl_._has_bits_[0] & 0x00000002u) != 0; - PROTOBUF_ASSUME(!value || _impl_.forward_window_scale_ != nullptr); - return value; -} -inline void UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingWAvg::clear_forward_window_scale() { - ::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 { - ::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_); -} -inline const ::io::deephaven::proto::backplane::grpc::UpdateByWindowScale& UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingWAvg::forward_window_scale() const ABSL_ATTRIBUTE_LIFETIME_BOUND { - // @@protoc_insertion_point(field_get:io.deephaven.proto.backplane.grpc.UpdateByRequest.UpdateByOperation.UpdateByColumn.UpdateBySpec.UpdateByRollingWAvg.forward_window_scale) - 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) { - ::google::protobuf::internal::TSanWrite(&_impl_); - if (GetArena() == nullptr) { - delete reinterpret_cast<::google::protobuf::MessageLite*>(_impl_.forward_window_scale_); - } - _impl_.forward_window_scale_ = reinterpret_cast<::io::deephaven::proto::backplane::grpc::UpdateByWindowScale*>(value); - if (value != nullptr) { - _impl_._has_bits_[0] |= 0x00000002u; - } else { - _impl_._has_bits_[0] &= ~0x00000002u; - } - // @@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() { - ::google::protobuf::internal::TSanWrite(&_impl_); - - _impl_._has_bits_[0] &= ~0x00000002u; - ::io::deephaven::proto::backplane::grpc::UpdateByWindowScale* released = _impl_.forward_window_scale_; - _impl_.forward_window_scale_ = nullptr; -#ifdef PROTOBUF_FORCE_COPY_IN_RELEASE - auto* old = reinterpret_cast<::google::protobuf::MessageLite*>(released); - released = ::google::protobuf::internal::DuplicateIfNonNull(released); - if (GetArena() == nullptr) { - delete old; - } -#else // PROTOBUF_FORCE_COPY_IN_RELEASE - if (GetArena() != nullptr) { - released = ::google::protobuf::internal::DuplicateIfNonNull(released); - } -#endif // !PROTOBUF_FORCE_COPY_IN_RELEASE - return released; -} -inline ::io::deephaven::proto::backplane::grpc::UpdateByWindowScale* UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingWAvg::unsafe_arena_release_forward_window_scale() { - ::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; - ::io::deephaven::proto::backplane::grpc::UpdateByWindowScale* temp = _impl_.forward_window_scale_; - _impl_.forward_window_scale_ = nullptr; - return temp; -} -inline ::io::deephaven::proto::backplane::grpc::UpdateByWindowScale* UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingWAvg::_internal_mutable_forward_window_scale() { - ::google::protobuf::internal::TSanWrite(&_impl_); - if (_impl_.forward_window_scale_ == nullptr) { - 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(); - ::google::protobuf::internal::TSanWrite(&_impl_); - if (message_arena == nullptr) { - delete (_impl_.forward_window_scale_); - } - - if (value != nullptr) { - ::google::protobuf::Arena* submessage_arena = (value)->GetArena(); - if (message_arena != submessage_arena) { - value = ::google::protobuf::internal::GetOwnedMessage(message_arena, value, submessage_arena); - } - _impl_._has_bits_[0] |= 0x00000002u; - } else { - _impl_._has_bits_[0] &= ~0x00000002u; - } - - _impl_.forward_window_scale_ = reinterpret_cast<::io::deephaven::proto::backplane::grpc::UpdateByWindowScale*>(value); - // @@protoc_insertion_point(field_set_allocated:io.deephaven.proto.backplane.grpc.UpdateByRequest.UpdateByOperation.UpdateByColumn.UpdateBySpec.UpdateByRollingWAvg.forward_window_scale) -} - -// string weight_column = 3; -inline void UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingWAvg::clear_weight_column() { - ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.weight_column_.ClearToEmpty(); -} -inline const std::string& UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingWAvg::weight_column() const - ABSL_ATTRIBUTE_LIFETIME_BOUND { - // @@protoc_insertion_point(field_get:io.deephaven.proto.backplane.grpc.UpdateByRequest.UpdateByOperation.UpdateByColumn.UpdateBySpec.UpdateByRollingWAvg.weight_column) - return _internal_weight_column(); -} -template -inline PROTOBUF_ALWAYS_INLINE void UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingWAvg::set_weight_column(Arg_&& arg, - Args_... args) { - ::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) -} -inline std::string* UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingWAvg::mutable_weight_column() ABSL_ATTRIBUTE_LIFETIME_BOUND { - std::string* _s = _internal_mutable_weight_column(); - // @@protoc_insertion_point(field_mutable:io.deephaven.proto.backplane.grpc.UpdateByRequest.UpdateByOperation.UpdateByColumn.UpdateBySpec.UpdateByRollingWAvg.weight_column) - return _s; -} -inline const std::string& UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingWAvg::_internal_weight_column() const { - ::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) { - ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.weight_column_.Set(value, GetArena()); -} -inline std::string* UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingWAvg::_internal_mutable_weight_column() { - ::google::protobuf::internal::TSanWrite(&_impl_); - return _impl_.weight_column_.Mutable( GetArena()); -} -inline std::string* UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingWAvg::release_weight_column() { - ::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) { - ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.weight_column_.SetAllocated(value, GetArena()); - #ifdef PROTOBUF_FORCE_COPY_DEFAULT_STRING - if (_impl_.weight_column_.IsDefault()) { - _impl_.weight_column_.Set("", GetArena()); - } - #endif // PROTOBUF_FORCE_COPY_DEFAULT_STRING - // @@protoc_insertion_point(field_set_allocated:io.deephaven.proto.backplane.grpc.UpdateByRequest.UpdateByOperation.UpdateByColumn.UpdateBySpec.UpdateByRollingWAvg.weight_column) -} - -// ------------------------------------------------------------------- - -// UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingFormula - -// .io.deephaven.proto.backplane.grpc.UpdateByWindowScale reverse_window_scale = 1; -inline bool UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingFormula::has_reverse_window_scale() const { - bool value = (_impl_._has_bits_[0] & 0x00000001u) != 0; - PROTOBUF_ASSUME(!value || _impl_.reverse_window_scale_ != nullptr); - return value; -} -inline void UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingFormula::clear_reverse_window_scale() { - ::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 { - ::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_); -} -inline const ::io::deephaven::proto::backplane::grpc::UpdateByWindowScale& UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingFormula::reverse_window_scale() const ABSL_ATTRIBUTE_LIFETIME_BOUND { - // @@protoc_insertion_point(field_get:io.deephaven.proto.backplane.grpc.UpdateByRequest.UpdateByOperation.UpdateByColumn.UpdateBySpec.UpdateByRollingFormula.reverse_window_scale) - 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) { - ::google::protobuf::internal::TSanWrite(&_impl_); - if (GetArena() == nullptr) { - delete reinterpret_cast<::google::protobuf::MessageLite*>(_impl_.reverse_window_scale_); - } - _impl_.reverse_window_scale_ = reinterpret_cast<::io::deephaven::proto::backplane::grpc::UpdateByWindowScale*>(value); - if (value != nullptr) { - _impl_._has_bits_[0] |= 0x00000001u; - } else { - _impl_._has_bits_[0] &= ~0x00000001u; - } - // @@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() { - ::google::protobuf::internal::TSanWrite(&_impl_); - - _impl_._has_bits_[0] &= ~0x00000001u; - ::io::deephaven::proto::backplane::grpc::UpdateByWindowScale* released = _impl_.reverse_window_scale_; - _impl_.reverse_window_scale_ = nullptr; -#ifdef PROTOBUF_FORCE_COPY_IN_RELEASE - auto* old = reinterpret_cast<::google::protobuf::MessageLite*>(released); - released = ::google::protobuf::internal::DuplicateIfNonNull(released); - if (GetArena() == nullptr) { - delete old; - } -#else // PROTOBUF_FORCE_COPY_IN_RELEASE - if (GetArena() != nullptr) { - released = ::google::protobuf::internal::DuplicateIfNonNull(released); - } -#endif // !PROTOBUF_FORCE_COPY_IN_RELEASE - return released; -} -inline ::io::deephaven::proto::backplane::grpc::UpdateByWindowScale* UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingFormula::unsafe_arena_release_reverse_window_scale() { - ::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; - ::io::deephaven::proto::backplane::grpc::UpdateByWindowScale* temp = _impl_.reverse_window_scale_; - _impl_.reverse_window_scale_ = nullptr; - return temp; -} -inline ::io::deephaven::proto::backplane::grpc::UpdateByWindowScale* UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingFormula::_internal_mutable_reverse_window_scale() { - ::google::protobuf::internal::TSanWrite(&_impl_); - if (_impl_.reverse_window_scale_ == nullptr) { - 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(); - ::google::protobuf::internal::TSanWrite(&_impl_); - if (message_arena == nullptr) { - delete (_impl_.reverse_window_scale_); - } - - if (value != nullptr) { - ::google::protobuf::Arena* submessage_arena = (value)->GetArena(); - if (message_arena != submessage_arena) { - value = ::google::protobuf::internal::GetOwnedMessage(message_arena, value, submessage_arena); - } - _impl_._has_bits_[0] |= 0x00000001u; - } else { - _impl_._has_bits_[0] &= ~0x00000001u; - } - - _impl_.reverse_window_scale_ = reinterpret_cast<::io::deephaven::proto::backplane::grpc::UpdateByWindowScale*>(value); - // @@protoc_insertion_point(field_set_allocated:io.deephaven.proto.backplane.grpc.UpdateByRequest.UpdateByOperation.UpdateByColumn.UpdateBySpec.UpdateByRollingFormula.reverse_window_scale) -} - -// .io.deephaven.proto.backplane.grpc.UpdateByWindowScale forward_window_scale = 2; -inline bool UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingFormula::has_forward_window_scale() const { - bool value = (_impl_._has_bits_[0] & 0x00000002u) != 0; - PROTOBUF_ASSUME(!value || _impl_.forward_window_scale_ != nullptr); - return value; -} -inline void UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingFormula::clear_forward_window_scale() { - ::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 { - ::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_); -} -inline const ::io::deephaven::proto::backplane::grpc::UpdateByWindowScale& UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingFormula::forward_window_scale() const ABSL_ATTRIBUTE_LIFETIME_BOUND { - // @@protoc_insertion_point(field_get:io.deephaven.proto.backplane.grpc.UpdateByRequest.UpdateByOperation.UpdateByColumn.UpdateBySpec.UpdateByRollingFormula.forward_window_scale) - 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) { - ::google::protobuf::internal::TSanWrite(&_impl_); - if (GetArena() == nullptr) { - delete reinterpret_cast<::google::protobuf::MessageLite*>(_impl_.forward_window_scale_); - } - _impl_.forward_window_scale_ = reinterpret_cast<::io::deephaven::proto::backplane::grpc::UpdateByWindowScale*>(value); - if (value != nullptr) { - _impl_._has_bits_[0] |= 0x00000002u; - } else { - _impl_._has_bits_[0] &= ~0x00000002u; - } - // @@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() { - ::google::protobuf::internal::TSanWrite(&_impl_); - - _impl_._has_bits_[0] &= ~0x00000002u; - ::io::deephaven::proto::backplane::grpc::UpdateByWindowScale* released = _impl_.forward_window_scale_; - _impl_.forward_window_scale_ = nullptr; -#ifdef PROTOBUF_FORCE_COPY_IN_RELEASE - auto* old = reinterpret_cast<::google::protobuf::MessageLite*>(released); - released = ::google::protobuf::internal::DuplicateIfNonNull(released); - if (GetArena() == nullptr) { - delete old; - } -#else // PROTOBUF_FORCE_COPY_IN_RELEASE - if (GetArena() != nullptr) { - released = ::google::protobuf::internal::DuplicateIfNonNull(released); - } -#endif // !PROTOBUF_FORCE_COPY_IN_RELEASE - return released; -} -inline ::io::deephaven::proto::backplane::grpc::UpdateByWindowScale* UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingFormula::unsafe_arena_release_forward_window_scale() { - ::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; - ::io::deephaven::proto::backplane::grpc::UpdateByWindowScale* temp = _impl_.forward_window_scale_; - _impl_.forward_window_scale_ = nullptr; - return temp; -} -inline ::io::deephaven::proto::backplane::grpc::UpdateByWindowScale* UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingFormula::_internal_mutable_forward_window_scale() { - ::google::protobuf::internal::TSanWrite(&_impl_); - if (_impl_.forward_window_scale_ == nullptr) { - 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(); - ::google::protobuf::internal::TSanWrite(&_impl_); - if (message_arena == nullptr) { - delete (_impl_.forward_window_scale_); - } - - if (value != nullptr) { - ::google::protobuf::Arena* submessage_arena = (value)->GetArena(); - if (message_arena != submessage_arena) { - value = ::google::protobuf::internal::GetOwnedMessage(message_arena, value, submessage_arena); - } - _impl_._has_bits_[0] |= 0x00000002u; - } else { - _impl_._has_bits_[0] &= ~0x00000002u; - } - - _impl_.forward_window_scale_ = reinterpret_cast<::io::deephaven::proto::backplane::grpc::UpdateByWindowScale*>(value); - // @@protoc_insertion_point(field_set_allocated:io.deephaven.proto.backplane.grpc.UpdateByRequest.UpdateByOperation.UpdateByColumn.UpdateBySpec.UpdateByRollingFormula.forward_window_scale) -} - -// string formula = 3; -inline void UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingFormula::clear_formula() { - ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.formula_.ClearToEmpty(); -} -inline const std::string& UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingFormula::formula() const - ABSL_ATTRIBUTE_LIFETIME_BOUND { - // @@protoc_insertion_point(field_get:io.deephaven.proto.backplane.grpc.UpdateByRequest.UpdateByOperation.UpdateByColumn.UpdateBySpec.UpdateByRollingFormula.formula) - return _internal_formula(); -} -template -inline PROTOBUF_ALWAYS_INLINE void UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingFormula::set_formula(Arg_&& arg, - Args_... args) { - ::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) -} -inline std::string* UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingFormula::mutable_formula() ABSL_ATTRIBUTE_LIFETIME_BOUND { - std::string* _s = _internal_mutable_formula(); - // @@protoc_insertion_point(field_mutable:io.deephaven.proto.backplane.grpc.UpdateByRequest.UpdateByOperation.UpdateByColumn.UpdateBySpec.UpdateByRollingFormula.formula) - return _s; -} -inline const std::string& UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingFormula::_internal_formula() const { - ::google::protobuf::internal::TSanRead(&_impl_); - return _impl_.formula_.Get(); -} -inline void UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingFormula::_internal_set_formula(const std::string& value) { - ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.formula_.Set(value, GetArena()); -} -inline std::string* UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingFormula::_internal_mutable_formula() { - ::google::protobuf::internal::TSanWrite(&_impl_); - return _impl_.formula_.Mutable( GetArena()); -} -inline std::string* UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingFormula::release_formula() { - ::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) { - ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.formula_.SetAllocated(value, GetArena()); - #ifdef PROTOBUF_FORCE_COPY_DEFAULT_STRING - if (_impl_.formula_.IsDefault()) { - _impl_.formula_.Set("", GetArena()); - } - #endif // PROTOBUF_FORCE_COPY_DEFAULT_STRING - // @@protoc_insertion_point(field_set_allocated:io.deephaven.proto.backplane.grpc.UpdateByRequest.UpdateByOperation.UpdateByColumn.UpdateBySpec.UpdateByRollingFormula.formula) -} - -// string param_token = 4; -inline void UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingFormula::clear_param_token() { - ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.param_token_.ClearToEmpty(); -} -inline const std::string& UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingFormula::param_token() const - ABSL_ATTRIBUTE_LIFETIME_BOUND { - // @@protoc_insertion_point(field_get:io.deephaven.proto.backplane.grpc.UpdateByRequest.UpdateByOperation.UpdateByColumn.UpdateBySpec.UpdateByRollingFormula.param_token) - return _internal_param_token(); -} -template -inline PROTOBUF_ALWAYS_INLINE void UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingFormula::set_param_token(Arg_&& arg, - Args_... args) { - ::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) -} -inline std::string* UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingFormula::mutable_param_token() ABSL_ATTRIBUTE_LIFETIME_BOUND { - std::string* _s = _internal_mutable_param_token(); - // @@protoc_insertion_point(field_mutable:io.deephaven.proto.backplane.grpc.UpdateByRequest.UpdateByOperation.UpdateByColumn.UpdateBySpec.UpdateByRollingFormula.param_token) - return _s; -} -inline const std::string& UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingFormula::_internal_param_token() const { - ::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) { - ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.param_token_.Set(value, GetArena()); -} -inline std::string* UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingFormula::_internal_mutable_param_token() { - ::google::protobuf::internal::TSanWrite(&_impl_); - return _impl_.param_token_.Mutable( GetArena()); -} -inline std::string* UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingFormula::release_param_token() { - ::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) { - ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.param_token_.SetAllocated(value, GetArena()); - #ifdef PROTOBUF_FORCE_COPY_DEFAULT_STRING - if (_impl_.param_token_.IsDefault()) { - _impl_.param_token_.Set("", GetArena()); - } - #endif // PROTOBUF_FORCE_COPY_DEFAULT_STRING - // @@protoc_insertion_point(field_set_allocated:io.deephaven.proto.backplane.grpc.UpdateByRequest.UpdateByOperation.UpdateByColumn.UpdateBySpec.UpdateByRollingFormula.param_token) -} - -// ------------------------------------------------------------------- - -// UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec - -// .io.deephaven.proto.backplane.grpc.UpdateByRequest.UpdateByOperation.UpdateByColumn.UpdateBySpec.UpdateByCumulativeSum sum = 1; -inline bool UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec::has_sum() const { - return type_case() == kSum; -} -inline bool UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec::_internal_has_sum() const { - return type_case() == kSum; -} -inline void UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec::set_has_sum() { - _impl_._oneof_case_[0] = kSum; -} -inline void UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec::clear_sum() { - ::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(); - } -} -inline ::io::deephaven::proto::backplane::grpc::UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByCumulativeSum* UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec::release_sum() { - // @@protoc_insertion_point(field_release:io.deephaven.proto.backplane.grpc.UpdateByRequest.UpdateByOperation.UpdateByColumn.UpdateBySpec.sum) - if (type_case() == kSum) { - clear_has_type(); - auto* temp = _impl_.type_.sum_; - if (GetArena() != nullptr) { - temp = ::google::protobuf::internal::DuplicateIfNonNull(temp); - } - _impl_.type_.sum_ = nullptr; - return temp; - } else { - return nullptr; - } -} -inline const ::io::deephaven::proto::backplane::grpc::UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByCumulativeSum& UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec::_internal_sum() const { - return type_case() == kSum ? *_impl_.type_.sum_ : reinterpret_cast<::io::deephaven::proto::backplane::grpc::UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByCumulativeSum&>(::io::deephaven::proto::backplane::grpc::_UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByCumulativeSum_default_instance_); -} -inline const ::io::deephaven::proto::backplane::grpc::UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByCumulativeSum& UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec::sum() const ABSL_ATTRIBUTE_LIFETIME_BOUND { - // @@protoc_insertion_point(field_get:io.deephaven.proto.backplane.grpc.UpdateByRequest.UpdateByOperation.UpdateByColumn.UpdateBySpec.sum) - return _internal_sum(); -} -inline ::io::deephaven::proto::backplane::grpc::UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByCumulativeSum* UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec::unsafe_arena_release_sum() { - // @@protoc_insertion_point(field_unsafe_arena_release:io.deephaven.proto.backplane.grpc.UpdateByRequest.UpdateByOperation.UpdateByColumn.UpdateBySpec.sum) - if (type_case() == kSum) { - clear_has_type(); - auto* temp = _impl_.type_.sum_; - _impl_.type_.sum_ = nullptr; - return temp; - } else { - return nullptr; - } -} -inline void UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec::unsafe_arena_set_allocated_sum(::io::deephaven::proto::backplane::grpc::UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByCumulativeSum* value) { - // We rely on the oneof clear method to free the earlier contents - // of this oneof. We can directly use the pointer we're given to - // set the new value. - clear_type(); - if (value) { - set_has_sum(); - _impl_.type_.sum_ = value; - } - // @@protoc_insertion_point(field_unsafe_arena_set_allocated:io.deephaven.proto.backplane.grpc.UpdateByRequest.UpdateByOperation.UpdateByColumn.UpdateBySpec.sum) -} -inline ::io::deephaven::proto::backplane::grpc::UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByCumulativeSum* UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec::_internal_mutable_sum() { - if (type_case() != kSum) { - clear_type(); - set_has_sum(); - _impl_.type_.sum_ = - ::google::protobuf::Message::DefaultConstruct<::io::deephaven::proto::backplane::grpc::UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByCumulativeSum>(GetArena()); - } - return _impl_.type_.sum_; -} -inline ::io::deephaven::proto::backplane::grpc::UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByCumulativeSum* UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec::mutable_sum() ABSL_ATTRIBUTE_LIFETIME_BOUND { - ::io::deephaven::proto::backplane::grpc::UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByCumulativeSum* _msg = _internal_mutable_sum(); - // @@protoc_insertion_point(field_mutable:io.deephaven.proto.backplane.grpc.UpdateByRequest.UpdateByOperation.UpdateByColumn.UpdateBySpec.sum) - return _msg; -} - -// .io.deephaven.proto.backplane.grpc.UpdateByRequest.UpdateByOperation.UpdateByColumn.UpdateBySpec.UpdateByCumulativeMin min = 2; -inline bool UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec::has_min() const { - return type_case() == kMin; -} -inline bool UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec::_internal_has_min() const { - return type_case() == kMin; -} -inline void UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec::set_has_min() { - _impl_._oneof_case_[0] = kMin; -} -inline void UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec::clear_min() { - ::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(); - } -} -inline ::io::deephaven::proto::backplane::grpc::UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByCumulativeMin* UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec::release_min() { - // @@protoc_insertion_point(field_release:io.deephaven.proto.backplane.grpc.UpdateByRequest.UpdateByOperation.UpdateByColumn.UpdateBySpec.min) - if (type_case() == kMin) { - clear_has_type(); - auto* temp = _impl_.type_.min_; - if (GetArena() != nullptr) { - temp = ::google::protobuf::internal::DuplicateIfNonNull(temp); - } - _impl_.type_.min_ = nullptr; - return temp; - } else { - return nullptr; - } -} -inline const ::io::deephaven::proto::backplane::grpc::UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByCumulativeMin& UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec::_internal_min() const { - return type_case() == kMin ? *_impl_.type_.min_ : reinterpret_cast<::io::deephaven::proto::backplane::grpc::UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByCumulativeMin&>(::io::deephaven::proto::backplane::grpc::_UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByCumulativeMin_default_instance_); -} -inline const ::io::deephaven::proto::backplane::grpc::UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByCumulativeMin& UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec::min() const ABSL_ATTRIBUTE_LIFETIME_BOUND { - // @@protoc_insertion_point(field_get:io.deephaven.proto.backplane.grpc.UpdateByRequest.UpdateByOperation.UpdateByColumn.UpdateBySpec.min) - return _internal_min(); -} -inline ::io::deephaven::proto::backplane::grpc::UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByCumulativeMin* UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec::unsafe_arena_release_min() { - // @@protoc_insertion_point(field_unsafe_arena_release:io.deephaven.proto.backplane.grpc.UpdateByRequest.UpdateByOperation.UpdateByColumn.UpdateBySpec.min) - if (type_case() == kMin) { - clear_has_type(); - auto* temp = _impl_.type_.min_; - _impl_.type_.min_ = nullptr; - return temp; - } else { - return nullptr; - } -} -inline void UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec::unsafe_arena_set_allocated_min(::io::deephaven::proto::backplane::grpc::UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByCumulativeMin* value) { - // We rely on the oneof clear method to free the earlier contents - // of this oneof. We can directly use the pointer we're given to - // set the new value. - clear_type(); - if (value) { - set_has_min(); - _impl_.type_.min_ = value; - } - // @@protoc_insertion_point(field_unsafe_arena_set_allocated:io.deephaven.proto.backplane.grpc.UpdateByRequest.UpdateByOperation.UpdateByColumn.UpdateBySpec.min) -} -inline ::io::deephaven::proto::backplane::grpc::UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByCumulativeMin* UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec::_internal_mutable_min() { - if (type_case() != kMin) { - clear_type(); - set_has_min(); - _impl_.type_.min_ = - ::google::protobuf::Message::DefaultConstruct<::io::deephaven::proto::backplane::grpc::UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByCumulativeMin>(GetArena()); - } - return _impl_.type_.min_; -} -inline ::io::deephaven::proto::backplane::grpc::UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByCumulativeMin* UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec::mutable_min() ABSL_ATTRIBUTE_LIFETIME_BOUND { - ::io::deephaven::proto::backplane::grpc::UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByCumulativeMin* _msg = _internal_mutable_min(); - // @@protoc_insertion_point(field_mutable:io.deephaven.proto.backplane.grpc.UpdateByRequest.UpdateByOperation.UpdateByColumn.UpdateBySpec.min) - return _msg; -} - -// .io.deephaven.proto.backplane.grpc.UpdateByRequest.UpdateByOperation.UpdateByColumn.UpdateBySpec.UpdateByCumulativeMax max = 3; -inline bool UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec::has_max() const { - return type_case() == kMax; -} -inline bool UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec::_internal_has_max() const { - return type_case() == kMax; -} -inline void UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec::set_has_max() { - _impl_._oneof_case_[0] = kMax; -} -inline void UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec::clear_max() { - ::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(); - } -} -inline ::io::deephaven::proto::backplane::grpc::UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByCumulativeMax* UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec::release_max() { - // @@protoc_insertion_point(field_release:io.deephaven.proto.backplane.grpc.UpdateByRequest.UpdateByOperation.UpdateByColumn.UpdateBySpec.max) - if (type_case() == kMax) { - clear_has_type(); - auto* temp = _impl_.type_.max_; - if (GetArena() != nullptr) { - temp = ::google::protobuf::internal::DuplicateIfNonNull(temp); - } - _impl_.type_.max_ = nullptr; - return temp; - } else { - return nullptr; - } -} -inline const ::io::deephaven::proto::backplane::grpc::UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByCumulativeMax& UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec::_internal_max() const { - return type_case() == kMax ? *_impl_.type_.max_ : reinterpret_cast<::io::deephaven::proto::backplane::grpc::UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByCumulativeMax&>(::io::deephaven::proto::backplane::grpc::_UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByCumulativeMax_default_instance_); -} -inline const ::io::deephaven::proto::backplane::grpc::UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByCumulativeMax& UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec::max() const ABSL_ATTRIBUTE_LIFETIME_BOUND { - // @@protoc_insertion_point(field_get:io.deephaven.proto.backplane.grpc.UpdateByRequest.UpdateByOperation.UpdateByColumn.UpdateBySpec.max) - return _internal_max(); -} -inline ::io::deephaven::proto::backplane::grpc::UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByCumulativeMax* UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec::unsafe_arena_release_max() { - // @@protoc_insertion_point(field_unsafe_arena_release:io.deephaven.proto.backplane.grpc.UpdateByRequest.UpdateByOperation.UpdateByColumn.UpdateBySpec.max) - if (type_case() == kMax) { - clear_has_type(); - auto* temp = _impl_.type_.max_; - _impl_.type_.max_ = nullptr; - return temp; - } else { - return nullptr; - } -} -inline void UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec::unsafe_arena_set_allocated_max(::io::deephaven::proto::backplane::grpc::UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByCumulativeMax* value) { - // We rely on the oneof clear method to free the earlier contents - // of this oneof. We can directly use the pointer we're given to - // set the new value. - clear_type(); - if (value) { - set_has_max(); - _impl_.type_.max_ = value; - } - // @@protoc_insertion_point(field_unsafe_arena_set_allocated:io.deephaven.proto.backplane.grpc.UpdateByRequest.UpdateByOperation.UpdateByColumn.UpdateBySpec.max) -} -inline ::io::deephaven::proto::backplane::grpc::UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByCumulativeMax* UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec::_internal_mutable_max() { - if (type_case() != kMax) { - clear_type(); - set_has_max(); - _impl_.type_.max_ = - ::google::protobuf::Message::DefaultConstruct<::io::deephaven::proto::backplane::grpc::UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByCumulativeMax>(GetArena()); - } - return _impl_.type_.max_; -} -inline ::io::deephaven::proto::backplane::grpc::UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByCumulativeMax* UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec::mutable_max() ABSL_ATTRIBUTE_LIFETIME_BOUND { - ::io::deephaven::proto::backplane::grpc::UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByCumulativeMax* _msg = _internal_mutable_max(); - // @@protoc_insertion_point(field_mutable:io.deephaven.proto.backplane.grpc.UpdateByRequest.UpdateByOperation.UpdateByColumn.UpdateBySpec.max) - return _msg; -} - -// .io.deephaven.proto.backplane.grpc.UpdateByRequest.UpdateByOperation.UpdateByColumn.UpdateBySpec.UpdateByCumulativeProduct product = 4; -inline bool UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec::has_product() const { - return type_case() == kProduct; -} -inline bool UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec::_internal_has_product() const { - return type_case() == kProduct; -} -inline void UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec::set_has_product() { - _impl_._oneof_case_[0] = kProduct; -} -inline void UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec::clear_product() { - ::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(); - } -} -inline ::io::deephaven::proto::backplane::grpc::UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByCumulativeProduct* UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec::release_product() { - // @@protoc_insertion_point(field_release:io.deephaven.proto.backplane.grpc.UpdateByRequest.UpdateByOperation.UpdateByColumn.UpdateBySpec.product) - if (type_case() == kProduct) { - clear_has_type(); - auto* temp = _impl_.type_.product_; - if (GetArena() != nullptr) { - temp = ::google::protobuf::internal::DuplicateIfNonNull(temp); - } - _impl_.type_.product_ = nullptr; - return temp; - } else { - return nullptr; - } -} -inline const ::io::deephaven::proto::backplane::grpc::UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByCumulativeProduct& UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec::_internal_product() const { - return type_case() == kProduct ? *_impl_.type_.product_ : reinterpret_cast<::io::deephaven::proto::backplane::grpc::UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByCumulativeProduct&>(::io::deephaven::proto::backplane::grpc::_UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByCumulativeProduct_default_instance_); -} -inline const ::io::deephaven::proto::backplane::grpc::UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByCumulativeProduct& UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec::product() const ABSL_ATTRIBUTE_LIFETIME_BOUND { - // @@protoc_insertion_point(field_get:io.deephaven.proto.backplane.grpc.UpdateByRequest.UpdateByOperation.UpdateByColumn.UpdateBySpec.product) - return _internal_product(); -} -inline ::io::deephaven::proto::backplane::grpc::UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByCumulativeProduct* UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec::unsafe_arena_release_product() { - // @@protoc_insertion_point(field_unsafe_arena_release:io.deephaven.proto.backplane.grpc.UpdateByRequest.UpdateByOperation.UpdateByColumn.UpdateBySpec.product) - if (type_case() == kProduct) { - clear_has_type(); - auto* temp = _impl_.type_.product_; - _impl_.type_.product_ = nullptr; - return temp; - } else { - return nullptr; - } -} -inline void UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec::unsafe_arena_set_allocated_product(::io::deephaven::proto::backplane::grpc::UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByCumulativeProduct* value) { - // We rely on the oneof clear method to free the earlier contents - // of this oneof. We can directly use the pointer we're given to - // set the new value. - clear_type(); - if (value) { - set_has_product(); - _impl_.type_.product_ = value; - } - // @@protoc_insertion_point(field_unsafe_arena_set_allocated:io.deephaven.proto.backplane.grpc.UpdateByRequest.UpdateByOperation.UpdateByColumn.UpdateBySpec.product) -} -inline ::io::deephaven::proto::backplane::grpc::UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByCumulativeProduct* UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec::_internal_mutable_product() { - if (type_case() != kProduct) { - clear_type(); - set_has_product(); - _impl_.type_.product_ = - ::google::protobuf::Message::DefaultConstruct<::io::deephaven::proto::backplane::grpc::UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByCumulativeProduct>(GetArena()); - } - return _impl_.type_.product_; -} -inline ::io::deephaven::proto::backplane::grpc::UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByCumulativeProduct* UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec::mutable_product() ABSL_ATTRIBUTE_LIFETIME_BOUND { - ::io::deephaven::proto::backplane::grpc::UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByCumulativeProduct* _msg = _internal_mutable_product(); - // @@protoc_insertion_point(field_mutable:io.deephaven.proto.backplane.grpc.UpdateByRequest.UpdateByOperation.UpdateByColumn.UpdateBySpec.product) - return _msg; -} - -// .io.deephaven.proto.backplane.grpc.UpdateByRequest.UpdateByOperation.UpdateByColumn.UpdateBySpec.UpdateByFill fill = 5; -inline bool UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec::has_fill() const { - return type_case() == kFill; -} -inline bool UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec::_internal_has_fill() const { - return type_case() == kFill; -} -inline void UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec::set_has_fill() { - _impl_._oneof_case_[0] = kFill; -} -inline void UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec::clear_fill() { - ::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(); - } -} -inline ::io::deephaven::proto::backplane::grpc::UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByFill* UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec::release_fill() { - // @@protoc_insertion_point(field_release:io.deephaven.proto.backplane.grpc.UpdateByRequest.UpdateByOperation.UpdateByColumn.UpdateBySpec.fill) - if (type_case() == kFill) { - clear_has_type(); - auto* temp = _impl_.type_.fill_; - if (GetArena() != nullptr) { - temp = ::google::protobuf::internal::DuplicateIfNonNull(temp); - } - _impl_.type_.fill_ = nullptr; - return temp; - } else { - return nullptr; - } -} -inline const ::io::deephaven::proto::backplane::grpc::UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByFill& UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec::_internal_fill() const { - return type_case() == kFill ? *_impl_.type_.fill_ : reinterpret_cast<::io::deephaven::proto::backplane::grpc::UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByFill&>(::io::deephaven::proto::backplane::grpc::_UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByFill_default_instance_); -} -inline const ::io::deephaven::proto::backplane::grpc::UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByFill& UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec::fill() const ABSL_ATTRIBUTE_LIFETIME_BOUND { - // @@protoc_insertion_point(field_get:io.deephaven.proto.backplane.grpc.UpdateByRequest.UpdateByOperation.UpdateByColumn.UpdateBySpec.fill) - return _internal_fill(); -} -inline ::io::deephaven::proto::backplane::grpc::UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByFill* UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec::unsafe_arena_release_fill() { - // @@protoc_insertion_point(field_unsafe_arena_release:io.deephaven.proto.backplane.grpc.UpdateByRequest.UpdateByOperation.UpdateByColumn.UpdateBySpec.fill) - if (type_case() == kFill) { - clear_has_type(); - auto* temp = _impl_.type_.fill_; - _impl_.type_.fill_ = nullptr; - return temp; - } else { - return nullptr; - } -} -inline void UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec::unsafe_arena_set_allocated_fill(::io::deephaven::proto::backplane::grpc::UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByFill* value) { - // We rely on the oneof clear method to free the earlier contents - // of this oneof. We can directly use the pointer we're given to - // set the new value. - clear_type(); - if (value) { - set_has_fill(); - _impl_.type_.fill_ = value; - } - // @@protoc_insertion_point(field_unsafe_arena_set_allocated:io.deephaven.proto.backplane.grpc.UpdateByRequest.UpdateByOperation.UpdateByColumn.UpdateBySpec.fill) -} -inline ::io::deephaven::proto::backplane::grpc::UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByFill* UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec::_internal_mutable_fill() { - if (type_case() != kFill) { - clear_type(); - set_has_fill(); - _impl_.type_.fill_ = - ::google::protobuf::Message::DefaultConstruct<::io::deephaven::proto::backplane::grpc::UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByFill>(GetArena()); - } - return _impl_.type_.fill_; -} -inline ::io::deephaven::proto::backplane::grpc::UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByFill* UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec::mutable_fill() ABSL_ATTRIBUTE_LIFETIME_BOUND { - ::io::deephaven::proto::backplane::grpc::UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByFill* _msg = _internal_mutable_fill(); - // @@protoc_insertion_point(field_mutable:io.deephaven.proto.backplane.grpc.UpdateByRequest.UpdateByOperation.UpdateByColumn.UpdateBySpec.fill) - return _msg; -} - -// .io.deephaven.proto.backplane.grpc.UpdateByRequest.UpdateByOperation.UpdateByColumn.UpdateBySpec.UpdateByEma ema = 6; -inline bool UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec::has_ema() const { - return type_case() == kEma; -} -inline bool UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec::_internal_has_ema() const { - return type_case() == kEma; -} -inline void UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec::set_has_ema() { - _impl_._oneof_case_[0] = kEma; -} -inline void UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec::clear_ema() { - ::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(); - } -} -inline ::io::deephaven::proto::backplane::grpc::UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByEma* UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec::release_ema() { - // @@protoc_insertion_point(field_release:io.deephaven.proto.backplane.grpc.UpdateByRequest.UpdateByOperation.UpdateByColumn.UpdateBySpec.ema) - if (type_case() == kEma) { - clear_has_type(); - auto* temp = _impl_.type_.ema_; - if (GetArena() != nullptr) { - temp = ::google::protobuf::internal::DuplicateIfNonNull(temp); - } - _impl_.type_.ema_ = nullptr; - return temp; - } else { - return nullptr; - } -} -inline const ::io::deephaven::proto::backplane::grpc::UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByEma& UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec::_internal_ema() const { - return type_case() == kEma ? *_impl_.type_.ema_ : reinterpret_cast<::io::deephaven::proto::backplane::grpc::UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByEma&>(::io::deephaven::proto::backplane::grpc::_UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByEma_default_instance_); -} -inline const ::io::deephaven::proto::backplane::grpc::UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByEma& UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec::ema() const ABSL_ATTRIBUTE_LIFETIME_BOUND { - // @@protoc_insertion_point(field_get:io.deephaven.proto.backplane.grpc.UpdateByRequest.UpdateByOperation.UpdateByColumn.UpdateBySpec.ema) - return _internal_ema(); -} -inline ::io::deephaven::proto::backplane::grpc::UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByEma* UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec::unsafe_arena_release_ema() { - // @@protoc_insertion_point(field_unsafe_arena_release:io.deephaven.proto.backplane.grpc.UpdateByRequest.UpdateByOperation.UpdateByColumn.UpdateBySpec.ema) - if (type_case() == kEma) { - clear_has_type(); - auto* temp = _impl_.type_.ema_; - _impl_.type_.ema_ = nullptr; - return temp; - } else { - return nullptr; - } -} -inline void UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec::unsafe_arena_set_allocated_ema(::io::deephaven::proto::backplane::grpc::UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByEma* value) { - // We rely on the oneof clear method to free the earlier contents - // of this oneof. We can directly use the pointer we're given to - // set the new value. - clear_type(); - if (value) { - set_has_ema(); - _impl_.type_.ema_ = value; - } - // @@protoc_insertion_point(field_unsafe_arena_set_allocated:io.deephaven.proto.backplane.grpc.UpdateByRequest.UpdateByOperation.UpdateByColumn.UpdateBySpec.ema) -} -inline ::io::deephaven::proto::backplane::grpc::UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByEma* UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec::_internal_mutable_ema() { - if (type_case() != kEma) { - clear_type(); - set_has_ema(); - _impl_.type_.ema_ = - ::google::protobuf::Message::DefaultConstruct<::io::deephaven::proto::backplane::grpc::UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByEma>(GetArena()); - } - return _impl_.type_.ema_; -} -inline ::io::deephaven::proto::backplane::grpc::UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByEma* UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec::mutable_ema() ABSL_ATTRIBUTE_LIFETIME_BOUND { - ::io::deephaven::proto::backplane::grpc::UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByEma* _msg = _internal_mutable_ema(); - // @@protoc_insertion_point(field_mutable:io.deephaven.proto.backplane.grpc.UpdateByRequest.UpdateByOperation.UpdateByColumn.UpdateBySpec.ema) - return _msg; -} - -// .io.deephaven.proto.backplane.grpc.UpdateByRequest.UpdateByOperation.UpdateByColumn.UpdateBySpec.UpdateByRollingSum rolling_sum = 7; -inline bool UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec::has_rolling_sum() const { - return type_case() == kRollingSum; -} -inline bool UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec::_internal_has_rolling_sum() const { - return type_case() == kRollingSum; -} -inline void UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec::set_has_rolling_sum() { - _impl_._oneof_case_[0] = kRollingSum; -} -inline void UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec::clear_rolling_sum() { - ::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(); - } -} -inline ::io::deephaven::proto::backplane::grpc::UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingSum* UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec::release_rolling_sum() { - // @@protoc_insertion_point(field_release:io.deephaven.proto.backplane.grpc.UpdateByRequest.UpdateByOperation.UpdateByColumn.UpdateBySpec.rolling_sum) - if (type_case() == kRollingSum) { - clear_has_type(); - auto* temp = _impl_.type_.rolling_sum_; - if (GetArena() != nullptr) { - temp = ::google::protobuf::internal::DuplicateIfNonNull(temp); - } - _impl_.type_.rolling_sum_ = nullptr; - return temp; - } else { - return nullptr; - } -} -inline const ::io::deephaven::proto::backplane::grpc::UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingSum& UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec::_internal_rolling_sum() const { - return type_case() == kRollingSum ? *_impl_.type_.rolling_sum_ : reinterpret_cast<::io::deephaven::proto::backplane::grpc::UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingSum&>(::io::deephaven::proto::backplane::grpc::_UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingSum_default_instance_); -} -inline const ::io::deephaven::proto::backplane::grpc::UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingSum& UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec::rolling_sum() const ABSL_ATTRIBUTE_LIFETIME_BOUND { - // @@protoc_insertion_point(field_get:io.deephaven.proto.backplane.grpc.UpdateByRequest.UpdateByOperation.UpdateByColumn.UpdateBySpec.rolling_sum) - return _internal_rolling_sum(); -} -inline ::io::deephaven::proto::backplane::grpc::UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingSum* UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec::unsafe_arena_release_rolling_sum() { - // @@protoc_insertion_point(field_unsafe_arena_release:io.deephaven.proto.backplane.grpc.UpdateByRequest.UpdateByOperation.UpdateByColumn.UpdateBySpec.rolling_sum) - if (type_case() == kRollingSum) { - clear_has_type(); - auto* temp = _impl_.type_.rolling_sum_; - _impl_.type_.rolling_sum_ = nullptr; - return temp; - } else { - return nullptr; - } -} -inline void UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec::unsafe_arena_set_allocated_rolling_sum(::io::deephaven::proto::backplane::grpc::UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingSum* value) { - // We rely on the oneof clear method to free the earlier contents - // of this oneof. We can directly use the pointer we're given to - // set the new value. - clear_type(); - if (value) { - set_has_rolling_sum(); - _impl_.type_.rolling_sum_ = value; - } - // @@protoc_insertion_point(field_unsafe_arena_set_allocated:io.deephaven.proto.backplane.grpc.UpdateByRequest.UpdateByOperation.UpdateByColumn.UpdateBySpec.rolling_sum) -} -inline ::io::deephaven::proto::backplane::grpc::UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingSum* UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec::_internal_mutable_rolling_sum() { - if (type_case() != kRollingSum) { - clear_type(); - set_has_rolling_sum(); - _impl_.type_.rolling_sum_ = - ::google::protobuf::Message::DefaultConstruct<::io::deephaven::proto::backplane::grpc::UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingSum>(GetArena()); - } - return _impl_.type_.rolling_sum_; -} -inline ::io::deephaven::proto::backplane::grpc::UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingSum* UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec::mutable_rolling_sum() ABSL_ATTRIBUTE_LIFETIME_BOUND { - ::io::deephaven::proto::backplane::grpc::UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingSum* _msg = _internal_mutable_rolling_sum(); - // @@protoc_insertion_point(field_mutable:io.deephaven.proto.backplane.grpc.UpdateByRequest.UpdateByOperation.UpdateByColumn.UpdateBySpec.rolling_sum) - return _msg; -} - -// .io.deephaven.proto.backplane.grpc.UpdateByRequest.UpdateByOperation.UpdateByColumn.UpdateBySpec.UpdateByRollingGroup rolling_group = 8; -inline bool UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec::has_rolling_group() const { - return type_case() == kRollingGroup; -} -inline bool UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec::_internal_has_rolling_group() const { - return type_case() == kRollingGroup; -} -inline void UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec::set_has_rolling_group() { - _impl_._oneof_case_[0] = kRollingGroup; -} -inline void UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec::clear_rolling_group() { - ::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(); - } -} -inline ::io::deephaven::proto::backplane::grpc::UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingGroup* UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec::release_rolling_group() { - // @@protoc_insertion_point(field_release:io.deephaven.proto.backplane.grpc.UpdateByRequest.UpdateByOperation.UpdateByColumn.UpdateBySpec.rolling_group) - if (type_case() == kRollingGroup) { - clear_has_type(); - auto* temp = _impl_.type_.rolling_group_; - if (GetArena() != nullptr) { - temp = ::google::protobuf::internal::DuplicateIfNonNull(temp); - } - _impl_.type_.rolling_group_ = nullptr; - return temp; - } else { - return nullptr; - } -} -inline const ::io::deephaven::proto::backplane::grpc::UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingGroup& UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec::_internal_rolling_group() const { - return type_case() == kRollingGroup ? *_impl_.type_.rolling_group_ : reinterpret_cast<::io::deephaven::proto::backplane::grpc::UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingGroup&>(::io::deephaven::proto::backplane::grpc::_UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingGroup_default_instance_); -} -inline const ::io::deephaven::proto::backplane::grpc::UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingGroup& UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec::rolling_group() const ABSL_ATTRIBUTE_LIFETIME_BOUND { - // @@protoc_insertion_point(field_get:io.deephaven.proto.backplane.grpc.UpdateByRequest.UpdateByOperation.UpdateByColumn.UpdateBySpec.rolling_group) - return _internal_rolling_group(); -} -inline ::io::deephaven::proto::backplane::grpc::UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingGroup* UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec::unsafe_arena_release_rolling_group() { - // @@protoc_insertion_point(field_unsafe_arena_release:io.deephaven.proto.backplane.grpc.UpdateByRequest.UpdateByOperation.UpdateByColumn.UpdateBySpec.rolling_group) - if (type_case() == kRollingGroup) { - clear_has_type(); - auto* temp = _impl_.type_.rolling_group_; - _impl_.type_.rolling_group_ = nullptr; - return temp; - } else { - return nullptr; - } -} -inline void UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec::unsafe_arena_set_allocated_rolling_group(::io::deephaven::proto::backplane::grpc::UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingGroup* value) { - // We rely on the oneof clear method to free the earlier contents - // of this oneof. We can directly use the pointer we're given to - // set the new value. - clear_type(); - if (value) { - set_has_rolling_group(); - _impl_.type_.rolling_group_ = value; - } - // @@protoc_insertion_point(field_unsafe_arena_set_allocated:io.deephaven.proto.backplane.grpc.UpdateByRequest.UpdateByOperation.UpdateByColumn.UpdateBySpec.rolling_group) -} -inline ::io::deephaven::proto::backplane::grpc::UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingGroup* UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec::_internal_mutable_rolling_group() { - if (type_case() != kRollingGroup) { - clear_type(); - set_has_rolling_group(); - _impl_.type_.rolling_group_ = - ::google::protobuf::Message::DefaultConstruct<::io::deephaven::proto::backplane::grpc::UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingGroup>(GetArena()); - } - return _impl_.type_.rolling_group_; -} -inline ::io::deephaven::proto::backplane::grpc::UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingGroup* UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec::mutable_rolling_group() ABSL_ATTRIBUTE_LIFETIME_BOUND { - ::io::deephaven::proto::backplane::grpc::UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingGroup* _msg = _internal_mutable_rolling_group(); - // @@protoc_insertion_point(field_mutable:io.deephaven.proto.backplane.grpc.UpdateByRequest.UpdateByOperation.UpdateByColumn.UpdateBySpec.rolling_group) - return _msg; -} - -// .io.deephaven.proto.backplane.grpc.UpdateByRequest.UpdateByOperation.UpdateByColumn.UpdateBySpec.UpdateByRollingAvg rolling_avg = 9; -inline bool UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec::has_rolling_avg() const { - return type_case() == kRollingAvg; -} -inline bool UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec::_internal_has_rolling_avg() const { - return type_case() == kRollingAvg; -} -inline void UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec::set_has_rolling_avg() { - _impl_._oneof_case_[0] = kRollingAvg; -} -inline void UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec::clear_rolling_avg() { - ::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(); - } -} -inline ::io::deephaven::proto::backplane::grpc::UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingAvg* UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec::release_rolling_avg() { - // @@protoc_insertion_point(field_release:io.deephaven.proto.backplane.grpc.UpdateByRequest.UpdateByOperation.UpdateByColumn.UpdateBySpec.rolling_avg) - if (type_case() == kRollingAvg) { - clear_has_type(); - auto* temp = _impl_.type_.rolling_avg_; - if (GetArena() != nullptr) { - temp = ::google::protobuf::internal::DuplicateIfNonNull(temp); - } - _impl_.type_.rolling_avg_ = nullptr; - return temp; - } else { - return nullptr; - } -} -inline const ::io::deephaven::proto::backplane::grpc::UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingAvg& UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec::_internal_rolling_avg() const { - return type_case() == kRollingAvg ? *_impl_.type_.rolling_avg_ : reinterpret_cast<::io::deephaven::proto::backplane::grpc::UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingAvg&>(::io::deephaven::proto::backplane::grpc::_UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingAvg_default_instance_); -} -inline const ::io::deephaven::proto::backplane::grpc::UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingAvg& UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec::rolling_avg() const ABSL_ATTRIBUTE_LIFETIME_BOUND { - // @@protoc_insertion_point(field_get:io.deephaven.proto.backplane.grpc.UpdateByRequest.UpdateByOperation.UpdateByColumn.UpdateBySpec.rolling_avg) - return _internal_rolling_avg(); -} -inline ::io::deephaven::proto::backplane::grpc::UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingAvg* UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec::unsafe_arena_release_rolling_avg() { - // @@protoc_insertion_point(field_unsafe_arena_release:io.deephaven.proto.backplane.grpc.UpdateByRequest.UpdateByOperation.UpdateByColumn.UpdateBySpec.rolling_avg) - if (type_case() == kRollingAvg) { - clear_has_type(); - auto* temp = _impl_.type_.rolling_avg_; - _impl_.type_.rolling_avg_ = nullptr; - return temp; - } else { - return nullptr; - } -} -inline void UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec::unsafe_arena_set_allocated_rolling_avg(::io::deephaven::proto::backplane::grpc::UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingAvg* value) { - // We rely on the oneof clear method to free the earlier contents - // of this oneof. We can directly use the pointer we're given to - // set the new value. - clear_type(); - if (value) { - set_has_rolling_avg(); - _impl_.type_.rolling_avg_ = value; - } - // @@protoc_insertion_point(field_unsafe_arena_set_allocated:io.deephaven.proto.backplane.grpc.UpdateByRequest.UpdateByOperation.UpdateByColumn.UpdateBySpec.rolling_avg) -} -inline ::io::deephaven::proto::backplane::grpc::UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingAvg* UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec::_internal_mutable_rolling_avg() { - if (type_case() != kRollingAvg) { - clear_type(); - set_has_rolling_avg(); - _impl_.type_.rolling_avg_ = - ::google::protobuf::Message::DefaultConstruct<::io::deephaven::proto::backplane::grpc::UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingAvg>(GetArena()); - } - return _impl_.type_.rolling_avg_; -} -inline ::io::deephaven::proto::backplane::grpc::UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingAvg* UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec::mutable_rolling_avg() ABSL_ATTRIBUTE_LIFETIME_BOUND { - ::io::deephaven::proto::backplane::grpc::UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingAvg* _msg = _internal_mutable_rolling_avg(); - // @@protoc_insertion_point(field_mutable:io.deephaven.proto.backplane.grpc.UpdateByRequest.UpdateByOperation.UpdateByColumn.UpdateBySpec.rolling_avg) - return _msg; -} - -// .io.deephaven.proto.backplane.grpc.UpdateByRequest.UpdateByOperation.UpdateByColumn.UpdateBySpec.UpdateByRollingMin rolling_min = 10; -inline bool UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec::has_rolling_min() const { - return type_case() == kRollingMin; -} -inline bool UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec::_internal_has_rolling_min() const { - return type_case() == kRollingMin; -} -inline void UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec::set_has_rolling_min() { - _impl_._oneof_case_[0] = kRollingMin; -} -inline void UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec::clear_rolling_min() { - ::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(); - } -} -inline ::io::deephaven::proto::backplane::grpc::UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingMin* UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec::release_rolling_min() { - // @@protoc_insertion_point(field_release:io.deephaven.proto.backplane.grpc.UpdateByRequest.UpdateByOperation.UpdateByColumn.UpdateBySpec.rolling_min) - if (type_case() == kRollingMin) { - clear_has_type(); - auto* temp = _impl_.type_.rolling_min_; - if (GetArena() != nullptr) { - temp = ::google::protobuf::internal::DuplicateIfNonNull(temp); - } - _impl_.type_.rolling_min_ = nullptr; - return temp; - } else { - return nullptr; - } -} -inline const ::io::deephaven::proto::backplane::grpc::UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingMin& UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec::_internal_rolling_min() const { - return type_case() == kRollingMin ? *_impl_.type_.rolling_min_ : reinterpret_cast<::io::deephaven::proto::backplane::grpc::UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingMin&>(::io::deephaven::proto::backplane::grpc::_UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingMin_default_instance_); -} -inline const ::io::deephaven::proto::backplane::grpc::UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingMin& UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec::rolling_min() const ABSL_ATTRIBUTE_LIFETIME_BOUND { - // @@protoc_insertion_point(field_get:io.deephaven.proto.backplane.grpc.UpdateByRequest.UpdateByOperation.UpdateByColumn.UpdateBySpec.rolling_min) - return _internal_rolling_min(); -} -inline ::io::deephaven::proto::backplane::grpc::UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingMin* UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec::unsafe_arena_release_rolling_min() { - // @@protoc_insertion_point(field_unsafe_arena_release:io.deephaven.proto.backplane.grpc.UpdateByRequest.UpdateByOperation.UpdateByColumn.UpdateBySpec.rolling_min) - if (type_case() == kRollingMin) { - clear_has_type(); - auto* temp = _impl_.type_.rolling_min_; - _impl_.type_.rolling_min_ = nullptr; - return temp; - } else { - return nullptr; - } -} -inline void UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec::unsafe_arena_set_allocated_rolling_min(::io::deephaven::proto::backplane::grpc::UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingMin* value) { - // We rely on the oneof clear method to free the earlier contents - // of this oneof. We can directly use the pointer we're given to - // set the new value. - clear_type(); - if (value) { - set_has_rolling_min(); - _impl_.type_.rolling_min_ = value; - } - // @@protoc_insertion_point(field_unsafe_arena_set_allocated:io.deephaven.proto.backplane.grpc.UpdateByRequest.UpdateByOperation.UpdateByColumn.UpdateBySpec.rolling_min) -} -inline ::io::deephaven::proto::backplane::grpc::UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingMin* UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec::_internal_mutable_rolling_min() { - if (type_case() != kRollingMin) { - clear_type(); - set_has_rolling_min(); - _impl_.type_.rolling_min_ = - ::google::protobuf::Message::DefaultConstruct<::io::deephaven::proto::backplane::grpc::UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingMin>(GetArena()); - } - return _impl_.type_.rolling_min_; -} -inline ::io::deephaven::proto::backplane::grpc::UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingMin* UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec::mutable_rolling_min() ABSL_ATTRIBUTE_LIFETIME_BOUND { - ::io::deephaven::proto::backplane::grpc::UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingMin* _msg = _internal_mutable_rolling_min(); - // @@protoc_insertion_point(field_mutable:io.deephaven.proto.backplane.grpc.UpdateByRequest.UpdateByOperation.UpdateByColumn.UpdateBySpec.rolling_min) - return _msg; -} - -// .io.deephaven.proto.backplane.grpc.UpdateByRequest.UpdateByOperation.UpdateByColumn.UpdateBySpec.UpdateByRollingMax rolling_max = 11; -inline bool UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec::has_rolling_max() const { - return type_case() == kRollingMax; -} -inline bool UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec::_internal_has_rolling_max() const { - return type_case() == kRollingMax; -} -inline void UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec::set_has_rolling_max() { - _impl_._oneof_case_[0] = kRollingMax; -} -inline void UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec::clear_rolling_max() { - ::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(); - } -} -inline ::io::deephaven::proto::backplane::grpc::UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingMax* UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec::release_rolling_max() { - // @@protoc_insertion_point(field_release:io.deephaven.proto.backplane.grpc.UpdateByRequest.UpdateByOperation.UpdateByColumn.UpdateBySpec.rolling_max) - if (type_case() == kRollingMax) { - clear_has_type(); - auto* temp = _impl_.type_.rolling_max_; - if (GetArena() != nullptr) { - temp = ::google::protobuf::internal::DuplicateIfNonNull(temp); - } - _impl_.type_.rolling_max_ = nullptr; - return temp; - } else { - return nullptr; - } -} -inline const ::io::deephaven::proto::backplane::grpc::UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingMax& UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec::_internal_rolling_max() const { - return type_case() == kRollingMax ? *_impl_.type_.rolling_max_ : reinterpret_cast<::io::deephaven::proto::backplane::grpc::UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingMax&>(::io::deephaven::proto::backplane::grpc::_UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingMax_default_instance_); -} -inline const ::io::deephaven::proto::backplane::grpc::UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingMax& UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec::rolling_max() const ABSL_ATTRIBUTE_LIFETIME_BOUND { - // @@protoc_insertion_point(field_get:io.deephaven.proto.backplane.grpc.UpdateByRequest.UpdateByOperation.UpdateByColumn.UpdateBySpec.rolling_max) - return _internal_rolling_max(); -} -inline ::io::deephaven::proto::backplane::grpc::UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingMax* UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec::unsafe_arena_release_rolling_max() { - // @@protoc_insertion_point(field_unsafe_arena_release:io.deephaven.proto.backplane.grpc.UpdateByRequest.UpdateByOperation.UpdateByColumn.UpdateBySpec.rolling_max) - if (type_case() == kRollingMax) { - clear_has_type(); - auto* temp = _impl_.type_.rolling_max_; - _impl_.type_.rolling_max_ = nullptr; - return temp; - } else { - return nullptr; - } -} -inline void UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec::unsafe_arena_set_allocated_rolling_max(::io::deephaven::proto::backplane::grpc::UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingMax* value) { - // We rely on the oneof clear method to free the earlier contents - // of this oneof. We can directly use the pointer we're given to - // set the new value. - clear_type(); - if (value) { - set_has_rolling_max(); - _impl_.type_.rolling_max_ = value; - } - // @@protoc_insertion_point(field_unsafe_arena_set_allocated:io.deephaven.proto.backplane.grpc.UpdateByRequest.UpdateByOperation.UpdateByColumn.UpdateBySpec.rolling_max) -} -inline ::io::deephaven::proto::backplane::grpc::UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingMax* UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec::_internal_mutable_rolling_max() { - if (type_case() != kRollingMax) { - clear_type(); - set_has_rolling_max(); - _impl_.type_.rolling_max_ = - ::google::protobuf::Message::DefaultConstruct<::io::deephaven::proto::backplane::grpc::UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingMax>(GetArena()); - } - return _impl_.type_.rolling_max_; -} -inline ::io::deephaven::proto::backplane::grpc::UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingMax* UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec::mutable_rolling_max() ABSL_ATTRIBUTE_LIFETIME_BOUND { - ::io::deephaven::proto::backplane::grpc::UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingMax* _msg = _internal_mutable_rolling_max(); - // @@protoc_insertion_point(field_mutable:io.deephaven.proto.backplane.grpc.UpdateByRequest.UpdateByOperation.UpdateByColumn.UpdateBySpec.rolling_max) - return _msg; -} - -// .io.deephaven.proto.backplane.grpc.UpdateByRequest.UpdateByOperation.UpdateByColumn.UpdateBySpec.UpdateByRollingProduct rolling_product = 12; -inline bool UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec::has_rolling_product() const { - return type_case() == kRollingProduct; -} -inline bool UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec::_internal_has_rolling_product() const { - return type_case() == kRollingProduct; -} -inline void UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec::set_has_rolling_product() { - _impl_._oneof_case_[0] = kRollingProduct; -} -inline void UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec::clear_rolling_product() { - ::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(); - } -} -inline ::io::deephaven::proto::backplane::grpc::UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingProduct* UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec::release_rolling_product() { - // @@protoc_insertion_point(field_release:io.deephaven.proto.backplane.grpc.UpdateByRequest.UpdateByOperation.UpdateByColumn.UpdateBySpec.rolling_product) - if (type_case() == kRollingProduct) { - clear_has_type(); - auto* temp = _impl_.type_.rolling_product_; - if (GetArena() != nullptr) { - temp = ::google::protobuf::internal::DuplicateIfNonNull(temp); - } - _impl_.type_.rolling_product_ = nullptr; - return temp; - } else { - return nullptr; - } -} -inline const ::io::deephaven::proto::backplane::grpc::UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingProduct& UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec::_internal_rolling_product() const { - return type_case() == kRollingProduct ? *_impl_.type_.rolling_product_ : reinterpret_cast<::io::deephaven::proto::backplane::grpc::UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingProduct&>(::io::deephaven::proto::backplane::grpc::_UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingProduct_default_instance_); -} -inline const ::io::deephaven::proto::backplane::grpc::UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingProduct& UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec::rolling_product() const ABSL_ATTRIBUTE_LIFETIME_BOUND { - // @@protoc_insertion_point(field_get:io.deephaven.proto.backplane.grpc.UpdateByRequest.UpdateByOperation.UpdateByColumn.UpdateBySpec.rolling_product) - return _internal_rolling_product(); -} -inline ::io::deephaven::proto::backplane::grpc::UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingProduct* UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec::unsafe_arena_release_rolling_product() { - // @@protoc_insertion_point(field_unsafe_arena_release:io.deephaven.proto.backplane.grpc.UpdateByRequest.UpdateByOperation.UpdateByColumn.UpdateBySpec.rolling_product) - if (type_case() == kRollingProduct) { - clear_has_type(); - auto* temp = _impl_.type_.rolling_product_; - _impl_.type_.rolling_product_ = nullptr; - return temp; - } else { - return nullptr; - } -} -inline void UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec::unsafe_arena_set_allocated_rolling_product(::io::deephaven::proto::backplane::grpc::UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingProduct* value) { - // We rely on the oneof clear method to free the earlier contents - // of this oneof. We can directly use the pointer we're given to - // set the new value. - clear_type(); - if (value) { - set_has_rolling_product(); - _impl_.type_.rolling_product_ = value; - } - // @@protoc_insertion_point(field_unsafe_arena_set_allocated:io.deephaven.proto.backplane.grpc.UpdateByRequest.UpdateByOperation.UpdateByColumn.UpdateBySpec.rolling_product) -} -inline ::io::deephaven::proto::backplane::grpc::UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingProduct* UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec::_internal_mutable_rolling_product() { - if (type_case() != kRollingProduct) { - clear_type(); - set_has_rolling_product(); - _impl_.type_.rolling_product_ = - ::google::protobuf::Message::DefaultConstruct<::io::deephaven::proto::backplane::grpc::UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingProduct>(GetArena()); - } - return _impl_.type_.rolling_product_; -} -inline ::io::deephaven::proto::backplane::grpc::UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingProduct* UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec::mutable_rolling_product() ABSL_ATTRIBUTE_LIFETIME_BOUND { - ::io::deephaven::proto::backplane::grpc::UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingProduct* _msg = _internal_mutable_rolling_product(); - // @@protoc_insertion_point(field_mutable:io.deephaven.proto.backplane.grpc.UpdateByRequest.UpdateByOperation.UpdateByColumn.UpdateBySpec.rolling_product) - return _msg; -} - -// .io.deephaven.proto.backplane.grpc.UpdateByRequest.UpdateByOperation.UpdateByColumn.UpdateBySpec.UpdateByDelta delta = 13; -inline bool UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec::has_delta() const { - return type_case() == kDelta; -} -inline bool UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec::_internal_has_delta() const { - return type_case() == kDelta; -} -inline void UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec::set_has_delta() { - _impl_._oneof_case_[0] = kDelta; -} -inline void UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec::clear_delta() { - ::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(); - } -} -inline ::io::deephaven::proto::backplane::grpc::UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByDelta* UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec::release_delta() { - // @@protoc_insertion_point(field_release:io.deephaven.proto.backplane.grpc.UpdateByRequest.UpdateByOperation.UpdateByColumn.UpdateBySpec.delta) - if (type_case() == kDelta) { - clear_has_type(); - auto* temp = _impl_.type_.delta_; - if (GetArena() != nullptr) { - temp = ::google::protobuf::internal::DuplicateIfNonNull(temp); - } - _impl_.type_.delta_ = nullptr; - return temp; - } else { - return nullptr; - } -} -inline const ::io::deephaven::proto::backplane::grpc::UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByDelta& UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec::_internal_delta() const { - return type_case() == kDelta ? *_impl_.type_.delta_ : reinterpret_cast<::io::deephaven::proto::backplane::grpc::UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByDelta&>(::io::deephaven::proto::backplane::grpc::_UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByDelta_default_instance_); -} -inline const ::io::deephaven::proto::backplane::grpc::UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByDelta& UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec::delta() const ABSL_ATTRIBUTE_LIFETIME_BOUND { - // @@protoc_insertion_point(field_get:io.deephaven.proto.backplane.grpc.UpdateByRequest.UpdateByOperation.UpdateByColumn.UpdateBySpec.delta) - return _internal_delta(); -} -inline ::io::deephaven::proto::backplane::grpc::UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByDelta* UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec::unsafe_arena_release_delta() { - // @@protoc_insertion_point(field_unsafe_arena_release:io.deephaven.proto.backplane.grpc.UpdateByRequest.UpdateByOperation.UpdateByColumn.UpdateBySpec.delta) - if (type_case() == kDelta) { - clear_has_type(); - auto* temp = _impl_.type_.delta_; - _impl_.type_.delta_ = nullptr; - return temp; - } else { - return nullptr; - } -} -inline void UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec::unsafe_arena_set_allocated_delta(::io::deephaven::proto::backplane::grpc::UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByDelta* value) { - // We rely on the oneof clear method to free the earlier contents - // of this oneof. We can directly use the pointer we're given to - // set the new value. - clear_type(); - if (value) { - set_has_delta(); - _impl_.type_.delta_ = value; - } - // @@protoc_insertion_point(field_unsafe_arena_set_allocated:io.deephaven.proto.backplane.grpc.UpdateByRequest.UpdateByOperation.UpdateByColumn.UpdateBySpec.delta) -} -inline ::io::deephaven::proto::backplane::grpc::UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByDelta* UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec::_internal_mutable_delta() { - if (type_case() != kDelta) { - clear_type(); - set_has_delta(); - _impl_.type_.delta_ = - ::google::protobuf::Message::DefaultConstruct<::io::deephaven::proto::backplane::grpc::UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByDelta>(GetArena()); - } - return _impl_.type_.delta_; -} -inline ::io::deephaven::proto::backplane::grpc::UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByDelta* UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec::mutable_delta() ABSL_ATTRIBUTE_LIFETIME_BOUND { - ::io::deephaven::proto::backplane::grpc::UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByDelta* _msg = _internal_mutable_delta(); - // @@protoc_insertion_point(field_mutable:io.deephaven.proto.backplane.grpc.UpdateByRequest.UpdateByOperation.UpdateByColumn.UpdateBySpec.delta) - return _msg; -} - -// .io.deephaven.proto.backplane.grpc.UpdateByRequest.UpdateByOperation.UpdateByColumn.UpdateBySpec.UpdateByEms ems = 14; -inline bool UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec::has_ems() const { - return type_case() == kEms; -} -inline bool UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec::_internal_has_ems() const { - return type_case() == kEms; -} -inline void UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec::set_has_ems() { - _impl_._oneof_case_[0] = kEms; -} -inline void UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec::clear_ems() { - ::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(); - } -} -inline ::io::deephaven::proto::backplane::grpc::UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByEms* UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec::release_ems() { - // @@protoc_insertion_point(field_release:io.deephaven.proto.backplane.grpc.UpdateByRequest.UpdateByOperation.UpdateByColumn.UpdateBySpec.ems) - if (type_case() == kEms) { - clear_has_type(); - auto* temp = _impl_.type_.ems_; - if (GetArena() != nullptr) { - temp = ::google::protobuf::internal::DuplicateIfNonNull(temp); - } - _impl_.type_.ems_ = nullptr; - return temp; - } else { - return nullptr; - } -} -inline const ::io::deephaven::proto::backplane::grpc::UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByEms& UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec::_internal_ems() const { - return type_case() == kEms ? *_impl_.type_.ems_ : reinterpret_cast<::io::deephaven::proto::backplane::grpc::UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByEms&>(::io::deephaven::proto::backplane::grpc::_UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByEms_default_instance_); -} -inline const ::io::deephaven::proto::backplane::grpc::UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByEms& UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec::ems() const ABSL_ATTRIBUTE_LIFETIME_BOUND { - // @@protoc_insertion_point(field_get:io.deephaven.proto.backplane.grpc.UpdateByRequest.UpdateByOperation.UpdateByColumn.UpdateBySpec.ems) - return _internal_ems(); -} -inline ::io::deephaven::proto::backplane::grpc::UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByEms* UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec::unsafe_arena_release_ems() { - // @@protoc_insertion_point(field_unsafe_arena_release:io.deephaven.proto.backplane.grpc.UpdateByRequest.UpdateByOperation.UpdateByColumn.UpdateBySpec.ems) - if (type_case() == kEms) { - clear_has_type(); - auto* temp = _impl_.type_.ems_; - _impl_.type_.ems_ = nullptr; - return temp; - } else { - return nullptr; - } -} -inline void UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec::unsafe_arena_set_allocated_ems(::io::deephaven::proto::backplane::grpc::UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByEms* value) { - // We rely on the oneof clear method to free the earlier contents - // of this oneof. We can directly use the pointer we're given to - // set the new value. - clear_type(); - if (value) { - set_has_ems(); - _impl_.type_.ems_ = value; - } - // @@protoc_insertion_point(field_unsafe_arena_set_allocated:io.deephaven.proto.backplane.grpc.UpdateByRequest.UpdateByOperation.UpdateByColumn.UpdateBySpec.ems) -} -inline ::io::deephaven::proto::backplane::grpc::UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByEms* UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec::_internal_mutable_ems() { - if (type_case() != kEms) { - clear_type(); - set_has_ems(); - _impl_.type_.ems_ = - ::google::protobuf::Message::DefaultConstruct<::io::deephaven::proto::backplane::grpc::UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByEms>(GetArena()); - } - return _impl_.type_.ems_; -} -inline ::io::deephaven::proto::backplane::grpc::UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByEms* UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec::mutable_ems() ABSL_ATTRIBUTE_LIFETIME_BOUND { - ::io::deephaven::proto::backplane::grpc::UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByEms* _msg = _internal_mutable_ems(); - // @@protoc_insertion_point(field_mutable:io.deephaven.proto.backplane.grpc.UpdateByRequest.UpdateByOperation.UpdateByColumn.UpdateBySpec.ems) - return _msg; -} - -// .io.deephaven.proto.backplane.grpc.UpdateByRequest.UpdateByOperation.UpdateByColumn.UpdateBySpec.UpdateByEmMin em_min = 15; -inline bool UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec::has_em_min() const { - return type_case() == kEmMin; -} -inline bool UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec::_internal_has_em_min() const { - return type_case() == kEmMin; -} -inline void UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec::set_has_em_min() { - _impl_._oneof_case_[0] = kEmMin; -} -inline void UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec::clear_em_min() { - ::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(); - } -} -inline ::io::deephaven::proto::backplane::grpc::UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByEmMin* UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec::release_em_min() { - // @@protoc_insertion_point(field_release:io.deephaven.proto.backplane.grpc.UpdateByRequest.UpdateByOperation.UpdateByColumn.UpdateBySpec.em_min) - if (type_case() == kEmMin) { - clear_has_type(); - auto* temp = _impl_.type_.em_min_; - if (GetArena() != nullptr) { - temp = ::google::protobuf::internal::DuplicateIfNonNull(temp); - } - _impl_.type_.em_min_ = nullptr; - return temp; - } else { - return nullptr; - } -} -inline const ::io::deephaven::proto::backplane::grpc::UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByEmMin& UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec::_internal_em_min() const { - return type_case() == kEmMin ? *_impl_.type_.em_min_ : reinterpret_cast<::io::deephaven::proto::backplane::grpc::UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByEmMin&>(::io::deephaven::proto::backplane::grpc::_UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByEmMin_default_instance_); -} -inline const ::io::deephaven::proto::backplane::grpc::UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByEmMin& UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec::em_min() const ABSL_ATTRIBUTE_LIFETIME_BOUND { - // @@protoc_insertion_point(field_get:io.deephaven.proto.backplane.grpc.UpdateByRequest.UpdateByOperation.UpdateByColumn.UpdateBySpec.em_min) - return _internal_em_min(); -} -inline ::io::deephaven::proto::backplane::grpc::UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByEmMin* UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec::unsafe_arena_release_em_min() { - // @@protoc_insertion_point(field_unsafe_arena_release:io.deephaven.proto.backplane.grpc.UpdateByRequest.UpdateByOperation.UpdateByColumn.UpdateBySpec.em_min) - if (type_case() == kEmMin) { - clear_has_type(); - auto* temp = _impl_.type_.em_min_; - _impl_.type_.em_min_ = nullptr; - return temp; - } else { - return nullptr; - } -} -inline void UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec::unsafe_arena_set_allocated_em_min(::io::deephaven::proto::backplane::grpc::UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByEmMin* value) { - // We rely on the oneof clear method to free the earlier contents - // of this oneof. We can directly use the pointer we're given to - // set the new value. - clear_type(); - if (value) { - set_has_em_min(); - _impl_.type_.em_min_ = value; - } - // @@protoc_insertion_point(field_unsafe_arena_set_allocated:io.deephaven.proto.backplane.grpc.UpdateByRequest.UpdateByOperation.UpdateByColumn.UpdateBySpec.em_min) -} -inline ::io::deephaven::proto::backplane::grpc::UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByEmMin* UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec::_internal_mutable_em_min() { - if (type_case() != kEmMin) { - clear_type(); - set_has_em_min(); - _impl_.type_.em_min_ = - ::google::protobuf::Message::DefaultConstruct<::io::deephaven::proto::backplane::grpc::UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByEmMin>(GetArena()); - } - return _impl_.type_.em_min_; -} -inline ::io::deephaven::proto::backplane::grpc::UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByEmMin* UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec::mutable_em_min() ABSL_ATTRIBUTE_LIFETIME_BOUND { - ::io::deephaven::proto::backplane::grpc::UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByEmMin* _msg = _internal_mutable_em_min(); - // @@protoc_insertion_point(field_mutable:io.deephaven.proto.backplane.grpc.UpdateByRequest.UpdateByOperation.UpdateByColumn.UpdateBySpec.em_min) - return _msg; -} - -// .io.deephaven.proto.backplane.grpc.UpdateByRequest.UpdateByOperation.UpdateByColumn.UpdateBySpec.UpdateByEmMax em_max = 16; -inline bool UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec::has_em_max() const { - return type_case() == kEmMax; -} -inline bool UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec::_internal_has_em_max() const { - return type_case() == kEmMax; -} -inline void UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec::set_has_em_max() { - _impl_._oneof_case_[0] = kEmMax; -} -inline void UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec::clear_em_max() { - ::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(); - } -} -inline ::io::deephaven::proto::backplane::grpc::UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByEmMax* UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec::release_em_max() { - // @@protoc_insertion_point(field_release:io.deephaven.proto.backplane.grpc.UpdateByRequest.UpdateByOperation.UpdateByColumn.UpdateBySpec.em_max) - if (type_case() == kEmMax) { - clear_has_type(); - auto* temp = _impl_.type_.em_max_; - if (GetArena() != nullptr) { - temp = ::google::protobuf::internal::DuplicateIfNonNull(temp); - } - _impl_.type_.em_max_ = nullptr; - return temp; - } else { - return nullptr; - } -} -inline const ::io::deephaven::proto::backplane::grpc::UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByEmMax& UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec::_internal_em_max() const { - return type_case() == kEmMax ? *_impl_.type_.em_max_ : reinterpret_cast<::io::deephaven::proto::backplane::grpc::UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByEmMax&>(::io::deephaven::proto::backplane::grpc::_UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByEmMax_default_instance_); -} -inline const ::io::deephaven::proto::backplane::grpc::UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByEmMax& UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec::em_max() const ABSL_ATTRIBUTE_LIFETIME_BOUND { - // @@protoc_insertion_point(field_get:io.deephaven.proto.backplane.grpc.UpdateByRequest.UpdateByOperation.UpdateByColumn.UpdateBySpec.em_max) - return _internal_em_max(); -} -inline ::io::deephaven::proto::backplane::grpc::UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByEmMax* UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec::unsafe_arena_release_em_max() { - // @@protoc_insertion_point(field_unsafe_arena_release:io.deephaven.proto.backplane.grpc.UpdateByRequest.UpdateByOperation.UpdateByColumn.UpdateBySpec.em_max) - if (type_case() == kEmMax) { - clear_has_type(); - auto* temp = _impl_.type_.em_max_; - _impl_.type_.em_max_ = nullptr; - return temp; - } else { - return nullptr; - } -} -inline void UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec::unsafe_arena_set_allocated_em_max(::io::deephaven::proto::backplane::grpc::UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByEmMax* value) { - // We rely on the oneof clear method to free the earlier contents - // of this oneof. We can directly use the pointer we're given to - // set the new value. - clear_type(); - if (value) { - set_has_em_max(); - _impl_.type_.em_max_ = value; - } - // @@protoc_insertion_point(field_unsafe_arena_set_allocated:io.deephaven.proto.backplane.grpc.UpdateByRequest.UpdateByOperation.UpdateByColumn.UpdateBySpec.em_max) -} -inline ::io::deephaven::proto::backplane::grpc::UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByEmMax* UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec::_internal_mutable_em_max() { - if (type_case() != kEmMax) { - clear_type(); - set_has_em_max(); - _impl_.type_.em_max_ = - ::google::protobuf::Message::DefaultConstruct<::io::deephaven::proto::backplane::grpc::UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByEmMax>(GetArena()); - } - return _impl_.type_.em_max_; -} -inline ::io::deephaven::proto::backplane::grpc::UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByEmMax* UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec::mutable_em_max() ABSL_ATTRIBUTE_LIFETIME_BOUND { - ::io::deephaven::proto::backplane::grpc::UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByEmMax* _msg = _internal_mutable_em_max(); - // @@protoc_insertion_point(field_mutable:io.deephaven.proto.backplane.grpc.UpdateByRequest.UpdateByOperation.UpdateByColumn.UpdateBySpec.em_max) - return _msg; -} - -// .io.deephaven.proto.backplane.grpc.UpdateByRequest.UpdateByOperation.UpdateByColumn.UpdateBySpec.UpdateByEmStd em_std = 17; -inline bool UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec::has_em_std() const { - return type_case() == kEmStd; -} -inline bool UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec::_internal_has_em_std() const { - return type_case() == kEmStd; -} -inline void UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec::set_has_em_std() { - _impl_._oneof_case_[0] = kEmStd; -} -inline void UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec::clear_em_std() { - ::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(); - } -} -inline ::io::deephaven::proto::backplane::grpc::UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByEmStd* UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec::release_em_std() { - // @@protoc_insertion_point(field_release:io.deephaven.proto.backplane.grpc.UpdateByRequest.UpdateByOperation.UpdateByColumn.UpdateBySpec.em_std) - if (type_case() == kEmStd) { - clear_has_type(); - auto* temp = _impl_.type_.em_std_; - if (GetArena() != nullptr) { - temp = ::google::protobuf::internal::DuplicateIfNonNull(temp); - } - _impl_.type_.em_std_ = nullptr; - return temp; - } else { - return nullptr; - } -} -inline const ::io::deephaven::proto::backplane::grpc::UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByEmStd& UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec::_internal_em_std() const { - return type_case() == kEmStd ? *_impl_.type_.em_std_ : reinterpret_cast<::io::deephaven::proto::backplane::grpc::UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByEmStd&>(::io::deephaven::proto::backplane::grpc::_UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByEmStd_default_instance_); -} -inline const ::io::deephaven::proto::backplane::grpc::UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByEmStd& UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec::em_std() const ABSL_ATTRIBUTE_LIFETIME_BOUND { - // @@protoc_insertion_point(field_get:io.deephaven.proto.backplane.grpc.UpdateByRequest.UpdateByOperation.UpdateByColumn.UpdateBySpec.em_std) - return _internal_em_std(); -} -inline ::io::deephaven::proto::backplane::grpc::UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByEmStd* UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec::unsafe_arena_release_em_std() { - // @@protoc_insertion_point(field_unsafe_arena_release:io.deephaven.proto.backplane.grpc.UpdateByRequest.UpdateByOperation.UpdateByColumn.UpdateBySpec.em_std) - if (type_case() == kEmStd) { - clear_has_type(); - auto* temp = _impl_.type_.em_std_; - _impl_.type_.em_std_ = nullptr; - return temp; - } else { - return nullptr; - } -} -inline void UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec::unsafe_arena_set_allocated_em_std(::io::deephaven::proto::backplane::grpc::UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByEmStd* value) { - // We rely on the oneof clear method to free the earlier contents - // of this oneof. We can directly use the pointer we're given to - // set the new value. - clear_type(); - if (value) { - set_has_em_std(); - _impl_.type_.em_std_ = value; - } - // @@protoc_insertion_point(field_unsafe_arena_set_allocated:io.deephaven.proto.backplane.grpc.UpdateByRequest.UpdateByOperation.UpdateByColumn.UpdateBySpec.em_std) -} -inline ::io::deephaven::proto::backplane::grpc::UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByEmStd* UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec::_internal_mutable_em_std() { - if (type_case() != kEmStd) { - clear_type(); - set_has_em_std(); - _impl_.type_.em_std_ = - ::google::protobuf::Message::DefaultConstruct<::io::deephaven::proto::backplane::grpc::UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByEmStd>(GetArena()); - } - return _impl_.type_.em_std_; -} -inline ::io::deephaven::proto::backplane::grpc::UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByEmStd* UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec::mutable_em_std() ABSL_ATTRIBUTE_LIFETIME_BOUND { - ::io::deephaven::proto::backplane::grpc::UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByEmStd* _msg = _internal_mutable_em_std(); - // @@protoc_insertion_point(field_mutable:io.deephaven.proto.backplane.grpc.UpdateByRequest.UpdateByOperation.UpdateByColumn.UpdateBySpec.em_std) - return _msg; -} - -// .io.deephaven.proto.backplane.grpc.UpdateByRequest.UpdateByOperation.UpdateByColumn.UpdateBySpec.UpdateByRollingCount rolling_count = 18; -inline bool UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec::has_rolling_count() const { - return type_case() == kRollingCount; -} -inline bool UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec::_internal_has_rolling_count() const { - return type_case() == kRollingCount; -} -inline void UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec::set_has_rolling_count() { - _impl_._oneof_case_[0] = kRollingCount; -} -inline void UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec::clear_rolling_count() { - ::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(); - } -} -inline ::io::deephaven::proto::backplane::grpc::UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingCount* UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec::release_rolling_count() { - // @@protoc_insertion_point(field_release:io.deephaven.proto.backplane.grpc.UpdateByRequest.UpdateByOperation.UpdateByColumn.UpdateBySpec.rolling_count) - if (type_case() == kRollingCount) { - clear_has_type(); - auto* temp = _impl_.type_.rolling_count_; - if (GetArena() != nullptr) { - temp = ::google::protobuf::internal::DuplicateIfNonNull(temp); - } - _impl_.type_.rolling_count_ = nullptr; - return temp; - } else { - return nullptr; - } -} -inline const ::io::deephaven::proto::backplane::grpc::UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingCount& UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec::_internal_rolling_count() const { - return type_case() == kRollingCount ? *_impl_.type_.rolling_count_ : reinterpret_cast<::io::deephaven::proto::backplane::grpc::UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingCount&>(::io::deephaven::proto::backplane::grpc::_UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingCount_default_instance_); -} -inline const ::io::deephaven::proto::backplane::grpc::UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingCount& UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec::rolling_count() const ABSL_ATTRIBUTE_LIFETIME_BOUND { - // @@protoc_insertion_point(field_get:io.deephaven.proto.backplane.grpc.UpdateByRequest.UpdateByOperation.UpdateByColumn.UpdateBySpec.rolling_count) - return _internal_rolling_count(); -} -inline ::io::deephaven::proto::backplane::grpc::UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingCount* UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec::unsafe_arena_release_rolling_count() { - // @@protoc_insertion_point(field_unsafe_arena_release:io.deephaven.proto.backplane.grpc.UpdateByRequest.UpdateByOperation.UpdateByColumn.UpdateBySpec.rolling_count) - if (type_case() == kRollingCount) { - clear_has_type(); - auto* temp = _impl_.type_.rolling_count_; - _impl_.type_.rolling_count_ = nullptr; - return temp; - } else { - return nullptr; - } -} -inline void UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec::unsafe_arena_set_allocated_rolling_count(::io::deephaven::proto::backplane::grpc::UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingCount* value) { - // We rely on the oneof clear method to free the earlier contents - // of this oneof. We can directly use the pointer we're given to - // set the new value. - clear_type(); - if (value) { - set_has_rolling_count(); - _impl_.type_.rolling_count_ = value; - } - // @@protoc_insertion_point(field_unsafe_arena_set_allocated:io.deephaven.proto.backplane.grpc.UpdateByRequest.UpdateByOperation.UpdateByColumn.UpdateBySpec.rolling_count) -} -inline ::io::deephaven::proto::backplane::grpc::UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingCount* UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec::_internal_mutable_rolling_count() { - if (type_case() != kRollingCount) { - clear_type(); - set_has_rolling_count(); - _impl_.type_.rolling_count_ = - ::google::protobuf::Message::DefaultConstruct<::io::deephaven::proto::backplane::grpc::UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingCount>(GetArena()); - } - return _impl_.type_.rolling_count_; -} -inline ::io::deephaven::proto::backplane::grpc::UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingCount* UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec::mutable_rolling_count() ABSL_ATTRIBUTE_LIFETIME_BOUND { - ::io::deephaven::proto::backplane::grpc::UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingCount* _msg = _internal_mutable_rolling_count(); - // @@protoc_insertion_point(field_mutable:io.deephaven.proto.backplane.grpc.UpdateByRequest.UpdateByOperation.UpdateByColumn.UpdateBySpec.rolling_count) - return _msg; -} - -// .io.deephaven.proto.backplane.grpc.UpdateByRequest.UpdateByOperation.UpdateByColumn.UpdateBySpec.UpdateByRollingStd rolling_std = 19; -inline bool UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec::has_rolling_std() const { - return type_case() == kRollingStd; -} -inline bool UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec::_internal_has_rolling_std() const { - return type_case() == kRollingStd; -} -inline void UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec::set_has_rolling_std() { - _impl_._oneof_case_[0] = kRollingStd; -} -inline void UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec::clear_rolling_std() { - ::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(); - } -} -inline ::io::deephaven::proto::backplane::grpc::UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingStd* UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec::release_rolling_std() { - // @@protoc_insertion_point(field_release:io.deephaven.proto.backplane.grpc.UpdateByRequest.UpdateByOperation.UpdateByColumn.UpdateBySpec.rolling_std) - if (type_case() == kRollingStd) { - clear_has_type(); - auto* temp = _impl_.type_.rolling_std_; - if (GetArena() != nullptr) { - temp = ::google::protobuf::internal::DuplicateIfNonNull(temp); - } - _impl_.type_.rolling_std_ = nullptr; - return temp; - } else { - return nullptr; - } -} -inline const ::io::deephaven::proto::backplane::grpc::UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingStd& UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec::_internal_rolling_std() const { - return type_case() == kRollingStd ? *_impl_.type_.rolling_std_ : reinterpret_cast<::io::deephaven::proto::backplane::grpc::UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingStd&>(::io::deephaven::proto::backplane::grpc::_UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingStd_default_instance_); -} -inline const ::io::deephaven::proto::backplane::grpc::UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingStd& UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec::rolling_std() const ABSL_ATTRIBUTE_LIFETIME_BOUND { - // @@protoc_insertion_point(field_get:io.deephaven.proto.backplane.grpc.UpdateByRequest.UpdateByOperation.UpdateByColumn.UpdateBySpec.rolling_std) - return _internal_rolling_std(); -} -inline ::io::deephaven::proto::backplane::grpc::UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingStd* UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec::unsafe_arena_release_rolling_std() { - // @@protoc_insertion_point(field_unsafe_arena_release:io.deephaven.proto.backplane.grpc.UpdateByRequest.UpdateByOperation.UpdateByColumn.UpdateBySpec.rolling_std) - if (type_case() == kRollingStd) { - clear_has_type(); - auto* temp = _impl_.type_.rolling_std_; - _impl_.type_.rolling_std_ = nullptr; - return temp; - } else { - return nullptr; - } -} -inline void UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec::unsafe_arena_set_allocated_rolling_std(::io::deephaven::proto::backplane::grpc::UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingStd* value) { - // We rely on the oneof clear method to free the earlier contents - // of this oneof. We can directly use the pointer we're given to - // set the new value. - clear_type(); - if (value) { - set_has_rolling_std(); - _impl_.type_.rolling_std_ = value; - } - // @@protoc_insertion_point(field_unsafe_arena_set_allocated:io.deephaven.proto.backplane.grpc.UpdateByRequest.UpdateByOperation.UpdateByColumn.UpdateBySpec.rolling_std) -} -inline ::io::deephaven::proto::backplane::grpc::UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingStd* UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec::_internal_mutable_rolling_std() { - if (type_case() != kRollingStd) { - clear_type(); - set_has_rolling_std(); - _impl_.type_.rolling_std_ = - ::google::protobuf::Message::DefaultConstruct<::io::deephaven::proto::backplane::grpc::UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingStd>(GetArena()); - } - return _impl_.type_.rolling_std_; -} -inline ::io::deephaven::proto::backplane::grpc::UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingStd* UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec::mutable_rolling_std() ABSL_ATTRIBUTE_LIFETIME_BOUND { - ::io::deephaven::proto::backplane::grpc::UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingStd* _msg = _internal_mutable_rolling_std(); - // @@protoc_insertion_point(field_mutable:io.deephaven.proto.backplane.grpc.UpdateByRequest.UpdateByOperation.UpdateByColumn.UpdateBySpec.rolling_std) - return _msg; -} - -// .io.deephaven.proto.backplane.grpc.UpdateByRequest.UpdateByOperation.UpdateByColumn.UpdateBySpec.UpdateByRollingWAvg rolling_wavg = 20; -inline bool UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec::has_rolling_wavg() const { - return type_case() == kRollingWavg; -} -inline bool UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec::_internal_has_rolling_wavg() const { - return type_case() == kRollingWavg; -} -inline void UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec::set_has_rolling_wavg() { - _impl_._oneof_case_[0] = kRollingWavg; -} -inline void UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec::clear_rolling_wavg() { - ::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(); - } -} -inline ::io::deephaven::proto::backplane::grpc::UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingWAvg* UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec::release_rolling_wavg() { - // @@protoc_insertion_point(field_release:io.deephaven.proto.backplane.grpc.UpdateByRequest.UpdateByOperation.UpdateByColumn.UpdateBySpec.rolling_wavg) - if (type_case() == kRollingWavg) { - clear_has_type(); - auto* temp = _impl_.type_.rolling_wavg_; - if (GetArena() != nullptr) { - temp = ::google::protobuf::internal::DuplicateIfNonNull(temp); - } - _impl_.type_.rolling_wavg_ = nullptr; - return temp; - } else { - return nullptr; - } -} -inline const ::io::deephaven::proto::backplane::grpc::UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingWAvg& UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec::_internal_rolling_wavg() const { - return type_case() == kRollingWavg ? *_impl_.type_.rolling_wavg_ : reinterpret_cast<::io::deephaven::proto::backplane::grpc::UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingWAvg&>(::io::deephaven::proto::backplane::grpc::_UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingWAvg_default_instance_); -} -inline const ::io::deephaven::proto::backplane::grpc::UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingWAvg& UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec::rolling_wavg() const ABSL_ATTRIBUTE_LIFETIME_BOUND { - // @@protoc_insertion_point(field_get:io.deephaven.proto.backplane.grpc.UpdateByRequest.UpdateByOperation.UpdateByColumn.UpdateBySpec.rolling_wavg) - return _internal_rolling_wavg(); -} -inline ::io::deephaven::proto::backplane::grpc::UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingWAvg* UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec::unsafe_arena_release_rolling_wavg() { - // @@protoc_insertion_point(field_unsafe_arena_release:io.deephaven.proto.backplane.grpc.UpdateByRequest.UpdateByOperation.UpdateByColumn.UpdateBySpec.rolling_wavg) - if (type_case() == kRollingWavg) { - clear_has_type(); - auto* temp = _impl_.type_.rolling_wavg_; - _impl_.type_.rolling_wavg_ = nullptr; - return temp; - } else { - return nullptr; - } -} -inline void UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec::unsafe_arena_set_allocated_rolling_wavg(::io::deephaven::proto::backplane::grpc::UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingWAvg* value) { - // We rely on the oneof clear method to free the earlier contents - // of this oneof. We can directly use the pointer we're given to - // set the new value. - clear_type(); - if (value) { - set_has_rolling_wavg(); - _impl_.type_.rolling_wavg_ = value; - } - // @@protoc_insertion_point(field_unsafe_arena_set_allocated:io.deephaven.proto.backplane.grpc.UpdateByRequest.UpdateByOperation.UpdateByColumn.UpdateBySpec.rolling_wavg) -} -inline ::io::deephaven::proto::backplane::grpc::UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingWAvg* UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec::_internal_mutable_rolling_wavg() { - if (type_case() != kRollingWavg) { - clear_type(); - set_has_rolling_wavg(); - _impl_.type_.rolling_wavg_ = - ::google::protobuf::Message::DefaultConstruct<::io::deephaven::proto::backplane::grpc::UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingWAvg>(GetArena()); - } - return _impl_.type_.rolling_wavg_; -} -inline ::io::deephaven::proto::backplane::grpc::UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingWAvg* UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec::mutable_rolling_wavg() ABSL_ATTRIBUTE_LIFETIME_BOUND { - ::io::deephaven::proto::backplane::grpc::UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingWAvg* _msg = _internal_mutable_rolling_wavg(); - // @@protoc_insertion_point(field_mutable:io.deephaven.proto.backplane.grpc.UpdateByRequest.UpdateByOperation.UpdateByColumn.UpdateBySpec.rolling_wavg) - return _msg; -} - -// .io.deephaven.proto.backplane.grpc.UpdateByRequest.UpdateByOperation.UpdateByColumn.UpdateBySpec.UpdateByRollingFormula rolling_formula = 21; -inline bool UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec::has_rolling_formula() const { - return type_case() == kRollingFormula; -} -inline bool UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec::_internal_has_rolling_formula() const { - return type_case() == kRollingFormula; -} -inline void UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec::set_has_rolling_formula() { - _impl_._oneof_case_[0] = kRollingFormula; -} -inline void UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec::clear_rolling_formula() { - ::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(); - } -} -inline ::io::deephaven::proto::backplane::grpc::UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingFormula* UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec::release_rolling_formula() { - // @@protoc_insertion_point(field_release:io.deephaven.proto.backplane.grpc.UpdateByRequest.UpdateByOperation.UpdateByColumn.UpdateBySpec.rolling_formula) - if (type_case() == kRollingFormula) { - clear_has_type(); - auto* temp = _impl_.type_.rolling_formula_; - if (GetArena() != nullptr) { - temp = ::google::protobuf::internal::DuplicateIfNonNull(temp); - } - _impl_.type_.rolling_formula_ = nullptr; - return temp; - } else { - return nullptr; - } -} -inline const ::io::deephaven::proto::backplane::grpc::UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingFormula& UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec::_internal_rolling_formula() const { - return type_case() == kRollingFormula ? *_impl_.type_.rolling_formula_ : reinterpret_cast<::io::deephaven::proto::backplane::grpc::UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingFormula&>(::io::deephaven::proto::backplane::grpc::_UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingFormula_default_instance_); -} -inline const ::io::deephaven::proto::backplane::grpc::UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingFormula& UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec::rolling_formula() const ABSL_ATTRIBUTE_LIFETIME_BOUND { - // @@protoc_insertion_point(field_get:io.deephaven.proto.backplane.grpc.UpdateByRequest.UpdateByOperation.UpdateByColumn.UpdateBySpec.rolling_formula) - return _internal_rolling_formula(); -} -inline ::io::deephaven::proto::backplane::grpc::UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingFormula* UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec::unsafe_arena_release_rolling_formula() { - // @@protoc_insertion_point(field_unsafe_arena_release:io.deephaven.proto.backplane.grpc.UpdateByRequest.UpdateByOperation.UpdateByColumn.UpdateBySpec.rolling_formula) - if (type_case() == kRollingFormula) { - clear_has_type(); - auto* temp = _impl_.type_.rolling_formula_; - _impl_.type_.rolling_formula_ = nullptr; - return temp; - } else { - return nullptr; - } -} -inline void UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec::unsafe_arena_set_allocated_rolling_formula(::io::deephaven::proto::backplane::grpc::UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingFormula* value) { - // We rely on the oneof clear method to free the earlier contents - // of this oneof. We can directly use the pointer we're given to - // set the new value. - clear_type(); - if (value) { - set_has_rolling_formula(); - _impl_.type_.rolling_formula_ = value; - } - // @@protoc_insertion_point(field_unsafe_arena_set_allocated:io.deephaven.proto.backplane.grpc.UpdateByRequest.UpdateByOperation.UpdateByColumn.UpdateBySpec.rolling_formula) -} -inline ::io::deephaven::proto::backplane::grpc::UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingFormula* UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec::_internal_mutable_rolling_formula() { - if (type_case() != kRollingFormula) { - clear_type(); - set_has_rolling_formula(); - _impl_.type_.rolling_formula_ = - ::google::protobuf::Message::DefaultConstruct<::io::deephaven::proto::backplane::grpc::UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingFormula>(GetArena()); - } - return _impl_.type_.rolling_formula_; -} -inline ::io::deephaven::proto::backplane::grpc::UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingFormula* UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec::mutable_rolling_formula() ABSL_ATTRIBUTE_LIFETIME_BOUND { - ::io::deephaven::proto::backplane::grpc::UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec_UpdateByRollingFormula* _msg = _internal_mutable_rolling_formula(); - // @@protoc_insertion_point(field_mutable:io.deephaven.proto.backplane.grpc.UpdateByRequest.UpdateByOperation.UpdateByColumn.UpdateBySpec.rolling_formula) - return _msg; -} - -inline bool UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec::has_type() const { - return type_case() != TYPE_NOT_SET; -} -inline void UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec::clear_has_type() { - _impl_._oneof_case_[0] = TYPE_NOT_SET; -} -inline UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec::TypeCase UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec::type_case() const { - return UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec::TypeCase(_impl_._oneof_case_[0]); -} -// ------------------------------------------------------------------- - -// UpdateByRequest_UpdateByOperation_UpdateByColumn - -// .io.deephaven.proto.backplane.grpc.UpdateByRequest.UpdateByOperation.UpdateByColumn.UpdateBySpec spec = 1; -inline bool UpdateByRequest_UpdateByOperation_UpdateByColumn::has_spec() const { - bool value = (_impl_._has_bits_[0] & 0x00000001u) != 0; - PROTOBUF_ASSUME(!value || _impl_.spec_ != nullptr); - return value; -} -inline void UpdateByRequest_UpdateByOperation_UpdateByColumn::clear_spec() { - ::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 { - ::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_); -} -inline const ::io::deephaven::proto::backplane::grpc::UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec& UpdateByRequest_UpdateByOperation_UpdateByColumn::spec() const ABSL_ATTRIBUTE_LIFETIME_BOUND { - // @@protoc_insertion_point(field_get:io.deephaven.proto.backplane.grpc.UpdateByRequest.UpdateByOperation.UpdateByColumn.spec) - return _internal_spec(); -} -inline void UpdateByRequest_UpdateByOperation_UpdateByColumn::unsafe_arena_set_allocated_spec(::io::deephaven::proto::backplane::grpc::UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec* value) { - ::google::protobuf::internal::TSanWrite(&_impl_); - if (GetArena() == nullptr) { - delete reinterpret_cast<::google::protobuf::MessageLite*>(_impl_.spec_); - } - _impl_.spec_ = reinterpret_cast<::io::deephaven::proto::backplane::grpc::UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec*>(value); - if (value != nullptr) { - _impl_._has_bits_[0] |= 0x00000001u; - } else { - _impl_._has_bits_[0] &= ~0x00000001u; - } - // @@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() { - ::google::protobuf::internal::TSanWrite(&_impl_); - - _impl_._has_bits_[0] &= ~0x00000001u; - ::io::deephaven::proto::backplane::grpc::UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec* released = _impl_.spec_; - _impl_.spec_ = nullptr; -#ifdef PROTOBUF_FORCE_COPY_IN_RELEASE - auto* old = reinterpret_cast<::google::protobuf::MessageLite*>(released); - released = ::google::protobuf::internal::DuplicateIfNonNull(released); - if (GetArena() == nullptr) { - delete old; - } -#else // PROTOBUF_FORCE_COPY_IN_RELEASE - if (GetArena() != nullptr) { - released = ::google::protobuf::internal::DuplicateIfNonNull(released); - } -#endif // !PROTOBUF_FORCE_COPY_IN_RELEASE - return released; -} -inline ::io::deephaven::proto::backplane::grpc::UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec* UpdateByRequest_UpdateByOperation_UpdateByColumn::unsafe_arena_release_spec() { - ::google::protobuf::internal::TSanWrite(&_impl_); - // @@protoc_insertion_point(field_release:io.deephaven.proto.backplane.grpc.UpdateByRequest.UpdateByOperation.UpdateByColumn.spec) - - _impl_._has_bits_[0] &= ~0x00000001u; - ::io::deephaven::proto::backplane::grpc::UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec* temp = _impl_.spec_; - _impl_.spec_ = nullptr; - return temp; -} -inline ::io::deephaven::proto::backplane::grpc::UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec* UpdateByRequest_UpdateByOperation_UpdateByColumn::_internal_mutable_spec() { - ::google::protobuf::internal::TSanWrite(&_impl_); - if (_impl_.spec_ == nullptr) { - 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(); - ::google::protobuf::internal::TSanWrite(&_impl_); - if (message_arena == nullptr) { - delete (_impl_.spec_); - } - - if (value != nullptr) { - ::google::protobuf::Arena* submessage_arena = (value)->GetArena(); - if (message_arena != submessage_arena) { - value = ::google::protobuf::internal::GetOwnedMessage(message_arena, value, submessage_arena); - } - _impl_._has_bits_[0] |= 0x00000001u; - } else { - _impl_._has_bits_[0] &= ~0x00000001u; - } - - _impl_.spec_ = reinterpret_cast<::io::deephaven::proto::backplane::grpc::UpdateByRequest_UpdateByOperation_UpdateByColumn_UpdateBySpec*>(value); - // @@protoc_insertion_point(field_set_allocated:io.deephaven.proto.backplane.grpc.UpdateByRequest.UpdateByOperation.UpdateByColumn.spec) -} - -// repeated string match_pairs = 2; -inline int UpdateByRequest_UpdateByOperation_UpdateByColumn::_internal_match_pairs_size() const { - return _internal_match_pairs().size(); -} -inline int UpdateByRequest_UpdateByOperation_UpdateByColumn::match_pairs_size() const { - return _internal_match_pairs_size(); -} -inline void UpdateByRequest_UpdateByOperation_UpdateByColumn::clear_match_pairs() { - ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.match_pairs_.Clear(); -} -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; -} -inline const std::string& UpdateByRequest_UpdateByOperation_UpdateByColumn::match_pairs(int index) const - ABSL_ATTRIBUTE_LIFETIME_BOUND { - // @@protoc_insertion_point(field_get:io.deephaven.proto.backplane.grpc.UpdateByRequest.UpdateByOperation.UpdateByColumn.match_pairs) - return _internal_match_pairs().Get(index); -} -inline std::string* UpdateByRequest_UpdateByOperation_UpdateByColumn::mutable_match_pairs(int index) - ABSL_ATTRIBUTE_LIFETIME_BOUND { - // @@protoc_insertion_point(field_mutable:io.deephaven.proto.backplane.grpc.UpdateByRequest.UpdateByOperation.UpdateByColumn.match_pairs) - return _internal_mutable_match_pairs()->Mutable(index); -} -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) -} -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 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) - return _internal_match_pairs(); -} -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) - ::google::protobuf::internal::TSanWrite(&_impl_); - return _internal_mutable_match_pairs(); -} -inline const ::google::protobuf::RepeatedPtrField& -UpdateByRequest_UpdateByOperation_UpdateByColumn::_internal_match_pairs() const { - ::google::protobuf::internal::TSanRead(&_impl_); - return _impl_.match_pairs_; -} -inline ::google::protobuf::RepeatedPtrField* -UpdateByRequest_UpdateByOperation_UpdateByColumn::_internal_mutable_match_pairs() { - ::google::protobuf::internal::TSanRead(&_impl_); - return &_impl_.match_pairs_; -} - -// ------------------------------------------------------------------- - -// UpdateByRequest_UpdateByOperation - -// .io.deephaven.proto.backplane.grpc.UpdateByRequest.UpdateByOperation.UpdateByColumn column = 1; -inline bool UpdateByRequest_UpdateByOperation::has_column() const { - return type_case() == kColumn; -} -inline bool UpdateByRequest_UpdateByOperation::_internal_has_column() const { - return type_case() == kColumn; -} -inline void UpdateByRequest_UpdateByOperation::set_has_column() { - _impl_._oneof_case_[0] = kColumn; -} -inline void UpdateByRequest_UpdateByOperation::clear_column() { - ::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(); - } -} -inline ::io::deephaven::proto::backplane::grpc::UpdateByRequest_UpdateByOperation_UpdateByColumn* UpdateByRequest_UpdateByOperation::release_column() { - // @@protoc_insertion_point(field_release:io.deephaven.proto.backplane.grpc.UpdateByRequest.UpdateByOperation.column) - if (type_case() == kColumn) { - clear_has_type(); - auto* temp = _impl_.type_.column_; - if (GetArena() != nullptr) { - temp = ::google::protobuf::internal::DuplicateIfNonNull(temp); - } - _impl_.type_.column_ = nullptr; - return temp; - } else { - return nullptr; - } -} -inline const ::io::deephaven::proto::backplane::grpc::UpdateByRequest_UpdateByOperation_UpdateByColumn& UpdateByRequest_UpdateByOperation::_internal_column() const { - return type_case() == kColumn ? *_impl_.type_.column_ : reinterpret_cast<::io::deephaven::proto::backplane::grpc::UpdateByRequest_UpdateByOperation_UpdateByColumn&>(::io::deephaven::proto::backplane::grpc::_UpdateByRequest_UpdateByOperation_UpdateByColumn_default_instance_); -} -inline const ::io::deephaven::proto::backplane::grpc::UpdateByRequest_UpdateByOperation_UpdateByColumn& UpdateByRequest_UpdateByOperation::column() const ABSL_ATTRIBUTE_LIFETIME_BOUND { - // @@protoc_insertion_point(field_get:io.deephaven.proto.backplane.grpc.UpdateByRequest.UpdateByOperation.column) - return _internal_column(); -} -inline ::io::deephaven::proto::backplane::grpc::UpdateByRequest_UpdateByOperation_UpdateByColumn* UpdateByRequest_UpdateByOperation::unsafe_arena_release_column() { - // @@protoc_insertion_point(field_unsafe_arena_release:io.deephaven.proto.backplane.grpc.UpdateByRequest.UpdateByOperation.column) - if (type_case() == kColumn) { - clear_has_type(); - auto* temp = _impl_.type_.column_; - _impl_.type_.column_ = nullptr; - return temp; - } else { - return nullptr; - } -} -inline void UpdateByRequest_UpdateByOperation::unsafe_arena_set_allocated_column(::io::deephaven::proto::backplane::grpc::UpdateByRequest_UpdateByOperation_UpdateByColumn* value) { - // We rely on the oneof clear method to free the earlier contents - // of this oneof. We can directly use the pointer we're given to - // set the new value. - clear_type(); - if (value) { - set_has_column(); - _impl_.type_.column_ = value; - } - // @@protoc_insertion_point(field_unsafe_arena_set_allocated:io.deephaven.proto.backplane.grpc.UpdateByRequest.UpdateByOperation.column) -} -inline ::io::deephaven::proto::backplane::grpc::UpdateByRequest_UpdateByOperation_UpdateByColumn* UpdateByRequest_UpdateByOperation::_internal_mutable_column() { - if (type_case() != kColumn) { - clear_type(); - set_has_column(); - _impl_.type_.column_ = - ::google::protobuf::Message::DefaultConstruct<::io::deephaven::proto::backplane::grpc::UpdateByRequest_UpdateByOperation_UpdateByColumn>(GetArena()); - } - return _impl_.type_.column_; -} -inline ::io::deephaven::proto::backplane::grpc::UpdateByRequest_UpdateByOperation_UpdateByColumn* UpdateByRequest_UpdateByOperation::mutable_column() ABSL_ATTRIBUTE_LIFETIME_BOUND { - ::io::deephaven::proto::backplane::grpc::UpdateByRequest_UpdateByOperation_UpdateByColumn* _msg = _internal_mutable_column(); - // @@protoc_insertion_point(field_mutable:io.deephaven.proto.backplane.grpc.UpdateByRequest.UpdateByOperation.column) - return _msg; -} - -inline bool UpdateByRequest_UpdateByOperation::has_type() const { - return type_case() != TYPE_NOT_SET; -} -inline void UpdateByRequest_UpdateByOperation::clear_has_type() { - _impl_._oneof_case_[0] = TYPE_NOT_SET; -} -inline UpdateByRequest_UpdateByOperation::TypeCase UpdateByRequest_UpdateByOperation::type_case() const { - return UpdateByRequest_UpdateByOperation::TypeCase(_impl_._oneof_case_[0]); -} -// ------------------------------------------------------------------- - -// UpdateByRequest - -// .io.deephaven.proto.backplane.grpc.Ticket result_id = 1; -inline bool UpdateByRequest::has_result_id() const { - bool value = (_impl_._has_bits_[0] & 0x00000001u) != 0; - PROTOBUF_ASSUME(!value || _impl_.result_id_ != nullptr); - return value; -} -inline const ::io::deephaven::proto::backplane::grpc::Ticket& UpdateByRequest::_internal_result_id() const { - ::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_); -} -inline const ::io::deephaven::proto::backplane::grpc::Ticket& UpdateByRequest::result_id() const ABSL_ATTRIBUTE_LIFETIME_BOUND { - // @@protoc_insertion_point(field_get:io.deephaven.proto.backplane.grpc.UpdateByRequest.result_id) - return _internal_result_id(); -} -inline void UpdateByRequest::unsafe_arena_set_allocated_result_id(::io::deephaven::proto::backplane::grpc::Ticket* value) { - ::google::protobuf::internal::TSanWrite(&_impl_); - if (GetArena() == nullptr) { - delete reinterpret_cast<::google::protobuf::MessageLite*>(_impl_.result_id_); - } - _impl_.result_id_ = reinterpret_cast<::io::deephaven::proto::backplane::grpc::Ticket*>(value); - if (value != nullptr) { - _impl_._has_bits_[0] |= 0x00000001u; - } else { - _impl_._has_bits_[0] &= ~0x00000001u; - } - // @@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() { - ::google::protobuf::internal::TSanWrite(&_impl_); - - _impl_._has_bits_[0] &= ~0x00000001u; - ::io::deephaven::proto::backplane::grpc::Ticket* released = _impl_.result_id_; - _impl_.result_id_ = nullptr; -#ifdef PROTOBUF_FORCE_COPY_IN_RELEASE - auto* old = reinterpret_cast<::google::protobuf::MessageLite*>(released); - released = ::google::protobuf::internal::DuplicateIfNonNull(released); - if (GetArena() == nullptr) { - delete old; - } -#else // PROTOBUF_FORCE_COPY_IN_RELEASE - if (GetArena() != nullptr) { - released = ::google::protobuf::internal::DuplicateIfNonNull(released); - } -#endif // !PROTOBUF_FORCE_COPY_IN_RELEASE - return released; -} -inline ::io::deephaven::proto::backplane::grpc::Ticket* UpdateByRequest::unsafe_arena_release_result_id() { - ::google::protobuf::internal::TSanWrite(&_impl_); - // @@protoc_insertion_point(field_release:io.deephaven.proto.backplane.grpc.UpdateByRequest.result_id) - - _impl_._has_bits_[0] &= ~0x00000001u; - ::io::deephaven::proto::backplane::grpc::Ticket* temp = _impl_.result_id_; - _impl_.result_id_ = nullptr; - return temp; -} -inline ::io::deephaven::proto::backplane::grpc::Ticket* UpdateByRequest::_internal_mutable_result_id() { - ::google::protobuf::internal::TSanWrite(&_impl_); - if (_impl_.result_id_ == nullptr) { - 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(); - ::google::protobuf::internal::TSanWrite(&_impl_); - if (message_arena == nullptr) { - delete reinterpret_cast<::google::protobuf::MessageLite*>(_impl_.result_id_); - } - - if (value != nullptr) { - ::google::protobuf::Arena* submessage_arena = reinterpret_cast<::google::protobuf::MessageLite*>(value)->GetArena(); - if (message_arena != submessage_arena) { - value = ::google::protobuf::internal::GetOwnedMessage(message_arena, value, submessage_arena); - } - _impl_._has_bits_[0] |= 0x00000001u; - } else { - _impl_._has_bits_[0] &= ~0x00000001u; - } - - _impl_.result_id_ = reinterpret_cast<::io::deephaven::proto::backplane::grpc::Ticket*>(value); - // @@protoc_insertion_point(field_set_allocated:io.deephaven.proto.backplane.grpc.UpdateByRequest.result_id) -} - -// .io.deephaven.proto.backplane.grpc.TableReference source_id = 2; -inline bool UpdateByRequest::has_source_id() const { - bool value = (_impl_._has_bits_[0] & 0x00000002u) != 0; - PROTOBUF_ASSUME(!value || _impl_.source_id_ != nullptr); - return value; -} -inline void UpdateByRequest::clear_source_id() { - ::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 { - ::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_); -} -inline const ::io::deephaven::proto::backplane::grpc::TableReference& UpdateByRequest::source_id() const ABSL_ATTRIBUTE_LIFETIME_BOUND { - // @@protoc_insertion_point(field_get:io.deephaven.proto.backplane.grpc.UpdateByRequest.source_id) - return _internal_source_id(); -} -inline void UpdateByRequest::unsafe_arena_set_allocated_source_id(::io::deephaven::proto::backplane::grpc::TableReference* value) { - ::google::protobuf::internal::TSanWrite(&_impl_); - if (GetArena() == nullptr) { - delete reinterpret_cast<::google::protobuf::MessageLite*>(_impl_.source_id_); - } - _impl_.source_id_ = reinterpret_cast<::io::deephaven::proto::backplane::grpc::TableReference*>(value); - if (value != nullptr) { - _impl_._has_bits_[0] |= 0x00000002u; - } else { - _impl_._has_bits_[0] &= ~0x00000002u; - } - // @@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() { - ::google::protobuf::internal::TSanWrite(&_impl_); - - _impl_._has_bits_[0] &= ~0x00000002u; - ::io::deephaven::proto::backplane::grpc::TableReference* released = _impl_.source_id_; - _impl_.source_id_ = nullptr; -#ifdef PROTOBUF_FORCE_COPY_IN_RELEASE - auto* old = reinterpret_cast<::google::protobuf::MessageLite*>(released); - released = ::google::protobuf::internal::DuplicateIfNonNull(released); - if (GetArena() == nullptr) { - delete old; - } -#else // PROTOBUF_FORCE_COPY_IN_RELEASE - if (GetArena() != nullptr) { - released = ::google::protobuf::internal::DuplicateIfNonNull(released); - } -#endif // !PROTOBUF_FORCE_COPY_IN_RELEASE - return released; -} -inline ::io::deephaven::proto::backplane::grpc::TableReference* UpdateByRequest::unsafe_arena_release_source_id() { - ::google::protobuf::internal::TSanWrite(&_impl_); - // @@protoc_insertion_point(field_release:io.deephaven.proto.backplane.grpc.UpdateByRequest.source_id) - - _impl_._has_bits_[0] &= ~0x00000002u; - ::io::deephaven::proto::backplane::grpc::TableReference* temp = _impl_.source_id_; - _impl_.source_id_ = nullptr; - return temp; -} -inline ::io::deephaven::proto::backplane::grpc::TableReference* UpdateByRequest::_internal_mutable_source_id() { - ::google::protobuf::internal::TSanWrite(&_impl_); - if (_impl_.source_id_ == nullptr) { - 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(); - ::google::protobuf::internal::TSanWrite(&_impl_); - if (message_arena == nullptr) { - delete (_impl_.source_id_); - } - - if (value != nullptr) { - ::google::protobuf::Arena* submessage_arena = (value)->GetArena(); - if (message_arena != submessage_arena) { - value = ::google::protobuf::internal::GetOwnedMessage(message_arena, value, submessage_arena); - } - _impl_._has_bits_[0] |= 0x00000002u; - } else { - _impl_._has_bits_[0] &= ~0x00000002u; - } - - _impl_.source_id_ = reinterpret_cast<::io::deephaven::proto::backplane::grpc::TableReference*>(value); - // @@protoc_insertion_point(field_set_allocated:io.deephaven.proto.backplane.grpc.UpdateByRequest.source_id) -} - -// .io.deephaven.proto.backplane.grpc.UpdateByRequest.UpdateByOptions options = 3; -inline bool UpdateByRequest::has_options() const { - bool value = (_impl_._has_bits_[0] & 0x00000004u) != 0; - PROTOBUF_ASSUME(!value || _impl_.options_ != nullptr); - return value; -} -inline void UpdateByRequest::clear_options() { - ::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 { - ::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_); -} -inline const ::io::deephaven::proto::backplane::grpc::UpdateByRequest_UpdateByOptions& UpdateByRequest::options() const ABSL_ATTRIBUTE_LIFETIME_BOUND { - // @@protoc_insertion_point(field_get:io.deephaven.proto.backplane.grpc.UpdateByRequest.options) - return _internal_options(); -} -inline void UpdateByRequest::unsafe_arena_set_allocated_options(::io::deephaven::proto::backplane::grpc::UpdateByRequest_UpdateByOptions* value) { - ::google::protobuf::internal::TSanWrite(&_impl_); - if (GetArena() == nullptr) { - delete reinterpret_cast<::google::protobuf::MessageLite*>(_impl_.options_); - } - _impl_.options_ = reinterpret_cast<::io::deephaven::proto::backplane::grpc::UpdateByRequest_UpdateByOptions*>(value); - if (value != nullptr) { - _impl_._has_bits_[0] |= 0x00000004u; - } else { - _impl_._has_bits_[0] &= ~0x00000004u; - } - // @@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() { - ::google::protobuf::internal::TSanWrite(&_impl_); - - _impl_._has_bits_[0] &= ~0x00000004u; - ::io::deephaven::proto::backplane::grpc::UpdateByRequest_UpdateByOptions* released = _impl_.options_; - _impl_.options_ = nullptr; -#ifdef PROTOBUF_FORCE_COPY_IN_RELEASE - auto* old = reinterpret_cast<::google::protobuf::MessageLite*>(released); - released = ::google::protobuf::internal::DuplicateIfNonNull(released); - if (GetArena() == nullptr) { - delete old; - } -#else // PROTOBUF_FORCE_COPY_IN_RELEASE - if (GetArena() != nullptr) { - released = ::google::protobuf::internal::DuplicateIfNonNull(released); - } -#endif // !PROTOBUF_FORCE_COPY_IN_RELEASE - return released; -} -inline ::io::deephaven::proto::backplane::grpc::UpdateByRequest_UpdateByOptions* UpdateByRequest::unsafe_arena_release_options() { - ::google::protobuf::internal::TSanWrite(&_impl_); - // @@protoc_insertion_point(field_release:io.deephaven.proto.backplane.grpc.UpdateByRequest.options) - - _impl_._has_bits_[0] &= ~0x00000004u; - ::io::deephaven::proto::backplane::grpc::UpdateByRequest_UpdateByOptions* temp = _impl_.options_; - _impl_.options_ = nullptr; - return temp; -} -inline ::io::deephaven::proto::backplane::grpc::UpdateByRequest_UpdateByOptions* UpdateByRequest::_internal_mutable_options() { - ::google::protobuf::internal::TSanWrite(&_impl_); - if (_impl_.options_ == nullptr) { - 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(); - ::google::protobuf::internal::TSanWrite(&_impl_); - if (message_arena == nullptr) { - delete (_impl_.options_); - } - - if (value != nullptr) { - ::google::protobuf::Arena* submessage_arena = (value)->GetArena(); - if (message_arena != submessage_arena) { - value = ::google::protobuf::internal::GetOwnedMessage(message_arena, value, submessage_arena); - } - _impl_._has_bits_[0] |= 0x00000004u; - } else { - _impl_._has_bits_[0] &= ~0x00000004u; - } - - _impl_.options_ = reinterpret_cast<::io::deephaven::proto::backplane::grpc::UpdateByRequest_UpdateByOptions*>(value); - // @@protoc_insertion_point(field_set_allocated:io.deephaven.proto.backplane.grpc.UpdateByRequest.options) -} - -// repeated .io.deephaven.proto.backplane.grpc.UpdateByRequest.UpdateByOperation operations = 4; -inline int UpdateByRequest::_internal_operations_size() const { - return _internal_operations().size(); -} -inline int UpdateByRequest::operations_size() const { - return _internal_operations_size(); -} -inline void UpdateByRequest::clear_operations() { - ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.operations_.Clear(); -} -inline ::io::deephaven::proto::backplane::grpc::UpdateByRequest_UpdateByOperation* UpdateByRequest::mutable_operations(int index) - ABSL_ATTRIBUTE_LIFETIME_BOUND { - // @@protoc_insertion_point(field_mutable:io.deephaven.proto.backplane.grpc.UpdateByRequest.operations) - return _internal_mutable_operations()->Mutable(index); -} -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) - ::google::protobuf::internal::TSanWrite(&_impl_); - return _internal_mutable_operations(); -} -inline const ::io::deephaven::proto::backplane::grpc::UpdateByRequest_UpdateByOperation& UpdateByRequest::operations(int index) const - ABSL_ATTRIBUTE_LIFETIME_BOUND { - // @@protoc_insertion_point(field_get:io.deephaven.proto.backplane.grpc.UpdateByRequest.operations) - return _internal_operations().Get(index); -} -inline ::io::deephaven::proto::backplane::grpc::UpdateByRequest_UpdateByOperation* UpdateByRequest::add_operations() ABSL_ATTRIBUTE_LIFETIME_BOUND { - ::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; -} -inline const ::google::protobuf::RepeatedPtrField<::io::deephaven::proto::backplane::grpc::UpdateByRequest_UpdateByOperation>& UpdateByRequest::operations() const - ABSL_ATTRIBUTE_LIFETIME_BOUND { - // @@protoc_insertion_point(field_list:io.deephaven.proto.backplane.grpc.UpdateByRequest.operations) - return _internal_operations(); -} -inline const ::google::protobuf::RepeatedPtrField<::io::deephaven::proto::backplane::grpc::UpdateByRequest_UpdateByOperation>& -UpdateByRequest::_internal_operations() const { - ::google::protobuf::internal::TSanRead(&_impl_); - return _impl_.operations_; -} -inline ::google::protobuf::RepeatedPtrField<::io::deephaven::proto::backplane::grpc::UpdateByRequest_UpdateByOperation>* -UpdateByRequest::_internal_mutable_operations() { - ::google::protobuf::internal::TSanRead(&_impl_); - return &_impl_.operations_; -} - -// repeated string group_by_columns = 5; -inline int UpdateByRequest::_internal_group_by_columns_size() const { - return _internal_group_by_columns().size(); -} -inline int UpdateByRequest::group_by_columns_size() const { - return _internal_group_by_columns_size(); -} -inline void UpdateByRequest::clear_group_by_columns() { - ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.group_by_columns_.Clear(); -} -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; -} -inline const std::string& UpdateByRequest::group_by_columns(int index) const - ABSL_ATTRIBUTE_LIFETIME_BOUND { - // @@protoc_insertion_point(field_get:io.deephaven.proto.backplane.grpc.UpdateByRequest.group_by_columns) - return _internal_group_by_columns().Get(index); -} -inline std::string* UpdateByRequest::mutable_group_by_columns(int index) - ABSL_ATTRIBUTE_LIFETIME_BOUND { - // @@protoc_insertion_point(field_mutable:io.deephaven.proto.backplane.grpc.UpdateByRequest.group_by_columns) - return _internal_mutable_group_by_columns()->Mutable(index); -} -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) -} -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 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) - return _internal_group_by_columns(); -} -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) - ::google::protobuf::internal::TSanWrite(&_impl_); - return _internal_mutable_group_by_columns(); -} -inline const ::google::protobuf::RepeatedPtrField& -UpdateByRequest::_internal_group_by_columns() const { - ::google::protobuf::internal::TSanRead(&_impl_); - return _impl_.group_by_columns_; -} -inline ::google::protobuf::RepeatedPtrField* -UpdateByRequest::_internal_mutable_group_by_columns() { - ::google::protobuf::internal::TSanRead(&_impl_); - return &_impl_.group_by_columns_; -} - -// ------------------------------------------------------------------- - -// SelectDistinctRequest - -// .io.deephaven.proto.backplane.grpc.Ticket result_id = 1; -inline bool SelectDistinctRequest::has_result_id() const { - bool value = (_impl_._has_bits_[0] & 0x00000001u) != 0; - PROTOBUF_ASSUME(!value || _impl_.result_id_ != nullptr); - return value; -} -inline const ::io::deephaven::proto::backplane::grpc::Ticket& SelectDistinctRequest::_internal_result_id() const { - ::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_); -} -inline const ::io::deephaven::proto::backplane::grpc::Ticket& SelectDistinctRequest::result_id() const ABSL_ATTRIBUTE_LIFETIME_BOUND { - // @@protoc_insertion_point(field_get:io.deephaven.proto.backplane.grpc.SelectDistinctRequest.result_id) - return _internal_result_id(); -} -inline void SelectDistinctRequest::unsafe_arena_set_allocated_result_id(::io::deephaven::proto::backplane::grpc::Ticket* value) { - ::google::protobuf::internal::TSanWrite(&_impl_); - if (GetArena() == nullptr) { - delete reinterpret_cast<::google::protobuf::MessageLite*>(_impl_.result_id_); - } - _impl_.result_id_ = reinterpret_cast<::io::deephaven::proto::backplane::grpc::Ticket*>(value); - if (value != nullptr) { - _impl_._has_bits_[0] |= 0x00000001u; - } else { - _impl_._has_bits_[0] &= ~0x00000001u; - } - // @@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() { - ::google::protobuf::internal::TSanWrite(&_impl_); - - _impl_._has_bits_[0] &= ~0x00000001u; - ::io::deephaven::proto::backplane::grpc::Ticket* released = _impl_.result_id_; - _impl_.result_id_ = nullptr; -#ifdef PROTOBUF_FORCE_COPY_IN_RELEASE - auto* old = reinterpret_cast<::google::protobuf::MessageLite*>(released); - released = ::google::protobuf::internal::DuplicateIfNonNull(released); - if (GetArena() == nullptr) { - delete old; - } -#else // PROTOBUF_FORCE_COPY_IN_RELEASE - if (GetArena() != nullptr) { - released = ::google::protobuf::internal::DuplicateIfNonNull(released); - } -#endif // !PROTOBUF_FORCE_COPY_IN_RELEASE - return released; -} -inline ::io::deephaven::proto::backplane::grpc::Ticket* SelectDistinctRequest::unsafe_arena_release_result_id() { - ::google::protobuf::internal::TSanWrite(&_impl_); - // @@protoc_insertion_point(field_release:io.deephaven.proto.backplane.grpc.SelectDistinctRequest.result_id) - - _impl_._has_bits_[0] &= ~0x00000001u; - ::io::deephaven::proto::backplane::grpc::Ticket* temp = _impl_.result_id_; - _impl_.result_id_ = nullptr; - return temp; -} -inline ::io::deephaven::proto::backplane::grpc::Ticket* SelectDistinctRequest::_internal_mutable_result_id() { - ::google::protobuf::internal::TSanWrite(&_impl_); - if (_impl_.result_id_ == nullptr) { - 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(); - ::google::protobuf::internal::TSanWrite(&_impl_); - if (message_arena == nullptr) { - delete reinterpret_cast<::google::protobuf::MessageLite*>(_impl_.result_id_); - } - - if (value != nullptr) { - ::google::protobuf::Arena* submessage_arena = reinterpret_cast<::google::protobuf::MessageLite*>(value)->GetArena(); - if (message_arena != submessage_arena) { - value = ::google::protobuf::internal::GetOwnedMessage(message_arena, value, submessage_arena); - } - _impl_._has_bits_[0] |= 0x00000001u; - } else { - _impl_._has_bits_[0] &= ~0x00000001u; - } - - _impl_.result_id_ = reinterpret_cast<::io::deephaven::proto::backplane::grpc::Ticket*>(value); - // @@protoc_insertion_point(field_set_allocated:io.deephaven.proto.backplane.grpc.SelectDistinctRequest.result_id) -} - -// .io.deephaven.proto.backplane.grpc.TableReference source_id = 2; -inline bool SelectDistinctRequest::has_source_id() const { - bool value = (_impl_._has_bits_[0] & 0x00000002u) != 0; - PROTOBUF_ASSUME(!value || _impl_.source_id_ != nullptr); - return value; -} -inline void SelectDistinctRequest::clear_source_id() { - ::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 { - ::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_); -} -inline const ::io::deephaven::proto::backplane::grpc::TableReference& SelectDistinctRequest::source_id() const ABSL_ATTRIBUTE_LIFETIME_BOUND { - // @@protoc_insertion_point(field_get:io.deephaven.proto.backplane.grpc.SelectDistinctRequest.source_id) - return _internal_source_id(); -} -inline void SelectDistinctRequest::unsafe_arena_set_allocated_source_id(::io::deephaven::proto::backplane::grpc::TableReference* value) { - ::google::protobuf::internal::TSanWrite(&_impl_); - if (GetArena() == nullptr) { - delete reinterpret_cast<::google::protobuf::MessageLite*>(_impl_.source_id_); - } - _impl_.source_id_ = reinterpret_cast<::io::deephaven::proto::backplane::grpc::TableReference*>(value); - if (value != nullptr) { - _impl_._has_bits_[0] |= 0x00000002u; - } else { - _impl_._has_bits_[0] &= ~0x00000002u; - } - // @@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() { - ::google::protobuf::internal::TSanWrite(&_impl_); - - _impl_._has_bits_[0] &= ~0x00000002u; - ::io::deephaven::proto::backplane::grpc::TableReference* released = _impl_.source_id_; - _impl_.source_id_ = nullptr; -#ifdef PROTOBUF_FORCE_COPY_IN_RELEASE - auto* old = reinterpret_cast<::google::protobuf::MessageLite*>(released); - released = ::google::protobuf::internal::DuplicateIfNonNull(released); - if (GetArena() == nullptr) { - delete old; - } -#else // PROTOBUF_FORCE_COPY_IN_RELEASE - if (GetArena() != nullptr) { - released = ::google::protobuf::internal::DuplicateIfNonNull(released); - } -#endif // !PROTOBUF_FORCE_COPY_IN_RELEASE - return released; -} -inline ::io::deephaven::proto::backplane::grpc::TableReference* SelectDistinctRequest::unsafe_arena_release_source_id() { - ::google::protobuf::internal::TSanWrite(&_impl_); - // @@protoc_insertion_point(field_release:io.deephaven.proto.backplane.grpc.SelectDistinctRequest.source_id) - - _impl_._has_bits_[0] &= ~0x00000002u; - ::io::deephaven::proto::backplane::grpc::TableReference* temp = _impl_.source_id_; - _impl_.source_id_ = nullptr; - return temp; -} -inline ::io::deephaven::proto::backplane::grpc::TableReference* SelectDistinctRequest::_internal_mutable_source_id() { - ::google::protobuf::internal::TSanWrite(&_impl_); - if (_impl_.source_id_ == nullptr) { - 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(); - ::google::protobuf::internal::TSanWrite(&_impl_); - if (message_arena == nullptr) { - delete (_impl_.source_id_); - } - - if (value != nullptr) { - ::google::protobuf::Arena* submessage_arena = (value)->GetArena(); - if (message_arena != submessage_arena) { - value = ::google::protobuf::internal::GetOwnedMessage(message_arena, value, submessage_arena); - } - _impl_._has_bits_[0] |= 0x00000002u; - } else { - _impl_._has_bits_[0] &= ~0x00000002u; - } - - _impl_.source_id_ = reinterpret_cast<::io::deephaven::proto::backplane::grpc::TableReference*>(value); - // @@protoc_insertion_point(field_set_allocated:io.deephaven.proto.backplane.grpc.SelectDistinctRequest.source_id) -} - -// repeated string column_names = 3; -inline int SelectDistinctRequest::_internal_column_names_size() const { - return _internal_column_names().size(); -} -inline int SelectDistinctRequest::column_names_size() const { - return _internal_column_names_size(); -} -inline void SelectDistinctRequest::clear_column_names() { - ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.column_names_.Clear(); -} -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; -} -inline const std::string& SelectDistinctRequest::column_names(int index) const - ABSL_ATTRIBUTE_LIFETIME_BOUND { - // @@protoc_insertion_point(field_get:io.deephaven.proto.backplane.grpc.SelectDistinctRequest.column_names) - return _internal_column_names().Get(index); -} -inline std::string* SelectDistinctRequest::mutable_column_names(int index) - ABSL_ATTRIBUTE_LIFETIME_BOUND { - // @@protoc_insertion_point(field_mutable:io.deephaven.proto.backplane.grpc.SelectDistinctRequest.column_names) - return _internal_mutable_column_names()->Mutable(index); -} -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) -} -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 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) - return _internal_column_names(); -} -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) - ::google::protobuf::internal::TSanWrite(&_impl_); - return _internal_mutable_column_names(); -} -inline const ::google::protobuf::RepeatedPtrField& -SelectDistinctRequest::_internal_column_names() const { - ::google::protobuf::internal::TSanRead(&_impl_); - return _impl_.column_names_; -} -inline ::google::protobuf::RepeatedPtrField* -SelectDistinctRequest::_internal_mutable_column_names() { - ::google::protobuf::internal::TSanRead(&_impl_); - return &_impl_.column_names_; -} - -// ------------------------------------------------------------------- - -// DropColumnsRequest - -// .io.deephaven.proto.backplane.grpc.Ticket result_id = 1; -inline bool DropColumnsRequest::has_result_id() const { - bool value = (_impl_._has_bits_[0] & 0x00000001u) != 0; - PROTOBUF_ASSUME(!value || _impl_.result_id_ != nullptr); - return value; -} -inline const ::io::deephaven::proto::backplane::grpc::Ticket& DropColumnsRequest::_internal_result_id() const { - ::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_); -} -inline const ::io::deephaven::proto::backplane::grpc::Ticket& DropColumnsRequest::result_id() const ABSL_ATTRIBUTE_LIFETIME_BOUND { - // @@protoc_insertion_point(field_get:io.deephaven.proto.backplane.grpc.DropColumnsRequest.result_id) - return _internal_result_id(); -} -inline void DropColumnsRequest::unsafe_arena_set_allocated_result_id(::io::deephaven::proto::backplane::grpc::Ticket* value) { - ::google::protobuf::internal::TSanWrite(&_impl_); - if (GetArena() == nullptr) { - delete reinterpret_cast<::google::protobuf::MessageLite*>(_impl_.result_id_); - } - _impl_.result_id_ = reinterpret_cast<::io::deephaven::proto::backplane::grpc::Ticket*>(value); - if (value != nullptr) { - _impl_._has_bits_[0] |= 0x00000001u; - } else { - _impl_._has_bits_[0] &= ~0x00000001u; - } - // @@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() { - ::google::protobuf::internal::TSanWrite(&_impl_); - - _impl_._has_bits_[0] &= ~0x00000001u; - ::io::deephaven::proto::backplane::grpc::Ticket* released = _impl_.result_id_; - _impl_.result_id_ = nullptr; -#ifdef PROTOBUF_FORCE_COPY_IN_RELEASE - auto* old = reinterpret_cast<::google::protobuf::MessageLite*>(released); - released = ::google::protobuf::internal::DuplicateIfNonNull(released); - if (GetArena() == nullptr) { - delete old; - } -#else // PROTOBUF_FORCE_COPY_IN_RELEASE - if (GetArena() != nullptr) { - released = ::google::protobuf::internal::DuplicateIfNonNull(released); - } -#endif // !PROTOBUF_FORCE_COPY_IN_RELEASE - return released; -} -inline ::io::deephaven::proto::backplane::grpc::Ticket* DropColumnsRequest::unsafe_arena_release_result_id() { - ::google::protobuf::internal::TSanWrite(&_impl_); - // @@protoc_insertion_point(field_release:io.deephaven.proto.backplane.grpc.DropColumnsRequest.result_id) - - _impl_._has_bits_[0] &= ~0x00000001u; - ::io::deephaven::proto::backplane::grpc::Ticket* temp = _impl_.result_id_; - _impl_.result_id_ = nullptr; - return temp; -} -inline ::io::deephaven::proto::backplane::grpc::Ticket* DropColumnsRequest::_internal_mutable_result_id() { - ::google::protobuf::internal::TSanWrite(&_impl_); - if (_impl_.result_id_ == nullptr) { - 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(); - ::google::protobuf::internal::TSanWrite(&_impl_); - if (message_arena == nullptr) { - delete reinterpret_cast<::google::protobuf::MessageLite*>(_impl_.result_id_); - } - - if (value != nullptr) { - ::google::protobuf::Arena* submessage_arena = reinterpret_cast<::google::protobuf::MessageLite*>(value)->GetArena(); - if (message_arena != submessage_arena) { - value = ::google::protobuf::internal::GetOwnedMessage(message_arena, value, submessage_arena); - } - _impl_._has_bits_[0] |= 0x00000001u; - } else { - _impl_._has_bits_[0] &= ~0x00000001u; - } - - _impl_.result_id_ = reinterpret_cast<::io::deephaven::proto::backplane::grpc::Ticket*>(value); - // @@protoc_insertion_point(field_set_allocated:io.deephaven.proto.backplane.grpc.DropColumnsRequest.result_id) -} - -// .io.deephaven.proto.backplane.grpc.TableReference source_id = 2; -inline bool DropColumnsRequest::has_source_id() const { - bool value = (_impl_._has_bits_[0] & 0x00000002u) != 0; - PROTOBUF_ASSUME(!value || _impl_.source_id_ != nullptr); - return value; -} -inline void DropColumnsRequest::clear_source_id() { - ::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 { - ::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_); -} -inline const ::io::deephaven::proto::backplane::grpc::TableReference& DropColumnsRequest::source_id() const ABSL_ATTRIBUTE_LIFETIME_BOUND { - // @@protoc_insertion_point(field_get:io.deephaven.proto.backplane.grpc.DropColumnsRequest.source_id) - return _internal_source_id(); -} -inline void DropColumnsRequest::unsafe_arena_set_allocated_source_id(::io::deephaven::proto::backplane::grpc::TableReference* value) { - ::google::protobuf::internal::TSanWrite(&_impl_); - if (GetArena() == nullptr) { - delete reinterpret_cast<::google::protobuf::MessageLite*>(_impl_.source_id_); - } - _impl_.source_id_ = reinterpret_cast<::io::deephaven::proto::backplane::grpc::TableReference*>(value); - if (value != nullptr) { - _impl_._has_bits_[0] |= 0x00000002u; - } else { - _impl_._has_bits_[0] &= ~0x00000002u; - } - // @@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() { - ::google::protobuf::internal::TSanWrite(&_impl_); - - _impl_._has_bits_[0] &= ~0x00000002u; - ::io::deephaven::proto::backplane::grpc::TableReference* released = _impl_.source_id_; - _impl_.source_id_ = nullptr; -#ifdef PROTOBUF_FORCE_COPY_IN_RELEASE - auto* old = reinterpret_cast<::google::protobuf::MessageLite*>(released); - released = ::google::protobuf::internal::DuplicateIfNonNull(released); - if (GetArena() == nullptr) { - delete old; - } -#else // PROTOBUF_FORCE_COPY_IN_RELEASE - if (GetArena() != nullptr) { - released = ::google::protobuf::internal::DuplicateIfNonNull(released); - } -#endif // !PROTOBUF_FORCE_COPY_IN_RELEASE - return released; -} -inline ::io::deephaven::proto::backplane::grpc::TableReference* DropColumnsRequest::unsafe_arena_release_source_id() { - ::google::protobuf::internal::TSanWrite(&_impl_); - // @@protoc_insertion_point(field_release:io.deephaven.proto.backplane.grpc.DropColumnsRequest.source_id) - - _impl_._has_bits_[0] &= ~0x00000002u; - ::io::deephaven::proto::backplane::grpc::TableReference* temp = _impl_.source_id_; - _impl_.source_id_ = nullptr; - return temp; -} -inline ::io::deephaven::proto::backplane::grpc::TableReference* DropColumnsRequest::_internal_mutable_source_id() { - ::google::protobuf::internal::TSanWrite(&_impl_); - if (_impl_.source_id_ == nullptr) { - 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(); - ::google::protobuf::internal::TSanWrite(&_impl_); - if (message_arena == nullptr) { - delete (_impl_.source_id_); - } - - if (value != nullptr) { - ::google::protobuf::Arena* submessage_arena = (value)->GetArena(); - if (message_arena != submessage_arena) { - value = ::google::protobuf::internal::GetOwnedMessage(message_arena, value, submessage_arena); - } - _impl_._has_bits_[0] |= 0x00000002u; - } else { - _impl_._has_bits_[0] &= ~0x00000002u; - } - - _impl_.source_id_ = reinterpret_cast<::io::deephaven::proto::backplane::grpc::TableReference*>(value); - // @@protoc_insertion_point(field_set_allocated:io.deephaven.proto.backplane.grpc.DropColumnsRequest.source_id) -} - -// repeated string column_names = 3; -inline int DropColumnsRequest::_internal_column_names_size() const { - return _internal_column_names().size(); -} -inline int DropColumnsRequest::column_names_size() const { - return _internal_column_names_size(); -} -inline void DropColumnsRequest::clear_column_names() { - ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.column_names_.Clear(); -} -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; -} -inline const std::string& DropColumnsRequest::column_names(int index) const - ABSL_ATTRIBUTE_LIFETIME_BOUND { - // @@protoc_insertion_point(field_get:io.deephaven.proto.backplane.grpc.DropColumnsRequest.column_names) - return _internal_column_names().Get(index); -} -inline std::string* DropColumnsRequest::mutable_column_names(int index) - ABSL_ATTRIBUTE_LIFETIME_BOUND { - // @@protoc_insertion_point(field_mutable:io.deephaven.proto.backplane.grpc.DropColumnsRequest.column_names) - return _internal_mutable_column_names()->Mutable(index); -} -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) -} -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 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) - return _internal_column_names(); -} -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) - ::google::protobuf::internal::TSanWrite(&_impl_); - return _internal_mutable_column_names(); -} -inline const ::google::protobuf::RepeatedPtrField& -DropColumnsRequest::_internal_column_names() const { - ::google::protobuf::internal::TSanRead(&_impl_); - return _impl_.column_names_; -} -inline ::google::protobuf::RepeatedPtrField* -DropColumnsRequest::_internal_mutable_column_names() { - ::google::protobuf::internal::TSanRead(&_impl_); - return &_impl_.column_names_; -} - -// ------------------------------------------------------------------- - -// UnstructuredFilterTableRequest - -// .io.deephaven.proto.backplane.grpc.Ticket result_id = 1; -inline bool UnstructuredFilterTableRequest::has_result_id() const { - bool value = (_impl_._has_bits_[0] & 0x00000001u) != 0; - PROTOBUF_ASSUME(!value || _impl_.result_id_ != nullptr); - return value; -} -inline const ::io::deephaven::proto::backplane::grpc::Ticket& UnstructuredFilterTableRequest::_internal_result_id() const { - ::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_); -} -inline const ::io::deephaven::proto::backplane::grpc::Ticket& UnstructuredFilterTableRequest::result_id() const ABSL_ATTRIBUTE_LIFETIME_BOUND { - // @@protoc_insertion_point(field_get:io.deephaven.proto.backplane.grpc.UnstructuredFilterTableRequest.result_id) - return _internal_result_id(); -} -inline void UnstructuredFilterTableRequest::unsafe_arena_set_allocated_result_id(::io::deephaven::proto::backplane::grpc::Ticket* value) { - ::google::protobuf::internal::TSanWrite(&_impl_); - if (GetArena() == nullptr) { - delete reinterpret_cast<::google::protobuf::MessageLite*>(_impl_.result_id_); - } - _impl_.result_id_ = reinterpret_cast<::io::deephaven::proto::backplane::grpc::Ticket*>(value); - if (value != nullptr) { - _impl_._has_bits_[0] |= 0x00000001u; - } else { - _impl_._has_bits_[0] &= ~0x00000001u; - } - // @@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() { - ::google::protobuf::internal::TSanWrite(&_impl_); - - _impl_._has_bits_[0] &= ~0x00000001u; - ::io::deephaven::proto::backplane::grpc::Ticket* released = _impl_.result_id_; - _impl_.result_id_ = nullptr; -#ifdef PROTOBUF_FORCE_COPY_IN_RELEASE - auto* old = reinterpret_cast<::google::protobuf::MessageLite*>(released); - released = ::google::protobuf::internal::DuplicateIfNonNull(released); - if (GetArena() == nullptr) { - delete old; - } -#else // PROTOBUF_FORCE_COPY_IN_RELEASE - if (GetArena() != nullptr) { - released = ::google::protobuf::internal::DuplicateIfNonNull(released); - } -#endif // !PROTOBUF_FORCE_COPY_IN_RELEASE - return released; -} -inline ::io::deephaven::proto::backplane::grpc::Ticket* UnstructuredFilterTableRequest::unsafe_arena_release_result_id() { - ::google::protobuf::internal::TSanWrite(&_impl_); - // @@protoc_insertion_point(field_release:io.deephaven.proto.backplane.grpc.UnstructuredFilterTableRequest.result_id) - - _impl_._has_bits_[0] &= ~0x00000001u; - ::io::deephaven::proto::backplane::grpc::Ticket* temp = _impl_.result_id_; - _impl_.result_id_ = nullptr; - return temp; -} -inline ::io::deephaven::proto::backplane::grpc::Ticket* UnstructuredFilterTableRequest::_internal_mutable_result_id() { - ::google::protobuf::internal::TSanWrite(&_impl_); - if (_impl_.result_id_ == nullptr) { - 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(); - ::google::protobuf::internal::TSanWrite(&_impl_); - if (message_arena == nullptr) { - delete reinterpret_cast<::google::protobuf::MessageLite*>(_impl_.result_id_); - } - - if (value != nullptr) { - ::google::protobuf::Arena* submessage_arena = reinterpret_cast<::google::protobuf::MessageLite*>(value)->GetArena(); - if (message_arena != submessage_arena) { - value = ::google::protobuf::internal::GetOwnedMessage(message_arena, value, submessage_arena); - } - _impl_._has_bits_[0] |= 0x00000001u; - } else { - _impl_._has_bits_[0] &= ~0x00000001u; - } - - _impl_.result_id_ = reinterpret_cast<::io::deephaven::proto::backplane::grpc::Ticket*>(value); - // @@protoc_insertion_point(field_set_allocated:io.deephaven.proto.backplane.grpc.UnstructuredFilterTableRequest.result_id) -} - -// .io.deephaven.proto.backplane.grpc.TableReference source_id = 2; -inline bool UnstructuredFilterTableRequest::has_source_id() const { - bool value = (_impl_._has_bits_[0] & 0x00000002u) != 0; - PROTOBUF_ASSUME(!value || _impl_.source_id_ != nullptr); - return value; -} -inline void UnstructuredFilterTableRequest::clear_source_id() { - ::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 { - ::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_); -} -inline const ::io::deephaven::proto::backplane::grpc::TableReference& UnstructuredFilterTableRequest::source_id() const ABSL_ATTRIBUTE_LIFETIME_BOUND { - // @@protoc_insertion_point(field_get:io.deephaven.proto.backplane.grpc.UnstructuredFilterTableRequest.source_id) - return _internal_source_id(); -} -inline void UnstructuredFilterTableRequest::unsafe_arena_set_allocated_source_id(::io::deephaven::proto::backplane::grpc::TableReference* value) { - ::google::protobuf::internal::TSanWrite(&_impl_); - if (GetArena() == nullptr) { - delete reinterpret_cast<::google::protobuf::MessageLite*>(_impl_.source_id_); - } - _impl_.source_id_ = reinterpret_cast<::io::deephaven::proto::backplane::grpc::TableReference*>(value); - if (value != nullptr) { - _impl_._has_bits_[0] |= 0x00000002u; - } else { - _impl_._has_bits_[0] &= ~0x00000002u; - } - // @@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() { - ::google::protobuf::internal::TSanWrite(&_impl_); - - _impl_._has_bits_[0] &= ~0x00000002u; - ::io::deephaven::proto::backplane::grpc::TableReference* released = _impl_.source_id_; - _impl_.source_id_ = nullptr; -#ifdef PROTOBUF_FORCE_COPY_IN_RELEASE - auto* old = reinterpret_cast<::google::protobuf::MessageLite*>(released); - released = ::google::protobuf::internal::DuplicateIfNonNull(released); - if (GetArena() == nullptr) { - delete old; - } -#else // PROTOBUF_FORCE_COPY_IN_RELEASE - if (GetArena() != nullptr) { - released = ::google::protobuf::internal::DuplicateIfNonNull(released); - } -#endif // !PROTOBUF_FORCE_COPY_IN_RELEASE - return released; -} -inline ::io::deephaven::proto::backplane::grpc::TableReference* UnstructuredFilterTableRequest::unsafe_arena_release_source_id() { - ::google::protobuf::internal::TSanWrite(&_impl_); - // @@protoc_insertion_point(field_release:io.deephaven.proto.backplane.grpc.UnstructuredFilterTableRequest.source_id) - - _impl_._has_bits_[0] &= ~0x00000002u; - ::io::deephaven::proto::backplane::grpc::TableReference* temp = _impl_.source_id_; - _impl_.source_id_ = nullptr; - return temp; -} -inline ::io::deephaven::proto::backplane::grpc::TableReference* UnstructuredFilterTableRequest::_internal_mutable_source_id() { - ::google::protobuf::internal::TSanWrite(&_impl_); - if (_impl_.source_id_ == nullptr) { - 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(); - ::google::protobuf::internal::TSanWrite(&_impl_); - if (message_arena == nullptr) { - delete (_impl_.source_id_); - } - - if (value != nullptr) { - ::google::protobuf::Arena* submessage_arena = (value)->GetArena(); - if (message_arena != submessage_arena) { - value = ::google::protobuf::internal::GetOwnedMessage(message_arena, value, submessage_arena); - } - _impl_._has_bits_[0] |= 0x00000002u; - } else { - _impl_._has_bits_[0] &= ~0x00000002u; - } - - _impl_.source_id_ = reinterpret_cast<::io::deephaven::proto::backplane::grpc::TableReference*>(value); - // @@protoc_insertion_point(field_set_allocated:io.deephaven.proto.backplane.grpc.UnstructuredFilterTableRequest.source_id) -} - -// repeated string filters = 3; -inline int UnstructuredFilterTableRequest::_internal_filters_size() const { - return _internal_filters().size(); -} -inline int UnstructuredFilterTableRequest::filters_size() const { - return _internal_filters_size(); -} -inline void UnstructuredFilterTableRequest::clear_filters() { - ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.filters_.Clear(); -} -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; -} -inline const std::string& UnstructuredFilterTableRequest::filters(int index) const - ABSL_ATTRIBUTE_LIFETIME_BOUND { - // @@protoc_insertion_point(field_get:io.deephaven.proto.backplane.grpc.UnstructuredFilterTableRequest.filters) - return _internal_filters().Get(index); -} -inline std::string* UnstructuredFilterTableRequest::mutable_filters(int index) - ABSL_ATTRIBUTE_LIFETIME_BOUND { - // @@protoc_insertion_point(field_mutable:io.deephaven.proto.backplane.grpc.UnstructuredFilterTableRequest.filters) - return _internal_mutable_filters()->Mutable(index); -} -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) -} -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 const ::google::protobuf::RepeatedPtrField& -UnstructuredFilterTableRequest::filters() const ABSL_ATTRIBUTE_LIFETIME_BOUND { - // @@protoc_insertion_point(field_list:io.deephaven.proto.backplane.grpc.UnstructuredFilterTableRequest.filters) - return _internal_filters(); -} -inline ::google::protobuf::RepeatedPtrField* -UnstructuredFilterTableRequest::mutable_filters() ABSL_ATTRIBUTE_LIFETIME_BOUND { - // @@protoc_insertion_point(field_mutable_list:io.deephaven.proto.backplane.grpc.UnstructuredFilterTableRequest.filters) - ::google::protobuf::internal::TSanWrite(&_impl_); - return _internal_mutable_filters(); -} -inline const ::google::protobuf::RepeatedPtrField& -UnstructuredFilterTableRequest::_internal_filters() const { - ::google::protobuf::internal::TSanRead(&_impl_); - return _impl_.filters_; -} -inline ::google::protobuf::RepeatedPtrField* -UnstructuredFilterTableRequest::_internal_mutable_filters() { - ::google::protobuf::internal::TSanRead(&_impl_); - return &_impl_.filters_; -} - -// ------------------------------------------------------------------- - -// HeadOrTailRequest - -// .io.deephaven.proto.backplane.grpc.Ticket result_id = 1; -inline bool HeadOrTailRequest::has_result_id() const { - bool value = (_impl_._has_bits_[0] & 0x00000001u) != 0; - PROTOBUF_ASSUME(!value || _impl_.result_id_ != nullptr); - return value; -} -inline const ::io::deephaven::proto::backplane::grpc::Ticket& HeadOrTailRequest::_internal_result_id() const { - ::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_); -} -inline const ::io::deephaven::proto::backplane::grpc::Ticket& HeadOrTailRequest::result_id() const ABSL_ATTRIBUTE_LIFETIME_BOUND { - // @@protoc_insertion_point(field_get:io.deephaven.proto.backplane.grpc.HeadOrTailRequest.result_id) - return _internal_result_id(); -} -inline void HeadOrTailRequest::unsafe_arena_set_allocated_result_id(::io::deephaven::proto::backplane::grpc::Ticket* value) { - ::google::protobuf::internal::TSanWrite(&_impl_); - if (GetArena() == nullptr) { - delete reinterpret_cast<::google::protobuf::MessageLite*>(_impl_.result_id_); - } - _impl_.result_id_ = reinterpret_cast<::io::deephaven::proto::backplane::grpc::Ticket*>(value); - if (value != nullptr) { - _impl_._has_bits_[0] |= 0x00000001u; - } else { - _impl_._has_bits_[0] &= ~0x00000001u; - } - // @@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() { - ::google::protobuf::internal::TSanWrite(&_impl_); - - _impl_._has_bits_[0] &= ~0x00000001u; - ::io::deephaven::proto::backplane::grpc::Ticket* released = _impl_.result_id_; - _impl_.result_id_ = nullptr; -#ifdef PROTOBUF_FORCE_COPY_IN_RELEASE - auto* old = reinterpret_cast<::google::protobuf::MessageLite*>(released); - released = ::google::protobuf::internal::DuplicateIfNonNull(released); - if (GetArena() == nullptr) { - delete old; - } -#else // PROTOBUF_FORCE_COPY_IN_RELEASE - if (GetArena() != nullptr) { - released = ::google::protobuf::internal::DuplicateIfNonNull(released); - } -#endif // !PROTOBUF_FORCE_COPY_IN_RELEASE - return released; -} -inline ::io::deephaven::proto::backplane::grpc::Ticket* HeadOrTailRequest::unsafe_arena_release_result_id() { - ::google::protobuf::internal::TSanWrite(&_impl_); - // @@protoc_insertion_point(field_release:io.deephaven.proto.backplane.grpc.HeadOrTailRequest.result_id) - - _impl_._has_bits_[0] &= ~0x00000001u; - ::io::deephaven::proto::backplane::grpc::Ticket* temp = _impl_.result_id_; - _impl_.result_id_ = nullptr; - return temp; -} -inline ::io::deephaven::proto::backplane::grpc::Ticket* HeadOrTailRequest::_internal_mutable_result_id() { - ::google::protobuf::internal::TSanWrite(&_impl_); - if (_impl_.result_id_ == nullptr) { - 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(); - ::google::protobuf::internal::TSanWrite(&_impl_); - if (message_arena == nullptr) { - delete reinterpret_cast<::google::protobuf::MessageLite*>(_impl_.result_id_); - } - - if (value != nullptr) { - ::google::protobuf::Arena* submessage_arena = reinterpret_cast<::google::protobuf::MessageLite*>(value)->GetArena(); - if (message_arena != submessage_arena) { - value = ::google::protobuf::internal::GetOwnedMessage(message_arena, value, submessage_arena); - } - _impl_._has_bits_[0] |= 0x00000001u; - } else { - _impl_._has_bits_[0] &= ~0x00000001u; - } - - _impl_.result_id_ = reinterpret_cast<::io::deephaven::proto::backplane::grpc::Ticket*>(value); - // @@protoc_insertion_point(field_set_allocated:io.deephaven.proto.backplane.grpc.HeadOrTailRequest.result_id) -} - -// .io.deephaven.proto.backplane.grpc.TableReference source_id = 2; -inline bool HeadOrTailRequest::has_source_id() const { - bool value = (_impl_._has_bits_[0] & 0x00000002u) != 0; - PROTOBUF_ASSUME(!value || _impl_.source_id_ != nullptr); - return value; -} -inline void HeadOrTailRequest::clear_source_id() { - ::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 { - ::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_); -} -inline const ::io::deephaven::proto::backplane::grpc::TableReference& HeadOrTailRequest::source_id() const ABSL_ATTRIBUTE_LIFETIME_BOUND { - // @@protoc_insertion_point(field_get:io.deephaven.proto.backplane.grpc.HeadOrTailRequest.source_id) - return _internal_source_id(); -} -inline void HeadOrTailRequest::unsafe_arena_set_allocated_source_id(::io::deephaven::proto::backplane::grpc::TableReference* value) { - ::google::protobuf::internal::TSanWrite(&_impl_); - if (GetArena() == nullptr) { - delete reinterpret_cast<::google::protobuf::MessageLite*>(_impl_.source_id_); - } - _impl_.source_id_ = reinterpret_cast<::io::deephaven::proto::backplane::grpc::TableReference*>(value); - if (value != nullptr) { - _impl_._has_bits_[0] |= 0x00000002u; - } else { - _impl_._has_bits_[0] &= ~0x00000002u; - } - // @@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() { - ::google::protobuf::internal::TSanWrite(&_impl_); - - _impl_._has_bits_[0] &= ~0x00000002u; - ::io::deephaven::proto::backplane::grpc::TableReference* released = _impl_.source_id_; - _impl_.source_id_ = nullptr; -#ifdef PROTOBUF_FORCE_COPY_IN_RELEASE - auto* old = reinterpret_cast<::google::protobuf::MessageLite*>(released); - released = ::google::protobuf::internal::DuplicateIfNonNull(released); - if (GetArena() == nullptr) { - delete old; - } -#else // PROTOBUF_FORCE_COPY_IN_RELEASE - if (GetArena() != nullptr) { - released = ::google::protobuf::internal::DuplicateIfNonNull(released); - } -#endif // !PROTOBUF_FORCE_COPY_IN_RELEASE - return released; -} -inline ::io::deephaven::proto::backplane::grpc::TableReference* HeadOrTailRequest::unsafe_arena_release_source_id() { - ::google::protobuf::internal::TSanWrite(&_impl_); - // @@protoc_insertion_point(field_release:io.deephaven.proto.backplane.grpc.HeadOrTailRequest.source_id) - - _impl_._has_bits_[0] &= ~0x00000002u; - ::io::deephaven::proto::backplane::grpc::TableReference* temp = _impl_.source_id_; - _impl_.source_id_ = nullptr; - return temp; -} -inline ::io::deephaven::proto::backplane::grpc::TableReference* HeadOrTailRequest::_internal_mutable_source_id() { - ::google::protobuf::internal::TSanWrite(&_impl_); - if (_impl_.source_id_ == nullptr) { - 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(); - ::google::protobuf::internal::TSanWrite(&_impl_); - if (message_arena == nullptr) { - delete (_impl_.source_id_); - } - - if (value != nullptr) { - ::google::protobuf::Arena* submessage_arena = (value)->GetArena(); - if (message_arena != submessage_arena) { - value = ::google::protobuf::internal::GetOwnedMessage(message_arena, value, submessage_arena); - } - _impl_._has_bits_[0] |= 0x00000002u; - } else { - _impl_._has_bits_[0] &= ~0x00000002u; - } - - _impl_.source_id_ = reinterpret_cast<::io::deephaven::proto::backplane::grpc::TableReference*>(value); - // @@protoc_insertion_point(field_set_allocated:io.deephaven.proto.backplane.grpc.HeadOrTailRequest.source_id) -} - -// sint64 num_rows = 3 [jstype = JS_STRING]; -inline void HeadOrTailRequest::clear_num_rows() { - ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.num_rows_ = ::int64_t{0}; -} -inline ::int64_t HeadOrTailRequest::num_rows() const { - // @@protoc_insertion_point(field_get:io.deephaven.proto.backplane.grpc.HeadOrTailRequest.num_rows) - return _internal_num_rows(); -} -inline void HeadOrTailRequest::set_num_rows(::int64_t value) { - _internal_set_num_rows(value); - // @@protoc_insertion_point(field_set:io.deephaven.proto.backplane.grpc.HeadOrTailRequest.num_rows) -} -inline ::int64_t HeadOrTailRequest::_internal_num_rows() const { - ::google::protobuf::internal::TSanRead(&_impl_); - return _impl_.num_rows_; -} -inline void HeadOrTailRequest::_internal_set_num_rows(::int64_t value) { - ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.num_rows_ = value; -} - -// ------------------------------------------------------------------- - -// HeadOrTailByRequest - -// .io.deephaven.proto.backplane.grpc.Ticket result_id = 1; -inline bool HeadOrTailByRequest::has_result_id() const { - bool value = (_impl_._has_bits_[0] & 0x00000001u) != 0; - PROTOBUF_ASSUME(!value || _impl_.result_id_ != nullptr); - return value; -} -inline const ::io::deephaven::proto::backplane::grpc::Ticket& HeadOrTailByRequest::_internal_result_id() const { - ::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_); -} -inline const ::io::deephaven::proto::backplane::grpc::Ticket& HeadOrTailByRequest::result_id() const ABSL_ATTRIBUTE_LIFETIME_BOUND { - // @@protoc_insertion_point(field_get:io.deephaven.proto.backplane.grpc.HeadOrTailByRequest.result_id) - return _internal_result_id(); -} -inline void HeadOrTailByRequest::unsafe_arena_set_allocated_result_id(::io::deephaven::proto::backplane::grpc::Ticket* value) { - ::google::protobuf::internal::TSanWrite(&_impl_); - if (GetArena() == nullptr) { - delete reinterpret_cast<::google::protobuf::MessageLite*>(_impl_.result_id_); - } - _impl_.result_id_ = reinterpret_cast<::io::deephaven::proto::backplane::grpc::Ticket*>(value); - if (value != nullptr) { - _impl_._has_bits_[0] |= 0x00000001u; - } else { - _impl_._has_bits_[0] &= ~0x00000001u; - } - // @@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() { - ::google::protobuf::internal::TSanWrite(&_impl_); - - _impl_._has_bits_[0] &= ~0x00000001u; - ::io::deephaven::proto::backplane::grpc::Ticket* released = _impl_.result_id_; - _impl_.result_id_ = nullptr; -#ifdef PROTOBUF_FORCE_COPY_IN_RELEASE - auto* old = reinterpret_cast<::google::protobuf::MessageLite*>(released); - released = ::google::protobuf::internal::DuplicateIfNonNull(released); - if (GetArena() == nullptr) { - delete old; - } -#else // PROTOBUF_FORCE_COPY_IN_RELEASE - if (GetArena() != nullptr) { - released = ::google::protobuf::internal::DuplicateIfNonNull(released); - } -#endif // !PROTOBUF_FORCE_COPY_IN_RELEASE - return released; -} -inline ::io::deephaven::proto::backplane::grpc::Ticket* HeadOrTailByRequest::unsafe_arena_release_result_id() { - ::google::protobuf::internal::TSanWrite(&_impl_); - // @@protoc_insertion_point(field_release:io.deephaven.proto.backplane.grpc.HeadOrTailByRequest.result_id) - - _impl_._has_bits_[0] &= ~0x00000001u; - ::io::deephaven::proto::backplane::grpc::Ticket* temp = _impl_.result_id_; - _impl_.result_id_ = nullptr; - return temp; -} -inline ::io::deephaven::proto::backplane::grpc::Ticket* HeadOrTailByRequest::_internal_mutable_result_id() { - ::google::protobuf::internal::TSanWrite(&_impl_); - if (_impl_.result_id_ == nullptr) { - 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(); - ::google::protobuf::internal::TSanWrite(&_impl_); - if (message_arena == nullptr) { - delete reinterpret_cast<::google::protobuf::MessageLite*>(_impl_.result_id_); - } - - if (value != nullptr) { - ::google::protobuf::Arena* submessage_arena = reinterpret_cast<::google::protobuf::MessageLite*>(value)->GetArena(); - if (message_arena != submessage_arena) { - value = ::google::protobuf::internal::GetOwnedMessage(message_arena, value, submessage_arena); - } - _impl_._has_bits_[0] |= 0x00000001u; - } else { - _impl_._has_bits_[0] &= ~0x00000001u; - } - - _impl_.result_id_ = reinterpret_cast<::io::deephaven::proto::backplane::grpc::Ticket*>(value); - // @@protoc_insertion_point(field_set_allocated:io.deephaven.proto.backplane.grpc.HeadOrTailByRequest.result_id) -} - -// .io.deephaven.proto.backplane.grpc.TableReference source_id = 2; -inline bool HeadOrTailByRequest::has_source_id() const { - bool value = (_impl_._has_bits_[0] & 0x00000002u) != 0; - PROTOBUF_ASSUME(!value || _impl_.source_id_ != nullptr); - return value; -} -inline void HeadOrTailByRequest::clear_source_id() { - ::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 { - ::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_); -} -inline const ::io::deephaven::proto::backplane::grpc::TableReference& HeadOrTailByRequest::source_id() const ABSL_ATTRIBUTE_LIFETIME_BOUND { - // @@protoc_insertion_point(field_get:io.deephaven.proto.backplane.grpc.HeadOrTailByRequest.source_id) - return _internal_source_id(); -} -inline void HeadOrTailByRequest::unsafe_arena_set_allocated_source_id(::io::deephaven::proto::backplane::grpc::TableReference* value) { - ::google::protobuf::internal::TSanWrite(&_impl_); - if (GetArena() == nullptr) { - delete reinterpret_cast<::google::protobuf::MessageLite*>(_impl_.source_id_); - } - _impl_.source_id_ = reinterpret_cast<::io::deephaven::proto::backplane::grpc::TableReference*>(value); - if (value != nullptr) { - _impl_._has_bits_[0] |= 0x00000002u; - } else { - _impl_._has_bits_[0] &= ~0x00000002u; - } - // @@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() { - ::google::protobuf::internal::TSanWrite(&_impl_); - - _impl_._has_bits_[0] &= ~0x00000002u; - ::io::deephaven::proto::backplane::grpc::TableReference* released = _impl_.source_id_; - _impl_.source_id_ = nullptr; -#ifdef PROTOBUF_FORCE_COPY_IN_RELEASE - auto* old = reinterpret_cast<::google::protobuf::MessageLite*>(released); - released = ::google::protobuf::internal::DuplicateIfNonNull(released); - if (GetArena() == nullptr) { - delete old; - } -#else // PROTOBUF_FORCE_COPY_IN_RELEASE - if (GetArena() != nullptr) { - released = ::google::protobuf::internal::DuplicateIfNonNull(released); - } -#endif // !PROTOBUF_FORCE_COPY_IN_RELEASE - return released; -} -inline ::io::deephaven::proto::backplane::grpc::TableReference* HeadOrTailByRequest::unsafe_arena_release_source_id() { - ::google::protobuf::internal::TSanWrite(&_impl_); - // @@protoc_insertion_point(field_release:io.deephaven.proto.backplane.grpc.HeadOrTailByRequest.source_id) - - _impl_._has_bits_[0] &= ~0x00000002u; - ::io::deephaven::proto::backplane::grpc::TableReference* temp = _impl_.source_id_; - _impl_.source_id_ = nullptr; - return temp; -} -inline ::io::deephaven::proto::backplane::grpc::TableReference* HeadOrTailByRequest::_internal_mutable_source_id() { - ::google::protobuf::internal::TSanWrite(&_impl_); - if (_impl_.source_id_ == nullptr) { - 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(); - ::google::protobuf::internal::TSanWrite(&_impl_); - if (message_arena == nullptr) { - delete (_impl_.source_id_); - } - - if (value != nullptr) { - ::google::protobuf::Arena* submessage_arena = (value)->GetArena(); - if (message_arena != submessage_arena) { - value = ::google::protobuf::internal::GetOwnedMessage(message_arena, value, submessage_arena); - } - _impl_._has_bits_[0] |= 0x00000002u; - } else { - _impl_._has_bits_[0] &= ~0x00000002u; - } - - _impl_.source_id_ = reinterpret_cast<::io::deephaven::proto::backplane::grpc::TableReference*>(value); - // @@protoc_insertion_point(field_set_allocated:io.deephaven.proto.backplane.grpc.HeadOrTailByRequest.source_id) -} - -// sint64 num_rows = 3 [jstype = JS_STRING]; -inline void HeadOrTailByRequest::clear_num_rows() { - ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.num_rows_ = ::int64_t{0}; -} -inline ::int64_t HeadOrTailByRequest::num_rows() const { - // @@protoc_insertion_point(field_get:io.deephaven.proto.backplane.grpc.HeadOrTailByRequest.num_rows) - return _internal_num_rows(); -} -inline void HeadOrTailByRequest::set_num_rows(::int64_t value) { - _internal_set_num_rows(value); - // @@protoc_insertion_point(field_set:io.deephaven.proto.backplane.grpc.HeadOrTailByRequest.num_rows) -} -inline ::int64_t HeadOrTailByRequest::_internal_num_rows() const { - ::google::protobuf::internal::TSanRead(&_impl_); - return _impl_.num_rows_; -} -inline void HeadOrTailByRequest::_internal_set_num_rows(::int64_t value) { - ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.num_rows_ = value; -} - -// repeated string group_by_column_specs = 4; -inline int HeadOrTailByRequest::_internal_group_by_column_specs_size() const { - return _internal_group_by_column_specs().size(); -} -inline int HeadOrTailByRequest::group_by_column_specs_size() const { - return _internal_group_by_column_specs_size(); -} -inline void HeadOrTailByRequest::clear_group_by_column_specs() { - ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.group_by_column_specs_.Clear(); -} -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; -} -inline const std::string& HeadOrTailByRequest::group_by_column_specs(int index) const - ABSL_ATTRIBUTE_LIFETIME_BOUND { - // @@protoc_insertion_point(field_get:io.deephaven.proto.backplane.grpc.HeadOrTailByRequest.group_by_column_specs) - return _internal_group_by_column_specs().Get(index); -} -inline std::string* HeadOrTailByRequest::mutable_group_by_column_specs(int index) - ABSL_ATTRIBUTE_LIFETIME_BOUND { - // @@protoc_insertion_point(field_mutable:io.deephaven.proto.backplane.grpc.HeadOrTailByRequest.group_by_column_specs) - return _internal_mutable_group_by_column_specs()->Mutable(index); -} -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) -} -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 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) - return _internal_group_by_column_specs(); -} -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) - ::google::protobuf::internal::TSanWrite(&_impl_); - return _internal_mutable_group_by_column_specs(); -} -inline const ::google::protobuf::RepeatedPtrField& -HeadOrTailByRequest::_internal_group_by_column_specs() const { - ::google::protobuf::internal::TSanRead(&_impl_); - return _impl_.group_by_column_specs_; -} -inline ::google::protobuf::RepeatedPtrField* -HeadOrTailByRequest::_internal_mutable_group_by_column_specs() { - ::google::protobuf::internal::TSanRead(&_impl_); - return &_impl_.group_by_column_specs_; -} - -// ------------------------------------------------------------------- - -// UngroupRequest - -// .io.deephaven.proto.backplane.grpc.Ticket result_id = 1; -inline bool UngroupRequest::has_result_id() const { - bool value = (_impl_._has_bits_[0] & 0x00000001u) != 0; - PROTOBUF_ASSUME(!value || _impl_.result_id_ != nullptr); - return value; -} -inline const ::io::deephaven::proto::backplane::grpc::Ticket& UngroupRequest::_internal_result_id() const { - ::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_); -} -inline const ::io::deephaven::proto::backplane::grpc::Ticket& UngroupRequest::result_id() const ABSL_ATTRIBUTE_LIFETIME_BOUND { - // @@protoc_insertion_point(field_get:io.deephaven.proto.backplane.grpc.UngroupRequest.result_id) - return _internal_result_id(); -} -inline void UngroupRequest::unsafe_arena_set_allocated_result_id(::io::deephaven::proto::backplane::grpc::Ticket* value) { - ::google::protobuf::internal::TSanWrite(&_impl_); - if (GetArena() == nullptr) { - delete reinterpret_cast<::google::protobuf::MessageLite*>(_impl_.result_id_); - } - _impl_.result_id_ = reinterpret_cast<::io::deephaven::proto::backplane::grpc::Ticket*>(value); - if (value != nullptr) { - _impl_._has_bits_[0] |= 0x00000001u; - } else { - _impl_._has_bits_[0] &= ~0x00000001u; - } - // @@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() { - ::google::protobuf::internal::TSanWrite(&_impl_); - - _impl_._has_bits_[0] &= ~0x00000001u; - ::io::deephaven::proto::backplane::grpc::Ticket* released = _impl_.result_id_; - _impl_.result_id_ = nullptr; -#ifdef PROTOBUF_FORCE_COPY_IN_RELEASE - auto* old = reinterpret_cast<::google::protobuf::MessageLite*>(released); - released = ::google::protobuf::internal::DuplicateIfNonNull(released); - if (GetArena() == nullptr) { - delete old; - } -#else // PROTOBUF_FORCE_COPY_IN_RELEASE - if (GetArena() != nullptr) { - released = ::google::protobuf::internal::DuplicateIfNonNull(released); - } -#endif // !PROTOBUF_FORCE_COPY_IN_RELEASE - return released; -} -inline ::io::deephaven::proto::backplane::grpc::Ticket* UngroupRequest::unsafe_arena_release_result_id() { - ::google::protobuf::internal::TSanWrite(&_impl_); - // @@protoc_insertion_point(field_release:io.deephaven.proto.backplane.grpc.UngroupRequest.result_id) - - _impl_._has_bits_[0] &= ~0x00000001u; - ::io::deephaven::proto::backplane::grpc::Ticket* temp = _impl_.result_id_; - _impl_.result_id_ = nullptr; - return temp; -} -inline ::io::deephaven::proto::backplane::grpc::Ticket* UngroupRequest::_internal_mutable_result_id() { - ::google::protobuf::internal::TSanWrite(&_impl_); - if (_impl_.result_id_ == nullptr) { - 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(); - ::google::protobuf::internal::TSanWrite(&_impl_); - if (message_arena == nullptr) { - delete reinterpret_cast<::google::protobuf::MessageLite*>(_impl_.result_id_); - } - - if (value != nullptr) { - ::google::protobuf::Arena* submessage_arena = reinterpret_cast<::google::protobuf::MessageLite*>(value)->GetArena(); - if (message_arena != submessage_arena) { - value = ::google::protobuf::internal::GetOwnedMessage(message_arena, value, submessage_arena); - } - _impl_._has_bits_[0] |= 0x00000001u; - } else { - _impl_._has_bits_[0] &= ~0x00000001u; - } - - _impl_.result_id_ = reinterpret_cast<::io::deephaven::proto::backplane::grpc::Ticket*>(value); - // @@protoc_insertion_point(field_set_allocated:io.deephaven.proto.backplane.grpc.UngroupRequest.result_id) -} - -// .io.deephaven.proto.backplane.grpc.TableReference source_id = 2; -inline bool UngroupRequest::has_source_id() const { - bool value = (_impl_._has_bits_[0] & 0x00000002u) != 0; - PROTOBUF_ASSUME(!value || _impl_.source_id_ != nullptr); - return value; -} -inline void UngroupRequest::clear_source_id() { - ::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 { - ::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_); -} -inline const ::io::deephaven::proto::backplane::grpc::TableReference& UngroupRequest::source_id() const ABSL_ATTRIBUTE_LIFETIME_BOUND { - // @@protoc_insertion_point(field_get:io.deephaven.proto.backplane.grpc.UngroupRequest.source_id) - return _internal_source_id(); -} -inline void UngroupRequest::unsafe_arena_set_allocated_source_id(::io::deephaven::proto::backplane::grpc::TableReference* value) { - ::google::protobuf::internal::TSanWrite(&_impl_); - if (GetArena() == nullptr) { - delete reinterpret_cast<::google::protobuf::MessageLite*>(_impl_.source_id_); - } - _impl_.source_id_ = reinterpret_cast<::io::deephaven::proto::backplane::grpc::TableReference*>(value); - if (value != nullptr) { - _impl_._has_bits_[0] |= 0x00000002u; - } else { - _impl_._has_bits_[0] &= ~0x00000002u; - } - // @@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() { - ::google::protobuf::internal::TSanWrite(&_impl_); - - _impl_._has_bits_[0] &= ~0x00000002u; - ::io::deephaven::proto::backplane::grpc::TableReference* released = _impl_.source_id_; - _impl_.source_id_ = nullptr; -#ifdef PROTOBUF_FORCE_COPY_IN_RELEASE - auto* old = reinterpret_cast<::google::protobuf::MessageLite*>(released); - released = ::google::protobuf::internal::DuplicateIfNonNull(released); - if (GetArena() == nullptr) { - delete old; - } -#else // PROTOBUF_FORCE_COPY_IN_RELEASE - if (GetArena() != nullptr) { - released = ::google::protobuf::internal::DuplicateIfNonNull(released); - } -#endif // !PROTOBUF_FORCE_COPY_IN_RELEASE - return released; -} -inline ::io::deephaven::proto::backplane::grpc::TableReference* UngroupRequest::unsafe_arena_release_source_id() { - ::google::protobuf::internal::TSanWrite(&_impl_); - // @@protoc_insertion_point(field_release:io.deephaven.proto.backplane.grpc.UngroupRequest.source_id) - - _impl_._has_bits_[0] &= ~0x00000002u; - ::io::deephaven::proto::backplane::grpc::TableReference* temp = _impl_.source_id_; - _impl_.source_id_ = nullptr; - return temp; -} -inline ::io::deephaven::proto::backplane::grpc::TableReference* UngroupRequest::_internal_mutable_source_id() { - ::google::protobuf::internal::TSanWrite(&_impl_); - if (_impl_.source_id_ == nullptr) { - 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(); - ::google::protobuf::internal::TSanWrite(&_impl_); - if (message_arena == nullptr) { - delete (_impl_.source_id_); - } - - if (value != nullptr) { - ::google::protobuf::Arena* submessage_arena = (value)->GetArena(); - if (message_arena != submessage_arena) { - value = ::google::protobuf::internal::GetOwnedMessage(message_arena, value, submessage_arena); - } - _impl_._has_bits_[0] |= 0x00000002u; - } else { - _impl_._has_bits_[0] &= ~0x00000002u; - } - - _impl_.source_id_ = reinterpret_cast<::io::deephaven::proto::backplane::grpc::TableReference*>(value); - // @@protoc_insertion_point(field_set_allocated:io.deephaven.proto.backplane.grpc.UngroupRequest.source_id) -} - -// bool null_fill = 3; -inline void UngroupRequest::clear_null_fill() { - ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.null_fill_ = false; -} -inline bool UngroupRequest::null_fill() const { - // @@protoc_insertion_point(field_get:io.deephaven.proto.backplane.grpc.UngroupRequest.null_fill) - return _internal_null_fill(); -} -inline void UngroupRequest::set_null_fill(bool value) { - _internal_set_null_fill(value); - // @@protoc_insertion_point(field_set:io.deephaven.proto.backplane.grpc.UngroupRequest.null_fill) -} -inline bool UngroupRequest::_internal_null_fill() const { - ::google::protobuf::internal::TSanRead(&_impl_); - return _impl_.null_fill_; -} -inline void UngroupRequest::_internal_set_null_fill(bool value) { - ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.null_fill_ = value; -} - -// repeated string columns_to_ungroup = 4; -inline int UngroupRequest::_internal_columns_to_ungroup_size() const { - return _internal_columns_to_ungroup().size(); -} -inline int UngroupRequest::columns_to_ungroup_size() const { - return _internal_columns_to_ungroup_size(); -} -inline void UngroupRequest::clear_columns_to_ungroup() { - ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.columns_to_ungroup_.Clear(); -} -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; -} -inline const std::string& UngroupRequest::columns_to_ungroup(int index) const - ABSL_ATTRIBUTE_LIFETIME_BOUND { - // @@protoc_insertion_point(field_get:io.deephaven.proto.backplane.grpc.UngroupRequest.columns_to_ungroup) - return _internal_columns_to_ungroup().Get(index); -} -inline std::string* UngroupRequest::mutable_columns_to_ungroup(int index) - ABSL_ATTRIBUTE_LIFETIME_BOUND { - // @@protoc_insertion_point(field_mutable:io.deephaven.proto.backplane.grpc.UngroupRequest.columns_to_ungroup) - return _internal_mutable_columns_to_ungroup()->Mutable(index); -} -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) -} -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 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) - return _internal_columns_to_ungroup(); -} -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) - ::google::protobuf::internal::TSanWrite(&_impl_); - return _internal_mutable_columns_to_ungroup(); -} -inline const ::google::protobuf::RepeatedPtrField& -UngroupRequest::_internal_columns_to_ungroup() const { - ::google::protobuf::internal::TSanRead(&_impl_); - return _impl_.columns_to_ungroup_; -} -inline ::google::protobuf::RepeatedPtrField* -UngroupRequest::_internal_mutable_columns_to_ungroup() { - ::google::protobuf::internal::TSanRead(&_impl_); - return &_impl_.columns_to_ungroup_; -} - -// ------------------------------------------------------------------- - -// MergeTablesRequest - -// .io.deephaven.proto.backplane.grpc.Ticket result_id = 1; -inline bool MergeTablesRequest::has_result_id() const { - bool value = (_impl_._has_bits_[0] & 0x00000001u) != 0; - PROTOBUF_ASSUME(!value || _impl_.result_id_ != nullptr); - return value; -} -inline const ::io::deephaven::proto::backplane::grpc::Ticket& MergeTablesRequest::_internal_result_id() const { - ::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_); -} -inline const ::io::deephaven::proto::backplane::grpc::Ticket& MergeTablesRequest::result_id() const ABSL_ATTRIBUTE_LIFETIME_BOUND { - // @@protoc_insertion_point(field_get:io.deephaven.proto.backplane.grpc.MergeTablesRequest.result_id) - return _internal_result_id(); -} -inline void MergeTablesRequest::unsafe_arena_set_allocated_result_id(::io::deephaven::proto::backplane::grpc::Ticket* value) { - ::google::protobuf::internal::TSanWrite(&_impl_); - if (GetArena() == nullptr) { - delete reinterpret_cast<::google::protobuf::MessageLite*>(_impl_.result_id_); - } - _impl_.result_id_ = reinterpret_cast<::io::deephaven::proto::backplane::grpc::Ticket*>(value); - if (value != nullptr) { - _impl_._has_bits_[0] |= 0x00000001u; - } else { - _impl_._has_bits_[0] &= ~0x00000001u; - } - // @@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() { - ::google::protobuf::internal::TSanWrite(&_impl_); - - _impl_._has_bits_[0] &= ~0x00000001u; - ::io::deephaven::proto::backplane::grpc::Ticket* released = _impl_.result_id_; - _impl_.result_id_ = nullptr; -#ifdef PROTOBUF_FORCE_COPY_IN_RELEASE - auto* old = reinterpret_cast<::google::protobuf::MessageLite*>(released); - released = ::google::protobuf::internal::DuplicateIfNonNull(released); - if (GetArena() == nullptr) { - delete old; - } -#else // PROTOBUF_FORCE_COPY_IN_RELEASE - if (GetArena() != nullptr) { - released = ::google::protobuf::internal::DuplicateIfNonNull(released); - } -#endif // !PROTOBUF_FORCE_COPY_IN_RELEASE - return released; -} -inline ::io::deephaven::proto::backplane::grpc::Ticket* MergeTablesRequest::unsafe_arena_release_result_id() { - ::google::protobuf::internal::TSanWrite(&_impl_); - // @@protoc_insertion_point(field_release:io.deephaven.proto.backplane.grpc.MergeTablesRequest.result_id) - - _impl_._has_bits_[0] &= ~0x00000001u; - ::io::deephaven::proto::backplane::grpc::Ticket* temp = _impl_.result_id_; - _impl_.result_id_ = nullptr; - return temp; -} -inline ::io::deephaven::proto::backplane::grpc::Ticket* MergeTablesRequest::_internal_mutable_result_id() { - ::google::protobuf::internal::TSanWrite(&_impl_); - if (_impl_.result_id_ == nullptr) { - 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(); - ::google::protobuf::internal::TSanWrite(&_impl_); - if (message_arena == nullptr) { - delete reinterpret_cast<::google::protobuf::MessageLite*>(_impl_.result_id_); - } - - if (value != nullptr) { - ::google::protobuf::Arena* submessage_arena = reinterpret_cast<::google::protobuf::MessageLite*>(value)->GetArena(); - if (message_arena != submessage_arena) { - value = ::google::protobuf::internal::GetOwnedMessage(message_arena, value, submessage_arena); - } - _impl_._has_bits_[0] |= 0x00000001u; - } else { - _impl_._has_bits_[0] &= ~0x00000001u; - } - - _impl_.result_id_ = reinterpret_cast<::io::deephaven::proto::backplane::grpc::Ticket*>(value); - // @@protoc_insertion_point(field_set_allocated:io.deephaven.proto.backplane.grpc.MergeTablesRequest.result_id) -} - -// repeated .io.deephaven.proto.backplane.grpc.TableReference source_ids = 2; -inline int MergeTablesRequest::_internal_source_ids_size() const { - return _internal_source_ids().size(); -} -inline int MergeTablesRequest::source_ids_size() const { - return _internal_source_ids_size(); -} -inline void MergeTablesRequest::clear_source_ids() { - ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.source_ids_.Clear(); -} -inline ::io::deephaven::proto::backplane::grpc::TableReference* MergeTablesRequest::mutable_source_ids(int index) - ABSL_ATTRIBUTE_LIFETIME_BOUND { - // @@protoc_insertion_point(field_mutable:io.deephaven.proto.backplane.grpc.MergeTablesRequest.source_ids) - return _internal_mutable_source_ids()->Mutable(index); -} -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) - ::google::protobuf::internal::TSanWrite(&_impl_); - return _internal_mutable_source_ids(); -} -inline const ::io::deephaven::proto::backplane::grpc::TableReference& MergeTablesRequest::source_ids(int index) const - ABSL_ATTRIBUTE_LIFETIME_BOUND { - // @@protoc_insertion_point(field_get:io.deephaven.proto.backplane.grpc.MergeTablesRequest.source_ids) - return _internal_source_ids().Get(index); -} -inline ::io::deephaven::proto::backplane::grpc::TableReference* MergeTablesRequest::add_source_ids() ABSL_ATTRIBUTE_LIFETIME_BOUND { - ::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; -} -inline const ::google::protobuf::RepeatedPtrField<::io::deephaven::proto::backplane::grpc::TableReference>& MergeTablesRequest::source_ids() const - ABSL_ATTRIBUTE_LIFETIME_BOUND { - // @@protoc_insertion_point(field_list:io.deephaven.proto.backplane.grpc.MergeTablesRequest.source_ids) - return _internal_source_ids(); -} -inline const ::google::protobuf::RepeatedPtrField<::io::deephaven::proto::backplane::grpc::TableReference>& -MergeTablesRequest::_internal_source_ids() const { - ::google::protobuf::internal::TSanRead(&_impl_); - return _impl_.source_ids_; -} -inline ::google::protobuf::RepeatedPtrField<::io::deephaven::proto::backplane::grpc::TableReference>* -MergeTablesRequest::_internal_mutable_source_ids() { - ::google::protobuf::internal::TSanRead(&_impl_); - return &_impl_.source_ids_; -} - -// string key_column = 3; -inline void MergeTablesRequest::clear_key_column() { - ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.key_column_.ClearToEmpty(); -} -inline const std::string& MergeTablesRequest::key_column() const - ABSL_ATTRIBUTE_LIFETIME_BOUND { - // @@protoc_insertion_point(field_get:io.deephaven.proto.backplane.grpc.MergeTablesRequest.key_column) - return _internal_key_column(); -} -template -inline PROTOBUF_ALWAYS_INLINE void MergeTablesRequest::set_key_column(Arg_&& arg, - Args_... args) { - ::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) -} -inline std::string* MergeTablesRequest::mutable_key_column() ABSL_ATTRIBUTE_LIFETIME_BOUND { - std::string* _s = _internal_mutable_key_column(); - // @@protoc_insertion_point(field_mutable:io.deephaven.proto.backplane.grpc.MergeTablesRequest.key_column) - return _s; -} -inline const std::string& MergeTablesRequest::_internal_key_column() const { - ::google::protobuf::internal::TSanRead(&_impl_); - return _impl_.key_column_.Get(); -} -inline void MergeTablesRequest::_internal_set_key_column(const std::string& value) { - ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.key_column_.Set(value, GetArena()); -} -inline std::string* MergeTablesRequest::_internal_mutable_key_column() { - ::google::protobuf::internal::TSanWrite(&_impl_); - return _impl_.key_column_.Mutable( GetArena()); -} -inline std::string* MergeTablesRequest::release_key_column() { - ::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) { - ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.key_column_.SetAllocated(value, GetArena()); - #ifdef PROTOBUF_FORCE_COPY_DEFAULT_STRING - if (_impl_.key_column_.IsDefault()) { - _impl_.key_column_.Set("", GetArena()); - } - #endif // PROTOBUF_FORCE_COPY_DEFAULT_STRING - // @@protoc_insertion_point(field_set_allocated:io.deephaven.proto.backplane.grpc.MergeTablesRequest.key_column) -} - -// ------------------------------------------------------------------- - -// SnapshotTableRequest - -// .io.deephaven.proto.backplane.grpc.Ticket result_id = 1; -inline bool SnapshotTableRequest::has_result_id() const { - bool value = (_impl_._has_bits_[0] & 0x00000001u) != 0; - PROTOBUF_ASSUME(!value || _impl_.result_id_ != nullptr); - return value; -} -inline const ::io::deephaven::proto::backplane::grpc::Ticket& SnapshotTableRequest::_internal_result_id() const { - ::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_); -} -inline const ::io::deephaven::proto::backplane::grpc::Ticket& SnapshotTableRequest::result_id() const ABSL_ATTRIBUTE_LIFETIME_BOUND { - // @@protoc_insertion_point(field_get:io.deephaven.proto.backplane.grpc.SnapshotTableRequest.result_id) - return _internal_result_id(); -} -inline void SnapshotTableRequest::unsafe_arena_set_allocated_result_id(::io::deephaven::proto::backplane::grpc::Ticket* value) { - ::google::protobuf::internal::TSanWrite(&_impl_); - if (GetArena() == nullptr) { - delete reinterpret_cast<::google::protobuf::MessageLite*>(_impl_.result_id_); - } - _impl_.result_id_ = reinterpret_cast<::io::deephaven::proto::backplane::grpc::Ticket*>(value); - if (value != nullptr) { - _impl_._has_bits_[0] |= 0x00000001u; - } else { - _impl_._has_bits_[0] &= ~0x00000001u; - } - // @@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() { - ::google::protobuf::internal::TSanWrite(&_impl_); - - _impl_._has_bits_[0] &= ~0x00000001u; - ::io::deephaven::proto::backplane::grpc::Ticket* released = _impl_.result_id_; - _impl_.result_id_ = nullptr; -#ifdef PROTOBUF_FORCE_COPY_IN_RELEASE - auto* old = reinterpret_cast<::google::protobuf::MessageLite*>(released); - released = ::google::protobuf::internal::DuplicateIfNonNull(released); - if (GetArena() == nullptr) { - delete old; - } -#else // PROTOBUF_FORCE_COPY_IN_RELEASE - if (GetArena() != nullptr) { - released = ::google::protobuf::internal::DuplicateIfNonNull(released); - } -#endif // !PROTOBUF_FORCE_COPY_IN_RELEASE - return released; -} -inline ::io::deephaven::proto::backplane::grpc::Ticket* SnapshotTableRequest::unsafe_arena_release_result_id() { - ::google::protobuf::internal::TSanWrite(&_impl_); - // @@protoc_insertion_point(field_release:io.deephaven.proto.backplane.grpc.SnapshotTableRequest.result_id) - - _impl_._has_bits_[0] &= ~0x00000001u; - ::io::deephaven::proto::backplane::grpc::Ticket* temp = _impl_.result_id_; - _impl_.result_id_ = nullptr; - return temp; -} -inline ::io::deephaven::proto::backplane::grpc::Ticket* SnapshotTableRequest::_internal_mutable_result_id() { - ::google::protobuf::internal::TSanWrite(&_impl_); - if (_impl_.result_id_ == nullptr) { - 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(); - ::google::protobuf::internal::TSanWrite(&_impl_); - if (message_arena == nullptr) { - delete reinterpret_cast<::google::protobuf::MessageLite*>(_impl_.result_id_); - } - - if (value != nullptr) { - ::google::protobuf::Arena* submessage_arena = reinterpret_cast<::google::protobuf::MessageLite*>(value)->GetArena(); - if (message_arena != submessage_arena) { - value = ::google::protobuf::internal::GetOwnedMessage(message_arena, value, submessage_arena); - } - _impl_._has_bits_[0] |= 0x00000001u; - } else { - _impl_._has_bits_[0] &= ~0x00000001u; - } - - _impl_.result_id_ = reinterpret_cast<::io::deephaven::proto::backplane::grpc::Ticket*>(value); - // @@protoc_insertion_point(field_set_allocated:io.deephaven.proto.backplane.grpc.SnapshotTableRequest.result_id) -} - -// .io.deephaven.proto.backplane.grpc.TableReference source_id = 2; -inline bool SnapshotTableRequest::has_source_id() const { - bool value = (_impl_._has_bits_[0] & 0x00000002u) != 0; - PROTOBUF_ASSUME(!value || _impl_.source_id_ != nullptr); - return value; -} -inline void SnapshotTableRequest::clear_source_id() { - ::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 { - ::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_); -} -inline const ::io::deephaven::proto::backplane::grpc::TableReference& SnapshotTableRequest::source_id() const ABSL_ATTRIBUTE_LIFETIME_BOUND { - // @@protoc_insertion_point(field_get:io.deephaven.proto.backplane.grpc.SnapshotTableRequest.source_id) - return _internal_source_id(); -} -inline void SnapshotTableRequest::unsafe_arena_set_allocated_source_id(::io::deephaven::proto::backplane::grpc::TableReference* value) { - ::google::protobuf::internal::TSanWrite(&_impl_); - if (GetArena() == nullptr) { - delete reinterpret_cast<::google::protobuf::MessageLite*>(_impl_.source_id_); - } - _impl_.source_id_ = reinterpret_cast<::io::deephaven::proto::backplane::grpc::TableReference*>(value); - if (value != nullptr) { - _impl_._has_bits_[0] |= 0x00000002u; - } else { - _impl_._has_bits_[0] &= ~0x00000002u; - } - // @@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() { - ::google::protobuf::internal::TSanWrite(&_impl_); - - _impl_._has_bits_[0] &= ~0x00000002u; - ::io::deephaven::proto::backplane::grpc::TableReference* released = _impl_.source_id_; - _impl_.source_id_ = nullptr; -#ifdef PROTOBUF_FORCE_COPY_IN_RELEASE - auto* old = reinterpret_cast<::google::protobuf::MessageLite*>(released); - released = ::google::protobuf::internal::DuplicateIfNonNull(released); - if (GetArena() == nullptr) { - delete old; - } -#else // PROTOBUF_FORCE_COPY_IN_RELEASE - if (GetArena() != nullptr) { - released = ::google::protobuf::internal::DuplicateIfNonNull(released); - } -#endif // !PROTOBUF_FORCE_COPY_IN_RELEASE - return released; -} -inline ::io::deephaven::proto::backplane::grpc::TableReference* SnapshotTableRequest::unsafe_arena_release_source_id() { - ::google::protobuf::internal::TSanWrite(&_impl_); - // @@protoc_insertion_point(field_release:io.deephaven.proto.backplane.grpc.SnapshotTableRequest.source_id) - - _impl_._has_bits_[0] &= ~0x00000002u; - ::io::deephaven::proto::backplane::grpc::TableReference* temp = _impl_.source_id_; - _impl_.source_id_ = nullptr; - return temp; -} -inline ::io::deephaven::proto::backplane::grpc::TableReference* SnapshotTableRequest::_internal_mutable_source_id() { - ::google::protobuf::internal::TSanWrite(&_impl_); - if (_impl_.source_id_ == nullptr) { - 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(); - ::google::protobuf::internal::TSanWrite(&_impl_); - if (message_arena == nullptr) { - delete (_impl_.source_id_); - } - - if (value != nullptr) { - ::google::protobuf::Arena* submessage_arena = (value)->GetArena(); - if (message_arena != submessage_arena) { - value = ::google::protobuf::internal::GetOwnedMessage(message_arena, value, submessage_arena); - } - _impl_._has_bits_[0] |= 0x00000002u; - } else { - _impl_._has_bits_[0] &= ~0x00000002u; - } - - _impl_.source_id_ = reinterpret_cast<::io::deephaven::proto::backplane::grpc::TableReference*>(value); - // @@protoc_insertion_point(field_set_allocated:io.deephaven.proto.backplane.grpc.SnapshotTableRequest.source_id) -} - -// ------------------------------------------------------------------- - -// SnapshotWhenTableRequest - -// .io.deephaven.proto.backplane.grpc.Ticket result_id = 1; -inline bool SnapshotWhenTableRequest::has_result_id() const { - bool value = (_impl_._has_bits_[0] & 0x00000001u) != 0; - PROTOBUF_ASSUME(!value || _impl_.result_id_ != nullptr); - return value; -} -inline const ::io::deephaven::proto::backplane::grpc::Ticket& SnapshotWhenTableRequest::_internal_result_id() const { - ::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_); -} -inline const ::io::deephaven::proto::backplane::grpc::Ticket& SnapshotWhenTableRequest::result_id() const ABSL_ATTRIBUTE_LIFETIME_BOUND { - // @@protoc_insertion_point(field_get:io.deephaven.proto.backplane.grpc.SnapshotWhenTableRequest.result_id) - return _internal_result_id(); -} -inline void SnapshotWhenTableRequest::unsafe_arena_set_allocated_result_id(::io::deephaven::proto::backplane::grpc::Ticket* value) { - ::google::protobuf::internal::TSanWrite(&_impl_); - if (GetArena() == nullptr) { - delete reinterpret_cast<::google::protobuf::MessageLite*>(_impl_.result_id_); - } - _impl_.result_id_ = reinterpret_cast<::io::deephaven::proto::backplane::grpc::Ticket*>(value); - if (value != nullptr) { - _impl_._has_bits_[0] |= 0x00000001u; - } else { - _impl_._has_bits_[0] &= ~0x00000001u; - } - // @@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() { - ::google::protobuf::internal::TSanWrite(&_impl_); - - _impl_._has_bits_[0] &= ~0x00000001u; - ::io::deephaven::proto::backplane::grpc::Ticket* released = _impl_.result_id_; - _impl_.result_id_ = nullptr; -#ifdef PROTOBUF_FORCE_COPY_IN_RELEASE - auto* old = reinterpret_cast<::google::protobuf::MessageLite*>(released); - released = ::google::protobuf::internal::DuplicateIfNonNull(released); - if (GetArena() == nullptr) { - delete old; - } -#else // PROTOBUF_FORCE_COPY_IN_RELEASE - if (GetArena() != nullptr) { - released = ::google::protobuf::internal::DuplicateIfNonNull(released); - } -#endif // !PROTOBUF_FORCE_COPY_IN_RELEASE - return released; -} -inline ::io::deephaven::proto::backplane::grpc::Ticket* SnapshotWhenTableRequest::unsafe_arena_release_result_id() { - ::google::protobuf::internal::TSanWrite(&_impl_); - // @@protoc_insertion_point(field_release:io.deephaven.proto.backplane.grpc.SnapshotWhenTableRequest.result_id) - - _impl_._has_bits_[0] &= ~0x00000001u; - ::io::deephaven::proto::backplane::grpc::Ticket* temp = _impl_.result_id_; - _impl_.result_id_ = nullptr; - return temp; -} -inline ::io::deephaven::proto::backplane::grpc::Ticket* SnapshotWhenTableRequest::_internal_mutable_result_id() { - ::google::protobuf::internal::TSanWrite(&_impl_); - if (_impl_.result_id_ == nullptr) { - 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(); - ::google::protobuf::internal::TSanWrite(&_impl_); - if (message_arena == nullptr) { - delete reinterpret_cast<::google::protobuf::MessageLite*>(_impl_.result_id_); - } - - if (value != nullptr) { - ::google::protobuf::Arena* submessage_arena = reinterpret_cast<::google::protobuf::MessageLite*>(value)->GetArena(); - if (message_arena != submessage_arena) { - value = ::google::protobuf::internal::GetOwnedMessage(message_arena, value, submessage_arena); - } - _impl_._has_bits_[0] |= 0x00000001u; - } else { - _impl_._has_bits_[0] &= ~0x00000001u; - } - - _impl_.result_id_ = reinterpret_cast<::io::deephaven::proto::backplane::grpc::Ticket*>(value); - // @@protoc_insertion_point(field_set_allocated:io.deephaven.proto.backplane.grpc.SnapshotWhenTableRequest.result_id) -} - -// .io.deephaven.proto.backplane.grpc.TableReference base_id = 2; -inline bool SnapshotWhenTableRequest::has_base_id() const { - bool value = (_impl_._has_bits_[0] & 0x00000002u) != 0; - PROTOBUF_ASSUME(!value || _impl_.base_id_ != nullptr); - return value; -} -inline void SnapshotWhenTableRequest::clear_base_id() { - ::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 { - ::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_); -} -inline const ::io::deephaven::proto::backplane::grpc::TableReference& SnapshotWhenTableRequest::base_id() const ABSL_ATTRIBUTE_LIFETIME_BOUND { - // @@protoc_insertion_point(field_get:io.deephaven.proto.backplane.grpc.SnapshotWhenTableRequest.base_id) - return _internal_base_id(); -} -inline void SnapshotWhenTableRequest::unsafe_arena_set_allocated_base_id(::io::deephaven::proto::backplane::grpc::TableReference* value) { - ::google::protobuf::internal::TSanWrite(&_impl_); - if (GetArena() == nullptr) { - delete reinterpret_cast<::google::protobuf::MessageLite*>(_impl_.base_id_); - } - _impl_.base_id_ = reinterpret_cast<::io::deephaven::proto::backplane::grpc::TableReference*>(value); - if (value != nullptr) { - _impl_._has_bits_[0] |= 0x00000002u; - } else { - _impl_._has_bits_[0] &= ~0x00000002u; - } - // @@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() { - ::google::protobuf::internal::TSanWrite(&_impl_); - - _impl_._has_bits_[0] &= ~0x00000002u; - ::io::deephaven::proto::backplane::grpc::TableReference* released = _impl_.base_id_; - _impl_.base_id_ = nullptr; -#ifdef PROTOBUF_FORCE_COPY_IN_RELEASE - auto* old = reinterpret_cast<::google::protobuf::MessageLite*>(released); - released = ::google::protobuf::internal::DuplicateIfNonNull(released); - if (GetArena() == nullptr) { - delete old; - } -#else // PROTOBUF_FORCE_COPY_IN_RELEASE - if (GetArena() != nullptr) { - released = ::google::protobuf::internal::DuplicateIfNonNull(released); - } -#endif // !PROTOBUF_FORCE_COPY_IN_RELEASE - return released; -} -inline ::io::deephaven::proto::backplane::grpc::TableReference* SnapshotWhenTableRequest::unsafe_arena_release_base_id() { - ::google::protobuf::internal::TSanWrite(&_impl_); - // @@protoc_insertion_point(field_release:io.deephaven.proto.backplane.grpc.SnapshotWhenTableRequest.base_id) - - _impl_._has_bits_[0] &= ~0x00000002u; - ::io::deephaven::proto::backplane::grpc::TableReference* temp = _impl_.base_id_; - _impl_.base_id_ = nullptr; - return temp; -} -inline ::io::deephaven::proto::backplane::grpc::TableReference* SnapshotWhenTableRequest::_internal_mutable_base_id() { - ::google::protobuf::internal::TSanWrite(&_impl_); - if (_impl_.base_id_ == nullptr) { - 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(); - ::google::protobuf::internal::TSanWrite(&_impl_); - if (message_arena == nullptr) { - delete (_impl_.base_id_); - } - - if (value != nullptr) { - ::google::protobuf::Arena* submessage_arena = (value)->GetArena(); - if (message_arena != submessage_arena) { - value = ::google::protobuf::internal::GetOwnedMessage(message_arena, value, submessage_arena); - } - _impl_._has_bits_[0] |= 0x00000002u; - } else { - _impl_._has_bits_[0] &= ~0x00000002u; - } - - _impl_.base_id_ = reinterpret_cast<::io::deephaven::proto::backplane::grpc::TableReference*>(value); - // @@protoc_insertion_point(field_set_allocated:io.deephaven.proto.backplane.grpc.SnapshotWhenTableRequest.base_id) -} - -// .io.deephaven.proto.backplane.grpc.TableReference trigger_id = 3; -inline bool SnapshotWhenTableRequest::has_trigger_id() const { - bool value = (_impl_._has_bits_[0] & 0x00000004u) != 0; - PROTOBUF_ASSUME(!value || _impl_.trigger_id_ != nullptr); - return value; -} -inline void SnapshotWhenTableRequest::clear_trigger_id() { - ::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 { - ::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_); -} -inline const ::io::deephaven::proto::backplane::grpc::TableReference& SnapshotWhenTableRequest::trigger_id() const ABSL_ATTRIBUTE_LIFETIME_BOUND { - // @@protoc_insertion_point(field_get:io.deephaven.proto.backplane.grpc.SnapshotWhenTableRequest.trigger_id) - return _internal_trigger_id(); -} -inline void SnapshotWhenTableRequest::unsafe_arena_set_allocated_trigger_id(::io::deephaven::proto::backplane::grpc::TableReference* value) { - ::google::protobuf::internal::TSanWrite(&_impl_); - if (GetArena() == nullptr) { - delete reinterpret_cast<::google::protobuf::MessageLite*>(_impl_.trigger_id_); - } - _impl_.trigger_id_ = reinterpret_cast<::io::deephaven::proto::backplane::grpc::TableReference*>(value); - if (value != nullptr) { - _impl_._has_bits_[0] |= 0x00000004u; - } else { - _impl_._has_bits_[0] &= ~0x00000004u; - } - // @@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() { - ::google::protobuf::internal::TSanWrite(&_impl_); - - _impl_._has_bits_[0] &= ~0x00000004u; - ::io::deephaven::proto::backplane::grpc::TableReference* released = _impl_.trigger_id_; - _impl_.trigger_id_ = nullptr; -#ifdef PROTOBUF_FORCE_COPY_IN_RELEASE - auto* old = reinterpret_cast<::google::protobuf::MessageLite*>(released); - released = ::google::protobuf::internal::DuplicateIfNonNull(released); - if (GetArena() == nullptr) { - delete old; - } -#else // PROTOBUF_FORCE_COPY_IN_RELEASE - if (GetArena() != nullptr) { - released = ::google::protobuf::internal::DuplicateIfNonNull(released); - } -#endif // !PROTOBUF_FORCE_COPY_IN_RELEASE - return released; -} -inline ::io::deephaven::proto::backplane::grpc::TableReference* SnapshotWhenTableRequest::unsafe_arena_release_trigger_id() { - ::google::protobuf::internal::TSanWrite(&_impl_); - // @@protoc_insertion_point(field_release:io.deephaven.proto.backplane.grpc.SnapshotWhenTableRequest.trigger_id) - - _impl_._has_bits_[0] &= ~0x00000004u; - ::io::deephaven::proto::backplane::grpc::TableReference* temp = _impl_.trigger_id_; - _impl_.trigger_id_ = nullptr; - return temp; -} -inline ::io::deephaven::proto::backplane::grpc::TableReference* SnapshotWhenTableRequest::_internal_mutable_trigger_id() { - ::google::protobuf::internal::TSanWrite(&_impl_); - if (_impl_.trigger_id_ == nullptr) { - 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(); - ::google::protobuf::internal::TSanWrite(&_impl_); - if (message_arena == nullptr) { - delete (_impl_.trigger_id_); - } - - if (value != nullptr) { - ::google::protobuf::Arena* submessage_arena = (value)->GetArena(); - if (message_arena != submessage_arena) { - value = ::google::protobuf::internal::GetOwnedMessage(message_arena, value, submessage_arena); - } - _impl_._has_bits_[0] |= 0x00000004u; - } else { - _impl_._has_bits_[0] &= ~0x00000004u; - } - - _impl_.trigger_id_ = reinterpret_cast<::io::deephaven::proto::backplane::grpc::TableReference*>(value); - // @@protoc_insertion_point(field_set_allocated:io.deephaven.proto.backplane.grpc.SnapshotWhenTableRequest.trigger_id) -} - -// bool initial = 4; -inline void SnapshotWhenTableRequest::clear_initial() { - ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.initial_ = false; -} -inline bool SnapshotWhenTableRequest::initial() const { - // @@protoc_insertion_point(field_get:io.deephaven.proto.backplane.grpc.SnapshotWhenTableRequest.initial) - return _internal_initial(); -} -inline void SnapshotWhenTableRequest::set_initial(bool value) { - _internal_set_initial(value); - // @@protoc_insertion_point(field_set:io.deephaven.proto.backplane.grpc.SnapshotWhenTableRequest.initial) -} -inline bool SnapshotWhenTableRequest::_internal_initial() const { - ::google::protobuf::internal::TSanRead(&_impl_); - return _impl_.initial_; -} -inline void SnapshotWhenTableRequest::_internal_set_initial(bool value) { - ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.initial_ = value; -} - -// bool incremental = 5; -inline void SnapshotWhenTableRequest::clear_incremental() { - ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.incremental_ = false; -} -inline bool SnapshotWhenTableRequest::incremental() const { - // @@protoc_insertion_point(field_get:io.deephaven.proto.backplane.grpc.SnapshotWhenTableRequest.incremental) - return _internal_incremental(); -} -inline void SnapshotWhenTableRequest::set_incremental(bool value) { - _internal_set_incremental(value); - // @@protoc_insertion_point(field_set:io.deephaven.proto.backplane.grpc.SnapshotWhenTableRequest.incremental) -} -inline bool SnapshotWhenTableRequest::_internal_incremental() const { - ::google::protobuf::internal::TSanRead(&_impl_); - return _impl_.incremental_; -} -inline void SnapshotWhenTableRequest::_internal_set_incremental(bool value) { - ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.incremental_ = value; -} - -// bool history = 6; -inline void SnapshotWhenTableRequest::clear_history() { - ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.history_ = false; -} -inline bool SnapshotWhenTableRequest::history() const { - // @@protoc_insertion_point(field_get:io.deephaven.proto.backplane.grpc.SnapshotWhenTableRequest.history) - return _internal_history(); -} -inline void SnapshotWhenTableRequest::set_history(bool value) { - _internal_set_history(value); - // @@protoc_insertion_point(field_set:io.deephaven.proto.backplane.grpc.SnapshotWhenTableRequest.history) -} -inline bool SnapshotWhenTableRequest::_internal_history() const { - ::google::protobuf::internal::TSanRead(&_impl_); - return _impl_.history_; -} -inline void SnapshotWhenTableRequest::_internal_set_history(bool value) { - ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.history_ = value; -} - -// repeated string stamp_columns = 7; -inline int SnapshotWhenTableRequest::_internal_stamp_columns_size() const { - return _internal_stamp_columns().size(); -} -inline int SnapshotWhenTableRequest::stamp_columns_size() const { - return _internal_stamp_columns_size(); -} -inline void SnapshotWhenTableRequest::clear_stamp_columns() { - ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.stamp_columns_.Clear(); -} -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; -} -inline const std::string& SnapshotWhenTableRequest::stamp_columns(int index) const - ABSL_ATTRIBUTE_LIFETIME_BOUND { - // @@protoc_insertion_point(field_get:io.deephaven.proto.backplane.grpc.SnapshotWhenTableRequest.stamp_columns) - return _internal_stamp_columns().Get(index); -} -inline std::string* SnapshotWhenTableRequest::mutable_stamp_columns(int index) - ABSL_ATTRIBUTE_LIFETIME_BOUND { - // @@protoc_insertion_point(field_mutable:io.deephaven.proto.backplane.grpc.SnapshotWhenTableRequest.stamp_columns) - return _internal_mutable_stamp_columns()->Mutable(index); -} -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) -} -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 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) - return _internal_stamp_columns(); -} -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) - ::google::protobuf::internal::TSanWrite(&_impl_); - return _internal_mutable_stamp_columns(); -} -inline const ::google::protobuf::RepeatedPtrField& -SnapshotWhenTableRequest::_internal_stamp_columns() const { - ::google::protobuf::internal::TSanRead(&_impl_); - return _impl_.stamp_columns_; -} -inline ::google::protobuf::RepeatedPtrField* -SnapshotWhenTableRequest::_internal_mutable_stamp_columns() { - ::google::protobuf::internal::TSanRead(&_impl_); - return &_impl_.stamp_columns_; -} - -// ------------------------------------------------------------------- - -// CrossJoinTablesRequest - -// .io.deephaven.proto.backplane.grpc.Ticket result_id = 1; -inline bool CrossJoinTablesRequest::has_result_id() const { - bool value = (_impl_._has_bits_[0] & 0x00000001u) != 0; - PROTOBUF_ASSUME(!value || _impl_.result_id_ != nullptr); - return value; -} -inline const ::io::deephaven::proto::backplane::grpc::Ticket& CrossJoinTablesRequest::_internal_result_id() const { - ::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_); -} -inline const ::io::deephaven::proto::backplane::grpc::Ticket& CrossJoinTablesRequest::result_id() const ABSL_ATTRIBUTE_LIFETIME_BOUND { - // @@protoc_insertion_point(field_get:io.deephaven.proto.backplane.grpc.CrossJoinTablesRequest.result_id) - return _internal_result_id(); -} -inline void CrossJoinTablesRequest::unsafe_arena_set_allocated_result_id(::io::deephaven::proto::backplane::grpc::Ticket* value) { - ::google::protobuf::internal::TSanWrite(&_impl_); - if (GetArena() == nullptr) { - delete reinterpret_cast<::google::protobuf::MessageLite*>(_impl_.result_id_); - } - _impl_.result_id_ = reinterpret_cast<::io::deephaven::proto::backplane::grpc::Ticket*>(value); - if (value != nullptr) { - _impl_._has_bits_[0] |= 0x00000001u; - } else { - _impl_._has_bits_[0] &= ~0x00000001u; - } - // @@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() { - ::google::protobuf::internal::TSanWrite(&_impl_); - - _impl_._has_bits_[0] &= ~0x00000001u; - ::io::deephaven::proto::backplane::grpc::Ticket* released = _impl_.result_id_; - _impl_.result_id_ = nullptr; -#ifdef PROTOBUF_FORCE_COPY_IN_RELEASE - auto* old = reinterpret_cast<::google::protobuf::MessageLite*>(released); - released = ::google::protobuf::internal::DuplicateIfNonNull(released); - if (GetArena() == nullptr) { - delete old; - } -#else // PROTOBUF_FORCE_COPY_IN_RELEASE - if (GetArena() != nullptr) { - released = ::google::protobuf::internal::DuplicateIfNonNull(released); - } -#endif // !PROTOBUF_FORCE_COPY_IN_RELEASE - return released; -} -inline ::io::deephaven::proto::backplane::grpc::Ticket* CrossJoinTablesRequest::unsafe_arena_release_result_id() { - ::google::protobuf::internal::TSanWrite(&_impl_); - // @@protoc_insertion_point(field_release:io.deephaven.proto.backplane.grpc.CrossJoinTablesRequest.result_id) - - _impl_._has_bits_[0] &= ~0x00000001u; - ::io::deephaven::proto::backplane::grpc::Ticket* temp = _impl_.result_id_; - _impl_.result_id_ = nullptr; - return temp; -} -inline ::io::deephaven::proto::backplane::grpc::Ticket* CrossJoinTablesRequest::_internal_mutable_result_id() { - ::google::protobuf::internal::TSanWrite(&_impl_); - if (_impl_.result_id_ == nullptr) { - 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(); - ::google::protobuf::internal::TSanWrite(&_impl_); - if (message_arena == nullptr) { - delete reinterpret_cast<::google::protobuf::MessageLite*>(_impl_.result_id_); - } - - if (value != nullptr) { - ::google::protobuf::Arena* submessage_arena = reinterpret_cast<::google::protobuf::MessageLite*>(value)->GetArena(); - if (message_arena != submessage_arena) { - value = ::google::protobuf::internal::GetOwnedMessage(message_arena, value, submessage_arena); - } - _impl_._has_bits_[0] |= 0x00000001u; - } else { - _impl_._has_bits_[0] &= ~0x00000001u; - } - - _impl_.result_id_ = reinterpret_cast<::io::deephaven::proto::backplane::grpc::Ticket*>(value); - // @@protoc_insertion_point(field_set_allocated:io.deephaven.proto.backplane.grpc.CrossJoinTablesRequest.result_id) -} - -// .io.deephaven.proto.backplane.grpc.TableReference left_id = 2; -inline bool CrossJoinTablesRequest::has_left_id() const { - bool value = (_impl_._has_bits_[0] & 0x00000002u) != 0; - PROTOBUF_ASSUME(!value || _impl_.left_id_ != nullptr); - return value; -} -inline void CrossJoinTablesRequest::clear_left_id() { - ::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 { - ::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_); -} -inline const ::io::deephaven::proto::backplane::grpc::TableReference& CrossJoinTablesRequest::left_id() const ABSL_ATTRIBUTE_LIFETIME_BOUND { - // @@protoc_insertion_point(field_get:io.deephaven.proto.backplane.grpc.CrossJoinTablesRequest.left_id) - return _internal_left_id(); -} -inline void CrossJoinTablesRequest::unsafe_arena_set_allocated_left_id(::io::deephaven::proto::backplane::grpc::TableReference* value) { - ::google::protobuf::internal::TSanWrite(&_impl_); - if (GetArena() == nullptr) { - delete reinterpret_cast<::google::protobuf::MessageLite*>(_impl_.left_id_); - } - _impl_.left_id_ = reinterpret_cast<::io::deephaven::proto::backplane::grpc::TableReference*>(value); - if (value != nullptr) { - _impl_._has_bits_[0] |= 0x00000002u; - } else { - _impl_._has_bits_[0] &= ~0x00000002u; - } - // @@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() { - ::google::protobuf::internal::TSanWrite(&_impl_); - - _impl_._has_bits_[0] &= ~0x00000002u; - ::io::deephaven::proto::backplane::grpc::TableReference* released = _impl_.left_id_; - _impl_.left_id_ = nullptr; -#ifdef PROTOBUF_FORCE_COPY_IN_RELEASE - auto* old = reinterpret_cast<::google::protobuf::MessageLite*>(released); - released = ::google::protobuf::internal::DuplicateIfNonNull(released); - if (GetArena() == nullptr) { - delete old; - } -#else // PROTOBUF_FORCE_COPY_IN_RELEASE - if (GetArena() != nullptr) { - released = ::google::protobuf::internal::DuplicateIfNonNull(released); - } -#endif // !PROTOBUF_FORCE_COPY_IN_RELEASE - return released; -} -inline ::io::deephaven::proto::backplane::grpc::TableReference* CrossJoinTablesRequest::unsafe_arena_release_left_id() { - ::google::protobuf::internal::TSanWrite(&_impl_); - // @@protoc_insertion_point(field_release:io.deephaven.proto.backplane.grpc.CrossJoinTablesRequest.left_id) - - _impl_._has_bits_[0] &= ~0x00000002u; - ::io::deephaven::proto::backplane::grpc::TableReference* temp = _impl_.left_id_; - _impl_.left_id_ = nullptr; - return temp; -} -inline ::io::deephaven::proto::backplane::grpc::TableReference* CrossJoinTablesRequest::_internal_mutable_left_id() { - ::google::protobuf::internal::TSanWrite(&_impl_); - if (_impl_.left_id_ == nullptr) { - 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(); - ::google::protobuf::internal::TSanWrite(&_impl_); - if (message_arena == nullptr) { - delete (_impl_.left_id_); - } - - if (value != nullptr) { - ::google::protobuf::Arena* submessage_arena = (value)->GetArena(); - if (message_arena != submessage_arena) { - value = ::google::protobuf::internal::GetOwnedMessage(message_arena, value, submessage_arena); - } - _impl_._has_bits_[0] |= 0x00000002u; - } else { - _impl_._has_bits_[0] &= ~0x00000002u; - } - - _impl_.left_id_ = reinterpret_cast<::io::deephaven::proto::backplane::grpc::TableReference*>(value); - // @@protoc_insertion_point(field_set_allocated:io.deephaven.proto.backplane.grpc.CrossJoinTablesRequest.left_id) -} - -// .io.deephaven.proto.backplane.grpc.TableReference right_id = 3; -inline bool CrossJoinTablesRequest::has_right_id() const { - bool value = (_impl_._has_bits_[0] & 0x00000004u) != 0; - PROTOBUF_ASSUME(!value || _impl_.right_id_ != nullptr); - return value; -} -inline void CrossJoinTablesRequest::clear_right_id() { - ::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 { - ::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_); -} -inline const ::io::deephaven::proto::backplane::grpc::TableReference& CrossJoinTablesRequest::right_id() const ABSL_ATTRIBUTE_LIFETIME_BOUND { - // @@protoc_insertion_point(field_get:io.deephaven.proto.backplane.grpc.CrossJoinTablesRequest.right_id) - return _internal_right_id(); -} -inline void CrossJoinTablesRequest::unsafe_arena_set_allocated_right_id(::io::deephaven::proto::backplane::grpc::TableReference* value) { - ::google::protobuf::internal::TSanWrite(&_impl_); - if (GetArena() == nullptr) { - delete reinterpret_cast<::google::protobuf::MessageLite*>(_impl_.right_id_); - } - _impl_.right_id_ = reinterpret_cast<::io::deephaven::proto::backplane::grpc::TableReference*>(value); - if (value != nullptr) { - _impl_._has_bits_[0] |= 0x00000004u; - } else { - _impl_._has_bits_[0] &= ~0x00000004u; - } - // @@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() { - ::google::protobuf::internal::TSanWrite(&_impl_); - - _impl_._has_bits_[0] &= ~0x00000004u; - ::io::deephaven::proto::backplane::grpc::TableReference* released = _impl_.right_id_; - _impl_.right_id_ = nullptr; -#ifdef PROTOBUF_FORCE_COPY_IN_RELEASE - auto* old = reinterpret_cast<::google::protobuf::MessageLite*>(released); - released = ::google::protobuf::internal::DuplicateIfNonNull(released); - if (GetArena() == nullptr) { - delete old; - } -#else // PROTOBUF_FORCE_COPY_IN_RELEASE - if (GetArena() != nullptr) { - released = ::google::protobuf::internal::DuplicateIfNonNull(released); - } -#endif // !PROTOBUF_FORCE_COPY_IN_RELEASE - return released; -} -inline ::io::deephaven::proto::backplane::grpc::TableReference* CrossJoinTablesRequest::unsafe_arena_release_right_id() { - ::google::protobuf::internal::TSanWrite(&_impl_); - // @@protoc_insertion_point(field_release:io.deephaven.proto.backplane.grpc.CrossJoinTablesRequest.right_id) - - _impl_._has_bits_[0] &= ~0x00000004u; - ::io::deephaven::proto::backplane::grpc::TableReference* temp = _impl_.right_id_; - _impl_.right_id_ = nullptr; - return temp; -} -inline ::io::deephaven::proto::backplane::grpc::TableReference* CrossJoinTablesRequest::_internal_mutable_right_id() { - ::google::protobuf::internal::TSanWrite(&_impl_); - if (_impl_.right_id_ == nullptr) { - 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(); - ::google::protobuf::internal::TSanWrite(&_impl_); - if (message_arena == nullptr) { - delete (_impl_.right_id_); - } - - if (value != nullptr) { - ::google::protobuf::Arena* submessage_arena = (value)->GetArena(); - if (message_arena != submessage_arena) { - value = ::google::protobuf::internal::GetOwnedMessage(message_arena, value, submessage_arena); - } - _impl_._has_bits_[0] |= 0x00000004u; - } else { - _impl_._has_bits_[0] &= ~0x00000004u; - } - - _impl_.right_id_ = reinterpret_cast<::io::deephaven::proto::backplane::grpc::TableReference*>(value); - // @@protoc_insertion_point(field_set_allocated:io.deephaven.proto.backplane.grpc.CrossJoinTablesRequest.right_id) -} - -// repeated string columns_to_match = 4; -inline int CrossJoinTablesRequest::_internal_columns_to_match_size() const { - return _internal_columns_to_match().size(); -} -inline int CrossJoinTablesRequest::columns_to_match_size() const { - return _internal_columns_to_match_size(); -} -inline void CrossJoinTablesRequest::clear_columns_to_match() { - ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.columns_to_match_.Clear(); -} -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; -} -inline const std::string& CrossJoinTablesRequest::columns_to_match(int index) const - ABSL_ATTRIBUTE_LIFETIME_BOUND { - // @@protoc_insertion_point(field_get:io.deephaven.proto.backplane.grpc.CrossJoinTablesRequest.columns_to_match) - return _internal_columns_to_match().Get(index); -} -inline std::string* CrossJoinTablesRequest::mutable_columns_to_match(int index) - ABSL_ATTRIBUTE_LIFETIME_BOUND { - // @@protoc_insertion_point(field_mutable:io.deephaven.proto.backplane.grpc.CrossJoinTablesRequest.columns_to_match) - return _internal_mutable_columns_to_match()->Mutable(index); -} -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) -} -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 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) - return _internal_columns_to_match(); -} -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) - ::google::protobuf::internal::TSanWrite(&_impl_); - return _internal_mutable_columns_to_match(); -} -inline const ::google::protobuf::RepeatedPtrField& -CrossJoinTablesRequest::_internal_columns_to_match() const { - ::google::protobuf::internal::TSanRead(&_impl_); - return _impl_.columns_to_match_; -} -inline ::google::protobuf::RepeatedPtrField* -CrossJoinTablesRequest::_internal_mutable_columns_to_match() { - ::google::protobuf::internal::TSanRead(&_impl_); - return &_impl_.columns_to_match_; -} - -// repeated string columns_to_add = 5; -inline int CrossJoinTablesRequest::_internal_columns_to_add_size() const { - return _internal_columns_to_add().size(); -} -inline int CrossJoinTablesRequest::columns_to_add_size() const { - return _internal_columns_to_add_size(); -} -inline void CrossJoinTablesRequest::clear_columns_to_add() { - ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.columns_to_add_.Clear(); -} -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; -} -inline const std::string& CrossJoinTablesRequest::columns_to_add(int index) const - ABSL_ATTRIBUTE_LIFETIME_BOUND { - // @@protoc_insertion_point(field_get:io.deephaven.proto.backplane.grpc.CrossJoinTablesRequest.columns_to_add) - return _internal_columns_to_add().Get(index); -} -inline std::string* CrossJoinTablesRequest::mutable_columns_to_add(int index) - ABSL_ATTRIBUTE_LIFETIME_BOUND { - // @@protoc_insertion_point(field_mutable:io.deephaven.proto.backplane.grpc.CrossJoinTablesRequest.columns_to_add) - return _internal_mutable_columns_to_add()->Mutable(index); -} -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) -} -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 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) - return _internal_columns_to_add(); -} -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) - ::google::protobuf::internal::TSanWrite(&_impl_); - return _internal_mutable_columns_to_add(); -} -inline const ::google::protobuf::RepeatedPtrField& -CrossJoinTablesRequest::_internal_columns_to_add() const { - ::google::protobuf::internal::TSanRead(&_impl_); - return _impl_.columns_to_add_; -} -inline ::google::protobuf::RepeatedPtrField* -CrossJoinTablesRequest::_internal_mutable_columns_to_add() { - ::google::protobuf::internal::TSanRead(&_impl_); - return &_impl_.columns_to_add_; -} - -// int32 reserve_bits = 6; -inline void CrossJoinTablesRequest::clear_reserve_bits() { - ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.reserve_bits_ = 0; -} -inline ::int32_t CrossJoinTablesRequest::reserve_bits() const { - // @@protoc_insertion_point(field_get:io.deephaven.proto.backplane.grpc.CrossJoinTablesRequest.reserve_bits) - return _internal_reserve_bits(); -} -inline void CrossJoinTablesRequest::set_reserve_bits(::int32_t value) { - _internal_set_reserve_bits(value); - // @@protoc_insertion_point(field_set:io.deephaven.proto.backplane.grpc.CrossJoinTablesRequest.reserve_bits) -} -inline ::int32_t CrossJoinTablesRequest::_internal_reserve_bits() const { - ::google::protobuf::internal::TSanRead(&_impl_); - return _impl_.reserve_bits_; -} -inline void CrossJoinTablesRequest::_internal_set_reserve_bits(::int32_t value) { - ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.reserve_bits_ = value; -} - -// ------------------------------------------------------------------- - -// NaturalJoinTablesRequest - -// .io.deephaven.proto.backplane.grpc.Ticket result_id = 1; -inline bool NaturalJoinTablesRequest::has_result_id() const { - bool value = (_impl_._has_bits_[0] & 0x00000001u) != 0; - PROTOBUF_ASSUME(!value || _impl_.result_id_ != nullptr); - return value; -} -inline const ::io::deephaven::proto::backplane::grpc::Ticket& NaturalJoinTablesRequest::_internal_result_id() const { - ::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_); -} -inline const ::io::deephaven::proto::backplane::grpc::Ticket& NaturalJoinTablesRequest::result_id() const ABSL_ATTRIBUTE_LIFETIME_BOUND { - // @@protoc_insertion_point(field_get:io.deephaven.proto.backplane.grpc.NaturalJoinTablesRequest.result_id) - return _internal_result_id(); -} -inline void NaturalJoinTablesRequest::unsafe_arena_set_allocated_result_id(::io::deephaven::proto::backplane::grpc::Ticket* value) { - ::google::protobuf::internal::TSanWrite(&_impl_); - if (GetArena() == nullptr) { - delete reinterpret_cast<::google::protobuf::MessageLite*>(_impl_.result_id_); - } - _impl_.result_id_ = reinterpret_cast<::io::deephaven::proto::backplane::grpc::Ticket*>(value); - if (value != nullptr) { - _impl_._has_bits_[0] |= 0x00000001u; - } else { - _impl_._has_bits_[0] &= ~0x00000001u; - } - // @@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() { - ::google::protobuf::internal::TSanWrite(&_impl_); - - _impl_._has_bits_[0] &= ~0x00000001u; - ::io::deephaven::proto::backplane::grpc::Ticket* released = _impl_.result_id_; - _impl_.result_id_ = nullptr; -#ifdef PROTOBUF_FORCE_COPY_IN_RELEASE - auto* old = reinterpret_cast<::google::protobuf::MessageLite*>(released); - released = ::google::protobuf::internal::DuplicateIfNonNull(released); - if (GetArena() == nullptr) { - delete old; - } -#else // PROTOBUF_FORCE_COPY_IN_RELEASE - if (GetArena() != nullptr) { - released = ::google::protobuf::internal::DuplicateIfNonNull(released); - } -#endif // !PROTOBUF_FORCE_COPY_IN_RELEASE - return released; -} -inline ::io::deephaven::proto::backplane::grpc::Ticket* NaturalJoinTablesRequest::unsafe_arena_release_result_id() { - ::google::protobuf::internal::TSanWrite(&_impl_); - // @@protoc_insertion_point(field_release:io.deephaven.proto.backplane.grpc.NaturalJoinTablesRequest.result_id) - - _impl_._has_bits_[0] &= ~0x00000001u; - ::io::deephaven::proto::backplane::grpc::Ticket* temp = _impl_.result_id_; - _impl_.result_id_ = nullptr; - return temp; -} -inline ::io::deephaven::proto::backplane::grpc::Ticket* NaturalJoinTablesRequest::_internal_mutable_result_id() { - ::google::protobuf::internal::TSanWrite(&_impl_); - if (_impl_.result_id_ == nullptr) { - 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(); - ::google::protobuf::internal::TSanWrite(&_impl_); - if (message_arena == nullptr) { - delete reinterpret_cast<::google::protobuf::MessageLite*>(_impl_.result_id_); - } - - if (value != nullptr) { - ::google::protobuf::Arena* submessage_arena = reinterpret_cast<::google::protobuf::MessageLite*>(value)->GetArena(); - if (message_arena != submessage_arena) { - value = ::google::protobuf::internal::GetOwnedMessage(message_arena, value, submessage_arena); - } - _impl_._has_bits_[0] |= 0x00000001u; - } else { - _impl_._has_bits_[0] &= ~0x00000001u; - } - - _impl_.result_id_ = reinterpret_cast<::io::deephaven::proto::backplane::grpc::Ticket*>(value); - // @@protoc_insertion_point(field_set_allocated:io.deephaven.proto.backplane.grpc.NaturalJoinTablesRequest.result_id) -} - -// .io.deephaven.proto.backplane.grpc.TableReference left_id = 2; -inline bool NaturalJoinTablesRequest::has_left_id() const { - bool value = (_impl_._has_bits_[0] & 0x00000002u) != 0; - PROTOBUF_ASSUME(!value || _impl_.left_id_ != nullptr); - return value; -} -inline void NaturalJoinTablesRequest::clear_left_id() { - ::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 { - ::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_); -} -inline const ::io::deephaven::proto::backplane::grpc::TableReference& NaturalJoinTablesRequest::left_id() const ABSL_ATTRIBUTE_LIFETIME_BOUND { - // @@protoc_insertion_point(field_get:io.deephaven.proto.backplane.grpc.NaturalJoinTablesRequest.left_id) - return _internal_left_id(); -} -inline void NaturalJoinTablesRequest::unsafe_arena_set_allocated_left_id(::io::deephaven::proto::backplane::grpc::TableReference* value) { - ::google::protobuf::internal::TSanWrite(&_impl_); - if (GetArena() == nullptr) { - delete reinterpret_cast<::google::protobuf::MessageLite*>(_impl_.left_id_); - } - _impl_.left_id_ = reinterpret_cast<::io::deephaven::proto::backplane::grpc::TableReference*>(value); - if (value != nullptr) { - _impl_._has_bits_[0] |= 0x00000002u; - } else { - _impl_._has_bits_[0] &= ~0x00000002u; - } - // @@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() { - ::google::protobuf::internal::TSanWrite(&_impl_); - - _impl_._has_bits_[0] &= ~0x00000002u; - ::io::deephaven::proto::backplane::grpc::TableReference* released = _impl_.left_id_; - _impl_.left_id_ = nullptr; -#ifdef PROTOBUF_FORCE_COPY_IN_RELEASE - auto* old = reinterpret_cast<::google::protobuf::MessageLite*>(released); - released = ::google::protobuf::internal::DuplicateIfNonNull(released); - if (GetArena() == nullptr) { - delete old; - } -#else // PROTOBUF_FORCE_COPY_IN_RELEASE - if (GetArena() != nullptr) { - released = ::google::protobuf::internal::DuplicateIfNonNull(released); - } -#endif // !PROTOBUF_FORCE_COPY_IN_RELEASE - return released; -} -inline ::io::deephaven::proto::backplane::grpc::TableReference* NaturalJoinTablesRequest::unsafe_arena_release_left_id() { - ::google::protobuf::internal::TSanWrite(&_impl_); - // @@protoc_insertion_point(field_release:io.deephaven.proto.backplane.grpc.NaturalJoinTablesRequest.left_id) - - _impl_._has_bits_[0] &= ~0x00000002u; - ::io::deephaven::proto::backplane::grpc::TableReference* temp = _impl_.left_id_; - _impl_.left_id_ = nullptr; - return temp; -} -inline ::io::deephaven::proto::backplane::grpc::TableReference* NaturalJoinTablesRequest::_internal_mutable_left_id() { - ::google::protobuf::internal::TSanWrite(&_impl_); - if (_impl_.left_id_ == nullptr) { - 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(); - ::google::protobuf::internal::TSanWrite(&_impl_); - if (message_arena == nullptr) { - delete (_impl_.left_id_); - } - - if (value != nullptr) { - ::google::protobuf::Arena* submessage_arena = (value)->GetArena(); - if (message_arena != submessage_arena) { - value = ::google::protobuf::internal::GetOwnedMessage(message_arena, value, submessage_arena); - } - _impl_._has_bits_[0] |= 0x00000002u; - } else { - _impl_._has_bits_[0] &= ~0x00000002u; - } - - _impl_.left_id_ = reinterpret_cast<::io::deephaven::proto::backplane::grpc::TableReference*>(value); - // @@protoc_insertion_point(field_set_allocated:io.deephaven.proto.backplane.grpc.NaturalJoinTablesRequest.left_id) -} - -// .io.deephaven.proto.backplane.grpc.TableReference right_id = 3; -inline bool NaturalJoinTablesRequest::has_right_id() const { - bool value = (_impl_._has_bits_[0] & 0x00000004u) != 0; - PROTOBUF_ASSUME(!value || _impl_.right_id_ != nullptr); - return value; -} -inline void NaturalJoinTablesRequest::clear_right_id() { - ::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 { - ::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_); -} -inline const ::io::deephaven::proto::backplane::grpc::TableReference& NaturalJoinTablesRequest::right_id() const ABSL_ATTRIBUTE_LIFETIME_BOUND { - // @@protoc_insertion_point(field_get:io.deephaven.proto.backplane.grpc.NaturalJoinTablesRequest.right_id) - return _internal_right_id(); -} -inline void NaturalJoinTablesRequest::unsafe_arena_set_allocated_right_id(::io::deephaven::proto::backplane::grpc::TableReference* value) { - ::google::protobuf::internal::TSanWrite(&_impl_); - if (GetArena() == nullptr) { - delete reinterpret_cast<::google::protobuf::MessageLite*>(_impl_.right_id_); - } - _impl_.right_id_ = reinterpret_cast<::io::deephaven::proto::backplane::grpc::TableReference*>(value); - if (value != nullptr) { - _impl_._has_bits_[0] |= 0x00000004u; - } else { - _impl_._has_bits_[0] &= ~0x00000004u; - } - // @@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() { - ::google::protobuf::internal::TSanWrite(&_impl_); - - _impl_._has_bits_[0] &= ~0x00000004u; - ::io::deephaven::proto::backplane::grpc::TableReference* released = _impl_.right_id_; - _impl_.right_id_ = nullptr; -#ifdef PROTOBUF_FORCE_COPY_IN_RELEASE - auto* old = reinterpret_cast<::google::protobuf::MessageLite*>(released); - released = ::google::protobuf::internal::DuplicateIfNonNull(released); - if (GetArena() == nullptr) { - delete old; - } -#else // PROTOBUF_FORCE_COPY_IN_RELEASE - if (GetArena() != nullptr) { - released = ::google::protobuf::internal::DuplicateIfNonNull(released); - } -#endif // !PROTOBUF_FORCE_COPY_IN_RELEASE - return released; -} -inline ::io::deephaven::proto::backplane::grpc::TableReference* NaturalJoinTablesRequest::unsafe_arena_release_right_id() { - ::google::protobuf::internal::TSanWrite(&_impl_); - // @@protoc_insertion_point(field_release:io.deephaven.proto.backplane.grpc.NaturalJoinTablesRequest.right_id) - - _impl_._has_bits_[0] &= ~0x00000004u; - ::io::deephaven::proto::backplane::grpc::TableReference* temp = _impl_.right_id_; - _impl_.right_id_ = nullptr; - return temp; -} -inline ::io::deephaven::proto::backplane::grpc::TableReference* NaturalJoinTablesRequest::_internal_mutable_right_id() { - ::google::protobuf::internal::TSanWrite(&_impl_); - if (_impl_.right_id_ == nullptr) { - 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(); - ::google::protobuf::internal::TSanWrite(&_impl_); - if (message_arena == nullptr) { - delete (_impl_.right_id_); - } - - if (value != nullptr) { - ::google::protobuf::Arena* submessage_arena = (value)->GetArena(); - if (message_arena != submessage_arena) { - value = ::google::protobuf::internal::GetOwnedMessage(message_arena, value, submessage_arena); - } - _impl_._has_bits_[0] |= 0x00000004u; - } else { - _impl_._has_bits_[0] &= ~0x00000004u; - } - - _impl_.right_id_ = reinterpret_cast<::io::deephaven::proto::backplane::grpc::TableReference*>(value); - // @@protoc_insertion_point(field_set_allocated:io.deephaven.proto.backplane.grpc.NaturalJoinTablesRequest.right_id) -} - -// repeated string columns_to_match = 4; -inline int NaturalJoinTablesRequest::_internal_columns_to_match_size() const { - return _internal_columns_to_match().size(); -} -inline int NaturalJoinTablesRequest::columns_to_match_size() const { - return _internal_columns_to_match_size(); -} -inline void NaturalJoinTablesRequest::clear_columns_to_match() { - ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.columns_to_match_.Clear(); -} -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; -} -inline const std::string& NaturalJoinTablesRequest::columns_to_match(int index) const - ABSL_ATTRIBUTE_LIFETIME_BOUND { - // @@protoc_insertion_point(field_get:io.deephaven.proto.backplane.grpc.NaturalJoinTablesRequest.columns_to_match) - return _internal_columns_to_match().Get(index); -} -inline std::string* NaturalJoinTablesRequest::mutable_columns_to_match(int index) - ABSL_ATTRIBUTE_LIFETIME_BOUND { - // @@protoc_insertion_point(field_mutable:io.deephaven.proto.backplane.grpc.NaturalJoinTablesRequest.columns_to_match) - return _internal_mutable_columns_to_match()->Mutable(index); -} -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) -} -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 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) - return _internal_columns_to_match(); -} -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) - ::google::protobuf::internal::TSanWrite(&_impl_); - return _internal_mutable_columns_to_match(); -} -inline const ::google::protobuf::RepeatedPtrField& -NaturalJoinTablesRequest::_internal_columns_to_match() const { - ::google::protobuf::internal::TSanRead(&_impl_); - return _impl_.columns_to_match_; -} -inline ::google::protobuf::RepeatedPtrField* -NaturalJoinTablesRequest::_internal_mutable_columns_to_match() { - ::google::protobuf::internal::TSanRead(&_impl_); - return &_impl_.columns_to_match_; -} - -// repeated string columns_to_add = 5; -inline int NaturalJoinTablesRequest::_internal_columns_to_add_size() const { - return _internal_columns_to_add().size(); -} -inline int NaturalJoinTablesRequest::columns_to_add_size() const { - return _internal_columns_to_add_size(); -} -inline void NaturalJoinTablesRequest::clear_columns_to_add() { - ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.columns_to_add_.Clear(); -} -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; -} -inline const std::string& NaturalJoinTablesRequest::columns_to_add(int index) const - ABSL_ATTRIBUTE_LIFETIME_BOUND { - // @@protoc_insertion_point(field_get:io.deephaven.proto.backplane.grpc.NaturalJoinTablesRequest.columns_to_add) - return _internal_columns_to_add().Get(index); -} -inline std::string* NaturalJoinTablesRequest::mutable_columns_to_add(int index) - ABSL_ATTRIBUTE_LIFETIME_BOUND { - // @@protoc_insertion_point(field_mutable:io.deephaven.proto.backplane.grpc.NaturalJoinTablesRequest.columns_to_add) - return _internal_mutable_columns_to_add()->Mutable(index); -} -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) -} -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 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) - return _internal_columns_to_add(); -} -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) - ::google::protobuf::internal::TSanWrite(&_impl_); - return _internal_mutable_columns_to_add(); -} -inline const ::google::protobuf::RepeatedPtrField& -NaturalJoinTablesRequest::_internal_columns_to_add() const { - ::google::protobuf::internal::TSanRead(&_impl_); - return _impl_.columns_to_add_; -} -inline ::google::protobuf::RepeatedPtrField* -NaturalJoinTablesRequest::_internal_mutable_columns_to_add() { - ::google::protobuf::internal::TSanRead(&_impl_); - return &_impl_.columns_to_add_; -} - -// ------------------------------------------------------------------- - -// ExactJoinTablesRequest - -// .io.deephaven.proto.backplane.grpc.Ticket result_id = 1; -inline bool ExactJoinTablesRequest::has_result_id() const { - bool value = (_impl_._has_bits_[0] & 0x00000001u) != 0; - PROTOBUF_ASSUME(!value || _impl_.result_id_ != nullptr); - return value; -} -inline const ::io::deephaven::proto::backplane::grpc::Ticket& ExactJoinTablesRequest::_internal_result_id() const { - ::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_); -} -inline const ::io::deephaven::proto::backplane::grpc::Ticket& ExactJoinTablesRequest::result_id() const ABSL_ATTRIBUTE_LIFETIME_BOUND { - // @@protoc_insertion_point(field_get:io.deephaven.proto.backplane.grpc.ExactJoinTablesRequest.result_id) - return _internal_result_id(); -} -inline void ExactJoinTablesRequest::unsafe_arena_set_allocated_result_id(::io::deephaven::proto::backplane::grpc::Ticket* value) { - ::google::protobuf::internal::TSanWrite(&_impl_); - if (GetArena() == nullptr) { - delete reinterpret_cast<::google::protobuf::MessageLite*>(_impl_.result_id_); - } - _impl_.result_id_ = reinterpret_cast<::io::deephaven::proto::backplane::grpc::Ticket*>(value); - if (value != nullptr) { - _impl_._has_bits_[0] |= 0x00000001u; - } else { - _impl_._has_bits_[0] &= ~0x00000001u; - } - // @@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() { - ::google::protobuf::internal::TSanWrite(&_impl_); - - _impl_._has_bits_[0] &= ~0x00000001u; - ::io::deephaven::proto::backplane::grpc::Ticket* released = _impl_.result_id_; - _impl_.result_id_ = nullptr; -#ifdef PROTOBUF_FORCE_COPY_IN_RELEASE - auto* old = reinterpret_cast<::google::protobuf::MessageLite*>(released); - released = ::google::protobuf::internal::DuplicateIfNonNull(released); - if (GetArena() == nullptr) { - delete old; - } -#else // PROTOBUF_FORCE_COPY_IN_RELEASE - if (GetArena() != nullptr) { - released = ::google::protobuf::internal::DuplicateIfNonNull(released); - } -#endif // !PROTOBUF_FORCE_COPY_IN_RELEASE - return released; -} -inline ::io::deephaven::proto::backplane::grpc::Ticket* ExactJoinTablesRequest::unsafe_arena_release_result_id() { - ::google::protobuf::internal::TSanWrite(&_impl_); - // @@protoc_insertion_point(field_release:io.deephaven.proto.backplane.grpc.ExactJoinTablesRequest.result_id) - - _impl_._has_bits_[0] &= ~0x00000001u; - ::io::deephaven::proto::backplane::grpc::Ticket* temp = _impl_.result_id_; - _impl_.result_id_ = nullptr; - return temp; -} -inline ::io::deephaven::proto::backplane::grpc::Ticket* ExactJoinTablesRequest::_internal_mutable_result_id() { - ::google::protobuf::internal::TSanWrite(&_impl_); - if (_impl_.result_id_ == nullptr) { - 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(); - ::google::protobuf::internal::TSanWrite(&_impl_); - if (message_arena == nullptr) { - delete reinterpret_cast<::google::protobuf::MessageLite*>(_impl_.result_id_); - } - - if (value != nullptr) { - ::google::protobuf::Arena* submessage_arena = reinterpret_cast<::google::protobuf::MessageLite*>(value)->GetArena(); - if (message_arena != submessage_arena) { - value = ::google::protobuf::internal::GetOwnedMessage(message_arena, value, submessage_arena); - } - _impl_._has_bits_[0] |= 0x00000001u; - } else { - _impl_._has_bits_[0] &= ~0x00000001u; - } - - _impl_.result_id_ = reinterpret_cast<::io::deephaven::proto::backplane::grpc::Ticket*>(value); - // @@protoc_insertion_point(field_set_allocated:io.deephaven.proto.backplane.grpc.ExactJoinTablesRequest.result_id) -} - -// .io.deephaven.proto.backplane.grpc.TableReference left_id = 2; -inline bool ExactJoinTablesRequest::has_left_id() const { - bool value = (_impl_._has_bits_[0] & 0x00000002u) != 0; - PROTOBUF_ASSUME(!value || _impl_.left_id_ != nullptr); - return value; -} -inline void ExactJoinTablesRequest::clear_left_id() { - ::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 { - ::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_); -} -inline const ::io::deephaven::proto::backplane::grpc::TableReference& ExactJoinTablesRequest::left_id() const ABSL_ATTRIBUTE_LIFETIME_BOUND { - // @@protoc_insertion_point(field_get:io.deephaven.proto.backplane.grpc.ExactJoinTablesRequest.left_id) - return _internal_left_id(); -} -inline void ExactJoinTablesRequest::unsafe_arena_set_allocated_left_id(::io::deephaven::proto::backplane::grpc::TableReference* value) { - ::google::protobuf::internal::TSanWrite(&_impl_); - if (GetArena() == nullptr) { - delete reinterpret_cast<::google::protobuf::MessageLite*>(_impl_.left_id_); - } - _impl_.left_id_ = reinterpret_cast<::io::deephaven::proto::backplane::grpc::TableReference*>(value); - if (value != nullptr) { - _impl_._has_bits_[0] |= 0x00000002u; - } else { - _impl_._has_bits_[0] &= ~0x00000002u; - } - // @@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() { - ::google::protobuf::internal::TSanWrite(&_impl_); - - _impl_._has_bits_[0] &= ~0x00000002u; - ::io::deephaven::proto::backplane::grpc::TableReference* released = _impl_.left_id_; - _impl_.left_id_ = nullptr; -#ifdef PROTOBUF_FORCE_COPY_IN_RELEASE - auto* old = reinterpret_cast<::google::protobuf::MessageLite*>(released); - released = ::google::protobuf::internal::DuplicateIfNonNull(released); - if (GetArena() == nullptr) { - delete old; - } -#else // PROTOBUF_FORCE_COPY_IN_RELEASE - if (GetArena() != nullptr) { - released = ::google::protobuf::internal::DuplicateIfNonNull(released); - } -#endif // !PROTOBUF_FORCE_COPY_IN_RELEASE - return released; -} -inline ::io::deephaven::proto::backplane::grpc::TableReference* ExactJoinTablesRequest::unsafe_arena_release_left_id() { - ::google::protobuf::internal::TSanWrite(&_impl_); - // @@protoc_insertion_point(field_release:io.deephaven.proto.backplane.grpc.ExactJoinTablesRequest.left_id) - - _impl_._has_bits_[0] &= ~0x00000002u; - ::io::deephaven::proto::backplane::grpc::TableReference* temp = _impl_.left_id_; - _impl_.left_id_ = nullptr; - return temp; -} -inline ::io::deephaven::proto::backplane::grpc::TableReference* ExactJoinTablesRequest::_internal_mutable_left_id() { - ::google::protobuf::internal::TSanWrite(&_impl_); - if (_impl_.left_id_ == nullptr) { - 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(); - ::google::protobuf::internal::TSanWrite(&_impl_); - if (message_arena == nullptr) { - delete (_impl_.left_id_); - } - - if (value != nullptr) { - ::google::protobuf::Arena* submessage_arena = (value)->GetArena(); - if (message_arena != submessage_arena) { - value = ::google::protobuf::internal::GetOwnedMessage(message_arena, value, submessage_arena); - } - _impl_._has_bits_[0] |= 0x00000002u; - } else { - _impl_._has_bits_[0] &= ~0x00000002u; - } - - _impl_.left_id_ = reinterpret_cast<::io::deephaven::proto::backplane::grpc::TableReference*>(value); - // @@protoc_insertion_point(field_set_allocated:io.deephaven.proto.backplane.grpc.ExactJoinTablesRequest.left_id) -} - -// .io.deephaven.proto.backplane.grpc.TableReference right_id = 3; -inline bool ExactJoinTablesRequest::has_right_id() const { - bool value = (_impl_._has_bits_[0] & 0x00000004u) != 0; - PROTOBUF_ASSUME(!value || _impl_.right_id_ != nullptr); - return value; -} -inline void ExactJoinTablesRequest::clear_right_id() { - ::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 { - ::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_); -} -inline const ::io::deephaven::proto::backplane::grpc::TableReference& ExactJoinTablesRequest::right_id() const ABSL_ATTRIBUTE_LIFETIME_BOUND { - // @@protoc_insertion_point(field_get:io.deephaven.proto.backplane.grpc.ExactJoinTablesRequest.right_id) - return _internal_right_id(); -} -inline void ExactJoinTablesRequest::unsafe_arena_set_allocated_right_id(::io::deephaven::proto::backplane::grpc::TableReference* value) { - ::google::protobuf::internal::TSanWrite(&_impl_); - if (GetArena() == nullptr) { - delete reinterpret_cast<::google::protobuf::MessageLite*>(_impl_.right_id_); - } - _impl_.right_id_ = reinterpret_cast<::io::deephaven::proto::backplane::grpc::TableReference*>(value); - if (value != nullptr) { - _impl_._has_bits_[0] |= 0x00000004u; - } else { - _impl_._has_bits_[0] &= ~0x00000004u; - } - // @@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() { - ::google::protobuf::internal::TSanWrite(&_impl_); - - _impl_._has_bits_[0] &= ~0x00000004u; - ::io::deephaven::proto::backplane::grpc::TableReference* released = _impl_.right_id_; - _impl_.right_id_ = nullptr; -#ifdef PROTOBUF_FORCE_COPY_IN_RELEASE - auto* old = reinterpret_cast<::google::protobuf::MessageLite*>(released); - released = ::google::protobuf::internal::DuplicateIfNonNull(released); - if (GetArena() == nullptr) { - delete old; - } -#else // PROTOBUF_FORCE_COPY_IN_RELEASE - if (GetArena() != nullptr) { - released = ::google::protobuf::internal::DuplicateIfNonNull(released); - } -#endif // !PROTOBUF_FORCE_COPY_IN_RELEASE - return released; -} -inline ::io::deephaven::proto::backplane::grpc::TableReference* ExactJoinTablesRequest::unsafe_arena_release_right_id() { - ::google::protobuf::internal::TSanWrite(&_impl_); - // @@protoc_insertion_point(field_release:io.deephaven.proto.backplane.grpc.ExactJoinTablesRequest.right_id) - - _impl_._has_bits_[0] &= ~0x00000004u; - ::io::deephaven::proto::backplane::grpc::TableReference* temp = _impl_.right_id_; - _impl_.right_id_ = nullptr; - return temp; -} -inline ::io::deephaven::proto::backplane::grpc::TableReference* ExactJoinTablesRequest::_internal_mutable_right_id() { - ::google::protobuf::internal::TSanWrite(&_impl_); - if (_impl_.right_id_ == nullptr) { - 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(); - ::google::protobuf::internal::TSanWrite(&_impl_); - if (message_arena == nullptr) { - delete (_impl_.right_id_); - } - - if (value != nullptr) { - ::google::protobuf::Arena* submessage_arena = (value)->GetArena(); - if (message_arena != submessage_arena) { - value = ::google::protobuf::internal::GetOwnedMessage(message_arena, value, submessage_arena); - } - _impl_._has_bits_[0] |= 0x00000004u; - } else { - _impl_._has_bits_[0] &= ~0x00000004u; - } - - _impl_.right_id_ = reinterpret_cast<::io::deephaven::proto::backplane::grpc::TableReference*>(value); - // @@protoc_insertion_point(field_set_allocated:io.deephaven.proto.backplane.grpc.ExactJoinTablesRequest.right_id) -} - -// repeated string columns_to_match = 4; -inline int ExactJoinTablesRequest::_internal_columns_to_match_size() const { - return _internal_columns_to_match().size(); -} -inline int ExactJoinTablesRequest::columns_to_match_size() const { - return _internal_columns_to_match_size(); -} -inline void ExactJoinTablesRequest::clear_columns_to_match() { - ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.columns_to_match_.Clear(); -} -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; -} -inline const std::string& ExactJoinTablesRequest::columns_to_match(int index) const - ABSL_ATTRIBUTE_LIFETIME_BOUND { - // @@protoc_insertion_point(field_get:io.deephaven.proto.backplane.grpc.ExactJoinTablesRequest.columns_to_match) - return _internal_columns_to_match().Get(index); -} -inline std::string* ExactJoinTablesRequest::mutable_columns_to_match(int index) - ABSL_ATTRIBUTE_LIFETIME_BOUND { - // @@protoc_insertion_point(field_mutable:io.deephaven.proto.backplane.grpc.ExactJoinTablesRequest.columns_to_match) - return _internal_mutable_columns_to_match()->Mutable(index); -} -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) -} -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 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) - return _internal_columns_to_match(); -} -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) - ::google::protobuf::internal::TSanWrite(&_impl_); - return _internal_mutable_columns_to_match(); -} -inline const ::google::protobuf::RepeatedPtrField& -ExactJoinTablesRequest::_internal_columns_to_match() const { - ::google::protobuf::internal::TSanRead(&_impl_); - return _impl_.columns_to_match_; -} -inline ::google::protobuf::RepeatedPtrField* -ExactJoinTablesRequest::_internal_mutable_columns_to_match() { - ::google::protobuf::internal::TSanRead(&_impl_); - return &_impl_.columns_to_match_; -} - -// repeated string columns_to_add = 5; -inline int ExactJoinTablesRequest::_internal_columns_to_add_size() const { - return _internal_columns_to_add().size(); -} -inline int ExactJoinTablesRequest::columns_to_add_size() const { - return _internal_columns_to_add_size(); -} -inline void ExactJoinTablesRequest::clear_columns_to_add() { - ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.columns_to_add_.Clear(); -} -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; -} -inline const std::string& ExactJoinTablesRequest::columns_to_add(int index) const - ABSL_ATTRIBUTE_LIFETIME_BOUND { - // @@protoc_insertion_point(field_get:io.deephaven.proto.backplane.grpc.ExactJoinTablesRequest.columns_to_add) - return _internal_columns_to_add().Get(index); -} -inline std::string* ExactJoinTablesRequest::mutable_columns_to_add(int index) - ABSL_ATTRIBUTE_LIFETIME_BOUND { - // @@protoc_insertion_point(field_mutable:io.deephaven.proto.backplane.grpc.ExactJoinTablesRequest.columns_to_add) - return _internal_mutable_columns_to_add()->Mutable(index); -} -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) -} -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 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) - return _internal_columns_to_add(); -} -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) - ::google::protobuf::internal::TSanWrite(&_impl_); - return _internal_mutable_columns_to_add(); -} -inline const ::google::protobuf::RepeatedPtrField& -ExactJoinTablesRequest::_internal_columns_to_add() const { - ::google::protobuf::internal::TSanRead(&_impl_); - return _impl_.columns_to_add_; -} -inline ::google::protobuf::RepeatedPtrField* -ExactJoinTablesRequest::_internal_mutable_columns_to_add() { - ::google::protobuf::internal::TSanRead(&_impl_); - return &_impl_.columns_to_add_; -} - -// ------------------------------------------------------------------- - -// LeftJoinTablesRequest - -// .io.deephaven.proto.backplane.grpc.Ticket result_id = 1; -inline bool LeftJoinTablesRequest::has_result_id() const { - bool value = (_impl_._has_bits_[0] & 0x00000001u) != 0; - PROTOBUF_ASSUME(!value || _impl_.result_id_ != nullptr); - return value; -} -inline const ::io::deephaven::proto::backplane::grpc::Ticket& LeftJoinTablesRequest::_internal_result_id() const { - ::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_); -} -inline const ::io::deephaven::proto::backplane::grpc::Ticket& LeftJoinTablesRequest::result_id() const ABSL_ATTRIBUTE_LIFETIME_BOUND { - // @@protoc_insertion_point(field_get:io.deephaven.proto.backplane.grpc.LeftJoinTablesRequest.result_id) - return _internal_result_id(); -} -inline void LeftJoinTablesRequest::unsafe_arena_set_allocated_result_id(::io::deephaven::proto::backplane::grpc::Ticket* value) { - ::google::protobuf::internal::TSanWrite(&_impl_); - if (GetArena() == nullptr) { - delete reinterpret_cast<::google::protobuf::MessageLite*>(_impl_.result_id_); - } - _impl_.result_id_ = reinterpret_cast<::io::deephaven::proto::backplane::grpc::Ticket*>(value); - if (value != nullptr) { - _impl_._has_bits_[0] |= 0x00000001u; - } else { - _impl_._has_bits_[0] &= ~0x00000001u; - } - // @@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() { - ::google::protobuf::internal::TSanWrite(&_impl_); - - _impl_._has_bits_[0] &= ~0x00000001u; - ::io::deephaven::proto::backplane::grpc::Ticket* released = _impl_.result_id_; - _impl_.result_id_ = nullptr; -#ifdef PROTOBUF_FORCE_COPY_IN_RELEASE - auto* old = reinterpret_cast<::google::protobuf::MessageLite*>(released); - released = ::google::protobuf::internal::DuplicateIfNonNull(released); - if (GetArena() == nullptr) { - delete old; - } -#else // PROTOBUF_FORCE_COPY_IN_RELEASE - if (GetArena() != nullptr) { - released = ::google::protobuf::internal::DuplicateIfNonNull(released); - } -#endif // !PROTOBUF_FORCE_COPY_IN_RELEASE - return released; -} -inline ::io::deephaven::proto::backplane::grpc::Ticket* LeftJoinTablesRequest::unsafe_arena_release_result_id() { - ::google::protobuf::internal::TSanWrite(&_impl_); - // @@protoc_insertion_point(field_release:io.deephaven.proto.backplane.grpc.LeftJoinTablesRequest.result_id) - - _impl_._has_bits_[0] &= ~0x00000001u; - ::io::deephaven::proto::backplane::grpc::Ticket* temp = _impl_.result_id_; - _impl_.result_id_ = nullptr; - return temp; -} -inline ::io::deephaven::proto::backplane::grpc::Ticket* LeftJoinTablesRequest::_internal_mutable_result_id() { - ::google::protobuf::internal::TSanWrite(&_impl_); - if (_impl_.result_id_ == nullptr) { - 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(); - ::google::protobuf::internal::TSanWrite(&_impl_); - if (message_arena == nullptr) { - delete reinterpret_cast<::google::protobuf::MessageLite*>(_impl_.result_id_); - } - - if (value != nullptr) { - ::google::protobuf::Arena* submessage_arena = reinterpret_cast<::google::protobuf::MessageLite*>(value)->GetArena(); - if (message_arena != submessage_arena) { - value = ::google::protobuf::internal::GetOwnedMessage(message_arena, value, submessage_arena); - } - _impl_._has_bits_[0] |= 0x00000001u; - } else { - _impl_._has_bits_[0] &= ~0x00000001u; - } - - _impl_.result_id_ = reinterpret_cast<::io::deephaven::proto::backplane::grpc::Ticket*>(value); - // @@protoc_insertion_point(field_set_allocated:io.deephaven.proto.backplane.grpc.LeftJoinTablesRequest.result_id) -} - -// .io.deephaven.proto.backplane.grpc.TableReference left_id = 2; -inline bool LeftJoinTablesRequest::has_left_id() const { - bool value = (_impl_._has_bits_[0] & 0x00000002u) != 0; - PROTOBUF_ASSUME(!value || _impl_.left_id_ != nullptr); - return value; -} -inline void LeftJoinTablesRequest::clear_left_id() { - ::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 { - ::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_); -} -inline const ::io::deephaven::proto::backplane::grpc::TableReference& LeftJoinTablesRequest::left_id() const ABSL_ATTRIBUTE_LIFETIME_BOUND { - // @@protoc_insertion_point(field_get:io.deephaven.proto.backplane.grpc.LeftJoinTablesRequest.left_id) - return _internal_left_id(); -} -inline void LeftJoinTablesRequest::unsafe_arena_set_allocated_left_id(::io::deephaven::proto::backplane::grpc::TableReference* value) { - ::google::protobuf::internal::TSanWrite(&_impl_); - if (GetArena() == nullptr) { - delete reinterpret_cast<::google::protobuf::MessageLite*>(_impl_.left_id_); - } - _impl_.left_id_ = reinterpret_cast<::io::deephaven::proto::backplane::grpc::TableReference*>(value); - if (value != nullptr) { - _impl_._has_bits_[0] |= 0x00000002u; - } else { - _impl_._has_bits_[0] &= ~0x00000002u; - } - // @@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() { - ::google::protobuf::internal::TSanWrite(&_impl_); - - _impl_._has_bits_[0] &= ~0x00000002u; - ::io::deephaven::proto::backplane::grpc::TableReference* released = _impl_.left_id_; - _impl_.left_id_ = nullptr; -#ifdef PROTOBUF_FORCE_COPY_IN_RELEASE - auto* old = reinterpret_cast<::google::protobuf::MessageLite*>(released); - released = ::google::protobuf::internal::DuplicateIfNonNull(released); - if (GetArena() == nullptr) { - delete old; - } -#else // PROTOBUF_FORCE_COPY_IN_RELEASE - if (GetArena() != nullptr) { - released = ::google::protobuf::internal::DuplicateIfNonNull(released); - } -#endif // !PROTOBUF_FORCE_COPY_IN_RELEASE - return released; -} -inline ::io::deephaven::proto::backplane::grpc::TableReference* LeftJoinTablesRequest::unsafe_arena_release_left_id() { - ::google::protobuf::internal::TSanWrite(&_impl_); - // @@protoc_insertion_point(field_release:io.deephaven.proto.backplane.grpc.LeftJoinTablesRequest.left_id) - - _impl_._has_bits_[0] &= ~0x00000002u; - ::io::deephaven::proto::backplane::grpc::TableReference* temp = _impl_.left_id_; - _impl_.left_id_ = nullptr; - return temp; -} -inline ::io::deephaven::proto::backplane::grpc::TableReference* LeftJoinTablesRequest::_internal_mutable_left_id() { - ::google::protobuf::internal::TSanWrite(&_impl_); - if (_impl_.left_id_ == nullptr) { - 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(); - ::google::protobuf::internal::TSanWrite(&_impl_); - if (message_arena == nullptr) { - delete (_impl_.left_id_); - } - - if (value != nullptr) { - ::google::protobuf::Arena* submessage_arena = (value)->GetArena(); - if (message_arena != submessage_arena) { - value = ::google::protobuf::internal::GetOwnedMessage(message_arena, value, submessage_arena); - } - _impl_._has_bits_[0] |= 0x00000002u; - } else { - _impl_._has_bits_[0] &= ~0x00000002u; - } - - _impl_.left_id_ = reinterpret_cast<::io::deephaven::proto::backplane::grpc::TableReference*>(value); - // @@protoc_insertion_point(field_set_allocated:io.deephaven.proto.backplane.grpc.LeftJoinTablesRequest.left_id) -} - -// .io.deephaven.proto.backplane.grpc.TableReference right_id = 3; -inline bool LeftJoinTablesRequest::has_right_id() const { - bool value = (_impl_._has_bits_[0] & 0x00000004u) != 0; - PROTOBUF_ASSUME(!value || _impl_.right_id_ != nullptr); - return value; -} -inline void LeftJoinTablesRequest::clear_right_id() { - ::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 { - ::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_); -} -inline const ::io::deephaven::proto::backplane::grpc::TableReference& LeftJoinTablesRequest::right_id() const ABSL_ATTRIBUTE_LIFETIME_BOUND { - // @@protoc_insertion_point(field_get:io.deephaven.proto.backplane.grpc.LeftJoinTablesRequest.right_id) - return _internal_right_id(); -} -inline void LeftJoinTablesRequest::unsafe_arena_set_allocated_right_id(::io::deephaven::proto::backplane::grpc::TableReference* value) { - ::google::protobuf::internal::TSanWrite(&_impl_); - if (GetArena() == nullptr) { - delete reinterpret_cast<::google::protobuf::MessageLite*>(_impl_.right_id_); - } - _impl_.right_id_ = reinterpret_cast<::io::deephaven::proto::backplane::grpc::TableReference*>(value); - if (value != nullptr) { - _impl_._has_bits_[0] |= 0x00000004u; - } else { - _impl_._has_bits_[0] &= ~0x00000004u; - } - // @@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() { - ::google::protobuf::internal::TSanWrite(&_impl_); - - _impl_._has_bits_[0] &= ~0x00000004u; - ::io::deephaven::proto::backplane::grpc::TableReference* released = _impl_.right_id_; - _impl_.right_id_ = nullptr; -#ifdef PROTOBUF_FORCE_COPY_IN_RELEASE - auto* old = reinterpret_cast<::google::protobuf::MessageLite*>(released); - released = ::google::protobuf::internal::DuplicateIfNonNull(released); - if (GetArena() == nullptr) { - delete old; - } -#else // PROTOBUF_FORCE_COPY_IN_RELEASE - if (GetArena() != nullptr) { - released = ::google::protobuf::internal::DuplicateIfNonNull(released); - } -#endif // !PROTOBUF_FORCE_COPY_IN_RELEASE - return released; -} -inline ::io::deephaven::proto::backplane::grpc::TableReference* LeftJoinTablesRequest::unsafe_arena_release_right_id() { - ::google::protobuf::internal::TSanWrite(&_impl_); - // @@protoc_insertion_point(field_release:io.deephaven.proto.backplane.grpc.LeftJoinTablesRequest.right_id) - - _impl_._has_bits_[0] &= ~0x00000004u; - ::io::deephaven::proto::backplane::grpc::TableReference* temp = _impl_.right_id_; - _impl_.right_id_ = nullptr; - return temp; -} -inline ::io::deephaven::proto::backplane::grpc::TableReference* LeftJoinTablesRequest::_internal_mutable_right_id() { - ::google::protobuf::internal::TSanWrite(&_impl_); - if (_impl_.right_id_ == nullptr) { - 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(); - ::google::protobuf::internal::TSanWrite(&_impl_); - if (message_arena == nullptr) { - delete (_impl_.right_id_); - } - - if (value != nullptr) { - ::google::protobuf::Arena* submessage_arena = (value)->GetArena(); - if (message_arena != submessage_arena) { - value = ::google::protobuf::internal::GetOwnedMessage(message_arena, value, submessage_arena); - } - _impl_._has_bits_[0] |= 0x00000004u; - } else { - _impl_._has_bits_[0] &= ~0x00000004u; - } - - _impl_.right_id_ = reinterpret_cast<::io::deephaven::proto::backplane::grpc::TableReference*>(value); - // @@protoc_insertion_point(field_set_allocated:io.deephaven.proto.backplane.grpc.LeftJoinTablesRequest.right_id) -} - -// repeated string columns_to_match = 4; -inline int LeftJoinTablesRequest::_internal_columns_to_match_size() const { - return _internal_columns_to_match().size(); -} -inline int LeftJoinTablesRequest::columns_to_match_size() const { - return _internal_columns_to_match_size(); -} -inline void LeftJoinTablesRequest::clear_columns_to_match() { - ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.columns_to_match_.Clear(); -} -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; -} -inline const std::string& LeftJoinTablesRequest::columns_to_match(int index) const - ABSL_ATTRIBUTE_LIFETIME_BOUND { - // @@protoc_insertion_point(field_get:io.deephaven.proto.backplane.grpc.LeftJoinTablesRequest.columns_to_match) - return _internal_columns_to_match().Get(index); -} -inline std::string* LeftJoinTablesRequest::mutable_columns_to_match(int index) - ABSL_ATTRIBUTE_LIFETIME_BOUND { - // @@protoc_insertion_point(field_mutable:io.deephaven.proto.backplane.grpc.LeftJoinTablesRequest.columns_to_match) - return _internal_mutable_columns_to_match()->Mutable(index); -} -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) -} -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 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) - return _internal_columns_to_match(); -} -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) - ::google::protobuf::internal::TSanWrite(&_impl_); - return _internal_mutable_columns_to_match(); -} -inline const ::google::protobuf::RepeatedPtrField& -LeftJoinTablesRequest::_internal_columns_to_match() const { - ::google::protobuf::internal::TSanRead(&_impl_); - return _impl_.columns_to_match_; -} -inline ::google::protobuf::RepeatedPtrField* -LeftJoinTablesRequest::_internal_mutable_columns_to_match() { - ::google::protobuf::internal::TSanRead(&_impl_); - return &_impl_.columns_to_match_; -} - -// repeated string columns_to_add = 5; -inline int LeftJoinTablesRequest::_internal_columns_to_add_size() const { - return _internal_columns_to_add().size(); -} -inline int LeftJoinTablesRequest::columns_to_add_size() const { - return _internal_columns_to_add_size(); -} -inline void LeftJoinTablesRequest::clear_columns_to_add() { - ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.columns_to_add_.Clear(); -} -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; -} -inline const std::string& LeftJoinTablesRequest::columns_to_add(int index) const - ABSL_ATTRIBUTE_LIFETIME_BOUND { - // @@protoc_insertion_point(field_get:io.deephaven.proto.backplane.grpc.LeftJoinTablesRequest.columns_to_add) - return _internal_columns_to_add().Get(index); -} -inline std::string* LeftJoinTablesRequest::mutable_columns_to_add(int index) - ABSL_ATTRIBUTE_LIFETIME_BOUND { - // @@protoc_insertion_point(field_mutable:io.deephaven.proto.backplane.grpc.LeftJoinTablesRequest.columns_to_add) - return _internal_mutable_columns_to_add()->Mutable(index); -} -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) -} -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 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) - return _internal_columns_to_add(); -} -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) - ::google::protobuf::internal::TSanWrite(&_impl_); - return _internal_mutable_columns_to_add(); -} -inline const ::google::protobuf::RepeatedPtrField& -LeftJoinTablesRequest::_internal_columns_to_add() const { - ::google::protobuf::internal::TSanRead(&_impl_); - return _impl_.columns_to_add_; -} -inline ::google::protobuf::RepeatedPtrField* -LeftJoinTablesRequest::_internal_mutable_columns_to_add() { - ::google::protobuf::internal::TSanRead(&_impl_); - return &_impl_.columns_to_add_; -} - -// ------------------------------------------------------------------- - -// AsOfJoinTablesRequest - -// .io.deephaven.proto.backplane.grpc.Ticket result_id = 1; -inline bool AsOfJoinTablesRequest::has_result_id() const { - bool value = (_impl_._has_bits_[0] & 0x00000001u) != 0; - PROTOBUF_ASSUME(!value || _impl_.result_id_ != nullptr); - return value; -} -inline const ::io::deephaven::proto::backplane::grpc::Ticket& AsOfJoinTablesRequest::_internal_result_id() const { - ::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_); -} -inline const ::io::deephaven::proto::backplane::grpc::Ticket& AsOfJoinTablesRequest::result_id() const ABSL_ATTRIBUTE_LIFETIME_BOUND { - // @@protoc_insertion_point(field_get:io.deephaven.proto.backplane.grpc.AsOfJoinTablesRequest.result_id) - return _internal_result_id(); -} -inline void AsOfJoinTablesRequest::unsafe_arena_set_allocated_result_id(::io::deephaven::proto::backplane::grpc::Ticket* value) { - ::google::protobuf::internal::TSanWrite(&_impl_); - if (GetArena() == nullptr) { - delete reinterpret_cast<::google::protobuf::MessageLite*>(_impl_.result_id_); - } - _impl_.result_id_ = reinterpret_cast<::io::deephaven::proto::backplane::grpc::Ticket*>(value); - if (value != nullptr) { - _impl_._has_bits_[0] |= 0x00000001u; - } else { - _impl_._has_bits_[0] &= ~0x00000001u; - } - // @@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() { - ::google::protobuf::internal::TSanWrite(&_impl_); - - _impl_._has_bits_[0] &= ~0x00000001u; - ::io::deephaven::proto::backplane::grpc::Ticket* released = _impl_.result_id_; - _impl_.result_id_ = nullptr; -#ifdef PROTOBUF_FORCE_COPY_IN_RELEASE - auto* old = reinterpret_cast<::google::protobuf::MessageLite*>(released); - released = ::google::protobuf::internal::DuplicateIfNonNull(released); - if (GetArena() == nullptr) { - delete old; - } -#else // PROTOBUF_FORCE_COPY_IN_RELEASE - if (GetArena() != nullptr) { - released = ::google::protobuf::internal::DuplicateIfNonNull(released); - } -#endif // !PROTOBUF_FORCE_COPY_IN_RELEASE - return released; -} -inline ::io::deephaven::proto::backplane::grpc::Ticket* AsOfJoinTablesRequest::unsafe_arena_release_result_id() { - ::google::protobuf::internal::TSanWrite(&_impl_); - // @@protoc_insertion_point(field_release:io.deephaven.proto.backplane.grpc.AsOfJoinTablesRequest.result_id) - - _impl_._has_bits_[0] &= ~0x00000001u; - ::io::deephaven::proto::backplane::grpc::Ticket* temp = _impl_.result_id_; - _impl_.result_id_ = nullptr; - return temp; -} -inline ::io::deephaven::proto::backplane::grpc::Ticket* AsOfJoinTablesRequest::_internal_mutable_result_id() { - ::google::protobuf::internal::TSanWrite(&_impl_); - if (_impl_.result_id_ == nullptr) { - 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(); - ::google::protobuf::internal::TSanWrite(&_impl_); - if (message_arena == nullptr) { - delete reinterpret_cast<::google::protobuf::MessageLite*>(_impl_.result_id_); - } - - if (value != nullptr) { - ::google::protobuf::Arena* submessage_arena = reinterpret_cast<::google::protobuf::MessageLite*>(value)->GetArena(); - if (message_arena != submessage_arena) { - value = ::google::protobuf::internal::GetOwnedMessage(message_arena, value, submessage_arena); - } - _impl_._has_bits_[0] |= 0x00000001u; - } else { - _impl_._has_bits_[0] &= ~0x00000001u; - } - - _impl_.result_id_ = reinterpret_cast<::io::deephaven::proto::backplane::grpc::Ticket*>(value); - // @@protoc_insertion_point(field_set_allocated:io.deephaven.proto.backplane.grpc.AsOfJoinTablesRequest.result_id) -} - -// .io.deephaven.proto.backplane.grpc.TableReference left_id = 2; -inline bool AsOfJoinTablesRequest::has_left_id() const { - bool value = (_impl_._has_bits_[0] & 0x00000002u) != 0; - PROTOBUF_ASSUME(!value || _impl_.left_id_ != nullptr); - return value; -} -inline void AsOfJoinTablesRequest::clear_left_id() { - ::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 { - ::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_); -} -inline const ::io::deephaven::proto::backplane::grpc::TableReference& AsOfJoinTablesRequest::left_id() const ABSL_ATTRIBUTE_LIFETIME_BOUND { - // @@protoc_insertion_point(field_get:io.deephaven.proto.backplane.grpc.AsOfJoinTablesRequest.left_id) - return _internal_left_id(); -} -inline void AsOfJoinTablesRequest::unsafe_arena_set_allocated_left_id(::io::deephaven::proto::backplane::grpc::TableReference* value) { - ::google::protobuf::internal::TSanWrite(&_impl_); - if (GetArena() == nullptr) { - delete reinterpret_cast<::google::protobuf::MessageLite*>(_impl_.left_id_); - } - _impl_.left_id_ = reinterpret_cast<::io::deephaven::proto::backplane::grpc::TableReference*>(value); - if (value != nullptr) { - _impl_._has_bits_[0] |= 0x00000002u; - } else { - _impl_._has_bits_[0] &= ~0x00000002u; - } - // @@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() { - ::google::protobuf::internal::TSanWrite(&_impl_); - - _impl_._has_bits_[0] &= ~0x00000002u; - ::io::deephaven::proto::backplane::grpc::TableReference* released = _impl_.left_id_; - _impl_.left_id_ = nullptr; -#ifdef PROTOBUF_FORCE_COPY_IN_RELEASE - auto* old = reinterpret_cast<::google::protobuf::MessageLite*>(released); - released = ::google::protobuf::internal::DuplicateIfNonNull(released); - if (GetArena() == nullptr) { - delete old; - } -#else // PROTOBUF_FORCE_COPY_IN_RELEASE - if (GetArena() != nullptr) { - released = ::google::protobuf::internal::DuplicateIfNonNull(released); - } -#endif // !PROTOBUF_FORCE_COPY_IN_RELEASE - return released; -} -inline ::io::deephaven::proto::backplane::grpc::TableReference* AsOfJoinTablesRequest::unsafe_arena_release_left_id() { - ::google::protobuf::internal::TSanWrite(&_impl_); - // @@protoc_insertion_point(field_release:io.deephaven.proto.backplane.grpc.AsOfJoinTablesRequest.left_id) - - _impl_._has_bits_[0] &= ~0x00000002u; - ::io::deephaven::proto::backplane::grpc::TableReference* temp = _impl_.left_id_; - _impl_.left_id_ = nullptr; - return temp; -} -inline ::io::deephaven::proto::backplane::grpc::TableReference* AsOfJoinTablesRequest::_internal_mutable_left_id() { - ::google::protobuf::internal::TSanWrite(&_impl_); - if (_impl_.left_id_ == nullptr) { - 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(); - ::google::protobuf::internal::TSanWrite(&_impl_); - if (message_arena == nullptr) { - delete (_impl_.left_id_); - } - - if (value != nullptr) { - ::google::protobuf::Arena* submessage_arena = (value)->GetArena(); - if (message_arena != submessage_arena) { - value = ::google::protobuf::internal::GetOwnedMessage(message_arena, value, submessage_arena); - } - _impl_._has_bits_[0] |= 0x00000002u; - } else { - _impl_._has_bits_[0] &= ~0x00000002u; - } - - _impl_.left_id_ = reinterpret_cast<::io::deephaven::proto::backplane::grpc::TableReference*>(value); - // @@protoc_insertion_point(field_set_allocated:io.deephaven.proto.backplane.grpc.AsOfJoinTablesRequest.left_id) -} - -// .io.deephaven.proto.backplane.grpc.TableReference right_id = 3; -inline bool AsOfJoinTablesRequest::has_right_id() const { - bool value = (_impl_._has_bits_[0] & 0x00000004u) != 0; - PROTOBUF_ASSUME(!value || _impl_.right_id_ != nullptr); - return value; -} -inline void AsOfJoinTablesRequest::clear_right_id() { - ::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 { - ::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_); -} -inline const ::io::deephaven::proto::backplane::grpc::TableReference& AsOfJoinTablesRequest::right_id() const ABSL_ATTRIBUTE_LIFETIME_BOUND { - // @@protoc_insertion_point(field_get:io.deephaven.proto.backplane.grpc.AsOfJoinTablesRequest.right_id) - return _internal_right_id(); -} -inline void AsOfJoinTablesRequest::unsafe_arena_set_allocated_right_id(::io::deephaven::proto::backplane::grpc::TableReference* value) { - ::google::protobuf::internal::TSanWrite(&_impl_); - if (GetArena() == nullptr) { - delete reinterpret_cast<::google::protobuf::MessageLite*>(_impl_.right_id_); - } - _impl_.right_id_ = reinterpret_cast<::io::deephaven::proto::backplane::grpc::TableReference*>(value); - if (value != nullptr) { - _impl_._has_bits_[0] |= 0x00000004u; - } else { - _impl_._has_bits_[0] &= ~0x00000004u; - } - // @@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() { - ::google::protobuf::internal::TSanWrite(&_impl_); - - _impl_._has_bits_[0] &= ~0x00000004u; - ::io::deephaven::proto::backplane::grpc::TableReference* released = _impl_.right_id_; - _impl_.right_id_ = nullptr; -#ifdef PROTOBUF_FORCE_COPY_IN_RELEASE - auto* old = reinterpret_cast<::google::protobuf::MessageLite*>(released); - released = ::google::protobuf::internal::DuplicateIfNonNull(released); - if (GetArena() == nullptr) { - delete old; - } -#else // PROTOBUF_FORCE_COPY_IN_RELEASE - if (GetArena() != nullptr) { - released = ::google::protobuf::internal::DuplicateIfNonNull(released); - } -#endif // !PROTOBUF_FORCE_COPY_IN_RELEASE - return released; -} -inline ::io::deephaven::proto::backplane::grpc::TableReference* AsOfJoinTablesRequest::unsafe_arena_release_right_id() { - ::google::protobuf::internal::TSanWrite(&_impl_); - // @@protoc_insertion_point(field_release:io.deephaven.proto.backplane.grpc.AsOfJoinTablesRequest.right_id) - - _impl_._has_bits_[0] &= ~0x00000004u; - ::io::deephaven::proto::backplane::grpc::TableReference* temp = _impl_.right_id_; - _impl_.right_id_ = nullptr; - return temp; -} -inline ::io::deephaven::proto::backplane::grpc::TableReference* AsOfJoinTablesRequest::_internal_mutable_right_id() { - ::google::protobuf::internal::TSanWrite(&_impl_); - if (_impl_.right_id_ == nullptr) { - 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(); - ::google::protobuf::internal::TSanWrite(&_impl_); - if (message_arena == nullptr) { - delete (_impl_.right_id_); - } - - if (value != nullptr) { - ::google::protobuf::Arena* submessage_arena = (value)->GetArena(); - if (message_arena != submessage_arena) { - value = ::google::protobuf::internal::GetOwnedMessage(message_arena, value, submessage_arena); - } - _impl_._has_bits_[0] |= 0x00000004u; - } else { - _impl_._has_bits_[0] &= ~0x00000004u; - } - - _impl_.right_id_ = reinterpret_cast<::io::deephaven::proto::backplane::grpc::TableReference*>(value); - // @@protoc_insertion_point(field_set_allocated:io.deephaven.proto.backplane.grpc.AsOfJoinTablesRequest.right_id) -} - -// repeated string columns_to_match = 4; -inline int AsOfJoinTablesRequest::_internal_columns_to_match_size() const { - return _internal_columns_to_match().size(); -} -inline int AsOfJoinTablesRequest::columns_to_match_size() const { - return _internal_columns_to_match_size(); -} -inline void AsOfJoinTablesRequest::clear_columns_to_match() { - ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.columns_to_match_.Clear(); -} -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; -} -inline const std::string& AsOfJoinTablesRequest::columns_to_match(int index) const - ABSL_ATTRIBUTE_LIFETIME_BOUND { - // @@protoc_insertion_point(field_get:io.deephaven.proto.backplane.grpc.AsOfJoinTablesRequest.columns_to_match) - return _internal_columns_to_match().Get(index); -} -inline std::string* AsOfJoinTablesRequest::mutable_columns_to_match(int index) - ABSL_ATTRIBUTE_LIFETIME_BOUND { - // @@protoc_insertion_point(field_mutable:io.deephaven.proto.backplane.grpc.AsOfJoinTablesRequest.columns_to_match) - return _internal_mutable_columns_to_match()->Mutable(index); -} -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) -} -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 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) - return _internal_columns_to_match(); -} -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) - ::google::protobuf::internal::TSanWrite(&_impl_); - return _internal_mutable_columns_to_match(); -} -inline const ::google::protobuf::RepeatedPtrField& -AsOfJoinTablesRequest::_internal_columns_to_match() const { - ::google::protobuf::internal::TSanRead(&_impl_); - return _impl_.columns_to_match_; -} -inline ::google::protobuf::RepeatedPtrField* -AsOfJoinTablesRequest::_internal_mutable_columns_to_match() { - ::google::protobuf::internal::TSanRead(&_impl_); - return &_impl_.columns_to_match_; -} - -// repeated string columns_to_add = 5; -inline int AsOfJoinTablesRequest::_internal_columns_to_add_size() const { - return _internal_columns_to_add().size(); -} -inline int AsOfJoinTablesRequest::columns_to_add_size() const { - return _internal_columns_to_add_size(); -} -inline void AsOfJoinTablesRequest::clear_columns_to_add() { - ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.columns_to_add_.Clear(); -} -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; -} -inline const std::string& AsOfJoinTablesRequest::columns_to_add(int index) const - ABSL_ATTRIBUTE_LIFETIME_BOUND { - // @@protoc_insertion_point(field_get:io.deephaven.proto.backplane.grpc.AsOfJoinTablesRequest.columns_to_add) - return _internal_columns_to_add().Get(index); -} -inline std::string* AsOfJoinTablesRequest::mutable_columns_to_add(int index) - ABSL_ATTRIBUTE_LIFETIME_BOUND { - // @@protoc_insertion_point(field_mutable:io.deephaven.proto.backplane.grpc.AsOfJoinTablesRequest.columns_to_add) - return _internal_mutable_columns_to_add()->Mutable(index); -} -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) -} -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 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) - return _internal_columns_to_add(); -} -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) - ::google::protobuf::internal::TSanWrite(&_impl_); - return _internal_mutable_columns_to_add(); -} -inline const ::google::protobuf::RepeatedPtrField& -AsOfJoinTablesRequest::_internal_columns_to_add() const { - ::google::protobuf::internal::TSanRead(&_impl_); - return _impl_.columns_to_add_; -} -inline ::google::protobuf::RepeatedPtrField* -AsOfJoinTablesRequest::_internal_mutable_columns_to_add() { - ::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() { - ::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 { - // @@protoc_insertion_point(field_get:io.deephaven.proto.backplane.grpc.AsOfJoinTablesRequest.as_of_match_rule) - return _internal_as_of_match_rule(); -} -inline void AsOfJoinTablesRequest::set_as_of_match_rule(::io::deephaven::proto::backplane::grpc::AsOfJoinTablesRequest_MatchRule value) { - _internal_set_as_of_match_rule(value); - // @@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 { - ::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) { - ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.as_of_match_rule_ = value; -} - -// ------------------------------------------------------------------- - -// AjRajTablesRequest - -// .io.deephaven.proto.backplane.grpc.Ticket result_id = 1; -inline bool AjRajTablesRequest::has_result_id() const { - bool value = (_impl_._has_bits_[0] & 0x00000001u) != 0; - PROTOBUF_ASSUME(!value || _impl_.result_id_ != nullptr); - return value; -} -inline const ::io::deephaven::proto::backplane::grpc::Ticket& AjRajTablesRequest::_internal_result_id() const { - ::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_); -} -inline const ::io::deephaven::proto::backplane::grpc::Ticket& AjRajTablesRequest::result_id() const ABSL_ATTRIBUTE_LIFETIME_BOUND { - // @@protoc_insertion_point(field_get:io.deephaven.proto.backplane.grpc.AjRajTablesRequest.result_id) - return _internal_result_id(); -} -inline void AjRajTablesRequest::unsafe_arena_set_allocated_result_id(::io::deephaven::proto::backplane::grpc::Ticket* value) { - ::google::protobuf::internal::TSanWrite(&_impl_); - if (GetArena() == nullptr) { - delete reinterpret_cast<::google::protobuf::MessageLite*>(_impl_.result_id_); - } - _impl_.result_id_ = reinterpret_cast<::io::deephaven::proto::backplane::grpc::Ticket*>(value); - if (value != nullptr) { - _impl_._has_bits_[0] |= 0x00000001u; - } else { - _impl_._has_bits_[0] &= ~0x00000001u; - } - // @@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() { - ::google::protobuf::internal::TSanWrite(&_impl_); - - _impl_._has_bits_[0] &= ~0x00000001u; - ::io::deephaven::proto::backplane::grpc::Ticket* released = _impl_.result_id_; - _impl_.result_id_ = nullptr; -#ifdef PROTOBUF_FORCE_COPY_IN_RELEASE - auto* old = reinterpret_cast<::google::protobuf::MessageLite*>(released); - released = ::google::protobuf::internal::DuplicateIfNonNull(released); - if (GetArena() == nullptr) { - delete old; - } -#else // PROTOBUF_FORCE_COPY_IN_RELEASE - if (GetArena() != nullptr) { - released = ::google::protobuf::internal::DuplicateIfNonNull(released); - } -#endif // !PROTOBUF_FORCE_COPY_IN_RELEASE - return released; -} -inline ::io::deephaven::proto::backplane::grpc::Ticket* AjRajTablesRequest::unsafe_arena_release_result_id() { - ::google::protobuf::internal::TSanWrite(&_impl_); - // @@protoc_insertion_point(field_release:io.deephaven.proto.backplane.grpc.AjRajTablesRequest.result_id) - - _impl_._has_bits_[0] &= ~0x00000001u; - ::io::deephaven::proto::backplane::grpc::Ticket* temp = _impl_.result_id_; - _impl_.result_id_ = nullptr; - return temp; -} -inline ::io::deephaven::proto::backplane::grpc::Ticket* AjRajTablesRequest::_internal_mutable_result_id() { - ::google::protobuf::internal::TSanWrite(&_impl_); - if (_impl_.result_id_ == nullptr) { - 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(); - ::google::protobuf::internal::TSanWrite(&_impl_); - if (message_arena == nullptr) { - delete reinterpret_cast<::google::protobuf::MessageLite*>(_impl_.result_id_); - } - - if (value != nullptr) { - ::google::protobuf::Arena* submessage_arena = reinterpret_cast<::google::protobuf::MessageLite*>(value)->GetArena(); - if (message_arena != submessage_arena) { - value = ::google::protobuf::internal::GetOwnedMessage(message_arena, value, submessage_arena); - } - _impl_._has_bits_[0] |= 0x00000001u; - } else { - _impl_._has_bits_[0] &= ~0x00000001u; - } - - _impl_.result_id_ = reinterpret_cast<::io::deephaven::proto::backplane::grpc::Ticket*>(value); - // @@protoc_insertion_point(field_set_allocated:io.deephaven.proto.backplane.grpc.AjRajTablesRequest.result_id) -} - -// .io.deephaven.proto.backplane.grpc.TableReference left_id = 2; -inline bool AjRajTablesRequest::has_left_id() const { - bool value = (_impl_._has_bits_[0] & 0x00000002u) != 0; - PROTOBUF_ASSUME(!value || _impl_.left_id_ != nullptr); - return value; -} -inline void AjRajTablesRequest::clear_left_id() { - ::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 { - ::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_); -} -inline const ::io::deephaven::proto::backplane::grpc::TableReference& AjRajTablesRequest::left_id() const ABSL_ATTRIBUTE_LIFETIME_BOUND { - // @@protoc_insertion_point(field_get:io.deephaven.proto.backplane.grpc.AjRajTablesRequest.left_id) - return _internal_left_id(); -} -inline void AjRajTablesRequest::unsafe_arena_set_allocated_left_id(::io::deephaven::proto::backplane::grpc::TableReference* value) { - ::google::protobuf::internal::TSanWrite(&_impl_); - if (GetArena() == nullptr) { - delete reinterpret_cast<::google::protobuf::MessageLite*>(_impl_.left_id_); - } - _impl_.left_id_ = reinterpret_cast<::io::deephaven::proto::backplane::grpc::TableReference*>(value); - if (value != nullptr) { - _impl_._has_bits_[0] |= 0x00000002u; - } else { - _impl_._has_bits_[0] &= ~0x00000002u; - } - // @@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() { - ::google::protobuf::internal::TSanWrite(&_impl_); - - _impl_._has_bits_[0] &= ~0x00000002u; - ::io::deephaven::proto::backplane::grpc::TableReference* released = _impl_.left_id_; - _impl_.left_id_ = nullptr; -#ifdef PROTOBUF_FORCE_COPY_IN_RELEASE - auto* old = reinterpret_cast<::google::protobuf::MessageLite*>(released); - released = ::google::protobuf::internal::DuplicateIfNonNull(released); - if (GetArena() == nullptr) { - delete old; - } -#else // PROTOBUF_FORCE_COPY_IN_RELEASE - if (GetArena() != nullptr) { - released = ::google::protobuf::internal::DuplicateIfNonNull(released); - } -#endif // !PROTOBUF_FORCE_COPY_IN_RELEASE - return released; -} -inline ::io::deephaven::proto::backplane::grpc::TableReference* AjRajTablesRequest::unsafe_arena_release_left_id() { - ::google::protobuf::internal::TSanWrite(&_impl_); - // @@protoc_insertion_point(field_release:io.deephaven.proto.backplane.grpc.AjRajTablesRequest.left_id) - - _impl_._has_bits_[0] &= ~0x00000002u; - ::io::deephaven::proto::backplane::grpc::TableReference* temp = _impl_.left_id_; - _impl_.left_id_ = nullptr; - return temp; -} -inline ::io::deephaven::proto::backplane::grpc::TableReference* AjRajTablesRequest::_internal_mutable_left_id() { - ::google::protobuf::internal::TSanWrite(&_impl_); - if (_impl_.left_id_ == nullptr) { - 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(); - ::google::protobuf::internal::TSanWrite(&_impl_); - if (message_arena == nullptr) { - delete (_impl_.left_id_); - } - - if (value != nullptr) { - ::google::protobuf::Arena* submessage_arena = (value)->GetArena(); - if (message_arena != submessage_arena) { - value = ::google::protobuf::internal::GetOwnedMessage(message_arena, value, submessage_arena); - } - _impl_._has_bits_[0] |= 0x00000002u; - } else { - _impl_._has_bits_[0] &= ~0x00000002u; - } - - _impl_.left_id_ = reinterpret_cast<::io::deephaven::proto::backplane::grpc::TableReference*>(value); - // @@protoc_insertion_point(field_set_allocated:io.deephaven.proto.backplane.grpc.AjRajTablesRequest.left_id) -} - -// .io.deephaven.proto.backplane.grpc.TableReference right_id = 3; -inline bool AjRajTablesRequest::has_right_id() const { - bool value = (_impl_._has_bits_[0] & 0x00000004u) != 0; - PROTOBUF_ASSUME(!value || _impl_.right_id_ != nullptr); - return value; -} -inline void AjRajTablesRequest::clear_right_id() { - ::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 { - ::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_); -} -inline const ::io::deephaven::proto::backplane::grpc::TableReference& AjRajTablesRequest::right_id() const ABSL_ATTRIBUTE_LIFETIME_BOUND { - // @@protoc_insertion_point(field_get:io.deephaven.proto.backplane.grpc.AjRajTablesRequest.right_id) - return _internal_right_id(); -} -inline void AjRajTablesRequest::unsafe_arena_set_allocated_right_id(::io::deephaven::proto::backplane::grpc::TableReference* value) { - ::google::protobuf::internal::TSanWrite(&_impl_); - if (GetArena() == nullptr) { - delete reinterpret_cast<::google::protobuf::MessageLite*>(_impl_.right_id_); - } - _impl_.right_id_ = reinterpret_cast<::io::deephaven::proto::backplane::grpc::TableReference*>(value); - if (value != nullptr) { - _impl_._has_bits_[0] |= 0x00000004u; - } else { - _impl_._has_bits_[0] &= ~0x00000004u; - } - // @@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() { - ::google::protobuf::internal::TSanWrite(&_impl_); - - _impl_._has_bits_[0] &= ~0x00000004u; - ::io::deephaven::proto::backplane::grpc::TableReference* released = _impl_.right_id_; - _impl_.right_id_ = nullptr; -#ifdef PROTOBUF_FORCE_COPY_IN_RELEASE - auto* old = reinterpret_cast<::google::protobuf::MessageLite*>(released); - released = ::google::protobuf::internal::DuplicateIfNonNull(released); - if (GetArena() == nullptr) { - delete old; - } -#else // PROTOBUF_FORCE_COPY_IN_RELEASE - if (GetArena() != nullptr) { - released = ::google::protobuf::internal::DuplicateIfNonNull(released); - } -#endif // !PROTOBUF_FORCE_COPY_IN_RELEASE - return released; -} -inline ::io::deephaven::proto::backplane::grpc::TableReference* AjRajTablesRequest::unsafe_arena_release_right_id() { - ::google::protobuf::internal::TSanWrite(&_impl_); - // @@protoc_insertion_point(field_release:io.deephaven.proto.backplane.grpc.AjRajTablesRequest.right_id) - - _impl_._has_bits_[0] &= ~0x00000004u; - ::io::deephaven::proto::backplane::grpc::TableReference* temp = _impl_.right_id_; - _impl_.right_id_ = nullptr; - return temp; -} -inline ::io::deephaven::proto::backplane::grpc::TableReference* AjRajTablesRequest::_internal_mutable_right_id() { - ::google::protobuf::internal::TSanWrite(&_impl_); - if (_impl_.right_id_ == nullptr) { - 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(); - ::google::protobuf::internal::TSanWrite(&_impl_); - if (message_arena == nullptr) { - delete (_impl_.right_id_); - } - - if (value != nullptr) { - ::google::protobuf::Arena* submessage_arena = (value)->GetArena(); - if (message_arena != submessage_arena) { - value = ::google::protobuf::internal::GetOwnedMessage(message_arena, value, submessage_arena); - } - _impl_._has_bits_[0] |= 0x00000004u; - } else { - _impl_._has_bits_[0] &= ~0x00000004u; - } - - _impl_.right_id_ = reinterpret_cast<::io::deephaven::proto::backplane::grpc::TableReference*>(value); - // @@protoc_insertion_point(field_set_allocated:io.deephaven.proto.backplane.grpc.AjRajTablesRequest.right_id) -} - -// repeated string exact_match_columns = 4; -inline int AjRajTablesRequest::_internal_exact_match_columns_size() const { - return _internal_exact_match_columns().size(); -} -inline int AjRajTablesRequest::exact_match_columns_size() const { - return _internal_exact_match_columns_size(); -} -inline void AjRajTablesRequest::clear_exact_match_columns() { - ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.exact_match_columns_.Clear(); -} -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; -} -inline const std::string& AjRajTablesRequest::exact_match_columns(int index) const - ABSL_ATTRIBUTE_LIFETIME_BOUND { - // @@protoc_insertion_point(field_get:io.deephaven.proto.backplane.grpc.AjRajTablesRequest.exact_match_columns) - return _internal_exact_match_columns().Get(index); -} -inline std::string* AjRajTablesRequest::mutable_exact_match_columns(int index) - ABSL_ATTRIBUTE_LIFETIME_BOUND { - // @@protoc_insertion_point(field_mutable:io.deephaven.proto.backplane.grpc.AjRajTablesRequest.exact_match_columns) - return _internal_mutable_exact_match_columns()->Mutable(index); -} -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) -} -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 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) - return _internal_exact_match_columns(); -} -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) - ::google::protobuf::internal::TSanWrite(&_impl_); - return _internal_mutable_exact_match_columns(); -} -inline const ::google::protobuf::RepeatedPtrField& -AjRajTablesRequest::_internal_exact_match_columns() const { - ::google::protobuf::internal::TSanRead(&_impl_); - return _impl_.exact_match_columns_; -} -inline ::google::protobuf::RepeatedPtrField* -AjRajTablesRequest::_internal_mutable_exact_match_columns() { - ::google::protobuf::internal::TSanRead(&_impl_); - return &_impl_.exact_match_columns_; -} - -// string as_of_column = 5; -inline void AjRajTablesRequest::clear_as_of_column() { - ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.as_of_column_.ClearToEmpty(); -} -inline const std::string& AjRajTablesRequest::as_of_column() const - ABSL_ATTRIBUTE_LIFETIME_BOUND { - // @@protoc_insertion_point(field_get:io.deephaven.proto.backplane.grpc.AjRajTablesRequest.as_of_column) - return _internal_as_of_column(); -} -template -inline PROTOBUF_ALWAYS_INLINE void AjRajTablesRequest::set_as_of_column(Arg_&& arg, - Args_... args) { - ::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) -} -inline std::string* AjRajTablesRequest::mutable_as_of_column() ABSL_ATTRIBUTE_LIFETIME_BOUND { - std::string* _s = _internal_mutable_as_of_column(); - // @@protoc_insertion_point(field_mutable:io.deephaven.proto.backplane.grpc.AjRajTablesRequest.as_of_column) - return _s; -} -inline const std::string& AjRajTablesRequest::_internal_as_of_column() const { - ::google::protobuf::internal::TSanRead(&_impl_); - return _impl_.as_of_column_.Get(); -} -inline void AjRajTablesRequest::_internal_set_as_of_column(const std::string& value) { - ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.as_of_column_.Set(value, GetArena()); -} -inline std::string* AjRajTablesRequest::_internal_mutable_as_of_column() { - ::google::protobuf::internal::TSanWrite(&_impl_); - return _impl_.as_of_column_.Mutable( GetArena()); -} -inline std::string* AjRajTablesRequest::release_as_of_column() { - ::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) { - ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.as_of_column_.SetAllocated(value, GetArena()); - #ifdef PROTOBUF_FORCE_COPY_DEFAULT_STRING - if (_impl_.as_of_column_.IsDefault()) { - _impl_.as_of_column_.Set("", GetArena()); - } - #endif // PROTOBUF_FORCE_COPY_DEFAULT_STRING - // @@protoc_insertion_point(field_set_allocated:io.deephaven.proto.backplane.grpc.AjRajTablesRequest.as_of_column) -} - -// repeated string columns_to_add = 6; -inline int AjRajTablesRequest::_internal_columns_to_add_size() const { - return _internal_columns_to_add().size(); -} -inline int AjRajTablesRequest::columns_to_add_size() const { - return _internal_columns_to_add_size(); -} -inline void AjRajTablesRequest::clear_columns_to_add() { - ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.columns_to_add_.Clear(); -} -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; -} -inline const std::string& AjRajTablesRequest::columns_to_add(int index) const - ABSL_ATTRIBUTE_LIFETIME_BOUND { - // @@protoc_insertion_point(field_get:io.deephaven.proto.backplane.grpc.AjRajTablesRequest.columns_to_add) - return _internal_columns_to_add().Get(index); -} -inline std::string* AjRajTablesRequest::mutable_columns_to_add(int index) - ABSL_ATTRIBUTE_LIFETIME_BOUND { - // @@protoc_insertion_point(field_mutable:io.deephaven.proto.backplane.grpc.AjRajTablesRequest.columns_to_add) - return _internal_mutable_columns_to_add()->Mutable(index); -} -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) -} -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 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) - return _internal_columns_to_add(); -} -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) - ::google::protobuf::internal::TSanWrite(&_impl_); - return _internal_mutable_columns_to_add(); -} -inline const ::google::protobuf::RepeatedPtrField& -AjRajTablesRequest::_internal_columns_to_add() const { - ::google::protobuf::internal::TSanRead(&_impl_); - return _impl_.columns_to_add_; -} -inline ::google::protobuf::RepeatedPtrField* -AjRajTablesRequest::_internal_mutable_columns_to_add() { - ::google::protobuf::internal::TSanRead(&_impl_); - return &_impl_.columns_to_add_; -} - -// ------------------------------------------------------------------- - -// MultiJoinInput - -// .io.deephaven.proto.backplane.grpc.TableReference source_id = 1; -inline bool MultiJoinInput::has_source_id() const { - bool value = (_impl_._has_bits_[0] & 0x00000001u) != 0; - PROTOBUF_ASSUME(!value || _impl_.source_id_ != nullptr); - return value; -} -inline void MultiJoinInput::clear_source_id() { - ::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 { - ::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_); -} -inline const ::io::deephaven::proto::backplane::grpc::TableReference& MultiJoinInput::source_id() const ABSL_ATTRIBUTE_LIFETIME_BOUND { - // @@protoc_insertion_point(field_get:io.deephaven.proto.backplane.grpc.MultiJoinInput.source_id) - return _internal_source_id(); -} -inline void MultiJoinInput::unsafe_arena_set_allocated_source_id(::io::deephaven::proto::backplane::grpc::TableReference* value) { - ::google::protobuf::internal::TSanWrite(&_impl_); - if (GetArena() == nullptr) { - delete reinterpret_cast<::google::protobuf::MessageLite*>(_impl_.source_id_); - } - _impl_.source_id_ = reinterpret_cast<::io::deephaven::proto::backplane::grpc::TableReference*>(value); - if (value != nullptr) { - _impl_._has_bits_[0] |= 0x00000001u; - } else { - _impl_._has_bits_[0] &= ~0x00000001u; - } - // @@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() { - ::google::protobuf::internal::TSanWrite(&_impl_); - - _impl_._has_bits_[0] &= ~0x00000001u; - ::io::deephaven::proto::backplane::grpc::TableReference* released = _impl_.source_id_; - _impl_.source_id_ = nullptr; -#ifdef PROTOBUF_FORCE_COPY_IN_RELEASE - auto* old = reinterpret_cast<::google::protobuf::MessageLite*>(released); - released = ::google::protobuf::internal::DuplicateIfNonNull(released); - if (GetArena() == nullptr) { - delete old; - } -#else // PROTOBUF_FORCE_COPY_IN_RELEASE - if (GetArena() != nullptr) { - released = ::google::protobuf::internal::DuplicateIfNonNull(released); - } -#endif // !PROTOBUF_FORCE_COPY_IN_RELEASE - return released; -} -inline ::io::deephaven::proto::backplane::grpc::TableReference* MultiJoinInput::unsafe_arena_release_source_id() { - ::google::protobuf::internal::TSanWrite(&_impl_); - // @@protoc_insertion_point(field_release:io.deephaven.proto.backplane.grpc.MultiJoinInput.source_id) - - _impl_._has_bits_[0] &= ~0x00000001u; - ::io::deephaven::proto::backplane::grpc::TableReference* temp = _impl_.source_id_; - _impl_.source_id_ = nullptr; - return temp; -} -inline ::io::deephaven::proto::backplane::grpc::TableReference* MultiJoinInput::_internal_mutable_source_id() { - ::google::protobuf::internal::TSanWrite(&_impl_); - if (_impl_.source_id_ == nullptr) { - 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(); - ::google::protobuf::internal::TSanWrite(&_impl_); - if (message_arena == nullptr) { - delete (_impl_.source_id_); - } - - if (value != nullptr) { - ::google::protobuf::Arena* submessage_arena = (value)->GetArena(); - if (message_arena != submessage_arena) { - value = ::google::protobuf::internal::GetOwnedMessage(message_arena, value, submessage_arena); - } - _impl_._has_bits_[0] |= 0x00000001u; - } else { - _impl_._has_bits_[0] &= ~0x00000001u; - } - - _impl_.source_id_ = reinterpret_cast<::io::deephaven::proto::backplane::grpc::TableReference*>(value); - // @@protoc_insertion_point(field_set_allocated:io.deephaven.proto.backplane.grpc.MultiJoinInput.source_id) -} - -// repeated string columns_to_match = 2; -inline int MultiJoinInput::_internal_columns_to_match_size() const { - return _internal_columns_to_match().size(); -} -inline int MultiJoinInput::columns_to_match_size() const { - return _internal_columns_to_match_size(); -} -inline void MultiJoinInput::clear_columns_to_match() { - ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.columns_to_match_.Clear(); -} -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; -} -inline const std::string& MultiJoinInput::columns_to_match(int index) const - ABSL_ATTRIBUTE_LIFETIME_BOUND { - // @@protoc_insertion_point(field_get:io.deephaven.proto.backplane.grpc.MultiJoinInput.columns_to_match) - return _internal_columns_to_match().Get(index); -} -inline std::string* MultiJoinInput::mutable_columns_to_match(int index) - ABSL_ATTRIBUTE_LIFETIME_BOUND { - // @@protoc_insertion_point(field_mutable:io.deephaven.proto.backplane.grpc.MultiJoinInput.columns_to_match) - return _internal_mutable_columns_to_match()->Mutable(index); -} -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) -} -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 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) - return _internal_columns_to_match(); -} -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) - ::google::protobuf::internal::TSanWrite(&_impl_); - return _internal_mutable_columns_to_match(); -} -inline const ::google::protobuf::RepeatedPtrField& -MultiJoinInput::_internal_columns_to_match() const { - ::google::protobuf::internal::TSanRead(&_impl_); - return _impl_.columns_to_match_; -} -inline ::google::protobuf::RepeatedPtrField* -MultiJoinInput::_internal_mutable_columns_to_match() { - ::google::protobuf::internal::TSanRead(&_impl_); - return &_impl_.columns_to_match_; -} - -// repeated string columns_to_add = 3; -inline int MultiJoinInput::_internal_columns_to_add_size() const { - return _internal_columns_to_add().size(); -} -inline int MultiJoinInput::columns_to_add_size() const { - return _internal_columns_to_add_size(); -} -inline void MultiJoinInput::clear_columns_to_add() { - ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.columns_to_add_.Clear(); -} -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; -} -inline const std::string& MultiJoinInput::columns_to_add(int index) const - ABSL_ATTRIBUTE_LIFETIME_BOUND { - // @@protoc_insertion_point(field_get:io.deephaven.proto.backplane.grpc.MultiJoinInput.columns_to_add) - return _internal_columns_to_add().Get(index); -} -inline std::string* MultiJoinInput::mutable_columns_to_add(int index) - ABSL_ATTRIBUTE_LIFETIME_BOUND { - // @@protoc_insertion_point(field_mutable:io.deephaven.proto.backplane.grpc.MultiJoinInput.columns_to_add) - return _internal_mutable_columns_to_add()->Mutable(index); -} -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) -} -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 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) - return _internal_columns_to_add(); -} -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) - ::google::protobuf::internal::TSanWrite(&_impl_); - return _internal_mutable_columns_to_add(); -} -inline const ::google::protobuf::RepeatedPtrField& -MultiJoinInput::_internal_columns_to_add() const { - ::google::protobuf::internal::TSanRead(&_impl_); - return _impl_.columns_to_add_; -} -inline ::google::protobuf::RepeatedPtrField* -MultiJoinInput::_internal_mutable_columns_to_add() { - ::google::protobuf::internal::TSanRead(&_impl_); - return &_impl_.columns_to_add_; -} - -// ------------------------------------------------------------------- - -// MultiJoinTablesRequest - -// .io.deephaven.proto.backplane.grpc.Ticket result_id = 1; -inline bool MultiJoinTablesRequest::has_result_id() const { - bool value = (_impl_._has_bits_[0] & 0x00000001u) != 0; - PROTOBUF_ASSUME(!value || _impl_.result_id_ != nullptr); - return value; -} -inline const ::io::deephaven::proto::backplane::grpc::Ticket& MultiJoinTablesRequest::_internal_result_id() const { - ::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_); -} -inline const ::io::deephaven::proto::backplane::grpc::Ticket& MultiJoinTablesRequest::result_id() const ABSL_ATTRIBUTE_LIFETIME_BOUND { - // @@protoc_insertion_point(field_get:io.deephaven.proto.backplane.grpc.MultiJoinTablesRequest.result_id) - return _internal_result_id(); -} -inline void MultiJoinTablesRequest::unsafe_arena_set_allocated_result_id(::io::deephaven::proto::backplane::grpc::Ticket* value) { - ::google::protobuf::internal::TSanWrite(&_impl_); - if (GetArena() == nullptr) { - delete reinterpret_cast<::google::protobuf::MessageLite*>(_impl_.result_id_); - } - _impl_.result_id_ = reinterpret_cast<::io::deephaven::proto::backplane::grpc::Ticket*>(value); - if (value != nullptr) { - _impl_._has_bits_[0] |= 0x00000001u; - } else { - _impl_._has_bits_[0] &= ~0x00000001u; - } - // @@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() { - ::google::protobuf::internal::TSanWrite(&_impl_); - - _impl_._has_bits_[0] &= ~0x00000001u; - ::io::deephaven::proto::backplane::grpc::Ticket* released = _impl_.result_id_; - _impl_.result_id_ = nullptr; -#ifdef PROTOBUF_FORCE_COPY_IN_RELEASE - auto* old = reinterpret_cast<::google::protobuf::MessageLite*>(released); - released = ::google::protobuf::internal::DuplicateIfNonNull(released); - if (GetArena() == nullptr) { - delete old; - } -#else // PROTOBUF_FORCE_COPY_IN_RELEASE - if (GetArena() != nullptr) { - released = ::google::protobuf::internal::DuplicateIfNonNull(released); - } -#endif // !PROTOBUF_FORCE_COPY_IN_RELEASE - return released; -} -inline ::io::deephaven::proto::backplane::grpc::Ticket* MultiJoinTablesRequest::unsafe_arena_release_result_id() { - ::google::protobuf::internal::TSanWrite(&_impl_); - // @@protoc_insertion_point(field_release:io.deephaven.proto.backplane.grpc.MultiJoinTablesRequest.result_id) - - _impl_._has_bits_[0] &= ~0x00000001u; - ::io::deephaven::proto::backplane::grpc::Ticket* temp = _impl_.result_id_; - _impl_.result_id_ = nullptr; - return temp; -} -inline ::io::deephaven::proto::backplane::grpc::Ticket* MultiJoinTablesRequest::_internal_mutable_result_id() { - ::google::protobuf::internal::TSanWrite(&_impl_); - if (_impl_.result_id_ == nullptr) { - 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(); - ::google::protobuf::internal::TSanWrite(&_impl_); - if (message_arena == nullptr) { - delete reinterpret_cast<::google::protobuf::MessageLite*>(_impl_.result_id_); - } - - if (value != nullptr) { - ::google::protobuf::Arena* submessage_arena = reinterpret_cast<::google::protobuf::MessageLite*>(value)->GetArena(); - if (message_arena != submessage_arena) { - value = ::google::protobuf::internal::GetOwnedMessage(message_arena, value, submessage_arena); - } - _impl_._has_bits_[0] |= 0x00000001u; - } else { - _impl_._has_bits_[0] &= ~0x00000001u; - } - - _impl_.result_id_ = reinterpret_cast<::io::deephaven::proto::backplane::grpc::Ticket*>(value); - // @@protoc_insertion_point(field_set_allocated:io.deephaven.proto.backplane.grpc.MultiJoinTablesRequest.result_id) -} - -// repeated .io.deephaven.proto.backplane.grpc.MultiJoinInput multi_join_inputs = 2; -inline int MultiJoinTablesRequest::_internal_multi_join_inputs_size() const { - return _internal_multi_join_inputs().size(); -} -inline int MultiJoinTablesRequest::multi_join_inputs_size() const { - return _internal_multi_join_inputs_size(); -} -inline void MultiJoinTablesRequest::clear_multi_join_inputs() { - ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.multi_join_inputs_.Clear(); -} -inline ::io::deephaven::proto::backplane::grpc::MultiJoinInput* MultiJoinTablesRequest::mutable_multi_join_inputs(int index) - ABSL_ATTRIBUTE_LIFETIME_BOUND { - // @@protoc_insertion_point(field_mutable:io.deephaven.proto.backplane.grpc.MultiJoinTablesRequest.multi_join_inputs) - return _internal_mutable_multi_join_inputs()->Mutable(index); -} -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) - ::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 - ABSL_ATTRIBUTE_LIFETIME_BOUND { - // @@protoc_insertion_point(field_get:io.deephaven.proto.backplane.grpc.MultiJoinTablesRequest.multi_join_inputs) - return _internal_multi_join_inputs().Get(index); -} -inline ::io::deephaven::proto::backplane::grpc::MultiJoinInput* MultiJoinTablesRequest::add_multi_join_inputs() ABSL_ATTRIBUTE_LIFETIME_BOUND { - ::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; -} -inline const ::google::protobuf::RepeatedPtrField<::io::deephaven::proto::backplane::grpc::MultiJoinInput>& MultiJoinTablesRequest::multi_join_inputs() const - ABSL_ATTRIBUTE_LIFETIME_BOUND { - // @@protoc_insertion_point(field_list:io.deephaven.proto.backplane.grpc.MultiJoinTablesRequest.multi_join_inputs) - return _internal_multi_join_inputs(); -} -inline const ::google::protobuf::RepeatedPtrField<::io::deephaven::proto::backplane::grpc::MultiJoinInput>& -MultiJoinTablesRequest::_internal_multi_join_inputs() const { - ::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() { - ::google::protobuf::internal::TSanRead(&_impl_); - return &_impl_.multi_join_inputs_; -} - -// ------------------------------------------------------------------- - -// RangeJoinTablesRequest - -// .io.deephaven.proto.backplane.grpc.Ticket result_id = 1; -inline bool RangeJoinTablesRequest::has_result_id() const { - bool value = (_impl_._has_bits_[0] & 0x00000001u) != 0; - PROTOBUF_ASSUME(!value || _impl_.result_id_ != nullptr); - return value; -} -inline const ::io::deephaven::proto::backplane::grpc::Ticket& RangeJoinTablesRequest::_internal_result_id() const { - ::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_); -} -inline const ::io::deephaven::proto::backplane::grpc::Ticket& RangeJoinTablesRequest::result_id() const ABSL_ATTRIBUTE_LIFETIME_BOUND { - // @@protoc_insertion_point(field_get:io.deephaven.proto.backplane.grpc.RangeJoinTablesRequest.result_id) - return _internal_result_id(); -} -inline void RangeJoinTablesRequest::unsafe_arena_set_allocated_result_id(::io::deephaven::proto::backplane::grpc::Ticket* value) { - ::google::protobuf::internal::TSanWrite(&_impl_); - if (GetArena() == nullptr) { - delete reinterpret_cast<::google::protobuf::MessageLite*>(_impl_.result_id_); - } - _impl_.result_id_ = reinterpret_cast<::io::deephaven::proto::backplane::grpc::Ticket*>(value); - if (value != nullptr) { - _impl_._has_bits_[0] |= 0x00000001u; - } else { - _impl_._has_bits_[0] &= ~0x00000001u; - } - // @@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() { - ::google::protobuf::internal::TSanWrite(&_impl_); - - _impl_._has_bits_[0] &= ~0x00000001u; - ::io::deephaven::proto::backplane::grpc::Ticket* released = _impl_.result_id_; - _impl_.result_id_ = nullptr; -#ifdef PROTOBUF_FORCE_COPY_IN_RELEASE - auto* old = reinterpret_cast<::google::protobuf::MessageLite*>(released); - released = ::google::protobuf::internal::DuplicateIfNonNull(released); - if (GetArena() == nullptr) { - delete old; - } -#else // PROTOBUF_FORCE_COPY_IN_RELEASE - if (GetArena() != nullptr) { - released = ::google::protobuf::internal::DuplicateIfNonNull(released); - } -#endif // !PROTOBUF_FORCE_COPY_IN_RELEASE - return released; -} -inline ::io::deephaven::proto::backplane::grpc::Ticket* RangeJoinTablesRequest::unsafe_arena_release_result_id() { - ::google::protobuf::internal::TSanWrite(&_impl_); - // @@protoc_insertion_point(field_release:io.deephaven.proto.backplane.grpc.RangeJoinTablesRequest.result_id) - - _impl_._has_bits_[0] &= ~0x00000001u; - ::io::deephaven::proto::backplane::grpc::Ticket* temp = _impl_.result_id_; - _impl_.result_id_ = nullptr; - return temp; -} -inline ::io::deephaven::proto::backplane::grpc::Ticket* RangeJoinTablesRequest::_internal_mutable_result_id() { - ::google::protobuf::internal::TSanWrite(&_impl_); - if (_impl_.result_id_ == nullptr) { - 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(); - ::google::protobuf::internal::TSanWrite(&_impl_); - if (message_arena == nullptr) { - delete reinterpret_cast<::google::protobuf::MessageLite*>(_impl_.result_id_); - } - - if (value != nullptr) { - ::google::protobuf::Arena* submessage_arena = reinterpret_cast<::google::protobuf::MessageLite*>(value)->GetArena(); - if (message_arena != submessage_arena) { - value = ::google::protobuf::internal::GetOwnedMessage(message_arena, value, submessage_arena); - } - _impl_._has_bits_[0] |= 0x00000001u; - } else { - _impl_._has_bits_[0] &= ~0x00000001u; - } - - _impl_.result_id_ = reinterpret_cast<::io::deephaven::proto::backplane::grpc::Ticket*>(value); - // @@protoc_insertion_point(field_set_allocated:io.deephaven.proto.backplane.grpc.RangeJoinTablesRequest.result_id) -} - -// .io.deephaven.proto.backplane.grpc.TableReference left_id = 2; -inline bool RangeJoinTablesRequest::has_left_id() const { - bool value = (_impl_._has_bits_[0] & 0x00000002u) != 0; - PROTOBUF_ASSUME(!value || _impl_.left_id_ != nullptr); - return value; -} -inline void RangeJoinTablesRequest::clear_left_id() { - ::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 { - ::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_); -} -inline const ::io::deephaven::proto::backplane::grpc::TableReference& RangeJoinTablesRequest::left_id() const ABSL_ATTRIBUTE_LIFETIME_BOUND { - // @@protoc_insertion_point(field_get:io.deephaven.proto.backplane.grpc.RangeJoinTablesRequest.left_id) - return _internal_left_id(); -} -inline void RangeJoinTablesRequest::unsafe_arena_set_allocated_left_id(::io::deephaven::proto::backplane::grpc::TableReference* value) { - ::google::protobuf::internal::TSanWrite(&_impl_); - if (GetArena() == nullptr) { - delete reinterpret_cast<::google::protobuf::MessageLite*>(_impl_.left_id_); - } - _impl_.left_id_ = reinterpret_cast<::io::deephaven::proto::backplane::grpc::TableReference*>(value); - if (value != nullptr) { - _impl_._has_bits_[0] |= 0x00000002u; - } else { - _impl_._has_bits_[0] &= ~0x00000002u; - } - // @@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() { - ::google::protobuf::internal::TSanWrite(&_impl_); - - _impl_._has_bits_[0] &= ~0x00000002u; - ::io::deephaven::proto::backplane::grpc::TableReference* released = _impl_.left_id_; - _impl_.left_id_ = nullptr; -#ifdef PROTOBUF_FORCE_COPY_IN_RELEASE - auto* old = reinterpret_cast<::google::protobuf::MessageLite*>(released); - released = ::google::protobuf::internal::DuplicateIfNonNull(released); - if (GetArena() == nullptr) { - delete old; - } -#else // PROTOBUF_FORCE_COPY_IN_RELEASE - if (GetArena() != nullptr) { - released = ::google::protobuf::internal::DuplicateIfNonNull(released); - } -#endif // !PROTOBUF_FORCE_COPY_IN_RELEASE - return released; -} -inline ::io::deephaven::proto::backplane::grpc::TableReference* RangeJoinTablesRequest::unsafe_arena_release_left_id() { - ::google::protobuf::internal::TSanWrite(&_impl_); - // @@protoc_insertion_point(field_release:io.deephaven.proto.backplane.grpc.RangeJoinTablesRequest.left_id) - - _impl_._has_bits_[0] &= ~0x00000002u; - ::io::deephaven::proto::backplane::grpc::TableReference* temp = _impl_.left_id_; - _impl_.left_id_ = nullptr; - return temp; -} -inline ::io::deephaven::proto::backplane::grpc::TableReference* RangeJoinTablesRequest::_internal_mutable_left_id() { - ::google::protobuf::internal::TSanWrite(&_impl_); - if (_impl_.left_id_ == nullptr) { - 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(); - ::google::protobuf::internal::TSanWrite(&_impl_); - if (message_arena == nullptr) { - delete (_impl_.left_id_); - } - - if (value != nullptr) { - ::google::protobuf::Arena* submessage_arena = (value)->GetArena(); - if (message_arena != submessage_arena) { - value = ::google::protobuf::internal::GetOwnedMessage(message_arena, value, submessage_arena); - } - _impl_._has_bits_[0] |= 0x00000002u; - } else { - _impl_._has_bits_[0] &= ~0x00000002u; - } - - _impl_.left_id_ = reinterpret_cast<::io::deephaven::proto::backplane::grpc::TableReference*>(value); - // @@protoc_insertion_point(field_set_allocated:io.deephaven.proto.backplane.grpc.RangeJoinTablesRequest.left_id) -} - -// .io.deephaven.proto.backplane.grpc.TableReference right_id = 3; -inline bool RangeJoinTablesRequest::has_right_id() const { - bool value = (_impl_._has_bits_[0] & 0x00000004u) != 0; - PROTOBUF_ASSUME(!value || _impl_.right_id_ != nullptr); - return value; -} -inline void RangeJoinTablesRequest::clear_right_id() { - ::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 { - ::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_); -} -inline const ::io::deephaven::proto::backplane::grpc::TableReference& RangeJoinTablesRequest::right_id() const ABSL_ATTRIBUTE_LIFETIME_BOUND { - // @@protoc_insertion_point(field_get:io.deephaven.proto.backplane.grpc.RangeJoinTablesRequest.right_id) - return _internal_right_id(); -} -inline void RangeJoinTablesRequest::unsafe_arena_set_allocated_right_id(::io::deephaven::proto::backplane::grpc::TableReference* value) { - ::google::protobuf::internal::TSanWrite(&_impl_); - if (GetArena() == nullptr) { - delete reinterpret_cast<::google::protobuf::MessageLite*>(_impl_.right_id_); - } - _impl_.right_id_ = reinterpret_cast<::io::deephaven::proto::backplane::grpc::TableReference*>(value); - if (value != nullptr) { - _impl_._has_bits_[0] |= 0x00000004u; - } else { - _impl_._has_bits_[0] &= ~0x00000004u; - } - // @@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() { - ::google::protobuf::internal::TSanWrite(&_impl_); - - _impl_._has_bits_[0] &= ~0x00000004u; - ::io::deephaven::proto::backplane::grpc::TableReference* released = _impl_.right_id_; - _impl_.right_id_ = nullptr; -#ifdef PROTOBUF_FORCE_COPY_IN_RELEASE - auto* old = reinterpret_cast<::google::protobuf::MessageLite*>(released); - released = ::google::protobuf::internal::DuplicateIfNonNull(released); - if (GetArena() == nullptr) { - delete old; - } -#else // PROTOBUF_FORCE_COPY_IN_RELEASE - if (GetArena() != nullptr) { - released = ::google::protobuf::internal::DuplicateIfNonNull(released); - } -#endif // !PROTOBUF_FORCE_COPY_IN_RELEASE - return released; -} -inline ::io::deephaven::proto::backplane::grpc::TableReference* RangeJoinTablesRequest::unsafe_arena_release_right_id() { - ::google::protobuf::internal::TSanWrite(&_impl_); - // @@protoc_insertion_point(field_release:io.deephaven.proto.backplane.grpc.RangeJoinTablesRequest.right_id) - - _impl_._has_bits_[0] &= ~0x00000004u; - ::io::deephaven::proto::backplane::grpc::TableReference* temp = _impl_.right_id_; - _impl_.right_id_ = nullptr; - return temp; -} -inline ::io::deephaven::proto::backplane::grpc::TableReference* RangeJoinTablesRequest::_internal_mutable_right_id() { - ::google::protobuf::internal::TSanWrite(&_impl_); - if (_impl_.right_id_ == nullptr) { - 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(); - ::google::protobuf::internal::TSanWrite(&_impl_); - if (message_arena == nullptr) { - delete (_impl_.right_id_); - } - - if (value != nullptr) { - ::google::protobuf::Arena* submessage_arena = (value)->GetArena(); - if (message_arena != submessage_arena) { - value = ::google::protobuf::internal::GetOwnedMessage(message_arena, value, submessage_arena); - } - _impl_._has_bits_[0] |= 0x00000004u; - } else { - _impl_._has_bits_[0] &= ~0x00000004u; - } - - _impl_.right_id_ = reinterpret_cast<::io::deephaven::proto::backplane::grpc::TableReference*>(value); - // @@protoc_insertion_point(field_set_allocated:io.deephaven.proto.backplane.grpc.RangeJoinTablesRequest.right_id) -} - -// repeated string exact_match_columns = 4; -inline int RangeJoinTablesRequest::_internal_exact_match_columns_size() const { - return _internal_exact_match_columns().size(); -} -inline int RangeJoinTablesRequest::exact_match_columns_size() const { - return _internal_exact_match_columns_size(); -} -inline void RangeJoinTablesRequest::clear_exact_match_columns() { - ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.exact_match_columns_.Clear(); -} -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; -} -inline const std::string& RangeJoinTablesRequest::exact_match_columns(int index) const - ABSL_ATTRIBUTE_LIFETIME_BOUND { - // @@protoc_insertion_point(field_get:io.deephaven.proto.backplane.grpc.RangeJoinTablesRequest.exact_match_columns) - return _internal_exact_match_columns().Get(index); -} -inline std::string* RangeJoinTablesRequest::mutable_exact_match_columns(int index) - ABSL_ATTRIBUTE_LIFETIME_BOUND { - // @@protoc_insertion_point(field_mutable:io.deephaven.proto.backplane.grpc.RangeJoinTablesRequest.exact_match_columns) - return _internal_mutable_exact_match_columns()->Mutable(index); -} -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) -} -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 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) - return _internal_exact_match_columns(); -} -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) - ::google::protobuf::internal::TSanWrite(&_impl_); - return _internal_mutable_exact_match_columns(); -} -inline const ::google::protobuf::RepeatedPtrField& -RangeJoinTablesRequest::_internal_exact_match_columns() const { - ::google::protobuf::internal::TSanRead(&_impl_); - return _impl_.exact_match_columns_; -} -inline ::google::protobuf::RepeatedPtrField* -RangeJoinTablesRequest::_internal_mutable_exact_match_columns() { - ::google::protobuf::internal::TSanRead(&_impl_); - return &_impl_.exact_match_columns_; -} - -// string left_start_column = 5; -inline void RangeJoinTablesRequest::clear_left_start_column() { - ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.left_start_column_.ClearToEmpty(); -} -inline const std::string& RangeJoinTablesRequest::left_start_column() const - ABSL_ATTRIBUTE_LIFETIME_BOUND { - // @@protoc_insertion_point(field_get:io.deephaven.proto.backplane.grpc.RangeJoinTablesRequest.left_start_column) - return _internal_left_start_column(); -} -template -inline PROTOBUF_ALWAYS_INLINE void RangeJoinTablesRequest::set_left_start_column(Arg_&& arg, - Args_... args) { - ::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) -} -inline std::string* RangeJoinTablesRequest::mutable_left_start_column() ABSL_ATTRIBUTE_LIFETIME_BOUND { - std::string* _s = _internal_mutable_left_start_column(); - // @@protoc_insertion_point(field_mutable:io.deephaven.proto.backplane.grpc.RangeJoinTablesRequest.left_start_column) - return _s; -} -inline const std::string& RangeJoinTablesRequest::_internal_left_start_column() const { - ::google::protobuf::internal::TSanRead(&_impl_); - return _impl_.left_start_column_.Get(); -} -inline void RangeJoinTablesRequest::_internal_set_left_start_column(const std::string& value) { - ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.left_start_column_.Set(value, GetArena()); -} -inline std::string* RangeJoinTablesRequest::_internal_mutable_left_start_column() { - ::google::protobuf::internal::TSanWrite(&_impl_); - return _impl_.left_start_column_.Mutable( GetArena()); -} -inline std::string* RangeJoinTablesRequest::release_left_start_column() { - ::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) { - ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.left_start_column_.SetAllocated(value, GetArena()); - #ifdef PROTOBUF_FORCE_COPY_DEFAULT_STRING - if (_impl_.left_start_column_.IsDefault()) { - _impl_.left_start_column_.Set("", GetArena()); - } - #endif // PROTOBUF_FORCE_COPY_DEFAULT_STRING - // @@protoc_insertion_point(field_set_allocated:io.deephaven.proto.backplane.grpc.RangeJoinTablesRequest.left_start_column) -} - -// .io.deephaven.proto.backplane.grpc.RangeJoinTablesRequest.RangeStartRule range_start_rule = 6; -inline void RangeJoinTablesRequest::clear_range_start_rule() { - ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.range_start_rule_ = 0; -} -inline ::io::deephaven::proto::backplane::grpc::RangeJoinTablesRequest_RangeStartRule RangeJoinTablesRequest::range_start_rule() const { - // @@protoc_insertion_point(field_get:io.deephaven.proto.backplane.grpc.RangeJoinTablesRequest.range_start_rule) - return _internal_range_start_rule(); -} -inline void RangeJoinTablesRequest::set_range_start_rule(::io::deephaven::proto::backplane::grpc::RangeJoinTablesRequest_RangeStartRule value) { - _internal_set_range_start_rule(value); - // @@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 { - ::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) { - ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.range_start_rule_ = value; -} - -// string right_range_column = 7; -inline void RangeJoinTablesRequest::clear_right_range_column() { - ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.right_range_column_.ClearToEmpty(); -} -inline const std::string& RangeJoinTablesRequest::right_range_column() const - ABSL_ATTRIBUTE_LIFETIME_BOUND { - // @@protoc_insertion_point(field_get:io.deephaven.proto.backplane.grpc.RangeJoinTablesRequest.right_range_column) - return _internal_right_range_column(); -} -template -inline PROTOBUF_ALWAYS_INLINE void RangeJoinTablesRequest::set_right_range_column(Arg_&& arg, - Args_... args) { - ::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) -} -inline std::string* RangeJoinTablesRequest::mutable_right_range_column() ABSL_ATTRIBUTE_LIFETIME_BOUND { - std::string* _s = _internal_mutable_right_range_column(); - // @@protoc_insertion_point(field_mutable:io.deephaven.proto.backplane.grpc.RangeJoinTablesRequest.right_range_column) - return _s; -} -inline const std::string& RangeJoinTablesRequest::_internal_right_range_column() const { - ::google::protobuf::internal::TSanRead(&_impl_); - return _impl_.right_range_column_.Get(); -} -inline void RangeJoinTablesRequest::_internal_set_right_range_column(const std::string& value) { - ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.right_range_column_.Set(value, GetArena()); -} -inline std::string* RangeJoinTablesRequest::_internal_mutable_right_range_column() { - ::google::protobuf::internal::TSanWrite(&_impl_); - return _impl_.right_range_column_.Mutable( GetArena()); -} -inline std::string* RangeJoinTablesRequest::release_right_range_column() { - ::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) { - ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.right_range_column_.SetAllocated(value, GetArena()); - #ifdef PROTOBUF_FORCE_COPY_DEFAULT_STRING - if (_impl_.right_range_column_.IsDefault()) { - _impl_.right_range_column_.Set("", GetArena()); - } - #endif // PROTOBUF_FORCE_COPY_DEFAULT_STRING - // @@protoc_insertion_point(field_set_allocated:io.deephaven.proto.backplane.grpc.RangeJoinTablesRequest.right_range_column) -} - -// .io.deephaven.proto.backplane.grpc.RangeJoinTablesRequest.RangeEndRule range_end_rule = 8; -inline void RangeJoinTablesRequest::clear_range_end_rule() { - ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.range_end_rule_ = 0; -} -inline ::io::deephaven::proto::backplane::grpc::RangeJoinTablesRequest_RangeEndRule RangeJoinTablesRequest::range_end_rule() const { - // @@protoc_insertion_point(field_get:io.deephaven.proto.backplane.grpc.RangeJoinTablesRequest.range_end_rule) - return _internal_range_end_rule(); -} -inline void RangeJoinTablesRequest::set_range_end_rule(::io::deephaven::proto::backplane::grpc::RangeJoinTablesRequest_RangeEndRule value) { - _internal_set_range_end_rule(value); - // @@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 { - ::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) { - ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.range_end_rule_ = value; -} - -// string left_end_column = 9; -inline void RangeJoinTablesRequest::clear_left_end_column() { - ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.left_end_column_.ClearToEmpty(); -} -inline const std::string& RangeJoinTablesRequest::left_end_column() const - ABSL_ATTRIBUTE_LIFETIME_BOUND { - // @@protoc_insertion_point(field_get:io.deephaven.proto.backplane.grpc.RangeJoinTablesRequest.left_end_column) - return _internal_left_end_column(); -} -template -inline PROTOBUF_ALWAYS_INLINE void RangeJoinTablesRequest::set_left_end_column(Arg_&& arg, - Args_... args) { - ::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) -} -inline std::string* RangeJoinTablesRequest::mutable_left_end_column() ABSL_ATTRIBUTE_LIFETIME_BOUND { - std::string* _s = _internal_mutable_left_end_column(); - // @@protoc_insertion_point(field_mutable:io.deephaven.proto.backplane.grpc.RangeJoinTablesRequest.left_end_column) - return _s; -} -inline const std::string& RangeJoinTablesRequest::_internal_left_end_column() const { - ::google::protobuf::internal::TSanRead(&_impl_); - return _impl_.left_end_column_.Get(); -} -inline void RangeJoinTablesRequest::_internal_set_left_end_column(const std::string& value) { - ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.left_end_column_.Set(value, GetArena()); -} -inline std::string* RangeJoinTablesRequest::_internal_mutable_left_end_column() { - ::google::protobuf::internal::TSanWrite(&_impl_); - return _impl_.left_end_column_.Mutable( GetArena()); -} -inline std::string* RangeJoinTablesRequest::release_left_end_column() { - ::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) { - ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.left_end_column_.SetAllocated(value, GetArena()); - #ifdef PROTOBUF_FORCE_COPY_DEFAULT_STRING - if (_impl_.left_end_column_.IsDefault()) { - _impl_.left_end_column_.Set("", GetArena()); - } - #endif // PROTOBUF_FORCE_COPY_DEFAULT_STRING - // @@protoc_insertion_point(field_set_allocated:io.deephaven.proto.backplane.grpc.RangeJoinTablesRequest.left_end_column) -} - -// repeated .io.deephaven.proto.backplane.grpc.Aggregation aggregations = 10; -inline int RangeJoinTablesRequest::_internal_aggregations_size() const { - return _internal_aggregations().size(); -} -inline int RangeJoinTablesRequest::aggregations_size() const { - return _internal_aggregations_size(); -} -inline void RangeJoinTablesRequest::clear_aggregations() { - ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.aggregations_.Clear(); -} -inline ::io::deephaven::proto::backplane::grpc::Aggregation* RangeJoinTablesRequest::mutable_aggregations(int index) - ABSL_ATTRIBUTE_LIFETIME_BOUND { - // @@protoc_insertion_point(field_mutable:io.deephaven.proto.backplane.grpc.RangeJoinTablesRequest.aggregations) - return _internal_mutable_aggregations()->Mutable(index); -} -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) - ::google::protobuf::internal::TSanWrite(&_impl_); - return _internal_mutable_aggregations(); -} -inline const ::io::deephaven::proto::backplane::grpc::Aggregation& RangeJoinTablesRequest::aggregations(int index) const - ABSL_ATTRIBUTE_LIFETIME_BOUND { - // @@protoc_insertion_point(field_get:io.deephaven.proto.backplane.grpc.RangeJoinTablesRequest.aggregations) - return _internal_aggregations().Get(index); -} -inline ::io::deephaven::proto::backplane::grpc::Aggregation* RangeJoinTablesRequest::add_aggregations() ABSL_ATTRIBUTE_LIFETIME_BOUND { - ::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; -} -inline const ::google::protobuf::RepeatedPtrField<::io::deephaven::proto::backplane::grpc::Aggregation>& RangeJoinTablesRequest::aggregations() const - ABSL_ATTRIBUTE_LIFETIME_BOUND { - // @@protoc_insertion_point(field_list:io.deephaven.proto.backplane.grpc.RangeJoinTablesRequest.aggregations) - return _internal_aggregations(); -} -inline const ::google::protobuf::RepeatedPtrField<::io::deephaven::proto::backplane::grpc::Aggregation>& -RangeJoinTablesRequest::_internal_aggregations() const { - ::google::protobuf::internal::TSanRead(&_impl_); - return _impl_.aggregations_; -} -inline ::google::protobuf::RepeatedPtrField<::io::deephaven::proto::backplane::grpc::Aggregation>* -RangeJoinTablesRequest::_internal_mutable_aggregations() { - ::google::protobuf::internal::TSanRead(&_impl_); - return &_impl_.aggregations_; -} - -// string range_match = 11; -inline void RangeJoinTablesRequest::clear_range_match() { - ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.range_match_.ClearToEmpty(); -} -inline const std::string& RangeJoinTablesRequest::range_match() const - ABSL_ATTRIBUTE_LIFETIME_BOUND { - // @@protoc_insertion_point(field_get:io.deephaven.proto.backplane.grpc.RangeJoinTablesRequest.range_match) - return _internal_range_match(); -} -template -inline PROTOBUF_ALWAYS_INLINE void RangeJoinTablesRequest::set_range_match(Arg_&& arg, - Args_... args) { - ::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) -} -inline std::string* RangeJoinTablesRequest::mutable_range_match() ABSL_ATTRIBUTE_LIFETIME_BOUND { - std::string* _s = _internal_mutable_range_match(); - // @@protoc_insertion_point(field_mutable:io.deephaven.proto.backplane.grpc.RangeJoinTablesRequest.range_match) - return _s; -} -inline const std::string& RangeJoinTablesRequest::_internal_range_match() const { - ::google::protobuf::internal::TSanRead(&_impl_); - return _impl_.range_match_.Get(); -} -inline void RangeJoinTablesRequest::_internal_set_range_match(const std::string& value) { - ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.range_match_.Set(value, GetArena()); -} -inline std::string* RangeJoinTablesRequest::_internal_mutable_range_match() { - ::google::protobuf::internal::TSanWrite(&_impl_); - return _impl_.range_match_.Mutable( GetArena()); -} -inline std::string* RangeJoinTablesRequest::release_range_match() { - ::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) { - ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.range_match_.SetAllocated(value, GetArena()); - #ifdef PROTOBUF_FORCE_COPY_DEFAULT_STRING - if (_impl_.range_match_.IsDefault()) { - _impl_.range_match_.Set("", GetArena()); - } - #endif // PROTOBUF_FORCE_COPY_DEFAULT_STRING - // @@protoc_insertion_point(field_set_allocated:io.deephaven.proto.backplane.grpc.RangeJoinTablesRequest.range_match) -} - -// ------------------------------------------------------------------- - -// ComboAggregateRequest_Aggregate - -// .io.deephaven.proto.backplane.grpc.ComboAggregateRequest.AggType type = 1; -inline void ComboAggregateRequest_Aggregate::clear_type() { - ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.type_ = 0; -} -inline ::io::deephaven::proto::backplane::grpc::ComboAggregateRequest_AggType ComboAggregateRequest_Aggregate::type() const { - // @@protoc_insertion_point(field_get:io.deephaven.proto.backplane.grpc.ComboAggregateRequest.Aggregate.type) - return _internal_type(); -} -inline void ComboAggregateRequest_Aggregate::set_type(::io::deephaven::proto::backplane::grpc::ComboAggregateRequest_AggType value) { - _internal_set_type(value); - // @@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 { - ::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) { - ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.type_ = value; -} - -// repeated string match_pairs = 2; -inline int ComboAggregateRequest_Aggregate::_internal_match_pairs_size() const { - return _internal_match_pairs().size(); -} -inline int ComboAggregateRequest_Aggregate::match_pairs_size() const { - return _internal_match_pairs_size(); -} -inline void ComboAggregateRequest_Aggregate::clear_match_pairs() { - ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.match_pairs_.Clear(); -} -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; -} -inline const std::string& ComboAggregateRequest_Aggregate::match_pairs(int index) const - ABSL_ATTRIBUTE_LIFETIME_BOUND { - // @@protoc_insertion_point(field_get:io.deephaven.proto.backplane.grpc.ComboAggregateRequest.Aggregate.match_pairs) - return _internal_match_pairs().Get(index); -} -inline std::string* ComboAggregateRequest_Aggregate::mutable_match_pairs(int index) - ABSL_ATTRIBUTE_LIFETIME_BOUND { - // @@protoc_insertion_point(field_mutable:io.deephaven.proto.backplane.grpc.ComboAggregateRequest.Aggregate.match_pairs) - return _internal_mutable_match_pairs()->Mutable(index); -} -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) -} -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 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) - return _internal_match_pairs(); -} -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) - ::google::protobuf::internal::TSanWrite(&_impl_); - return _internal_mutable_match_pairs(); -} -inline const ::google::protobuf::RepeatedPtrField& -ComboAggregateRequest_Aggregate::_internal_match_pairs() const { - ::google::protobuf::internal::TSanRead(&_impl_); - return _impl_.match_pairs_; -} -inline ::google::protobuf::RepeatedPtrField* -ComboAggregateRequest_Aggregate::_internal_mutable_match_pairs() { - ::google::protobuf::internal::TSanRead(&_impl_); - return &_impl_.match_pairs_; -} - -// string column_name = 3; -inline void ComboAggregateRequest_Aggregate::clear_column_name() { - ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.column_name_.ClearToEmpty(); -} -inline const std::string& ComboAggregateRequest_Aggregate::column_name() const - ABSL_ATTRIBUTE_LIFETIME_BOUND { - // @@protoc_insertion_point(field_get:io.deephaven.proto.backplane.grpc.ComboAggregateRequest.Aggregate.column_name) - return _internal_column_name(); -} -template -inline PROTOBUF_ALWAYS_INLINE void ComboAggregateRequest_Aggregate::set_column_name(Arg_&& arg, - Args_... args) { - ::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) -} -inline std::string* ComboAggregateRequest_Aggregate::mutable_column_name() ABSL_ATTRIBUTE_LIFETIME_BOUND { - std::string* _s = _internal_mutable_column_name(); - // @@protoc_insertion_point(field_mutable:io.deephaven.proto.backplane.grpc.ComboAggregateRequest.Aggregate.column_name) - return _s; -} -inline const std::string& ComboAggregateRequest_Aggregate::_internal_column_name() const { - ::google::protobuf::internal::TSanRead(&_impl_); - return _impl_.column_name_.Get(); -} -inline void ComboAggregateRequest_Aggregate::_internal_set_column_name(const std::string& value) { - ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.column_name_.Set(value, GetArena()); -} -inline std::string* ComboAggregateRequest_Aggregate::_internal_mutable_column_name() { - ::google::protobuf::internal::TSanWrite(&_impl_); - return _impl_.column_name_.Mutable( GetArena()); -} -inline std::string* ComboAggregateRequest_Aggregate::release_column_name() { - ::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) { - ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.column_name_.SetAllocated(value, GetArena()); - #ifdef PROTOBUF_FORCE_COPY_DEFAULT_STRING - if (_impl_.column_name_.IsDefault()) { - _impl_.column_name_.Set("", GetArena()); - } - #endif // PROTOBUF_FORCE_COPY_DEFAULT_STRING - // @@protoc_insertion_point(field_set_allocated:io.deephaven.proto.backplane.grpc.ComboAggregateRequest.Aggregate.column_name) -} - -// double percentile = 4; -inline void ComboAggregateRequest_Aggregate::clear_percentile() { - ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.percentile_ = 0; -} -inline double ComboAggregateRequest_Aggregate::percentile() const { - // @@protoc_insertion_point(field_get:io.deephaven.proto.backplane.grpc.ComboAggregateRequest.Aggregate.percentile) - return _internal_percentile(); -} -inline void ComboAggregateRequest_Aggregate::set_percentile(double value) { - _internal_set_percentile(value); - // @@protoc_insertion_point(field_set:io.deephaven.proto.backplane.grpc.ComboAggregateRequest.Aggregate.percentile) -} -inline double ComboAggregateRequest_Aggregate::_internal_percentile() const { - ::google::protobuf::internal::TSanRead(&_impl_); - return _impl_.percentile_; -} -inline void ComboAggregateRequest_Aggregate::_internal_set_percentile(double value) { - ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.percentile_ = value; -} - -// bool avg_median = 5; -inline void ComboAggregateRequest_Aggregate::clear_avg_median() { - ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.avg_median_ = false; -} -inline bool ComboAggregateRequest_Aggregate::avg_median() const { - // @@protoc_insertion_point(field_get:io.deephaven.proto.backplane.grpc.ComboAggregateRequest.Aggregate.avg_median) - return _internal_avg_median(); -} -inline void ComboAggregateRequest_Aggregate::set_avg_median(bool value) { - _internal_set_avg_median(value); - // @@protoc_insertion_point(field_set:io.deephaven.proto.backplane.grpc.ComboAggregateRequest.Aggregate.avg_median) -} -inline bool ComboAggregateRequest_Aggregate::_internal_avg_median() const { - ::google::protobuf::internal::TSanRead(&_impl_); - return _impl_.avg_median_; -} -inline void ComboAggregateRequest_Aggregate::_internal_set_avg_median(bool value) { - ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.avg_median_ = value; -} - -// ------------------------------------------------------------------- - -// ComboAggregateRequest - -// .io.deephaven.proto.backplane.grpc.Ticket result_id = 1; -inline bool ComboAggregateRequest::has_result_id() const { - bool value = (_impl_._has_bits_[0] & 0x00000001u) != 0; - PROTOBUF_ASSUME(!value || _impl_.result_id_ != nullptr); - return value; -} -inline const ::io::deephaven::proto::backplane::grpc::Ticket& ComboAggregateRequest::_internal_result_id() const { - ::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_); -} -inline const ::io::deephaven::proto::backplane::grpc::Ticket& ComboAggregateRequest::result_id() const ABSL_ATTRIBUTE_LIFETIME_BOUND { - // @@protoc_insertion_point(field_get:io.deephaven.proto.backplane.grpc.ComboAggregateRequest.result_id) - return _internal_result_id(); -} -inline void ComboAggregateRequest::unsafe_arena_set_allocated_result_id(::io::deephaven::proto::backplane::grpc::Ticket* value) { - ::google::protobuf::internal::TSanWrite(&_impl_); - if (GetArena() == nullptr) { - delete reinterpret_cast<::google::protobuf::MessageLite*>(_impl_.result_id_); - } - _impl_.result_id_ = reinterpret_cast<::io::deephaven::proto::backplane::grpc::Ticket*>(value); - if (value != nullptr) { - _impl_._has_bits_[0] |= 0x00000001u; - } else { - _impl_._has_bits_[0] &= ~0x00000001u; - } - // @@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() { - ::google::protobuf::internal::TSanWrite(&_impl_); - - _impl_._has_bits_[0] &= ~0x00000001u; - ::io::deephaven::proto::backplane::grpc::Ticket* released = _impl_.result_id_; - _impl_.result_id_ = nullptr; -#ifdef PROTOBUF_FORCE_COPY_IN_RELEASE - auto* old = reinterpret_cast<::google::protobuf::MessageLite*>(released); - released = ::google::protobuf::internal::DuplicateIfNonNull(released); - if (GetArena() == nullptr) { - delete old; - } -#else // PROTOBUF_FORCE_COPY_IN_RELEASE - if (GetArena() != nullptr) { - released = ::google::protobuf::internal::DuplicateIfNonNull(released); - } -#endif // !PROTOBUF_FORCE_COPY_IN_RELEASE - return released; -} -inline ::io::deephaven::proto::backplane::grpc::Ticket* ComboAggregateRequest::unsafe_arena_release_result_id() { - ::google::protobuf::internal::TSanWrite(&_impl_); - // @@protoc_insertion_point(field_release:io.deephaven.proto.backplane.grpc.ComboAggregateRequest.result_id) - - _impl_._has_bits_[0] &= ~0x00000001u; - ::io::deephaven::proto::backplane::grpc::Ticket* temp = _impl_.result_id_; - _impl_.result_id_ = nullptr; - return temp; -} -inline ::io::deephaven::proto::backplane::grpc::Ticket* ComboAggregateRequest::_internal_mutable_result_id() { - ::google::protobuf::internal::TSanWrite(&_impl_); - if (_impl_.result_id_ == nullptr) { - 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(); - ::google::protobuf::internal::TSanWrite(&_impl_); - if (message_arena == nullptr) { - delete reinterpret_cast<::google::protobuf::MessageLite*>(_impl_.result_id_); - } - - if (value != nullptr) { - ::google::protobuf::Arena* submessage_arena = reinterpret_cast<::google::protobuf::MessageLite*>(value)->GetArena(); - if (message_arena != submessage_arena) { - value = ::google::protobuf::internal::GetOwnedMessage(message_arena, value, submessage_arena); - } - _impl_._has_bits_[0] |= 0x00000001u; - } else { - _impl_._has_bits_[0] &= ~0x00000001u; - } - - _impl_.result_id_ = reinterpret_cast<::io::deephaven::proto::backplane::grpc::Ticket*>(value); - // @@protoc_insertion_point(field_set_allocated:io.deephaven.proto.backplane.grpc.ComboAggregateRequest.result_id) -} - -// .io.deephaven.proto.backplane.grpc.TableReference source_id = 2; -inline bool ComboAggregateRequest::has_source_id() const { - bool value = (_impl_._has_bits_[0] & 0x00000002u) != 0; - PROTOBUF_ASSUME(!value || _impl_.source_id_ != nullptr); - return value; -} -inline void ComboAggregateRequest::clear_source_id() { - ::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 { - ::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_); -} -inline const ::io::deephaven::proto::backplane::grpc::TableReference& ComboAggregateRequest::source_id() const ABSL_ATTRIBUTE_LIFETIME_BOUND { - // @@protoc_insertion_point(field_get:io.deephaven.proto.backplane.grpc.ComboAggregateRequest.source_id) - return _internal_source_id(); -} -inline void ComboAggregateRequest::unsafe_arena_set_allocated_source_id(::io::deephaven::proto::backplane::grpc::TableReference* value) { - ::google::protobuf::internal::TSanWrite(&_impl_); - if (GetArena() == nullptr) { - delete reinterpret_cast<::google::protobuf::MessageLite*>(_impl_.source_id_); - } - _impl_.source_id_ = reinterpret_cast<::io::deephaven::proto::backplane::grpc::TableReference*>(value); - if (value != nullptr) { - _impl_._has_bits_[0] |= 0x00000002u; - } else { - _impl_._has_bits_[0] &= ~0x00000002u; - } - // @@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() { - ::google::protobuf::internal::TSanWrite(&_impl_); - - _impl_._has_bits_[0] &= ~0x00000002u; - ::io::deephaven::proto::backplane::grpc::TableReference* released = _impl_.source_id_; - _impl_.source_id_ = nullptr; -#ifdef PROTOBUF_FORCE_COPY_IN_RELEASE - auto* old = reinterpret_cast<::google::protobuf::MessageLite*>(released); - released = ::google::protobuf::internal::DuplicateIfNonNull(released); - if (GetArena() == nullptr) { - delete old; - } -#else // PROTOBUF_FORCE_COPY_IN_RELEASE - if (GetArena() != nullptr) { - released = ::google::protobuf::internal::DuplicateIfNonNull(released); - } -#endif // !PROTOBUF_FORCE_COPY_IN_RELEASE - return released; -} -inline ::io::deephaven::proto::backplane::grpc::TableReference* ComboAggregateRequest::unsafe_arena_release_source_id() { - ::google::protobuf::internal::TSanWrite(&_impl_); - // @@protoc_insertion_point(field_release:io.deephaven.proto.backplane.grpc.ComboAggregateRequest.source_id) - - _impl_._has_bits_[0] &= ~0x00000002u; - ::io::deephaven::proto::backplane::grpc::TableReference* temp = _impl_.source_id_; - _impl_.source_id_ = nullptr; - return temp; -} -inline ::io::deephaven::proto::backplane::grpc::TableReference* ComboAggregateRequest::_internal_mutable_source_id() { - ::google::protobuf::internal::TSanWrite(&_impl_); - if (_impl_.source_id_ == nullptr) { - 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(); - ::google::protobuf::internal::TSanWrite(&_impl_); - if (message_arena == nullptr) { - delete (_impl_.source_id_); - } - - if (value != nullptr) { - ::google::protobuf::Arena* submessage_arena = (value)->GetArena(); - if (message_arena != submessage_arena) { - value = ::google::protobuf::internal::GetOwnedMessage(message_arena, value, submessage_arena); - } - _impl_._has_bits_[0] |= 0x00000002u; - } else { - _impl_._has_bits_[0] &= ~0x00000002u; - } - - _impl_.source_id_ = reinterpret_cast<::io::deephaven::proto::backplane::grpc::TableReference*>(value); - // @@protoc_insertion_point(field_set_allocated:io.deephaven.proto.backplane.grpc.ComboAggregateRequest.source_id) -} - -// repeated .io.deephaven.proto.backplane.grpc.ComboAggregateRequest.Aggregate aggregates = 3; -inline int ComboAggregateRequest::_internal_aggregates_size() const { - return _internal_aggregates().size(); -} -inline int ComboAggregateRequest::aggregates_size() const { - return _internal_aggregates_size(); -} -inline void ComboAggregateRequest::clear_aggregates() { - ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.aggregates_.Clear(); -} -inline ::io::deephaven::proto::backplane::grpc::ComboAggregateRequest_Aggregate* ComboAggregateRequest::mutable_aggregates(int index) - ABSL_ATTRIBUTE_LIFETIME_BOUND { - // @@protoc_insertion_point(field_mutable:io.deephaven.proto.backplane.grpc.ComboAggregateRequest.aggregates) - return _internal_mutable_aggregates()->Mutable(index); -} -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) - ::google::protobuf::internal::TSanWrite(&_impl_); - return _internal_mutable_aggregates(); -} -inline const ::io::deephaven::proto::backplane::grpc::ComboAggregateRequest_Aggregate& ComboAggregateRequest::aggregates(int index) const - ABSL_ATTRIBUTE_LIFETIME_BOUND { - // @@protoc_insertion_point(field_get:io.deephaven.proto.backplane.grpc.ComboAggregateRequest.aggregates) - return _internal_aggregates().Get(index); -} -inline ::io::deephaven::proto::backplane::grpc::ComboAggregateRequest_Aggregate* ComboAggregateRequest::add_aggregates() ABSL_ATTRIBUTE_LIFETIME_BOUND { - ::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; -} -inline const ::google::protobuf::RepeatedPtrField<::io::deephaven::proto::backplane::grpc::ComboAggregateRequest_Aggregate>& ComboAggregateRequest::aggregates() const - ABSL_ATTRIBUTE_LIFETIME_BOUND { - // @@protoc_insertion_point(field_list:io.deephaven.proto.backplane.grpc.ComboAggregateRequest.aggregates) - return _internal_aggregates(); -} -inline const ::google::protobuf::RepeatedPtrField<::io::deephaven::proto::backplane::grpc::ComboAggregateRequest_Aggregate>& -ComboAggregateRequest::_internal_aggregates() const { - ::google::protobuf::internal::TSanRead(&_impl_); - return _impl_.aggregates_; -} -inline ::google::protobuf::RepeatedPtrField<::io::deephaven::proto::backplane::grpc::ComboAggregateRequest_Aggregate>* -ComboAggregateRequest::_internal_mutable_aggregates() { - ::google::protobuf::internal::TSanRead(&_impl_); - return &_impl_.aggregates_; -} - -// repeated string group_by_columns = 4; -inline int ComboAggregateRequest::_internal_group_by_columns_size() const { - return _internal_group_by_columns().size(); -} -inline int ComboAggregateRequest::group_by_columns_size() const { - return _internal_group_by_columns_size(); -} -inline void ComboAggregateRequest::clear_group_by_columns() { - ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.group_by_columns_.Clear(); -} -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; -} -inline const std::string& ComboAggregateRequest::group_by_columns(int index) const - ABSL_ATTRIBUTE_LIFETIME_BOUND { - // @@protoc_insertion_point(field_get:io.deephaven.proto.backplane.grpc.ComboAggregateRequest.group_by_columns) - return _internal_group_by_columns().Get(index); -} -inline std::string* ComboAggregateRequest::mutable_group_by_columns(int index) - ABSL_ATTRIBUTE_LIFETIME_BOUND { - // @@protoc_insertion_point(field_mutable:io.deephaven.proto.backplane.grpc.ComboAggregateRequest.group_by_columns) - return _internal_mutable_group_by_columns()->Mutable(index); -} -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) -} -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 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) - return _internal_group_by_columns(); -} -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) - ::google::protobuf::internal::TSanWrite(&_impl_); - return _internal_mutable_group_by_columns(); -} -inline const ::google::protobuf::RepeatedPtrField& -ComboAggregateRequest::_internal_group_by_columns() const { - ::google::protobuf::internal::TSanRead(&_impl_); - return _impl_.group_by_columns_; -} -inline ::google::protobuf::RepeatedPtrField* -ComboAggregateRequest::_internal_mutable_group_by_columns() { - ::google::protobuf::internal::TSanRead(&_impl_); - return &_impl_.group_by_columns_; -} - -// bool force_combo = 5; -inline void ComboAggregateRequest::clear_force_combo() { - ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.force_combo_ = false; -} -inline bool ComboAggregateRequest::force_combo() const { - // @@protoc_insertion_point(field_get:io.deephaven.proto.backplane.grpc.ComboAggregateRequest.force_combo) - return _internal_force_combo(); -} -inline void ComboAggregateRequest::set_force_combo(bool value) { - _internal_set_force_combo(value); - // @@protoc_insertion_point(field_set:io.deephaven.proto.backplane.grpc.ComboAggregateRequest.force_combo) -} -inline bool ComboAggregateRequest::_internal_force_combo() const { - ::google::protobuf::internal::TSanRead(&_impl_); - return _impl_.force_combo_; -} -inline void ComboAggregateRequest::_internal_set_force_combo(bool value) { - ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.force_combo_ = value; -} - -// ------------------------------------------------------------------- - -// AggregateAllRequest - -// .io.deephaven.proto.backplane.grpc.Ticket result_id = 1; -inline bool AggregateAllRequest::has_result_id() const { - bool value = (_impl_._has_bits_[0] & 0x00000001u) != 0; - PROTOBUF_ASSUME(!value || _impl_.result_id_ != nullptr); - return value; -} -inline const ::io::deephaven::proto::backplane::grpc::Ticket& AggregateAllRequest::_internal_result_id() const { - ::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_); -} -inline const ::io::deephaven::proto::backplane::grpc::Ticket& AggregateAllRequest::result_id() const ABSL_ATTRIBUTE_LIFETIME_BOUND { - // @@protoc_insertion_point(field_get:io.deephaven.proto.backplane.grpc.AggregateAllRequest.result_id) - return _internal_result_id(); -} -inline void AggregateAllRequest::unsafe_arena_set_allocated_result_id(::io::deephaven::proto::backplane::grpc::Ticket* value) { - ::google::protobuf::internal::TSanWrite(&_impl_); - if (GetArena() == nullptr) { - delete reinterpret_cast<::google::protobuf::MessageLite*>(_impl_.result_id_); - } - _impl_.result_id_ = reinterpret_cast<::io::deephaven::proto::backplane::grpc::Ticket*>(value); - if (value != nullptr) { - _impl_._has_bits_[0] |= 0x00000001u; - } else { - _impl_._has_bits_[0] &= ~0x00000001u; - } - // @@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() { - ::google::protobuf::internal::TSanWrite(&_impl_); - - _impl_._has_bits_[0] &= ~0x00000001u; - ::io::deephaven::proto::backplane::grpc::Ticket* released = _impl_.result_id_; - _impl_.result_id_ = nullptr; -#ifdef PROTOBUF_FORCE_COPY_IN_RELEASE - auto* old = reinterpret_cast<::google::protobuf::MessageLite*>(released); - released = ::google::protobuf::internal::DuplicateIfNonNull(released); - if (GetArena() == nullptr) { - delete old; - } -#else // PROTOBUF_FORCE_COPY_IN_RELEASE - if (GetArena() != nullptr) { - released = ::google::protobuf::internal::DuplicateIfNonNull(released); - } -#endif // !PROTOBUF_FORCE_COPY_IN_RELEASE - return released; -} -inline ::io::deephaven::proto::backplane::grpc::Ticket* AggregateAllRequest::unsafe_arena_release_result_id() { - ::google::protobuf::internal::TSanWrite(&_impl_); - // @@protoc_insertion_point(field_release:io.deephaven.proto.backplane.grpc.AggregateAllRequest.result_id) - - _impl_._has_bits_[0] &= ~0x00000001u; - ::io::deephaven::proto::backplane::grpc::Ticket* temp = _impl_.result_id_; - _impl_.result_id_ = nullptr; - return temp; -} -inline ::io::deephaven::proto::backplane::grpc::Ticket* AggregateAllRequest::_internal_mutable_result_id() { - ::google::protobuf::internal::TSanWrite(&_impl_); - if (_impl_.result_id_ == nullptr) { - 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(); - ::google::protobuf::internal::TSanWrite(&_impl_); - if (message_arena == nullptr) { - delete reinterpret_cast<::google::protobuf::MessageLite*>(_impl_.result_id_); - } - - if (value != nullptr) { - ::google::protobuf::Arena* submessage_arena = reinterpret_cast<::google::protobuf::MessageLite*>(value)->GetArena(); - if (message_arena != submessage_arena) { - value = ::google::protobuf::internal::GetOwnedMessage(message_arena, value, submessage_arena); - } - _impl_._has_bits_[0] |= 0x00000001u; - } else { - _impl_._has_bits_[0] &= ~0x00000001u; - } - - _impl_.result_id_ = reinterpret_cast<::io::deephaven::proto::backplane::grpc::Ticket*>(value); - // @@protoc_insertion_point(field_set_allocated:io.deephaven.proto.backplane.grpc.AggregateAllRequest.result_id) -} - -// .io.deephaven.proto.backplane.grpc.TableReference source_id = 2; -inline bool AggregateAllRequest::has_source_id() const { - bool value = (_impl_._has_bits_[0] & 0x00000002u) != 0; - PROTOBUF_ASSUME(!value || _impl_.source_id_ != nullptr); - return value; -} -inline void AggregateAllRequest::clear_source_id() { - ::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 { - ::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_); -} -inline const ::io::deephaven::proto::backplane::grpc::TableReference& AggregateAllRequest::source_id() const ABSL_ATTRIBUTE_LIFETIME_BOUND { - // @@protoc_insertion_point(field_get:io.deephaven.proto.backplane.grpc.AggregateAllRequest.source_id) - return _internal_source_id(); -} -inline void AggregateAllRequest::unsafe_arena_set_allocated_source_id(::io::deephaven::proto::backplane::grpc::TableReference* value) { - ::google::protobuf::internal::TSanWrite(&_impl_); - if (GetArena() == nullptr) { - delete reinterpret_cast<::google::protobuf::MessageLite*>(_impl_.source_id_); - } - _impl_.source_id_ = reinterpret_cast<::io::deephaven::proto::backplane::grpc::TableReference*>(value); - if (value != nullptr) { - _impl_._has_bits_[0] |= 0x00000002u; - } else { - _impl_._has_bits_[0] &= ~0x00000002u; - } - // @@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() { - ::google::protobuf::internal::TSanWrite(&_impl_); - - _impl_._has_bits_[0] &= ~0x00000002u; - ::io::deephaven::proto::backplane::grpc::TableReference* released = _impl_.source_id_; - _impl_.source_id_ = nullptr; -#ifdef PROTOBUF_FORCE_COPY_IN_RELEASE - auto* old = reinterpret_cast<::google::protobuf::MessageLite*>(released); - released = ::google::protobuf::internal::DuplicateIfNonNull(released); - if (GetArena() == nullptr) { - delete old; - } -#else // PROTOBUF_FORCE_COPY_IN_RELEASE - if (GetArena() != nullptr) { - released = ::google::protobuf::internal::DuplicateIfNonNull(released); - } -#endif // !PROTOBUF_FORCE_COPY_IN_RELEASE - return released; -} -inline ::io::deephaven::proto::backplane::grpc::TableReference* AggregateAllRequest::unsafe_arena_release_source_id() { - ::google::protobuf::internal::TSanWrite(&_impl_); - // @@protoc_insertion_point(field_release:io.deephaven.proto.backplane.grpc.AggregateAllRequest.source_id) - - _impl_._has_bits_[0] &= ~0x00000002u; - ::io::deephaven::proto::backplane::grpc::TableReference* temp = _impl_.source_id_; - _impl_.source_id_ = nullptr; - return temp; -} -inline ::io::deephaven::proto::backplane::grpc::TableReference* AggregateAllRequest::_internal_mutable_source_id() { - ::google::protobuf::internal::TSanWrite(&_impl_); - if (_impl_.source_id_ == nullptr) { - 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(); - ::google::protobuf::internal::TSanWrite(&_impl_); - if (message_arena == nullptr) { - delete (_impl_.source_id_); - } - - if (value != nullptr) { - ::google::protobuf::Arena* submessage_arena = (value)->GetArena(); - if (message_arena != submessage_arena) { - value = ::google::protobuf::internal::GetOwnedMessage(message_arena, value, submessage_arena); - } - _impl_._has_bits_[0] |= 0x00000002u; - } else { - _impl_._has_bits_[0] &= ~0x00000002u; - } - - _impl_.source_id_ = reinterpret_cast<::io::deephaven::proto::backplane::grpc::TableReference*>(value); - // @@protoc_insertion_point(field_set_allocated:io.deephaven.proto.backplane.grpc.AggregateAllRequest.source_id) -} - -// .io.deephaven.proto.backplane.grpc.AggSpec spec = 3; -inline bool AggregateAllRequest::has_spec() const { - bool value = (_impl_._has_bits_[0] & 0x00000004u) != 0; - PROTOBUF_ASSUME(!value || _impl_.spec_ != nullptr); - return value; -} -inline void AggregateAllRequest::clear_spec() { - ::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 { - ::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_); -} -inline const ::io::deephaven::proto::backplane::grpc::AggSpec& AggregateAllRequest::spec() const ABSL_ATTRIBUTE_LIFETIME_BOUND { - // @@protoc_insertion_point(field_get:io.deephaven.proto.backplane.grpc.AggregateAllRequest.spec) - return _internal_spec(); -} -inline void AggregateAllRequest::unsafe_arena_set_allocated_spec(::io::deephaven::proto::backplane::grpc::AggSpec* value) { - ::google::protobuf::internal::TSanWrite(&_impl_); - if (GetArena() == nullptr) { - delete reinterpret_cast<::google::protobuf::MessageLite*>(_impl_.spec_); - } - _impl_.spec_ = reinterpret_cast<::io::deephaven::proto::backplane::grpc::AggSpec*>(value); - if (value != nullptr) { - _impl_._has_bits_[0] |= 0x00000004u; - } else { - _impl_._has_bits_[0] &= ~0x00000004u; - } - // @@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() { - ::google::protobuf::internal::TSanWrite(&_impl_); - - _impl_._has_bits_[0] &= ~0x00000004u; - ::io::deephaven::proto::backplane::grpc::AggSpec* released = _impl_.spec_; - _impl_.spec_ = nullptr; -#ifdef PROTOBUF_FORCE_COPY_IN_RELEASE - auto* old = reinterpret_cast<::google::protobuf::MessageLite*>(released); - released = ::google::protobuf::internal::DuplicateIfNonNull(released); - if (GetArena() == nullptr) { - delete old; - } -#else // PROTOBUF_FORCE_COPY_IN_RELEASE - if (GetArena() != nullptr) { - released = ::google::protobuf::internal::DuplicateIfNonNull(released); - } -#endif // !PROTOBUF_FORCE_COPY_IN_RELEASE - return released; -} -inline ::io::deephaven::proto::backplane::grpc::AggSpec* AggregateAllRequest::unsafe_arena_release_spec() { - ::google::protobuf::internal::TSanWrite(&_impl_); - // @@protoc_insertion_point(field_release:io.deephaven.proto.backplane.grpc.AggregateAllRequest.spec) - - _impl_._has_bits_[0] &= ~0x00000004u; - ::io::deephaven::proto::backplane::grpc::AggSpec* temp = _impl_.spec_; - _impl_.spec_ = nullptr; - return temp; -} -inline ::io::deephaven::proto::backplane::grpc::AggSpec* AggregateAllRequest::_internal_mutable_spec() { - ::google::protobuf::internal::TSanWrite(&_impl_); - if (_impl_.spec_ == nullptr) { - 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(); - ::google::protobuf::internal::TSanWrite(&_impl_); - if (message_arena == nullptr) { - delete (_impl_.spec_); - } - - if (value != nullptr) { - ::google::protobuf::Arena* submessage_arena = (value)->GetArena(); - if (message_arena != submessage_arena) { - value = ::google::protobuf::internal::GetOwnedMessage(message_arena, value, submessage_arena); - } - _impl_._has_bits_[0] |= 0x00000004u; - } else { - _impl_._has_bits_[0] &= ~0x00000004u; - } - - _impl_.spec_ = reinterpret_cast<::io::deephaven::proto::backplane::grpc::AggSpec*>(value); - // @@protoc_insertion_point(field_set_allocated:io.deephaven.proto.backplane.grpc.AggregateAllRequest.spec) -} - -// repeated string group_by_columns = 4; -inline int AggregateAllRequest::_internal_group_by_columns_size() const { - return _internal_group_by_columns().size(); -} -inline int AggregateAllRequest::group_by_columns_size() const { - return _internal_group_by_columns_size(); -} -inline void AggregateAllRequest::clear_group_by_columns() { - ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.group_by_columns_.Clear(); -} -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; -} -inline const std::string& AggregateAllRequest::group_by_columns(int index) const - ABSL_ATTRIBUTE_LIFETIME_BOUND { - // @@protoc_insertion_point(field_get:io.deephaven.proto.backplane.grpc.AggregateAllRequest.group_by_columns) - return _internal_group_by_columns().Get(index); -} -inline std::string* AggregateAllRequest::mutable_group_by_columns(int index) - ABSL_ATTRIBUTE_LIFETIME_BOUND { - // @@protoc_insertion_point(field_mutable:io.deephaven.proto.backplane.grpc.AggregateAllRequest.group_by_columns) - return _internal_mutable_group_by_columns()->Mutable(index); -} -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) -} -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 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) - return _internal_group_by_columns(); -} -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) - ::google::protobuf::internal::TSanWrite(&_impl_); - return _internal_mutable_group_by_columns(); -} -inline const ::google::protobuf::RepeatedPtrField& -AggregateAllRequest::_internal_group_by_columns() const { - ::google::protobuf::internal::TSanRead(&_impl_); - return _impl_.group_by_columns_; -} -inline ::google::protobuf::RepeatedPtrField* -AggregateAllRequest::_internal_mutable_group_by_columns() { - ::google::protobuf::internal::TSanRead(&_impl_); - return &_impl_.group_by_columns_; -} - -// ------------------------------------------------------------------- - -// AggSpec_AggSpecApproximatePercentile - -// double percentile = 1; -inline void AggSpec_AggSpecApproximatePercentile::clear_percentile() { - ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.percentile_ = 0; -} -inline double AggSpec_AggSpecApproximatePercentile::percentile() const { - // @@protoc_insertion_point(field_get:io.deephaven.proto.backplane.grpc.AggSpec.AggSpecApproximatePercentile.percentile) - return _internal_percentile(); -} -inline void AggSpec_AggSpecApproximatePercentile::set_percentile(double value) { - _internal_set_percentile(value); - // @@protoc_insertion_point(field_set:io.deephaven.proto.backplane.grpc.AggSpec.AggSpecApproximatePercentile.percentile) -} -inline double AggSpec_AggSpecApproximatePercentile::_internal_percentile() const { - ::google::protobuf::internal::TSanRead(&_impl_); - return _impl_.percentile_; -} -inline void AggSpec_AggSpecApproximatePercentile::_internal_set_percentile(double value) { - ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.percentile_ = value; -} - -// optional double compression = 2; -inline bool AggSpec_AggSpecApproximatePercentile::has_compression() const { - bool value = (_impl_._has_bits_[0] & 0x00000001u) != 0; - return value; -} -inline void AggSpec_AggSpecApproximatePercentile::clear_compression() { - ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.compression_ = 0; - _impl_._has_bits_[0] &= ~0x00000001u; -} -inline double AggSpec_AggSpecApproximatePercentile::compression() const { - // @@protoc_insertion_point(field_get:io.deephaven.proto.backplane.grpc.AggSpec.AggSpecApproximatePercentile.compression) - return _internal_compression(); -} -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 { - ::google::protobuf::internal::TSanRead(&_impl_); - return _impl_.compression_; -} -inline void AggSpec_AggSpecApproximatePercentile::_internal_set_compression(double value) { - ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.compression_ = value; -} - -// ------------------------------------------------------------------- - -// AggSpec_AggSpecCountDistinct - -// bool count_nulls = 1; -inline void AggSpec_AggSpecCountDistinct::clear_count_nulls() { - ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.count_nulls_ = false; -} -inline bool AggSpec_AggSpecCountDistinct::count_nulls() const { - // @@protoc_insertion_point(field_get:io.deephaven.proto.backplane.grpc.AggSpec.AggSpecCountDistinct.count_nulls) - return _internal_count_nulls(); -} -inline void AggSpec_AggSpecCountDistinct::set_count_nulls(bool value) { - _internal_set_count_nulls(value); - // @@protoc_insertion_point(field_set:io.deephaven.proto.backplane.grpc.AggSpec.AggSpecCountDistinct.count_nulls) -} -inline bool AggSpec_AggSpecCountDistinct::_internal_count_nulls() const { - ::google::protobuf::internal::TSanRead(&_impl_); - return _impl_.count_nulls_; -} -inline void AggSpec_AggSpecCountDistinct::_internal_set_count_nulls(bool value) { - ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.count_nulls_ = value; -} - -// ------------------------------------------------------------------- - -// AggSpec_AggSpecDistinct - -// bool include_nulls = 1; -inline void AggSpec_AggSpecDistinct::clear_include_nulls() { - ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.include_nulls_ = false; -} -inline bool AggSpec_AggSpecDistinct::include_nulls() const { - // @@protoc_insertion_point(field_get:io.deephaven.proto.backplane.grpc.AggSpec.AggSpecDistinct.include_nulls) - return _internal_include_nulls(); -} -inline void AggSpec_AggSpecDistinct::set_include_nulls(bool value) { - _internal_set_include_nulls(value); - // @@protoc_insertion_point(field_set:io.deephaven.proto.backplane.grpc.AggSpec.AggSpecDistinct.include_nulls) -} -inline bool AggSpec_AggSpecDistinct::_internal_include_nulls() const { - ::google::protobuf::internal::TSanRead(&_impl_); - return _impl_.include_nulls_; -} -inline void AggSpec_AggSpecDistinct::_internal_set_include_nulls(bool value) { - ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.include_nulls_ = value; -} - -// ------------------------------------------------------------------- - -// AggSpec_AggSpecFormula - -// string formula = 1; -inline void AggSpec_AggSpecFormula::clear_formula() { - ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.formula_.ClearToEmpty(); -} -inline const std::string& AggSpec_AggSpecFormula::formula() const - ABSL_ATTRIBUTE_LIFETIME_BOUND { - // @@protoc_insertion_point(field_get:io.deephaven.proto.backplane.grpc.AggSpec.AggSpecFormula.formula) - return _internal_formula(); -} -template -inline PROTOBUF_ALWAYS_INLINE void AggSpec_AggSpecFormula::set_formula(Arg_&& arg, - Args_... args) { - ::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) -} -inline std::string* AggSpec_AggSpecFormula::mutable_formula() ABSL_ATTRIBUTE_LIFETIME_BOUND { - std::string* _s = _internal_mutable_formula(); - // @@protoc_insertion_point(field_mutable:io.deephaven.proto.backplane.grpc.AggSpec.AggSpecFormula.formula) - return _s; -} -inline const std::string& AggSpec_AggSpecFormula::_internal_formula() const { - ::google::protobuf::internal::TSanRead(&_impl_); - return _impl_.formula_.Get(); -} -inline void AggSpec_AggSpecFormula::_internal_set_formula(const std::string& value) { - ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.formula_.Set(value, GetArena()); -} -inline std::string* AggSpec_AggSpecFormula::_internal_mutable_formula() { - ::google::protobuf::internal::TSanWrite(&_impl_); - return _impl_.formula_.Mutable( GetArena()); -} -inline std::string* AggSpec_AggSpecFormula::release_formula() { - ::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) { - ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.formula_.SetAllocated(value, GetArena()); - #ifdef PROTOBUF_FORCE_COPY_DEFAULT_STRING - if (_impl_.formula_.IsDefault()) { - _impl_.formula_.Set("", GetArena()); - } - #endif // PROTOBUF_FORCE_COPY_DEFAULT_STRING - // @@protoc_insertion_point(field_set_allocated:io.deephaven.proto.backplane.grpc.AggSpec.AggSpecFormula.formula) -} - -// string param_token = 2; -inline void AggSpec_AggSpecFormula::clear_param_token() { - ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.param_token_.ClearToEmpty(); -} -inline const std::string& AggSpec_AggSpecFormula::param_token() const - ABSL_ATTRIBUTE_LIFETIME_BOUND { - // @@protoc_insertion_point(field_get:io.deephaven.proto.backplane.grpc.AggSpec.AggSpecFormula.param_token) - return _internal_param_token(); -} -template -inline PROTOBUF_ALWAYS_INLINE void AggSpec_AggSpecFormula::set_param_token(Arg_&& arg, - Args_... args) { - ::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) -} -inline std::string* AggSpec_AggSpecFormula::mutable_param_token() ABSL_ATTRIBUTE_LIFETIME_BOUND { - std::string* _s = _internal_mutable_param_token(); - // @@protoc_insertion_point(field_mutable:io.deephaven.proto.backplane.grpc.AggSpec.AggSpecFormula.param_token) - return _s; -} -inline const std::string& AggSpec_AggSpecFormula::_internal_param_token() const { - ::google::protobuf::internal::TSanRead(&_impl_); - return _impl_.param_token_.Get(); -} -inline void AggSpec_AggSpecFormula::_internal_set_param_token(const std::string& value) { - ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.param_token_.Set(value, GetArena()); -} -inline std::string* AggSpec_AggSpecFormula::_internal_mutable_param_token() { - ::google::protobuf::internal::TSanWrite(&_impl_); - return _impl_.param_token_.Mutable( GetArena()); -} -inline std::string* AggSpec_AggSpecFormula::release_param_token() { - ::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) { - ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.param_token_.SetAllocated(value, GetArena()); - #ifdef PROTOBUF_FORCE_COPY_DEFAULT_STRING - if (_impl_.param_token_.IsDefault()) { - _impl_.param_token_.Set("", GetArena()); - } - #endif // PROTOBUF_FORCE_COPY_DEFAULT_STRING - // @@protoc_insertion_point(field_set_allocated:io.deephaven.proto.backplane.grpc.AggSpec.AggSpecFormula.param_token) -} - -// ------------------------------------------------------------------- - -// AggSpec_AggSpecMedian - -// bool average_evenly_divided = 1; -inline void AggSpec_AggSpecMedian::clear_average_evenly_divided() { - ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.average_evenly_divided_ = false; -} -inline bool AggSpec_AggSpecMedian::average_evenly_divided() const { - // @@protoc_insertion_point(field_get:io.deephaven.proto.backplane.grpc.AggSpec.AggSpecMedian.average_evenly_divided) - return _internal_average_evenly_divided(); -} -inline void AggSpec_AggSpecMedian::set_average_evenly_divided(bool value) { - _internal_set_average_evenly_divided(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 { - ::google::protobuf::internal::TSanRead(&_impl_); - return _impl_.average_evenly_divided_; -} -inline void AggSpec_AggSpecMedian::_internal_set_average_evenly_divided(bool value) { - ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.average_evenly_divided_ = value; -} - -// ------------------------------------------------------------------- - -// AggSpec_AggSpecPercentile - -// double percentile = 1; -inline void AggSpec_AggSpecPercentile::clear_percentile() { - ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.percentile_ = 0; -} -inline double AggSpec_AggSpecPercentile::percentile() const { - // @@protoc_insertion_point(field_get:io.deephaven.proto.backplane.grpc.AggSpec.AggSpecPercentile.percentile) - return _internal_percentile(); -} -inline void AggSpec_AggSpecPercentile::set_percentile(double value) { - _internal_set_percentile(value); - // @@protoc_insertion_point(field_set:io.deephaven.proto.backplane.grpc.AggSpec.AggSpecPercentile.percentile) -} -inline double AggSpec_AggSpecPercentile::_internal_percentile() const { - ::google::protobuf::internal::TSanRead(&_impl_); - return _impl_.percentile_; -} -inline void AggSpec_AggSpecPercentile::_internal_set_percentile(double value) { - ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.percentile_ = value; -} - -// bool average_evenly_divided = 2; -inline void AggSpec_AggSpecPercentile::clear_average_evenly_divided() { - ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.average_evenly_divided_ = false; -} -inline bool AggSpec_AggSpecPercentile::average_evenly_divided() const { - // @@protoc_insertion_point(field_get:io.deephaven.proto.backplane.grpc.AggSpec.AggSpecPercentile.average_evenly_divided) - return _internal_average_evenly_divided(); -} -inline void AggSpec_AggSpecPercentile::set_average_evenly_divided(bool value) { - _internal_set_average_evenly_divided(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 { - ::google::protobuf::internal::TSanRead(&_impl_); - return _impl_.average_evenly_divided_; -} -inline void AggSpec_AggSpecPercentile::_internal_set_average_evenly_divided(bool value) { - ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.average_evenly_divided_ = value; -} - -// ------------------------------------------------------------------- - -// AggSpec_AggSpecSorted - -// repeated .io.deephaven.proto.backplane.grpc.AggSpec.AggSpecSortedColumn columns = 1; -inline int AggSpec_AggSpecSorted::_internal_columns_size() const { - return _internal_columns().size(); -} -inline int AggSpec_AggSpecSorted::columns_size() const { - return _internal_columns_size(); -} -inline void AggSpec_AggSpecSorted::clear_columns() { - ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.columns_.Clear(); -} -inline ::io::deephaven::proto::backplane::grpc::AggSpec_AggSpecSortedColumn* AggSpec_AggSpecSorted::mutable_columns(int index) - ABSL_ATTRIBUTE_LIFETIME_BOUND { - // @@protoc_insertion_point(field_mutable:io.deephaven.proto.backplane.grpc.AggSpec.AggSpecSorted.columns) - return _internal_mutable_columns()->Mutable(index); -} -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) - ::google::protobuf::internal::TSanWrite(&_impl_); - return _internal_mutable_columns(); -} -inline const ::io::deephaven::proto::backplane::grpc::AggSpec_AggSpecSortedColumn& AggSpec_AggSpecSorted::columns(int index) const - ABSL_ATTRIBUTE_LIFETIME_BOUND { - // @@protoc_insertion_point(field_get:io.deephaven.proto.backplane.grpc.AggSpec.AggSpecSorted.columns) - return _internal_columns().Get(index); -} -inline ::io::deephaven::proto::backplane::grpc::AggSpec_AggSpecSortedColumn* AggSpec_AggSpecSorted::add_columns() ABSL_ATTRIBUTE_LIFETIME_BOUND { - ::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; -} -inline const ::google::protobuf::RepeatedPtrField<::io::deephaven::proto::backplane::grpc::AggSpec_AggSpecSortedColumn>& AggSpec_AggSpecSorted::columns() const - ABSL_ATTRIBUTE_LIFETIME_BOUND { - // @@protoc_insertion_point(field_list:io.deephaven.proto.backplane.grpc.AggSpec.AggSpecSorted.columns) - return _internal_columns(); -} -inline const ::google::protobuf::RepeatedPtrField<::io::deephaven::proto::backplane::grpc::AggSpec_AggSpecSortedColumn>& -AggSpec_AggSpecSorted::_internal_columns() const { - ::google::protobuf::internal::TSanRead(&_impl_); - return _impl_.columns_; -} -inline ::google::protobuf::RepeatedPtrField<::io::deephaven::proto::backplane::grpc::AggSpec_AggSpecSortedColumn>* -AggSpec_AggSpecSorted::_internal_mutable_columns() { - ::google::protobuf::internal::TSanRead(&_impl_); - return &_impl_.columns_; -} - -// ------------------------------------------------------------------- - -// AggSpec_AggSpecSortedColumn - -// string column_name = 1; -inline void AggSpec_AggSpecSortedColumn::clear_column_name() { - ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.column_name_.ClearToEmpty(); -} -inline const std::string& AggSpec_AggSpecSortedColumn::column_name() const - ABSL_ATTRIBUTE_LIFETIME_BOUND { - // @@protoc_insertion_point(field_get:io.deephaven.proto.backplane.grpc.AggSpec.AggSpecSortedColumn.column_name) - return _internal_column_name(); -} -template -inline PROTOBUF_ALWAYS_INLINE void AggSpec_AggSpecSortedColumn::set_column_name(Arg_&& arg, - Args_... args) { - ::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) -} -inline std::string* AggSpec_AggSpecSortedColumn::mutable_column_name() ABSL_ATTRIBUTE_LIFETIME_BOUND { - std::string* _s = _internal_mutable_column_name(); - // @@protoc_insertion_point(field_mutable:io.deephaven.proto.backplane.grpc.AggSpec.AggSpecSortedColumn.column_name) - return _s; -} -inline const std::string& AggSpec_AggSpecSortedColumn::_internal_column_name() const { - ::google::protobuf::internal::TSanRead(&_impl_); - return _impl_.column_name_.Get(); -} -inline void AggSpec_AggSpecSortedColumn::_internal_set_column_name(const std::string& value) { - ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.column_name_.Set(value, GetArena()); -} -inline std::string* AggSpec_AggSpecSortedColumn::_internal_mutable_column_name() { - ::google::protobuf::internal::TSanWrite(&_impl_); - return _impl_.column_name_.Mutable( GetArena()); -} -inline std::string* AggSpec_AggSpecSortedColumn::release_column_name() { - ::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) { - ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.column_name_.SetAllocated(value, GetArena()); - #ifdef PROTOBUF_FORCE_COPY_DEFAULT_STRING - if (_impl_.column_name_.IsDefault()) { - _impl_.column_name_.Set("", GetArena()); - } - #endif // PROTOBUF_FORCE_COPY_DEFAULT_STRING - // @@protoc_insertion_point(field_set_allocated:io.deephaven.proto.backplane.grpc.AggSpec.AggSpecSortedColumn.column_name) -} - -// ------------------------------------------------------------------- - -// AggSpec_AggSpecTDigest - -// optional double compression = 1; -inline bool AggSpec_AggSpecTDigest::has_compression() const { - bool value = (_impl_._has_bits_[0] & 0x00000001u) != 0; - return value; -} -inline void AggSpec_AggSpecTDigest::clear_compression() { - ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.compression_ = 0; - _impl_._has_bits_[0] &= ~0x00000001u; -} -inline double AggSpec_AggSpecTDigest::compression() const { - // @@protoc_insertion_point(field_get:io.deephaven.proto.backplane.grpc.AggSpec.AggSpecTDigest.compression) - return _internal_compression(); -} -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 { - ::google::protobuf::internal::TSanRead(&_impl_); - return _impl_.compression_; -} -inline void AggSpec_AggSpecTDigest::_internal_set_compression(double value) { - ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.compression_ = value; -} - -// ------------------------------------------------------------------- - -// AggSpec_AggSpecUnique - -// bool include_nulls = 1; -inline void AggSpec_AggSpecUnique::clear_include_nulls() { - ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.include_nulls_ = false; -} -inline bool AggSpec_AggSpecUnique::include_nulls() const { - // @@protoc_insertion_point(field_get:io.deephaven.proto.backplane.grpc.AggSpec.AggSpecUnique.include_nulls) - return _internal_include_nulls(); -} -inline void AggSpec_AggSpecUnique::set_include_nulls(bool value) { - _internal_set_include_nulls(value); - // @@protoc_insertion_point(field_set:io.deephaven.proto.backplane.grpc.AggSpec.AggSpecUnique.include_nulls) -} -inline bool AggSpec_AggSpecUnique::_internal_include_nulls() const { - ::google::protobuf::internal::TSanRead(&_impl_); - return _impl_.include_nulls_; -} -inline void AggSpec_AggSpecUnique::_internal_set_include_nulls(bool value) { - ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.include_nulls_ = value; -} - -// .io.deephaven.proto.backplane.grpc.AggSpec.AggSpecNonUniqueSentinel non_unique_sentinel = 2; -inline bool AggSpec_AggSpecUnique::has_non_unique_sentinel() const { - bool value = (_impl_._has_bits_[0] & 0x00000001u) != 0; - PROTOBUF_ASSUME(!value || _impl_.non_unique_sentinel_ != nullptr); - return value; -} -inline void AggSpec_AggSpecUnique::clear_non_unique_sentinel() { - ::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 { - ::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_); -} -inline const ::io::deephaven::proto::backplane::grpc::AggSpec_AggSpecNonUniqueSentinel& AggSpec_AggSpecUnique::non_unique_sentinel() const ABSL_ATTRIBUTE_LIFETIME_BOUND { - // @@protoc_insertion_point(field_get:io.deephaven.proto.backplane.grpc.AggSpec.AggSpecUnique.non_unique_sentinel) - return _internal_non_unique_sentinel(); -} -inline void AggSpec_AggSpecUnique::unsafe_arena_set_allocated_non_unique_sentinel(::io::deephaven::proto::backplane::grpc::AggSpec_AggSpecNonUniqueSentinel* value) { - ::google::protobuf::internal::TSanWrite(&_impl_); - if (GetArena() == nullptr) { - delete reinterpret_cast<::google::protobuf::MessageLite*>(_impl_.non_unique_sentinel_); - } - _impl_.non_unique_sentinel_ = reinterpret_cast<::io::deephaven::proto::backplane::grpc::AggSpec_AggSpecNonUniqueSentinel*>(value); - if (value != nullptr) { - _impl_._has_bits_[0] |= 0x00000001u; - } else { - _impl_._has_bits_[0] &= ~0x00000001u; - } - // @@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() { - ::google::protobuf::internal::TSanWrite(&_impl_); - - _impl_._has_bits_[0] &= ~0x00000001u; - ::io::deephaven::proto::backplane::grpc::AggSpec_AggSpecNonUniqueSentinel* released = _impl_.non_unique_sentinel_; - _impl_.non_unique_sentinel_ = nullptr; -#ifdef PROTOBUF_FORCE_COPY_IN_RELEASE - auto* old = reinterpret_cast<::google::protobuf::MessageLite*>(released); - released = ::google::protobuf::internal::DuplicateIfNonNull(released); - if (GetArena() == nullptr) { - delete old; - } -#else // PROTOBUF_FORCE_COPY_IN_RELEASE - if (GetArena() != nullptr) { - released = ::google::protobuf::internal::DuplicateIfNonNull(released); - } -#endif // !PROTOBUF_FORCE_COPY_IN_RELEASE - return released; -} -inline ::io::deephaven::proto::backplane::grpc::AggSpec_AggSpecNonUniqueSentinel* AggSpec_AggSpecUnique::unsafe_arena_release_non_unique_sentinel() { - ::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; - ::io::deephaven::proto::backplane::grpc::AggSpec_AggSpecNonUniqueSentinel* temp = _impl_.non_unique_sentinel_; - _impl_.non_unique_sentinel_ = nullptr; - return temp; -} -inline ::io::deephaven::proto::backplane::grpc::AggSpec_AggSpecNonUniqueSentinel* AggSpec_AggSpecUnique::_internal_mutable_non_unique_sentinel() { - ::google::protobuf::internal::TSanWrite(&_impl_); - if (_impl_.non_unique_sentinel_ == nullptr) { - 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(); - ::google::protobuf::internal::TSanWrite(&_impl_); - if (message_arena == nullptr) { - delete (_impl_.non_unique_sentinel_); - } - - if (value != nullptr) { - ::google::protobuf::Arena* submessage_arena = (value)->GetArena(); - if (message_arena != submessage_arena) { - value = ::google::protobuf::internal::GetOwnedMessage(message_arena, value, submessage_arena); - } - _impl_._has_bits_[0] |= 0x00000001u; - } else { - _impl_._has_bits_[0] &= ~0x00000001u; - } - - _impl_.non_unique_sentinel_ = reinterpret_cast<::io::deephaven::proto::backplane::grpc::AggSpec_AggSpecNonUniqueSentinel*>(value); - // @@protoc_insertion_point(field_set_allocated:io.deephaven.proto.backplane.grpc.AggSpec.AggSpecUnique.non_unique_sentinel) -} - -// ------------------------------------------------------------------- - -// AggSpec_AggSpecNonUniqueSentinel - -// .io.deephaven.proto.backplane.grpc.NullValue null_value = 1; -inline bool AggSpec_AggSpecNonUniqueSentinel::has_null_value() const { - return type_case() == kNullValue; -} -inline void AggSpec_AggSpecNonUniqueSentinel::set_has_null_value() { - _impl_._oneof_case_[0] = kNullValue; -} -inline void AggSpec_AggSpecNonUniqueSentinel::clear_null_value() { - ::google::protobuf::internal::TSanWrite(&_impl_); - if (type_case() == kNullValue) { - _impl_.type_.null_value_ = 0; - clear_has_type(); - } -} -inline ::io::deephaven::proto::backplane::grpc::NullValue AggSpec_AggSpecNonUniqueSentinel::null_value() const { - // @@protoc_insertion_point(field_get:io.deephaven.proto.backplane.grpc.AggSpec.AggSpecNonUniqueSentinel.null_value) - return _internal_null_value(); -} -inline void AggSpec_AggSpecNonUniqueSentinel::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; - // @@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 { - if (type_case() == kNullValue) { - return static_cast<::io::deephaven::proto::backplane::grpc::NullValue>(_impl_.type_.null_value_); - } - return static_cast<::io::deephaven::proto::backplane::grpc::NullValue>(0); -} - -// string string_value = 2; -inline bool AggSpec_AggSpecNonUniqueSentinel::has_string_value() const { - return type_case() == kStringValue; -} -inline void AggSpec_AggSpecNonUniqueSentinel::set_has_string_value() { - _impl_._oneof_case_[0] = kStringValue; -} -inline void AggSpec_AggSpecNonUniqueSentinel::clear_string_value() { - ::google::protobuf::internal::TSanWrite(&_impl_); - if (type_case() == kStringValue) { - _impl_.type_.string_value_.Destroy(); - clear_has_type(); - } -} -inline const std::string& AggSpec_AggSpecNonUniqueSentinel::string_value() const - ABSL_ATTRIBUTE_LIFETIME_BOUND { - // @@protoc_insertion_point(field_get:io.deephaven.proto.backplane.grpc.AggSpec.AggSpecNonUniqueSentinel.string_value) - return _internal_string_value(); -} -template -inline PROTOBUF_ALWAYS_INLINE void AggSpec_AggSpecNonUniqueSentinel::set_string_value(Arg_&& arg, - Args_... args) { - ::google::protobuf::internal::TSanWrite(&_impl_); - if (type_case() != kStringValue) { - clear_type(); - - set_has_string_value(); - _impl_.type_.string_value_.InitDefault(); - } - _impl_.type_.string_value_.Set(static_cast(arg), args..., GetArena()); - // @@protoc_insertion_point(field_set:io.deephaven.proto.backplane.grpc.AggSpec.AggSpecNonUniqueSentinel.string_value) -} -inline std::string* AggSpec_AggSpecNonUniqueSentinel::mutable_string_value() ABSL_ATTRIBUTE_LIFETIME_BOUND { - std::string* _s = _internal_mutable_string_value(); - // @@protoc_insertion_point(field_mutable:io.deephaven.proto.backplane.grpc.AggSpec.AggSpecNonUniqueSentinel.string_value) - return _s; -} -inline const std::string& AggSpec_AggSpecNonUniqueSentinel::_internal_string_value() const { - ::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) { - ::google::protobuf::internal::TSanWrite(&_impl_); - if (type_case() != kStringValue) { - clear_type(); - - set_has_string_value(); - _impl_.type_.string_value_.InitDefault(); - } - _impl_.type_.string_value_.Set(value, GetArena()); -} -inline std::string* AggSpec_AggSpecNonUniqueSentinel::_internal_mutable_string_value() { - ::google::protobuf::internal::TSanWrite(&_impl_); - if (type_case() != kStringValue) { - clear_type(); - - set_has_string_value(); - _impl_.type_.string_value_.InitDefault(); - } - return _impl_.type_.string_value_.Mutable( GetArena()); -} -inline std::string* AggSpec_AggSpecNonUniqueSentinel::release_string_value() { - ::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; - } - clear_has_type(); - return _impl_.type_.string_value_.Release(); -} -inline void AggSpec_AggSpecNonUniqueSentinel::set_allocated_string_value(std::string* value) { - ::google::protobuf::internal::TSanWrite(&_impl_); - if (has_type()) { - clear_type(); - } - if (value != nullptr) { - set_has_string_value(); - _impl_.type_.string_value_.InitAllocated(value, GetArena()); - } - // @@protoc_insertion_point(field_set_allocated:io.deephaven.proto.backplane.grpc.AggSpec.AggSpecNonUniqueSentinel.string_value) -} - -// sint32 int_value = 3; -inline bool AggSpec_AggSpecNonUniqueSentinel::has_int_value() const { - return type_case() == kIntValue; -} -inline void AggSpec_AggSpecNonUniqueSentinel::set_has_int_value() { - _impl_._oneof_case_[0] = kIntValue; -} -inline void AggSpec_AggSpecNonUniqueSentinel::clear_int_value() { - ::google::protobuf::internal::TSanWrite(&_impl_); - if (type_case() == kIntValue) { - _impl_.type_.int_value_ = 0; - clear_has_type(); - } -} -inline ::int32_t AggSpec_AggSpecNonUniqueSentinel::int_value() const { - // @@protoc_insertion_point(field_get:io.deephaven.proto.backplane.grpc.AggSpec.AggSpecNonUniqueSentinel.int_value) - return _internal_int_value(); -} -inline void AggSpec_AggSpecNonUniqueSentinel::set_int_value(::int32_t 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 { - if (type_case() == kIntValue) { - return _impl_.type_.int_value_; - } - return 0; -} - -// sint64 long_value = 4 [jstype = JS_STRING]; -inline bool AggSpec_AggSpecNonUniqueSentinel::has_long_value() const { - return type_case() == kLongValue; -} -inline void AggSpec_AggSpecNonUniqueSentinel::set_has_long_value() { - _impl_._oneof_case_[0] = kLongValue; -} -inline void AggSpec_AggSpecNonUniqueSentinel::clear_long_value() { - ::google::protobuf::internal::TSanWrite(&_impl_); - if (type_case() == kLongValue) { - _impl_.type_.long_value_ = ::int64_t{0}; - clear_has_type(); - } -} -inline ::int64_t AggSpec_AggSpecNonUniqueSentinel::long_value() const { - // @@protoc_insertion_point(field_get:io.deephaven.proto.backplane.grpc.AggSpec.AggSpecNonUniqueSentinel.long_value) - return _internal_long_value(); -} -inline void AggSpec_AggSpecNonUniqueSentinel::set_long_value(::int64_t 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 { - if (type_case() == kLongValue) { - return _impl_.type_.long_value_; - } - return ::int64_t{0}; -} - -// float float_value = 5; -inline bool AggSpec_AggSpecNonUniqueSentinel::has_float_value() const { - return type_case() == kFloatValue; -} -inline void AggSpec_AggSpecNonUniqueSentinel::set_has_float_value() { - _impl_._oneof_case_[0] = kFloatValue; -} -inline void AggSpec_AggSpecNonUniqueSentinel::clear_float_value() { - ::google::protobuf::internal::TSanWrite(&_impl_); - if (type_case() == kFloatValue) { - _impl_.type_.float_value_ = 0; - clear_has_type(); - } -} -inline float AggSpec_AggSpecNonUniqueSentinel::float_value() const { - // @@protoc_insertion_point(field_get:io.deephaven.proto.backplane.grpc.AggSpec.AggSpecNonUniqueSentinel.float_value) - return _internal_float_value(); -} -inline void AggSpec_AggSpecNonUniqueSentinel::set_float_value(float 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 { - if (type_case() == kFloatValue) { - return _impl_.type_.float_value_; - } - return 0; -} - -// double double_value = 6; -inline bool AggSpec_AggSpecNonUniqueSentinel::has_double_value() const { - return type_case() == kDoubleValue; -} -inline void AggSpec_AggSpecNonUniqueSentinel::set_has_double_value() { - _impl_._oneof_case_[0] = kDoubleValue; -} -inline void AggSpec_AggSpecNonUniqueSentinel::clear_double_value() { - ::google::protobuf::internal::TSanWrite(&_impl_); - if (type_case() == kDoubleValue) { - _impl_.type_.double_value_ = 0; - clear_has_type(); - } -} -inline double AggSpec_AggSpecNonUniqueSentinel::double_value() const { - // @@protoc_insertion_point(field_get:io.deephaven.proto.backplane.grpc.AggSpec.AggSpecNonUniqueSentinel.double_value) - return _internal_double_value(); -} -inline void AggSpec_AggSpecNonUniqueSentinel::set_double_value(double 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 { - if (type_case() == kDoubleValue) { - return _impl_.type_.double_value_; - } - return 0; -} - -// bool bool_value = 7; -inline bool AggSpec_AggSpecNonUniqueSentinel::has_bool_value() const { - return type_case() == kBoolValue; -} -inline void AggSpec_AggSpecNonUniqueSentinel::set_has_bool_value() { - _impl_._oneof_case_[0] = kBoolValue; -} -inline void AggSpec_AggSpecNonUniqueSentinel::clear_bool_value() { - ::google::protobuf::internal::TSanWrite(&_impl_); - if (type_case() == kBoolValue) { - _impl_.type_.bool_value_ = false; - clear_has_type(); - } -} -inline bool AggSpec_AggSpecNonUniqueSentinel::bool_value() const { - // @@protoc_insertion_point(field_get:io.deephaven.proto.backplane.grpc.AggSpec.AggSpecNonUniqueSentinel.bool_value) - return _internal_bool_value(); -} -inline void AggSpec_AggSpecNonUniqueSentinel::set_bool_value(bool 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 { - if (type_case() == kBoolValue) { - return _impl_.type_.bool_value_; - } - return false; -} - -// sint32 byte_value = 8; -inline bool AggSpec_AggSpecNonUniqueSentinel::has_byte_value() const { - return type_case() == kByteValue; -} -inline void AggSpec_AggSpecNonUniqueSentinel::set_has_byte_value() { - _impl_._oneof_case_[0] = kByteValue; -} -inline void AggSpec_AggSpecNonUniqueSentinel::clear_byte_value() { - ::google::protobuf::internal::TSanWrite(&_impl_); - if (type_case() == kByteValue) { - _impl_.type_.byte_value_ = 0; - clear_has_type(); - } -} -inline ::int32_t AggSpec_AggSpecNonUniqueSentinel::byte_value() const { - // @@protoc_insertion_point(field_get:io.deephaven.proto.backplane.grpc.AggSpec.AggSpecNonUniqueSentinel.byte_value) - return _internal_byte_value(); -} -inline void AggSpec_AggSpecNonUniqueSentinel::set_byte_value(::int32_t 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 { - if (type_case() == kByteValue) { - return _impl_.type_.byte_value_; - } - return 0; -} - -// sint32 short_value = 9; -inline bool AggSpec_AggSpecNonUniqueSentinel::has_short_value() const { - return type_case() == kShortValue; -} -inline void AggSpec_AggSpecNonUniqueSentinel::set_has_short_value() { - _impl_._oneof_case_[0] = kShortValue; -} -inline void AggSpec_AggSpecNonUniqueSentinel::clear_short_value() { - ::google::protobuf::internal::TSanWrite(&_impl_); - if (type_case() == kShortValue) { - _impl_.type_.short_value_ = 0; - clear_has_type(); - } -} -inline ::int32_t AggSpec_AggSpecNonUniqueSentinel::short_value() const { - // @@protoc_insertion_point(field_get:io.deephaven.proto.backplane.grpc.AggSpec.AggSpecNonUniqueSentinel.short_value) - return _internal_short_value(); -} -inline void AggSpec_AggSpecNonUniqueSentinel::set_short_value(::int32_t 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 { - if (type_case() == kShortValue) { - return _impl_.type_.short_value_; - } - return 0; -} - -// sint32 char_value = 10; -inline bool AggSpec_AggSpecNonUniqueSentinel::has_char_value() const { - return type_case() == kCharValue; -} -inline void AggSpec_AggSpecNonUniqueSentinel::set_has_char_value() { - _impl_._oneof_case_[0] = kCharValue; -} -inline void AggSpec_AggSpecNonUniqueSentinel::clear_char_value() { - ::google::protobuf::internal::TSanWrite(&_impl_); - if (type_case() == kCharValue) { - _impl_.type_.char_value_ = 0; - clear_has_type(); - } -} -inline ::int32_t AggSpec_AggSpecNonUniqueSentinel::char_value() const { - // @@protoc_insertion_point(field_get:io.deephaven.proto.backplane.grpc.AggSpec.AggSpecNonUniqueSentinel.char_value) - return _internal_char_value(); -} -inline void AggSpec_AggSpecNonUniqueSentinel::set_char_value(::int32_t 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 { - if (type_case() == kCharValue) { - return _impl_.type_.char_value_; - } - return 0; -} - -inline bool AggSpec_AggSpecNonUniqueSentinel::has_type() const { - return type_case() != TYPE_NOT_SET; -} -inline void AggSpec_AggSpecNonUniqueSentinel::clear_has_type() { - _impl_._oneof_case_[0] = TYPE_NOT_SET; -} -inline AggSpec_AggSpecNonUniqueSentinel::TypeCase AggSpec_AggSpecNonUniqueSentinel::type_case() const { - return AggSpec_AggSpecNonUniqueSentinel::TypeCase(_impl_._oneof_case_[0]); -} -// ------------------------------------------------------------------- - -// AggSpec_AggSpecWeighted - -// string weight_column = 1; -inline void AggSpec_AggSpecWeighted::clear_weight_column() { - ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.weight_column_.ClearToEmpty(); -} -inline const std::string& AggSpec_AggSpecWeighted::weight_column() const - ABSL_ATTRIBUTE_LIFETIME_BOUND { - // @@protoc_insertion_point(field_get:io.deephaven.proto.backplane.grpc.AggSpec.AggSpecWeighted.weight_column) - return _internal_weight_column(); -} -template -inline PROTOBUF_ALWAYS_INLINE void AggSpec_AggSpecWeighted::set_weight_column(Arg_&& arg, - Args_... args) { - ::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) -} -inline std::string* AggSpec_AggSpecWeighted::mutable_weight_column() ABSL_ATTRIBUTE_LIFETIME_BOUND { - std::string* _s = _internal_mutable_weight_column(); - // @@protoc_insertion_point(field_mutable:io.deephaven.proto.backplane.grpc.AggSpec.AggSpecWeighted.weight_column) - return _s; -} -inline const std::string& AggSpec_AggSpecWeighted::_internal_weight_column() const { - ::google::protobuf::internal::TSanRead(&_impl_); - return _impl_.weight_column_.Get(); -} -inline void AggSpec_AggSpecWeighted::_internal_set_weight_column(const std::string& value) { - ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.weight_column_.Set(value, GetArena()); -} -inline std::string* AggSpec_AggSpecWeighted::_internal_mutable_weight_column() { - ::google::protobuf::internal::TSanWrite(&_impl_); - return _impl_.weight_column_.Mutable( GetArena()); -} -inline std::string* AggSpec_AggSpecWeighted::release_weight_column() { - ::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) { - ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.weight_column_.SetAllocated(value, GetArena()); - #ifdef PROTOBUF_FORCE_COPY_DEFAULT_STRING - if (_impl_.weight_column_.IsDefault()) { - _impl_.weight_column_.Set("", GetArena()); - } - #endif // PROTOBUF_FORCE_COPY_DEFAULT_STRING - // @@protoc_insertion_point(field_set_allocated:io.deephaven.proto.backplane.grpc.AggSpec.AggSpecWeighted.weight_column) -} - -// ------------------------------------------------------------------- - -// AggSpec_AggSpecAbsSum - -// ------------------------------------------------------------------- - -// AggSpec_AggSpecAvg - -// ------------------------------------------------------------------- - -// AggSpec_AggSpecFirst - -// ------------------------------------------------------------------- - -// AggSpec_AggSpecFreeze - -// ------------------------------------------------------------------- - -// AggSpec_AggSpecGroup - -// ------------------------------------------------------------------- - -// AggSpec_AggSpecLast - -// ------------------------------------------------------------------- - -// AggSpec_AggSpecMax - -// ------------------------------------------------------------------- - -// AggSpec_AggSpecMin - -// ------------------------------------------------------------------- - -// AggSpec_AggSpecStd - -// ------------------------------------------------------------------- - -// AggSpec_AggSpecSum - -// ------------------------------------------------------------------- - -// AggSpec_AggSpecVar - -// ------------------------------------------------------------------- - -// AggSpec - -// .io.deephaven.proto.backplane.grpc.AggSpec.AggSpecAbsSum abs_sum = 1; -inline bool AggSpec::has_abs_sum() const { - return type_case() == kAbsSum; -} -inline bool AggSpec::_internal_has_abs_sum() const { - return type_case() == kAbsSum; -} -inline void AggSpec::set_has_abs_sum() { - _impl_._oneof_case_[0] = kAbsSum; -} -inline void AggSpec::clear_abs_sum() { - ::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(); - } -} -inline ::io::deephaven::proto::backplane::grpc::AggSpec_AggSpecAbsSum* AggSpec::release_abs_sum() { - // @@protoc_insertion_point(field_release:io.deephaven.proto.backplane.grpc.AggSpec.abs_sum) - if (type_case() == kAbsSum) { - clear_has_type(); - auto* temp = _impl_.type_.abs_sum_; - if (GetArena() != nullptr) { - temp = ::google::protobuf::internal::DuplicateIfNonNull(temp); - } - _impl_.type_.abs_sum_ = nullptr; - return temp; - } else { - return nullptr; - } -} -inline const ::io::deephaven::proto::backplane::grpc::AggSpec_AggSpecAbsSum& AggSpec::_internal_abs_sum() const { - return type_case() == kAbsSum ? *_impl_.type_.abs_sum_ : reinterpret_cast<::io::deephaven::proto::backplane::grpc::AggSpec_AggSpecAbsSum&>(::io::deephaven::proto::backplane::grpc::_AggSpec_AggSpecAbsSum_default_instance_); -} -inline const ::io::deephaven::proto::backplane::grpc::AggSpec_AggSpecAbsSum& AggSpec::abs_sum() const ABSL_ATTRIBUTE_LIFETIME_BOUND { - // @@protoc_insertion_point(field_get:io.deephaven.proto.backplane.grpc.AggSpec.abs_sum) - return _internal_abs_sum(); -} -inline ::io::deephaven::proto::backplane::grpc::AggSpec_AggSpecAbsSum* AggSpec::unsafe_arena_release_abs_sum() { - // @@protoc_insertion_point(field_unsafe_arena_release:io.deephaven.proto.backplane.grpc.AggSpec.abs_sum) - if (type_case() == kAbsSum) { - clear_has_type(); - auto* temp = _impl_.type_.abs_sum_; - _impl_.type_.abs_sum_ = nullptr; - return temp; - } else { - return nullptr; - } -} -inline void AggSpec::unsafe_arena_set_allocated_abs_sum(::io::deephaven::proto::backplane::grpc::AggSpec_AggSpecAbsSum* value) { - // We rely on the oneof clear method to free the earlier contents - // of this oneof. We can directly use the pointer we're given to - // set the new value. - clear_type(); - if (value) { - set_has_abs_sum(); - _impl_.type_.abs_sum_ = value; - } - // @@protoc_insertion_point(field_unsafe_arena_set_allocated:io.deephaven.proto.backplane.grpc.AggSpec.abs_sum) -} -inline ::io::deephaven::proto::backplane::grpc::AggSpec_AggSpecAbsSum* AggSpec::_internal_mutable_abs_sum() { - if (type_case() != kAbsSum) { - clear_type(); - set_has_abs_sum(); - _impl_.type_.abs_sum_ = - ::google::protobuf::Message::DefaultConstruct<::io::deephaven::proto::backplane::grpc::AggSpec_AggSpecAbsSum>(GetArena()); - } - return _impl_.type_.abs_sum_; -} -inline ::io::deephaven::proto::backplane::grpc::AggSpec_AggSpecAbsSum* AggSpec::mutable_abs_sum() ABSL_ATTRIBUTE_LIFETIME_BOUND { - ::io::deephaven::proto::backplane::grpc::AggSpec_AggSpecAbsSum* _msg = _internal_mutable_abs_sum(); - // @@protoc_insertion_point(field_mutable:io.deephaven.proto.backplane.grpc.AggSpec.abs_sum) - return _msg; -} - -// .io.deephaven.proto.backplane.grpc.AggSpec.AggSpecApproximatePercentile approximate_percentile = 2; -inline bool AggSpec::has_approximate_percentile() const { - return type_case() == kApproximatePercentile; -} -inline bool AggSpec::_internal_has_approximate_percentile() const { - return type_case() == kApproximatePercentile; -} -inline void AggSpec::set_has_approximate_percentile() { - _impl_._oneof_case_[0] = kApproximatePercentile; -} -inline void AggSpec::clear_approximate_percentile() { - ::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(); - } -} -inline ::io::deephaven::proto::backplane::grpc::AggSpec_AggSpecApproximatePercentile* AggSpec::release_approximate_percentile() { - // @@protoc_insertion_point(field_release:io.deephaven.proto.backplane.grpc.AggSpec.approximate_percentile) - if (type_case() == kApproximatePercentile) { - clear_has_type(); - auto* temp = _impl_.type_.approximate_percentile_; - if (GetArena() != nullptr) { - temp = ::google::protobuf::internal::DuplicateIfNonNull(temp); - } - _impl_.type_.approximate_percentile_ = nullptr; - return temp; - } else { - return nullptr; - } -} -inline const ::io::deephaven::proto::backplane::grpc::AggSpec_AggSpecApproximatePercentile& AggSpec::_internal_approximate_percentile() const { - return type_case() == kApproximatePercentile ? *_impl_.type_.approximate_percentile_ : reinterpret_cast<::io::deephaven::proto::backplane::grpc::AggSpec_AggSpecApproximatePercentile&>(::io::deephaven::proto::backplane::grpc::_AggSpec_AggSpecApproximatePercentile_default_instance_); -} -inline const ::io::deephaven::proto::backplane::grpc::AggSpec_AggSpecApproximatePercentile& AggSpec::approximate_percentile() const ABSL_ATTRIBUTE_LIFETIME_BOUND { - // @@protoc_insertion_point(field_get:io.deephaven.proto.backplane.grpc.AggSpec.approximate_percentile) - return _internal_approximate_percentile(); -} -inline ::io::deephaven::proto::backplane::grpc::AggSpec_AggSpecApproximatePercentile* AggSpec::unsafe_arena_release_approximate_percentile() { - // @@protoc_insertion_point(field_unsafe_arena_release:io.deephaven.proto.backplane.grpc.AggSpec.approximate_percentile) - if (type_case() == kApproximatePercentile) { - clear_has_type(); - auto* temp = _impl_.type_.approximate_percentile_; - _impl_.type_.approximate_percentile_ = nullptr; - return temp; - } else { - return nullptr; - } -} -inline void AggSpec::unsafe_arena_set_allocated_approximate_percentile(::io::deephaven::proto::backplane::grpc::AggSpec_AggSpecApproximatePercentile* value) { - // We rely on the oneof clear method to free the earlier contents - // of this oneof. We can directly use the pointer we're given to - // set the new value. - clear_type(); - if (value) { - set_has_approximate_percentile(); - _impl_.type_.approximate_percentile_ = value; - } - // @@protoc_insertion_point(field_unsafe_arena_set_allocated:io.deephaven.proto.backplane.grpc.AggSpec.approximate_percentile) -} -inline ::io::deephaven::proto::backplane::grpc::AggSpec_AggSpecApproximatePercentile* AggSpec::_internal_mutable_approximate_percentile() { - if (type_case() != kApproximatePercentile) { - clear_type(); - set_has_approximate_percentile(); - _impl_.type_.approximate_percentile_ = - ::google::protobuf::Message::DefaultConstruct<::io::deephaven::proto::backplane::grpc::AggSpec_AggSpecApproximatePercentile>(GetArena()); - } - return _impl_.type_.approximate_percentile_; -} -inline ::io::deephaven::proto::backplane::grpc::AggSpec_AggSpecApproximatePercentile* AggSpec::mutable_approximate_percentile() ABSL_ATTRIBUTE_LIFETIME_BOUND { - ::io::deephaven::proto::backplane::grpc::AggSpec_AggSpecApproximatePercentile* _msg = _internal_mutable_approximate_percentile(); - // @@protoc_insertion_point(field_mutable:io.deephaven.proto.backplane.grpc.AggSpec.approximate_percentile) - return _msg; -} - -// .io.deephaven.proto.backplane.grpc.AggSpec.AggSpecAvg avg = 3; -inline bool AggSpec::has_avg() const { - return type_case() == kAvg; -} -inline bool AggSpec::_internal_has_avg() const { - return type_case() == kAvg; -} -inline void AggSpec::set_has_avg() { - _impl_._oneof_case_[0] = kAvg; -} -inline void AggSpec::clear_avg() { - ::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(); - } -} -inline ::io::deephaven::proto::backplane::grpc::AggSpec_AggSpecAvg* AggSpec::release_avg() { - // @@protoc_insertion_point(field_release:io.deephaven.proto.backplane.grpc.AggSpec.avg) - if (type_case() == kAvg) { - clear_has_type(); - auto* temp = _impl_.type_.avg_; - if (GetArena() != nullptr) { - temp = ::google::protobuf::internal::DuplicateIfNonNull(temp); - } - _impl_.type_.avg_ = nullptr; - return temp; - } else { - return nullptr; - } -} -inline const ::io::deephaven::proto::backplane::grpc::AggSpec_AggSpecAvg& AggSpec::_internal_avg() const { - return type_case() == kAvg ? *_impl_.type_.avg_ : reinterpret_cast<::io::deephaven::proto::backplane::grpc::AggSpec_AggSpecAvg&>(::io::deephaven::proto::backplane::grpc::_AggSpec_AggSpecAvg_default_instance_); -} -inline const ::io::deephaven::proto::backplane::grpc::AggSpec_AggSpecAvg& AggSpec::avg() const ABSL_ATTRIBUTE_LIFETIME_BOUND { - // @@protoc_insertion_point(field_get:io.deephaven.proto.backplane.grpc.AggSpec.avg) - return _internal_avg(); -} -inline ::io::deephaven::proto::backplane::grpc::AggSpec_AggSpecAvg* AggSpec::unsafe_arena_release_avg() { - // @@protoc_insertion_point(field_unsafe_arena_release:io.deephaven.proto.backplane.grpc.AggSpec.avg) - if (type_case() == kAvg) { - clear_has_type(); - auto* temp = _impl_.type_.avg_; - _impl_.type_.avg_ = nullptr; - return temp; - } else { - return nullptr; - } -} -inline void AggSpec::unsafe_arena_set_allocated_avg(::io::deephaven::proto::backplane::grpc::AggSpec_AggSpecAvg* value) { - // We rely on the oneof clear method to free the earlier contents - // of this oneof. We can directly use the pointer we're given to - // set the new value. - clear_type(); - if (value) { - set_has_avg(); - _impl_.type_.avg_ = value; - } - // @@protoc_insertion_point(field_unsafe_arena_set_allocated:io.deephaven.proto.backplane.grpc.AggSpec.avg) -} -inline ::io::deephaven::proto::backplane::grpc::AggSpec_AggSpecAvg* AggSpec::_internal_mutable_avg() { - if (type_case() != kAvg) { - clear_type(); - set_has_avg(); - _impl_.type_.avg_ = - ::google::protobuf::Message::DefaultConstruct<::io::deephaven::proto::backplane::grpc::AggSpec_AggSpecAvg>(GetArena()); - } - return _impl_.type_.avg_; -} -inline ::io::deephaven::proto::backplane::grpc::AggSpec_AggSpecAvg* AggSpec::mutable_avg() ABSL_ATTRIBUTE_LIFETIME_BOUND { - ::io::deephaven::proto::backplane::grpc::AggSpec_AggSpecAvg* _msg = _internal_mutable_avg(); - // @@protoc_insertion_point(field_mutable:io.deephaven.proto.backplane.grpc.AggSpec.avg) - return _msg; -} - -// .io.deephaven.proto.backplane.grpc.AggSpec.AggSpecCountDistinct count_distinct = 4; -inline bool AggSpec::has_count_distinct() const { - return type_case() == kCountDistinct; -} -inline bool AggSpec::_internal_has_count_distinct() const { - return type_case() == kCountDistinct; -} -inline void AggSpec::set_has_count_distinct() { - _impl_._oneof_case_[0] = kCountDistinct; -} -inline void AggSpec::clear_count_distinct() { - ::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(); - } -} -inline ::io::deephaven::proto::backplane::grpc::AggSpec_AggSpecCountDistinct* AggSpec::release_count_distinct() { - // @@protoc_insertion_point(field_release:io.deephaven.proto.backplane.grpc.AggSpec.count_distinct) - if (type_case() == kCountDistinct) { - clear_has_type(); - auto* temp = _impl_.type_.count_distinct_; - if (GetArena() != nullptr) { - temp = ::google::protobuf::internal::DuplicateIfNonNull(temp); - } - _impl_.type_.count_distinct_ = nullptr; - return temp; - } else { - return nullptr; - } -} -inline const ::io::deephaven::proto::backplane::grpc::AggSpec_AggSpecCountDistinct& AggSpec::_internal_count_distinct() const { - return type_case() == kCountDistinct ? *_impl_.type_.count_distinct_ : reinterpret_cast<::io::deephaven::proto::backplane::grpc::AggSpec_AggSpecCountDistinct&>(::io::deephaven::proto::backplane::grpc::_AggSpec_AggSpecCountDistinct_default_instance_); -} -inline const ::io::deephaven::proto::backplane::grpc::AggSpec_AggSpecCountDistinct& AggSpec::count_distinct() const ABSL_ATTRIBUTE_LIFETIME_BOUND { - // @@protoc_insertion_point(field_get:io.deephaven.proto.backplane.grpc.AggSpec.count_distinct) - return _internal_count_distinct(); -} -inline ::io::deephaven::proto::backplane::grpc::AggSpec_AggSpecCountDistinct* AggSpec::unsafe_arena_release_count_distinct() { - // @@protoc_insertion_point(field_unsafe_arena_release:io.deephaven.proto.backplane.grpc.AggSpec.count_distinct) - if (type_case() == kCountDistinct) { - clear_has_type(); - auto* temp = _impl_.type_.count_distinct_; - _impl_.type_.count_distinct_ = nullptr; - return temp; - } else { - return nullptr; - } -} -inline void AggSpec::unsafe_arena_set_allocated_count_distinct(::io::deephaven::proto::backplane::grpc::AggSpec_AggSpecCountDistinct* value) { - // We rely on the oneof clear method to free the earlier contents - // of this oneof. We can directly use the pointer we're given to - // set the new value. - clear_type(); - if (value) { - set_has_count_distinct(); - _impl_.type_.count_distinct_ = value; - } - // @@protoc_insertion_point(field_unsafe_arena_set_allocated:io.deephaven.proto.backplane.grpc.AggSpec.count_distinct) -} -inline ::io::deephaven::proto::backplane::grpc::AggSpec_AggSpecCountDistinct* AggSpec::_internal_mutable_count_distinct() { - if (type_case() != kCountDistinct) { - clear_type(); - set_has_count_distinct(); - _impl_.type_.count_distinct_ = - ::google::protobuf::Message::DefaultConstruct<::io::deephaven::proto::backplane::grpc::AggSpec_AggSpecCountDistinct>(GetArena()); - } - return _impl_.type_.count_distinct_; -} -inline ::io::deephaven::proto::backplane::grpc::AggSpec_AggSpecCountDistinct* AggSpec::mutable_count_distinct() ABSL_ATTRIBUTE_LIFETIME_BOUND { - ::io::deephaven::proto::backplane::grpc::AggSpec_AggSpecCountDistinct* _msg = _internal_mutable_count_distinct(); - // @@protoc_insertion_point(field_mutable:io.deephaven.proto.backplane.grpc.AggSpec.count_distinct) - return _msg; -} - -// .io.deephaven.proto.backplane.grpc.AggSpec.AggSpecDistinct distinct = 5; -inline bool AggSpec::has_distinct() const { - return type_case() == kDistinct; -} -inline bool AggSpec::_internal_has_distinct() const { - return type_case() == kDistinct; -} -inline void AggSpec::set_has_distinct() { - _impl_._oneof_case_[0] = kDistinct; -} -inline void AggSpec::clear_distinct() { - ::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(); - } -} -inline ::io::deephaven::proto::backplane::grpc::AggSpec_AggSpecDistinct* AggSpec::release_distinct() { - // @@protoc_insertion_point(field_release:io.deephaven.proto.backplane.grpc.AggSpec.distinct) - if (type_case() == kDistinct) { - clear_has_type(); - auto* temp = _impl_.type_.distinct_; - if (GetArena() != nullptr) { - temp = ::google::protobuf::internal::DuplicateIfNonNull(temp); - } - _impl_.type_.distinct_ = nullptr; - return temp; - } else { - return nullptr; - } -} -inline const ::io::deephaven::proto::backplane::grpc::AggSpec_AggSpecDistinct& AggSpec::_internal_distinct() const { - return type_case() == kDistinct ? *_impl_.type_.distinct_ : reinterpret_cast<::io::deephaven::proto::backplane::grpc::AggSpec_AggSpecDistinct&>(::io::deephaven::proto::backplane::grpc::_AggSpec_AggSpecDistinct_default_instance_); -} -inline const ::io::deephaven::proto::backplane::grpc::AggSpec_AggSpecDistinct& AggSpec::distinct() const ABSL_ATTRIBUTE_LIFETIME_BOUND { - // @@protoc_insertion_point(field_get:io.deephaven.proto.backplane.grpc.AggSpec.distinct) - return _internal_distinct(); -} -inline ::io::deephaven::proto::backplane::grpc::AggSpec_AggSpecDistinct* AggSpec::unsafe_arena_release_distinct() { - // @@protoc_insertion_point(field_unsafe_arena_release:io.deephaven.proto.backplane.grpc.AggSpec.distinct) - if (type_case() == kDistinct) { - clear_has_type(); - auto* temp = _impl_.type_.distinct_; - _impl_.type_.distinct_ = nullptr; - return temp; - } else { - return nullptr; - } -} -inline void AggSpec::unsafe_arena_set_allocated_distinct(::io::deephaven::proto::backplane::grpc::AggSpec_AggSpecDistinct* value) { - // We rely on the oneof clear method to free the earlier contents - // of this oneof. We can directly use the pointer we're given to - // set the new value. - clear_type(); - if (value) { - set_has_distinct(); - _impl_.type_.distinct_ = value; - } - // @@protoc_insertion_point(field_unsafe_arena_set_allocated:io.deephaven.proto.backplane.grpc.AggSpec.distinct) -} -inline ::io::deephaven::proto::backplane::grpc::AggSpec_AggSpecDistinct* AggSpec::_internal_mutable_distinct() { - if (type_case() != kDistinct) { - clear_type(); - set_has_distinct(); - _impl_.type_.distinct_ = - ::google::protobuf::Message::DefaultConstruct<::io::deephaven::proto::backplane::grpc::AggSpec_AggSpecDistinct>(GetArena()); - } - return _impl_.type_.distinct_; -} -inline ::io::deephaven::proto::backplane::grpc::AggSpec_AggSpecDistinct* AggSpec::mutable_distinct() ABSL_ATTRIBUTE_LIFETIME_BOUND { - ::io::deephaven::proto::backplane::grpc::AggSpec_AggSpecDistinct* _msg = _internal_mutable_distinct(); - // @@protoc_insertion_point(field_mutable:io.deephaven.proto.backplane.grpc.AggSpec.distinct) - return _msg; -} - -// .io.deephaven.proto.backplane.grpc.AggSpec.AggSpecFirst first = 6; -inline bool AggSpec::has_first() const { - return type_case() == kFirst; -} -inline bool AggSpec::_internal_has_first() const { - return type_case() == kFirst; -} -inline void AggSpec::set_has_first() { - _impl_._oneof_case_[0] = kFirst; -} -inline void AggSpec::clear_first() { - ::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(); - } -} -inline ::io::deephaven::proto::backplane::grpc::AggSpec_AggSpecFirst* AggSpec::release_first() { - // @@protoc_insertion_point(field_release:io.deephaven.proto.backplane.grpc.AggSpec.first) - if (type_case() == kFirst) { - clear_has_type(); - auto* temp = _impl_.type_.first_; - if (GetArena() != nullptr) { - temp = ::google::protobuf::internal::DuplicateIfNonNull(temp); - } - _impl_.type_.first_ = nullptr; - return temp; - } else { - return nullptr; - } -} -inline const ::io::deephaven::proto::backplane::grpc::AggSpec_AggSpecFirst& AggSpec::_internal_first() const { - return type_case() == kFirst ? *_impl_.type_.first_ : reinterpret_cast<::io::deephaven::proto::backplane::grpc::AggSpec_AggSpecFirst&>(::io::deephaven::proto::backplane::grpc::_AggSpec_AggSpecFirst_default_instance_); -} -inline const ::io::deephaven::proto::backplane::grpc::AggSpec_AggSpecFirst& AggSpec::first() const ABSL_ATTRIBUTE_LIFETIME_BOUND { - // @@protoc_insertion_point(field_get:io.deephaven.proto.backplane.grpc.AggSpec.first) - return _internal_first(); -} -inline ::io::deephaven::proto::backplane::grpc::AggSpec_AggSpecFirst* AggSpec::unsafe_arena_release_first() { - // @@protoc_insertion_point(field_unsafe_arena_release:io.deephaven.proto.backplane.grpc.AggSpec.first) - if (type_case() == kFirst) { - clear_has_type(); - auto* temp = _impl_.type_.first_; - _impl_.type_.first_ = nullptr; - return temp; - } else { - return nullptr; - } -} -inline void AggSpec::unsafe_arena_set_allocated_first(::io::deephaven::proto::backplane::grpc::AggSpec_AggSpecFirst* value) { - // We rely on the oneof clear method to free the earlier contents - // of this oneof. We can directly use the pointer we're given to - // set the new value. - clear_type(); - if (value) { - set_has_first(); - _impl_.type_.first_ = value; - } - // @@protoc_insertion_point(field_unsafe_arena_set_allocated:io.deephaven.proto.backplane.grpc.AggSpec.first) -} -inline ::io::deephaven::proto::backplane::grpc::AggSpec_AggSpecFirst* AggSpec::_internal_mutable_first() { - if (type_case() != kFirst) { - clear_type(); - set_has_first(); - _impl_.type_.first_ = - ::google::protobuf::Message::DefaultConstruct<::io::deephaven::proto::backplane::grpc::AggSpec_AggSpecFirst>(GetArena()); - } - return _impl_.type_.first_; -} -inline ::io::deephaven::proto::backplane::grpc::AggSpec_AggSpecFirst* AggSpec::mutable_first() ABSL_ATTRIBUTE_LIFETIME_BOUND { - ::io::deephaven::proto::backplane::grpc::AggSpec_AggSpecFirst* _msg = _internal_mutable_first(); - // @@protoc_insertion_point(field_mutable:io.deephaven.proto.backplane.grpc.AggSpec.first) - return _msg; -} - -// .io.deephaven.proto.backplane.grpc.AggSpec.AggSpecFormula formula = 7; -inline bool AggSpec::has_formula() const { - return type_case() == kFormula; -} -inline bool AggSpec::_internal_has_formula() const { - return type_case() == kFormula; -} -inline void AggSpec::set_has_formula() { - _impl_._oneof_case_[0] = kFormula; -} -inline void AggSpec::clear_formula() { - ::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(); - } -} -inline ::io::deephaven::proto::backplane::grpc::AggSpec_AggSpecFormula* AggSpec::release_formula() { - // @@protoc_insertion_point(field_release:io.deephaven.proto.backplane.grpc.AggSpec.formula) - if (type_case() == kFormula) { - clear_has_type(); - auto* temp = _impl_.type_.formula_; - if (GetArena() != nullptr) { - temp = ::google::protobuf::internal::DuplicateIfNonNull(temp); - } - _impl_.type_.formula_ = nullptr; - return temp; - } else { - return nullptr; - } -} -inline const ::io::deephaven::proto::backplane::grpc::AggSpec_AggSpecFormula& AggSpec::_internal_formula() const { - return type_case() == kFormula ? *_impl_.type_.formula_ : reinterpret_cast<::io::deephaven::proto::backplane::grpc::AggSpec_AggSpecFormula&>(::io::deephaven::proto::backplane::grpc::_AggSpec_AggSpecFormula_default_instance_); -} -inline const ::io::deephaven::proto::backplane::grpc::AggSpec_AggSpecFormula& AggSpec::formula() const ABSL_ATTRIBUTE_LIFETIME_BOUND { - // @@protoc_insertion_point(field_get:io.deephaven.proto.backplane.grpc.AggSpec.formula) - return _internal_formula(); -} -inline ::io::deephaven::proto::backplane::grpc::AggSpec_AggSpecFormula* AggSpec::unsafe_arena_release_formula() { - // @@protoc_insertion_point(field_unsafe_arena_release:io.deephaven.proto.backplane.grpc.AggSpec.formula) - if (type_case() == kFormula) { - clear_has_type(); - auto* temp = _impl_.type_.formula_; - _impl_.type_.formula_ = nullptr; - return temp; - } else { - return nullptr; - } -} -inline void AggSpec::unsafe_arena_set_allocated_formula(::io::deephaven::proto::backplane::grpc::AggSpec_AggSpecFormula* value) { - // We rely on the oneof clear method to free the earlier contents - // of this oneof. We can directly use the pointer we're given to - // set the new value. - clear_type(); - if (value) { - set_has_formula(); - _impl_.type_.formula_ = value; - } - // @@protoc_insertion_point(field_unsafe_arena_set_allocated:io.deephaven.proto.backplane.grpc.AggSpec.formula) -} -inline ::io::deephaven::proto::backplane::grpc::AggSpec_AggSpecFormula* AggSpec::_internal_mutable_formula() { - if (type_case() != kFormula) { - clear_type(); - set_has_formula(); - _impl_.type_.formula_ = - ::google::protobuf::Message::DefaultConstruct<::io::deephaven::proto::backplane::grpc::AggSpec_AggSpecFormula>(GetArena()); - } - return _impl_.type_.formula_; -} -inline ::io::deephaven::proto::backplane::grpc::AggSpec_AggSpecFormula* AggSpec::mutable_formula() ABSL_ATTRIBUTE_LIFETIME_BOUND { - ::io::deephaven::proto::backplane::grpc::AggSpec_AggSpecFormula* _msg = _internal_mutable_formula(); - // @@protoc_insertion_point(field_mutable:io.deephaven.proto.backplane.grpc.AggSpec.formula) - return _msg; -} - -// .io.deephaven.proto.backplane.grpc.AggSpec.AggSpecFreeze freeze = 8; -inline bool AggSpec::has_freeze() const { - return type_case() == kFreeze; -} -inline bool AggSpec::_internal_has_freeze() const { - return type_case() == kFreeze; -} -inline void AggSpec::set_has_freeze() { - _impl_._oneof_case_[0] = kFreeze; -} -inline void AggSpec::clear_freeze() { - ::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(); - } -} -inline ::io::deephaven::proto::backplane::grpc::AggSpec_AggSpecFreeze* AggSpec::release_freeze() { - // @@protoc_insertion_point(field_release:io.deephaven.proto.backplane.grpc.AggSpec.freeze) - if (type_case() == kFreeze) { - clear_has_type(); - auto* temp = _impl_.type_.freeze_; - if (GetArena() != nullptr) { - temp = ::google::protobuf::internal::DuplicateIfNonNull(temp); - } - _impl_.type_.freeze_ = nullptr; - return temp; - } else { - return nullptr; - } -} -inline const ::io::deephaven::proto::backplane::grpc::AggSpec_AggSpecFreeze& AggSpec::_internal_freeze() const { - return type_case() == kFreeze ? *_impl_.type_.freeze_ : reinterpret_cast<::io::deephaven::proto::backplane::grpc::AggSpec_AggSpecFreeze&>(::io::deephaven::proto::backplane::grpc::_AggSpec_AggSpecFreeze_default_instance_); -} -inline const ::io::deephaven::proto::backplane::grpc::AggSpec_AggSpecFreeze& AggSpec::freeze() const ABSL_ATTRIBUTE_LIFETIME_BOUND { - // @@protoc_insertion_point(field_get:io.deephaven.proto.backplane.grpc.AggSpec.freeze) - return _internal_freeze(); -} -inline ::io::deephaven::proto::backplane::grpc::AggSpec_AggSpecFreeze* AggSpec::unsafe_arena_release_freeze() { - // @@protoc_insertion_point(field_unsafe_arena_release:io.deephaven.proto.backplane.grpc.AggSpec.freeze) - if (type_case() == kFreeze) { - clear_has_type(); - auto* temp = _impl_.type_.freeze_; - _impl_.type_.freeze_ = nullptr; - return temp; - } else { - return nullptr; - } -} -inline void AggSpec::unsafe_arena_set_allocated_freeze(::io::deephaven::proto::backplane::grpc::AggSpec_AggSpecFreeze* value) { - // We rely on the oneof clear method to free the earlier contents - // of this oneof. We can directly use the pointer we're given to - // set the new value. - clear_type(); - if (value) { - set_has_freeze(); - _impl_.type_.freeze_ = value; - } - // @@protoc_insertion_point(field_unsafe_arena_set_allocated:io.deephaven.proto.backplane.grpc.AggSpec.freeze) -} -inline ::io::deephaven::proto::backplane::grpc::AggSpec_AggSpecFreeze* AggSpec::_internal_mutable_freeze() { - if (type_case() != kFreeze) { - clear_type(); - set_has_freeze(); - _impl_.type_.freeze_ = - ::google::protobuf::Message::DefaultConstruct<::io::deephaven::proto::backplane::grpc::AggSpec_AggSpecFreeze>(GetArena()); - } - return _impl_.type_.freeze_; -} -inline ::io::deephaven::proto::backplane::grpc::AggSpec_AggSpecFreeze* AggSpec::mutable_freeze() ABSL_ATTRIBUTE_LIFETIME_BOUND { - ::io::deephaven::proto::backplane::grpc::AggSpec_AggSpecFreeze* _msg = _internal_mutable_freeze(); - // @@protoc_insertion_point(field_mutable:io.deephaven.proto.backplane.grpc.AggSpec.freeze) - return _msg; -} - -// .io.deephaven.proto.backplane.grpc.AggSpec.AggSpecGroup group = 9; -inline bool AggSpec::has_group() const { - return type_case() == kGroup; -} -inline bool AggSpec::_internal_has_group() const { - return type_case() == kGroup; -} -inline void AggSpec::set_has_group() { - _impl_._oneof_case_[0] = kGroup; -} -inline void AggSpec::clear_group() { - ::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(); - } -} -inline ::io::deephaven::proto::backplane::grpc::AggSpec_AggSpecGroup* AggSpec::release_group() { - // @@protoc_insertion_point(field_release:io.deephaven.proto.backplane.grpc.AggSpec.group) - if (type_case() == kGroup) { - clear_has_type(); - auto* temp = _impl_.type_.group_; - if (GetArena() != nullptr) { - temp = ::google::protobuf::internal::DuplicateIfNonNull(temp); - } - _impl_.type_.group_ = nullptr; - return temp; - } else { - return nullptr; - } -} -inline const ::io::deephaven::proto::backplane::grpc::AggSpec_AggSpecGroup& AggSpec::_internal_group() const { - return type_case() == kGroup ? *_impl_.type_.group_ : reinterpret_cast<::io::deephaven::proto::backplane::grpc::AggSpec_AggSpecGroup&>(::io::deephaven::proto::backplane::grpc::_AggSpec_AggSpecGroup_default_instance_); -} -inline const ::io::deephaven::proto::backplane::grpc::AggSpec_AggSpecGroup& AggSpec::group() const ABSL_ATTRIBUTE_LIFETIME_BOUND { - // @@protoc_insertion_point(field_get:io.deephaven.proto.backplane.grpc.AggSpec.group) - return _internal_group(); -} -inline ::io::deephaven::proto::backplane::grpc::AggSpec_AggSpecGroup* AggSpec::unsafe_arena_release_group() { - // @@protoc_insertion_point(field_unsafe_arena_release:io.deephaven.proto.backplane.grpc.AggSpec.group) - if (type_case() == kGroup) { - clear_has_type(); - auto* temp = _impl_.type_.group_; - _impl_.type_.group_ = nullptr; - return temp; - } else { - return nullptr; - } -} -inline void AggSpec::unsafe_arena_set_allocated_group(::io::deephaven::proto::backplane::grpc::AggSpec_AggSpecGroup* value) { - // We rely on the oneof clear method to free the earlier contents - // of this oneof. We can directly use the pointer we're given to - // set the new value. - clear_type(); - if (value) { - set_has_group(); - _impl_.type_.group_ = value; - } - // @@protoc_insertion_point(field_unsafe_arena_set_allocated:io.deephaven.proto.backplane.grpc.AggSpec.group) -} -inline ::io::deephaven::proto::backplane::grpc::AggSpec_AggSpecGroup* AggSpec::_internal_mutable_group() { - if (type_case() != kGroup) { - clear_type(); - set_has_group(); - _impl_.type_.group_ = - ::google::protobuf::Message::DefaultConstruct<::io::deephaven::proto::backplane::grpc::AggSpec_AggSpecGroup>(GetArena()); - } - return _impl_.type_.group_; -} -inline ::io::deephaven::proto::backplane::grpc::AggSpec_AggSpecGroup* AggSpec::mutable_group() ABSL_ATTRIBUTE_LIFETIME_BOUND { - ::io::deephaven::proto::backplane::grpc::AggSpec_AggSpecGroup* _msg = _internal_mutable_group(); - // @@protoc_insertion_point(field_mutable:io.deephaven.proto.backplane.grpc.AggSpec.group) - return _msg; -} - -// .io.deephaven.proto.backplane.grpc.AggSpec.AggSpecLast last = 10; -inline bool AggSpec::has_last() const { - return type_case() == kLast; -} -inline bool AggSpec::_internal_has_last() const { - return type_case() == kLast; -} -inline void AggSpec::set_has_last() { - _impl_._oneof_case_[0] = kLast; -} -inline void AggSpec::clear_last() { - ::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(); - } -} -inline ::io::deephaven::proto::backplane::grpc::AggSpec_AggSpecLast* AggSpec::release_last() { - // @@protoc_insertion_point(field_release:io.deephaven.proto.backplane.grpc.AggSpec.last) - if (type_case() == kLast) { - clear_has_type(); - auto* temp = _impl_.type_.last_; - if (GetArena() != nullptr) { - temp = ::google::protobuf::internal::DuplicateIfNonNull(temp); - } - _impl_.type_.last_ = nullptr; - return temp; - } else { - return nullptr; - } -} -inline const ::io::deephaven::proto::backplane::grpc::AggSpec_AggSpecLast& AggSpec::_internal_last() const { - return type_case() == kLast ? *_impl_.type_.last_ : reinterpret_cast<::io::deephaven::proto::backplane::grpc::AggSpec_AggSpecLast&>(::io::deephaven::proto::backplane::grpc::_AggSpec_AggSpecLast_default_instance_); -} -inline const ::io::deephaven::proto::backplane::grpc::AggSpec_AggSpecLast& AggSpec::last() const ABSL_ATTRIBUTE_LIFETIME_BOUND { - // @@protoc_insertion_point(field_get:io.deephaven.proto.backplane.grpc.AggSpec.last) - return _internal_last(); -} -inline ::io::deephaven::proto::backplane::grpc::AggSpec_AggSpecLast* AggSpec::unsafe_arena_release_last() { - // @@protoc_insertion_point(field_unsafe_arena_release:io.deephaven.proto.backplane.grpc.AggSpec.last) - if (type_case() == kLast) { - clear_has_type(); - auto* temp = _impl_.type_.last_; - _impl_.type_.last_ = nullptr; - return temp; - } else { - return nullptr; - } -} -inline void AggSpec::unsafe_arena_set_allocated_last(::io::deephaven::proto::backplane::grpc::AggSpec_AggSpecLast* value) { - // We rely on the oneof clear method to free the earlier contents - // of this oneof. We can directly use the pointer we're given to - // set the new value. - clear_type(); - if (value) { - set_has_last(); - _impl_.type_.last_ = value; - } - // @@protoc_insertion_point(field_unsafe_arena_set_allocated:io.deephaven.proto.backplane.grpc.AggSpec.last) -} -inline ::io::deephaven::proto::backplane::grpc::AggSpec_AggSpecLast* AggSpec::_internal_mutable_last() { - if (type_case() != kLast) { - clear_type(); - set_has_last(); - _impl_.type_.last_ = - ::google::protobuf::Message::DefaultConstruct<::io::deephaven::proto::backplane::grpc::AggSpec_AggSpecLast>(GetArena()); - } - return _impl_.type_.last_; -} -inline ::io::deephaven::proto::backplane::grpc::AggSpec_AggSpecLast* AggSpec::mutable_last() ABSL_ATTRIBUTE_LIFETIME_BOUND { - ::io::deephaven::proto::backplane::grpc::AggSpec_AggSpecLast* _msg = _internal_mutable_last(); - // @@protoc_insertion_point(field_mutable:io.deephaven.proto.backplane.grpc.AggSpec.last) - return _msg; -} - -// .io.deephaven.proto.backplane.grpc.AggSpec.AggSpecMax max = 11; -inline bool AggSpec::has_max() const { - return type_case() == kMax; -} -inline bool AggSpec::_internal_has_max() const { - return type_case() == kMax; -} -inline void AggSpec::set_has_max() { - _impl_._oneof_case_[0] = kMax; -} -inline void AggSpec::clear_max() { - ::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(); - } -} -inline ::io::deephaven::proto::backplane::grpc::AggSpec_AggSpecMax* AggSpec::release_max() { - // @@protoc_insertion_point(field_release:io.deephaven.proto.backplane.grpc.AggSpec.max) - if (type_case() == kMax) { - clear_has_type(); - auto* temp = _impl_.type_.max_; - if (GetArena() != nullptr) { - temp = ::google::protobuf::internal::DuplicateIfNonNull(temp); - } - _impl_.type_.max_ = nullptr; - return temp; - } else { - return nullptr; - } -} -inline const ::io::deephaven::proto::backplane::grpc::AggSpec_AggSpecMax& AggSpec::_internal_max() const { - return type_case() == kMax ? *_impl_.type_.max_ : reinterpret_cast<::io::deephaven::proto::backplane::grpc::AggSpec_AggSpecMax&>(::io::deephaven::proto::backplane::grpc::_AggSpec_AggSpecMax_default_instance_); -} -inline const ::io::deephaven::proto::backplane::grpc::AggSpec_AggSpecMax& AggSpec::max() const ABSL_ATTRIBUTE_LIFETIME_BOUND { - // @@protoc_insertion_point(field_get:io.deephaven.proto.backplane.grpc.AggSpec.max) - return _internal_max(); -} -inline ::io::deephaven::proto::backplane::grpc::AggSpec_AggSpecMax* AggSpec::unsafe_arena_release_max() { - // @@protoc_insertion_point(field_unsafe_arena_release:io.deephaven.proto.backplane.grpc.AggSpec.max) - if (type_case() == kMax) { - clear_has_type(); - auto* temp = _impl_.type_.max_; - _impl_.type_.max_ = nullptr; - return temp; - } else { - return nullptr; - } -} -inline void AggSpec::unsafe_arena_set_allocated_max(::io::deephaven::proto::backplane::grpc::AggSpec_AggSpecMax* value) { - // We rely on the oneof clear method to free the earlier contents - // of this oneof. We can directly use the pointer we're given to - // set the new value. - clear_type(); - if (value) { - set_has_max(); - _impl_.type_.max_ = value; - } - // @@protoc_insertion_point(field_unsafe_arena_set_allocated:io.deephaven.proto.backplane.grpc.AggSpec.max) -} -inline ::io::deephaven::proto::backplane::grpc::AggSpec_AggSpecMax* AggSpec::_internal_mutable_max() { - if (type_case() != kMax) { - clear_type(); - set_has_max(); - _impl_.type_.max_ = - ::google::protobuf::Message::DefaultConstruct<::io::deephaven::proto::backplane::grpc::AggSpec_AggSpecMax>(GetArena()); - } - return _impl_.type_.max_; -} -inline ::io::deephaven::proto::backplane::grpc::AggSpec_AggSpecMax* AggSpec::mutable_max() ABSL_ATTRIBUTE_LIFETIME_BOUND { - ::io::deephaven::proto::backplane::grpc::AggSpec_AggSpecMax* _msg = _internal_mutable_max(); - // @@protoc_insertion_point(field_mutable:io.deephaven.proto.backplane.grpc.AggSpec.max) - return _msg; -} - -// .io.deephaven.proto.backplane.grpc.AggSpec.AggSpecMedian median = 12; -inline bool AggSpec::has_median() const { - return type_case() == kMedian; -} -inline bool AggSpec::_internal_has_median() const { - return type_case() == kMedian; -} -inline void AggSpec::set_has_median() { - _impl_._oneof_case_[0] = kMedian; -} -inline void AggSpec::clear_median() { - ::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(); - } -} -inline ::io::deephaven::proto::backplane::grpc::AggSpec_AggSpecMedian* AggSpec::release_median() { - // @@protoc_insertion_point(field_release:io.deephaven.proto.backplane.grpc.AggSpec.median) - if (type_case() == kMedian) { - clear_has_type(); - auto* temp = _impl_.type_.median_; - if (GetArena() != nullptr) { - temp = ::google::protobuf::internal::DuplicateIfNonNull(temp); - } - _impl_.type_.median_ = nullptr; - return temp; - } else { - return nullptr; - } -} -inline const ::io::deephaven::proto::backplane::grpc::AggSpec_AggSpecMedian& AggSpec::_internal_median() const { - return type_case() == kMedian ? *_impl_.type_.median_ : reinterpret_cast<::io::deephaven::proto::backplane::grpc::AggSpec_AggSpecMedian&>(::io::deephaven::proto::backplane::grpc::_AggSpec_AggSpecMedian_default_instance_); -} -inline const ::io::deephaven::proto::backplane::grpc::AggSpec_AggSpecMedian& AggSpec::median() const ABSL_ATTRIBUTE_LIFETIME_BOUND { - // @@protoc_insertion_point(field_get:io.deephaven.proto.backplane.grpc.AggSpec.median) - return _internal_median(); -} -inline ::io::deephaven::proto::backplane::grpc::AggSpec_AggSpecMedian* AggSpec::unsafe_arena_release_median() { - // @@protoc_insertion_point(field_unsafe_arena_release:io.deephaven.proto.backplane.grpc.AggSpec.median) - if (type_case() == kMedian) { - clear_has_type(); - auto* temp = _impl_.type_.median_; - _impl_.type_.median_ = nullptr; - return temp; - } else { - return nullptr; - } -} -inline void AggSpec::unsafe_arena_set_allocated_median(::io::deephaven::proto::backplane::grpc::AggSpec_AggSpecMedian* value) { - // We rely on the oneof clear method to free the earlier contents - // of this oneof. We can directly use the pointer we're given to - // set the new value. - clear_type(); - if (value) { - set_has_median(); - _impl_.type_.median_ = value; - } - // @@protoc_insertion_point(field_unsafe_arena_set_allocated:io.deephaven.proto.backplane.grpc.AggSpec.median) -} -inline ::io::deephaven::proto::backplane::grpc::AggSpec_AggSpecMedian* AggSpec::_internal_mutable_median() { - if (type_case() != kMedian) { - clear_type(); - set_has_median(); - _impl_.type_.median_ = - ::google::protobuf::Message::DefaultConstruct<::io::deephaven::proto::backplane::grpc::AggSpec_AggSpecMedian>(GetArena()); - } - return _impl_.type_.median_; -} -inline ::io::deephaven::proto::backplane::grpc::AggSpec_AggSpecMedian* AggSpec::mutable_median() ABSL_ATTRIBUTE_LIFETIME_BOUND { - ::io::deephaven::proto::backplane::grpc::AggSpec_AggSpecMedian* _msg = _internal_mutable_median(); - // @@protoc_insertion_point(field_mutable:io.deephaven.proto.backplane.grpc.AggSpec.median) - return _msg; -} - -// .io.deephaven.proto.backplane.grpc.AggSpec.AggSpecMin min = 13; -inline bool AggSpec::has_min() const { - return type_case() == kMin; -} -inline bool AggSpec::_internal_has_min() const { - return type_case() == kMin; -} -inline void AggSpec::set_has_min() { - _impl_._oneof_case_[0] = kMin; -} -inline void AggSpec::clear_min() { - ::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(); - } -} -inline ::io::deephaven::proto::backplane::grpc::AggSpec_AggSpecMin* AggSpec::release_min() { - // @@protoc_insertion_point(field_release:io.deephaven.proto.backplane.grpc.AggSpec.min) - if (type_case() == kMin) { - clear_has_type(); - auto* temp = _impl_.type_.min_; - if (GetArena() != nullptr) { - temp = ::google::protobuf::internal::DuplicateIfNonNull(temp); - } - _impl_.type_.min_ = nullptr; - return temp; - } else { - return nullptr; - } -} -inline const ::io::deephaven::proto::backplane::grpc::AggSpec_AggSpecMin& AggSpec::_internal_min() const { - return type_case() == kMin ? *_impl_.type_.min_ : reinterpret_cast<::io::deephaven::proto::backplane::grpc::AggSpec_AggSpecMin&>(::io::deephaven::proto::backplane::grpc::_AggSpec_AggSpecMin_default_instance_); -} -inline const ::io::deephaven::proto::backplane::grpc::AggSpec_AggSpecMin& AggSpec::min() const ABSL_ATTRIBUTE_LIFETIME_BOUND { - // @@protoc_insertion_point(field_get:io.deephaven.proto.backplane.grpc.AggSpec.min) - return _internal_min(); -} -inline ::io::deephaven::proto::backplane::grpc::AggSpec_AggSpecMin* AggSpec::unsafe_arena_release_min() { - // @@protoc_insertion_point(field_unsafe_arena_release:io.deephaven.proto.backplane.grpc.AggSpec.min) - if (type_case() == kMin) { - clear_has_type(); - auto* temp = _impl_.type_.min_; - _impl_.type_.min_ = nullptr; - return temp; - } else { - return nullptr; - } -} -inline void AggSpec::unsafe_arena_set_allocated_min(::io::deephaven::proto::backplane::grpc::AggSpec_AggSpecMin* value) { - // We rely on the oneof clear method to free the earlier contents - // of this oneof. We can directly use the pointer we're given to - // set the new value. - clear_type(); - if (value) { - set_has_min(); - _impl_.type_.min_ = value; - } - // @@protoc_insertion_point(field_unsafe_arena_set_allocated:io.deephaven.proto.backplane.grpc.AggSpec.min) -} -inline ::io::deephaven::proto::backplane::grpc::AggSpec_AggSpecMin* AggSpec::_internal_mutable_min() { - if (type_case() != kMin) { - clear_type(); - set_has_min(); - _impl_.type_.min_ = - ::google::protobuf::Message::DefaultConstruct<::io::deephaven::proto::backplane::grpc::AggSpec_AggSpecMin>(GetArena()); - } - return _impl_.type_.min_; -} -inline ::io::deephaven::proto::backplane::grpc::AggSpec_AggSpecMin* AggSpec::mutable_min() ABSL_ATTRIBUTE_LIFETIME_BOUND { - ::io::deephaven::proto::backplane::grpc::AggSpec_AggSpecMin* _msg = _internal_mutable_min(); - // @@protoc_insertion_point(field_mutable:io.deephaven.proto.backplane.grpc.AggSpec.min) - return _msg; -} - -// .io.deephaven.proto.backplane.grpc.AggSpec.AggSpecPercentile percentile = 14; -inline bool AggSpec::has_percentile() const { - return type_case() == kPercentile; -} -inline bool AggSpec::_internal_has_percentile() const { - return type_case() == kPercentile; -} -inline void AggSpec::set_has_percentile() { - _impl_._oneof_case_[0] = kPercentile; -} -inline void AggSpec::clear_percentile() { - ::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(); - } -} -inline ::io::deephaven::proto::backplane::grpc::AggSpec_AggSpecPercentile* AggSpec::release_percentile() { - // @@protoc_insertion_point(field_release:io.deephaven.proto.backplane.grpc.AggSpec.percentile) - if (type_case() == kPercentile) { - clear_has_type(); - auto* temp = _impl_.type_.percentile_; - if (GetArena() != nullptr) { - temp = ::google::protobuf::internal::DuplicateIfNonNull(temp); - } - _impl_.type_.percentile_ = nullptr; - return temp; - } else { - return nullptr; - } -} -inline const ::io::deephaven::proto::backplane::grpc::AggSpec_AggSpecPercentile& AggSpec::_internal_percentile() const { - return type_case() == kPercentile ? *_impl_.type_.percentile_ : reinterpret_cast<::io::deephaven::proto::backplane::grpc::AggSpec_AggSpecPercentile&>(::io::deephaven::proto::backplane::grpc::_AggSpec_AggSpecPercentile_default_instance_); -} -inline const ::io::deephaven::proto::backplane::grpc::AggSpec_AggSpecPercentile& AggSpec::percentile() const ABSL_ATTRIBUTE_LIFETIME_BOUND { - // @@protoc_insertion_point(field_get:io.deephaven.proto.backplane.grpc.AggSpec.percentile) - return _internal_percentile(); -} -inline ::io::deephaven::proto::backplane::grpc::AggSpec_AggSpecPercentile* AggSpec::unsafe_arena_release_percentile() { - // @@protoc_insertion_point(field_unsafe_arena_release:io.deephaven.proto.backplane.grpc.AggSpec.percentile) - if (type_case() == kPercentile) { - clear_has_type(); - auto* temp = _impl_.type_.percentile_; - _impl_.type_.percentile_ = nullptr; - return temp; - } else { - return nullptr; - } -} -inline void AggSpec::unsafe_arena_set_allocated_percentile(::io::deephaven::proto::backplane::grpc::AggSpec_AggSpecPercentile* value) { - // We rely on the oneof clear method to free the earlier contents - // of this oneof. We can directly use the pointer we're given to - // set the new value. - clear_type(); - if (value) { - set_has_percentile(); - _impl_.type_.percentile_ = value; - } - // @@protoc_insertion_point(field_unsafe_arena_set_allocated:io.deephaven.proto.backplane.grpc.AggSpec.percentile) -} -inline ::io::deephaven::proto::backplane::grpc::AggSpec_AggSpecPercentile* AggSpec::_internal_mutable_percentile() { - if (type_case() != kPercentile) { - clear_type(); - set_has_percentile(); - _impl_.type_.percentile_ = - ::google::protobuf::Message::DefaultConstruct<::io::deephaven::proto::backplane::grpc::AggSpec_AggSpecPercentile>(GetArena()); - } - return _impl_.type_.percentile_; -} -inline ::io::deephaven::proto::backplane::grpc::AggSpec_AggSpecPercentile* AggSpec::mutable_percentile() ABSL_ATTRIBUTE_LIFETIME_BOUND { - ::io::deephaven::proto::backplane::grpc::AggSpec_AggSpecPercentile* _msg = _internal_mutable_percentile(); - // @@protoc_insertion_point(field_mutable:io.deephaven.proto.backplane.grpc.AggSpec.percentile) - return _msg; -} - -// .io.deephaven.proto.backplane.grpc.AggSpec.AggSpecSorted sorted_first = 15; -inline bool AggSpec::has_sorted_first() const { - return type_case() == kSortedFirst; -} -inline bool AggSpec::_internal_has_sorted_first() const { - return type_case() == kSortedFirst; -} -inline void AggSpec::set_has_sorted_first() { - _impl_._oneof_case_[0] = kSortedFirst; -} -inline void AggSpec::clear_sorted_first() { - ::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(); - } -} -inline ::io::deephaven::proto::backplane::grpc::AggSpec_AggSpecSorted* AggSpec::release_sorted_first() { - // @@protoc_insertion_point(field_release:io.deephaven.proto.backplane.grpc.AggSpec.sorted_first) - if (type_case() == kSortedFirst) { - clear_has_type(); - auto* temp = _impl_.type_.sorted_first_; - if (GetArena() != nullptr) { - temp = ::google::protobuf::internal::DuplicateIfNonNull(temp); - } - _impl_.type_.sorted_first_ = nullptr; - return temp; - } else { - return nullptr; - } -} -inline const ::io::deephaven::proto::backplane::grpc::AggSpec_AggSpecSorted& AggSpec::_internal_sorted_first() const { - return type_case() == kSortedFirst ? *_impl_.type_.sorted_first_ : reinterpret_cast<::io::deephaven::proto::backplane::grpc::AggSpec_AggSpecSorted&>(::io::deephaven::proto::backplane::grpc::_AggSpec_AggSpecSorted_default_instance_); -} -inline const ::io::deephaven::proto::backplane::grpc::AggSpec_AggSpecSorted& AggSpec::sorted_first() const ABSL_ATTRIBUTE_LIFETIME_BOUND { - // @@protoc_insertion_point(field_get:io.deephaven.proto.backplane.grpc.AggSpec.sorted_first) - return _internal_sorted_first(); -} -inline ::io::deephaven::proto::backplane::grpc::AggSpec_AggSpecSorted* AggSpec::unsafe_arena_release_sorted_first() { - // @@protoc_insertion_point(field_unsafe_arena_release:io.deephaven.proto.backplane.grpc.AggSpec.sorted_first) - if (type_case() == kSortedFirst) { - clear_has_type(); - auto* temp = _impl_.type_.sorted_first_; - _impl_.type_.sorted_first_ = nullptr; - return temp; - } else { - return nullptr; - } -} -inline void AggSpec::unsafe_arena_set_allocated_sorted_first(::io::deephaven::proto::backplane::grpc::AggSpec_AggSpecSorted* value) { - // We rely on the oneof clear method to free the earlier contents - // of this oneof. We can directly use the pointer we're given to - // set the new value. - clear_type(); - if (value) { - set_has_sorted_first(); - _impl_.type_.sorted_first_ = value; - } - // @@protoc_insertion_point(field_unsafe_arena_set_allocated:io.deephaven.proto.backplane.grpc.AggSpec.sorted_first) -} -inline ::io::deephaven::proto::backplane::grpc::AggSpec_AggSpecSorted* AggSpec::_internal_mutable_sorted_first() { - if (type_case() != kSortedFirst) { - clear_type(); - set_has_sorted_first(); - _impl_.type_.sorted_first_ = - ::google::protobuf::Message::DefaultConstruct<::io::deephaven::proto::backplane::grpc::AggSpec_AggSpecSorted>(GetArena()); - } - return _impl_.type_.sorted_first_; -} -inline ::io::deephaven::proto::backplane::grpc::AggSpec_AggSpecSorted* AggSpec::mutable_sorted_first() ABSL_ATTRIBUTE_LIFETIME_BOUND { - ::io::deephaven::proto::backplane::grpc::AggSpec_AggSpecSorted* _msg = _internal_mutable_sorted_first(); - // @@protoc_insertion_point(field_mutable:io.deephaven.proto.backplane.grpc.AggSpec.sorted_first) - return _msg; -} - -// .io.deephaven.proto.backplane.grpc.AggSpec.AggSpecSorted sorted_last = 16; -inline bool AggSpec::has_sorted_last() const { - return type_case() == kSortedLast; -} -inline bool AggSpec::_internal_has_sorted_last() const { - return type_case() == kSortedLast; -} -inline void AggSpec::set_has_sorted_last() { - _impl_._oneof_case_[0] = kSortedLast; -} -inline void AggSpec::clear_sorted_last() { - ::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(); - } -} -inline ::io::deephaven::proto::backplane::grpc::AggSpec_AggSpecSorted* AggSpec::release_sorted_last() { - // @@protoc_insertion_point(field_release:io.deephaven.proto.backplane.grpc.AggSpec.sorted_last) - if (type_case() == kSortedLast) { - clear_has_type(); - auto* temp = _impl_.type_.sorted_last_; - if (GetArena() != nullptr) { - temp = ::google::protobuf::internal::DuplicateIfNonNull(temp); - } - _impl_.type_.sorted_last_ = nullptr; - return temp; - } else { - return nullptr; - } -} -inline const ::io::deephaven::proto::backplane::grpc::AggSpec_AggSpecSorted& AggSpec::_internal_sorted_last() const { - return type_case() == kSortedLast ? *_impl_.type_.sorted_last_ : reinterpret_cast<::io::deephaven::proto::backplane::grpc::AggSpec_AggSpecSorted&>(::io::deephaven::proto::backplane::grpc::_AggSpec_AggSpecSorted_default_instance_); -} -inline const ::io::deephaven::proto::backplane::grpc::AggSpec_AggSpecSorted& AggSpec::sorted_last() const ABSL_ATTRIBUTE_LIFETIME_BOUND { - // @@protoc_insertion_point(field_get:io.deephaven.proto.backplane.grpc.AggSpec.sorted_last) - return _internal_sorted_last(); -} -inline ::io::deephaven::proto::backplane::grpc::AggSpec_AggSpecSorted* AggSpec::unsafe_arena_release_sorted_last() { - // @@protoc_insertion_point(field_unsafe_arena_release:io.deephaven.proto.backplane.grpc.AggSpec.sorted_last) - if (type_case() == kSortedLast) { - clear_has_type(); - auto* temp = _impl_.type_.sorted_last_; - _impl_.type_.sorted_last_ = nullptr; - return temp; - } else { - return nullptr; - } -} -inline void AggSpec::unsafe_arena_set_allocated_sorted_last(::io::deephaven::proto::backplane::grpc::AggSpec_AggSpecSorted* value) { - // We rely on the oneof clear method to free the earlier contents - // of this oneof. We can directly use the pointer we're given to - // set the new value. - clear_type(); - if (value) { - set_has_sorted_last(); - _impl_.type_.sorted_last_ = value; - } - // @@protoc_insertion_point(field_unsafe_arena_set_allocated:io.deephaven.proto.backplane.grpc.AggSpec.sorted_last) -} -inline ::io::deephaven::proto::backplane::grpc::AggSpec_AggSpecSorted* AggSpec::_internal_mutable_sorted_last() { - if (type_case() != kSortedLast) { - clear_type(); - set_has_sorted_last(); - _impl_.type_.sorted_last_ = - ::google::protobuf::Message::DefaultConstruct<::io::deephaven::proto::backplane::grpc::AggSpec_AggSpecSorted>(GetArena()); - } - return _impl_.type_.sorted_last_; -} -inline ::io::deephaven::proto::backplane::grpc::AggSpec_AggSpecSorted* AggSpec::mutable_sorted_last() ABSL_ATTRIBUTE_LIFETIME_BOUND { - ::io::deephaven::proto::backplane::grpc::AggSpec_AggSpecSorted* _msg = _internal_mutable_sorted_last(); - // @@protoc_insertion_point(field_mutable:io.deephaven.proto.backplane.grpc.AggSpec.sorted_last) - return _msg; -} - -// .io.deephaven.proto.backplane.grpc.AggSpec.AggSpecStd std = 17; -inline bool AggSpec::has_std() const { - return type_case() == kStd; -} -inline bool AggSpec::_internal_has_std() const { - return type_case() == kStd; -} -inline void AggSpec::set_has_std() { - _impl_._oneof_case_[0] = kStd; -} -inline void AggSpec::clear_std() { - ::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(); - } -} -inline ::io::deephaven::proto::backplane::grpc::AggSpec_AggSpecStd* AggSpec::release_std() { - // @@protoc_insertion_point(field_release:io.deephaven.proto.backplane.grpc.AggSpec.std) - if (type_case() == kStd) { - clear_has_type(); - auto* temp = _impl_.type_.std_; - if (GetArena() != nullptr) { - temp = ::google::protobuf::internal::DuplicateIfNonNull(temp); - } - _impl_.type_.std_ = nullptr; - return temp; - } else { - return nullptr; - } -} -inline const ::io::deephaven::proto::backplane::grpc::AggSpec_AggSpecStd& AggSpec::_internal_std() const { - return type_case() == kStd ? *_impl_.type_.std_ : reinterpret_cast<::io::deephaven::proto::backplane::grpc::AggSpec_AggSpecStd&>(::io::deephaven::proto::backplane::grpc::_AggSpec_AggSpecStd_default_instance_); -} -inline const ::io::deephaven::proto::backplane::grpc::AggSpec_AggSpecStd& AggSpec::std() const ABSL_ATTRIBUTE_LIFETIME_BOUND { - // @@protoc_insertion_point(field_get:io.deephaven.proto.backplane.grpc.AggSpec.std) - return _internal_std(); -} -inline ::io::deephaven::proto::backplane::grpc::AggSpec_AggSpecStd* AggSpec::unsafe_arena_release_std() { - // @@protoc_insertion_point(field_unsafe_arena_release:io.deephaven.proto.backplane.grpc.AggSpec.std) - if (type_case() == kStd) { - clear_has_type(); - auto* temp = _impl_.type_.std_; - _impl_.type_.std_ = nullptr; - return temp; - } else { - return nullptr; - } -} -inline void AggSpec::unsafe_arena_set_allocated_std(::io::deephaven::proto::backplane::grpc::AggSpec_AggSpecStd* value) { - // We rely on the oneof clear method to free the earlier contents - // of this oneof. We can directly use the pointer we're given to - // set the new value. - clear_type(); - if (value) { - set_has_std(); - _impl_.type_.std_ = value; - } - // @@protoc_insertion_point(field_unsafe_arena_set_allocated:io.deephaven.proto.backplane.grpc.AggSpec.std) -} -inline ::io::deephaven::proto::backplane::grpc::AggSpec_AggSpecStd* AggSpec::_internal_mutable_std() { - if (type_case() != kStd) { - clear_type(); - set_has_std(); - _impl_.type_.std_ = - ::google::protobuf::Message::DefaultConstruct<::io::deephaven::proto::backplane::grpc::AggSpec_AggSpecStd>(GetArena()); - } - return _impl_.type_.std_; -} -inline ::io::deephaven::proto::backplane::grpc::AggSpec_AggSpecStd* AggSpec::mutable_std() ABSL_ATTRIBUTE_LIFETIME_BOUND { - ::io::deephaven::proto::backplane::grpc::AggSpec_AggSpecStd* _msg = _internal_mutable_std(); - // @@protoc_insertion_point(field_mutable:io.deephaven.proto.backplane.grpc.AggSpec.std) - return _msg; -} - -// .io.deephaven.proto.backplane.grpc.AggSpec.AggSpecSum sum = 18; -inline bool AggSpec::has_sum() const { - return type_case() == kSum; -} -inline bool AggSpec::_internal_has_sum() const { - return type_case() == kSum; -} -inline void AggSpec::set_has_sum() { - _impl_._oneof_case_[0] = kSum; -} -inline void AggSpec::clear_sum() { - ::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(); - } -} -inline ::io::deephaven::proto::backplane::grpc::AggSpec_AggSpecSum* AggSpec::release_sum() { - // @@protoc_insertion_point(field_release:io.deephaven.proto.backplane.grpc.AggSpec.sum) - if (type_case() == kSum) { - clear_has_type(); - auto* temp = _impl_.type_.sum_; - if (GetArena() != nullptr) { - temp = ::google::protobuf::internal::DuplicateIfNonNull(temp); - } - _impl_.type_.sum_ = nullptr; - return temp; - } else { - return nullptr; - } -} -inline const ::io::deephaven::proto::backplane::grpc::AggSpec_AggSpecSum& AggSpec::_internal_sum() const { - return type_case() == kSum ? *_impl_.type_.sum_ : reinterpret_cast<::io::deephaven::proto::backplane::grpc::AggSpec_AggSpecSum&>(::io::deephaven::proto::backplane::grpc::_AggSpec_AggSpecSum_default_instance_); -} -inline const ::io::deephaven::proto::backplane::grpc::AggSpec_AggSpecSum& AggSpec::sum() const ABSL_ATTRIBUTE_LIFETIME_BOUND { - // @@protoc_insertion_point(field_get:io.deephaven.proto.backplane.grpc.AggSpec.sum) - return _internal_sum(); -} -inline ::io::deephaven::proto::backplane::grpc::AggSpec_AggSpecSum* AggSpec::unsafe_arena_release_sum() { - // @@protoc_insertion_point(field_unsafe_arena_release:io.deephaven.proto.backplane.grpc.AggSpec.sum) - if (type_case() == kSum) { - clear_has_type(); - auto* temp = _impl_.type_.sum_; - _impl_.type_.sum_ = nullptr; - return temp; - } else { - return nullptr; - } -} -inline void AggSpec::unsafe_arena_set_allocated_sum(::io::deephaven::proto::backplane::grpc::AggSpec_AggSpecSum* value) { - // We rely on the oneof clear method to free the earlier contents - // of this oneof. We can directly use the pointer we're given to - // set the new value. - clear_type(); - if (value) { - set_has_sum(); - _impl_.type_.sum_ = value; - } - // @@protoc_insertion_point(field_unsafe_arena_set_allocated:io.deephaven.proto.backplane.grpc.AggSpec.sum) -} -inline ::io::deephaven::proto::backplane::grpc::AggSpec_AggSpecSum* AggSpec::_internal_mutable_sum() { - if (type_case() != kSum) { - clear_type(); - set_has_sum(); - _impl_.type_.sum_ = - ::google::protobuf::Message::DefaultConstruct<::io::deephaven::proto::backplane::grpc::AggSpec_AggSpecSum>(GetArena()); - } - return _impl_.type_.sum_; -} -inline ::io::deephaven::proto::backplane::grpc::AggSpec_AggSpecSum* AggSpec::mutable_sum() ABSL_ATTRIBUTE_LIFETIME_BOUND { - ::io::deephaven::proto::backplane::grpc::AggSpec_AggSpecSum* _msg = _internal_mutable_sum(); - // @@protoc_insertion_point(field_mutable:io.deephaven.proto.backplane.grpc.AggSpec.sum) - return _msg; -} - -// .io.deephaven.proto.backplane.grpc.AggSpec.AggSpecTDigest t_digest = 19; -inline bool AggSpec::has_t_digest() const { - return type_case() == kTDigest; -} -inline bool AggSpec::_internal_has_t_digest() const { - return type_case() == kTDigest; -} -inline void AggSpec::set_has_t_digest() { - _impl_._oneof_case_[0] = kTDigest; -} -inline void AggSpec::clear_t_digest() { - ::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(); - } -} -inline ::io::deephaven::proto::backplane::grpc::AggSpec_AggSpecTDigest* AggSpec::release_t_digest() { - // @@protoc_insertion_point(field_release:io.deephaven.proto.backplane.grpc.AggSpec.t_digest) - if (type_case() == kTDigest) { - clear_has_type(); - auto* temp = _impl_.type_.t_digest_; - if (GetArena() != nullptr) { - temp = ::google::protobuf::internal::DuplicateIfNonNull(temp); - } - _impl_.type_.t_digest_ = nullptr; - return temp; - } else { - return nullptr; - } -} -inline const ::io::deephaven::proto::backplane::grpc::AggSpec_AggSpecTDigest& AggSpec::_internal_t_digest() const { - return type_case() == kTDigest ? *_impl_.type_.t_digest_ : reinterpret_cast<::io::deephaven::proto::backplane::grpc::AggSpec_AggSpecTDigest&>(::io::deephaven::proto::backplane::grpc::_AggSpec_AggSpecTDigest_default_instance_); -} -inline const ::io::deephaven::proto::backplane::grpc::AggSpec_AggSpecTDigest& AggSpec::t_digest() const ABSL_ATTRIBUTE_LIFETIME_BOUND { - // @@protoc_insertion_point(field_get:io.deephaven.proto.backplane.grpc.AggSpec.t_digest) - return _internal_t_digest(); -} -inline ::io::deephaven::proto::backplane::grpc::AggSpec_AggSpecTDigest* AggSpec::unsafe_arena_release_t_digest() { - // @@protoc_insertion_point(field_unsafe_arena_release:io.deephaven.proto.backplane.grpc.AggSpec.t_digest) - if (type_case() == kTDigest) { - clear_has_type(); - auto* temp = _impl_.type_.t_digest_; - _impl_.type_.t_digest_ = nullptr; - return temp; - } else { - return nullptr; - } -} -inline void AggSpec::unsafe_arena_set_allocated_t_digest(::io::deephaven::proto::backplane::grpc::AggSpec_AggSpecTDigest* value) { - // We rely on the oneof clear method to free the earlier contents - // of this oneof. We can directly use the pointer we're given to - // set the new value. - clear_type(); - if (value) { - set_has_t_digest(); - _impl_.type_.t_digest_ = value; - } - // @@protoc_insertion_point(field_unsafe_arena_set_allocated:io.deephaven.proto.backplane.grpc.AggSpec.t_digest) -} -inline ::io::deephaven::proto::backplane::grpc::AggSpec_AggSpecTDigest* AggSpec::_internal_mutable_t_digest() { - if (type_case() != kTDigest) { - clear_type(); - set_has_t_digest(); - _impl_.type_.t_digest_ = - ::google::protobuf::Message::DefaultConstruct<::io::deephaven::proto::backplane::grpc::AggSpec_AggSpecTDigest>(GetArena()); - } - return _impl_.type_.t_digest_; -} -inline ::io::deephaven::proto::backplane::grpc::AggSpec_AggSpecTDigest* AggSpec::mutable_t_digest() ABSL_ATTRIBUTE_LIFETIME_BOUND { - ::io::deephaven::proto::backplane::grpc::AggSpec_AggSpecTDigest* _msg = _internal_mutable_t_digest(); - // @@protoc_insertion_point(field_mutable:io.deephaven.proto.backplane.grpc.AggSpec.t_digest) - return _msg; -} - -// .io.deephaven.proto.backplane.grpc.AggSpec.AggSpecUnique unique = 20; -inline bool AggSpec::has_unique() const { - return type_case() == kUnique; -} -inline bool AggSpec::_internal_has_unique() const { - return type_case() == kUnique; -} -inline void AggSpec::set_has_unique() { - _impl_._oneof_case_[0] = kUnique; -} -inline void AggSpec::clear_unique() { - ::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(); - } -} -inline ::io::deephaven::proto::backplane::grpc::AggSpec_AggSpecUnique* AggSpec::release_unique() { - // @@protoc_insertion_point(field_release:io.deephaven.proto.backplane.grpc.AggSpec.unique) - if (type_case() == kUnique) { - clear_has_type(); - auto* temp = _impl_.type_.unique_; - if (GetArena() != nullptr) { - temp = ::google::protobuf::internal::DuplicateIfNonNull(temp); - } - _impl_.type_.unique_ = nullptr; - return temp; - } else { - return nullptr; - } -} -inline const ::io::deephaven::proto::backplane::grpc::AggSpec_AggSpecUnique& AggSpec::_internal_unique() const { - return type_case() == kUnique ? *_impl_.type_.unique_ : reinterpret_cast<::io::deephaven::proto::backplane::grpc::AggSpec_AggSpecUnique&>(::io::deephaven::proto::backplane::grpc::_AggSpec_AggSpecUnique_default_instance_); -} -inline const ::io::deephaven::proto::backplane::grpc::AggSpec_AggSpecUnique& AggSpec::unique() const ABSL_ATTRIBUTE_LIFETIME_BOUND { - // @@protoc_insertion_point(field_get:io.deephaven.proto.backplane.grpc.AggSpec.unique) - return _internal_unique(); -} -inline ::io::deephaven::proto::backplane::grpc::AggSpec_AggSpecUnique* AggSpec::unsafe_arena_release_unique() { - // @@protoc_insertion_point(field_unsafe_arena_release:io.deephaven.proto.backplane.grpc.AggSpec.unique) - if (type_case() == kUnique) { - clear_has_type(); - auto* temp = _impl_.type_.unique_; - _impl_.type_.unique_ = nullptr; - return temp; - } else { - return nullptr; - } -} -inline void AggSpec::unsafe_arena_set_allocated_unique(::io::deephaven::proto::backplane::grpc::AggSpec_AggSpecUnique* value) { - // We rely on the oneof clear method to free the earlier contents - // of this oneof. We can directly use the pointer we're given to - // set the new value. - clear_type(); - if (value) { - set_has_unique(); - _impl_.type_.unique_ = value; - } - // @@protoc_insertion_point(field_unsafe_arena_set_allocated:io.deephaven.proto.backplane.grpc.AggSpec.unique) -} -inline ::io::deephaven::proto::backplane::grpc::AggSpec_AggSpecUnique* AggSpec::_internal_mutable_unique() { - if (type_case() != kUnique) { - clear_type(); - set_has_unique(); - _impl_.type_.unique_ = - ::google::protobuf::Message::DefaultConstruct<::io::deephaven::proto::backplane::grpc::AggSpec_AggSpecUnique>(GetArena()); - } - return _impl_.type_.unique_; -} -inline ::io::deephaven::proto::backplane::grpc::AggSpec_AggSpecUnique* AggSpec::mutable_unique() ABSL_ATTRIBUTE_LIFETIME_BOUND { - ::io::deephaven::proto::backplane::grpc::AggSpec_AggSpecUnique* _msg = _internal_mutable_unique(); - // @@protoc_insertion_point(field_mutable:io.deephaven.proto.backplane.grpc.AggSpec.unique) - return _msg; -} - -// .io.deephaven.proto.backplane.grpc.AggSpec.AggSpecWeighted weighted_avg = 21; -inline bool AggSpec::has_weighted_avg() const { - return type_case() == kWeightedAvg; -} -inline bool AggSpec::_internal_has_weighted_avg() const { - return type_case() == kWeightedAvg; -} -inline void AggSpec::set_has_weighted_avg() { - _impl_._oneof_case_[0] = kWeightedAvg; -} -inline void AggSpec::clear_weighted_avg() { - ::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(); - } -} -inline ::io::deephaven::proto::backplane::grpc::AggSpec_AggSpecWeighted* AggSpec::release_weighted_avg() { - // @@protoc_insertion_point(field_release:io.deephaven.proto.backplane.grpc.AggSpec.weighted_avg) - if (type_case() == kWeightedAvg) { - clear_has_type(); - auto* temp = _impl_.type_.weighted_avg_; - if (GetArena() != nullptr) { - temp = ::google::protobuf::internal::DuplicateIfNonNull(temp); - } - _impl_.type_.weighted_avg_ = nullptr; - return temp; - } else { - return nullptr; - } -} -inline const ::io::deephaven::proto::backplane::grpc::AggSpec_AggSpecWeighted& AggSpec::_internal_weighted_avg() const { - return type_case() == kWeightedAvg ? *_impl_.type_.weighted_avg_ : reinterpret_cast<::io::deephaven::proto::backplane::grpc::AggSpec_AggSpecWeighted&>(::io::deephaven::proto::backplane::grpc::_AggSpec_AggSpecWeighted_default_instance_); -} -inline const ::io::deephaven::proto::backplane::grpc::AggSpec_AggSpecWeighted& AggSpec::weighted_avg() const ABSL_ATTRIBUTE_LIFETIME_BOUND { - // @@protoc_insertion_point(field_get:io.deephaven.proto.backplane.grpc.AggSpec.weighted_avg) - return _internal_weighted_avg(); -} -inline ::io::deephaven::proto::backplane::grpc::AggSpec_AggSpecWeighted* AggSpec::unsafe_arena_release_weighted_avg() { - // @@protoc_insertion_point(field_unsafe_arena_release:io.deephaven.proto.backplane.grpc.AggSpec.weighted_avg) - if (type_case() == kWeightedAvg) { - clear_has_type(); - auto* temp = _impl_.type_.weighted_avg_; - _impl_.type_.weighted_avg_ = nullptr; - return temp; - } else { - return nullptr; - } -} -inline void AggSpec::unsafe_arena_set_allocated_weighted_avg(::io::deephaven::proto::backplane::grpc::AggSpec_AggSpecWeighted* value) { - // We rely on the oneof clear method to free the earlier contents - // of this oneof. We can directly use the pointer we're given to - // set the new value. - clear_type(); - if (value) { - set_has_weighted_avg(); - _impl_.type_.weighted_avg_ = value; - } - // @@protoc_insertion_point(field_unsafe_arena_set_allocated:io.deephaven.proto.backplane.grpc.AggSpec.weighted_avg) -} -inline ::io::deephaven::proto::backplane::grpc::AggSpec_AggSpecWeighted* AggSpec::_internal_mutable_weighted_avg() { - if (type_case() != kWeightedAvg) { - clear_type(); - set_has_weighted_avg(); - _impl_.type_.weighted_avg_ = - ::google::protobuf::Message::DefaultConstruct<::io::deephaven::proto::backplane::grpc::AggSpec_AggSpecWeighted>(GetArena()); - } - return _impl_.type_.weighted_avg_; -} -inline ::io::deephaven::proto::backplane::grpc::AggSpec_AggSpecWeighted* AggSpec::mutable_weighted_avg() ABSL_ATTRIBUTE_LIFETIME_BOUND { - ::io::deephaven::proto::backplane::grpc::AggSpec_AggSpecWeighted* _msg = _internal_mutable_weighted_avg(); - // @@protoc_insertion_point(field_mutable:io.deephaven.proto.backplane.grpc.AggSpec.weighted_avg) - return _msg; -} - -// .io.deephaven.proto.backplane.grpc.AggSpec.AggSpecWeighted weighted_sum = 22; -inline bool AggSpec::has_weighted_sum() const { - return type_case() == kWeightedSum; -} -inline bool AggSpec::_internal_has_weighted_sum() const { - return type_case() == kWeightedSum; -} -inline void AggSpec::set_has_weighted_sum() { - _impl_._oneof_case_[0] = kWeightedSum; -} -inline void AggSpec::clear_weighted_sum() { - ::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(); - } -} -inline ::io::deephaven::proto::backplane::grpc::AggSpec_AggSpecWeighted* AggSpec::release_weighted_sum() { - // @@protoc_insertion_point(field_release:io.deephaven.proto.backplane.grpc.AggSpec.weighted_sum) - if (type_case() == kWeightedSum) { - clear_has_type(); - auto* temp = _impl_.type_.weighted_sum_; - if (GetArena() != nullptr) { - temp = ::google::protobuf::internal::DuplicateIfNonNull(temp); - } - _impl_.type_.weighted_sum_ = nullptr; - return temp; - } else { - return nullptr; - } -} -inline const ::io::deephaven::proto::backplane::grpc::AggSpec_AggSpecWeighted& AggSpec::_internal_weighted_sum() const { - return type_case() == kWeightedSum ? *_impl_.type_.weighted_sum_ : reinterpret_cast<::io::deephaven::proto::backplane::grpc::AggSpec_AggSpecWeighted&>(::io::deephaven::proto::backplane::grpc::_AggSpec_AggSpecWeighted_default_instance_); -} -inline const ::io::deephaven::proto::backplane::grpc::AggSpec_AggSpecWeighted& AggSpec::weighted_sum() const ABSL_ATTRIBUTE_LIFETIME_BOUND { - // @@protoc_insertion_point(field_get:io.deephaven.proto.backplane.grpc.AggSpec.weighted_sum) - return _internal_weighted_sum(); -} -inline ::io::deephaven::proto::backplane::grpc::AggSpec_AggSpecWeighted* AggSpec::unsafe_arena_release_weighted_sum() { - // @@protoc_insertion_point(field_unsafe_arena_release:io.deephaven.proto.backplane.grpc.AggSpec.weighted_sum) - if (type_case() == kWeightedSum) { - clear_has_type(); - auto* temp = _impl_.type_.weighted_sum_; - _impl_.type_.weighted_sum_ = nullptr; - return temp; - } else { - return nullptr; - } -} -inline void AggSpec::unsafe_arena_set_allocated_weighted_sum(::io::deephaven::proto::backplane::grpc::AggSpec_AggSpecWeighted* value) { - // We rely on the oneof clear method to free the earlier contents - // of this oneof. We can directly use the pointer we're given to - // set the new value. - clear_type(); - if (value) { - set_has_weighted_sum(); - _impl_.type_.weighted_sum_ = value; - } - // @@protoc_insertion_point(field_unsafe_arena_set_allocated:io.deephaven.proto.backplane.grpc.AggSpec.weighted_sum) -} -inline ::io::deephaven::proto::backplane::grpc::AggSpec_AggSpecWeighted* AggSpec::_internal_mutable_weighted_sum() { - if (type_case() != kWeightedSum) { - clear_type(); - set_has_weighted_sum(); - _impl_.type_.weighted_sum_ = - ::google::protobuf::Message::DefaultConstruct<::io::deephaven::proto::backplane::grpc::AggSpec_AggSpecWeighted>(GetArena()); - } - return _impl_.type_.weighted_sum_; -} -inline ::io::deephaven::proto::backplane::grpc::AggSpec_AggSpecWeighted* AggSpec::mutable_weighted_sum() ABSL_ATTRIBUTE_LIFETIME_BOUND { - ::io::deephaven::proto::backplane::grpc::AggSpec_AggSpecWeighted* _msg = _internal_mutable_weighted_sum(); - // @@protoc_insertion_point(field_mutable:io.deephaven.proto.backplane.grpc.AggSpec.weighted_sum) - return _msg; -} - -// .io.deephaven.proto.backplane.grpc.AggSpec.AggSpecVar var = 23; -inline bool AggSpec::has_var() const { - return type_case() == kVar; -} -inline bool AggSpec::_internal_has_var() const { - return type_case() == kVar; -} -inline void AggSpec::set_has_var() { - _impl_._oneof_case_[0] = kVar; -} -inline void AggSpec::clear_var() { - ::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(); - } -} -inline ::io::deephaven::proto::backplane::grpc::AggSpec_AggSpecVar* AggSpec::release_var() { - // @@protoc_insertion_point(field_release:io.deephaven.proto.backplane.grpc.AggSpec.var) - if (type_case() == kVar) { - clear_has_type(); - auto* temp = _impl_.type_.var_; - if (GetArena() != nullptr) { - temp = ::google::protobuf::internal::DuplicateIfNonNull(temp); - } - _impl_.type_.var_ = nullptr; - return temp; - } else { - return nullptr; - } -} -inline const ::io::deephaven::proto::backplane::grpc::AggSpec_AggSpecVar& AggSpec::_internal_var() const { - return type_case() == kVar ? *_impl_.type_.var_ : reinterpret_cast<::io::deephaven::proto::backplane::grpc::AggSpec_AggSpecVar&>(::io::deephaven::proto::backplane::grpc::_AggSpec_AggSpecVar_default_instance_); -} -inline const ::io::deephaven::proto::backplane::grpc::AggSpec_AggSpecVar& AggSpec::var() const ABSL_ATTRIBUTE_LIFETIME_BOUND { - // @@protoc_insertion_point(field_get:io.deephaven.proto.backplane.grpc.AggSpec.var) - return _internal_var(); -} -inline ::io::deephaven::proto::backplane::grpc::AggSpec_AggSpecVar* AggSpec::unsafe_arena_release_var() { - // @@protoc_insertion_point(field_unsafe_arena_release:io.deephaven.proto.backplane.grpc.AggSpec.var) - if (type_case() == kVar) { - clear_has_type(); - auto* temp = _impl_.type_.var_; - _impl_.type_.var_ = nullptr; - return temp; - } else { - return nullptr; - } -} -inline void AggSpec::unsafe_arena_set_allocated_var(::io::deephaven::proto::backplane::grpc::AggSpec_AggSpecVar* value) { - // We rely on the oneof clear method to free the earlier contents - // of this oneof. We can directly use the pointer we're given to - // set the new value. - clear_type(); - if (value) { - set_has_var(); - _impl_.type_.var_ = value; - } - // @@protoc_insertion_point(field_unsafe_arena_set_allocated:io.deephaven.proto.backplane.grpc.AggSpec.var) -} -inline ::io::deephaven::proto::backplane::grpc::AggSpec_AggSpecVar* AggSpec::_internal_mutable_var() { - if (type_case() != kVar) { - clear_type(); - set_has_var(); - _impl_.type_.var_ = - ::google::protobuf::Message::DefaultConstruct<::io::deephaven::proto::backplane::grpc::AggSpec_AggSpecVar>(GetArena()); - } - return _impl_.type_.var_; -} -inline ::io::deephaven::proto::backplane::grpc::AggSpec_AggSpecVar* AggSpec::mutable_var() ABSL_ATTRIBUTE_LIFETIME_BOUND { - ::io::deephaven::proto::backplane::grpc::AggSpec_AggSpecVar* _msg = _internal_mutable_var(); - // @@protoc_insertion_point(field_mutable:io.deephaven.proto.backplane.grpc.AggSpec.var) - return _msg; -} - -inline bool AggSpec::has_type() const { - return type_case() != TYPE_NOT_SET; -} -inline void AggSpec::clear_has_type() { - _impl_._oneof_case_[0] = TYPE_NOT_SET; -} -inline AggSpec::TypeCase AggSpec::type_case() const { - return AggSpec::TypeCase(_impl_._oneof_case_[0]); -} -// ------------------------------------------------------------------- - -// AggregateRequest - -// .io.deephaven.proto.backplane.grpc.Ticket result_id = 1; -inline bool AggregateRequest::has_result_id() const { - bool value = (_impl_._has_bits_[0] & 0x00000001u) != 0; - PROTOBUF_ASSUME(!value || _impl_.result_id_ != nullptr); - return value; -} -inline const ::io::deephaven::proto::backplane::grpc::Ticket& AggregateRequest::_internal_result_id() const { - ::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_); -} -inline const ::io::deephaven::proto::backplane::grpc::Ticket& AggregateRequest::result_id() const ABSL_ATTRIBUTE_LIFETIME_BOUND { - // @@protoc_insertion_point(field_get:io.deephaven.proto.backplane.grpc.AggregateRequest.result_id) - return _internal_result_id(); -} -inline void AggregateRequest::unsafe_arena_set_allocated_result_id(::io::deephaven::proto::backplane::grpc::Ticket* value) { - ::google::protobuf::internal::TSanWrite(&_impl_); - if (GetArena() == nullptr) { - delete reinterpret_cast<::google::protobuf::MessageLite*>(_impl_.result_id_); - } - _impl_.result_id_ = reinterpret_cast<::io::deephaven::proto::backplane::grpc::Ticket*>(value); - if (value != nullptr) { - _impl_._has_bits_[0] |= 0x00000001u; - } else { - _impl_._has_bits_[0] &= ~0x00000001u; - } - // @@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() { - ::google::protobuf::internal::TSanWrite(&_impl_); - - _impl_._has_bits_[0] &= ~0x00000001u; - ::io::deephaven::proto::backplane::grpc::Ticket* released = _impl_.result_id_; - _impl_.result_id_ = nullptr; -#ifdef PROTOBUF_FORCE_COPY_IN_RELEASE - auto* old = reinterpret_cast<::google::protobuf::MessageLite*>(released); - released = ::google::protobuf::internal::DuplicateIfNonNull(released); - if (GetArena() == nullptr) { - delete old; - } -#else // PROTOBUF_FORCE_COPY_IN_RELEASE - if (GetArena() != nullptr) { - released = ::google::protobuf::internal::DuplicateIfNonNull(released); - } -#endif // !PROTOBUF_FORCE_COPY_IN_RELEASE - return released; -} -inline ::io::deephaven::proto::backplane::grpc::Ticket* AggregateRequest::unsafe_arena_release_result_id() { - ::google::protobuf::internal::TSanWrite(&_impl_); - // @@protoc_insertion_point(field_release:io.deephaven.proto.backplane.grpc.AggregateRequest.result_id) - - _impl_._has_bits_[0] &= ~0x00000001u; - ::io::deephaven::proto::backplane::grpc::Ticket* temp = _impl_.result_id_; - _impl_.result_id_ = nullptr; - return temp; -} -inline ::io::deephaven::proto::backplane::grpc::Ticket* AggregateRequest::_internal_mutable_result_id() { - ::google::protobuf::internal::TSanWrite(&_impl_); - if (_impl_.result_id_ == nullptr) { - 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(); - ::google::protobuf::internal::TSanWrite(&_impl_); - if (message_arena == nullptr) { - delete reinterpret_cast<::google::protobuf::MessageLite*>(_impl_.result_id_); - } - - if (value != nullptr) { - ::google::protobuf::Arena* submessage_arena = reinterpret_cast<::google::protobuf::MessageLite*>(value)->GetArena(); - if (message_arena != submessage_arena) { - value = ::google::protobuf::internal::GetOwnedMessage(message_arena, value, submessage_arena); - } - _impl_._has_bits_[0] |= 0x00000001u; - } else { - _impl_._has_bits_[0] &= ~0x00000001u; - } - - _impl_.result_id_ = reinterpret_cast<::io::deephaven::proto::backplane::grpc::Ticket*>(value); - // @@protoc_insertion_point(field_set_allocated:io.deephaven.proto.backplane.grpc.AggregateRequest.result_id) -} - -// .io.deephaven.proto.backplane.grpc.TableReference source_id = 2; -inline bool AggregateRequest::has_source_id() const { - bool value = (_impl_._has_bits_[0] & 0x00000002u) != 0; - PROTOBUF_ASSUME(!value || _impl_.source_id_ != nullptr); - return value; -} -inline void AggregateRequest::clear_source_id() { - ::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 { - ::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_); -} -inline const ::io::deephaven::proto::backplane::grpc::TableReference& AggregateRequest::source_id() const ABSL_ATTRIBUTE_LIFETIME_BOUND { - // @@protoc_insertion_point(field_get:io.deephaven.proto.backplane.grpc.AggregateRequest.source_id) - return _internal_source_id(); -} -inline void AggregateRequest::unsafe_arena_set_allocated_source_id(::io::deephaven::proto::backplane::grpc::TableReference* value) { - ::google::protobuf::internal::TSanWrite(&_impl_); - if (GetArena() == nullptr) { - delete reinterpret_cast<::google::protobuf::MessageLite*>(_impl_.source_id_); - } - _impl_.source_id_ = reinterpret_cast<::io::deephaven::proto::backplane::grpc::TableReference*>(value); - if (value != nullptr) { - _impl_._has_bits_[0] |= 0x00000002u; - } else { - _impl_._has_bits_[0] &= ~0x00000002u; - } - // @@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() { - ::google::protobuf::internal::TSanWrite(&_impl_); - - _impl_._has_bits_[0] &= ~0x00000002u; - ::io::deephaven::proto::backplane::grpc::TableReference* released = _impl_.source_id_; - _impl_.source_id_ = nullptr; -#ifdef PROTOBUF_FORCE_COPY_IN_RELEASE - auto* old = reinterpret_cast<::google::protobuf::MessageLite*>(released); - released = ::google::protobuf::internal::DuplicateIfNonNull(released); - if (GetArena() == nullptr) { - delete old; - } -#else // PROTOBUF_FORCE_COPY_IN_RELEASE - if (GetArena() != nullptr) { - released = ::google::protobuf::internal::DuplicateIfNonNull(released); - } -#endif // !PROTOBUF_FORCE_COPY_IN_RELEASE - return released; -} -inline ::io::deephaven::proto::backplane::grpc::TableReference* AggregateRequest::unsafe_arena_release_source_id() { - ::google::protobuf::internal::TSanWrite(&_impl_); - // @@protoc_insertion_point(field_release:io.deephaven.proto.backplane.grpc.AggregateRequest.source_id) - - _impl_._has_bits_[0] &= ~0x00000002u; - ::io::deephaven::proto::backplane::grpc::TableReference* temp = _impl_.source_id_; - _impl_.source_id_ = nullptr; - return temp; -} -inline ::io::deephaven::proto::backplane::grpc::TableReference* AggregateRequest::_internal_mutable_source_id() { - ::google::protobuf::internal::TSanWrite(&_impl_); - if (_impl_.source_id_ == nullptr) { - 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(); - ::google::protobuf::internal::TSanWrite(&_impl_); - if (message_arena == nullptr) { - delete (_impl_.source_id_); - } - - if (value != nullptr) { - ::google::protobuf::Arena* submessage_arena = (value)->GetArena(); - if (message_arena != submessage_arena) { - value = ::google::protobuf::internal::GetOwnedMessage(message_arena, value, submessage_arena); - } - _impl_._has_bits_[0] |= 0x00000002u; - } else { - _impl_._has_bits_[0] &= ~0x00000002u; - } - - _impl_.source_id_ = reinterpret_cast<::io::deephaven::proto::backplane::grpc::TableReference*>(value); - // @@protoc_insertion_point(field_set_allocated:io.deephaven.proto.backplane.grpc.AggregateRequest.source_id) -} - -// .io.deephaven.proto.backplane.grpc.TableReference initial_groups_id = 3; -inline bool AggregateRequest::has_initial_groups_id() const { - bool value = (_impl_._has_bits_[0] & 0x00000004u) != 0; - PROTOBUF_ASSUME(!value || _impl_.initial_groups_id_ != nullptr); - return value; -} -inline void AggregateRequest::clear_initial_groups_id() { - ::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 { - ::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_); -} -inline const ::io::deephaven::proto::backplane::grpc::TableReference& AggregateRequest::initial_groups_id() const ABSL_ATTRIBUTE_LIFETIME_BOUND { - // @@protoc_insertion_point(field_get:io.deephaven.proto.backplane.grpc.AggregateRequest.initial_groups_id) - return _internal_initial_groups_id(); -} -inline void AggregateRequest::unsafe_arena_set_allocated_initial_groups_id(::io::deephaven::proto::backplane::grpc::TableReference* value) { - ::google::protobuf::internal::TSanWrite(&_impl_); - if (GetArena() == nullptr) { - delete reinterpret_cast<::google::protobuf::MessageLite*>(_impl_.initial_groups_id_); - } - _impl_.initial_groups_id_ = reinterpret_cast<::io::deephaven::proto::backplane::grpc::TableReference*>(value); - if (value != nullptr) { - _impl_._has_bits_[0] |= 0x00000004u; - } else { - _impl_._has_bits_[0] &= ~0x00000004u; - } - // @@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() { - ::google::protobuf::internal::TSanWrite(&_impl_); - - _impl_._has_bits_[0] &= ~0x00000004u; - ::io::deephaven::proto::backplane::grpc::TableReference* released = _impl_.initial_groups_id_; - _impl_.initial_groups_id_ = nullptr; -#ifdef PROTOBUF_FORCE_COPY_IN_RELEASE - auto* old = reinterpret_cast<::google::protobuf::MessageLite*>(released); - released = ::google::protobuf::internal::DuplicateIfNonNull(released); - if (GetArena() == nullptr) { - delete old; - } -#else // PROTOBUF_FORCE_COPY_IN_RELEASE - if (GetArena() != nullptr) { - released = ::google::protobuf::internal::DuplicateIfNonNull(released); - } -#endif // !PROTOBUF_FORCE_COPY_IN_RELEASE - return released; -} -inline ::io::deephaven::proto::backplane::grpc::TableReference* AggregateRequest::unsafe_arena_release_initial_groups_id() { - ::google::protobuf::internal::TSanWrite(&_impl_); - // @@protoc_insertion_point(field_release:io.deephaven.proto.backplane.grpc.AggregateRequest.initial_groups_id) - - _impl_._has_bits_[0] &= ~0x00000004u; - ::io::deephaven::proto::backplane::grpc::TableReference* temp = _impl_.initial_groups_id_; - _impl_.initial_groups_id_ = nullptr; - return temp; -} -inline ::io::deephaven::proto::backplane::grpc::TableReference* AggregateRequest::_internal_mutable_initial_groups_id() { - ::google::protobuf::internal::TSanWrite(&_impl_); - if (_impl_.initial_groups_id_ == nullptr) { - 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(); - ::google::protobuf::internal::TSanWrite(&_impl_); - if (message_arena == nullptr) { - delete (_impl_.initial_groups_id_); - } - - if (value != nullptr) { - ::google::protobuf::Arena* submessage_arena = (value)->GetArena(); - if (message_arena != submessage_arena) { - value = ::google::protobuf::internal::GetOwnedMessage(message_arena, value, submessage_arena); - } - _impl_._has_bits_[0] |= 0x00000004u; - } else { - _impl_._has_bits_[0] &= ~0x00000004u; - } - - _impl_.initial_groups_id_ = reinterpret_cast<::io::deephaven::proto::backplane::grpc::TableReference*>(value); - // @@protoc_insertion_point(field_set_allocated:io.deephaven.proto.backplane.grpc.AggregateRequest.initial_groups_id) -} - -// bool preserve_empty = 4; -inline void AggregateRequest::clear_preserve_empty() { - ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.preserve_empty_ = false; -} -inline bool AggregateRequest::preserve_empty() const { - // @@protoc_insertion_point(field_get:io.deephaven.proto.backplane.grpc.AggregateRequest.preserve_empty) - return _internal_preserve_empty(); -} -inline void AggregateRequest::set_preserve_empty(bool value) { - _internal_set_preserve_empty(value); - // @@protoc_insertion_point(field_set:io.deephaven.proto.backplane.grpc.AggregateRequest.preserve_empty) -} -inline bool AggregateRequest::_internal_preserve_empty() const { - ::google::protobuf::internal::TSanRead(&_impl_); - return _impl_.preserve_empty_; -} -inline void AggregateRequest::_internal_set_preserve_empty(bool value) { - ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.preserve_empty_ = value; -} - -// repeated .io.deephaven.proto.backplane.grpc.Aggregation aggregations = 5; -inline int AggregateRequest::_internal_aggregations_size() const { - return _internal_aggregations().size(); -} -inline int AggregateRequest::aggregations_size() const { - return _internal_aggregations_size(); -} -inline void AggregateRequest::clear_aggregations() { - ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.aggregations_.Clear(); -} -inline ::io::deephaven::proto::backplane::grpc::Aggregation* AggregateRequest::mutable_aggregations(int index) - ABSL_ATTRIBUTE_LIFETIME_BOUND { - // @@protoc_insertion_point(field_mutable:io.deephaven.proto.backplane.grpc.AggregateRequest.aggregations) - return _internal_mutable_aggregations()->Mutable(index); -} -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) - ::google::protobuf::internal::TSanWrite(&_impl_); - return _internal_mutable_aggregations(); -} -inline const ::io::deephaven::proto::backplane::grpc::Aggregation& AggregateRequest::aggregations(int index) const - ABSL_ATTRIBUTE_LIFETIME_BOUND { - // @@protoc_insertion_point(field_get:io.deephaven.proto.backplane.grpc.AggregateRequest.aggregations) - return _internal_aggregations().Get(index); -} -inline ::io::deephaven::proto::backplane::grpc::Aggregation* AggregateRequest::add_aggregations() ABSL_ATTRIBUTE_LIFETIME_BOUND { - ::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; -} -inline const ::google::protobuf::RepeatedPtrField<::io::deephaven::proto::backplane::grpc::Aggregation>& AggregateRequest::aggregations() const - ABSL_ATTRIBUTE_LIFETIME_BOUND { - // @@protoc_insertion_point(field_list:io.deephaven.proto.backplane.grpc.AggregateRequest.aggregations) - return _internal_aggregations(); -} -inline const ::google::protobuf::RepeatedPtrField<::io::deephaven::proto::backplane::grpc::Aggregation>& -AggregateRequest::_internal_aggregations() const { - ::google::protobuf::internal::TSanRead(&_impl_); - return _impl_.aggregations_; -} -inline ::google::protobuf::RepeatedPtrField<::io::deephaven::proto::backplane::grpc::Aggregation>* -AggregateRequest::_internal_mutable_aggregations() { - ::google::protobuf::internal::TSanRead(&_impl_); - return &_impl_.aggregations_; -} - -// repeated string group_by_columns = 6; -inline int AggregateRequest::_internal_group_by_columns_size() const { - return _internal_group_by_columns().size(); -} -inline int AggregateRequest::group_by_columns_size() const { - return _internal_group_by_columns_size(); -} -inline void AggregateRequest::clear_group_by_columns() { - ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.group_by_columns_.Clear(); -} -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; -} -inline const std::string& AggregateRequest::group_by_columns(int index) const - ABSL_ATTRIBUTE_LIFETIME_BOUND { - // @@protoc_insertion_point(field_get:io.deephaven.proto.backplane.grpc.AggregateRequest.group_by_columns) - return _internal_group_by_columns().Get(index); -} -inline std::string* AggregateRequest::mutable_group_by_columns(int index) - ABSL_ATTRIBUTE_LIFETIME_BOUND { - // @@protoc_insertion_point(field_mutable:io.deephaven.proto.backplane.grpc.AggregateRequest.group_by_columns) - return _internal_mutable_group_by_columns()->Mutable(index); -} -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) -} -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 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) - return _internal_group_by_columns(); -} -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) - ::google::protobuf::internal::TSanWrite(&_impl_); - return _internal_mutable_group_by_columns(); -} -inline const ::google::protobuf::RepeatedPtrField& -AggregateRequest::_internal_group_by_columns() const { - ::google::protobuf::internal::TSanRead(&_impl_); - return _impl_.group_by_columns_; -} -inline ::google::protobuf::RepeatedPtrField* -AggregateRequest::_internal_mutable_group_by_columns() { - ::google::protobuf::internal::TSanRead(&_impl_); - return &_impl_.group_by_columns_; -} - -// ------------------------------------------------------------------- - -// Aggregation_AggregationColumns - -// .io.deephaven.proto.backplane.grpc.AggSpec spec = 1; -inline bool Aggregation_AggregationColumns::has_spec() const { - bool value = (_impl_._has_bits_[0] & 0x00000001u) != 0; - PROTOBUF_ASSUME(!value || _impl_.spec_ != nullptr); - return value; -} -inline void Aggregation_AggregationColumns::clear_spec() { - ::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 { - ::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_); -} -inline const ::io::deephaven::proto::backplane::grpc::AggSpec& Aggregation_AggregationColumns::spec() const ABSL_ATTRIBUTE_LIFETIME_BOUND { - // @@protoc_insertion_point(field_get:io.deephaven.proto.backplane.grpc.Aggregation.AggregationColumns.spec) - return _internal_spec(); -} -inline void Aggregation_AggregationColumns::unsafe_arena_set_allocated_spec(::io::deephaven::proto::backplane::grpc::AggSpec* value) { - ::google::protobuf::internal::TSanWrite(&_impl_); - if (GetArena() == nullptr) { - delete reinterpret_cast<::google::protobuf::MessageLite*>(_impl_.spec_); - } - _impl_.spec_ = reinterpret_cast<::io::deephaven::proto::backplane::grpc::AggSpec*>(value); - if (value != nullptr) { - _impl_._has_bits_[0] |= 0x00000001u; - } else { - _impl_._has_bits_[0] &= ~0x00000001u; - } - // @@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() { - ::google::protobuf::internal::TSanWrite(&_impl_); - - _impl_._has_bits_[0] &= ~0x00000001u; - ::io::deephaven::proto::backplane::grpc::AggSpec* released = _impl_.spec_; - _impl_.spec_ = nullptr; -#ifdef PROTOBUF_FORCE_COPY_IN_RELEASE - auto* old = reinterpret_cast<::google::protobuf::MessageLite*>(released); - released = ::google::protobuf::internal::DuplicateIfNonNull(released); - if (GetArena() == nullptr) { - delete old; - } -#else // PROTOBUF_FORCE_COPY_IN_RELEASE - if (GetArena() != nullptr) { - released = ::google::protobuf::internal::DuplicateIfNonNull(released); - } -#endif // !PROTOBUF_FORCE_COPY_IN_RELEASE - return released; -} -inline ::io::deephaven::proto::backplane::grpc::AggSpec* Aggregation_AggregationColumns::unsafe_arena_release_spec() { - ::google::protobuf::internal::TSanWrite(&_impl_); - // @@protoc_insertion_point(field_release:io.deephaven.proto.backplane.grpc.Aggregation.AggregationColumns.spec) - - _impl_._has_bits_[0] &= ~0x00000001u; - ::io::deephaven::proto::backplane::grpc::AggSpec* temp = _impl_.spec_; - _impl_.spec_ = nullptr; - return temp; -} -inline ::io::deephaven::proto::backplane::grpc::AggSpec* Aggregation_AggregationColumns::_internal_mutable_spec() { - ::google::protobuf::internal::TSanWrite(&_impl_); - if (_impl_.spec_ == nullptr) { - 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(); - ::google::protobuf::internal::TSanWrite(&_impl_); - if (message_arena == nullptr) { - delete (_impl_.spec_); - } - - if (value != nullptr) { - ::google::protobuf::Arena* submessage_arena = (value)->GetArena(); - if (message_arena != submessage_arena) { - value = ::google::protobuf::internal::GetOwnedMessage(message_arena, value, submessage_arena); - } - _impl_._has_bits_[0] |= 0x00000001u; - } else { - _impl_._has_bits_[0] &= ~0x00000001u; - } - - _impl_.spec_ = reinterpret_cast<::io::deephaven::proto::backplane::grpc::AggSpec*>(value); - // @@protoc_insertion_point(field_set_allocated:io.deephaven.proto.backplane.grpc.Aggregation.AggregationColumns.spec) -} - -// repeated string match_pairs = 2; -inline int Aggregation_AggregationColumns::_internal_match_pairs_size() const { - return _internal_match_pairs().size(); -} -inline int Aggregation_AggregationColumns::match_pairs_size() const { - return _internal_match_pairs_size(); -} -inline void Aggregation_AggregationColumns::clear_match_pairs() { - ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.match_pairs_.Clear(); -} -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; -} -inline const std::string& Aggregation_AggregationColumns::match_pairs(int index) const - ABSL_ATTRIBUTE_LIFETIME_BOUND { - // @@protoc_insertion_point(field_get:io.deephaven.proto.backplane.grpc.Aggregation.AggregationColumns.match_pairs) - return _internal_match_pairs().Get(index); -} -inline std::string* Aggregation_AggregationColumns::mutable_match_pairs(int index) - ABSL_ATTRIBUTE_LIFETIME_BOUND { - // @@protoc_insertion_point(field_mutable:io.deephaven.proto.backplane.grpc.Aggregation.AggregationColumns.match_pairs) - return _internal_mutable_match_pairs()->Mutable(index); -} -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) -} -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 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) - return _internal_match_pairs(); -} -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) - ::google::protobuf::internal::TSanWrite(&_impl_); - return _internal_mutable_match_pairs(); -} -inline const ::google::protobuf::RepeatedPtrField& -Aggregation_AggregationColumns::_internal_match_pairs() const { - ::google::protobuf::internal::TSanRead(&_impl_); - return _impl_.match_pairs_; -} -inline ::google::protobuf::RepeatedPtrField* -Aggregation_AggregationColumns::_internal_mutable_match_pairs() { - ::google::protobuf::internal::TSanRead(&_impl_); - return &_impl_.match_pairs_; -} - -// ------------------------------------------------------------------- - -// Aggregation_AggregationCount - -// string column_name = 1; -inline void Aggregation_AggregationCount::clear_column_name() { - ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.column_name_.ClearToEmpty(); -} -inline const std::string& Aggregation_AggregationCount::column_name() const - ABSL_ATTRIBUTE_LIFETIME_BOUND { - // @@protoc_insertion_point(field_get:io.deephaven.proto.backplane.grpc.Aggregation.AggregationCount.column_name) - return _internal_column_name(); -} -template -inline PROTOBUF_ALWAYS_INLINE void Aggregation_AggregationCount::set_column_name(Arg_&& arg, - Args_... args) { - ::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) -} -inline std::string* Aggregation_AggregationCount::mutable_column_name() ABSL_ATTRIBUTE_LIFETIME_BOUND { - std::string* _s = _internal_mutable_column_name(); - // @@protoc_insertion_point(field_mutable:io.deephaven.proto.backplane.grpc.Aggregation.AggregationCount.column_name) - return _s; -} -inline const std::string& Aggregation_AggregationCount::_internal_column_name() const { - ::google::protobuf::internal::TSanRead(&_impl_); - return _impl_.column_name_.Get(); -} -inline void Aggregation_AggregationCount::_internal_set_column_name(const std::string& value) { - ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.column_name_.Set(value, GetArena()); -} -inline std::string* Aggregation_AggregationCount::_internal_mutable_column_name() { - ::google::protobuf::internal::TSanWrite(&_impl_); - return _impl_.column_name_.Mutable( GetArena()); -} -inline std::string* Aggregation_AggregationCount::release_column_name() { - ::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) { - ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.column_name_.SetAllocated(value, GetArena()); - #ifdef PROTOBUF_FORCE_COPY_DEFAULT_STRING - if (_impl_.column_name_.IsDefault()) { - _impl_.column_name_.Set("", GetArena()); - } - #endif // PROTOBUF_FORCE_COPY_DEFAULT_STRING - // @@protoc_insertion_point(field_set_allocated:io.deephaven.proto.backplane.grpc.Aggregation.AggregationCount.column_name) -} - -// ------------------------------------------------------------------- - -// Aggregation_AggregationRowKey - -// string column_name = 1; -inline void Aggregation_AggregationRowKey::clear_column_name() { - ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.column_name_.ClearToEmpty(); -} -inline const std::string& Aggregation_AggregationRowKey::column_name() const - ABSL_ATTRIBUTE_LIFETIME_BOUND { - // @@protoc_insertion_point(field_get:io.deephaven.proto.backplane.grpc.Aggregation.AggregationRowKey.column_name) - return _internal_column_name(); -} -template -inline PROTOBUF_ALWAYS_INLINE void Aggregation_AggregationRowKey::set_column_name(Arg_&& arg, - Args_... args) { - ::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) -} -inline std::string* Aggregation_AggregationRowKey::mutable_column_name() ABSL_ATTRIBUTE_LIFETIME_BOUND { - std::string* _s = _internal_mutable_column_name(); - // @@protoc_insertion_point(field_mutable:io.deephaven.proto.backplane.grpc.Aggregation.AggregationRowKey.column_name) - return _s; -} -inline const std::string& Aggregation_AggregationRowKey::_internal_column_name() const { - ::google::protobuf::internal::TSanRead(&_impl_); - return _impl_.column_name_.Get(); -} -inline void Aggregation_AggregationRowKey::_internal_set_column_name(const std::string& value) { - ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.column_name_.Set(value, GetArena()); -} -inline std::string* Aggregation_AggregationRowKey::_internal_mutable_column_name() { - ::google::protobuf::internal::TSanWrite(&_impl_); - return _impl_.column_name_.Mutable( GetArena()); -} -inline std::string* Aggregation_AggregationRowKey::release_column_name() { - ::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) { - ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.column_name_.SetAllocated(value, GetArena()); - #ifdef PROTOBUF_FORCE_COPY_DEFAULT_STRING - if (_impl_.column_name_.IsDefault()) { - _impl_.column_name_.Set("", GetArena()); - } - #endif // PROTOBUF_FORCE_COPY_DEFAULT_STRING - // @@protoc_insertion_point(field_set_allocated:io.deephaven.proto.backplane.grpc.Aggregation.AggregationRowKey.column_name) -} - -// ------------------------------------------------------------------- - -// Aggregation_AggregationPartition - -// string column_name = 1; -inline void Aggregation_AggregationPartition::clear_column_name() { - ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.column_name_.ClearToEmpty(); -} -inline const std::string& Aggregation_AggregationPartition::column_name() const - ABSL_ATTRIBUTE_LIFETIME_BOUND { - // @@protoc_insertion_point(field_get:io.deephaven.proto.backplane.grpc.Aggregation.AggregationPartition.column_name) - return _internal_column_name(); -} -template -inline PROTOBUF_ALWAYS_INLINE void Aggregation_AggregationPartition::set_column_name(Arg_&& arg, - Args_... args) { - ::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) -} -inline std::string* Aggregation_AggregationPartition::mutable_column_name() ABSL_ATTRIBUTE_LIFETIME_BOUND { - std::string* _s = _internal_mutable_column_name(); - // @@protoc_insertion_point(field_mutable:io.deephaven.proto.backplane.grpc.Aggregation.AggregationPartition.column_name) - return _s; -} -inline const std::string& Aggregation_AggregationPartition::_internal_column_name() const { - ::google::protobuf::internal::TSanRead(&_impl_); - return _impl_.column_name_.Get(); -} -inline void Aggregation_AggregationPartition::_internal_set_column_name(const std::string& value) { - ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.column_name_.Set(value, GetArena()); -} -inline std::string* Aggregation_AggregationPartition::_internal_mutable_column_name() { - ::google::protobuf::internal::TSanWrite(&_impl_); - return _impl_.column_name_.Mutable( GetArena()); -} -inline std::string* Aggregation_AggregationPartition::release_column_name() { - ::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) { - ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.column_name_.SetAllocated(value, GetArena()); - #ifdef PROTOBUF_FORCE_COPY_DEFAULT_STRING - if (_impl_.column_name_.IsDefault()) { - _impl_.column_name_.Set("", GetArena()); - } - #endif // PROTOBUF_FORCE_COPY_DEFAULT_STRING - // @@protoc_insertion_point(field_set_allocated:io.deephaven.proto.backplane.grpc.Aggregation.AggregationPartition.column_name) -} - -// bool include_group_by_columns = 2; -inline void Aggregation_AggregationPartition::clear_include_group_by_columns() { - ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.include_group_by_columns_ = false; -} -inline bool Aggregation_AggregationPartition::include_group_by_columns() const { - // @@protoc_insertion_point(field_get:io.deephaven.proto.backplane.grpc.Aggregation.AggregationPartition.include_group_by_columns) - return _internal_include_group_by_columns(); -} -inline void Aggregation_AggregationPartition::set_include_group_by_columns(bool value) { - _internal_set_include_group_by_columns(value); - // @@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 { - ::google::protobuf::internal::TSanRead(&_impl_); - return _impl_.include_group_by_columns_; -} -inline void Aggregation_AggregationPartition::_internal_set_include_group_by_columns(bool value) { - ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.include_group_by_columns_ = value; -} - -// ------------------------------------------------------------------- - -// Aggregation - -// .io.deephaven.proto.backplane.grpc.Aggregation.AggregationColumns columns = 1; -inline bool Aggregation::has_columns() const { - return type_case() == kColumns; -} -inline bool Aggregation::_internal_has_columns() const { - return type_case() == kColumns; -} -inline void Aggregation::set_has_columns() { - _impl_._oneof_case_[0] = kColumns; -} -inline void Aggregation::clear_columns() { - ::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(); - } -} -inline ::io::deephaven::proto::backplane::grpc::Aggregation_AggregationColumns* Aggregation::release_columns() { - // @@protoc_insertion_point(field_release:io.deephaven.proto.backplane.grpc.Aggregation.columns) - if (type_case() == kColumns) { - clear_has_type(); - auto* temp = _impl_.type_.columns_; - if (GetArena() != nullptr) { - temp = ::google::protobuf::internal::DuplicateIfNonNull(temp); - } - _impl_.type_.columns_ = nullptr; - return temp; - } else { - return nullptr; - } -} -inline const ::io::deephaven::proto::backplane::grpc::Aggregation_AggregationColumns& Aggregation::_internal_columns() const { - return type_case() == kColumns ? *_impl_.type_.columns_ : reinterpret_cast<::io::deephaven::proto::backplane::grpc::Aggregation_AggregationColumns&>(::io::deephaven::proto::backplane::grpc::_Aggregation_AggregationColumns_default_instance_); -} -inline const ::io::deephaven::proto::backplane::grpc::Aggregation_AggregationColumns& Aggregation::columns() const ABSL_ATTRIBUTE_LIFETIME_BOUND { - // @@protoc_insertion_point(field_get:io.deephaven.proto.backplane.grpc.Aggregation.columns) - return _internal_columns(); -} -inline ::io::deephaven::proto::backplane::grpc::Aggregation_AggregationColumns* Aggregation::unsafe_arena_release_columns() { - // @@protoc_insertion_point(field_unsafe_arena_release:io.deephaven.proto.backplane.grpc.Aggregation.columns) - if (type_case() == kColumns) { - clear_has_type(); - auto* temp = _impl_.type_.columns_; - _impl_.type_.columns_ = nullptr; - return temp; - } else { - return nullptr; - } -} -inline void Aggregation::unsafe_arena_set_allocated_columns(::io::deephaven::proto::backplane::grpc::Aggregation_AggregationColumns* value) { - // We rely on the oneof clear method to free the earlier contents - // of this oneof. We can directly use the pointer we're given to - // set the new value. - clear_type(); - if (value) { - set_has_columns(); - _impl_.type_.columns_ = value; - } - // @@protoc_insertion_point(field_unsafe_arena_set_allocated:io.deephaven.proto.backplane.grpc.Aggregation.columns) -} -inline ::io::deephaven::proto::backplane::grpc::Aggregation_AggregationColumns* Aggregation::_internal_mutable_columns() { - if (type_case() != kColumns) { - clear_type(); - set_has_columns(); - _impl_.type_.columns_ = - ::google::protobuf::Message::DefaultConstruct<::io::deephaven::proto::backplane::grpc::Aggregation_AggregationColumns>(GetArena()); - } - return _impl_.type_.columns_; -} -inline ::io::deephaven::proto::backplane::grpc::Aggregation_AggregationColumns* Aggregation::mutable_columns() ABSL_ATTRIBUTE_LIFETIME_BOUND { - ::io::deephaven::proto::backplane::grpc::Aggregation_AggregationColumns* _msg = _internal_mutable_columns(); - // @@protoc_insertion_point(field_mutable:io.deephaven.proto.backplane.grpc.Aggregation.columns) - return _msg; -} - -// .io.deephaven.proto.backplane.grpc.Aggregation.AggregationCount count = 2; -inline bool Aggregation::has_count() const { - return type_case() == kCount; -} -inline bool Aggregation::_internal_has_count() const { - return type_case() == kCount; -} -inline void Aggregation::set_has_count() { - _impl_._oneof_case_[0] = kCount; -} -inline void Aggregation::clear_count() { - ::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(); - } -} -inline ::io::deephaven::proto::backplane::grpc::Aggregation_AggregationCount* Aggregation::release_count() { - // @@protoc_insertion_point(field_release:io.deephaven.proto.backplane.grpc.Aggregation.count) - if (type_case() == kCount) { - clear_has_type(); - auto* temp = _impl_.type_.count_; - if (GetArena() != nullptr) { - temp = ::google::protobuf::internal::DuplicateIfNonNull(temp); - } - _impl_.type_.count_ = nullptr; - return temp; - } else { - return nullptr; - } -} -inline const ::io::deephaven::proto::backplane::grpc::Aggregation_AggregationCount& Aggregation::_internal_count() const { - return type_case() == kCount ? *_impl_.type_.count_ : reinterpret_cast<::io::deephaven::proto::backplane::grpc::Aggregation_AggregationCount&>(::io::deephaven::proto::backplane::grpc::_Aggregation_AggregationCount_default_instance_); -} -inline const ::io::deephaven::proto::backplane::grpc::Aggregation_AggregationCount& Aggregation::count() const ABSL_ATTRIBUTE_LIFETIME_BOUND { - // @@protoc_insertion_point(field_get:io.deephaven.proto.backplane.grpc.Aggregation.count) - return _internal_count(); -} -inline ::io::deephaven::proto::backplane::grpc::Aggregation_AggregationCount* Aggregation::unsafe_arena_release_count() { - // @@protoc_insertion_point(field_unsafe_arena_release:io.deephaven.proto.backplane.grpc.Aggregation.count) - if (type_case() == kCount) { - clear_has_type(); - auto* temp = _impl_.type_.count_; - _impl_.type_.count_ = nullptr; - return temp; - } else { - return nullptr; - } -} -inline void Aggregation::unsafe_arena_set_allocated_count(::io::deephaven::proto::backplane::grpc::Aggregation_AggregationCount* value) { - // We rely on the oneof clear method to free the earlier contents - // of this oneof. We can directly use the pointer we're given to - // set the new value. - clear_type(); - if (value) { - set_has_count(); - _impl_.type_.count_ = value; - } - // @@protoc_insertion_point(field_unsafe_arena_set_allocated:io.deephaven.proto.backplane.grpc.Aggregation.count) -} -inline ::io::deephaven::proto::backplane::grpc::Aggregation_AggregationCount* Aggregation::_internal_mutable_count() { - if (type_case() != kCount) { - clear_type(); - set_has_count(); - _impl_.type_.count_ = - ::google::protobuf::Message::DefaultConstruct<::io::deephaven::proto::backplane::grpc::Aggregation_AggregationCount>(GetArena()); - } - return _impl_.type_.count_; -} -inline ::io::deephaven::proto::backplane::grpc::Aggregation_AggregationCount* Aggregation::mutable_count() ABSL_ATTRIBUTE_LIFETIME_BOUND { - ::io::deephaven::proto::backplane::grpc::Aggregation_AggregationCount* _msg = _internal_mutable_count(); - // @@protoc_insertion_point(field_mutable:io.deephaven.proto.backplane.grpc.Aggregation.count) - return _msg; -} - -// .io.deephaven.proto.backplane.grpc.Aggregation.AggregationRowKey first_row_key = 3; -inline bool Aggregation::has_first_row_key() const { - return type_case() == kFirstRowKey; -} -inline bool Aggregation::_internal_has_first_row_key() const { - return type_case() == kFirstRowKey; -} -inline void Aggregation::set_has_first_row_key() { - _impl_._oneof_case_[0] = kFirstRowKey; -} -inline void Aggregation::clear_first_row_key() { - ::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(); - } -} -inline ::io::deephaven::proto::backplane::grpc::Aggregation_AggregationRowKey* Aggregation::release_first_row_key() { - // @@protoc_insertion_point(field_release:io.deephaven.proto.backplane.grpc.Aggregation.first_row_key) - if (type_case() == kFirstRowKey) { - clear_has_type(); - auto* temp = _impl_.type_.first_row_key_; - if (GetArena() != nullptr) { - temp = ::google::protobuf::internal::DuplicateIfNonNull(temp); - } - _impl_.type_.first_row_key_ = nullptr; - return temp; - } else { - return nullptr; - } -} -inline const ::io::deephaven::proto::backplane::grpc::Aggregation_AggregationRowKey& Aggregation::_internal_first_row_key() const { - return type_case() == kFirstRowKey ? *_impl_.type_.first_row_key_ : reinterpret_cast<::io::deephaven::proto::backplane::grpc::Aggregation_AggregationRowKey&>(::io::deephaven::proto::backplane::grpc::_Aggregation_AggregationRowKey_default_instance_); -} -inline const ::io::deephaven::proto::backplane::grpc::Aggregation_AggregationRowKey& Aggregation::first_row_key() const ABSL_ATTRIBUTE_LIFETIME_BOUND { - // @@protoc_insertion_point(field_get:io.deephaven.proto.backplane.grpc.Aggregation.first_row_key) - return _internal_first_row_key(); -} -inline ::io::deephaven::proto::backplane::grpc::Aggregation_AggregationRowKey* Aggregation::unsafe_arena_release_first_row_key() { - // @@protoc_insertion_point(field_unsafe_arena_release:io.deephaven.proto.backplane.grpc.Aggregation.first_row_key) - if (type_case() == kFirstRowKey) { - clear_has_type(); - auto* temp = _impl_.type_.first_row_key_; - _impl_.type_.first_row_key_ = nullptr; - return temp; - } else { - return nullptr; - } -} -inline void Aggregation::unsafe_arena_set_allocated_first_row_key(::io::deephaven::proto::backplane::grpc::Aggregation_AggregationRowKey* value) { - // We rely on the oneof clear method to free the earlier contents - // of this oneof. We can directly use the pointer we're given to - // set the new value. - clear_type(); - if (value) { - set_has_first_row_key(); - _impl_.type_.first_row_key_ = value; - } - // @@protoc_insertion_point(field_unsafe_arena_set_allocated:io.deephaven.proto.backplane.grpc.Aggregation.first_row_key) -} -inline ::io::deephaven::proto::backplane::grpc::Aggregation_AggregationRowKey* Aggregation::_internal_mutable_first_row_key() { - if (type_case() != kFirstRowKey) { - clear_type(); - set_has_first_row_key(); - _impl_.type_.first_row_key_ = - ::google::protobuf::Message::DefaultConstruct<::io::deephaven::proto::backplane::grpc::Aggregation_AggregationRowKey>(GetArena()); - } - return _impl_.type_.first_row_key_; -} -inline ::io::deephaven::proto::backplane::grpc::Aggregation_AggregationRowKey* Aggregation::mutable_first_row_key() ABSL_ATTRIBUTE_LIFETIME_BOUND { - ::io::deephaven::proto::backplane::grpc::Aggregation_AggregationRowKey* _msg = _internal_mutable_first_row_key(); - // @@protoc_insertion_point(field_mutable:io.deephaven.proto.backplane.grpc.Aggregation.first_row_key) - return _msg; -} - -// .io.deephaven.proto.backplane.grpc.Aggregation.AggregationRowKey last_row_key = 4; -inline bool Aggregation::has_last_row_key() const { - return type_case() == kLastRowKey; -} -inline bool Aggregation::_internal_has_last_row_key() const { - return type_case() == kLastRowKey; -} -inline void Aggregation::set_has_last_row_key() { - _impl_._oneof_case_[0] = kLastRowKey; -} -inline void Aggregation::clear_last_row_key() { - ::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(); - } -} -inline ::io::deephaven::proto::backplane::grpc::Aggregation_AggregationRowKey* Aggregation::release_last_row_key() { - // @@protoc_insertion_point(field_release:io.deephaven.proto.backplane.grpc.Aggregation.last_row_key) - if (type_case() == kLastRowKey) { - clear_has_type(); - auto* temp = _impl_.type_.last_row_key_; - if (GetArena() != nullptr) { - temp = ::google::protobuf::internal::DuplicateIfNonNull(temp); - } - _impl_.type_.last_row_key_ = nullptr; - return temp; - } else { - return nullptr; - } -} -inline const ::io::deephaven::proto::backplane::grpc::Aggregation_AggregationRowKey& Aggregation::_internal_last_row_key() const { - return type_case() == kLastRowKey ? *_impl_.type_.last_row_key_ : reinterpret_cast<::io::deephaven::proto::backplane::grpc::Aggregation_AggregationRowKey&>(::io::deephaven::proto::backplane::grpc::_Aggregation_AggregationRowKey_default_instance_); -} -inline const ::io::deephaven::proto::backplane::grpc::Aggregation_AggregationRowKey& Aggregation::last_row_key() const ABSL_ATTRIBUTE_LIFETIME_BOUND { - // @@protoc_insertion_point(field_get:io.deephaven.proto.backplane.grpc.Aggregation.last_row_key) - return _internal_last_row_key(); -} -inline ::io::deephaven::proto::backplane::grpc::Aggregation_AggregationRowKey* Aggregation::unsafe_arena_release_last_row_key() { - // @@protoc_insertion_point(field_unsafe_arena_release:io.deephaven.proto.backplane.grpc.Aggregation.last_row_key) - if (type_case() == kLastRowKey) { - clear_has_type(); - auto* temp = _impl_.type_.last_row_key_; - _impl_.type_.last_row_key_ = nullptr; - return temp; - } else { - return nullptr; - } -} -inline void Aggregation::unsafe_arena_set_allocated_last_row_key(::io::deephaven::proto::backplane::grpc::Aggregation_AggregationRowKey* value) { - // We rely on the oneof clear method to free the earlier contents - // of this oneof. We can directly use the pointer we're given to - // set the new value. - clear_type(); - if (value) { - set_has_last_row_key(); - _impl_.type_.last_row_key_ = value; - } - // @@protoc_insertion_point(field_unsafe_arena_set_allocated:io.deephaven.proto.backplane.grpc.Aggregation.last_row_key) -} -inline ::io::deephaven::proto::backplane::grpc::Aggregation_AggregationRowKey* Aggregation::_internal_mutable_last_row_key() { - if (type_case() != kLastRowKey) { - clear_type(); - set_has_last_row_key(); - _impl_.type_.last_row_key_ = - ::google::protobuf::Message::DefaultConstruct<::io::deephaven::proto::backplane::grpc::Aggregation_AggregationRowKey>(GetArena()); - } - return _impl_.type_.last_row_key_; -} -inline ::io::deephaven::proto::backplane::grpc::Aggregation_AggregationRowKey* Aggregation::mutable_last_row_key() ABSL_ATTRIBUTE_LIFETIME_BOUND { - ::io::deephaven::proto::backplane::grpc::Aggregation_AggregationRowKey* _msg = _internal_mutable_last_row_key(); - // @@protoc_insertion_point(field_mutable:io.deephaven.proto.backplane.grpc.Aggregation.last_row_key) - return _msg; -} - -// .io.deephaven.proto.backplane.grpc.Aggregation.AggregationPartition partition = 5; -inline bool Aggregation::has_partition() const { - return type_case() == kPartition; -} -inline bool Aggregation::_internal_has_partition() const { - return type_case() == kPartition; -} -inline void Aggregation::set_has_partition() { - _impl_._oneof_case_[0] = kPartition; -} -inline void Aggregation::clear_partition() { - ::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(); - } -} -inline ::io::deephaven::proto::backplane::grpc::Aggregation_AggregationPartition* Aggregation::release_partition() { - // @@protoc_insertion_point(field_release:io.deephaven.proto.backplane.grpc.Aggregation.partition) - if (type_case() == kPartition) { - clear_has_type(); - auto* temp = _impl_.type_.partition_; - if (GetArena() != nullptr) { - temp = ::google::protobuf::internal::DuplicateIfNonNull(temp); - } - _impl_.type_.partition_ = nullptr; - return temp; - } else { - return nullptr; - } -} -inline const ::io::deephaven::proto::backplane::grpc::Aggregation_AggregationPartition& Aggregation::_internal_partition() const { - return type_case() == kPartition ? *_impl_.type_.partition_ : reinterpret_cast<::io::deephaven::proto::backplane::grpc::Aggregation_AggregationPartition&>(::io::deephaven::proto::backplane::grpc::_Aggregation_AggregationPartition_default_instance_); -} -inline const ::io::deephaven::proto::backplane::grpc::Aggregation_AggregationPartition& Aggregation::partition() const ABSL_ATTRIBUTE_LIFETIME_BOUND { - // @@protoc_insertion_point(field_get:io.deephaven.proto.backplane.grpc.Aggregation.partition) - return _internal_partition(); -} -inline ::io::deephaven::proto::backplane::grpc::Aggregation_AggregationPartition* Aggregation::unsafe_arena_release_partition() { - // @@protoc_insertion_point(field_unsafe_arena_release:io.deephaven.proto.backplane.grpc.Aggregation.partition) - if (type_case() == kPartition) { - clear_has_type(); - auto* temp = _impl_.type_.partition_; - _impl_.type_.partition_ = nullptr; - return temp; - } else { - return nullptr; - } -} -inline void Aggregation::unsafe_arena_set_allocated_partition(::io::deephaven::proto::backplane::grpc::Aggregation_AggregationPartition* value) { - // We rely on the oneof clear method to free the earlier contents - // of this oneof. We can directly use the pointer we're given to - // set the new value. - clear_type(); - if (value) { - set_has_partition(); - _impl_.type_.partition_ = value; - } - // @@protoc_insertion_point(field_unsafe_arena_set_allocated:io.deephaven.proto.backplane.grpc.Aggregation.partition) -} -inline ::io::deephaven::proto::backplane::grpc::Aggregation_AggregationPartition* Aggregation::_internal_mutable_partition() { - if (type_case() != kPartition) { - clear_type(); - set_has_partition(); - _impl_.type_.partition_ = - ::google::protobuf::Message::DefaultConstruct<::io::deephaven::proto::backplane::grpc::Aggregation_AggregationPartition>(GetArena()); - } - return _impl_.type_.partition_; -} -inline ::io::deephaven::proto::backplane::grpc::Aggregation_AggregationPartition* Aggregation::mutable_partition() ABSL_ATTRIBUTE_LIFETIME_BOUND { - ::io::deephaven::proto::backplane::grpc::Aggregation_AggregationPartition* _msg = _internal_mutable_partition(); - // @@protoc_insertion_point(field_mutable:io.deephaven.proto.backplane.grpc.Aggregation.partition) - return _msg; -} - -inline bool Aggregation::has_type() const { - return type_case() != TYPE_NOT_SET; -} -inline void Aggregation::clear_has_type() { - _impl_._oneof_case_[0] = TYPE_NOT_SET; -} -inline Aggregation::TypeCase Aggregation::type_case() const { - return Aggregation::TypeCase(_impl_._oneof_case_[0]); -} -// ------------------------------------------------------------------- - -// SortDescriptor - -// string column_name = 1; -inline void SortDescriptor::clear_column_name() { - ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.column_name_.ClearToEmpty(); -} -inline const std::string& SortDescriptor::column_name() const - ABSL_ATTRIBUTE_LIFETIME_BOUND { - // @@protoc_insertion_point(field_get:io.deephaven.proto.backplane.grpc.SortDescriptor.column_name) - return _internal_column_name(); -} -template -inline PROTOBUF_ALWAYS_INLINE void SortDescriptor::set_column_name(Arg_&& arg, - Args_... args) { - ::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) -} -inline std::string* SortDescriptor::mutable_column_name() ABSL_ATTRIBUTE_LIFETIME_BOUND { - std::string* _s = _internal_mutable_column_name(); - // @@protoc_insertion_point(field_mutable:io.deephaven.proto.backplane.grpc.SortDescriptor.column_name) - return _s; -} -inline const std::string& SortDescriptor::_internal_column_name() const { - ::google::protobuf::internal::TSanRead(&_impl_); - return _impl_.column_name_.Get(); -} -inline void SortDescriptor::_internal_set_column_name(const std::string& value) { - ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.column_name_.Set(value, GetArena()); -} -inline std::string* SortDescriptor::_internal_mutable_column_name() { - ::google::protobuf::internal::TSanWrite(&_impl_); - return _impl_.column_name_.Mutable( GetArena()); -} -inline std::string* SortDescriptor::release_column_name() { - ::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) { - ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.column_name_.SetAllocated(value, GetArena()); - #ifdef PROTOBUF_FORCE_COPY_DEFAULT_STRING - if (_impl_.column_name_.IsDefault()) { - _impl_.column_name_.Set("", GetArena()); - } - #endif // PROTOBUF_FORCE_COPY_DEFAULT_STRING - // @@protoc_insertion_point(field_set_allocated:io.deephaven.proto.backplane.grpc.SortDescriptor.column_name) -} - -// bool is_absolute = 2; -inline void SortDescriptor::clear_is_absolute() { - ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.is_absolute_ = false; -} -inline bool SortDescriptor::is_absolute() const { - // @@protoc_insertion_point(field_get:io.deephaven.proto.backplane.grpc.SortDescriptor.is_absolute) - return _internal_is_absolute(); -} -inline void SortDescriptor::set_is_absolute(bool value) { - _internal_set_is_absolute(value); - // @@protoc_insertion_point(field_set:io.deephaven.proto.backplane.grpc.SortDescriptor.is_absolute) -} -inline bool SortDescriptor::_internal_is_absolute() const { - ::google::protobuf::internal::TSanRead(&_impl_); - return _impl_.is_absolute_; -} -inline void SortDescriptor::_internal_set_is_absolute(bool value) { - ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.is_absolute_ = value; -} - -// .io.deephaven.proto.backplane.grpc.SortDescriptor.SortDirection direction = 3; -inline void SortDescriptor::clear_direction() { - ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.direction_ = 0; -} -inline ::io::deephaven::proto::backplane::grpc::SortDescriptor_SortDirection SortDescriptor::direction() const { - // @@protoc_insertion_point(field_get:io.deephaven.proto.backplane.grpc.SortDescriptor.direction) - return _internal_direction(); -} -inline void SortDescriptor::set_direction(::io::deephaven::proto::backplane::grpc::SortDescriptor_SortDirection value) { - _internal_set_direction(value); - // @@protoc_insertion_point(field_set:io.deephaven.proto.backplane.grpc.SortDescriptor.direction) -} -inline ::io::deephaven::proto::backplane::grpc::SortDescriptor_SortDirection SortDescriptor::_internal_direction() const { - ::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) { - ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.direction_ = value; -} - -// ------------------------------------------------------------------- - -// SortTableRequest - -// .io.deephaven.proto.backplane.grpc.Ticket result_id = 1; -inline bool SortTableRequest::has_result_id() const { - bool value = (_impl_._has_bits_[0] & 0x00000001u) != 0; - PROTOBUF_ASSUME(!value || _impl_.result_id_ != nullptr); - return value; -} -inline const ::io::deephaven::proto::backplane::grpc::Ticket& SortTableRequest::_internal_result_id() const { - ::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_); -} -inline const ::io::deephaven::proto::backplane::grpc::Ticket& SortTableRequest::result_id() const ABSL_ATTRIBUTE_LIFETIME_BOUND { - // @@protoc_insertion_point(field_get:io.deephaven.proto.backplane.grpc.SortTableRequest.result_id) - return _internal_result_id(); -} -inline void SortTableRequest::unsafe_arena_set_allocated_result_id(::io::deephaven::proto::backplane::grpc::Ticket* value) { - ::google::protobuf::internal::TSanWrite(&_impl_); - if (GetArena() == nullptr) { - delete reinterpret_cast<::google::protobuf::MessageLite*>(_impl_.result_id_); - } - _impl_.result_id_ = reinterpret_cast<::io::deephaven::proto::backplane::grpc::Ticket*>(value); - if (value != nullptr) { - _impl_._has_bits_[0] |= 0x00000001u; - } else { - _impl_._has_bits_[0] &= ~0x00000001u; - } - // @@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() { - ::google::protobuf::internal::TSanWrite(&_impl_); - - _impl_._has_bits_[0] &= ~0x00000001u; - ::io::deephaven::proto::backplane::grpc::Ticket* released = _impl_.result_id_; - _impl_.result_id_ = nullptr; -#ifdef PROTOBUF_FORCE_COPY_IN_RELEASE - auto* old = reinterpret_cast<::google::protobuf::MessageLite*>(released); - released = ::google::protobuf::internal::DuplicateIfNonNull(released); - if (GetArena() == nullptr) { - delete old; - } -#else // PROTOBUF_FORCE_COPY_IN_RELEASE - if (GetArena() != nullptr) { - released = ::google::protobuf::internal::DuplicateIfNonNull(released); - } -#endif // !PROTOBUF_FORCE_COPY_IN_RELEASE - return released; -} -inline ::io::deephaven::proto::backplane::grpc::Ticket* SortTableRequest::unsafe_arena_release_result_id() { - ::google::protobuf::internal::TSanWrite(&_impl_); - // @@protoc_insertion_point(field_release:io.deephaven.proto.backplane.grpc.SortTableRequest.result_id) - - _impl_._has_bits_[0] &= ~0x00000001u; - ::io::deephaven::proto::backplane::grpc::Ticket* temp = _impl_.result_id_; - _impl_.result_id_ = nullptr; - return temp; -} -inline ::io::deephaven::proto::backplane::grpc::Ticket* SortTableRequest::_internal_mutable_result_id() { - ::google::protobuf::internal::TSanWrite(&_impl_); - if (_impl_.result_id_ == nullptr) { - 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(); - ::google::protobuf::internal::TSanWrite(&_impl_); - if (message_arena == nullptr) { - delete reinterpret_cast<::google::protobuf::MessageLite*>(_impl_.result_id_); - } - - if (value != nullptr) { - ::google::protobuf::Arena* submessage_arena = reinterpret_cast<::google::protobuf::MessageLite*>(value)->GetArena(); - if (message_arena != submessage_arena) { - value = ::google::protobuf::internal::GetOwnedMessage(message_arena, value, submessage_arena); - } - _impl_._has_bits_[0] |= 0x00000001u; - } else { - _impl_._has_bits_[0] &= ~0x00000001u; - } - - _impl_.result_id_ = reinterpret_cast<::io::deephaven::proto::backplane::grpc::Ticket*>(value); - // @@protoc_insertion_point(field_set_allocated:io.deephaven.proto.backplane.grpc.SortTableRequest.result_id) -} - -// .io.deephaven.proto.backplane.grpc.TableReference source_id = 2; -inline bool SortTableRequest::has_source_id() const { - bool value = (_impl_._has_bits_[0] & 0x00000002u) != 0; - PROTOBUF_ASSUME(!value || _impl_.source_id_ != nullptr); - return value; -} -inline void SortTableRequest::clear_source_id() { - ::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 { - ::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_); -} -inline const ::io::deephaven::proto::backplane::grpc::TableReference& SortTableRequest::source_id() const ABSL_ATTRIBUTE_LIFETIME_BOUND { - // @@protoc_insertion_point(field_get:io.deephaven.proto.backplane.grpc.SortTableRequest.source_id) - return _internal_source_id(); -} -inline void SortTableRequest::unsafe_arena_set_allocated_source_id(::io::deephaven::proto::backplane::grpc::TableReference* value) { - ::google::protobuf::internal::TSanWrite(&_impl_); - if (GetArena() == nullptr) { - delete reinterpret_cast<::google::protobuf::MessageLite*>(_impl_.source_id_); - } - _impl_.source_id_ = reinterpret_cast<::io::deephaven::proto::backplane::grpc::TableReference*>(value); - if (value != nullptr) { - _impl_._has_bits_[0] |= 0x00000002u; - } else { - _impl_._has_bits_[0] &= ~0x00000002u; - } - // @@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() { - ::google::protobuf::internal::TSanWrite(&_impl_); - - _impl_._has_bits_[0] &= ~0x00000002u; - ::io::deephaven::proto::backplane::grpc::TableReference* released = _impl_.source_id_; - _impl_.source_id_ = nullptr; -#ifdef PROTOBUF_FORCE_COPY_IN_RELEASE - auto* old = reinterpret_cast<::google::protobuf::MessageLite*>(released); - released = ::google::protobuf::internal::DuplicateIfNonNull(released); - if (GetArena() == nullptr) { - delete old; - } -#else // PROTOBUF_FORCE_COPY_IN_RELEASE - if (GetArena() != nullptr) { - released = ::google::protobuf::internal::DuplicateIfNonNull(released); - } -#endif // !PROTOBUF_FORCE_COPY_IN_RELEASE - return released; -} -inline ::io::deephaven::proto::backplane::grpc::TableReference* SortTableRequest::unsafe_arena_release_source_id() { - ::google::protobuf::internal::TSanWrite(&_impl_); - // @@protoc_insertion_point(field_release:io.deephaven.proto.backplane.grpc.SortTableRequest.source_id) - - _impl_._has_bits_[0] &= ~0x00000002u; - ::io::deephaven::proto::backplane::grpc::TableReference* temp = _impl_.source_id_; - _impl_.source_id_ = nullptr; - return temp; -} -inline ::io::deephaven::proto::backplane::grpc::TableReference* SortTableRequest::_internal_mutable_source_id() { - ::google::protobuf::internal::TSanWrite(&_impl_); - if (_impl_.source_id_ == nullptr) { - 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(); - ::google::protobuf::internal::TSanWrite(&_impl_); - if (message_arena == nullptr) { - delete (_impl_.source_id_); - } - - if (value != nullptr) { - ::google::protobuf::Arena* submessage_arena = (value)->GetArena(); - if (message_arena != submessage_arena) { - value = ::google::protobuf::internal::GetOwnedMessage(message_arena, value, submessage_arena); - } - _impl_._has_bits_[0] |= 0x00000002u; - } else { - _impl_._has_bits_[0] &= ~0x00000002u; - } - - _impl_.source_id_ = reinterpret_cast<::io::deephaven::proto::backplane::grpc::TableReference*>(value); - // @@protoc_insertion_point(field_set_allocated:io.deephaven.proto.backplane.grpc.SortTableRequest.source_id) -} - -// repeated .io.deephaven.proto.backplane.grpc.SortDescriptor sorts = 3; -inline int SortTableRequest::_internal_sorts_size() const { - return _internal_sorts().size(); -} -inline int SortTableRequest::sorts_size() const { - return _internal_sorts_size(); -} -inline void SortTableRequest::clear_sorts() { - ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.sorts_.Clear(); -} -inline ::io::deephaven::proto::backplane::grpc::SortDescriptor* SortTableRequest::mutable_sorts(int index) - ABSL_ATTRIBUTE_LIFETIME_BOUND { - // @@protoc_insertion_point(field_mutable:io.deephaven.proto.backplane.grpc.SortTableRequest.sorts) - return _internal_mutable_sorts()->Mutable(index); -} -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) - ::google::protobuf::internal::TSanWrite(&_impl_); - return _internal_mutable_sorts(); -} -inline const ::io::deephaven::proto::backplane::grpc::SortDescriptor& SortTableRequest::sorts(int index) const - ABSL_ATTRIBUTE_LIFETIME_BOUND { - // @@protoc_insertion_point(field_get:io.deephaven.proto.backplane.grpc.SortTableRequest.sorts) - return _internal_sorts().Get(index); -} -inline ::io::deephaven::proto::backplane::grpc::SortDescriptor* SortTableRequest::add_sorts() ABSL_ATTRIBUTE_LIFETIME_BOUND { - ::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; -} -inline const ::google::protobuf::RepeatedPtrField<::io::deephaven::proto::backplane::grpc::SortDescriptor>& SortTableRequest::sorts() const - ABSL_ATTRIBUTE_LIFETIME_BOUND { - // @@protoc_insertion_point(field_list:io.deephaven.proto.backplane.grpc.SortTableRequest.sorts) - return _internal_sorts(); -} -inline const ::google::protobuf::RepeatedPtrField<::io::deephaven::proto::backplane::grpc::SortDescriptor>& -SortTableRequest::_internal_sorts() const { - ::google::protobuf::internal::TSanRead(&_impl_); - return _impl_.sorts_; -} -inline ::google::protobuf::RepeatedPtrField<::io::deephaven::proto::backplane::grpc::SortDescriptor>* -SortTableRequest::_internal_mutable_sorts() { - ::google::protobuf::internal::TSanRead(&_impl_); - return &_impl_.sorts_; -} - -// ------------------------------------------------------------------- - -// FilterTableRequest - -// .io.deephaven.proto.backplane.grpc.Ticket result_id = 1; -inline bool FilterTableRequest::has_result_id() const { - bool value = (_impl_._has_bits_[0] & 0x00000001u) != 0; - PROTOBUF_ASSUME(!value || _impl_.result_id_ != nullptr); - return value; -} -inline const ::io::deephaven::proto::backplane::grpc::Ticket& FilterTableRequest::_internal_result_id() const { - ::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_); -} -inline const ::io::deephaven::proto::backplane::grpc::Ticket& FilterTableRequest::result_id() const ABSL_ATTRIBUTE_LIFETIME_BOUND { - // @@protoc_insertion_point(field_get:io.deephaven.proto.backplane.grpc.FilterTableRequest.result_id) - return _internal_result_id(); -} -inline void FilterTableRequest::unsafe_arena_set_allocated_result_id(::io::deephaven::proto::backplane::grpc::Ticket* value) { - ::google::protobuf::internal::TSanWrite(&_impl_); - if (GetArena() == nullptr) { - delete reinterpret_cast<::google::protobuf::MessageLite*>(_impl_.result_id_); - } - _impl_.result_id_ = reinterpret_cast<::io::deephaven::proto::backplane::grpc::Ticket*>(value); - if (value != nullptr) { - _impl_._has_bits_[0] |= 0x00000001u; - } else { - _impl_._has_bits_[0] &= ~0x00000001u; - } - // @@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() { - ::google::protobuf::internal::TSanWrite(&_impl_); - - _impl_._has_bits_[0] &= ~0x00000001u; - ::io::deephaven::proto::backplane::grpc::Ticket* released = _impl_.result_id_; - _impl_.result_id_ = nullptr; -#ifdef PROTOBUF_FORCE_COPY_IN_RELEASE - auto* old = reinterpret_cast<::google::protobuf::MessageLite*>(released); - released = ::google::protobuf::internal::DuplicateIfNonNull(released); - if (GetArena() == nullptr) { - delete old; - } -#else // PROTOBUF_FORCE_COPY_IN_RELEASE - if (GetArena() != nullptr) { - released = ::google::protobuf::internal::DuplicateIfNonNull(released); - } -#endif // !PROTOBUF_FORCE_COPY_IN_RELEASE - return released; -} -inline ::io::deephaven::proto::backplane::grpc::Ticket* FilterTableRequest::unsafe_arena_release_result_id() { - ::google::protobuf::internal::TSanWrite(&_impl_); - // @@protoc_insertion_point(field_release:io.deephaven.proto.backplane.grpc.FilterTableRequest.result_id) - - _impl_._has_bits_[0] &= ~0x00000001u; - ::io::deephaven::proto::backplane::grpc::Ticket* temp = _impl_.result_id_; - _impl_.result_id_ = nullptr; - return temp; -} -inline ::io::deephaven::proto::backplane::grpc::Ticket* FilterTableRequest::_internal_mutable_result_id() { - ::google::protobuf::internal::TSanWrite(&_impl_); - if (_impl_.result_id_ == nullptr) { - 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(); - ::google::protobuf::internal::TSanWrite(&_impl_); - if (message_arena == nullptr) { - delete reinterpret_cast<::google::protobuf::MessageLite*>(_impl_.result_id_); - } - - if (value != nullptr) { - ::google::protobuf::Arena* submessage_arena = reinterpret_cast<::google::protobuf::MessageLite*>(value)->GetArena(); - if (message_arena != submessage_arena) { - value = ::google::protobuf::internal::GetOwnedMessage(message_arena, value, submessage_arena); - } - _impl_._has_bits_[0] |= 0x00000001u; - } else { - _impl_._has_bits_[0] &= ~0x00000001u; - } - - _impl_.result_id_ = reinterpret_cast<::io::deephaven::proto::backplane::grpc::Ticket*>(value); - // @@protoc_insertion_point(field_set_allocated:io.deephaven.proto.backplane.grpc.FilterTableRequest.result_id) -} - -// .io.deephaven.proto.backplane.grpc.TableReference source_id = 2; -inline bool FilterTableRequest::has_source_id() const { - bool value = (_impl_._has_bits_[0] & 0x00000002u) != 0; - PROTOBUF_ASSUME(!value || _impl_.source_id_ != nullptr); - return value; -} -inline void FilterTableRequest::clear_source_id() { - ::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 { - ::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_); -} -inline const ::io::deephaven::proto::backplane::grpc::TableReference& FilterTableRequest::source_id() const ABSL_ATTRIBUTE_LIFETIME_BOUND { - // @@protoc_insertion_point(field_get:io.deephaven.proto.backplane.grpc.FilterTableRequest.source_id) - return _internal_source_id(); -} -inline void FilterTableRequest::unsafe_arena_set_allocated_source_id(::io::deephaven::proto::backplane::grpc::TableReference* value) { - ::google::protobuf::internal::TSanWrite(&_impl_); - if (GetArena() == nullptr) { - delete reinterpret_cast<::google::protobuf::MessageLite*>(_impl_.source_id_); - } - _impl_.source_id_ = reinterpret_cast<::io::deephaven::proto::backplane::grpc::TableReference*>(value); - if (value != nullptr) { - _impl_._has_bits_[0] |= 0x00000002u; - } else { - _impl_._has_bits_[0] &= ~0x00000002u; - } - // @@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() { - ::google::protobuf::internal::TSanWrite(&_impl_); - - _impl_._has_bits_[0] &= ~0x00000002u; - ::io::deephaven::proto::backplane::grpc::TableReference* released = _impl_.source_id_; - _impl_.source_id_ = nullptr; -#ifdef PROTOBUF_FORCE_COPY_IN_RELEASE - auto* old = reinterpret_cast<::google::protobuf::MessageLite*>(released); - released = ::google::protobuf::internal::DuplicateIfNonNull(released); - if (GetArena() == nullptr) { - delete old; - } -#else // PROTOBUF_FORCE_COPY_IN_RELEASE - if (GetArena() != nullptr) { - released = ::google::protobuf::internal::DuplicateIfNonNull(released); - } -#endif // !PROTOBUF_FORCE_COPY_IN_RELEASE - return released; -} -inline ::io::deephaven::proto::backplane::grpc::TableReference* FilterTableRequest::unsafe_arena_release_source_id() { - ::google::protobuf::internal::TSanWrite(&_impl_); - // @@protoc_insertion_point(field_release:io.deephaven.proto.backplane.grpc.FilterTableRequest.source_id) - - _impl_._has_bits_[0] &= ~0x00000002u; - ::io::deephaven::proto::backplane::grpc::TableReference* temp = _impl_.source_id_; - _impl_.source_id_ = nullptr; - return temp; -} -inline ::io::deephaven::proto::backplane::grpc::TableReference* FilterTableRequest::_internal_mutable_source_id() { - ::google::protobuf::internal::TSanWrite(&_impl_); - if (_impl_.source_id_ == nullptr) { - 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(); - ::google::protobuf::internal::TSanWrite(&_impl_); - if (message_arena == nullptr) { - delete (_impl_.source_id_); - } - - if (value != nullptr) { - ::google::protobuf::Arena* submessage_arena = (value)->GetArena(); - if (message_arena != submessage_arena) { - value = ::google::protobuf::internal::GetOwnedMessage(message_arena, value, submessage_arena); - } - _impl_._has_bits_[0] |= 0x00000002u; - } else { - _impl_._has_bits_[0] &= ~0x00000002u; - } - - _impl_.source_id_ = reinterpret_cast<::io::deephaven::proto::backplane::grpc::TableReference*>(value); - // @@protoc_insertion_point(field_set_allocated:io.deephaven.proto.backplane.grpc.FilterTableRequest.source_id) -} - -// repeated .io.deephaven.proto.backplane.grpc.Condition filters = 3; -inline int FilterTableRequest::_internal_filters_size() const { - return _internal_filters().size(); -} -inline int FilterTableRequest::filters_size() const { - return _internal_filters_size(); -} -inline void FilterTableRequest::clear_filters() { - ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.filters_.Clear(); -} -inline ::io::deephaven::proto::backplane::grpc::Condition* FilterTableRequest::mutable_filters(int index) - ABSL_ATTRIBUTE_LIFETIME_BOUND { - // @@protoc_insertion_point(field_mutable:io.deephaven.proto.backplane.grpc.FilterTableRequest.filters) - return _internal_mutable_filters()->Mutable(index); -} -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) - ::google::protobuf::internal::TSanWrite(&_impl_); - return _internal_mutable_filters(); -} -inline const ::io::deephaven::proto::backplane::grpc::Condition& FilterTableRequest::filters(int index) const - ABSL_ATTRIBUTE_LIFETIME_BOUND { - // @@protoc_insertion_point(field_get:io.deephaven.proto.backplane.grpc.FilterTableRequest.filters) - return _internal_filters().Get(index); -} -inline ::io::deephaven::proto::backplane::grpc::Condition* FilterTableRequest::add_filters() ABSL_ATTRIBUTE_LIFETIME_BOUND { - ::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; -} -inline const ::google::protobuf::RepeatedPtrField<::io::deephaven::proto::backplane::grpc::Condition>& FilterTableRequest::filters() const - ABSL_ATTRIBUTE_LIFETIME_BOUND { - // @@protoc_insertion_point(field_list:io.deephaven.proto.backplane.grpc.FilterTableRequest.filters) - return _internal_filters(); -} -inline const ::google::protobuf::RepeatedPtrField<::io::deephaven::proto::backplane::grpc::Condition>& -FilterTableRequest::_internal_filters() const { - ::google::protobuf::internal::TSanRead(&_impl_); - return _impl_.filters_; -} -inline ::google::protobuf::RepeatedPtrField<::io::deephaven::proto::backplane::grpc::Condition>* -FilterTableRequest::_internal_mutable_filters() { - ::google::protobuf::internal::TSanRead(&_impl_); - return &_impl_.filters_; -} - -// ------------------------------------------------------------------- - -// SeekRowRequest - -// .io.deephaven.proto.backplane.grpc.Ticket source_id = 1; -inline bool SeekRowRequest::has_source_id() const { - bool value = (_impl_._has_bits_[0] & 0x00000001u) != 0; - PROTOBUF_ASSUME(!value || _impl_.source_id_ != nullptr); - return value; -} -inline const ::io::deephaven::proto::backplane::grpc::Ticket& SeekRowRequest::_internal_source_id() const { - ::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_); -} -inline const ::io::deephaven::proto::backplane::grpc::Ticket& SeekRowRequest::source_id() const ABSL_ATTRIBUTE_LIFETIME_BOUND { - // @@protoc_insertion_point(field_get:io.deephaven.proto.backplane.grpc.SeekRowRequest.source_id) - return _internal_source_id(); -} -inline void SeekRowRequest::unsafe_arena_set_allocated_source_id(::io::deephaven::proto::backplane::grpc::Ticket* value) { - ::google::protobuf::internal::TSanWrite(&_impl_); - if (GetArena() == nullptr) { - delete reinterpret_cast<::google::protobuf::MessageLite*>(_impl_.source_id_); - } - _impl_.source_id_ = reinterpret_cast<::io::deephaven::proto::backplane::grpc::Ticket*>(value); - if (value != nullptr) { - _impl_._has_bits_[0] |= 0x00000001u; - } else { - _impl_._has_bits_[0] &= ~0x00000001u; - } - // @@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() { - ::google::protobuf::internal::TSanWrite(&_impl_); - - _impl_._has_bits_[0] &= ~0x00000001u; - ::io::deephaven::proto::backplane::grpc::Ticket* released = _impl_.source_id_; - _impl_.source_id_ = nullptr; -#ifdef PROTOBUF_FORCE_COPY_IN_RELEASE - auto* old = reinterpret_cast<::google::protobuf::MessageLite*>(released); - released = ::google::protobuf::internal::DuplicateIfNonNull(released); - if (GetArena() == nullptr) { - delete old; - } -#else // PROTOBUF_FORCE_COPY_IN_RELEASE - if (GetArena() != nullptr) { - released = ::google::protobuf::internal::DuplicateIfNonNull(released); - } -#endif // !PROTOBUF_FORCE_COPY_IN_RELEASE - return released; -} -inline ::io::deephaven::proto::backplane::grpc::Ticket* SeekRowRequest::unsafe_arena_release_source_id() { - ::google::protobuf::internal::TSanWrite(&_impl_); - // @@protoc_insertion_point(field_release:io.deephaven.proto.backplane.grpc.SeekRowRequest.source_id) - - _impl_._has_bits_[0] &= ~0x00000001u; - ::io::deephaven::proto::backplane::grpc::Ticket* temp = _impl_.source_id_; - _impl_.source_id_ = nullptr; - return temp; -} -inline ::io::deephaven::proto::backplane::grpc::Ticket* SeekRowRequest::_internal_mutable_source_id() { - ::google::protobuf::internal::TSanWrite(&_impl_); - if (_impl_.source_id_ == nullptr) { - 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(); - ::google::protobuf::internal::TSanWrite(&_impl_); - if (message_arena == nullptr) { - delete reinterpret_cast<::google::protobuf::MessageLite*>(_impl_.source_id_); - } - - if (value != nullptr) { - ::google::protobuf::Arena* submessage_arena = reinterpret_cast<::google::protobuf::MessageLite*>(value)->GetArena(); - if (message_arena != submessage_arena) { - value = ::google::protobuf::internal::GetOwnedMessage(message_arena, value, submessage_arena); - } - _impl_._has_bits_[0] |= 0x00000001u; - } else { - _impl_._has_bits_[0] &= ~0x00000001u; - } - - _impl_.source_id_ = reinterpret_cast<::io::deephaven::proto::backplane::grpc::Ticket*>(value); - // @@protoc_insertion_point(field_set_allocated:io.deephaven.proto.backplane.grpc.SeekRowRequest.source_id) -} - -// sint64 starting_row = 2 [jstype = JS_STRING]; -inline void SeekRowRequest::clear_starting_row() { - ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.starting_row_ = ::int64_t{0}; -} -inline ::int64_t SeekRowRequest::starting_row() const { - // @@protoc_insertion_point(field_get:io.deephaven.proto.backplane.grpc.SeekRowRequest.starting_row) - return _internal_starting_row(); -} -inline void SeekRowRequest::set_starting_row(::int64_t value) { - _internal_set_starting_row(value); - // @@protoc_insertion_point(field_set:io.deephaven.proto.backplane.grpc.SeekRowRequest.starting_row) -} -inline ::int64_t SeekRowRequest::_internal_starting_row() const { - ::google::protobuf::internal::TSanRead(&_impl_); - return _impl_.starting_row_; -} -inline void SeekRowRequest::_internal_set_starting_row(::int64_t value) { - ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.starting_row_ = value; -} - -// string column_name = 3; -inline void SeekRowRequest::clear_column_name() { - ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.column_name_.ClearToEmpty(); -} -inline const std::string& SeekRowRequest::column_name() const - ABSL_ATTRIBUTE_LIFETIME_BOUND { - // @@protoc_insertion_point(field_get:io.deephaven.proto.backplane.grpc.SeekRowRequest.column_name) - return _internal_column_name(); -} -template -inline PROTOBUF_ALWAYS_INLINE void SeekRowRequest::set_column_name(Arg_&& arg, - Args_... args) { - ::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) -} -inline std::string* SeekRowRequest::mutable_column_name() ABSL_ATTRIBUTE_LIFETIME_BOUND { - std::string* _s = _internal_mutable_column_name(); - // @@protoc_insertion_point(field_mutable:io.deephaven.proto.backplane.grpc.SeekRowRequest.column_name) - return _s; -} -inline const std::string& SeekRowRequest::_internal_column_name() const { - ::google::protobuf::internal::TSanRead(&_impl_); - return _impl_.column_name_.Get(); -} -inline void SeekRowRequest::_internal_set_column_name(const std::string& value) { - ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.column_name_.Set(value, GetArena()); -} -inline std::string* SeekRowRequest::_internal_mutable_column_name() { - ::google::protobuf::internal::TSanWrite(&_impl_); - return _impl_.column_name_.Mutable( GetArena()); -} -inline std::string* SeekRowRequest::release_column_name() { - ::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) { - ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.column_name_.SetAllocated(value, GetArena()); - #ifdef PROTOBUF_FORCE_COPY_DEFAULT_STRING - if (_impl_.column_name_.IsDefault()) { - _impl_.column_name_.Set("", GetArena()); - } - #endif // PROTOBUF_FORCE_COPY_DEFAULT_STRING - // @@protoc_insertion_point(field_set_allocated:io.deephaven.proto.backplane.grpc.SeekRowRequest.column_name) -} - -// .io.deephaven.proto.backplane.grpc.Literal seek_value = 4; -inline bool SeekRowRequest::has_seek_value() const { - bool value = (_impl_._has_bits_[0] & 0x00000002u) != 0; - PROTOBUF_ASSUME(!value || _impl_.seek_value_ != nullptr); - return value; -} -inline void SeekRowRequest::clear_seek_value() { - ::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 { - ::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_); -} -inline const ::io::deephaven::proto::backplane::grpc::Literal& SeekRowRequest::seek_value() const ABSL_ATTRIBUTE_LIFETIME_BOUND { - // @@protoc_insertion_point(field_get:io.deephaven.proto.backplane.grpc.SeekRowRequest.seek_value) - return _internal_seek_value(); -} -inline void SeekRowRequest::unsafe_arena_set_allocated_seek_value(::io::deephaven::proto::backplane::grpc::Literal* value) { - ::google::protobuf::internal::TSanWrite(&_impl_); - if (GetArena() == nullptr) { - delete reinterpret_cast<::google::protobuf::MessageLite*>(_impl_.seek_value_); - } - _impl_.seek_value_ = reinterpret_cast<::io::deephaven::proto::backplane::grpc::Literal*>(value); - if (value != nullptr) { - _impl_._has_bits_[0] |= 0x00000002u; - } else { - _impl_._has_bits_[0] &= ~0x00000002u; - } - // @@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() { - ::google::protobuf::internal::TSanWrite(&_impl_); - - _impl_._has_bits_[0] &= ~0x00000002u; - ::io::deephaven::proto::backplane::grpc::Literal* released = _impl_.seek_value_; - _impl_.seek_value_ = nullptr; -#ifdef PROTOBUF_FORCE_COPY_IN_RELEASE - auto* old = reinterpret_cast<::google::protobuf::MessageLite*>(released); - released = ::google::protobuf::internal::DuplicateIfNonNull(released); - if (GetArena() == nullptr) { - delete old; - } -#else // PROTOBUF_FORCE_COPY_IN_RELEASE - if (GetArena() != nullptr) { - released = ::google::protobuf::internal::DuplicateIfNonNull(released); - } -#endif // !PROTOBUF_FORCE_COPY_IN_RELEASE - return released; -} -inline ::io::deephaven::proto::backplane::grpc::Literal* SeekRowRequest::unsafe_arena_release_seek_value() { - ::google::protobuf::internal::TSanWrite(&_impl_); - // @@protoc_insertion_point(field_release:io.deephaven.proto.backplane.grpc.SeekRowRequest.seek_value) - - _impl_._has_bits_[0] &= ~0x00000002u; - ::io::deephaven::proto::backplane::grpc::Literal* temp = _impl_.seek_value_; - _impl_.seek_value_ = nullptr; - return temp; -} -inline ::io::deephaven::proto::backplane::grpc::Literal* SeekRowRequest::_internal_mutable_seek_value() { - ::google::protobuf::internal::TSanWrite(&_impl_); - if (_impl_.seek_value_ == nullptr) { - 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(); - ::google::protobuf::internal::TSanWrite(&_impl_); - if (message_arena == nullptr) { - delete (_impl_.seek_value_); - } - - if (value != nullptr) { - ::google::protobuf::Arena* submessage_arena = (value)->GetArena(); - if (message_arena != submessage_arena) { - value = ::google::protobuf::internal::GetOwnedMessage(message_arena, value, submessage_arena); - } - _impl_._has_bits_[0] |= 0x00000002u; - } else { - _impl_._has_bits_[0] &= ~0x00000002u; - } - - _impl_.seek_value_ = reinterpret_cast<::io::deephaven::proto::backplane::grpc::Literal*>(value); - // @@protoc_insertion_point(field_set_allocated:io.deephaven.proto.backplane.grpc.SeekRowRequest.seek_value) -} - -// bool insensitive = 5; -inline void SeekRowRequest::clear_insensitive() { - ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.insensitive_ = false; -} -inline bool SeekRowRequest::insensitive() const { - // @@protoc_insertion_point(field_get:io.deephaven.proto.backplane.grpc.SeekRowRequest.insensitive) - return _internal_insensitive(); -} -inline void SeekRowRequest::set_insensitive(bool value) { - _internal_set_insensitive(value); - // @@protoc_insertion_point(field_set:io.deephaven.proto.backplane.grpc.SeekRowRequest.insensitive) -} -inline bool SeekRowRequest::_internal_insensitive() const { - ::google::protobuf::internal::TSanRead(&_impl_); - return _impl_.insensitive_; -} -inline void SeekRowRequest::_internal_set_insensitive(bool value) { - ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.insensitive_ = value; -} - -// bool contains = 6; -inline void SeekRowRequest::clear_contains() { - ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.contains_ = false; -} -inline bool SeekRowRequest::contains() const { - // @@protoc_insertion_point(field_get:io.deephaven.proto.backplane.grpc.SeekRowRequest.contains) - return _internal_contains(); -} -inline void SeekRowRequest::set_contains(bool value) { - _internal_set_contains(value); - // @@protoc_insertion_point(field_set:io.deephaven.proto.backplane.grpc.SeekRowRequest.contains) -} -inline bool SeekRowRequest::_internal_contains() const { - ::google::protobuf::internal::TSanRead(&_impl_); - return _impl_.contains_; -} -inline void SeekRowRequest::_internal_set_contains(bool value) { - ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.contains_ = value; -} - -// bool is_backward = 7; -inline void SeekRowRequest::clear_is_backward() { - ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.is_backward_ = false; -} -inline bool SeekRowRequest::is_backward() const { - // @@protoc_insertion_point(field_get:io.deephaven.proto.backplane.grpc.SeekRowRequest.is_backward) - return _internal_is_backward(); -} -inline void SeekRowRequest::set_is_backward(bool value) { - _internal_set_is_backward(value); - // @@protoc_insertion_point(field_set:io.deephaven.proto.backplane.grpc.SeekRowRequest.is_backward) -} -inline bool SeekRowRequest::_internal_is_backward() const { - ::google::protobuf::internal::TSanRead(&_impl_); - return _impl_.is_backward_; -} -inline void SeekRowRequest::_internal_set_is_backward(bool value) { - ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.is_backward_ = value; -} - -// ------------------------------------------------------------------- - -// SeekRowResponse - -// sint64 result_row = 1 [jstype = JS_STRING]; -inline void SeekRowResponse::clear_result_row() { - ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.result_row_ = ::int64_t{0}; -} -inline ::int64_t SeekRowResponse::result_row() const { - // @@protoc_insertion_point(field_get:io.deephaven.proto.backplane.grpc.SeekRowResponse.result_row) - return _internal_result_row(); -} -inline void SeekRowResponse::set_result_row(::int64_t value) { - _internal_set_result_row(value); - // @@protoc_insertion_point(field_set:io.deephaven.proto.backplane.grpc.SeekRowResponse.result_row) -} -inline ::int64_t SeekRowResponse::_internal_result_row() const { - ::google::protobuf::internal::TSanRead(&_impl_); - return _impl_.result_row_; -} -inline void SeekRowResponse::_internal_set_result_row(::int64_t value) { - ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.result_row_ = value; -} - -// ------------------------------------------------------------------- - -// Reference - -// string column_name = 1; -inline void Reference::clear_column_name() { - ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.column_name_.ClearToEmpty(); -} -inline const std::string& Reference::column_name() const - ABSL_ATTRIBUTE_LIFETIME_BOUND { - // @@protoc_insertion_point(field_get:io.deephaven.proto.backplane.grpc.Reference.column_name) - return _internal_column_name(); -} -template -inline PROTOBUF_ALWAYS_INLINE void Reference::set_column_name(Arg_&& arg, - Args_... args) { - ::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) -} -inline std::string* Reference::mutable_column_name() ABSL_ATTRIBUTE_LIFETIME_BOUND { - std::string* _s = _internal_mutable_column_name(); - // @@protoc_insertion_point(field_mutable:io.deephaven.proto.backplane.grpc.Reference.column_name) - return _s; -} -inline const std::string& Reference::_internal_column_name() const { - ::google::protobuf::internal::TSanRead(&_impl_); - return _impl_.column_name_.Get(); -} -inline void Reference::_internal_set_column_name(const std::string& value) { - ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.column_name_.Set(value, GetArena()); -} -inline std::string* Reference::_internal_mutable_column_name() { - ::google::protobuf::internal::TSanWrite(&_impl_); - return _impl_.column_name_.Mutable( GetArena()); -} -inline std::string* Reference::release_column_name() { - ::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) { - ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.column_name_.SetAllocated(value, GetArena()); - #ifdef PROTOBUF_FORCE_COPY_DEFAULT_STRING - if (_impl_.column_name_.IsDefault()) { - _impl_.column_name_.Set("", GetArena()); - } - #endif // PROTOBUF_FORCE_COPY_DEFAULT_STRING - // @@protoc_insertion_point(field_set_allocated:io.deephaven.proto.backplane.grpc.Reference.column_name) -} - -// ------------------------------------------------------------------- - -// Literal - -// string string_value = 1; -inline bool Literal::has_string_value() const { - return value_case() == kStringValue; -} -inline void Literal::set_has_string_value() { - _impl_._oneof_case_[0] = kStringValue; -} -inline void Literal::clear_string_value() { - ::google::protobuf::internal::TSanWrite(&_impl_); - if (value_case() == kStringValue) { - _impl_.value_.string_value_.Destroy(); - clear_has_value(); - } -} -inline const std::string& Literal::string_value() const - ABSL_ATTRIBUTE_LIFETIME_BOUND { - // @@protoc_insertion_point(field_get:io.deephaven.proto.backplane.grpc.Literal.string_value) - return _internal_string_value(); -} -template -inline PROTOBUF_ALWAYS_INLINE void Literal::set_string_value(Arg_&& arg, - Args_... args) { - ::google::protobuf::internal::TSanWrite(&_impl_); - if (value_case() != kStringValue) { - clear_value(); - - set_has_string_value(); - _impl_.value_.string_value_.InitDefault(); - } - _impl_.value_.string_value_.Set(static_cast(arg), args..., GetArena()); - // @@protoc_insertion_point(field_set:io.deephaven.proto.backplane.grpc.Literal.string_value) -} -inline std::string* Literal::mutable_string_value() ABSL_ATTRIBUTE_LIFETIME_BOUND { - std::string* _s = _internal_mutable_string_value(); - // @@protoc_insertion_point(field_mutable:io.deephaven.proto.backplane.grpc.Literal.string_value) - return _s; -} -inline const std::string& Literal::_internal_string_value() const { - ::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) { - ::google::protobuf::internal::TSanWrite(&_impl_); - if (value_case() != kStringValue) { - clear_value(); - - set_has_string_value(); - _impl_.value_.string_value_.InitDefault(); - } - _impl_.value_.string_value_.Set(value, GetArena()); -} -inline std::string* Literal::_internal_mutable_string_value() { - ::google::protobuf::internal::TSanWrite(&_impl_); - if (value_case() != kStringValue) { - clear_value(); - - set_has_string_value(); - _impl_.value_.string_value_.InitDefault(); - } - return _impl_.value_.string_value_.Mutable( GetArena()); -} -inline std::string* Literal::release_string_value() { - ::google::protobuf::internal::TSanWrite(&_impl_); - // @@protoc_insertion_point(field_release:io.deephaven.proto.backplane.grpc.Literal.string_value) - if (value_case() != kStringValue) { - return nullptr; - } - clear_has_value(); - return _impl_.value_.string_value_.Release(); -} -inline void Literal::set_allocated_string_value(std::string* value) { - ::google::protobuf::internal::TSanWrite(&_impl_); - if (has_value()) { - clear_value(); - } - if (value != nullptr) { - set_has_string_value(); - _impl_.value_.string_value_.InitAllocated(value, GetArena()); - } - // @@protoc_insertion_point(field_set_allocated:io.deephaven.proto.backplane.grpc.Literal.string_value) -} - -// double double_value = 2; -inline bool Literal::has_double_value() const { - return value_case() == kDoubleValue; -} -inline void Literal::set_has_double_value() { - _impl_._oneof_case_[0] = kDoubleValue; -} -inline void Literal::clear_double_value() { - ::google::protobuf::internal::TSanWrite(&_impl_); - if (value_case() == kDoubleValue) { - _impl_.value_.double_value_ = 0; - clear_has_value(); - } -} -inline double Literal::double_value() const { - // @@protoc_insertion_point(field_get:io.deephaven.proto.backplane.grpc.Literal.double_value) - return _internal_double_value(); -} -inline void Literal::set_double_value(double 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 { - if (value_case() == kDoubleValue) { - return _impl_.value_.double_value_; - } - return 0; -} - -// bool bool_value = 3; -inline bool Literal::has_bool_value() const { - return value_case() == kBoolValue; -} -inline void Literal::set_has_bool_value() { - _impl_._oneof_case_[0] = kBoolValue; -} -inline void Literal::clear_bool_value() { - ::google::protobuf::internal::TSanWrite(&_impl_); - if (value_case() == kBoolValue) { - _impl_.value_.bool_value_ = false; - clear_has_value(); - } -} -inline bool Literal::bool_value() const { - // @@protoc_insertion_point(field_get:io.deephaven.proto.backplane.grpc.Literal.bool_value) - return _internal_bool_value(); -} -inline void Literal::set_bool_value(bool 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 { - if (value_case() == kBoolValue) { - return _impl_.value_.bool_value_; - } - return false; -} - -// sint64 long_value = 4 [jstype = JS_STRING]; -inline bool Literal::has_long_value() const { - return value_case() == kLongValue; -} -inline void Literal::set_has_long_value() { - _impl_._oneof_case_[0] = kLongValue; -} -inline void Literal::clear_long_value() { - ::google::protobuf::internal::TSanWrite(&_impl_); - if (value_case() == kLongValue) { - _impl_.value_.long_value_ = ::int64_t{0}; - clear_has_value(); - } -} -inline ::int64_t Literal::long_value() const { - // @@protoc_insertion_point(field_get:io.deephaven.proto.backplane.grpc.Literal.long_value) - return _internal_long_value(); -} -inline void Literal::set_long_value(::int64_t 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 { - if (value_case() == kLongValue) { - return _impl_.value_.long_value_; - } - return ::int64_t{0}; -} - -// sint64 nano_time_value = 5 [jstype = JS_STRING]; -inline bool Literal::has_nano_time_value() const { - return value_case() == kNanoTimeValue; -} -inline void Literal::set_has_nano_time_value() { - _impl_._oneof_case_[0] = kNanoTimeValue; -} -inline void Literal::clear_nano_time_value() { - ::google::protobuf::internal::TSanWrite(&_impl_); - if (value_case() == kNanoTimeValue) { - _impl_.value_.nano_time_value_ = ::int64_t{0}; - clear_has_value(); - } -} -inline ::int64_t Literal::nano_time_value() const { - // @@protoc_insertion_point(field_get:io.deephaven.proto.backplane.grpc.Literal.nano_time_value) - return _internal_nano_time_value(); -} -inline void Literal::set_nano_time_value(::int64_t 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 { - if (value_case() == kNanoTimeValue) { - return _impl_.value_.nano_time_value_; - } - return ::int64_t{0}; -} - -inline bool Literal::has_value() const { - return value_case() != VALUE_NOT_SET; -} -inline void Literal::clear_has_value() { - _impl_._oneof_case_[0] = VALUE_NOT_SET; -} -inline Literal::ValueCase Literal::value_case() const { - return Literal::ValueCase(_impl_._oneof_case_[0]); -} -// ------------------------------------------------------------------- - -// Value - -// .io.deephaven.proto.backplane.grpc.Reference reference = 1; -inline bool Value::has_reference() const { - return data_case() == kReference; -} -inline bool Value::_internal_has_reference() const { - return data_case() == kReference; -} -inline void Value::set_has_reference() { - _impl_._oneof_case_[0] = kReference; -} -inline void Value::clear_reference() { - ::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(); - } -} -inline ::io::deephaven::proto::backplane::grpc::Reference* Value::release_reference() { - // @@protoc_insertion_point(field_release:io.deephaven.proto.backplane.grpc.Value.reference) - if (data_case() == kReference) { - clear_has_data(); - auto* temp = _impl_.data_.reference_; - if (GetArena() != nullptr) { - temp = ::google::protobuf::internal::DuplicateIfNonNull(temp); - } - _impl_.data_.reference_ = nullptr; - return temp; - } else { - return nullptr; - } -} -inline const ::io::deephaven::proto::backplane::grpc::Reference& Value::_internal_reference() const { - return data_case() == kReference ? *_impl_.data_.reference_ : reinterpret_cast<::io::deephaven::proto::backplane::grpc::Reference&>(::io::deephaven::proto::backplane::grpc::_Reference_default_instance_); -} -inline const ::io::deephaven::proto::backplane::grpc::Reference& Value::reference() const ABSL_ATTRIBUTE_LIFETIME_BOUND { - // @@protoc_insertion_point(field_get:io.deephaven.proto.backplane.grpc.Value.reference) - return _internal_reference(); -} -inline ::io::deephaven::proto::backplane::grpc::Reference* Value::unsafe_arena_release_reference() { - // @@protoc_insertion_point(field_unsafe_arena_release:io.deephaven.proto.backplane.grpc.Value.reference) - if (data_case() == kReference) { - clear_has_data(); - auto* temp = _impl_.data_.reference_; - _impl_.data_.reference_ = nullptr; - return temp; - } else { - return nullptr; - } -} -inline void Value::unsafe_arena_set_allocated_reference(::io::deephaven::proto::backplane::grpc::Reference* value) { - // We rely on the oneof clear method to free the earlier contents - // of this oneof. We can directly use the pointer we're given to - // set the new value. - clear_data(); - if (value) { - set_has_reference(); - _impl_.data_.reference_ = value; - } - // @@protoc_insertion_point(field_unsafe_arena_set_allocated:io.deephaven.proto.backplane.grpc.Value.reference) -} -inline ::io::deephaven::proto::backplane::grpc::Reference* Value::_internal_mutable_reference() { - if (data_case() != kReference) { - clear_data(); - set_has_reference(); - _impl_.data_.reference_ = - ::google::protobuf::Message::DefaultConstruct<::io::deephaven::proto::backplane::grpc::Reference>(GetArena()); - } - return _impl_.data_.reference_; -} -inline ::io::deephaven::proto::backplane::grpc::Reference* Value::mutable_reference() ABSL_ATTRIBUTE_LIFETIME_BOUND { - ::io::deephaven::proto::backplane::grpc::Reference* _msg = _internal_mutable_reference(); - // @@protoc_insertion_point(field_mutable:io.deephaven.proto.backplane.grpc.Value.reference) - return _msg; -} - -// .io.deephaven.proto.backplane.grpc.Literal literal = 2; -inline bool Value::has_literal() const { - return data_case() == kLiteral; -} -inline bool Value::_internal_has_literal() const { - return data_case() == kLiteral; -} -inline void Value::set_has_literal() { - _impl_._oneof_case_[0] = kLiteral; -} -inline void Value::clear_literal() { - ::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(); - } -} -inline ::io::deephaven::proto::backplane::grpc::Literal* Value::release_literal() { - // @@protoc_insertion_point(field_release:io.deephaven.proto.backplane.grpc.Value.literal) - if (data_case() == kLiteral) { - clear_has_data(); - auto* temp = _impl_.data_.literal_; - if (GetArena() != nullptr) { - temp = ::google::protobuf::internal::DuplicateIfNonNull(temp); - } - _impl_.data_.literal_ = nullptr; - return temp; - } else { - return nullptr; - } -} -inline const ::io::deephaven::proto::backplane::grpc::Literal& Value::_internal_literal() const { - return data_case() == kLiteral ? *_impl_.data_.literal_ : reinterpret_cast<::io::deephaven::proto::backplane::grpc::Literal&>(::io::deephaven::proto::backplane::grpc::_Literal_default_instance_); -} -inline const ::io::deephaven::proto::backplane::grpc::Literal& Value::literal() const ABSL_ATTRIBUTE_LIFETIME_BOUND { - // @@protoc_insertion_point(field_get:io.deephaven.proto.backplane.grpc.Value.literal) - return _internal_literal(); -} -inline ::io::deephaven::proto::backplane::grpc::Literal* Value::unsafe_arena_release_literal() { - // @@protoc_insertion_point(field_unsafe_arena_release:io.deephaven.proto.backplane.grpc.Value.literal) - if (data_case() == kLiteral) { - clear_has_data(); - auto* temp = _impl_.data_.literal_; - _impl_.data_.literal_ = nullptr; - return temp; - } else { - return nullptr; - } -} -inline void Value::unsafe_arena_set_allocated_literal(::io::deephaven::proto::backplane::grpc::Literal* value) { - // We rely on the oneof clear method to free the earlier contents - // of this oneof. We can directly use the pointer we're given to - // set the new value. - clear_data(); - if (value) { - set_has_literal(); - _impl_.data_.literal_ = value; - } - // @@protoc_insertion_point(field_unsafe_arena_set_allocated:io.deephaven.proto.backplane.grpc.Value.literal) -} -inline ::io::deephaven::proto::backplane::grpc::Literal* Value::_internal_mutable_literal() { - if (data_case() != kLiteral) { - clear_data(); - set_has_literal(); - _impl_.data_.literal_ = - ::google::protobuf::Message::DefaultConstruct<::io::deephaven::proto::backplane::grpc::Literal>(GetArena()); - } - return _impl_.data_.literal_; -} -inline ::io::deephaven::proto::backplane::grpc::Literal* Value::mutable_literal() ABSL_ATTRIBUTE_LIFETIME_BOUND { - ::io::deephaven::proto::backplane::grpc::Literal* _msg = _internal_mutable_literal(); - // @@protoc_insertion_point(field_mutable:io.deephaven.proto.backplane.grpc.Value.literal) - return _msg; -} - -inline bool Value::has_data() const { - return data_case() != DATA_NOT_SET; -} -inline void Value::clear_has_data() { - _impl_._oneof_case_[0] = DATA_NOT_SET; -} -inline Value::DataCase Value::data_case() const { - return Value::DataCase(_impl_._oneof_case_[0]); -} -// ------------------------------------------------------------------- - -// Condition - -// .io.deephaven.proto.backplane.grpc.AndCondition and = 1; -inline bool Condition::has_and_() const { - return data_case() == kAnd; -} -inline bool Condition::_internal_has_and_() const { - return data_case() == kAnd; -} -inline void Condition::set_has_and_() { - _impl_._oneof_case_[0] = kAnd; -} -inline void Condition::clear_and_() { - ::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(); - } -} -inline ::io::deephaven::proto::backplane::grpc::AndCondition* Condition::release_and_() { - // @@protoc_insertion_point(field_release:io.deephaven.proto.backplane.grpc.Condition.and) - if (data_case() == kAnd) { - clear_has_data(); - auto* temp = _impl_.data_.and__; - if (GetArena() != nullptr) { - temp = ::google::protobuf::internal::DuplicateIfNonNull(temp); - } - _impl_.data_.and__ = nullptr; - return temp; - } else { - return nullptr; - } -} -inline const ::io::deephaven::proto::backplane::grpc::AndCondition& Condition::_internal_and_() const { - return data_case() == kAnd ? *_impl_.data_.and__ : reinterpret_cast<::io::deephaven::proto::backplane::grpc::AndCondition&>(::io::deephaven::proto::backplane::grpc::_AndCondition_default_instance_); -} -inline const ::io::deephaven::proto::backplane::grpc::AndCondition& Condition::and_() const ABSL_ATTRIBUTE_LIFETIME_BOUND { - // @@protoc_insertion_point(field_get:io.deephaven.proto.backplane.grpc.Condition.and) - return _internal_and_(); -} -inline ::io::deephaven::proto::backplane::grpc::AndCondition* Condition::unsafe_arena_release_and_() { - // @@protoc_insertion_point(field_unsafe_arena_release:io.deephaven.proto.backplane.grpc.Condition.and) - if (data_case() == kAnd) { - clear_has_data(); - auto* temp = _impl_.data_.and__; - _impl_.data_.and__ = nullptr; - return temp; - } else { - return nullptr; - } -} -inline void Condition::unsafe_arena_set_allocated_and_(::io::deephaven::proto::backplane::grpc::AndCondition* value) { - // We rely on the oneof clear method to free the earlier contents - // of this oneof. We can directly use the pointer we're given to - // set the new value. - clear_data(); - if (value) { - set_has_and_(); - _impl_.data_.and__ = value; - } - // @@protoc_insertion_point(field_unsafe_arena_set_allocated:io.deephaven.proto.backplane.grpc.Condition.and) -} -inline ::io::deephaven::proto::backplane::grpc::AndCondition* Condition::_internal_mutable_and_() { - if (data_case() != kAnd) { - clear_data(); - set_has_and_(); - _impl_.data_.and__ = - ::google::protobuf::Message::DefaultConstruct<::io::deephaven::proto::backplane::grpc::AndCondition>(GetArena()); - } - return _impl_.data_.and__; -} -inline ::io::deephaven::proto::backplane::grpc::AndCondition* Condition::mutable_and_() ABSL_ATTRIBUTE_LIFETIME_BOUND { - ::io::deephaven::proto::backplane::grpc::AndCondition* _msg = _internal_mutable_and_(); - // @@protoc_insertion_point(field_mutable:io.deephaven.proto.backplane.grpc.Condition.and) - return _msg; -} - -// .io.deephaven.proto.backplane.grpc.OrCondition or = 2; -inline bool Condition::has_or_() const { - return data_case() == kOr; -} -inline bool Condition::_internal_has_or_() const { - return data_case() == kOr; -} -inline void Condition::set_has_or_() { - _impl_._oneof_case_[0] = kOr; -} -inline void Condition::clear_or_() { - ::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(); - } -} -inline ::io::deephaven::proto::backplane::grpc::OrCondition* Condition::release_or_() { - // @@protoc_insertion_point(field_release:io.deephaven.proto.backplane.grpc.Condition.or) - if (data_case() == kOr) { - clear_has_data(); - auto* temp = _impl_.data_.or__; - if (GetArena() != nullptr) { - temp = ::google::protobuf::internal::DuplicateIfNonNull(temp); - } - _impl_.data_.or__ = nullptr; - return temp; - } else { - return nullptr; - } -} -inline const ::io::deephaven::proto::backplane::grpc::OrCondition& Condition::_internal_or_() const { - return data_case() == kOr ? *_impl_.data_.or__ : reinterpret_cast<::io::deephaven::proto::backplane::grpc::OrCondition&>(::io::deephaven::proto::backplane::grpc::_OrCondition_default_instance_); -} -inline const ::io::deephaven::proto::backplane::grpc::OrCondition& Condition::or_() const ABSL_ATTRIBUTE_LIFETIME_BOUND { - // @@protoc_insertion_point(field_get:io.deephaven.proto.backplane.grpc.Condition.or) - return _internal_or_(); -} -inline ::io::deephaven::proto::backplane::grpc::OrCondition* Condition::unsafe_arena_release_or_() { - // @@protoc_insertion_point(field_unsafe_arena_release:io.deephaven.proto.backplane.grpc.Condition.or) - if (data_case() == kOr) { - clear_has_data(); - auto* temp = _impl_.data_.or__; - _impl_.data_.or__ = nullptr; - return temp; - } else { - return nullptr; - } -} -inline void Condition::unsafe_arena_set_allocated_or_(::io::deephaven::proto::backplane::grpc::OrCondition* value) { - // We rely on the oneof clear method to free the earlier contents - // of this oneof. We can directly use the pointer we're given to - // set the new value. - clear_data(); - if (value) { - set_has_or_(); - _impl_.data_.or__ = value; - } - // @@protoc_insertion_point(field_unsafe_arena_set_allocated:io.deephaven.proto.backplane.grpc.Condition.or) -} -inline ::io::deephaven::proto::backplane::grpc::OrCondition* Condition::_internal_mutable_or_() { - if (data_case() != kOr) { - clear_data(); - set_has_or_(); - _impl_.data_.or__ = - ::google::protobuf::Message::DefaultConstruct<::io::deephaven::proto::backplane::grpc::OrCondition>(GetArena()); - } - return _impl_.data_.or__; -} -inline ::io::deephaven::proto::backplane::grpc::OrCondition* Condition::mutable_or_() ABSL_ATTRIBUTE_LIFETIME_BOUND { - ::io::deephaven::proto::backplane::grpc::OrCondition* _msg = _internal_mutable_or_(); - // @@protoc_insertion_point(field_mutable:io.deephaven.proto.backplane.grpc.Condition.or) - return _msg; -} - -// .io.deephaven.proto.backplane.grpc.NotCondition not = 3; -inline bool Condition::has_not_() const { - return data_case() == kNot; -} -inline bool Condition::_internal_has_not_() const { - return data_case() == kNot; -} -inline void Condition::set_has_not_() { - _impl_._oneof_case_[0] = kNot; -} -inline void Condition::clear_not_() { - ::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(); - } -} -inline ::io::deephaven::proto::backplane::grpc::NotCondition* Condition::release_not_() { - // @@protoc_insertion_point(field_release:io.deephaven.proto.backplane.grpc.Condition.not) - if (data_case() == kNot) { - clear_has_data(); - auto* temp = _impl_.data_.not__; - if (GetArena() != nullptr) { - temp = ::google::protobuf::internal::DuplicateIfNonNull(temp); - } - _impl_.data_.not__ = nullptr; - return temp; - } else { - return nullptr; - } -} -inline const ::io::deephaven::proto::backplane::grpc::NotCondition& Condition::_internal_not_() const { - return data_case() == kNot ? *_impl_.data_.not__ : reinterpret_cast<::io::deephaven::proto::backplane::grpc::NotCondition&>(::io::deephaven::proto::backplane::grpc::_NotCondition_default_instance_); -} -inline const ::io::deephaven::proto::backplane::grpc::NotCondition& Condition::not_() const ABSL_ATTRIBUTE_LIFETIME_BOUND { - // @@protoc_insertion_point(field_get:io.deephaven.proto.backplane.grpc.Condition.not) - return _internal_not_(); -} -inline ::io::deephaven::proto::backplane::grpc::NotCondition* Condition::unsafe_arena_release_not_() { - // @@protoc_insertion_point(field_unsafe_arena_release:io.deephaven.proto.backplane.grpc.Condition.not) - if (data_case() == kNot) { - clear_has_data(); - auto* temp = _impl_.data_.not__; - _impl_.data_.not__ = nullptr; - return temp; - } else { - return nullptr; - } -} -inline void Condition::unsafe_arena_set_allocated_not_(::io::deephaven::proto::backplane::grpc::NotCondition* value) { - // We rely on the oneof clear method to free the earlier contents - // of this oneof. We can directly use the pointer we're given to - // set the new value. - clear_data(); - if (value) { - set_has_not_(); - _impl_.data_.not__ = value; - } - // @@protoc_insertion_point(field_unsafe_arena_set_allocated:io.deephaven.proto.backplane.grpc.Condition.not) -} -inline ::io::deephaven::proto::backplane::grpc::NotCondition* Condition::_internal_mutable_not_() { - if (data_case() != kNot) { - clear_data(); - set_has_not_(); - _impl_.data_.not__ = - ::google::protobuf::Message::DefaultConstruct<::io::deephaven::proto::backplane::grpc::NotCondition>(GetArena()); - } - return _impl_.data_.not__; -} -inline ::io::deephaven::proto::backplane::grpc::NotCondition* Condition::mutable_not_() ABSL_ATTRIBUTE_LIFETIME_BOUND { - ::io::deephaven::proto::backplane::grpc::NotCondition* _msg = _internal_mutable_not_(); - // @@protoc_insertion_point(field_mutable:io.deephaven.proto.backplane.grpc.Condition.not) - return _msg; -} - -// .io.deephaven.proto.backplane.grpc.CompareCondition compare = 4; -inline bool Condition::has_compare() const { - return data_case() == kCompare; -} -inline bool Condition::_internal_has_compare() const { - return data_case() == kCompare; -} -inline void Condition::set_has_compare() { - _impl_._oneof_case_[0] = kCompare; -} -inline void Condition::clear_compare() { - ::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(); - } -} -inline ::io::deephaven::proto::backplane::grpc::CompareCondition* Condition::release_compare() { - // @@protoc_insertion_point(field_release:io.deephaven.proto.backplane.grpc.Condition.compare) - if (data_case() == kCompare) { - clear_has_data(); - auto* temp = _impl_.data_.compare_; - if (GetArena() != nullptr) { - temp = ::google::protobuf::internal::DuplicateIfNonNull(temp); - } - _impl_.data_.compare_ = nullptr; - return temp; - } else { - return nullptr; - } -} -inline const ::io::deephaven::proto::backplane::grpc::CompareCondition& Condition::_internal_compare() const { - return data_case() == kCompare ? *_impl_.data_.compare_ : reinterpret_cast<::io::deephaven::proto::backplane::grpc::CompareCondition&>(::io::deephaven::proto::backplane::grpc::_CompareCondition_default_instance_); -} -inline const ::io::deephaven::proto::backplane::grpc::CompareCondition& Condition::compare() const ABSL_ATTRIBUTE_LIFETIME_BOUND { - // @@protoc_insertion_point(field_get:io.deephaven.proto.backplane.grpc.Condition.compare) - return _internal_compare(); -} -inline ::io::deephaven::proto::backplane::grpc::CompareCondition* Condition::unsafe_arena_release_compare() { - // @@protoc_insertion_point(field_unsafe_arena_release:io.deephaven.proto.backplane.grpc.Condition.compare) - if (data_case() == kCompare) { - clear_has_data(); - auto* temp = _impl_.data_.compare_; - _impl_.data_.compare_ = nullptr; - return temp; - } else { - return nullptr; - } -} -inline void Condition::unsafe_arena_set_allocated_compare(::io::deephaven::proto::backplane::grpc::CompareCondition* value) { - // We rely on the oneof clear method to free the earlier contents - // of this oneof. We can directly use the pointer we're given to - // set the new value. - clear_data(); - if (value) { - set_has_compare(); - _impl_.data_.compare_ = value; - } - // @@protoc_insertion_point(field_unsafe_arena_set_allocated:io.deephaven.proto.backplane.grpc.Condition.compare) -} -inline ::io::deephaven::proto::backplane::grpc::CompareCondition* Condition::_internal_mutable_compare() { - if (data_case() != kCompare) { - clear_data(); - set_has_compare(); - _impl_.data_.compare_ = - ::google::protobuf::Message::DefaultConstruct<::io::deephaven::proto::backplane::grpc::CompareCondition>(GetArena()); - } - return _impl_.data_.compare_; -} -inline ::io::deephaven::proto::backplane::grpc::CompareCondition* Condition::mutable_compare() ABSL_ATTRIBUTE_LIFETIME_BOUND { - ::io::deephaven::proto::backplane::grpc::CompareCondition* _msg = _internal_mutable_compare(); - // @@protoc_insertion_point(field_mutable:io.deephaven.proto.backplane.grpc.Condition.compare) - return _msg; -} - -// .io.deephaven.proto.backplane.grpc.InCondition in = 5; -inline bool Condition::has_in() const { - return data_case() == kIn; -} -inline bool Condition::_internal_has_in() const { - return data_case() == kIn; -} -inline void Condition::set_has_in() { - _impl_._oneof_case_[0] = kIn; -} -inline void Condition::clear_in() { - ::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(); - } -} -inline ::io::deephaven::proto::backplane::grpc::InCondition* Condition::release_in() { - // @@protoc_insertion_point(field_release:io.deephaven.proto.backplane.grpc.Condition.in) - if (data_case() == kIn) { - clear_has_data(); - auto* temp = _impl_.data_.in_; - if (GetArena() != nullptr) { - temp = ::google::protobuf::internal::DuplicateIfNonNull(temp); - } - _impl_.data_.in_ = nullptr; - return temp; - } else { - return nullptr; - } -} -inline const ::io::deephaven::proto::backplane::grpc::InCondition& Condition::_internal_in() const { - return data_case() == kIn ? *_impl_.data_.in_ : reinterpret_cast<::io::deephaven::proto::backplane::grpc::InCondition&>(::io::deephaven::proto::backplane::grpc::_InCondition_default_instance_); -} -inline const ::io::deephaven::proto::backplane::grpc::InCondition& Condition::in() const ABSL_ATTRIBUTE_LIFETIME_BOUND { - // @@protoc_insertion_point(field_get:io.deephaven.proto.backplane.grpc.Condition.in) - return _internal_in(); -} -inline ::io::deephaven::proto::backplane::grpc::InCondition* Condition::unsafe_arena_release_in() { - // @@protoc_insertion_point(field_unsafe_arena_release:io.deephaven.proto.backplane.grpc.Condition.in) - if (data_case() == kIn) { - clear_has_data(); - auto* temp = _impl_.data_.in_; - _impl_.data_.in_ = nullptr; - return temp; - } else { - return nullptr; - } -} -inline void Condition::unsafe_arena_set_allocated_in(::io::deephaven::proto::backplane::grpc::InCondition* value) { - // We rely on the oneof clear method to free the earlier contents - // of this oneof. We can directly use the pointer we're given to - // set the new value. - clear_data(); - if (value) { - set_has_in(); - _impl_.data_.in_ = value; - } - // @@protoc_insertion_point(field_unsafe_arena_set_allocated:io.deephaven.proto.backplane.grpc.Condition.in) -} -inline ::io::deephaven::proto::backplane::grpc::InCondition* Condition::_internal_mutable_in() { - if (data_case() != kIn) { - clear_data(); - set_has_in(); - _impl_.data_.in_ = - ::google::protobuf::Message::DefaultConstruct<::io::deephaven::proto::backplane::grpc::InCondition>(GetArena()); - } - return _impl_.data_.in_; -} -inline ::io::deephaven::proto::backplane::grpc::InCondition* Condition::mutable_in() ABSL_ATTRIBUTE_LIFETIME_BOUND { - ::io::deephaven::proto::backplane::grpc::InCondition* _msg = _internal_mutable_in(); - // @@protoc_insertion_point(field_mutable:io.deephaven.proto.backplane.grpc.Condition.in) - return _msg; -} - -// .io.deephaven.proto.backplane.grpc.InvokeCondition invoke = 6; -inline bool Condition::has_invoke() const { - return data_case() == kInvoke; -} -inline bool Condition::_internal_has_invoke() const { - return data_case() == kInvoke; -} -inline void Condition::set_has_invoke() { - _impl_._oneof_case_[0] = kInvoke; -} -inline void Condition::clear_invoke() { - ::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(); - } -} -inline ::io::deephaven::proto::backplane::grpc::InvokeCondition* Condition::release_invoke() { - // @@protoc_insertion_point(field_release:io.deephaven.proto.backplane.grpc.Condition.invoke) - if (data_case() == kInvoke) { - clear_has_data(); - auto* temp = _impl_.data_.invoke_; - if (GetArena() != nullptr) { - temp = ::google::protobuf::internal::DuplicateIfNonNull(temp); - } - _impl_.data_.invoke_ = nullptr; - return temp; - } else { - return nullptr; - } -} -inline const ::io::deephaven::proto::backplane::grpc::InvokeCondition& Condition::_internal_invoke() const { - return data_case() == kInvoke ? *_impl_.data_.invoke_ : reinterpret_cast<::io::deephaven::proto::backplane::grpc::InvokeCondition&>(::io::deephaven::proto::backplane::grpc::_InvokeCondition_default_instance_); -} -inline const ::io::deephaven::proto::backplane::grpc::InvokeCondition& Condition::invoke() const ABSL_ATTRIBUTE_LIFETIME_BOUND { - // @@protoc_insertion_point(field_get:io.deephaven.proto.backplane.grpc.Condition.invoke) - return _internal_invoke(); -} -inline ::io::deephaven::proto::backplane::grpc::InvokeCondition* Condition::unsafe_arena_release_invoke() { - // @@protoc_insertion_point(field_unsafe_arena_release:io.deephaven.proto.backplane.grpc.Condition.invoke) - if (data_case() == kInvoke) { - clear_has_data(); - auto* temp = _impl_.data_.invoke_; - _impl_.data_.invoke_ = nullptr; - return temp; - } else { - return nullptr; - } -} -inline void Condition::unsafe_arena_set_allocated_invoke(::io::deephaven::proto::backplane::grpc::InvokeCondition* value) { - // We rely on the oneof clear method to free the earlier contents - // of this oneof. We can directly use the pointer we're given to - // set the new value. - clear_data(); - if (value) { - set_has_invoke(); - _impl_.data_.invoke_ = value; - } - // @@protoc_insertion_point(field_unsafe_arena_set_allocated:io.deephaven.proto.backplane.grpc.Condition.invoke) -} -inline ::io::deephaven::proto::backplane::grpc::InvokeCondition* Condition::_internal_mutable_invoke() { - if (data_case() != kInvoke) { - clear_data(); - set_has_invoke(); - _impl_.data_.invoke_ = - ::google::protobuf::Message::DefaultConstruct<::io::deephaven::proto::backplane::grpc::InvokeCondition>(GetArena()); - } - return _impl_.data_.invoke_; -} -inline ::io::deephaven::proto::backplane::grpc::InvokeCondition* Condition::mutable_invoke() ABSL_ATTRIBUTE_LIFETIME_BOUND { - ::io::deephaven::proto::backplane::grpc::InvokeCondition* _msg = _internal_mutable_invoke(); - // @@protoc_insertion_point(field_mutable:io.deephaven.proto.backplane.grpc.Condition.invoke) - return _msg; -} - -// .io.deephaven.proto.backplane.grpc.IsNullCondition is_null = 7; -inline bool Condition::has_is_null() const { - return data_case() == kIsNull; -} -inline bool Condition::_internal_has_is_null() const { - return data_case() == kIsNull; -} -inline void Condition::set_has_is_null() { - _impl_._oneof_case_[0] = kIsNull; -} -inline void Condition::clear_is_null() { - ::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(); - } -} -inline ::io::deephaven::proto::backplane::grpc::IsNullCondition* Condition::release_is_null() { - // @@protoc_insertion_point(field_release:io.deephaven.proto.backplane.grpc.Condition.is_null) - if (data_case() == kIsNull) { - clear_has_data(); - auto* temp = _impl_.data_.is_null_; - if (GetArena() != nullptr) { - temp = ::google::protobuf::internal::DuplicateIfNonNull(temp); - } - _impl_.data_.is_null_ = nullptr; - return temp; - } else { - return nullptr; - } -} -inline const ::io::deephaven::proto::backplane::grpc::IsNullCondition& Condition::_internal_is_null() const { - return data_case() == kIsNull ? *_impl_.data_.is_null_ : reinterpret_cast<::io::deephaven::proto::backplane::grpc::IsNullCondition&>(::io::deephaven::proto::backplane::grpc::_IsNullCondition_default_instance_); -} -inline const ::io::deephaven::proto::backplane::grpc::IsNullCondition& Condition::is_null() const ABSL_ATTRIBUTE_LIFETIME_BOUND { - // @@protoc_insertion_point(field_get:io.deephaven.proto.backplane.grpc.Condition.is_null) - return _internal_is_null(); -} -inline ::io::deephaven::proto::backplane::grpc::IsNullCondition* Condition::unsafe_arena_release_is_null() { - // @@protoc_insertion_point(field_unsafe_arena_release:io.deephaven.proto.backplane.grpc.Condition.is_null) - if (data_case() == kIsNull) { - clear_has_data(); - auto* temp = _impl_.data_.is_null_; - _impl_.data_.is_null_ = nullptr; - return temp; - } else { - return nullptr; - } -} -inline void Condition::unsafe_arena_set_allocated_is_null(::io::deephaven::proto::backplane::grpc::IsNullCondition* value) { - // We rely on the oneof clear method to free the earlier contents - // of this oneof. We can directly use the pointer we're given to - // set the new value. - clear_data(); - if (value) { - set_has_is_null(); - _impl_.data_.is_null_ = value; - } - // @@protoc_insertion_point(field_unsafe_arena_set_allocated:io.deephaven.proto.backplane.grpc.Condition.is_null) -} -inline ::io::deephaven::proto::backplane::grpc::IsNullCondition* Condition::_internal_mutable_is_null() { - if (data_case() != kIsNull) { - clear_data(); - set_has_is_null(); - _impl_.data_.is_null_ = - ::google::protobuf::Message::DefaultConstruct<::io::deephaven::proto::backplane::grpc::IsNullCondition>(GetArena()); - } - return _impl_.data_.is_null_; -} -inline ::io::deephaven::proto::backplane::grpc::IsNullCondition* Condition::mutable_is_null() ABSL_ATTRIBUTE_LIFETIME_BOUND { - ::io::deephaven::proto::backplane::grpc::IsNullCondition* _msg = _internal_mutable_is_null(); - // @@protoc_insertion_point(field_mutable:io.deephaven.proto.backplane.grpc.Condition.is_null) - return _msg; -} - -// .io.deephaven.proto.backplane.grpc.MatchesCondition matches = 8; -inline bool Condition::has_matches() const { - return data_case() == kMatches; -} -inline bool Condition::_internal_has_matches() const { - return data_case() == kMatches; -} -inline void Condition::set_has_matches() { - _impl_._oneof_case_[0] = kMatches; -} -inline void Condition::clear_matches() { - ::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(); - } -} -inline ::io::deephaven::proto::backplane::grpc::MatchesCondition* Condition::release_matches() { - // @@protoc_insertion_point(field_release:io.deephaven.proto.backplane.grpc.Condition.matches) - if (data_case() == kMatches) { - clear_has_data(); - auto* temp = _impl_.data_.matches_; - if (GetArena() != nullptr) { - temp = ::google::protobuf::internal::DuplicateIfNonNull(temp); - } - _impl_.data_.matches_ = nullptr; - return temp; - } else { - return nullptr; - } -} -inline const ::io::deephaven::proto::backplane::grpc::MatchesCondition& Condition::_internal_matches() const { - return data_case() == kMatches ? *_impl_.data_.matches_ : reinterpret_cast<::io::deephaven::proto::backplane::grpc::MatchesCondition&>(::io::deephaven::proto::backplane::grpc::_MatchesCondition_default_instance_); -} -inline const ::io::deephaven::proto::backplane::grpc::MatchesCondition& Condition::matches() const ABSL_ATTRIBUTE_LIFETIME_BOUND { - // @@protoc_insertion_point(field_get:io.deephaven.proto.backplane.grpc.Condition.matches) - return _internal_matches(); -} -inline ::io::deephaven::proto::backplane::grpc::MatchesCondition* Condition::unsafe_arena_release_matches() { - // @@protoc_insertion_point(field_unsafe_arena_release:io.deephaven.proto.backplane.grpc.Condition.matches) - if (data_case() == kMatches) { - clear_has_data(); - auto* temp = _impl_.data_.matches_; - _impl_.data_.matches_ = nullptr; - return temp; - } else { - return nullptr; - } -} -inline void Condition::unsafe_arena_set_allocated_matches(::io::deephaven::proto::backplane::grpc::MatchesCondition* value) { - // We rely on the oneof clear method to free the earlier contents - // of this oneof. We can directly use the pointer we're given to - // set the new value. - clear_data(); - if (value) { - set_has_matches(); - _impl_.data_.matches_ = value; - } - // @@protoc_insertion_point(field_unsafe_arena_set_allocated:io.deephaven.proto.backplane.grpc.Condition.matches) -} -inline ::io::deephaven::proto::backplane::grpc::MatchesCondition* Condition::_internal_mutable_matches() { - if (data_case() != kMatches) { - clear_data(); - set_has_matches(); - _impl_.data_.matches_ = - ::google::protobuf::Message::DefaultConstruct<::io::deephaven::proto::backplane::grpc::MatchesCondition>(GetArena()); - } - return _impl_.data_.matches_; -} -inline ::io::deephaven::proto::backplane::grpc::MatchesCondition* Condition::mutable_matches() ABSL_ATTRIBUTE_LIFETIME_BOUND { - ::io::deephaven::proto::backplane::grpc::MatchesCondition* _msg = _internal_mutable_matches(); - // @@protoc_insertion_point(field_mutable:io.deephaven.proto.backplane.grpc.Condition.matches) - return _msg; -} - -// .io.deephaven.proto.backplane.grpc.ContainsCondition contains = 9; -inline bool Condition::has_contains() const { - return data_case() == kContains; -} -inline bool Condition::_internal_has_contains() const { - return data_case() == kContains; -} -inline void Condition::set_has_contains() { - _impl_._oneof_case_[0] = kContains; -} -inline void Condition::clear_contains() { - ::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(); - } -} -inline ::io::deephaven::proto::backplane::grpc::ContainsCondition* Condition::release_contains() { - // @@protoc_insertion_point(field_release:io.deephaven.proto.backplane.grpc.Condition.contains) - if (data_case() == kContains) { - clear_has_data(); - auto* temp = _impl_.data_.contains_; - if (GetArena() != nullptr) { - temp = ::google::protobuf::internal::DuplicateIfNonNull(temp); - } - _impl_.data_.contains_ = nullptr; - return temp; - } else { - return nullptr; - } -} -inline const ::io::deephaven::proto::backplane::grpc::ContainsCondition& Condition::_internal_contains() const { - return data_case() == kContains ? *_impl_.data_.contains_ : reinterpret_cast<::io::deephaven::proto::backplane::grpc::ContainsCondition&>(::io::deephaven::proto::backplane::grpc::_ContainsCondition_default_instance_); -} -inline const ::io::deephaven::proto::backplane::grpc::ContainsCondition& Condition::contains() const ABSL_ATTRIBUTE_LIFETIME_BOUND { - // @@protoc_insertion_point(field_get:io.deephaven.proto.backplane.grpc.Condition.contains) - return _internal_contains(); -} -inline ::io::deephaven::proto::backplane::grpc::ContainsCondition* Condition::unsafe_arena_release_contains() { - // @@protoc_insertion_point(field_unsafe_arena_release:io.deephaven.proto.backplane.grpc.Condition.contains) - if (data_case() == kContains) { - clear_has_data(); - auto* temp = _impl_.data_.contains_; - _impl_.data_.contains_ = nullptr; - return temp; - } else { - return nullptr; - } -} -inline void Condition::unsafe_arena_set_allocated_contains(::io::deephaven::proto::backplane::grpc::ContainsCondition* value) { - // We rely on the oneof clear method to free the earlier contents - // of this oneof. We can directly use the pointer we're given to - // set the new value. - clear_data(); - if (value) { - set_has_contains(); - _impl_.data_.contains_ = value; - } - // @@protoc_insertion_point(field_unsafe_arena_set_allocated:io.deephaven.proto.backplane.grpc.Condition.contains) -} -inline ::io::deephaven::proto::backplane::grpc::ContainsCondition* Condition::_internal_mutable_contains() { - if (data_case() != kContains) { - clear_data(); - set_has_contains(); - _impl_.data_.contains_ = - ::google::protobuf::Message::DefaultConstruct<::io::deephaven::proto::backplane::grpc::ContainsCondition>(GetArena()); - } - return _impl_.data_.contains_; -} -inline ::io::deephaven::proto::backplane::grpc::ContainsCondition* Condition::mutable_contains() ABSL_ATTRIBUTE_LIFETIME_BOUND { - ::io::deephaven::proto::backplane::grpc::ContainsCondition* _msg = _internal_mutable_contains(); - // @@protoc_insertion_point(field_mutable:io.deephaven.proto.backplane.grpc.Condition.contains) - return _msg; -} - -// .io.deephaven.proto.backplane.grpc.SearchCondition search = 10; -inline bool Condition::has_search() const { - return data_case() == kSearch; -} -inline bool Condition::_internal_has_search() const { - return data_case() == kSearch; -} -inline void Condition::set_has_search() { - _impl_._oneof_case_[0] = kSearch; -} -inline void Condition::clear_search() { - ::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(); - } -} -inline ::io::deephaven::proto::backplane::grpc::SearchCondition* Condition::release_search() { - // @@protoc_insertion_point(field_release:io.deephaven.proto.backplane.grpc.Condition.search) - if (data_case() == kSearch) { - clear_has_data(); - auto* temp = _impl_.data_.search_; - if (GetArena() != nullptr) { - temp = ::google::protobuf::internal::DuplicateIfNonNull(temp); - } - _impl_.data_.search_ = nullptr; - return temp; - } else { - return nullptr; - } -} -inline const ::io::deephaven::proto::backplane::grpc::SearchCondition& Condition::_internal_search() const { - return data_case() == kSearch ? *_impl_.data_.search_ : reinterpret_cast<::io::deephaven::proto::backplane::grpc::SearchCondition&>(::io::deephaven::proto::backplane::grpc::_SearchCondition_default_instance_); -} -inline const ::io::deephaven::proto::backplane::grpc::SearchCondition& Condition::search() const ABSL_ATTRIBUTE_LIFETIME_BOUND { - // @@protoc_insertion_point(field_get:io.deephaven.proto.backplane.grpc.Condition.search) - return _internal_search(); -} -inline ::io::deephaven::proto::backplane::grpc::SearchCondition* Condition::unsafe_arena_release_search() { - // @@protoc_insertion_point(field_unsafe_arena_release:io.deephaven.proto.backplane.grpc.Condition.search) - if (data_case() == kSearch) { - clear_has_data(); - auto* temp = _impl_.data_.search_; - _impl_.data_.search_ = nullptr; - return temp; - } else { - return nullptr; - } -} -inline void Condition::unsafe_arena_set_allocated_search(::io::deephaven::proto::backplane::grpc::SearchCondition* value) { - // We rely on the oneof clear method to free the earlier contents - // of this oneof. We can directly use the pointer we're given to - // set the new value. - clear_data(); - if (value) { - set_has_search(); - _impl_.data_.search_ = value; - } - // @@protoc_insertion_point(field_unsafe_arena_set_allocated:io.deephaven.proto.backplane.grpc.Condition.search) -} -inline ::io::deephaven::proto::backplane::grpc::SearchCondition* Condition::_internal_mutable_search() { - if (data_case() != kSearch) { - clear_data(); - set_has_search(); - _impl_.data_.search_ = - ::google::protobuf::Message::DefaultConstruct<::io::deephaven::proto::backplane::grpc::SearchCondition>(GetArena()); - } - return _impl_.data_.search_; -} -inline ::io::deephaven::proto::backplane::grpc::SearchCondition* Condition::mutable_search() ABSL_ATTRIBUTE_LIFETIME_BOUND { - ::io::deephaven::proto::backplane::grpc::SearchCondition* _msg = _internal_mutable_search(); - // @@protoc_insertion_point(field_mutable:io.deephaven.proto.backplane.grpc.Condition.search) - return _msg; -} - -inline bool Condition::has_data() const { - return data_case() != DATA_NOT_SET; -} -inline void Condition::clear_has_data() { - _impl_._oneof_case_[0] = DATA_NOT_SET; -} -inline Condition::DataCase Condition::data_case() const { - return Condition::DataCase(_impl_._oneof_case_[0]); -} -// ------------------------------------------------------------------- - -// AndCondition - -// repeated .io.deephaven.proto.backplane.grpc.Condition filters = 1; -inline int AndCondition::_internal_filters_size() const { - return _internal_filters().size(); -} -inline int AndCondition::filters_size() const { - return _internal_filters_size(); -} -inline void AndCondition::clear_filters() { - ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.filters_.Clear(); -} -inline ::io::deephaven::proto::backplane::grpc::Condition* AndCondition::mutable_filters(int index) - ABSL_ATTRIBUTE_LIFETIME_BOUND { - // @@protoc_insertion_point(field_mutable:io.deephaven.proto.backplane.grpc.AndCondition.filters) - return _internal_mutable_filters()->Mutable(index); -} -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) - ::google::protobuf::internal::TSanWrite(&_impl_); - return _internal_mutable_filters(); -} -inline const ::io::deephaven::proto::backplane::grpc::Condition& AndCondition::filters(int index) const - ABSL_ATTRIBUTE_LIFETIME_BOUND { - // @@protoc_insertion_point(field_get:io.deephaven.proto.backplane.grpc.AndCondition.filters) - return _internal_filters().Get(index); -} -inline ::io::deephaven::proto::backplane::grpc::Condition* AndCondition::add_filters() ABSL_ATTRIBUTE_LIFETIME_BOUND { - ::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; -} -inline const ::google::protobuf::RepeatedPtrField<::io::deephaven::proto::backplane::grpc::Condition>& AndCondition::filters() const - ABSL_ATTRIBUTE_LIFETIME_BOUND { - // @@protoc_insertion_point(field_list:io.deephaven.proto.backplane.grpc.AndCondition.filters) - return _internal_filters(); -} -inline const ::google::protobuf::RepeatedPtrField<::io::deephaven::proto::backplane::grpc::Condition>& -AndCondition::_internal_filters() const { - ::google::protobuf::internal::TSanRead(&_impl_); - return _impl_.filters_; -} -inline ::google::protobuf::RepeatedPtrField<::io::deephaven::proto::backplane::grpc::Condition>* -AndCondition::_internal_mutable_filters() { - ::google::protobuf::internal::TSanRead(&_impl_); - return &_impl_.filters_; -} - -// ------------------------------------------------------------------- - -// OrCondition - -// repeated .io.deephaven.proto.backplane.grpc.Condition filters = 1; -inline int OrCondition::_internal_filters_size() const { - return _internal_filters().size(); -} -inline int OrCondition::filters_size() const { - return _internal_filters_size(); -} -inline void OrCondition::clear_filters() { - ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.filters_.Clear(); -} -inline ::io::deephaven::proto::backplane::grpc::Condition* OrCondition::mutable_filters(int index) - ABSL_ATTRIBUTE_LIFETIME_BOUND { - // @@protoc_insertion_point(field_mutable:io.deephaven.proto.backplane.grpc.OrCondition.filters) - return _internal_mutable_filters()->Mutable(index); -} -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) - ::google::protobuf::internal::TSanWrite(&_impl_); - return _internal_mutable_filters(); -} -inline const ::io::deephaven::proto::backplane::grpc::Condition& OrCondition::filters(int index) const - ABSL_ATTRIBUTE_LIFETIME_BOUND { - // @@protoc_insertion_point(field_get:io.deephaven.proto.backplane.grpc.OrCondition.filters) - return _internal_filters().Get(index); -} -inline ::io::deephaven::proto::backplane::grpc::Condition* OrCondition::add_filters() ABSL_ATTRIBUTE_LIFETIME_BOUND { - ::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; -} -inline const ::google::protobuf::RepeatedPtrField<::io::deephaven::proto::backplane::grpc::Condition>& OrCondition::filters() const - ABSL_ATTRIBUTE_LIFETIME_BOUND { - // @@protoc_insertion_point(field_list:io.deephaven.proto.backplane.grpc.OrCondition.filters) - return _internal_filters(); -} -inline const ::google::protobuf::RepeatedPtrField<::io::deephaven::proto::backplane::grpc::Condition>& -OrCondition::_internal_filters() const { - ::google::protobuf::internal::TSanRead(&_impl_); - return _impl_.filters_; -} -inline ::google::protobuf::RepeatedPtrField<::io::deephaven::proto::backplane::grpc::Condition>* -OrCondition::_internal_mutable_filters() { - ::google::protobuf::internal::TSanRead(&_impl_); - return &_impl_.filters_; -} - -// ------------------------------------------------------------------- - -// NotCondition - -// .io.deephaven.proto.backplane.grpc.Condition filter = 1; -inline bool NotCondition::has_filter() const { - bool value = (_impl_._has_bits_[0] & 0x00000001u) != 0; - PROTOBUF_ASSUME(!value || _impl_.filter_ != nullptr); - return value; -} -inline void NotCondition::clear_filter() { - ::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 { - ::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_); -} -inline const ::io::deephaven::proto::backplane::grpc::Condition& NotCondition::filter() const ABSL_ATTRIBUTE_LIFETIME_BOUND { - // @@protoc_insertion_point(field_get:io.deephaven.proto.backplane.grpc.NotCondition.filter) - return _internal_filter(); -} -inline void NotCondition::unsafe_arena_set_allocated_filter(::io::deephaven::proto::backplane::grpc::Condition* value) { - ::google::protobuf::internal::TSanWrite(&_impl_); - if (GetArena() == nullptr) { - delete reinterpret_cast<::google::protobuf::MessageLite*>(_impl_.filter_); - } - _impl_.filter_ = reinterpret_cast<::io::deephaven::proto::backplane::grpc::Condition*>(value); - if (value != nullptr) { - _impl_._has_bits_[0] |= 0x00000001u; - } else { - _impl_._has_bits_[0] &= ~0x00000001u; - } - // @@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() { - ::google::protobuf::internal::TSanWrite(&_impl_); - - _impl_._has_bits_[0] &= ~0x00000001u; - ::io::deephaven::proto::backplane::grpc::Condition* released = _impl_.filter_; - _impl_.filter_ = nullptr; -#ifdef PROTOBUF_FORCE_COPY_IN_RELEASE - auto* old = reinterpret_cast<::google::protobuf::MessageLite*>(released); - released = ::google::protobuf::internal::DuplicateIfNonNull(released); - if (GetArena() == nullptr) { - delete old; - } -#else // PROTOBUF_FORCE_COPY_IN_RELEASE - if (GetArena() != nullptr) { - released = ::google::protobuf::internal::DuplicateIfNonNull(released); - } -#endif // !PROTOBUF_FORCE_COPY_IN_RELEASE - return released; -} -inline ::io::deephaven::proto::backplane::grpc::Condition* NotCondition::unsafe_arena_release_filter() { - ::google::protobuf::internal::TSanWrite(&_impl_); - // @@protoc_insertion_point(field_release:io.deephaven.proto.backplane.grpc.NotCondition.filter) - - _impl_._has_bits_[0] &= ~0x00000001u; - ::io::deephaven::proto::backplane::grpc::Condition* temp = _impl_.filter_; - _impl_.filter_ = nullptr; - return temp; -} -inline ::io::deephaven::proto::backplane::grpc::Condition* NotCondition::_internal_mutable_filter() { - ::google::protobuf::internal::TSanWrite(&_impl_); - if (_impl_.filter_ == nullptr) { - 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(); - ::google::protobuf::internal::TSanWrite(&_impl_); - if (message_arena == nullptr) { - delete (_impl_.filter_); - } - - if (value != nullptr) { - ::google::protobuf::Arena* submessage_arena = (value)->GetArena(); - if (message_arena != submessage_arena) { - value = ::google::protobuf::internal::GetOwnedMessage(message_arena, value, submessage_arena); - } - _impl_._has_bits_[0] |= 0x00000001u; - } else { - _impl_._has_bits_[0] &= ~0x00000001u; - } - - _impl_.filter_ = reinterpret_cast<::io::deephaven::proto::backplane::grpc::Condition*>(value); - // @@protoc_insertion_point(field_set_allocated:io.deephaven.proto.backplane.grpc.NotCondition.filter) -} - -// ------------------------------------------------------------------- - -// CompareCondition - -// .io.deephaven.proto.backplane.grpc.CompareCondition.CompareOperation operation = 1; -inline void CompareCondition::clear_operation() { - ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.operation_ = 0; -} -inline ::io::deephaven::proto::backplane::grpc::CompareCondition_CompareOperation CompareCondition::operation() const { - // @@protoc_insertion_point(field_get:io.deephaven.proto.backplane.grpc.CompareCondition.operation) - return _internal_operation(); -} -inline void CompareCondition::set_operation(::io::deephaven::proto::backplane::grpc::CompareCondition_CompareOperation value) { - _internal_set_operation(value); - // @@protoc_insertion_point(field_set:io.deephaven.proto.backplane.grpc.CompareCondition.operation) -} -inline ::io::deephaven::proto::backplane::grpc::CompareCondition_CompareOperation CompareCondition::_internal_operation() const { - ::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) { - ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.operation_ = value; -} - -// .io.deephaven.proto.backplane.grpc.CaseSensitivity case_sensitivity = 2; -inline void CompareCondition::clear_case_sensitivity() { - ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.case_sensitivity_ = 0; -} -inline ::io::deephaven::proto::backplane::grpc::CaseSensitivity CompareCondition::case_sensitivity() const { - // @@protoc_insertion_point(field_get:io.deephaven.proto.backplane.grpc.CompareCondition.case_sensitivity) - return _internal_case_sensitivity(); -} -inline void CompareCondition::set_case_sensitivity(::io::deephaven::proto::backplane::grpc::CaseSensitivity value) { - _internal_set_case_sensitivity(value); - // @@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 { - ::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) { - ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.case_sensitivity_ = value; -} - -// .io.deephaven.proto.backplane.grpc.Value lhs = 3; -inline bool CompareCondition::has_lhs() const { - bool value = (_impl_._has_bits_[0] & 0x00000001u) != 0; - PROTOBUF_ASSUME(!value || _impl_.lhs_ != nullptr); - return value; -} -inline void CompareCondition::clear_lhs() { - ::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 { - ::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_); -} -inline const ::io::deephaven::proto::backplane::grpc::Value& CompareCondition::lhs() const ABSL_ATTRIBUTE_LIFETIME_BOUND { - // @@protoc_insertion_point(field_get:io.deephaven.proto.backplane.grpc.CompareCondition.lhs) - return _internal_lhs(); -} -inline void CompareCondition::unsafe_arena_set_allocated_lhs(::io::deephaven::proto::backplane::grpc::Value* value) { - ::google::protobuf::internal::TSanWrite(&_impl_); - if (GetArena() == nullptr) { - delete reinterpret_cast<::google::protobuf::MessageLite*>(_impl_.lhs_); - } - _impl_.lhs_ = reinterpret_cast<::io::deephaven::proto::backplane::grpc::Value*>(value); - if (value != nullptr) { - _impl_._has_bits_[0] |= 0x00000001u; - } else { - _impl_._has_bits_[0] &= ~0x00000001u; - } - // @@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() { - ::google::protobuf::internal::TSanWrite(&_impl_); - - _impl_._has_bits_[0] &= ~0x00000001u; - ::io::deephaven::proto::backplane::grpc::Value* released = _impl_.lhs_; - _impl_.lhs_ = nullptr; -#ifdef PROTOBUF_FORCE_COPY_IN_RELEASE - auto* old = reinterpret_cast<::google::protobuf::MessageLite*>(released); - released = ::google::protobuf::internal::DuplicateIfNonNull(released); - if (GetArena() == nullptr) { - delete old; - } -#else // PROTOBUF_FORCE_COPY_IN_RELEASE - if (GetArena() != nullptr) { - released = ::google::protobuf::internal::DuplicateIfNonNull(released); - } -#endif // !PROTOBUF_FORCE_COPY_IN_RELEASE - return released; -} -inline ::io::deephaven::proto::backplane::grpc::Value* CompareCondition::unsafe_arena_release_lhs() { - ::google::protobuf::internal::TSanWrite(&_impl_); - // @@protoc_insertion_point(field_release:io.deephaven.proto.backplane.grpc.CompareCondition.lhs) - - _impl_._has_bits_[0] &= ~0x00000001u; - ::io::deephaven::proto::backplane::grpc::Value* temp = _impl_.lhs_; - _impl_.lhs_ = nullptr; - return temp; -} -inline ::io::deephaven::proto::backplane::grpc::Value* CompareCondition::_internal_mutable_lhs() { - ::google::protobuf::internal::TSanWrite(&_impl_); - if (_impl_.lhs_ == nullptr) { - 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(); - ::google::protobuf::internal::TSanWrite(&_impl_); - if (message_arena == nullptr) { - delete (_impl_.lhs_); - } - - if (value != nullptr) { - ::google::protobuf::Arena* submessage_arena = (value)->GetArena(); - if (message_arena != submessage_arena) { - value = ::google::protobuf::internal::GetOwnedMessage(message_arena, value, submessage_arena); - } - _impl_._has_bits_[0] |= 0x00000001u; - } else { - _impl_._has_bits_[0] &= ~0x00000001u; - } - - _impl_.lhs_ = reinterpret_cast<::io::deephaven::proto::backplane::grpc::Value*>(value); - // @@protoc_insertion_point(field_set_allocated:io.deephaven.proto.backplane.grpc.CompareCondition.lhs) -} - -// .io.deephaven.proto.backplane.grpc.Value rhs = 4; -inline bool CompareCondition::has_rhs() const { - bool value = (_impl_._has_bits_[0] & 0x00000002u) != 0; - PROTOBUF_ASSUME(!value || _impl_.rhs_ != nullptr); - return value; -} -inline void CompareCondition::clear_rhs() { - ::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 { - ::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_); -} -inline const ::io::deephaven::proto::backplane::grpc::Value& CompareCondition::rhs() const ABSL_ATTRIBUTE_LIFETIME_BOUND { - // @@protoc_insertion_point(field_get:io.deephaven.proto.backplane.grpc.CompareCondition.rhs) - return _internal_rhs(); -} -inline void CompareCondition::unsafe_arena_set_allocated_rhs(::io::deephaven::proto::backplane::grpc::Value* value) { - ::google::protobuf::internal::TSanWrite(&_impl_); - if (GetArena() == nullptr) { - delete reinterpret_cast<::google::protobuf::MessageLite*>(_impl_.rhs_); - } - _impl_.rhs_ = reinterpret_cast<::io::deephaven::proto::backplane::grpc::Value*>(value); - if (value != nullptr) { - _impl_._has_bits_[0] |= 0x00000002u; - } else { - _impl_._has_bits_[0] &= ~0x00000002u; - } - // @@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() { - ::google::protobuf::internal::TSanWrite(&_impl_); - - _impl_._has_bits_[0] &= ~0x00000002u; - ::io::deephaven::proto::backplane::grpc::Value* released = _impl_.rhs_; - _impl_.rhs_ = nullptr; -#ifdef PROTOBUF_FORCE_COPY_IN_RELEASE - auto* old = reinterpret_cast<::google::protobuf::MessageLite*>(released); - released = ::google::protobuf::internal::DuplicateIfNonNull(released); - if (GetArena() == nullptr) { - delete old; - } -#else // PROTOBUF_FORCE_COPY_IN_RELEASE - if (GetArena() != nullptr) { - released = ::google::protobuf::internal::DuplicateIfNonNull(released); - } -#endif // !PROTOBUF_FORCE_COPY_IN_RELEASE - return released; -} -inline ::io::deephaven::proto::backplane::grpc::Value* CompareCondition::unsafe_arena_release_rhs() { - ::google::protobuf::internal::TSanWrite(&_impl_); - // @@protoc_insertion_point(field_release:io.deephaven.proto.backplane.grpc.CompareCondition.rhs) - - _impl_._has_bits_[0] &= ~0x00000002u; - ::io::deephaven::proto::backplane::grpc::Value* temp = _impl_.rhs_; - _impl_.rhs_ = nullptr; - return temp; -} -inline ::io::deephaven::proto::backplane::grpc::Value* CompareCondition::_internal_mutable_rhs() { - ::google::protobuf::internal::TSanWrite(&_impl_); - if (_impl_.rhs_ == nullptr) { - 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(); - ::google::protobuf::internal::TSanWrite(&_impl_); - if (message_arena == nullptr) { - delete (_impl_.rhs_); - } - - if (value != nullptr) { - ::google::protobuf::Arena* submessage_arena = (value)->GetArena(); - if (message_arena != submessage_arena) { - value = ::google::protobuf::internal::GetOwnedMessage(message_arena, value, submessage_arena); - } - _impl_._has_bits_[0] |= 0x00000002u; - } else { - _impl_._has_bits_[0] &= ~0x00000002u; - } - - _impl_.rhs_ = reinterpret_cast<::io::deephaven::proto::backplane::grpc::Value*>(value); - // @@protoc_insertion_point(field_set_allocated:io.deephaven.proto.backplane.grpc.CompareCondition.rhs) -} - -// ------------------------------------------------------------------- - -// InCondition - -// .io.deephaven.proto.backplane.grpc.Value target = 1; -inline bool InCondition::has_target() const { - bool value = (_impl_._has_bits_[0] & 0x00000001u) != 0; - PROTOBUF_ASSUME(!value || _impl_.target_ != nullptr); - return value; -} -inline void InCondition::clear_target() { - ::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 { - ::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_); -} -inline const ::io::deephaven::proto::backplane::grpc::Value& InCondition::target() const ABSL_ATTRIBUTE_LIFETIME_BOUND { - // @@protoc_insertion_point(field_get:io.deephaven.proto.backplane.grpc.InCondition.target) - return _internal_target(); -} -inline void InCondition::unsafe_arena_set_allocated_target(::io::deephaven::proto::backplane::grpc::Value* value) { - ::google::protobuf::internal::TSanWrite(&_impl_); - if (GetArena() == nullptr) { - delete reinterpret_cast<::google::protobuf::MessageLite*>(_impl_.target_); - } - _impl_.target_ = reinterpret_cast<::io::deephaven::proto::backplane::grpc::Value*>(value); - if (value != nullptr) { - _impl_._has_bits_[0] |= 0x00000001u; - } else { - _impl_._has_bits_[0] &= ~0x00000001u; - } - // @@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() { - ::google::protobuf::internal::TSanWrite(&_impl_); - - _impl_._has_bits_[0] &= ~0x00000001u; - ::io::deephaven::proto::backplane::grpc::Value* released = _impl_.target_; - _impl_.target_ = nullptr; -#ifdef PROTOBUF_FORCE_COPY_IN_RELEASE - auto* old = reinterpret_cast<::google::protobuf::MessageLite*>(released); - released = ::google::protobuf::internal::DuplicateIfNonNull(released); - if (GetArena() == nullptr) { - delete old; - } -#else // PROTOBUF_FORCE_COPY_IN_RELEASE - if (GetArena() != nullptr) { - released = ::google::protobuf::internal::DuplicateIfNonNull(released); - } -#endif // !PROTOBUF_FORCE_COPY_IN_RELEASE - return released; -} -inline ::io::deephaven::proto::backplane::grpc::Value* InCondition::unsafe_arena_release_target() { - ::google::protobuf::internal::TSanWrite(&_impl_); - // @@protoc_insertion_point(field_release:io.deephaven.proto.backplane.grpc.InCondition.target) - - _impl_._has_bits_[0] &= ~0x00000001u; - ::io::deephaven::proto::backplane::grpc::Value* temp = _impl_.target_; - _impl_.target_ = nullptr; - return temp; -} -inline ::io::deephaven::proto::backplane::grpc::Value* InCondition::_internal_mutable_target() { - ::google::protobuf::internal::TSanWrite(&_impl_); - if (_impl_.target_ == nullptr) { - 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(); - ::google::protobuf::internal::TSanWrite(&_impl_); - if (message_arena == nullptr) { - delete (_impl_.target_); - } - - if (value != nullptr) { - ::google::protobuf::Arena* submessage_arena = (value)->GetArena(); - if (message_arena != submessage_arena) { - value = ::google::protobuf::internal::GetOwnedMessage(message_arena, value, submessage_arena); - } - _impl_._has_bits_[0] |= 0x00000001u; - } else { - _impl_._has_bits_[0] &= ~0x00000001u; - } - - _impl_.target_ = reinterpret_cast<::io::deephaven::proto::backplane::grpc::Value*>(value); - // @@protoc_insertion_point(field_set_allocated:io.deephaven.proto.backplane.grpc.InCondition.target) -} - -// repeated .io.deephaven.proto.backplane.grpc.Value candidates = 2; -inline int InCondition::_internal_candidates_size() const { - return _internal_candidates().size(); -} -inline int InCondition::candidates_size() const { - return _internal_candidates_size(); -} -inline void InCondition::clear_candidates() { - ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.candidates_.Clear(); -} -inline ::io::deephaven::proto::backplane::grpc::Value* InCondition::mutable_candidates(int index) - ABSL_ATTRIBUTE_LIFETIME_BOUND { - // @@protoc_insertion_point(field_mutable:io.deephaven.proto.backplane.grpc.InCondition.candidates) - return _internal_mutable_candidates()->Mutable(index); -} -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) - ::google::protobuf::internal::TSanWrite(&_impl_); - return _internal_mutable_candidates(); -} -inline const ::io::deephaven::proto::backplane::grpc::Value& InCondition::candidates(int index) const - ABSL_ATTRIBUTE_LIFETIME_BOUND { - // @@protoc_insertion_point(field_get:io.deephaven.proto.backplane.grpc.InCondition.candidates) - return _internal_candidates().Get(index); -} -inline ::io::deephaven::proto::backplane::grpc::Value* InCondition::add_candidates() ABSL_ATTRIBUTE_LIFETIME_BOUND { - ::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; -} -inline const ::google::protobuf::RepeatedPtrField<::io::deephaven::proto::backplane::grpc::Value>& InCondition::candidates() const - ABSL_ATTRIBUTE_LIFETIME_BOUND { - // @@protoc_insertion_point(field_list:io.deephaven.proto.backplane.grpc.InCondition.candidates) - return _internal_candidates(); -} -inline const ::google::protobuf::RepeatedPtrField<::io::deephaven::proto::backplane::grpc::Value>& -InCondition::_internal_candidates() const { - ::google::protobuf::internal::TSanRead(&_impl_); - return _impl_.candidates_; -} -inline ::google::protobuf::RepeatedPtrField<::io::deephaven::proto::backplane::grpc::Value>* -InCondition::_internal_mutable_candidates() { - ::google::protobuf::internal::TSanRead(&_impl_); - return &_impl_.candidates_; -} - -// .io.deephaven.proto.backplane.grpc.CaseSensitivity case_sensitivity = 3; -inline void InCondition::clear_case_sensitivity() { - ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.case_sensitivity_ = 0; -} -inline ::io::deephaven::proto::backplane::grpc::CaseSensitivity InCondition::case_sensitivity() const { - // @@protoc_insertion_point(field_get:io.deephaven.proto.backplane.grpc.InCondition.case_sensitivity) - return _internal_case_sensitivity(); -} -inline void InCondition::set_case_sensitivity(::io::deephaven::proto::backplane::grpc::CaseSensitivity value) { - _internal_set_case_sensitivity(value); - // @@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 { - ::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) { - ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.case_sensitivity_ = value; -} - -// .io.deephaven.proto.backplane.grpc.MatchType match_type = 4; -inline void InCondition::clear_match_type() { - ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.match_type_ = 0; -} -inline ::io::deephaven::proto::backplane::grpc::MatchType InCondition::match_type() const { - // @@protoc_insertion_point(field_get:io.deephaven.proto.backplane.grpc.InCondition.match_type) - return _internal_match_type(); -} -inline void InCondition::set_match_type(::io::deephaven::proto::backplane::grpc::MatchType value) { - _internal_set_match_type(value); - // @@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 { - ::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) { - ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.match_type_ = value; -} - -// ------------------------------------------------------------------- - -// InvokeCondition - -// string method = 1; -inline void InvokeCondition::clear_method() { - ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.method_.ClearToEmpty(); -} -inline const std::string& InvokeCondition::method() const - ABSL_ATTRIBUTE_LIFETIME_BOUND { - // @@protoc_insertion_point(field_get:io.deephaven.proto.backplane.grpc.InvokeCondition.method) - return _internal_method(); -} -template -inline PROTOBUF_ALWAYS_INLINE void InvokeCondition::set_method(Arg_&& arg, - Args_... args) { - ::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) -} -inline std::string* InvokeCondition::mutable_method() ABSL_ATTRIBUTE_LIFETIME_BOUND { - std::string* _s = _internal_mutable_method(); - // @@protoc_insertion_point(field_mutable:io.deephaven.proto.backplane.grpc.InvokeCondition.method) - return _s; -} -inline const std::string& InvokeCondition::_internal_method() const { - ::google::protobuf::internal::TSanRead(&_impl_); - return _impl_.method_.Get(); -} -inline void InvokeCondition::_internal_set_method(const std::string& value) { - ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.method_.Set(value, GetArena()); -} -inline std::string* InvokeCondition::_internal_mutable_method() { - ::google::protobuf::internal::TSanWrite(&_impl_); - return _impl_.method_.Mutable( GetArena()); -} -inline std::string* InvokeCondition::release_method() { - ::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) { - ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.method_.SetAllocated(value, GetArena()); - #ifdef PROTOBUF_FORCE_COPY_DEFAULT_STRING - if (_impl_.method_.IsDefault()) { - _impl_.method_.Set("", GetArena()); - } - #endif // PROTOBUF_FORCE_COPY_DEFAULT_STRING - // @@protoc_insertion_point(field_set_allocated:io.deephaven.proto.backplane.grpc.InvokeCondition.method) -} - -// .io.deephaven.proto.backplane.grpc.Value target = 2; -inline bool InvokeCondition::has_target() const { - bool value = (_impl_._has_bits_[0] & 0x00000001u) != 0; - PROTOBUF_ASSUME(!value || _impl_.target_ != nullptr); - return value; -} -inline void InvokeCondition::clear_target() { - ::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 { - ::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_); -} -inline const ::io::deephaven::proto::backplane::grpc::Value& InvokeCondition::target() const ABSL_ATTRIBUTE_LIFETIME_BOUND { - // @@protoc_insertion_point(field_get:io.deephaven.proto.backplane.grpc.InvokeCondition.target) - return _internal_target(); -} -inline void InvokeCondition::unsafe_arena_set_allocated_target(::io::deephaven::proto::backplane::grpc::Value* value) { - ::google::protobuf::internal::TSanWrite(&_impl_); - if (GetArena() == nullptr) { - delete reinterpret_cast<::google::protobuf::MessageLite*>(_impl_.target_); - } - _impl_.target_ = reinterpret_cast<::io::deephaven::proto::backplane::grpc::Value*>(value); - if (value != nullptr) { - _impl_._has_bits_[0] |= 0x00000001u; - } else { - _impl_._has_bits_[0] &= ~0x00000001u; - } - // @@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() { - ::google::protobuf::internal::TSanWrite(&_impl_); - - _impl_._has_bits_[0] &= ~0x00000001u; - ::io::deephaven::proto::backplane::grpc::Value* released = _impl_.target_; - _impl_.target_ = nullptr; -#ifdef PROTOBUF_FORCE_COPY_IN_RELEASE - auto* old = reinterpret_cast<::google::protobuf::MessageLite*>(released); - released = ::google::protobuf::internal::DuplicateIfNonNull(released); - if (GetArena() == nullptr) { - delete old; - } -#else // PROTOBUF_FORCE_COPY_IN_RELEASE - if (GetArena() != nullptr) { - released = ::google::protobuf::internal::DuplicateIfNonNull(released); - } -#endif // !PROTOBUF_FORCE_COPY_IN_RELEASE - return released; -} -inline ::io::deephaven::proto::backplane::grpc::Value* InvokeCondition::unsafe_arena_release_target() { - ::google::protobuf::internal::TSanWrite(&_impl_); - // @@protoc_insertion_point(field_release:io.deephaven.proto.backplane.grpc.InvokeCondition.target) - - _impl_._has_bits_[0] &= ~0x00000001u; - ::io::deephaven::proto::backplane::grpc::Value* temp = _impl_.target_; - _impl_.target_ = nullptr; - return temp; -} -inline ::io::deephaven::proto::backplane::grpc::Value* InvokeCondition::_internal_mutable_target() { - ::google::protobuf::internal::TSanWrite(&_impl_); - if (_impl_.target_ == nullptr) { - 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(); - ::google::protobuf::internal::TSanWrite(&_impl_); - if (message_arena == nullptr) { - delete (_impl_.target_); - } - - if (value != nullptr) { - ::google::protobuf::Arena* submessage_arena = (value)->GetArena(); - if (message_arena != submessage_arena) { - value = ::google::protobuf::internal::GetOwnedMessage(message_arena, value, submessage_arena); - } - _impl_._has_bits_[0] |= 0x00000001u; - } else { - _impl_._has_bits_[0] &= ~0x00000001u; - } - - _impl_.target_ = reinterpret_cast<::io::deephaven::proto::backplane::grpc::Value*>(value); - // @@protoc_insertion_point(field_set_allocated:io.deephaven.proto.backplane.grpc.InvokeCondition.target) -} - -// repeated .io.deephaven.proto.backplane.grpc.Value arguments = 3; -inline int InvokeCondition::_internal_arguments_size() const { - return _internal_arguments().size(); -} -inline int InvokeCondition::arguments_size() const { - return _internal_arguments_size(); -} -inline void InvokeCondition::clear_arguments() { - ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.arguments_.Clear(); -} -inline ::io::deephaven::proto::backplane::grpc::Value* InvokeCondition::mutable_arguments(int index) - ABSL_ATTRIBUTE_LIFETIME_BOUND { - // @@protoc_insertion_point(field_mutable:io.deephaven.proto.backplane.grpc.InvokeCondition.arguments) - return _internal_mutable_arguments()->Mutable(index); -} -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) - ::google::protobuf::internal::TSanWrite(&_impl_); - return _internal_mutable_arguments(); -} -inline const ::io::deephaven::proto::backplane::grpc::Value& InvokeCondition::arguments(int index) const - ABSL_ATTRIBUTE_LIFETIME_BOUND { - // @@protoc_insertion_point(field_get:io.deephaven.proto.backplane.grpc.InvokeCondition.arguments) - return _internal_arguments().Get(index); -} -inline ::io::deephaven::proto::backplane::grpc::Value* InvokeCondition::add_arguments() ABSL_ATTRIBUTE_LIFETIME_BOUND { - ::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; -} -inline const ::google::protobuf::RepeatedPtrField<::io::deephaven::proto::backplane::grpc::Value>& InvokeCondition::arguments() const - ABSL_ATTRIBUTE_LIFETIME_BOUND { - // @@protoc_insertion_point(field_list:io.deephaven.proto.backplane.grpc.InvokeCondition.arguments) - return _internal_arguments(); -} -inline const ::google::protobuf::RepeatedPtrField<::io::deephaven::proto::backplane::grpc::Value>& -InvokeCondition::_internal_arguments() const { - ::google::protobuf::internal::TSanRead(&_impl_); - return _impl_.arguments_; -} -inline ::google::protobuf::RepeatedPtrField<::io::deephaven::proto::backplane::grpc::Value>* -InvokeCondition::_internal_mutable_arguments() { - ::google::protobuf::internal::TSanRead(&_impl_); - return &_impl_.arguments_; -} - -// ------------------------------------------------------------------- - -// IsNullCondition - -// .io.deephaven.proto.backplane.grpc.Reference reference = 1; -inline bool IsNullCondition::has_reference() const { - bool value = (_impl_._has_bits_[0] & 0x00000001u) != 0; - PROTOBUF_ASSUME(!value || _impl_.reference_ != nullptr); - return value; -} -inline void IsNullCondition::clear_reference() { - ::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 { - ::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_); -} -inline const ::io::deephaven::proto::backplane::grpc::Reference& IsNullCondition::reference() const ABSL_ATTRIBUTE_LIFETIME_BOUND { - // @@protoc_insertion_point(field_get:io.deephaven.proto.backplane.grpc.IsNullCondition.reference) - return _internal_reference(); -} -inline void IsNullCondition::unsafe_arena_set_allocated_reference(::io::deephaven::proto::backplane::grpc::Reference* value) { - ::google::protobuf::internal::TSanWrite(&_impl_); - if (GetArena() == nullptr) { - delete reinterpret_cast<::google::protobuf::MessageLite*>(_impl_.reference_); - } - _impl_.reference_ = reinterpret_cast<::io::deephaven::proto::backplane::grpc::Reference*>(value); - if (value != nullptr) { - _impl_._has_bits_[0] |= 0x00000001u; - } else { - _impl_._has_bits_[0] &= ~0x00000001u; - } - // @@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() { - ::google::protobuf::internal::TSanWrite(&_impl_); - - _impl_._has_bits_[0] &= ~0x00000001u; - ::io::deephaven::proto::backplane::grpc::Reference* released = _impl_.reference_; - _impl_.reference_ = nullptr; -#ifdef PROTOBUF_FORCE_COPY_IN_RELEASE - auto* old = reinterpret_cast<::google::protobuf::MessageLite*>(released); - released = ::google::protobuf::internal::DuplicateIfNonNull(released); - if (GetArena() == nullptr) { - delete old; - } -#else // PROTOBUF_FORCE_COPY_IN_RELEASE - if (GetArena() != nullptr) { - released = ::google::protobuf::internal::DuplicateIfNonNull(released); - } -#endif // !PROTOBUF_FORCE_COPY_IN_RELEASE - return released; -} -inline ::io::deephaven::proto::backplane::grpc::Reference* IsNullCondition::unsafe_arena_release_reference() { - ::google::protobuf::internal::TSanWrite(&_impl_); - // @@protoc_insertion_point(field_release:io.deephaven.proto.backplane.grpc.IsNullCondition.reference) - - _impl_._has_bits_[0] &= ~0x00000001u; - ::io::deephaven::proto::backplane::grpc::Reference* temp = _impl_.reference_; - _impl_.reference_ = nullptr; - return temp; -} -inline ::io::deephaven::proto::backplane::grpc::Reference* IsNullCondition::_internal_mutable_reference() { - ::google::protobuf::internal::TSanWrite(&_impl_); - if (_impl_.reference_ == nullptr) { - 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(); - ::google::protobuf::internal::TSanWrite(&_impl_); - if (message_arena == nullptr) { - delete (_impl_.reference_); - } - - if (value != nullptr) { - ::google::protobuf::Arena* submessage_arena = (value)->GetArena(); - if (message_arena != submessage_arena) { - value = ::google::protobuf::internal::GetOwnedMessage(message_arena, value, submessage_arena); - } - _impl_._has_bits_[0] |= 0x00000001u; - } else { - _impl_._has_bits_[0] &= ~0x00000001u; - } - - _impl_.reference_ = reinterpret_cast<::io::deephaven::proto::backplane::grpc::Reference*>(value); - // @@protoc_insertion_point(field_set_allocated:io.deephaven.proto.backplane.grpc.IsNullCondition.reference) -} - -// ------------------------------------------------------------------- - -// MatchesCondition - -// .io.deephaven.proto.backplane.grpc.Reference reference = 1; -inline bool MatchesCondition::has_reference() const { - bool value = (_impl_._has_bits_[0] & 0x00000001u) != 0; - PROTOBUF_ASSUME(!value || _impl_.reference_ != nullptr); - return value; -} -inline void MatchesCondition::clear_reference() { - ::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 { - ::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_); -} -inline const ::io::deephaven::proto::backplane::grpc::Reference& MatchesCondition::reference() const ABSL_ATTRIBUTE_LIFETIME_BOUND { - // @@protoc_insertion_point(field_get:io.deephaven.proto.backplane.grpc.MatchesCondition.reference) - return _internal_reference(); -} -inline void MatchesCondition::unsafe_arena_set_allocated_reference(::io::deephaven::proto::backplane::grpc::Reference* value) { - ::google::protobuf::internal::TSanWrite(&_impl_); - if (GetArena() == nullptr) { - delete reinterpret_cast<::google::protobuf::MessageLite*>(_impl_.reference_); - } - _impl_.reference_ = reinterpret_cast<::io::deephaven::proto::backplane::grpc::Reference*>(value); - if (value != nullptr) { - _impl_._has_bits_[0] |= 0x00000001u; - } else { - _impl_._has_bits_[0] &= ~0x00000001u; - } - // @@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() { - ::google::protobuf::internal::TSanWrite(&_impl_); - - _impl_._has_bits_[0] &= ~0x00000001u; - ::io::deephaven::proto::backplane::grpc::Reference* released = _impl_.reference_; - _impl_.reference_ = nullptr; -#ifdef PROTOBUF_FORCE_COPY_IN_RELEASE - auto* old = reinterpret_cast<::google::protobuf::MessageLite*>(released); - released = ::google::protobuf::internal::DuplicateIfNonNull(released); - if (GetArena() == nullptr) { - delete old; - } -#else // PROTOBUF_FORCE_COPY_IN_RELEASE - if (GetArena() != nullptr) { - released = ::google::protobuf::internal::DuplicateIfNonNull(released); - } -#endif // !PROTOBUF_FORCE_COPY_IN_RELEASE - return released; -} -inline ::io::deephaven::proto::backplane::grpc::Reference* MatchesCondition::unsafe_arena_release_reference() { - ::google::protobuf::internal::TSanWrite(&_impl_); - // @@protoc_insertion_point(field_release:io.deephaven.proto.backplane.grpc.MatchesCondition.reference) - - _impl_._has_bits_[0] &= ~0x00000001u; - ::io::deephaven::proto::backplane::grpc::Reference* temp = _impl_.reference_; - _impl_.reference_ = nullptr; - return temp; -} -inline ::io::deephaven::proto::backplane::grpc::Reference* MatchesCondition::_internal_mutable_reference() { - ::google::protobuf::internal::TSanWrite(&_impl_); - if (_impl_.reference_ == nullptr) { - 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(); - ::google::protobuf::internal::TSanWrite(&_impl_); - if (message_arena == nullptr) { - delete (_impl_.reference_); - } - - if (value != nullptr) { - ::google::protobuf::Arena* submessage_arena = (value)->GetArena(); - if (message_arena != submessage_arena) { - value = ::google::protobuf::internal::GetOwnedMessage(message_arena, value, submessage_arena); - } - _impl_._has_bits_[0] |= 0x00000001u; - } else { - _impl_._has_bits_[0] &= ~0x00000001u; - } - - _impl_.reference_ = reinterpret_cast<::io::deephaven::proto::backplane::grpc::Reference*>(value); - // @@protoc_insertion_point(field_set_allocated:io.deephaven.proto.backplane.grpc.MatchesCondition.reference) -} - -// string regex = 2; -inline void MatchesCondition::clear_regex() { - ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.regex_.ClearToEmpty(); -} -inline const std::string& MatchesCondition::regex() const - ABSL_ATTRIBUTE_LIFETIME_BOUND { - // @@protoc_insertion_point(field_get:io.deephaven.proto.backplane.grpc.MatchesCondition.regex) - return _internal_regex(); -} -template -inline PROTOBUF_ALWAYS_INLINE void MatchesCondition::set_regex(Arg_&& arg, - Args_... args) { - ::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) -} -inline std::string* MatchesCondition::mutable_regex() ABSL_ATTRIBUTE_LIFETIME_BOUND { - std::string* _s = _internal_mutable_regex(); - // @@protoc_insertion_point(field_mutable:io.deephaven.proto.backplane.grpc.MatchesCondition.regex) - return _s; -} -inline const std::string& MatchesCondition::_internal_regex() const { - ::google::protobuf::internal::TSanRead(&_impl_); - return _impl_.regex_.Get(); -} -inline void MatchesCondition::_internal_set_regex(const std::string& value) { - ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.regex_.Set(value, GetArena()); -} -inline std::string* MatchesCondition::_internal_mutable_regex() { - ::google::protobuf::internal::TSanWrite(&_impl_); - return _impl_.regex_.Mutable( GetArena()); -} -inline std::string* MatchesCondition::release_regex() { - ::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) { - ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.regex_.SetAllocated(value, GetArena()); - #ifdef PROTOBUF_FORCE_COPY_DEFAULT_STRING - if (_impl_.regex_.IsDefault()) { - _impl_.regex_.Set("", GetArena()); - } - #endif // PROTOBUF_FORCE_COPY_DEFAULT_STRING - // @@protoc_insertion_point(field_set_allocated:io.deephaven.proto.backplane.grpc.MatchesCondition.regex) -} - -// .io.deephaven.proto.backplane.grpc.CaseSensitivity case_sensitivity = 3; -inline void MatchesCondition::clear_case_sensitivity() { - ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.case_sensitivity_ = 0; -} -inline ::io::deephaven::proto::backplane::grpc::CaseSensitivity MatchesCondition::case_sensitivity() const { - // @@protoc_insertion_point(field_get:io.deephaven.proto.backplane.grpc.MatchesCondition.case_sensitivity) - return _internal_case_sensitivity(); -} -inline void MatchesCondition::set_case_sensitivity(::io::deephaven::proto::backplane::grpc::CaseSensitivity value) { - _internal_set_case_sensitivity(value); - // @@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 { - ::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) { - ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.case_sensitivity_ = value; -} - -// .io.deephaven.proto.backplane.grpc.MatchType match_type = 4; -inline void MatchesCondition::clear_match_type() { - ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.match_type_ = 0; -} -inline ::io::deephaven::proto::backplane::grpc::MatchType MatchesCondition::match_type() const { - // @@protoc_insertion_point(field_get:io.deephaven.proto.backplane.grpc.MatchesCondition.match_type) - return _internal_match_type(); -} -inline void MatchesCondition::set_match_type(::io::deephaven::proto::backplane::grpc::MatchType value) { - _internal_set_match_type(value); - // @@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 { - ::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) { - ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.match_type_ = value; -} - -// ------------------------------------------------------------------- - -// ContainsCondition - -// .io.deephaven.proto.backplane.grpc.Reference reference = 1; -inline bool ContainsCondition::has_reference() const { - bool value = (_impl_._has_bits_[0] & 0x00000001u) != 0; - PROTOBUF_ASSUME(!value || _impl_.reference_ != nullptr); - return value; -} -inline void ContainsCondition::clear_reference() { - ::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 { - ::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_); -} -inline const ::io::deephaven::proto::backplane::grpc::Reference& ContainsCondition::reference() const ABSL_ATTRIBUTE_LIFETIME_BOUND { - // @@protoc_insertion_point(field_get:io.deephaven.proto.backplane.grpc.ContainsCondition.reference) - return _internal_reference(); -} -inline void ContainsCondition::unsafe_arena_set_allocated_reference(::io::deephaven::proto::backplane::grpc::Reference* value) { - ::google::protobuf::internal::TSanWrite(&_impl_); - if (GetArena() == nullptr) { - delete reinterpret_cast<::google::protobuf::MessageLite*>(_impl_.reference_); - } - _impl_.reference_ = reinterpret_cast<::io::deephaven::proto::backplane::grpc::Reference*>(value); - if (value != nullptr) { - _impl_._has_bits_[0] |= 0x00000001u; - } else { - _impl_._has_bits_[0] &= ~0x00000001u; - } - // @@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() { - ::google::protobuf::internal::TSanWrite(&_impl_); - - _impl_._has_bits_[0] &= ~0x00000001u; - ::io::deephaven::proto::backplane::grpc::Reference* released = _impl_.reference_; - _impl_.reference_ = nullptr; -#ifdef PROTOBUF_FORCE_COPY_IN_RELEASE - auto* old = reinterpret_cast<::google::protobuf::MessageLite*>(released); - released = ::google::protobuf::internal::DuplicateIfNonNull(released); - if (GetArena() == nullptr) { - delete old; - } -#else // PROTOBUF_FORCE_COPY_IN_RELEASE - if (GetArena() != nullptr) { - released = ::google::protobuf::internal::DuplicateIfNonNull(released); - } -#endif // !PROTOBUF_FORCE_COPY_IN_RELEASE - return released; -} -inline ::io::deephaven::proto::backplane::grpc::Reference* ContainsCondition::unsafe_arena_release_reference() { - ::google::protobuf::internal::TSanWrite(&_impl_); - // @@protoc_insertion_point(field_release:io.deephaven.proto.backplane.grpc.ContainsCondition.reference) - - _impl_._has_bits_[0] &= ~0x00000001u; - ::io::deephaven::proto::backplane::grpc::Reference* temp = _impl_.reference_; - _impl_.reference_ = nullptr; - return temp; -} -inline ::io::deephaven::proto::backplane::grpc::Reference* ContainsCondition::_internal_mutable_reference() { - ::google::protobuf::internal::TSanWrite(&_impl_); - if (_impl_.reference_ == nullptr) { - 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(); - ::google::protobuf::internal::TSanWrite(&_impl_); - if (message_arena == nullptr) { - delete (_impl_.reference_); - } - - if (value != nullptr) { - ::google::protobuf::Arena* submessage_arena = (value)->GetArena(); - if (message_arena != submessage_arena) { - value = ::google::protobuf::internal::GetOwnedMessage(message_arena, value, submessage_arena); - } - _impl_._has_bits_[0] |= 0x00000001u; - } else { - _impl_._has_bits_[0] &= ~0x00000001u; - } - - _impl_.reference_ = reinterpret_cast<::io::deephaven::proto::backplane::grpc::Reference*>(value); - // @@protoc_insertion_point(field_set_allocated:io.deephaven.proto.backplane.grpc.ContainsCondition.reference) -} - -// string search_string = 2; -inline void ContainsCondition::clear_search_string() { - ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.search_string_.ClearToEmpty(); -} -inline const std::string& ContainsCondition::search_string() const - ABSL_ATTRIBUTE_LIFETIME_BOUND { - // @@protoc_insertion_point(field_get:io.deephaven.proto.backplane.grpc.ContainsCondition.search_string) - return _internal_search_string(); -} -template -inline PROTOBUF_ALWAYS_INLINE void ContainsCondition::set_search_string(Arg_&& arg, - Args_... args) { - ::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) -} -inline std::string* ContainsCondition::mutable_search_string() ABSL_ATTRIBUTE_LIFETIME_BOUND { - std::string* _s = _internal_mutable_search_string(); - // @@protoc_insertion_point(field_mutable:io.deephaven.proto.backplane.grpc.ContainsCondition.search_string) - return _s; -} -inline const std::string& ContainsCondition::_internal_search_string() const { - ::google::protobuf::internal::TSanRead(&_impl_); - return _impl_.search_string_.Get(); -} -inline void ContainsCondition::_internal_set_search_string(const std::string& value) { - ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.search_string_.Set(value, GetArena()); -} -inline std::string* ContainsCondition::_internal_mutable_search_string() { - ::google::protobuf::internal::TSanWrite(&_impl_); - return _impl_.search_string_.Mutable( GetArena()); -} -inline std::string* ContainsCondition::release_search_string() { - ::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) { - ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.search_string_.SetAllocated(value, GetArena()); - #ifdef PROTOBUF_FORCE_COPY_DEFAULT_STRING - if (_impl_.search_string_.IsDefault()) { - _impl_.search_string_.Set("", GetArena()); - } - #endif // PROTOBUF_FORCE_COPY_DEFAULT_STRING - // @@protoc_insertion_point(field_set_allocated:io.deephaven.proto.backplane.grpc.ContainsCondition.search_string) -} - -// .io.deephaven.proto.backplane.grpc.CaseSensitivity case_sensitivity = 3; -inline void ContainsCondition::clear_case_sensitivity() { - ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.case_sensitivity_ = 0; -} -inline ::io::deephaven::proto::backplane::grpc::CaseSensitivity ContainsCondition::case_sensitivity() const { - // @@protoc_insertion_point(field_get:io.deephaven.proto.backplane.grpc.ContainsCondition.case_sensitivity) - return _internal_case_sensitivity(); -} -inline void ContainsCondition::set_case_sensitivity(::io::deephaven::proto::backplane::grpc::CaseSensitivity value) { - _internal_set_case_sensitivity(value); - // @@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 { - ::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) { - ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.case_sensitivity_ = value; -} - -// .io.deephaven.proto.backplane.grpc.MatchType match_type = 4; -inline void ContainsCondition::clear_match_type() { - ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.match_type_ = 0; -} -inline ::io::deephaven::proto::backplane::grpc::MatchType ContainsCondition::match_type() const { - // @@protoc_insertion_point(field_get:io.deephaven.proto.backplane.grpc.ContainsCondition.match_type) - return _internal_match_type(); -} -inline void ContainsCondition::set_match_type(::io::deephaven::proto::backplane::grpc::MatchType value) { - _internal_set_match_type(value); - // @@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 { - ::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) { - ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.match_type_ = value; -} - -// ------------------------------------------------------------------- - -// SearchCondition - -// string search_string = 1; -inline void SearchCondition::clear_search_string() { - ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.search_string_.ClearToEmpty(); -} -inline const std::string& SearchCondition::search_string() const - ABSL_ATTRIBUTE_LIFETIME_BOUND { - // @@protoc_insertion_point(field_get:io.deephaven.proto.backplane.grpc.SearchCondition.search_string) - return _internal_search_string(); -} -template -inline PROTOBUF_ALWAYS_INLINE void SearchCondition::set_search_string(Arg_&& arg, - Args_... args) { - ::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) -} -inline std::string* SearchCondition::mutable_search_string() ABSL_ATTRIBUTE_LIFETIME_BOUND { - std::string* _s = _internal_mutable_search_string(); - // @@protoc_insertion_point(field_mutable:io.deephaven.proto.backplane.grpc.SearchCondition.search_string) - return _s; -} -inline const std::string& SearchCondition::_internal_search_string() const { - ::google::protobuf::internal::TSanRead(&_impl_); - return _impl_.search_string_.Get(); -} -inline void SearchCondition::_internal_set_search_string(const std::string& value) { - ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.search_string_.Set(value, GetArena()); -} -inline std::string* SearchCondition::_internal_mutable_search_string() { - ::google::protobuf::internal::TSanWrite(&_impl_); - return _impl_.search_string_.Mutable( GetArena()); -} -inline std::string* SearchCondition::release_search_string() { - ::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) { - ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.search_string_.SetAllocated(value, GetArena()); - #ifdef PROTOBUF_FORCE_COPY_DEFAULT_STRING - if (_impl_.search_string_.IsDefault()) { - _impl_.search_string_.Set("", GetArena()); - } - #endif // PROTOBUF_FORCE_COPY_DEFAULT_STRING - // @@protoc_insertion_point(field_set_allocated:io.deephaven.proto.backplane.grpc.SearchCondition.search_string) -} - -// repeated .io.deephaven.proto.backplane.grpc.Reference optional_references = 2; -inline int SearchCondition::_internal_optional_references_size() const { - return _internal_optional_references().size(); -} -inline int SearchCondition::optional_references_size() const { - return _internal_optional_references_size(); -} -inline void SearchCondition::clear_optional_references() { - ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.optional_references_.Clear(); -} -inline ::io::deephaven::proto::backplane::grpc::Reference* SearchCondition::mutable_optional_references(int index) - ABSL_ATTRIBUTE_LIFETIME_BOUND { - // @@protoc_insertion_point(field_mutable:io.deephaven.proto.backplane.grpc.SearchCondition.optional_references) - return _internal_mutable_optional_references()->Mutable(index); -} -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) - ::google::protobuf::internal::TSanWrite(&_impl_); - return _internal_mutable_optional_references(); -} -inline const ::io::deephaven::proto::backplane::grpc::Reference& SearchCondition::optional_references(int index) const - ABSL_ATTRIBUTE_LIFETIME_BOUND { - // @@protoc_insertion_point(field_get:io.deephaven.proto.backplane.grpc.SearchCondition.optional_references) - return _internal_optional_references().Get(index); -} -inline ::io::deephaven::proto::backplane::grpc::Reference* SearchCondition::add_optional_references() ABSL_ATTRIBUTE_LIFETIME_BOUND { - ::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; -} -inline const ::google::protobuf::RepeatedPtrField<::io::deephaven::proto::backplane::grpc::Reference>& SearchCondition::optional_references() const - ABSL_ATTRIBUTE_LIFETIME_BOUND { - // @@protoc_insertion_point(field_list:io.deephaven.proto.backplane.grpc.SearchCondition.optional_references) - return _internal_optional_references(); -} -inline const ::google::protobuf::RepeatedPtrField<::io::deephaven::proto::backplane::grpc::Reference>& -SearchCondition::_internal_optional_references() const { - ::google::protobuf::internal::TSanRead(&_impl_); - return _impl_.optional_references_; -} -inline ::google::protobuf::RepeatedPtrField<::io::deephaven::proto::backplane::grpc::Reference>* -SearchCondition::_internal_mutable_optional_references() { - ::google::protobuf::internal::TSanRead(&_impl_); - return &_impl_.optional_references_; -} - -// ------------------------------------------------------------------- - -// FlattenRequest - -// .io.deephaven.proto.backplane.grpc.Ticket result_id = 1; -inline bool FlattenRequest::has_result_id() const { - bool value = (_impl_._has_bits_[0] & 0x00000001u) != 0; - PROTOBUF_ASSUME(!value || _impl_.result_id_ != nullptr); - return value; -} -inline const ::io::deephaven::proto::backplane::grpc::Ticket& FlattenRequest::_internal_result_id() const { - ::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_); -} -inline const ::io::deephaven::proto::backplane::grpc::Ticket& FlattenRequest::result_id() const ABSL_ATTRIBUTE_LIFETIME_BOUND { - // @@protoc_insertion_point(field_get:io.deephaven.proto.backplane.grpc.FlattenRequest.result_id) - return _internal_result_id(); -} -inline void FlattenRequest::unsafe_arena_set_allocated_result_id(::io::deephaven::proto::backplane::grpc::Ticket* value) { - ::google::protobuf::internal::TSanWrite(&_impl_); - if (GetArena() == nullptr) { - delete reinterpret_cast<::google::protobuf::MessageLite*>(_impl_.result_id_); - } - _impl_.result_id_ = reinterpret_cast<::io::deephaven::proto::backplane::grpc::Ticket*>(value); - if (value != nullptr) { - _impl_._has_bits_[0] |= 0x00000001u; - } else { - _impl_._has_bits_[0] &= ~0x00000001u; - } - // @@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() { - ::google::protobuf::internal::TSanWrite(&_impl_); - - _impl_._has_bits_[0] &= ~0x00000001u; - ::io::deephaven::proto::backplane::grpc::Ticket* released = _impl_.result_id_; - _impl_.result_id_ = nullptr; -#ifdef PROTOBUF_FORCE_COPY_IN_RELEASE - auto* old = reinterpret_cast<::google::protobuf::MessageLite*>(released); - released = ::google::protobuf::internal::DuplicateIfNonNull(released); - if (GetArena() == nullptr) { - delete old; - } -#else // PROTOBUF_FORCE_COPY_IN_RELEASE - if (GetArena() != nullptr) { - released = ::google::protobuf::internal::DuplicateIfNonNull(released); - } -#endif // !PROTOBUF_FORCE_COPY_IN_RELEASE - return released; -} -inline ::io::deephaven::proto::backplane::grpc::Ticket* FlattenRequest::unsafe_arena_release_result_id() { - ::google::protobuf::internal::TSanWrite(&_impl_); - // @@protoc_insertion_point(field_release:io.deephaven.proto.backplane.grpc.FlattenRequest.result_id) - - _impl_._has_bits_[0] &= ~0x00000001u; - ::io::deephaven::proto::backplane::grpc::Ticket* temp = _impl_.result_id_; - _impl_.result_id_ = nullptr; - return temp; -} -inline ::io::deephaven::proto::backplane::grpc::Ticket* FlattenRequest::_internal_mutable_result_id() { - ::google::protobuf::internal::TSanWrite(&_impl_); - if (_impl_.result_id_ == nullptr) { - 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(); - ::google::protobuf::internal::TSanWrite(&_impl_); - if (message_arena == nullptr) { - delete reinterpret_cast<::google::protobuf::MessageLite*>(_impl_.result_id_); - } - - if (value != nullptr) { - ::google::protobuf::Arena* submessage_arena = reinterpret_cast<::google::protobuf::MessageLite*>(value)->GetArena(); - if (message_arena != submessage_arena) { - value = ::google::protobuf::internal::GetOwnedMessage(message_arena, value, submessage_arena); - } - _impl_._has_bits_[0] |= 0x00000001u; - } else { - _impl_._has_bits_[0] &= ~0x00000001u; - } - - _impl_.result_id_ = reinterpret_cast<::io::deephaven::proto::backplane::grpc::Ticket*>(value); - // @@protoc_insertion_point(field_set_allocated:io.deephaven.proto.backplane.grpc.FlattenRequest.result_id) -} - -// .io.deephaven.proto.backplane.grpc.TableReference source_id = 2; -inline bool FlattenRequest::has_source_id() const { - bool value = (_impl_._has_bits_[0] & 0x00000002u) != 0; - PROTOBUF_ASSUME(!value || _impl_.source_id_ != nullptr); - return value; -} -inline void FlattenRequest::clear_source_id() { - ::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 { - ::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_); -} -inline const ::io::deephaven::proto::backplane::grpc::TableReference& FlattenRequest::source_id() const ABSL_ATTRIBUTE_LIFETIME_BOUND { - // @@protoc_insertion_point(field_get:io.deephaven.proto.backplane.grpc.FlattenRequest.source_id) - return _internal_source_id(); -} -inline void FlattenRequest::unsafe_arena_set_allocated_source_id(::io::deephaven::proto::backplane::grpc::TableReference* value) { - ::google::protobuf::internal::TSanWrite(&_impl_); - if (GetArena() == nullptr) { - delete reinterpret_cast<::google::protobuf::MessageLite*>(_impl_.source_id_); - } - _impl_.source_id_ = reinterpret_cast<::io::deephaven::proto::backplane::grpc::TableReference*>(value); - if (value != nullptr) { - _impl_._has_bits_[0] |= 0x00000002u; - } else { - _impl_._has_bits_[0] &= ~0x00000002u; - } - // @@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() { - ::google::protobuf::internal::TSanWrite(&_impl_); - - _impl_._has_bits_[0] &= ~0x00000002u; - ::io::deephaven::proto::backplane::grpc::TableReference* released = _impl_.source_id_; - _impl_.source_id_ = nullptr; -#ifdef PROTOBUF_FORCE_COPY_IN_RELEASE - auto* old = reinterpret_cast<::google::protobuf::MessageLite*>(released); - released = ::google::protobuf::internal::DuplicateIfNonNull(released); - if (GetArena() == nullptr) { - delete old; - } -#else // PROTOBUF_FORCE_COPY_IN_RELEASE - if (GetArena() != nullptr) { - released = ::google::protobuf::internal::DuplicateIfNonNull(released); - } -#endif // !PROTOBUF_FORCE_COPY_IN_RELEASE - return released; -} -inline ::io::deephaven::proto::backplane::grpc::TableReference* FlattenRequest::unsafe_arena_release_source_id() { - ::google::protobuf::internal::TSanWrite(&_impl_); - // @@protoc_insertion_point(field_release:io.deephaven.proto.backplane.grpc.FlattenRequest.source_id) - - _impl_._has_bits_[0] &= ~0x00000002u; - ::io::deephaven::proto::backplane::grpc::TableReference* temp = _impl_.source_id_; - _impl_.source_id_ = nullptr; - return temp; -} -inline ::io::deephaven::proto::backplane::grpc::TableReference* FlattenRequest::_internal_mutable_source_id() { - ::google::protobuf::internal::TSanWrite(&_impl_); - if (_impl_.source_id_ == nullptr) { - 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(); - ::google::protobuf::internal::TSanWrite(&_impl_); - if (message_arena == nullptr) { - delete (_impl_.source_id_); - } - - if (value != nullptr) { - ::google::protobuf::Arena* submessage_arena = (value)->GetArena(); - if (message_arena != submessage_arena) { - value = ::google::protobuf::internal::GetOwnedMessage(message_arena, value, submessage_arena); - } - _impl_._has_bits_[0] |= 0x00000002u; - } else { - _impl_._has_bits_[0] &= ~0x00000002u; - } - - _impl_.source_id_ = reinterpret_cast<::io::deephaven::proto::backplane::grpc::TableReference*>(value); - // @@protoc_insertion_point(field_set_allocated:io.deephaven.proto.backplane.grpc.FlattenRequest.source_id) -} - -// ------------------------------------------------------------------- - -// MetaTableRequest - -// .io.deephaven.proto.backplane.grpc.Ticket result_id = 1; -inline bool MetaTableRequest::has_result_id() const { - bool value = (_impl_._has_bits_[0] & 0x00000001u) != 0; - PROTOBUF_ASSUME(!value || _impl_.result_id_ != nullptr); - return value; -} -inline const ::io::deephaven::proto::backplane::grpc::Ticket& MetaTableRequest::_internal_result_id() const { - ::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_); -} -inline const ::io::deephaven::proto::backplane::grpc::Ticket& MetaTableRequest::result_id() const ABSL_ATTRIBUTE_LIFETIME_BOUND { - // @@protoc_insertion_point(field_get:io.deephaven.proto.backplane.grpc.MetaTableRequest.result_id) - return _internal_result_id(); -} -inline void MetaTableRequest::unsafe_arena_set_allocated_result_id(::io::deephaven::proto::backplane::grpc::Ticket* value) { - ::google::protobuf::internal::TSanWrite(&_impl_); - if (GetArena() == nullptr) { - delete reinterpret_cast<::google::protobuf::MessageLite*>(_impl_.result_id_); - } - _impl_.result_id_ = reinterpret_cast<::io::deephaven::proto::backplane::grpc::Ticket*>(value); - if (value != nullptr) { - _impl_._has_bits_[0] |= 0x00000001u; - } else { - _impl_._has_bits_[0] &= ~0x00000001u; - } - // @@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() { - ::google::protobuf::internal::TSanWrite(&_impl_); - - _impl_._has_bits_[0] &= ~0x00000001u; - ::io::deephaven::proto::backplane::grpc::Ticket* released = _impl_.result_id_; - _impl_.result_id_ = nullptr; -#ifdef PROTOBUF_FORCE_COPY_IN_RELEASE - auto* old = reinterpret_cast<::google::protobuf::MessageLite*>(released); - released = ::google::protobuf::internal::DuplicateIfNonNull(released); - if (GetArena() == nullptr) { - delete old; - } -#else // PROTOBUF_FORCE_COPY_IN_RELEASE - if (GetArena() != nullptr) { - released = ::google::protobuf::internal::DuplicateIfNonNull(released); - } -#endif // !PROTOBUF_FORCE_COPY_IN_RELEASE - return released; -} -inline ::io::deephaven::proto::backplane::grpc::Ticket* MetaTableRequest::unsafe_arena_release_result_id() { - ::google::protobuf::internal::TSanWrite(&_impl_); - // @@protoc_insertion_point(field_release:io.deephaven.proto.backplane.grpc.MetaTableRequest.result_id) - - _impl_._has_bits_[0] &= ~0x00000001u; - ::io::deephaven::proto::backplane::grpc::Ticket* temp = _impl_.result_id_; - _impl_.result_id_ = nullptr; - return temp; -} -inline ::io::deephaven::proto::backplane::grpc::Ticket* MetaTableRequest::_internal_mutable_result_id() { - ::google::protobuf::internal::TSanWrite(&_impl_); - if (_impl_.result_id_ == nullptr) { - 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(); - ::google::protobuf::internal::TSanWrite(&_impl_); - if (message_arena == nullptr) { - delete reinterpret_cast<::google::protobuf::MessageLite*>(_impl_.result_id_); - } - - if (value != nullptr) { - ::google::protobuf::Arena* submessage_arena = reinterpret_cast<::google::protobuf::MessageLite*>(value)->GetArena(); - if (message_arena != submessage_arena) { - value = ::google::protobuf::internal::GetOwnedMessage(message_arena, value, submessage_arena); - } - _impl_._has_bits_[0] |= 0x00000001u; - } else { - _impl_._has_bits_[0] &= ~0x00000001u; - } - - _impl_.result_id_ = reinterpret_cast<::io::deephaven::proto::backplane::grpc::Ticket*>(value); - // @@protoc_insertion_point(field_set_allocated:io.deephaven.proto.backplane.grpc.MetaTableRequest.result_id) -} - -// .io.deephaven.proto.backplane.grpc.TableReference source_id = 2; -inline bool MetaTableRequest::has_source_id() const { - bool value = (_impl_._has_bits_[0] & 0x00000002u) != 0; - PROTOBUF_ASSUME(!value || _impl_.source_id_ != nullptr); - return value; -} -inline void MetaTableRequest::clear_source_id() { - ::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 { - ::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_); -} -inline const ::io::deephaven::proto::backplane::grpc::TableReference& MetaTableRequest::source_id() const ABSL_ATTRIBUTE_LIFETIME_BOUND { - // @@protoc_insertion_point(field_get:io.deephaven.proto.backplane.grpc.MetaTableRequest.source_id) - return _internal_source_id(); -} -inline void MetaTableRequest::unsafe_arena_set_allocated_source_id(::io::deephaven::proto::backplane::grpc::TableReference* value) { - ::google::protobuf::internal::TSanWrite(&_impl_); - if (GetArena() == nullptr) { - delete reinterpret_cast<::google::protobuf::MessageLite*>(_impl_.source_id_); - } - _impl_.source_id_ = reinterpret_cast<::io::deephaven::proto::backplane::grpc::TableReference*>(value); - if (value != nullptr) { - _impl_._has_bits_[0] |= 0x00000002u; - } else { - _impl_._has_bits_[0] &= ~0x00000002u; - } - // @@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() { - ::google::protobuf::internal::TSanWrite(&_impl_); - - _impl_._has_bits_[0] &= ~0x00000002u; - ::io::deephaven::proto::backplane::grpc::TableReference* released = _impl_.source_id_; - _impl_.source_id_ = nullptr; -#ifdef PROTOBUF_FORCE_COPY_IN_RELEASE - auto* old = reinterpret_cast<::google::protobuf::MessageLite*>(released); - released = ::google::protobuf::internal::DuplicateIfNonNull(released); - if (GetArena() == nullptr) { - delete old; - } -#else // PROTOBUF_FORCE_COPY_IN_RELEASE - if (GetArena() != nullptr) { - released = ::google::protobuf::internal::DuplicateIfNonNull(released); - } -#endif // !PROTOBUF_FORCE_COPY_IN_RELEASE - return released; -} -inline ::io::deephaven::proto::backplane::grpc::TableReference* MetaTableRequest::unsafe_arena_release_source_id() { - ::google::protobuf::internal::TSanWrite(&_impl_); - // @@protoc_insertion_point(field_release:io.deephaven.proto.backplane.grpc.MetaTableRequest.source_id) - - _impl_._has_bits_[0] &= ~0x00000002u; - ::io::deephaven::proto::backplane::grpc::TableReference* temp = _impl_.source_id_; - _impl_.source_id_ = nullptr; - return temp; -} -inline ::io::deephaven::proto::backplane::grpc::TableReference* MetaTableRequest::_internal_mutable_source_id() { - ::google::protobuf::internal::TSanWrite(&_impl_); - if (_impl_.source_id_ == nullptr) { - 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(); - ::google::protobuf::internal::TSanWrite(&_impl_); - if (message_arena == nullptr) { - delete (_impl_.source_id_); - } - - if (value != nullptr) { - ::google::protobuf::Arena* submessage_arena = (value)->GetArena(); - if (message_arena != submessage_arena) { - value = ::google::protobuf::internal::GetOwnedMessage(message_arena, value, submessage_arena); - } - _impl_._has_bits_[0] |= 0x00000002u; - } else { - _impl_._has_bits_[0] &= ~0x00000002u; - } - - _impl_.source_id_ = reinterpret_cast<::io::deephaven::proto::backplane::grpc::TableReference*>(value); - // @@protoc_insertion_point(field_set_allocated:io.deephaven.proto.backplane.grpc.MetaTableRequest.source_id) -} - -// ------------------------------------------------------------------- - -// RunChartDownsampleRequest_ZoomRange - -// optional int64 min_date_nanos = 1 [jstype = JS_STRING]; -inline bool RunChartDownsampleRequest_ZoomRange::has_min_date_nanos() const { - bool value = (_impl_._has_bits_[0] & 0x00000001u) != 0; - return value; -} -inline void RunChartDownsampleRequest_ZoomRange::clear_min_date_nanos() { - ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.min_date_nanos_ = ::int64_t{0}; - _impl_._has_bits_[0] &= ~0x00000001u; -} -inline ::int64_t RunChartDownsampleRequest_ZoomRange::min_date_nanos() const { - // @@protoc_insertion_point(field_get:io.deephaven.proto.backplane.grpc.RunChartDownsampleRequest.ZoomRange.min_date_nanos) - return _internal_min_date_nanos(); -} -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 { - ::google::protobuf::internal::TSanRead(&_impl_); - return _impl_.min_date_nanos_; -} -inline void RunChartDownsampleRequest_ZoomRange::_internal_set_min_date_nanos(::int64_t value) { - ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.min_date_nanos_ = value; -} - -// optional int64 max_date_nanos = 2 [jstype = JS_STRING]; -inline bool RunChartDownsampleRequest_ZoomRange::has_max_date_nanos() const { - bool value = (_impl_._has_bits_[0] & 0x00000002u) != 0; - return value; -} -inline void RunChartDownsampleRequest_ZoomRange::clear_max_date_nanos() { - ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.max_date_nanos_ = ::int64_t{0}; - _impl_._has_bits_[0] &= ~0x00000002u; -} -inline ::int64_t RunChartDownsampleRequest_ZoomRange::max_date_nanos() const { - // @@protoc_insertion_point(field_get:io.deephaven.proto.backplane.grpc.RunChartDownsampleRequest.ZoomRange.max_date_nanos) - return _internal_max_date_nanos(); -} -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 { - ::google::protobuf::internal::TSanRead(&_impl_); - return _impl_.max_date_nanos_; -} -inline void RunChartDownsampleRequest_ZoomRange::_internal_set_max_date_nanos(::int64_t value) { - ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.max_date_nanos_ = value; -} - -// ------------------------------------------------------------------- - -// RunChartDownsampleRequest - -// .io.deephaven.proto.backplane.grpc.Ticket result_id = 1; -inline bool RunChartDownsampleRequest::has_result_id() const { - bool value = (_impl_._has_bits_[0] & 0x00000001u) != 0; - PROTOBUF_ASSUME(!value || _impl_.result_id_ != nullptr); - return value; -} -inline const ::io::deephaven::proto::backplane::grpc::Ticket& RunChartDownsampleRequest::_internal_result_id() const { - ::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_); -} -inline const ::io::deephaven::proto::backplane::grpc::Ticket& RunChartDownsampleRequest::result_id() const ABSL_ATTRIBUTE_LIFETIME_BOUND { - // @@protoc_insertion_point(field_get:io.deephaven.proto.backplane.grpc.RunChartDownsampleRequest.result_id) - return _internal_result_id(); -} -inline void RunChartDownsampleRequest::unsafe_arena_set_allocated_result_id(::io::deephaven::proto::backplane::grpc::Ticket* value) { - ::google::protobuf::internal::TSanWrite(&_impl_); - if (GetArena() == nullptr) { - delete reinterpret_cast<::google::protobuf::MessageLite*>(_impl_.result_id_); - } - _impl_.result_id_ = reinterpret_cast<::io::deephaven::proto::backplane::grpc::Ticket*>(value); - if (value != nullptr) { - _impl_._has_bits_[0] |= 0x00000001u; - } else { - _impl_._has_bits_[0] &= ~0x00000001u; - } - // @@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() { - ::google::protobuf::internal::TSanWrite(&_impl_); - - _impl_._has_bits_[0] &= ~0x00000001u; - ::io::deephaven::proto::backplane::grpc::Ticket* released = _impl_.result_id_; - _impl_.result_id_ = nullptr; -#ifdef PROTOBUF_FORCE_COPY_IN_RELEASE - auto* old = reinterpret_cast<::google::protobuf::MessageLite*>(released); - released = ::google::protobuf::internal::DuplicateIfNonNull(released); - if (GetArena() == nullptr) { - delete old; - } -#else // PROTOBUF_FORCE_COPY_IN_RELEASE - if (GetArena() != nullptr) { - released = ::google::protobuf::internal::DuplicateIfNonNull(released); - } -#endif // !PROTOBUF_FORCE_COPY_IN_RELEASE - return released; -} -inline ::io::deephaven::proto::backplane::grpc::Ticket* RunChartDownsampleRequest::unsafe_arena_release_result_id() { - ::google::protobuf::internal::TSanWrite(&_impl_); - // @@protoc_insertion_point(field_release:io.deephaven.proto.backplane.grpc.RunChartDownsampleRequest.result_id) - - _impl_._has_bits_[0] &= ~0x00000001u; - ::io::deephaven::proto::backplane::grpc::Ticket* temp = _impl_.result_id_; - _impl_.result_id_ = nullptr; - return temp; -} -inline ::io::deephaven::proto::backplane::grpc::Ticket* RunChartDownsampleRequest::_internal_mutable_result_id() { - ::google::protobuf::internal::TSanWrite(&_impl_); - if (_impl_.result_id_ == nullptr) { - 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(); - ::google::protobuf::internal::TSanWrite(&_impl_); - if (message_arena == nullptr) { - delete reinterpret_cast<::google::protobuf::MessageLite*>(_impl_.result_id_); - } - - if (value != nullptr) { - ::google::protobuf::Arena* submessage_arena = reinterpret_cast<::google::protobuf::MessageLite*>(value)->GetArena(); - if (message_arena != submessage_arena) { - value = ::google::protobuf::internal::GetOwnedMessage(message_arena, value, submessage_arena); - } - _impl_._has_bits_[0] |= 0x00000001u; - } else { - _impl_._has_bits_[0] &= ~0x00000001u; - } - - _impl_.result_id_ = reinterpret_cast<::io::deephaven::proto::backplane::grpc::Ticket*>(value); - // @@protoc_insertion_point(field_set_allocated:io.deephaven.proto.backplane.grpc.RunChartDownsampleRequest.result_id) -} - -// .io.deephaven.proto.backplane.grpc.TableReference source_id = 2; -inline bool RunChartDownsampleRequest::has_source_id() const { - bool value = (_impl_._has_bits_[0] & 0x00000002u) != 0; - PROTOBUF_ASSUME(!value || _impl_.source_id_ != nullptr); - return value; -} -inline void RunChartDownsampleRequest::clear_source_id() { - ::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 { - ::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_); -} -inline const ::io::deephaven::proto::backplane::grpc::TableReference& RunChartDownsampleRequest::source_id() const ABSL_ATTRIBUTE_LIFETIME_BOUND { - // @@protoc_insertion_point(field_get:io.deephaven.proto.backplane.grpc.RunChartDownsampleRequest.source_id) - return _internal_source_id(); -} -inline void RunChartDownsampleRequest::unsafe_arena_set_allocated_source_id(::io::deephaven::proto::backplane::grpc::TableReference* value) { - ::google::protobuf::internal::TSanWrite(&_impl_); - if (GetArena() == nullptr) { - delete reinterpret_cast<::google::protobuf::MessageLite*>(_impl_.source_id_); - } - _impl_.source_id_ = reinterpret_cast<::io::deephaven::proto::backplane::grpc::TableReference*>(value); - if (value != nullptr) { - _impl_._has_bits_[0] |= 0x00000002u; - } else { - _impl_._has_bits_[0] &= ~0x00000002u; - } - // @@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() { - ::google::protobuf::internal::TSanWrite(&_impl_); - - _impl_._has_bits_[0] &= ~0x00000002u; - ::io::deephaven::proto::backplane::grpc::TableReference* released = _impl_.source_id_; - _impl_.source_id_ = nullptr; -#ifdef PROTOBUF_FORCE_COPY_IN_RELEASE - auto* old = reinterpret_cast<::google::protobuf::MessageLite*>(released); - released = ::google::protobuf::internal::DuplicateIfNonNull(released); - if (GetArena() == nullptr) { - delete old; - } -#else // PROTOBUF_FORCE_COPY_IN_RELEASE - if (GetArena() != nullptr) { - released = ::google::protobuf::internal::DuplicateIfNonNull(released); - } -#endif // !PROTOBUF_FORCE_COPY_IN_RELEASE - return released; -} -inline ::io::deephaven::proto::backplane::grpc::TableReference* RunChartDownsampleRequest::unsafe_arena_release_source_id() { - ::google::protobuf::internal::TSanWrite(&_impl_); - // @@protoc_insertion_point(field_release:io.deephaven.proto.backplane.grpc.RunChartDownsampleRequest.source_id) - - _impl_._has_bits_[0] &= ~0x00000002u; - ::io::deephaven::proto::backplane::grpc::TableReference* temp = _impl_.source_id_; - _impl_.source_id_ = nullptr; - return temp; -} -inline ::io::deephaven::proto::backplane::grpc::TableReference* RunChartDownsampleRequest::_internal_mutable_source_id() { - ::google::protobuf::internal::TSanWrite(&_impl_); - if (_impl_.source_id_ == nullptr) { - 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(); - ::google::protobuf::internal::TSanWrite(&_impl_); - if (message_arena == nullptr) { - delete (_impl_.source_id_); - } - - if (value != nullptr) { - ::google::protobuf::Arena* submessage_arena = (value)->GetArena(); - if (message_arena != submessage_arena) { - value = ::google::protobuf::internal::GetOwnedMessage(message_arena, value, submessage_arena); - } - _impl_._has_bits_[0] |= 0x00000002u; - } else { - _impl_._has_bits_[0] &= ~0x00000002u; - } - - _impl_.source_id_ = reinterpret_cast<::io::deephaven::proto::backplane::grpc::TableReference*>(value); - // @@protoc_insertion_point(field_set_allocated:io.deephaven.proto.backplane.grpc.RunChartDownsampleRequest.source_id) -} - -// int32 pixel_count = 3; -inline void RunChartDownsampleRequest::clear_pixel_count() { - ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.pixel_count_ = 0; -} -inline ::int32_t RunChartDownsampleRequest::pixel_count() const { - // @@protoc_insertion_point(field_get:io.deephaven.proto.backplane.grpc.RunChartDownsampleRequest.pixel_count) - return _internal_pixel_count(); -} -inline void RunChartDownsampleRequest::set_pixel_count(::int32_t value) { - _internal_set_pixel_count(value); - // @@protoc_insertion_point(field_set:io.deephaven.proto.backplane.grpc.RunChartDownsampleRequest.pixel_count) -} -inline ::int32_t RunChartDownsampleRequest::_internal_pixel_count() const { - ::google::protobuf::internal::TSanRead(&_impl_); - return _impl_.pixel_count_; -} -inline void RunChartDownsampleRequest::_internal_set_pixel_count(::int32_t value) { - ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.pixel_count_ = value; -} - -// .io.deephaven.proto.backplane.grpc.RunChartDownsampleRequest.ZoomRange zoom_range = 4; -inline bool RunChartDownsampleRequest::has_zoom_range() const { - bool value = (_impl_._has_bits_[0] & 0x00000004u) != 0; - PROTOBUF_ASSUME(!value || _impl_.zoom_range_ != nullptr); - return value; -} -inline void RunChartDownsampleRequest::clear_zoom_range() { - ::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 { - ::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_); -} -inline const ::io::deephaven::proto::backplane::grpc::RunChartDownsampleRequest_ZoomRange& RunChartDownsampleRequest::zoom_range() const ABSL_ATTRIBUTE_LIFETIME_BOUND { - // @@protoc_insertion_point(field_get:io.deephaven.proto.backplane.grpc.RunChartDownsampleRequest.zoom_range) - return _internal_zoom_range(); -} -inline void RunChartDownsampleRequest::unsafe_arena_set_allocated_zoom_range(::io::deephaven::proto::backplane::grpc::RunChartDownsampleRequest_ZoomRange* value) { - ::google::protobuf::internal::TSanWrite(&_impl_); - if (GetArena() == nullptr) { - delete reinterpret_cast<::google::protobuf::MessageLite*>(_impl_.zoom_range_); - } - _impl_.zoom_range_ = reinterpret_cast<::io::deephaven::proto::backplane::grpc::RunChartDownsampleRequest_ZoomRange*>(value); - if (value != nullptr) { - _impl_._has_bits_[0] |= 0x00000004u; - } else { - _impl_._has_bits_[0] &= ~0x00000004u; - } - // @@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() { - ::google::protobuf::internal::TSanWrite(&_impl_); - - _impl_._has_bits_[0] &= ~0x00000004u; - ::io::deephaven::proto::backplane::grpc::RunChartDownsampleRequest_ZoomRange* released = _impl_.zoom_range_; - _impl_.zoom_range_ = nullptr; -#ifdef PROTOBUF_FORCE_COPY_IN_RELEASE - auto* old = reinterpret_cast<::google::protobuf::MessageLite*>(released); - released = ::google::protobuf::internal::DuplicateIfNonNull(released); - if (GetArena() == nullptr) { - delete old; - } -#else // PROTOBUF_FORCE_COPY_IN_RELEASE - if (GetArena() != nullptr) { - released = ::google::protobuf::internal::DuplicateIfNonNull(released); - } -#endif // !PROTOBUF_FORCE_COPY_IN_RELEASE - return released; -} -inline ::io::deephaven::proto::backplane::grpc::RunChartDownsampleRequest_ZoomRange* RunChartDownsampleRequest::unsafe_arena_release_zoom_range() { - ::google::protobuf::internal::TSanWrite(&_impl_); - // @@protoc_insertion_point(field_release:io.deephaven.proto.backplane.grpc.RunChartDownsampleRequest.zoom_range) - - _impl_._has_bits_[0] &= ~0x00000004u; - ::io::deephaven::proto::backplane::grpc::RunChartDownsampleRequest_ZoomRange* temp = _impl_.zoom_range_; - _impl_.zoom_range_ = nullptr; - return temp; -} -inline ::io::deephaven::proto::backplane::grpc::RunChartDownsampleRequest_ZoomRange* RunChartDownsampleRequest::_internal_mutable_zoom_range() { - ::google::protobuf::internal::TSanWrite(&_impl_); - if (_impl_.zoom_range_ == nullptr) { - 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(); - ::google::protobuf::internal::TSanWrite(&_impl_); - if (message_arena == nullptr) { - delete (_impl_.zoom_range_); - } - - if (value != nullptr) { - ::google::protobuf::Arena* submessage_arena = (value)->GetArena(); - if (message_arena != submessage_arena) { - value = ::google::protobuf::internal::GetOwnedMessage(message_arena, value, submessage_arena); - } - _impl_._has_bits_[0] |= 0x00000004u; - } else { - _impl_._has_bits_[0] &= ~0x00000004u; - } - - _impl_.zoom_range_ = reinterpret_cast<::io::deephaven::proto::backplane::grpc::RunChartDownsampleRequest_ZoomRange*>(value); - // @@protoc_insertion_point(field_set_allocated:io.deephaven.proto.backplane.grpc.RunChartDownsampleRequest.zoom_range) -} - -// string x_column_name = 5; -inline void RunChartDownsampleRequest::clear_x_column_name() { - ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.x_column_name_.ClearToEmpty(); -} -inline const std::string& RunChartDownsampleRequest::x_column_name() const - ABSL_ATTRIBUTE_LIFETIME_BOUND { - // @@protoc_insertion_point(field_get:io.deephaven.proto.backplane.grpc.RunChartDownsampleRequest.x_column_name) - return _internal_x_column_name(); -} -template -inline PROTOBUF_ALWAYS_INLINE void RunChartDownsampleRequest::set_x_column_name(Arg_&& arg, - Args_... args) { - ::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) -} -inline std::string* RunChartDownsampleRequest::mutable_x_column_name() ABSL_ATTRIBUTE_LIFETIME_BOUND { - std::string* _s = _internal_mutable_x_column_name(); - // @@protoc_insertion_point(field_mutable:io.deephaven.proto.backplane.grpc.RunChartDownsampleRequest.x_column_name) - return _s; -} -inline const std::string& RunChartDownsampleRequest::_internal_x_column_name() const { - ::google::protobuf::internal::TSanRead(&_impl_); - return _impl_.x_column_name_.Get(); -} -inline void RunChartDownsampleRequest::_internal_set_x_column_name(const std::string& value) { - ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.x_column_name_.Set(value, GetArena()); -} -inline std::string* RunChartDownsampleRequest::_internal_mutable_x_column_name() { - ::google::protobuf::internal::TSanWrite(&_impl_); - return _impl_.x_column_name_.Mutable( GetArena()); -} -inline std::string* RunChartDownsampleRequest::release_x_column_name() { - ::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) { - ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.x_column_name_.SetAllocated(value, GetArena()); - #ifdef PROTOBUF_FORCE_COPY_DEFAULT_STRING - if (_impl_.x_column_name_.IsDefault()) { - _impl_.x_column_name_.Set("", GetArena()); - } - #endif // PROTOBUF_FORCE_COPY_DEFAULT_STRING - // @@protoc_insertion_point(field_set_allocated:io.deephaven.proto.backplane.grpc.RunChartDownsampleRequest.x_column_name) -} - -// repeated string y_column_names = 6; -inline int RunChartDownsampleRequest::_internal_y_column_names_size() const { - return _internal_y_column_names().size(); -} -inline int RunChartDownsampleRequest::y_column_names_size() const { - return _internal_y_column_names_size(); -} -inline void RunChartDownsampleRequest::clear_y_column_names() { - ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.y_column_names_.Clear(); -} -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; -} -inline const std::string& RunChartDownsampleRequest::y_column_names(int index) const - ABSL_ATTRIBUTE_LIFETIME_BOUND { - // @@protoc_insertion_point(field_get:io.deephaven.proto.backplane.grpc.RunChartDownsampleRequest.y_column_names) - return _internal_y_column_names().Get(index); -} -inline std::string* RunChartDownsampleRequest::mutable_y_column_names(int index) - ABSL_ATTRIBUTE_LIFETIME_BOUND { - // @@protoc_insertion_point(field_mutable:io.deephaven.proto.backplane.grpc.RunChartDownsampleRequest.y_column_names) - return _internal_mutable_y_column_names()->Mutable(index); -} -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) -} -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 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) - return _internal_y_column_names(); -} -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) - ::google::protobuf::internal::TSanWrite(&_impl_); - return _internal_mutable_y_column_names(); -} -inline const ::google::protobuf::RepeatedPtrField& -RunChartDownsampleRequest::_internal_y_column_names() const { - ::google::protobuf::internal::TSanRead(&_impl_); - return _impl_.y_column_names_; -} -inline ::google::protobuf::RepeatedPtrField* -RunChartDownsampleRequest::_internal_mutable_y_column_names() { - ::google::protobuf::internal::TSanRead(&_impl_); - return &_impl_.y_column_names_; -} - -// ------------------------------------------------------------------- - -// CreateInputTableRequest_InputTableKind_InMemoryAppendOnly - -// ------------------------------------------------------------------- - -// CreateInputTableRequest_InputTableKind_InMemoryKeyBacked - -// repeated string key_columns = 1; -inline int CreateInputTableRequest_InputTableKind_InMemoryKeyBacked::_internal_key_columns_size() const { - return _internal_key_columns().size(); -} -inline int CreateInputTableRequest_InputTableKind_InMemoryKeyBacked::key_columns_size() const { - return _internal_key_columns_size(); -} -inline void CreateInputTableRequest_InputTableKind_InMemoryKeyBacked::clear_key_columns() { - ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.key_columns_.Clear(); -} -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; -} -inline const std::string& CreateInputTableRequest_InputTableKind_InMemoryKeyBacked::key_columns(int index) const - ABSL_ATTRIBUTE_LIFETIME_BOUND { - // @@protoc_insertion_point(field_get:io.deephaven.proto.backplane.grpc.CreateInputTableRequest.InputTableKind.InMemoryKeyBacked.key_columns) - return _internal_key_columns().Get(index); -} -inline std::string* CreateInputTableRequest_InputTableKind_InMemoryKeyBacked::mutable_key_columns(int index) - ABSL_ATTRIBUTE_LIFETIME_BOUND { - // @@protoc_insertion_point(field_mutable:io.deephaven.proto.backplane.grpc.CreateInputTableRequest.InputTableKind.InMemoryKeyBacked.key_columns) - return _internal_mutable_key_columns()->Mutable(index); -} -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) -} -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 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) - return _internal_key_columns(); -} -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) - ::google::protobuf::internal::TSanWrite(&_impl_); - return _internal_mutable_key_columns(); -} -inline const ::google::protobuf::RepeatedPtrField& -CreateInputTableRequest_InputTableKind_InMemoryKeyBacked::_internal_key_columns() const { - ::google::protobuf::internal::TSanRead(&_impl_); - return _impl_.key_columns_; -} -inline ::google::protobuf::RepeatedPtrField* -CreateInputTableRequest_InputTableKind_InMemoryKeyBacked::_internal_mutable_key_columns() { - ::google::protobuf::internal::TSanRead(&_impl_); - return &_impl_.key_columns_; -} - -// ------------------------------------------------------------------- - -// CreateInputTableRequest_InputTableKind_Blink - -// ------------------------------------------------------------------- - -// CreateInputTableRequest_InputTableKind - -// .io.deephaven.proto.backplane.grpc.CreateInputTableRequest.InputTableKind.InMemoryAppendOnly in_memory_append_only = 1; -inline bool CreateInputTableRequest_InputTableKind::has_in_memory_append_only() const { - return kind_case() == kInMemoryAppendOnly; -} -inline bool CreateInputTableRequest_InputTableKind::_internal_has_in_memory_append_only() const { - return kind_case() == kInMemoryAppendOnly; -} -inline void CreateInputTableRequest_InputTableKind::set_has_in_memory_append_only() { - _impl_._oneof_case_[0] = kInMemoryAppendOnly; -} -inline void CreateInputTableRequest_InputTableKind::clear_in_memory_append_only() { - ::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(); - } -} -inline ::io::deephaven::proto::backplane::grpc::CreateInputTableRequest_InputTableKind_InMemoryAppendOnly* CreateInputTableRequest_InputTableKind::release_in_memory_append_only() { - // @@protoc_insertion_point(field_release:io.deephaven.proto.backplane.grpc.CreateInputTableRequest.InputTableKind.in_memory_append_only) - if (kind_case() == kInMemoryAppendOnly) { - clear_has_kind(); - auto* temp = _impl_.kind_.in_memory_append_only_; - if (GetArena() != nullptr) { - temp = ::google::protobuf::internal::DuplicateIfNonNull(temp); - } - _impl_.kind_.in_memory_append_only_ = nullptr; - return temp; - } else { - return nullptr; - } -} -inline const ::io::deephaven::proto::backplane::grpc::CreateInputTableRequest_InputTableKind_InMemoryAppendOnly& CreateInputTableRequest_InputTableKind::_internal_in_memory_append_only() const { - return kind_case() == kInMemoryAppendOnly ? *_impl_.kind_.in_memory_append_only_ : reinterpret_cast<::io::deephaven::proto::backplane::grpc::CreateInputTableRequest_InputTableKind_InMemoryAppendOnly&>(::io::deephaven::proto::backplane::grpc::_CreateInputTableRequest_InputTableKind_InMemoryAppendOnly_default_instance_); -} -inline const ::io::deephaven::proto::backplane::grpc::CreateInputTableRequest_InputTableKind_InMemoryAppendOnly& CreateInputTableRequest_InputTableKind::in_memory_append_only() const ABSL_ATTRIBUTE_LIFETIME_BOUND { - // @@protoc_insertion_point(field_get:io.deephaven.proto.backplane.grpc.CreateInputTableRequest.InputTableKind.in_memory_append_only) - return _internal_in_memory_append_only(); -} -inline ::io::deephaven::proto::backplane::grpc::CreateInputTableRequest_InputTableKind_InMemoryAppendOnly* CreateInputTableRequest_InputTableKind::unsafe_arena_release_in_memory_append_only() { - // @@protoc_insertion_point(field_unsafe_arena_release:io.deephaven.proto.backplane.grpc.CreateInputTableRequest.InputTableKind.in_memory_append_only) - if (kind_case() == kInMemoryAppendOnly) { - clear_has_kind(); - auto* temp = _impl_.kind_.in_memory_append_only_; - _impl_.kind_.in_memory_append_only_ = nullptr; - return temp; - } else { - return nullptr; - } -} -inline void CreateInputTableRequest_InputTableKind::unsafe_arena_set_allocated_in_memory_append_only(::io::deephaven::proto::backplane::grpc::CreateInputTableRequest_InputTableKind_InMemoryAppendOnly* value) { - // We rely on the oneof clear method to free the earlier contents - // of this oneof. We can directly use the pointer we're given to - // set the new value. - clear_kind(); - if (value) { - set_has_in_memory_append_only(); - _impl_.kind_.in_memory_append_only_ = value; - } - // @@protoc_insertion_point(field_unsafe_arena_set_allocated:io.deephaven.proto.backplane.grpc.CreateInputTableRequest.InputTableKind.in_memory_append_only) -} -inline ::io::deephaven::proto::backplane::grpc::CreateInputTableRequest_InputTableKind_InMemoryAppendOnly* CreateInputTableRequest_InputTableKind::_internal_mutable_in_memory_append_only() { - if (kind_case() != kInMemoryAppendOnly) { - clear_kind(); - set_has_in_memory_append_only(); - _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_; -} -inline ::io::deephaven::proto::backplane::grpc::CreateInputTableRequest_InputTableKind_InMemoryAppendOnly* CreateInputTableRequest_InputTableKind::mutable_in_memory_append_only() ABSL_ATTRIBUTE_LIFETIME_BOUND { - ::io::deephaven::proto::backplane::grpc::CreateInputTableRequest_InputTableKind_InMemoryAppendOnly* _msg = _internal_mutable_in_memory_append_only(); - // @@protoc_insertion_point(field_mutable:io.deephaven.proto.backplane.grpc.CreateInputTableRequest.InputTableKind.in_memory_append_only) - return _msg; -} - -// .io.deephaven.proto.backplane.grpc.CreateInputTableRequest.InputTableKind.InMemoryKeyBacked in_memory_key_backed = 2; -inline bool CreateInputTableRequest_InputTableKind::has_in_memory_key_backed() const { - return kind_case() == kInMemoryKeyBacked; -} -inline bool CreateInputTableRequest_InputTableKind::_internal_has_in_memory_key_backed() const { - return kind_case() == kInMemoryKeyBacked; -} -inline void CreateInputTableRequest_InputTableKind::set_has_in_memory_key_backed() { - _impl_._oneof_case_[0] = kInMemoryKeyBacked; -} -inline void CreateInputTableRequest_InputTableKind::clear_in_memory_key_backed() { - ::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(); - } -} -inline ::io::deephaven::proto::backplane::grpc::CreateInputTableRequest_InputTableKind_InMemoryKeyBacked* CreateInputTableRequest_InputTableKind::release_in_memory_key_backed() { - // @@protoc_insertion_point(field_release:io.deephaven.proto.backplane.grpc.CreateInputTableRequest.InputTableKind.in_memory_key_backed) - if (kind_case() == kInMemoryKeyBacked) { - clear_has_kind(); - auto* temp = _impl_.kind_.in_memory_key_backed_; - if (GetArena() != nullptr) { - temp = ::google::protobuf::internal::DuplicateIfNonNull(temp); - } - _impl_.kind_.in_memory_key_backed_ = nullptr; - return temp; - } else { - return nullptr; - } -} -inline const ::io::deephaven::proto::backplane::grpc::CreateInputTableRequest_InputTableKind_InMemoryKeyBacked& CreateInputTableRequest_InputTableKind::_internal_in_memory_key_backed() const { - return kind_case() == kInMemoryKeyBacked ? *_impl_.kind_.in_memory_key_backed_ : reinterpret_cast<::io::deephaven::proto::backplane::grpc::CreateInputTableRequest_InputTableKind_InMemoryKeyBacked&>(::io::deephaven::proto::backplane::grpc::_CreateInputTableRequest_InputTableKind_InMemoryKeyBacked_default_instance_); -} -inline const ::io::deephaven::proto::backplane::grpc::CreateInputTableRequest_InputTableKind_InMemoryKeyBacked& CreateInputTableRequest_InputTableKind::in_memory_key_backed() const ABSL_ATTRIBUTE_LIFETIME_BOUND { - // @@protoc_insertion_point(field_get:io.deephaven.proto.backplane.grpc.CreateInputTableRequest.InputTableKind.in_memory_key_backed) - return _internal_in_memory_key_backed(); -} -inline ::io::deephaven::proto::backplane::grpc::CreateInputTableRequest_InputTableKind_InMemoryKeyBacked* CreateInputTableRequest_InputTableKind::unsafe_arena_release_in_memory_key_backed() { - // @@protoc_insertion_point(field_unsafe_arena_release:io.deephaven.proto.backplane.grpc.CreateInputTableRequest.InputTableKind.in_memory_key_backed) - if (kind_case() == kInMemoryKeyBacked) { - clear_has_kind(); - auto* temp = _impl_.kind_.in_memory_key_backed_; - _impl_.kind_.in_memory_key_backed_ = nullptr; - return temp; - } else { - return nullptr; - } -} -inline void CreateInputTableRequest_InputTableKind::unsafe_arena_set_allocated_in_memory_key_backed(::io::deephaven::proto::backplane::grpc::CreateInputTableRequest_InputTableKind_InMemoryKeyBacked* value) { - // We rely on the oneof clear method to free the earlier contents - // of this oneof. We can directly use the pointer we're given to - // set the new value. - clear_kind(); - if (value) { - set_has_in_memory_key_backed(); - _impl_.kind_.in_memory_key_backed_ = value; - } - // @@protoc_insertion_point(field_unsafe_arena_set_allocated:io.deephaven.proto.backplane.grpc.CreateInputTableRequest.InputTableKind.in_memory_key_backed) -} -inline ::io::deephaven::proto::backplane::grpc::CreateInputTableRequest_InputTableKind_InMemoryKeyBacked* CreateInputTableRequest_InputTableKind::_internal_mutable_in_memory_key_backed() { - if (kind_case() != kInMemoryKeyBacked) { - clear_kind(); - set_has_in_memory_key_backed(); - _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_; -} -inline ::io::deephaven::proto::backplane::grpc::CreateInputTableRequest_InputTableKind_InMemoryKeyBacked* CreateInputTableRequest_InputTableKind::mutable_in_memory_key_backed() ABSL_ATTRIBUTE_LIFETIME_BOUND { - ::io::deephaven::proto::backplane::grpc::CreateInputTableRequest_InputTableKind_InMemoryKeyBacked* _msg = _internal_mutable_in_memory_key_backed(); - // @@protoc_insertion_point(field_mutable:io.deephaven.proto.backplane.grpc.CreateInputTableRequest.InputTableKind.in_memory_key_backed) - return _msg; -} - -// .io.deephaven.proto.backplane.grpc.CreateInputTableRequest.InputTableKind.Blink blink = 3; -inline bool CreateInputTableRequest_InputTableKind::has_blink() const { - return kind_case() == kBlink; -} -inline bool CreateInputTableRequest_InputTableKind::_internal_has_blink() const { - return kind_case() == kBlink; -} -inline void CreateInputTableRequest_InputTableKind::set_has_blink() { - _impl_._oneof_case_[0] = kBlink; -} -inline void CreateInputTableRequest_InputTableKind::clear_blink() { - ::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(); - } -} -inline ::io::deephaven::proto::backplane::grpc::CreateInputTableRequest_InputTableKind_Blink* CreateInputTableRequest_InputTableKind::release_blink() { - // @@protoc_insertion_point(field_release:io.deephaven.proto.backplane.grpc.CreateInputTableRequest.InputTableKind.blink) - if (kind_case() == kBlink) { - clear_has_kind(); - auto* temp = _impl_.kind_.blink_; - if (GetArena() != nullptr) { - temp = ::google::protobuf::internal::DuplicateIfNonNull(temp); - } - _impl_.kind_.blink_ = nullptr; - return temp; - } else { - return nullptr; - } -} -inline const ::io::deephaven::proto::backplane::grpc::CreateInputTableRequest_InputTableKind_Blink& CreateInputTableRequest_InputTableKind::_internal_blink() const { - return kind_case() == kBlink ? *_impl_.kind_.blink_ : reinterpret_cast<::io::deephaven::proto::backplane::grpc::CreateInputTableRequest_InputTableKind_Blink&>(::io::deephaven::proto::backplane::grpc::_CreateInputTableRequest_InputTableKind_Blink_default_instance_); -} -inline const ::io::deephaven::proto::backplane::grpc::CreateInputTableRequest_InputTableKind_Blink& CreateInputTableRequest_InputTableKind::blink() const ABSL_ATTRIBUTE_LIFETIME_BOUND { - // @@protoc_insertion_point(field_get:io.deephaven.proto.backplane.grpc.CreateInputTableRequest.InputTableKind.blink) - return _internal_blink(); -} -inline ::io::deephaven::proto::backplane::grpc::CreateInputTableRequest_InputTableKind_Blink* CreateInputTableRequest_InputTableKind::unsafe_arena_release_blink() { - // @@protoc_insertion_point(field_unsafe_arena_release:io.deephaven.proto.backplane.grpc.CreateInputTableRequest.InputTableKind.blink) - if (kind_case() == kBlink) { - clear_has_kind(); - auto* temp = _impl_.kind_.blink_; - _impl_.kind_.blink_ = nullptr; - return temp; - } else { - return nullptr; - } -} -inline void CreateInputTableRequest_InputTableKind::unsafe_arena_set_allocated_blink(::io::deephaven::proto::backplane::grpc::CreateInputTableRequest_InputTableKind_Blink* value) { - // We rely on the oneof clear method to free the earlier contents - // of this oneof. We can directly use the pointer we're given to - // set the new value. - clear_kind(); - if (value) { - set_has_blink(); - _impl_.kind_.blink_ = value; - } - // @@protoc_insertion_point(field_unsafe_arena_set_allocated:io.deephaven.proto.backplane.grpc.CreateInputTableRequest.InputTableKind.blink) -} -inline ::io::deephaven::proto::backplane::grpc::CreateInputTableRequest_InputTableKind_Blink* CreateInputTableRequest_InputTableKind::_internal_mutable_blink() { - if (kind_case() != kBlink) { - clear_kind(); - set_has_blink(); - _impl_.kind_.blink_ = - ::google::protobuf::Message::DefaultConstruct<::io::deephaven::proto::backplane::grpc::CreateInputTableRequest_InputTableKind_Blink>(GetArena()); - } - return _impl_.kind_.blink_; -} -inline ::io::deephaven::proto::backplane::grpc::CreateInputTableRequest_InputTableKind_Blink* CreateInputTableRequest_InputTableKind::mutable_blink() ABSL_ATTRIBUTE_LIFETIME_BOUND { - ::io::deephaven::proto::backplane::grpc::CreateInputTableRequest_InputTableKind_Blink* _msg = _internal_mutable_blink(); - // @@protoc_insertion_point(field_mutable:io.deephaven.proto.backplane.grpc.CreateInputTableRequest.InputTableKind.blink) - return _msg; -} - -inline bool CreateInputTableRequest_InputTableKind::has_kind() const { - return kind_case() != KIND_NOT_SET; -} -inline void CreateInputTableRequest_InputTableKind::clear_has_kind() { - _impl_._oneof_case_[0] = KIND_NOT_SET; -} -inline CreateInputTableRequest_InputTableKind::KindCase CreateInputTableRequest_InputTableKind::kind_case() const { - return CreateInputTableRequest_InputTableKind::KindCase(_impl_._oneof_case_[0]); -} -// ------------------------------------------------------------------- - -// CreateInputTableRequest - -// .io.deephaven.proto.backplane.grpc.Ticket result_id = 1; -inline bool CreateInputTableRequest::has_result_id() const { - bool value = (_impl_._has_bits_[0] & 0x00000001u) != 0; - PROTOBUF_ASSUME(!value || _impl_.result_id_ != nullptr); - return value; -} -inline const ::io::deephaven::proto::backplane::grpc::Ticket& CreateInputTableRequest::_internal_result_id() const { - ::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_); -} -inline const ::io::deephaven::proto::backplane::grpc::Ticket& CreateInputTableRequest::result_id() const ABSL_ATTRIBUTE_LIFETIME_BOUND { - // @@protoc_insertion_point(field_get:io.deephaven.proto.backplane.grpc.CreateInputTableRequest.result_id) - return _internal_result_id(); -} -inline void CreateInputTableRequest::unsafe_arena_set_allocated_result_id(::io::deephaven::proto::backplane::grpc::Ticket* value) { - ::google::protobuf::internal::TSanWrite(&_impl_); - if (GetArena() == nullptr) { - delete reinterpret_cast<::google::protobuf::MessageLite*>(_impl_.result_id_); - } - _impl_.result_id_ = reinterpret_cast<::io::deephaven::proto::backplane::grpc::Ticket*>(value); - if (value != nullptr) { - _impl_._has_bits_[0] |= 0x00000001u; - } else { - _impl_._has_bits_[0] &= ~0x00000001u; - } - // @@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() { - ::google::protobuf::internal::TSanWrite(&_impl_); - - _impl_._has_bits_[0] &= ~0x00000001u; - ::io::deephaven::proto::backplane::grpc::Ticket* released = _impl_.result_id_; - _impl_.result_id_ = nullptr; -#ifdef PROTOBUF_FORCE_COPY_IN_RELEASE - auto* old = reinterpret_cast<::google::protobuf::MessageLite*>(released); - released = ::google::protobuf::internal::DuplicateIfNonNull(released); - if (GetArena() == nullptr) { - delete old; - } -#else // PROTOBUF_FORCE_COPY_IN_RELEASE - if (GetArena() != nullptr) { - released = ::google::protobuf::internal::DuplicateIfNonNull(released); - } -#endif // !PROTOBUF_FORCE_COPY_IN_RELEASE - return released; -} -inline ::io::deephaven::proto::backplane::grpc::Ticket* CreateInputTableRequest::unsafe_arena_release_result_id() { - ::google::protobuf::internal::TSanWrite(&_impl_); - // @@protoc_insertion_point(field_release:io.deephaven.proto.backplane.grpc.CreateInputTableRequest.result_id) - - _impl_._has_bits_[0] &= ~0x00000001u; - ::io::deephaven::proto::backplane::grpc::Ticket* temp = _impl_.result_id_; - _impl_.result_id_ = nullptr; - return temp; -} -inline ::io::deephaven::proto::backplane::grpc::Ticket* CreateInputTableRequest::_internal_mutable_result_id() { - ::google::protobuf::internal::TSanWrite(&_impl_); - if (_impl_.result_id_ == nullptr) { - 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(); - ::google::protobuf::internal::TSanWrite(&_impl_); - if (message_arena == nullptr) { - delete reinterpret_cast<::google::protobuf::MessageLite*>(_impl_.result_id_); - } - - if (value != nullptr) { - ::google::protobuf::Arena* submessage_arena = reinterpret_cast<::google::protobuf::MessageLite*>(value)->GetArena(); - if (message_arena != submessage_arena) { - value = ::google::protobuf::internal::GetOwnedMessage(message_arena, value, submessage_arena); - } - _impl_._has_bits_[0] |= 0x00000001u; - } else { - _impl_._has_bits_[0] &= ~0x00000001u; - } - - _impl_.result_id_ = reinterpret_cast<::io::deephaven::proto::backplane::grpc::Ticket*>(value); - // @@protoc_insertion_point(field_set_allocated:io.deephaven.proto.backplane.grpc.CreateInputTableRequest.result_id) -} - -// .io.deephaven.proto.backplane.grpc.TableReference source_table_id = 2; -inline bool CreateInputTableRequest::has_source_table_id() const { - return definition_case() == kSourceTableId; -} -inline bool CreateInputTableRequest::_internal_has_source_table_id() const { - return definition_case() == kSourceTableId; -} -inline void CreateInputTableRequest::set_has_source_table_id() { - _impl_._oneof_case_[0] = kSourceTableId; -} -inline void CreateInputTableRequest::clear_source_table_id() { - ::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(); - } -} -inline ::io::deephaven::proto::backplane::grpc::TableReference* CreateInputTableRequest::release_source_table_id() { - // @@protoc_insertion_point(field_release:io.deephaven.proto.backplane.grpc.CreateInputTableRequest.source_table_id) - if (definition_case() == kSourceTableId) { - clear_has_definition(); - auto* temp = _impl_.definition_.source_table_id_; - if (GetArena() != nullptr) { - temp = ::google::protobuf::internal::DuplicateIfNonNull(temp); - } - _impl_.definition_.source_table_id_ = nullptr; - return temp; - } else { - return nullptr; - } -} -inline const ::io::deephaven::proto::backplane::grpc::TableReference& CreateInputTableRequest::_internal_source_table_id() const { - return definition_case() == kSourceTableId ? *_impl_.definition_.source_table_id_ : reinterpret_cast<::io::deephaven::proto::backplane::grpc::TableReference&>(::io::deephaven::proto::backplane::grpc::_TableReference_default_instance_); -} -inline const ::io::deephaven::proto::backplane::grpc::TableReference& CreateInputTableRequest::source_table_id() const ABSL_ATTRIBUTE_LIFETIME_BOUND { - // @@protoc_insertion_point(field_get:io.deephaven.proto.backplane.grpc.CreateInputTableRequest.source_table_id) - return _internal_source_table_id(); -} -inline ::io::deephaven::proto::backplane::grpc::TableReference* CreateInputTableRequest::unsafe_arena_release_source_table_id() { - // @@protoc_insertion_point(field_unsafe_arena_release:io.deephaven.proto.backplane.grpc.CreateInputTableRequest.source_table_id) - if (definition_case() == kSourceTableId) { - clear_has_definition(); - auto* temp = _impl_.definition_.source_table_id_; - _impl_.definition_.source_table_id_ = nullptr; - return temp; - } else { - return nullptr; - } -} -inline void CreateInputTableRequest::unsafe_arena_set_allocated_source_table_id(::io::deephaven::proto::backplane::grpc::TableReference* value) { - // We rely on the oneof clear method to free the earlier contents - // of this oneof. We can directly use the pointer we're given to - // set the new value. - clear_definition(); - if (value) { - set_has_source_table_id(); - _impl_.definition_.source_table_id_ = value; - } - // @@protoc_insertion_point(field_unsafe_arena_set_allocated:io.deephaven.proto.backplane.grpc.CreateInputTableRequest.source_table_id) -} -inline ::io::deephaven::proto::backplane::grpc::TableReference* CreateInputTableRequest::_internal_mutable_source_table_id() { - if (definition_case() != kSourceTableId) { - clear_definition(); - set_has_source_table_id(); - _impl_.definition_.source_table_id_ = - ::google::protobuf::Message::DefaultConstruct<::io::deephaven::proto::backplane::grpc::TableReference>(GetArena()); - } - return _impl_.definition_.source_table_id_; -} -inline ::io::deephaven::proto::backplane::grpc::TableReference* CreateInputTableRequest::mutable_source_table_id() ABSL_ATTRIBUTE_LIFETIME_BOUND { - ::io::deephaven::proto::backplane::grpc::TableReference* _msg = _internal_mutable_source_table_id(); - // @@protoc_insertion_point(field_mutable:io.deephaven.proto.backplane.grpc.CreateInputTableRequest.source_table_id) - return _msg; -} - -// bytes schema = 3; -inline bool CreateInputTableRequest::has_schema() const { - return definition_case() == kSchema; -} -inline void CreateInputTableRequest::set_has_schema() { - _impl_._oneof_case_[0] = kSchema; -} -inline void CreateInputTableRequest::clear_schema() { - ::google::protobuf::internal::TSanWrite(&_impl_); - if (definition_case() == kSchema) { - _impl_.definition_.schema_.Destroy(); - clear_has_definition(); - } -} -inline const std::string& CreateInputTableRequest::schema() const - ABSL_ATTRIBUTE_LIFETIME_BOUND { - // @@protoc_insertion_point(field_get:io.deephaven.proto.backplane.grpc.CreateInputTableRequest.schema) - return _internal_schema(); -} -template -inline PROTOBUF_ALWAYS_INLINE void CreateInputTableRequest::set_schema(Arg_&& arg, - Args_... args) { - ::google::protobuf::internal::TSanWrite(&_impl_); - if (definition_case() != kSchema) { - clear_definition(); - - set_has_schema(); - _impl_.definition_.schema_.InitDefault(); - } - _impl_.definition_.schema_.SetBytes(static_cast(arg), args..., GetArena()); - // @@protoc_insertion_point(field_set:io.deephaven.proto.backplane.grpc.CreateInputTableRequest.schema) -} -inline std::string* CreateInputTableRequest::mutable_schema() ABSL_ATTRIBUTE_LIFETIME_BOUND { - std::string* _s = _internal_mutable_schema(); - // @@protoc_insertion_point(field_mutable:io.deephaven.proto.backplane.grpc.CreateInputTableRequest.schema) - return _s; -} -inline const std::string& CreateInputTableRequest::_internal_schema() const { - ::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) { - ::google::protobuf::internal::TSanWrite(&_impl_); - if (definition_case() != kSchema) { - clear_definition(); - - set_has_schema(); - _impl_.definition_.schema_.InitDefault(); - } - _impl_.definition_.schema_.Set(value, GetArena()); -} -inline std::string* CreateInputTableRequest::_internal_mutable_schema() { - ::google::protobuf::internal::TSanWrite(&_impl_); - if (definition_case() != kSchema) { - clear_definition(); - - set_has_schema(); - _impl_.definition_.schema_.InitDefault(); - } - return _impl_.definition_.schema_.Mutable( GetArena()); -} -inline std::string* CreateInputTableRequest::release_schema() { - ::google::protobuf::internal::TSanWrite(&_impl_); - // @@protoc_insertion_point(field_release:io.deephaven.proto.backplane.grpc.CreateInputTableRequest.schema) - if (definition_case() != kSchema) { - return nullptr; - } - clear_has_definition(); - return _impl_.definition_.schema_.Release(); -} -inline void CreateInputTableRequest::set_allocated_schema(std::string* value) { - ::google::protobuf::internal::TSanWrite(&_impl_); - if (has_definition()) { - clear_definition(); - } - if (value != nullptr) { - set_has_schema(); - _impl_.definition_.schema_.InitAllocated(value, GetArena()); - } - // @@protoc_insertion_point(field_set_allocated:io.deephaven.proto.backplane.grpc.CreateInputTableRequest.schema) -} - -// .io.deephaven.proto.backplane.grpc.CreateInputTableRequest.InputTableKind kind = 4; -inline bool CreateInputTableRequest::has_kind() const { - bool value = (_impl_._has_bits_[0] & 0x00000002u) != 0; - PROTOBUF_ASSUME(!value || _impl_.kind_ != nullptr); - return value; -} -inline void CreateInputTableRequest::clear_kind() { - ::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 { - ::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_); -} -inline const ::io::deephaven::proto::backplane::grpc::CreateInputTableRequest_InputTableKind& CreateInputTableRequest::kind() const ABSL_ATTRIBUTE_LIFETIME_BOUND { - // @@protoc_insertion_point(field_get:io.deephaven.proto.backplane.grpc.CreateInputTableRequest.kind) - return _internal_kind(); -} -inline void CreateInputTableRequest::unsafe_arena_set_allocated_kind(::io::deephaven::proto::backplane::grpc::CreateInputTableRequest_InputTableKind* value) { - ::google::protobuf::internal::TSanWrite(&_impl_); - if (GetArena() == nullptr) { - delete reinterpret_cast<::google::protobuf::MessageLite*>(_impl_.kind_); - } - _impl_.kind_ = reinterpret_cast<::io::deephaven::proto::backplane::grpc::CreateInputTableRequest_InputTableKind*>(value); - if (value != nullptr) { - _impl_._has_bits_[0] |= 0x00000002u; - } else { - _impl_._has_bits_[0] &= ~0x00000002u; - } - // @@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() { - ::google::protobuf::internal::TSanWrite(&_impl_); - - _impl_._has_bits_[0] &= ~0x00000002u; - ::io::deephaven::proto::backplane::grpc::CreateInputTableRequest_InputTableKind* released = _impl_.kind_; - _impl_.kind_ = nullptr; -#ifdef PROTOBUF_FORCE_COPY_IN_RELEASE - auto* old = reinterpret_cast<::google::protobuf::MessageLite*>(released); - released = ::google::protobuf::internal::DuplicateIfNonNull(released); - if (GetArena() == nullptr) { - delete old; - } -#else // PROTOBUF_FORCE_COPY_IN_RELEASE - if (GetArena() != nullptr) { - released = ::google::protobuf::internal::DuplicateIfNonNull(released); - } -#endif // !PROTOBUF_FORCE_COPY_IN_RELEASE - return released; -} -inline ::io::deephaven::proto::backplane::grpc::CreateInputTableRequest_InputTableKind* CreateInputTableRequest::unsafe_arena_release_kind() { - ::google::protobuf::internal::TSanWrite(&_impl_); - // @@protoc_insertion_point(field_release:io.deephaven.proto.backplane.grpc.CreateInputTableRequest.kind) - - _impl_._has_bits_[0] &= ~0x00000002u; - ::io::deephaven::proto::backplane::grpc::CreateInputTableRequest_InputTableKind* temp = _impl_.kind_; - _impl_.kind_ = nullptr; - return temp; -} -inline ::io::deephaven::proto::backplane::grpc::CreateInputTableRequest_InputTableKind* CreateInputTableRequest::_internal_mutable_kind() { - ::google::protobuf::internal::TSanWrite(&_impl_); - if (_impl_.kind_ == nullptr) { - 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(); - ::google::protobuf::internal::TSanWrite(&_impl_); - if (message_arena == nullptr) { - delete (_impl_.kind_); - } - - if (value != nullptr) { - ::google::protobuf::Arena* submessage_arena = (value)->GetArena(); - if (message_arena != submessage_arena) { - value = ::google::protobuf::internal::GetOwnedMessage(message_arena, value, submessage_arena); - } - _impl_._has_bits_[0] |= 0x00000002u; - } else { - _impl_._has_bits_[0] &= ~0x00000002u; - } - - _impl_.kind_ = reinterpret_cast<::io::deephaven::proto::backplane::grpc::CreateInputTableRequest_InputTableKind*>(value); - // @@protoc_insertion_point(field_set_allocated:io.deephaven.proto.backplane.grpc.CreateInputTableRequest.kind) -} - -inline bool CreateInputTableRequest::has_definition() const { - return definition_case() != DEFINITION_NOT_SET; -} -inline void CreateInputTableRequest::clear_has_definition() { - _impl_._oneof_case_[0] = DEFINITION_NOT_SET; -} -inline CreateInputTableRequest::DefinitionCase CreateInputTableRequest::definition_case() const { - return CreateInputTableRequest::DefinitionCase(_impl_._oneof_case_[0]); -} -// ------------------------------------------------------------------- - -// WhereInRequest - -// .io.deephaven.proto.backplane.grpc.Ticket result_id = 1; -inline bool WhereInRequest::has_result_id() const { - bool value = (_impl_._has_bits_[0] & 0x00000001u) != 0; - PROTOBUF_ASSUME(!value || _impl_.result_id_ != nullptr); - return value; -} -inline const ::io::deephaven::proto::backplane::grpc::Ticket& WhereInRequest::_internal_result_id() const { - ::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_); -} -inline const ::io::deephaven::proto::backplane::grpc::Ticket& WhereInRequest::result_id() const ABSL_ATTRIBUTE_LIFETIME_BOUND { - // @@protoc_insertion_point(field_get:io.deephaven.proto.backplane.grpc.WhereInRequest.result_id) - return _internal_result_id(); -} -inline void WhereInRequest::unsafe_arena_set_allocated_result_id(::io::deephaven::proto::backplane::grpc::Ticket* value) { - ::google::protobuf::internal::TSanWrite(&_impl_); - if (GetArena() == nullptr) { - delete reinterpret_cast<::google::protobuf::MessageLite*>(_impl_.result_id_); - } - _impl_.result_id_ = reinterpret_cast<::io::deephaven::proto::backplane::grpc::Ticket*>(value); - if (value != nullptr) { - _impl_._has_bits_[0] |= 0x00000001u; - } else { - _impl_._has_bits_[0] &= ~0x00000001u; - } - // @@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() { - ::google::protobuf::internal::TSanWrite(&_impl_); - - _impl_._has_bits_[0] &= ~0x00000001u; - ::io::deephaven::proto::backplane::grpc::Ticket* released = _impl_.result_id_; - _impl_.result_id_ = nullptr; -#ifdef PROTOBUF_FORCE_COPY_IN_RELEASE - auto* old = reinterpret_cast<::google::protobuf::MessageLite*>(released); - released = ::google::protobuf::internal::DuplicateIfNonNull(released); - if (GetArena() == nullptr) { - delete old; - } -#else // PROTOBUF_FORCE_COPY_IN_RELEASE - if (GetArena() != nullptr) { - released = ::google::protobuf::internal::DuplicateIfNonNull(released); - } -#endif // !PROTOBUF_FORCE_COPY_IN_RELEASE - return released; -} -inline ::io::deephaven::proto::backplane::grpc::Ticket* WhereInRequest::unsafe_arena_release_result_id() { - ::google::protobuf::internal::TSanWrite(&_impl_); - // @@protoc_insertion_point(field_release:io.deephaven.proto.backplane.grpc.WhereInRequest.result_id) - - _impl_._has_bits_[0] &= ~0x00000001u; - ::io::deephaven::proto::backplane::grpc::Ticket* temp = _impl_.result_id_; - _impl_.result_id_ = nullptr; - return temp; -} -inline ::io::deephaven::proto::backplane::grpc::Ticket* WhereInRequest::_internal_mutable_result_id() { - ::google::protobuf::internal::TSanWrite(&_impl_); - if (_impl_.result_id_ == nullptr) { - 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(); - ::google::protobuf::internal::TSanWrite(&_impl_); - if (message_arena == nullptr) { - delete reinterpret_cast<::google::protobuf::MessageLite*>(_impl_.result_id_); - } - - if (value != nullptr) { - ::google::protobuf::Arena* submessage_arena = reinterpret_cast<::google::protobuf::MessageLite*>(value)->GetArena(); - if (message_arena != submessage_arena) { - value = ::google::protobuf::internal::GetOwnedMessage(message_arena, value, submessage_arena); - } - _impl_._has_bits_[0] |= 0x00000001u; - } else { - _impl_._has_bits_[0] &= ~0x00000001u; - } - - _impl_.result_id_ = reinterpret_cast<::io::deephaven::proto::backplane::grpc::Ticket*>(value); - // @@protoc_insertion_point(field_set_allocated:io.deephaven.proto.backplane.grpc.WhereInRequest.result_id) -} - -// .io.deephaven.proto.backplane.grpc.TableReference left_id = 2; -inline bool WhereInRequest::has_left_id() const { - bool value = (_impl_._has_bits_[0] & 0x00000002u) != 0; - PROTOBUF_ASSUME(!value || _impl_.left_id_ != nullptr); - return value; -} -inline void WhereInRequest::clear_left_id() { - ::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 { - ::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_); -} -inline const ::io::deephaven::proto::backplane::grpc::TableReference& WhereInRequest::left_id() const ABSL_ATTRIBUTE_LIFETIME_BOUND { - // @@protoc_insertion_point(field_get:io.deephaven.proto.backplane.grpc.WhereInRequest.left_id) - return _internal_left_id(); -} -inline void WhereInRequest::unsafe_arena_set_allocated_left_id(::io::deephaven::proto::backplane::grpc::TableReference* value) { - ::google::protobuf::internal::TSanWrite(&_impl_); - if (GetArena() == nullptr) { - delete reinterpret_cast<::google::protobuf::MessageLite*>(_impl_.left_id_); - } - _impl_.left_id_ = reinterpret_cast<::io::deephaven::proto::backplane::grpc::TableReference*>(value); - if (value != nullptr) { - _impl_._has_bits_[0] |= 0x00000002u; - } else { - _impl_._has_bits_[0] &= ~0x00000002u; - } - // @@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() { - ::google::protobuf::internal::TSanWrite(&_impl_); - - _impl_._has_bits_[0] &= ~0x00000002u; - ::io::deephaven::proto::backplane::grpc::TableReference* released = _impl_.left_id_; - _impl_.left_id_ = nullptr; -#ifdef PROTOBUF_FORCE_COPY_IN_RELEASE - auto* old = reinterpret_cast<::google::protobuf::MessageLite*>(released); - released = ::google::protobuf::internal::DuplicateIfNonNull(released); - if (GetArena() == nullptr) { - delete old; - } -#else // PROTOBUF_FORCE_COPY_IN_RELEASE - if (GetArena() != nullptr) { - released = ::google::protobuf::internal::DuplicateIfNonNull(released); - } -#endif // !PROTOBUF_FORCE_COPY_IN_RELEASE - return released; -} -inline ::io::deephaven::proto::backplane::grpc::TableReference* WhereInRequest::unsafe_arena_release_left_id() { - ::google::protobuf::internal::TSanWrite(&_impl_); - // @@protoc_insertion_point(field_release:io.deephaven.proto.backplane.grpc.WhereInRequest.left_id) - - _impl_._has_bits_[0] &= ~0x00000002u; - ::io::deephaven::proto::backplane::grpc::TableReference* temp = _impl_.left_id_; - _impl_.left_id_ = nullptr; - return temp; -} -inline ::io::deephaven::proto::backplane::grpc::TableReference* WhereInRequest::_internal_mutable_left_id() { - ::google::protobuf::internal::TSanWrite(&_impl_); - if (_impl_.left_id_ == nullptr) { - 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(); - ::google::protobuf::internal::TSanWrite(&_impl_); - if (message_arena == nullptr) { - delete (_impl_.left_id_); - } - - if (value != nullptr) { - ::google::protobuf::Arena* submessage_arena = (value)->GetArena(); - if (message_arena != submessage_arena) { - value = ::google::protobuf::internal::GetOwnedMessage(message_arena, value, submessage_arena); - } - _impl_._has_bits_[0] |= 0x00000002u; - } else { - _impl_._has_bits_[0] &= ~0x00000002u; - } - - _impl_.left_id_ = reinterpret_cast<::io::deephaven::proto::backplane::grpc::TableReference*>(value); - // @@protoc_insertion_point(field_set_allocated:io.deephaven.proto.backplane.grpc.WhereInRequest.left_id) -} - -// .io.deephaven.proto.backplane.grpc.TableReference right_id = 3; -inline bool WhereInRequest::has_right_id() const { - bool value = (_impl_._has_bits_[0] & 0x00000004u) != 0; - PROTOBUF_ASSUME(!value || _impl_.right_id_ != nullptr); - return value; -} -inline void WhereInRequest::clear_right_id() { - ::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 { - ::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_); -} -inline const ::io::deephaven::proto::backplane::grpc::TableReference& WhereInRequest::right_id() const ABSL_ATTRIBUTE_LIFETIME_BOUND { - // @@protoc_insertion_point(field_get:io.deephaven.proto.backplane.grpc.WhereInRequest.right_id) - return _internal_right_id(); -} -inline void WhereInRequest::unsafe_arena_set_allocated_right_id(::io::deephaven::proto::backplane::grpc::TableReference* value) { - ::google::protobuf::internal::TSanWrite(&_impl_); - if (GetArena() == nullptr) { - delete reinterpret_cast<::google::protobuf::MessageLite*>(_impl_.right_id_); - } - _impl_.right_id_ = reinterpret_cast<::io::deephaven::proto::backplane::grpc::TableReference*>(value); - if (value != nullptr) { - _impl_._has_bits_[0] |= 0x00000004u; - } else { - _impl_._has_bits_[0] &= ~0x00000004u; - } - // @@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() { - ::google::protobuf::internal::TSanWrite(&_impl_); - - _impl_._has_bits_[0] &= ~0x00000004u; - ::io::deephaven::proto::backplane::grpc::TableReference* released = _impl_.right_id_; - _impl_.right_id_ = nullptr; -#ifdef PROTOBUF_FORCE_COPY_IN_RELEASE - auto* old = reinterpret_cast<::google::protobuf::MessageLite*>(released); - released = ::google::protobuf::internal::DuplicateIfNonNull(released); - if (GetArena() == nullptr) { - delete old; - } -#else // PROTOBUF_FORCE_COPY_IN_RELEASE - if (GetArena() != nullptr) { - released = ::google::protobuf::internal::DuplicateIfNonNull(released); - } -#endif // !PROTOBUF_FORCE_COPY_IN_RELEASE - return released; -} -inline ::io::deephaven::proto::backplane::grpc::TableReference* WhereInRequest::unsafe_arena_release_right_id() { - ::google::protobuf::internal::TSanWrite(&_impl_); - // @@protoc_insertion_point(field_release:io.deephaven.proto.backplane.grpc.WhereInRequest.right_id) - - _impl_._has_bits_[0] &= ~0x00000004u; - ::io::deephaven::proto::backplane::grpc::TableReference* temp = _impl_.right_id_; - _impl_.right_id_ = nullptr; - return temp; -} -inline ::io::deephaven::proto::backplane::grpc::TableReference* WhereInRequest::_internal_mutable_right_id() { - ::google::protobuf::internal::TSanWrite(&_impl_); - if (_impl_.right_id_ == nullptr) { - 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(); - ::google::protobuf::internal::TSanWrite(&_impl_); - if (message_arena == nullptr) { - delete (_impl_.right_id_); - } - - if (value != nullptr) { - ::google::protobuf::Arena* submessage_arena = (value)->GetArena(); - if (message_arena != submessage_arena) { - value = ::google::protobuf::internal::GetOwnedMessage(message_arena, value, submessage_arena); - } - _impl_._has_bits_[0] |= 0x00000004u; - } else { - _impl_._has_bits_[0] &= ~0x00000004u; - } - - _impl_.right_id_ = reinterpret_cast<::io::deephaven::proto::backplane::grpc::TableReference*>(value); - // @@protoc_insertion_point(field_set_allocated:io.deephaven.proto.backplane.grpc.WhereInRequest.right_id) -} - -// bool inverted = 4; -inline void WhereInRequest::clear_inverted() { - ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.inverted_ = false; -} -inline bool WhereInRequest::inverted() const { - // @@protoc_insertion_point(field_get:io.deephaven.proto.backplane.grpc.WhereInRequest.inverted) - return _internal_inverted(); -} -inline void WhereInRequest::set_inverted(bool value) { - _internal_set_inverted(value); - // @@protoc_insertion_point(field_set:io.deephaven.proto.backplane.grpc.WhereInRequest.inverted) -} -inline bool WhereInRequest::_internal_inverted() const { - ::google::protobuf::internal::TSanRead(&_impl_); - return _impl_.inverted_; -} -inline void WhereInRequest::_internal_set_inverted(bool value) { - ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.inverted_ = value; -} - -// repeated string columns_to_match = 5; -inline int WhereInRequest::_internal_columns_to_match_size() const { - return _internal_columns_to_match().size(); -} -inline int WhereInRequest::columns_to_match_size() const { - return _internal_columns_to_match_size(); -} -inline void WhereInRequest::clear_columns_to_match() { - ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.columns_to_match_.Clear(); -} -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; -} -inline const std::string& WhereInRequest::columns_to_match(int index) const - ABSL_ATTRIBUTE_LIFETIME_BOUND { - // @@protoc_insertion_point(field_get:io.deephaven.proto.backplane.grpc.WhereInRequest.columns_to_match) - return _internal_columns_to_match().Get(index); -} -inline std::string* WhereInRequest::mutable_columns_to_match(int index) - ABSL_ATTRIBUTE_LIFETIME_BOUND { - // @@protoc_insertion_point(field_mutable:io.deephaven.proto.backplane.grpc.WhereInRequest.columns_to_match) - return _internal_mutable_columns_to_match()->Mutable(index); -} -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) -} -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 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) - return _internal_columns_to_match(); -} -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) - ::google::protobuf::internal::TSanWrite(&_impl_); - return _internal_mutable_columns_to_match(); -} -inline const ::google::protobuf::RepeatedPtrField& -WhereInRequest::_internal_columns_to_match() const { - ::google::protobuf::internal::TSanRead(&_impl_); - return _impl_.columns_to_match_; -} -inline ::google::protobuf::RepeatedPtrField* -WhereInRequest::_internal_mutable_columns_to_match() { - ::google::protobuf::internal::TSanRead(&_impl_); - return &_impl_.columns_to_match_; -} - -// ------------------------------------------------------------------- - -// ColumnStatisticsRequest - -// .io.deephaven.proto.backplane.grpc.Ticket result_id = 1; -inline bool ColumnStatisticsRequest::has_result_id() const { - bool value = (_impl_._has_bits_[0] & 0x00000001u) != 0; - PROTOBUF_ASSUME(!value || _impl_.result_id_ != nullptr); - return value; -} -inline const ::io::deephaven::proto::backplane::grpc::Ticket& ColumnStatisticsRequest::_internal_result_id() const { - ::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_); -} -inline const ::io::deephaven::proto::backplane::grpc::Ticket& ColumnStatisticsRequest::result_id() const ABSL_ATTRIBUTE_LIFETIME_BOUND { - // @@protoc_insertion_point(field_get:io.deephaven.proto.backplane.grpc.ColumnStatisticsRequest.result_id) - return _internal_result_id(); -} -inline void ColumnStatisticsRequest::unsafe_arena_set_allocated_result_id(::io::deephaven::proto::backplane::grpc::Ticket* value) { - ::google::protobuf::internal::TSanWrite(&_impl_); - if (GetArena() == nullptr) { - delete reinterpret_cast<::google::protobuf::MessageLite*>(_impl_.result_id_); - } - _impl_.result_id_ = reinterpret_cast<::io::deephaven::proto::backplane::grpc::Ticket*>(value); - if (value != nullptr) { - _impl_._has_bits_[0] |= 0x00000001u; - } else { - _impl_._has_bits_[0] &= ~0x00000001u; - } - // @@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() { - ::google::protobuf::internal::TSanWrite(&_impl_); - - _impl_._has_bits_[0] &= ~0x00000001u; - ::io::deephaven::proto::backplane::grpc::Ticket* released = _impl_.result_id_; - _impl_.result_id_ = nullptr; -#ifdef PROTOBUF_FORCE_COPY_IN_RELEASE - auto* old = reinterpret_cast<::google::protobuf::MessageLite*>(released); - released = ::google::protobuf::internal::DuplicateIfNonNull(released); - if (GetArena() == nullptr) { - delete old; - } -#else // PROTOBUF_FORCE_COPY_IN_RELEASE - if (GetArena() != nullptr) { - released = ::google::protobuf::internal::DuplicateIfNonNull(released); - } -#endif // !PROTOBUF_FORCE_COPY_IN_RELEASE - return released; -} -inline ::io::deephaven::proto::backplane::grpc::Ticket* ColumnStatisticsRequest::unsafe_arena_release_result_id() { - ::google::protobuf::internal::TSanWrite(&_impl_); - // @@protoc_insertion_point(field_release:io.deephaven.proto.backplane.grpc.ColumnStatisticsRequest.result_id) - - _impl_._has_bits_[0] &= ~0x00000001u; - ::io::deephaven::proto::backplane::grpc::Ticket* temp = _impl_.result_id_; - _impl_.result_id_ = nullptr; - return temp; -} -inline ::io::deephaven::proto::backplane::grpc::Ticket* ColumnStatisticsRequest::_internal_mutable_result_id() { - ::google::protobuf::internal::TSanWrite(&_impl_); - if (_impl_.result_id_ == nullptr) { - 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(); - ::google::protobuf::internal::TSanWrite(&_impl_); - if (message_arena == nullptr) { - delete reinterpret_cast<::google::protobuf::MessageLite*>(_impl_.result_id_); - } - - if (value != nullptr) { - ::google::protobuf::Arena* submessage_arena = reinterpret_cast<::google::protobuf::MessageLite*>(value)->GetArena(); - if (message_arena != submessage_arena) { - value = ::google::protobuf::internal::GetOwnedMessage(message_arena, value, submessage_arena); - } - _impl_._has_bits_[0] |= 0x00000001u; - } else { - _impl_._has_bits_[0] &= ~0x00000001u; - } - - _impl_.result_id_ = reinterpret_cast<::io::deephaven::proto::backplane::grpc::Ticket*>(value); - // @@protoc_insertion_point(field_set_allocated:io.deephaven.proto.backplane.grpc.ColumnStatisticsRequest.result_id) -} - -// .io.deephaven.proto.backplane.grpc.TableReference source_id = 2; -inline bool ColumnStatisticsRequest::has_source_id() const { - bool value = (_impl_._has_bits_[0] & 0x00000002u) != 0; - PROTOBUF_ASSUME(!value || _impl_.source_id_ != nullptr); - return value; -} -inline void ColumnStatisticsRequest::clear_source_id() { - ::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 { - ::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_); -} -inline const ::io::deephaven::proto::backplane::grpc::TableReference& ColumnStatisticsRequest::source_id() const ABSL_ATTRIBUTE_LIFETIME_BOUND { - // @@protoc_insertion_point(field_get:io.deephaven.proto.backplane.grpc.ColumnStatisticsRequest.source_id) - return _internal_source_id(); -} -inline void ColumnStatisticsRequest::unsafe_arena_set_allocated_source_id(::io::deephaven::proto::backplane::grpc::TableReference* value) { - ::google::protobuf::internal::TSanWrite(&_impl_); - if (GetArena() == nullptr) { - delete reinterpret_cast<::google::protobuf::MessageLite*>(_impl_.source_id_); - } - _impl_.source_id_ = reinterpret_cast<::io::deephaven::proto::backplane::grpc::TableReference*>(value); - if (value != nullptr) { - _impl_._has_bits_[0] |= 0x00000002u; - } else { - _impl_._has_bits_[0] &= ~0x00000002u; - } - // @@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() { - ::google::protobuf::internal::TSanWrite(&_impl_); - - _impl_._has_bits_[0] &= ~0x00000002u; - ::io::deephaven::proto::backplane::grpc::TableReference* released = _impl_.source_id_; - _impl_.source_id_ = nullptr; -#ifdef PROTOBUF_FORCE_COPY_IN_RELEASE - auto* old = reinterpret_cast<::google::protobuf::MessageLite*>(released); - released = ::google::protobuf::internal::DuplicateIfNonNull(released); - if (GetArena() == nullptr) { - delete old; - } -#else // PROTOBUF_FORCE_COPY_IN_RELEASE - if (GetArena() != nullptr) { - released = ::google::protobuf::internal::DuplicateIfNonNull(released); - } -#endif // !PROTOBUF_FORCE_COPY_IN_RELEASE - return released; -} -inline ::io::deephaven::proto::backplane::grpc::TableReference* ColumnStatisticsRequest::unsafe_arena_release_source_id() { - ::google::protobuf::internal::TSanWrite(&_impl_); - // @@protoc_insertion_point(field_release:io.deephaven.proto.backplane.grpc.ColumnStatisticsRequest.source_id) - - _impl_._has_bits_[0] &= ~0x00000002u; - ::io::deephaven::proto::backplane::grpc::TableReference* temp = _impl_.source_id_; - _impl_.source_id_ = nullptr; - return temp; -} -inline ::io::deephaven::proto::backplane::grpc::TableReference* ColumnStatisticsRequest::_internal_mutable_source_id() { - ::google::protobuf::internal::TSanWrite(&_impl_); - if (_impl_.source_id_ == nullptr) { - 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(); - ::google::protobuf::internal::TSanWrite(&_impl_); - if (message_arena == nullptr) { - delete (_impl_.source_id_); - } - - if (value != nullptr) { - ::google::protobuf::Arena* submessage_arena = (value)->GetArena(); - if (message_arena != submessage_arena) { - value = ::google::protobuf::internal::GetOwnedMessage(message_arena, value, submessage_arena); - } - _impl_._has_bits_[0] |= 0x00000002u; - } else { - _impl_._has_bits_[0] &= ~0x00000002u; - } - - _impl_.source_id_ = reinterpret_cast<::io::deephaven::proto::backplane::grpc::TableReference*>(value); - // @@protoc_insertion_point(field_set_allocated:io.deephaven.proto.backplane.grpc.ColumnStatisticsRequest.source_id) -} - -// string column_name = 3; -inline void ColumnStatisticsRequest::clear_column_name() { - ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.column_name_.ClearToEmpty(); -} -inline const std::string& ColumnStatisticsRequest::column_name() const - ABSL_ATTRIBUTE_LIFETIME_BOUND { - // @@protoc_insertion_point(field_get:io.deephaven.proto.backplane.grpc.ColumnStatisticsRequest.column_name) - return _internal_column_name(); -} -template -inline PROTOBUF_ALWAYS_INLINE void ColumnStatisticsRequest::set_column_name(Arg_&& arg, - Args_... args) { - ::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) -} -inline std::string* ColumnStatisticsRequest::mutable_column_name() ABSL_ATTRIBUTE_LIFETIME_BOUND { - std::string* _s = _internal_mutable_column_name(); - // @@protoc_insertion_point(field_mutable:io.deephaven.proto.backplane.grpc.ColumnStatisticsRequest.column_name) - return _s; -} -inline const std::string& ColumnStatisticsRequest::_internal_column_name() const { - ::google::protobuf::internal::TSanRead(&_impl_); - return _impl_.column_name_.Get(); -} -inline void ColumnStatisticsRequest::_internal_set_column_name(const std::string& value) { - ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.column_name_.Set(value, GetArena()); -} -inline std::string* ColumnStatisticsRequest::_internal_mutable_column_name() { - ::google::protobuf::internal::TSanWrite(&_impl_); - return _impl_.column_name_.Mutable( GetArena()); -} -inline std::string* ColumnStatisticsRequest::release_column_name() { - ::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) { - ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.column_name_.SetAllocated(value, GetArena()); - #ifdef PROTOBUF_FORCE_COPY_DEFAULT_STRING - if (_impl_.column_name_.IsDefault()) { - _impl_.column_name_.Set("", GetArena()); - } - #endif // PROTOBUF_FORCE_COPY_DEFAULT_STRING - // @@protoc_insertion_point(field_set_allocated:io.deephaven.proto.backplane.grpc.ColumnStatisticsRequest.column_name) -} - -// optional int32 unique_value_limit = 4; -inline bool ColumnStatisticsRequest::has_unique_value_limit() const { - bool value = (_impl_._has_bits_[0] & 0x00000004u) != 0; - return value; -} -inline void ColumnStatisticsRequest::clear_unique_value_limit() { - ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.unique_value_limit_ = 0; - _impl_._has_bits_[0] &= ~0x00000004u; -} -inline ::int32_t ColumnStatisticsRequest::unique_value_limit() const { - // @@protoc_insertion_point(field_get:io.deephaven.proto.backplane.grpc.ColumnStatisticsRequest.unique_value_limit) - return _internal_unique_value_limit(); -} -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 { - ::google::protobuf::internal::TSanRead(&_impl_); - return _impl_.unique_value_limit_; -} -inline void ColumnStatisticsRequest::_internal_set_unique_value_limit(::int32_t value) { - ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.unique_value_limit_ = value; -} - -// ------------------------------------------------------------------- - -// BatchTableRequest_Operation - -// .io.deephaven.proto.backplane.grpc.EmptyTableRequest empty_table = 1; -inline bool BatchTableRequest_Operation::has_empty_table() const { - return op_case() == kEmptyTable; -} -inline bool BatchTableRequest_Operation::_internal_has_empty_table() const { - return op_case() == kEmptyTable; -} -inline void BatchTableRequest_Operation::set_has_empty_table() { - _impl_._oneof_case_[0] = kEmptyTable; -} -inline void BatchTableRequest_Operation::clear_empty_table() { - ::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(); - } -} -inline ::io::deephaven::proto::backplane::grpc::EmptyTableRequest* BatchTableRequest_Operation::release_empty_table() { - // @@protoc_insertion_point(field_release:io.deephaven.proto.backplane.grpc.BatchTableRequest.Operation.empty_table) - if (op_case() == kEmptyTable) { - clear_has_op(); - auto* temp = _impl_.op_.empty_table_; - if (GetArena() != nullptr) { - temp = ::google::protobuf::internal::DuplicateIfNonNull(temp); - } - _impl_.op_.empty_table_ = nullptr; - return temp; - } else { - return nullptr; - } -} -inline const ::io::deephaven::proto::backplane::grpc::EmptyTableRequest& BatchTableRequest_Operation::_internal_empty_table() const { - return op_case() == kEmptyTable ? *_impl_.op_.empty_table_ : reinterpret_cast<::io::deephaven::proto::backplane::grpc::EmptyTableRequest&>(::io::deephaven::proto::backplane::grpc::_EmptyTableRequest_default_instance_); -} -inline const ::io::deephaven::proto::backplane::grpc::EmptyTableRequest& BatchTableRequest_Operation::empty_table() const ABSL_ATTRIBUTE_LIFETIME_BOUND { - // @@protoc_insertion_point(field_get:io.deephaven.proto.backplane.grpc.BatchTableRequest.Operation.empty_table) - return _internal_empty_table(); -} -inline ::io::deephaven::proto::backplane::grpc::EmptyTableRequest* BatchTableRequest_Operation::unsafe_arena_release_empty_table() { - // @@protoc_insertion_point(field_unsafe_arena_release:io.deephaven.proto.backplane.grpc.BatchTableRequest.Operation.empty_table) - if (op_case() == kEmptyTable) { - clear_has_op(); - auto* temp = _impl_.op_.empty_table_; - _impl_.op_.empty_table_ = nullptr; - return temp; - } else { - return nullptr; - } -} -inline void BatchTableRequest_Operation::unsafe_arena_set_allocated_empty_table(::io::deephaven::proto::backplane::grpc::EmptyTableRequest* value) { - // We rely on the oneof clear method to free the earlier contents - // of this oneof. We can directly use the pointer we're given to - // set the new value. - clear_op(); - if (value) { - set_has_empty_table(); - _impl_.op_.empty_table_ = value; - } - // @@protoc_insertion_point(field_unsafe_arena_set_allocated:io.deephaven.proto.backplane.grpc.BatchTableRequest.Operation.empty_table) -} -inline ::io::deephaven::proto::backplane::grpc::EmptyTableRequest* BatchTableRequest_Operation::_internal_mutable_empty_table() { - if (op_case() != kEmptyTable) { - clear_op(); - set_has_empty_table(); - _impl_.op_.empty_table_ = - ::google::protobuf::Message::DefaultConstruct<::io::deephaven::proto::backplane::grpc::EmptyTableRequest>(GetArena()); - } - return _impl_.op_.empty_table_; -} -inline ::io::deephaven::proto::backplane::grpc::EmptyTableRequest* BatchTableRequest_Operation::mutable_empty_table() ABSL_ATTRIBUTE_LIFETIME_BOUND { - ::io::deephaven::proto::backplane::grpc::EmptyTableRequest* _msg = _internal_mutable_empty_table(); - // @@protoc_insertion_point(field_mutable:io.deephaven.proto.backplane.grpc.BatchTableRequest.Operation.empty_table) - return _msg; -} - -// .io.deephaven.proto.backplane.grpc.TimeTableRequest time_table = 2; -inline bool BatchTableRequest_Operation::has_time_table() const { - return op_case() == kTimeTable; -} -inline bool BatchTableRequest_Operation::_internal_has_time_table() const { - return op_case() == kTimeTable; -} -inline void BatchTableRequest_Operation::set_has_time_table() { - _impl_._oneof_case_[0] = kTimeTable; -} -inline void BatchTableRequest_Operation::clear_time_table() { - ::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(); - } -} -inline ::io::deephaven::proto::backplane::grpc::TimeTableRequest* BatchTableRequest_Operation::release_time_table() { - // @@protoc_insertion_point(field_release:io.deephaven.proto.backplane.grpc.BatchTableRequest.Operation.time_table) - if (op_case() == kTimeTable) { - clear_has_op(); - auto* temp = _impl_.op_.time_table_; - if (GetArena() != nullptr) { - temp = ::google::protobuf::internal::DuplicateIfNonNull(temp); - } - _impl_.op_.time_table_ = nullptr; - return temp; - } else { - return nullptr; - } -} -inline const ::io::deephaven::proto::backplane::grpc::TimeTableRequest& BatchTableRequest_Operation::_internal_time_table() const { - return op_case() == kTimeTable ? *_impl_.op_.time_table_ : reinterpret_cast<::io::deephaven::proto::backplane::grpc::TimeTableRequest&>(::io::deephaven::proto::backplane::grpc::_TimeTableRequest_default_instance_); -} -inline const ::io::deephaven::proto::backplane::grpc::TimeTableRequest& BatchTableRequest_Operation::time_table() const ABSL_ATTRIBUTE_LIFETIME_BOUND { - // @@protoc_insertion_point(field_get:io.deephaven.proto.backplane.grpc.BatchTableRequest.Operation.time_table) - return _internal_time_table(); -} -inline ::io::deephaven::proto::backplane::grpc::TimeTableRequest* BatchTableRequest_Operation::unsafe_arena_release_time_table() { - // @@protoc_insertion_point(field_unsafe_arena_release:io.deephaven.proto.backplane.grpc.BatchTableRequest.Operation.time_table) - if (op_case() == kTimeTable) { - clear_has_op(); - auto* temp = _impl_.op_.time_table_; - _impl_.op_.time_table_ = nullptr; - return temp; - } else { - return nullptr; - } -} -inline void BatchTableRequest_Operation::unsafe_arena_set_allocated_time_table(::io::deephaven::proto::backplane::grpc::TimeTableRequest* value) { - // We rely on the oneof clear method to free the earlier contents - // of this oneof. We can directly use the pointer we're given to - // set the new value. - clear_op(); - if (value) { - set_has_time_table(); - _impl_.op_.time_table_ = value; - } - // @@protoc_insertion_point(field_unsafe_arena_set_allocated:io.deephaven.proto.backplane.grpc.BatchTableRequest.Operation.time_table) -} -inline ::io::deephaven::proto::backplane::grpc::TimeTableRequest* BatchTableRequest_Operation::_internal_mutable_time_table() { - if (op_case() != kTimeTable) { - clear_op(); - set_has_time_table(); - _impl_.op_.time_table_ = - ::google::protobuf::Message::DefaultConstruct<::io::deephaven::proto::backplane::grpc::TimeTableRequest>(GetArena()); - } - return _impl_.op_.time_table_; -} -inline ::io::deephaven::proto::backplane::grpc::TimeTableRequest* BatchTableRequest_Operation::mutable_time_table() ABSL_ATTRIBUTE_LIFETIME_BOUND { - ::io::deephaven::proto::backplane::grpc::TimeTableRequest* _msg = _internal_mutable_time_table(); - // @@protoc_insertion_point(field_mutable:io.deephaven.proto.backplane.grpc.BatchTableRequest.Operation.time_table) - return _msg; -} - -// .io.deephaven.proto.backplane.grpc.DropColumnsRequest drop_columns = 3; -inline bool BatchTableRequest_Operation::has_drop_columns() const { - return op_case() == kDropColumns; -} -inline bool BatchTableRequest_Operation::_internal_has_drop_columns() const { - return op_case() == kDropColumns; -} -inline void BatchTableRequest_Operation::set_has_drop_columns() { - _impl_._oneof_case_[0] = kDropColumns; -} -inline void BatchTableRequest_Operation::clear_drop_columns() { - ::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(); - } -} -inline ::io::deephaven::proto::backplane::grpc::DropColumnsRequest* BatchTableRequest_Operation::release_drop_columns() { - // @@protoc_insertion_point(field_release:io.deephaven.proto.backplane.grpc.BatchTableRequest.Operation.drop_columns) - if (op_case() == kDropColumns) { - clear_has_op(); - auto* temp = _impl_.op_.drop_columns_; - if (GetArena() != nullptr) { - temp = ::google::protobuf::internal::DuplicateIfNonNull(temp); - } - _impl_.op_.drop_columns_ = nullptr; - return temp; - } else { - return nullptr; - } -} -inline const ::io::deephaven::proto::backplane::grpc::DropColumnsRequest& BatchTableRequest_Operation::_internal_drop_columns() const { - return op_case() == kDropColumns ? *_impl_.op_.drop_columns_ : reinterpret_cast<::io::deephaven::proto::backplane::grpc::DropColumnsRequest&>(::io::deephaven::proto::backplane::grpc::_DropColumnsRequest_default_instance_); -} -inline const ::io::deephaven::proto::backplane::grpc::DropColumnsRequest& BatchTableRequest_Operation::drop_columns() const ABSL_ATTRIBUTE_LIFETIME_BOUND { - // @@protoc_insertion_point(field_get:io.deephaven.proto.backplane.grpc.BatchTableRequest.Operation.drop_columns) - return _internal_drop_columns(); -} -inline ::io::deephaven::proto::backplane::grpc::DropColumnsRequest* BatchTableRequest_Operation::unsafe_arena_release_drop_columns() { - // @@protoc_insertion_point(field_unsafe_arena_release:io.deephaven.proto.backplane.grpc.BatchTableRequest.Operation.drop_columns) - if (op_case() == kDropColumns) { - clear_has_op(); - auto* temp = _impl_.op_.drop_columns_; - _impl_.op_.drop_columns_ = nullptr; - return temp; - } else { - return nullptr; - } -} -inline void BatchTableRequest_Operation::unsafe_arena_set_allocated_drop_columns(::io::deephaven::proto::backplane::grpc::DropColumnsRequest* value) { - // We rely on the oneof clear method to free the earlier contents - // of this oneof. We can directly use the pointer we're given to - // set the new value. - clear_op(); - if (value) { - set_has_drop_columns(); - _impl_.op_.drop_columns_ = value; - } - // @@protoc_insertion_point(field_unsafe_arena_set_allocated:io.deephaven.proto.backplane.grpc.BatchTableRequest.Operation.drop_columns) -} -inline ::io::deephaven::proto::backplane::grpc::DropColumnsRequest* BatchTableRequest_Operation::_internal_mutable_drop_columns() { - if (op_case() != kDropColumns) { - clear_op(); - set_has_drop_columns(); - _impl_.op_.drop_columns_ = - ::google::protobuf::Message::DefaultConstruct<::io::deephaven::proto::backplane::grpc::DropColumnsRequest>(GetArena()); - } - return _impl_.op_.drop_columns_; -} -inline ::io::deephaven::proto::backplane::grpc::DropColumnsRequest* BatchTableRequest_Operation::mutable_drop_columns() ABSL_ATTRIBUTE_LIFETIME_BOUND { - ::io::deephaven::proto::backplane::grpc::DropColumnsRequest* _msg = _internal_mutable_drop_columns(); - // @@protoc_insertion_point(field_mutable:io.deephaven.proto.backplane.grpc.BatchTableRequest.Operation.drop_columns) - return _msg; -} - -// .io.deephaven.proto.backplane.grpc.SelectOrUpdateRequest update = 4; -inline bool BatchTableRequest_Operation::has_update() const { - return op_case() == kUpdate; -} -inline bool BatchTableRequest_Operation::_internal_has_update() const { - return op_case() == kUpdate; -} -inline void BatchTableRequest_Operation::set_has_update() { - _impl_._oneof_case_[0] = kUpdate; -} -inline void BatchTableRequest_Operation::clear_update() { - ::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(); - } -} -inline ::io::deephaven::proto::backplane::grpc::SelectOrUpdateRequest* BatchTableRequest_Operation::release_update() { - // @@protoc_insertion_point(field_release:io.deephaven.proto.backplane.grpc.BatchTableRequest.Operation.update) - if (op_case() == kUpdate) { - clear_has_op(); - auto* temp = _impl_.op_.update_; - if (GetArena() != nullptr) { - temp = ::google::protobuf::internal::DuplicateIfNonNull(temp); - } - _impl_.op_.update_ = nullptr; - return temp; - } else { - return nullptr; - } -} -inline const ::io::deephaven::proto::backplane::grpc::SelectOrUpdateRequest& BatchTableRequest_Operation::_internal_update() const { - return op_case() == kUpdate ? *_impl_.op_.update_ : reinterpret_cast<::io::deephaven::proto::backplane::grpc::SelectOrUpdateRequest&>(::io::deephaven::proto::backplane::grpc::_SelectOrUpdateRequest_default_instance_); -} -inline const ::io::deephaven::proto::backplane::grpc::SelectOrUpdateRequest& BatchTableRequest_Operation::update() const ABSL_ATTRIBUTE_LIFETIME_BOUND { - // @@protoc_insertion_point(field_get:io.deephaven.proto.backplane.grpc.BatchTableRequest.Operation.update) - return _internal_update(); -} -inline ::io::deephaven::proto::backplane::grpc::SelectOrUpdateRequest* BatchTableRequest_Operation::unsafe_arena_release_update() { - // @@protoc_insertion_point(field_unsafe_arena_release:io.deephaven.proto.backplane.grpc.BatchTableRequest.Operation.update) - if (op_case() == kUpdate) { - clear_has_op(); - auto* temp = _impl_.op_.update_; - _impl_.op_.update_ = nullptr; - return temp; - } else { - return nullptr; - } -} -inline void BatchTableRequest_Operation::unsafe_arena_set_allocated_update(::io::deephaven::proto::backplane::grpc::SelectOrUpdateRequest* value) { - // We rely on the oneof clear method to free the earlier contents - // of this oneof. We can directly use the pointer we're given to - // set the new value. - clear_op(); - if (value) { - set_has_update(); - _impl_.op_.update_ = value; - } - // @@protoc_insertion_point(field_unsafe_arena_set_allocated:io.deephaven.proto.backplane.grpc.BatchTableRequest.Operation.update) -} -inline ::io::deephaven::proto::backplane::grpc::SelectOrUpdateRequest* BatchTableRequest_Operation::_internal_mutable_update() { - if (op_case() != kUpdate) { - clear_op(); - set_has_update(); - _impl_.op_.update_ = - ::google::protobuf::Message::DefaultConstruct<::io::deephaven::proto::backplane::grpc::SelectOrUpdateRequest>(GetArena()); - } - return _impl_.op_.update_; -} -inline ::io::deephaven::proto::backplane::grpc::SelectOrUpdateRequest* BatchTableRequest_Operation::mutable_update() ABSL_ATTRIBUTE_LIFETIME_BOUND { - ::io::deephaven::proto::backplane::grpc::SelectOrUpdateRequest* _msg = _internal_mutable_update(); - // @@protoc_insertion_point(field_mutable:io.deephaven.proto.backplane.grpc.BatchTableRequest.Operation.update) - return _msg; -} - -// .io.deephaven.proto.backplane.grpc.SelectOrUpdateRequest lazy_update = 5; -inline bool BatchTableRequest_Operation::has_lazy_update() const { - return op_case() == kLazyUpdate; -} -inline bool BatchTableRequest_Operation::_internal_has_lazy_update() const { - return op_case() == kLazyUpdate; -} -inline void BatchTableRequest_Operation::set_has_lazy_update() { - _impl_._oneof_case_[0] = kLazyUpdate; -} -inline void BatchTableRequest_Operation::clear_lazy_update() { - ::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(); - } -} -inline ::io::deephaven::proto::backplane::grpc::SelectOrUpdateRequest* BatchTableRequest_Operation::release_lazy_update() { - // @@protoc_insertion_point(field_release:io.deephaven.proto.backplane.grpc.BatchTableRequest.Operation.lazy_update) - if (op_case() == kLazyUpdate) { - clear_has_op(); - auto* temp = _impl_.op_.lazy_update_; - if (GetArena() != nullptr) { - temp = ::google::protobuf::internal::DuplicateIfNonNull(temp); - } - _impl_.op_.lazy_update_ = nullptr; - return temp; - } else { - return nullptr; - } -} -inline const ::io::deephaven::proto::backplane::grpc::SelectOrUpdateRequest& BatchTableRequest_Operation::_internal_lazy_update() const { - return op_case() == kLazyUpdate ? *_impl_.op_.lazy_update_ : reinterpret_cast<::io::deephaven::proto::backplane::grpc::SelectOrUpdateRequest&>(::io::deephaven::proto::backplane::grpc::_SelectOrUpdateRequest_default_instance_); -} -inline const ::io::deephaven::proto::backplane::grpc::SelectOrUpdateRequest& BatchTableRequest_Operation::lazy_update() const ABSL_ATTRIBUTE_LIFETIME_BOUND { - // @@protoc_insertion_point(field_get:io.deephaven.proto.backplane.grpc.BatchTableRequest.Operation.lazy_update) - return _internal_lazy_update(); -} -inline ::io::deephaven::proto::backplane::grpc::SelectOrUpdateRequest* BatchTableRequest_Operation::unsafe_arena_release_lazy_update() { - // @@protoc_insertion_point(field_unsafe_arena_release:io.deephaven.proto.backplane.grpc.BatchTableRequest.Operation.lazy_update) - if (op_case() == kLazyUpdate) { - clear_has_op(); - auto* temp = _impl_.op_.lazy_update_; - _impl_.op_.lazy_update_ = nullptr; - return temp; - } else { - return nullptr; - } -} -inline void BatchTableRequest_Operation::unsafe_arena_set_allocated_lazy_update(::io::deephaven::proto::backplane::grpc::SelectOrUpdateRequest* value) { - // We rely on the oneof clear method to free the earlier contents - // of this oneof. We can directly use the pointer we're given to - // set the new value. - clear_op(); - if (value) { - set_has_lazy_update(); - _impl_.op_.lazy_update_ = value; - } - // @@protoc_insertion_point(field_unsafe_arena_set_allocated:io.deephaven.proto.backplane.grpc.BatchTableRequest.Operation.lazy_update) -} -inline ::io::deephaven::proto::backplane::grpc::SelectOrUpdateRequest* BatchTableRequest_Operation::_internal_mutable_lazy_update() { - if (op_case() != kLazyUpdate) { - clear_op(); - set_has_lazy_update(); - _impl_.op_.lazy_update_ = - ::google::protobuf::Message::DefaultConstruct<::io::deephaven::proto::backplane::grpc::SelectOrUpdateRequest>(GetArena()); - } - return _impl_.op_.lazy_update_; -} -inline ::io::deephaven::proto::backplane::grpc::SelectOrUpdateRequest* BatchTableRequest_Operation::mutable_lazy_update() ABSL_ATTRIBUTE_LIFETIME_BOUND { - ::io::deephaven::proto::backplane::grpc::SelectOrUpdateRequest* _msg = _internal_mutable_lazy_update(); - // @@protoc_insertion_point(field_mutable:io.deephaven.proto.backplane.grpc.BatchTableRequest.Operation.lazy_update) - return _msg; -} - -// .io.deephaven.proto.backplane.grpc.SelectOrUpdateRequest view = 6; -inline bool BatchTableRequest_Operation::has_view() const { - return op_case() == kView; -} -inline bool BatchTableRequest_Operation::_internal_has_view() const { - return op_case() == kView; -} -inline void BatchTableRequest_Operation::set_has_view() { - _impl_._oneof_case_[0] = kView; -} -inline void BatchTableRequest_Operation::clear_view() { - ::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(); - } -} -inline ::io::deephaven::proto::backplane::grpc::SelectOrUpdateRequest* BatchTableRequest_Operation::release_view() { - // @@protoc_insertion_point(field_release:io.deephaven.proto.backplane.grpc.BatchTableRequest.Operation.view) - if (op_case() == kView) { - clear_has_op(); - auto* temp = _impl_.op_.view_; - if (GetArena() != nullptr) { - temp = ::google::protobuf::internal::DuplicateIfNonNull(temp); - } - _impl_.op_.view_ = nullptr; - return temp; - } else { - return nullptr; - } -} -inline const ::io::deephaven::proto::backplane::grpc::SelectOrUpdateRequest& BatchTableRequest_Operation::_internal_view() const { - return op_case() == kView ? *_impl_.op_.view_ : reinterpret_cast<::io::deephaven::proto::backplane::grpc::SelectOrUpdateRequest&>(::io::deephaven::proto::backplane::grpc::_SelectOrUpdateRequest_default_instance_); -} -inline const ::io::deephaven::proto::backplane::grpc::SelectOrUpdateRequest& BatchTableRequest_Operation::view() const ABSL_ATTRIBUTE_LIFETIME_BOUND { - // @@protoc_insertion_point(field_get:io.deephaven.proto.backplane.grpc.BatchTableRequest.Operation.view) - return _internal_view(); -} -inline ::io::deephaven::proto::backplane::grpc::SelectOrUpdateRequest* BatchTableRequest_Operation::unsafe_arena_release_view() { - // @@protoc_insertion_point(field_unsafe_arena_release:io.deephaven.proto.backplane.grpc.BatchTableRequest.Operation.view) - if (op_case() == kView) { - clear_has_op(); - auto* temp = _impl_.op_.view_; - _impl_.op_.view_ = nullptr; - return temp; - } else { - return nullptr; - } -} -inline void BatchTableRequest_Operation::unsafe_arena_set_allocated_view(::io::deephaven::proto::backplane::grpc::SelectOrUpdateRequest* value) { - // We rely on the oneof clear method to free the earlier contents - // of this oneof. We can directly use the pointer we're given to - // set the new value. - clear_op(); - if (value) { - set_has_view(); - _impl_.op_.view_ = value; - } - // @@protoc_insertion_point(field_unsafe_arena_set_allocated:io.deephaven.proto.backplane.grpc.BatchTableRequest.Operation.view) -} -inline ::io::deephaven::proto::backplane::grpc::SelectOrUpdateRequest* BatchTableRequest_Operation::_internal_mutable_view() { - if (op_case() != kView) { - clear_op(); - set_has_view(); - _impl_.op_.view_ = - ::google::protobuf::Message::DefaultConstruct<::io::deephaven::proto::backplane::grpc::SelectOrUpdateRequest>(GetArena()); - } - return _impl_.op_.view_; -} -inline ::io::deephaven::proto::backplane::grpc::SelectOrUpdateRequest* BatchTableRequest_Operation::mutable_view() ABSL_ATTRIBUTE_LIFETIME_BOUND { - ::io::deephaven::proto::backplane::grpc::SelectOrUpdateRequest* _msg = _internal_mutable_view(); - // @@protoc_insertion_point(field_mutable:io.deephaven.proto.backplane.grpc.BatchTableRequest.Operation.view) - return _msg; -} - -// .io.deephaven.proto.backplane.grpc.SelectOrUpdateRequest update_view = 7; -inline bool BatchTableRequest_Operation::has_update_view() const { - return op_case() == kUpdateView; -} -inline bool BatchTableRequest_Operation::_internal_has_update_view() const { - return op_case() == kUpdateView; -} -inline void BatchTableRequest_Operation::set_has_update_view() { - _impl_._oneof_case_[0] = kUpdateView; -} -inline void BatchTableRequest_Operation::clear_update_view() { - ::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(); - } -} -inline ::io::deephaven::proto::backplane::grpc::SelectOrUpdateRequest* BatchTableRequest_Operation::release_update_view() { - // @@protoc_insertion_point(field_release:io.deephaven.proto.backplane.grpc.BatchTableRequest.Operation.update_view) - if (op_case() == kUpdateView) { - clear_has_op(); - auto* temp = _impl_.op_.update_view_; - if (GetArena() != nullptr) { - temp = ::google::protobuf::internal::DuplicateIfNonNull(temp); - } - _impl_.op_.update_view_ = nullptr; - return temp; - } else { - return nullptr; - } -} -inline const ::io::deephaven::proto::backplane::grpc::SelectOrUpdateRequest& BatchTableRequest_Operation::_internal_update_view() const { - return op_case() == kUpdateView ? *_impl_.op_.update_view_ : reinterpret_cast<::io::deephaven::proto::backplane::grpc::SelectOrUpdateRequest&>(::io::deephaven::proto::backplane::grpc::_SelectOrUpdateRequest_default_instance_); -} -inline const ::io::deephaven::proto::backplane::grpc::SelectOrUpdateRequest& BatchTableRequest_Operation::update_view() const ABSL_ATTRIBUTE_LIFETIME_BOUND { - // @@protoc_insertion_point(field_get:io.deephaven.proto.backplane.grpc.BatchTableRequest.Operation.update_view) - return _internal_update_view(); -} -inline ::io::deephaven::proto::backplane::grpc::SelectOrUpdateRequest* BatchTableRequest_Operation::unsafe_arena_release_update_view() { - // @@protoc_insertion_point(field_unsafe_arena_release:io.deephaven.proto.backplane.grpc.BatchTableRequest.Operation.update_view) - if (op_case() == kUpdateView) { - clear_has_op(); - auto* temp = _impl_.op_.update_view_; - _impl_.op_.update_view_ = nullptr; - return temp; - } else { - return nullptr; - } -} -inline void BatchTableRequest_Operation::unsafe_arena_set_allocated_update_view(::io::deephaven::proto::backplane::grpc::SelectOrUpdateRequest* value) { - // We rely on the oneof clear method to free the earlier contents - // of this oneof. We can directly use the pointer we're given to - // set the new value. - clear_op(); - if (value) { - set_has_update_view(); - _impl_.op_.update_view_ = value; - } - // @@protoc_insertion_point(field_unsafe_arena_set_allocated:io.deephaven.proto.backplane.grpc.BatchTableRequest.Operation.update_view) -} -inline ::io::deephaven::proto::backplane::grpc::SelectOrUpdateRequest* BatchTableRequest_Operation::_internal_mutable_update_view() { - if (op_case() != kUpdateView) { - clear_op(); - set_has_update_view(); - _impl_.op_.update_view_ = - ::google::protobuf::Message::DefaultConstruct<::io::deephaven::proto::backplane::grpc::SelectOrUpdateRequest>(GetArena()); - } - return _impl_.op_.update_view_; -} -inline ::io::deephaven::proto::backplane::grpc::SelectOrUpdateRequest* BatchTableRequest_Operation::mutable_update_view() ABSL_ATTRIBUTE_LIFETIME_BOUND { - ::io::deephaven::proto::backplane::grpc::SelectOrUpdateRequest* _msg = _internal_mutable_update_view(); - // @@protoc_insertion_point(field_mutable:io.deephaven.proto.backplane.grpc.BatchTableRequest.Operation.update_view) - return _msg; -} - -// .io.deephaven.proto.backplane.grpc.SelectOrUpdateRequest select = 8; -inline bool BatchTableRequest_Operation::has_select() const { - return op_case() == kSelect; -} -inline bool BatchTableRequest_Operation::_internal_has_select() const { - return op_case() == kSelect; -} -inline void BatchTableRequest_Operation::set_has_select() { - _impl_._oneof_case_[0] = kSelect; -} -inline void BatchTableRequest_Operation::clear_select() { - ::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(); - } -} -inline ::io::deephaven::proto::backplane::grpc::SelectOrUpdateRequest* BatchTableRequest_Operation::release_select() { - // @@protoc_insertion_point(field_release:io.deephaven.proto.backplane.grpc.BatchTableRequest.Operation.select) - if (op_case() == kSelect) { - clear_has_op(); - auto* temp = _impl_.op_.select_; - if (GetArena() != nullptr) { - temp = ::google::protobuf::internal::DuplicateIfNonNull(temp); - } - _impl_.op_.select_ = nullptr; - return temp; - } else { - return nullptr; - } -} -inline const ::io::deephaven::proto::backplane::grpc::SelectOrUpdateRequest& BatchTableRequest_Operation::_internal_select() const { - return op_case() == kSelect ? *_impl_.op_.select_ : reinterpret_cast<::io::deephaven::proto::backplane::grpc::SelectOrUpdateRequest&>(::io::deephaven::proto::backplane::grpc::_SelectOrUpdateRequest_default_instance_); -} -inline const ::io::deephaven::proto::backplane::grpc::SelectOrUpdateRequest& BatchTableRequest_Operation::select() const ABSL_ATTRIBUTE_LIFETIME_BOUND { - // @@protoc_insertion_point(field_get:io.deephaven.proto.backplane.grpc.BatchTableRequest.Operation.select) - return _internal_select(); -} -inline ::io::deephaven::proto::backplane::grpc::SelectOrUpdateRequest* BatchTableRequest_Operation::unsafe_arena_release_select() { - // @@protoc_insertion_point(field_unsafe_arena_release:io.deephaven.proto.backplane.grpc.BatchTableRequest.Operation.select) - if (op_case() == kSelect) { - clear_has_op(); - auto* temp = _impl_.op_.select_; - _impl_.op_.select_ = nullptr; - return temp; - } else { - return nullptr; - } -} -inline void BatchTableRequest_Operation::unsafe_arena_set_allocated_select(::io::deephaven::proto::backplane::grpc::SelectOrUpdateRequest* value) { - // We rely on the oneof clear method to free the earlier contents - // of this oneof. We can directly use the pointer we're given to - // set the new value. - clear_op(); - if (value) { - set_has_select(); - _impl_.op_.select_ = value; - } - // @@protoc_insertion_point(field_unsafe_arena_set_allocated:io.deephaven.proto.backplane.grpc.BatchTableRequest.Operation.select) -} -inline ::io::deephaven::proto::backplane::grpc::SelectOrUpdateRequest* BatchTableRequest_Operation::_internal_mutable_select() { - if (op_case() != kSelect) { - clear_op(); - set_has_select(); - _impl_.op_.select_ = - ::google::protobuf::Message::DefaultConstruct<::io::deephaven::proto::backplane::grpc::SelectOrUpdateRequest>(GetArena()); - } - return _impl_.op_.select_; -} -inline ::io::deephaven::proto::backplane::grpc::SelectOrUpdateRequest* BatchTableRequest_Operation::mutable_select() ABSL_ATTRIBUTE_LIFETIME_BOUND { - ::io::deephaven::proto::backplane::grpc::SelectOrUpdateRequest* _msg = _internal_mutable_select(); - // @@protoc_insertion_point(field_mutable:io.deephaven.proto.backplane.grpc.BatchTableRequest.Operation.select) - return _msg; -} - -// .io.deephaven.proto.backplane.grpc.SelectDistinctRequest select_distinct = 9; -inline bool BatchTableRequest_Operation::has_select_distinct() const { - return op_case() == kSelectDistinct; -} -inline bool BatchTableRequest_Operation::_internal_has_select_distinct() const { - return op_case() == kSelectDistinct; -} -inline void BatchTableRequest_Operation::set_has_select_distinct() { - _impl_._oneof_case_[0] = kSelectDistinct; -} -inline void BatchTableRequest_Operation::clear_select_distinct() { - ::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(); - } -} -inline ::io::deephaven::proto::backplane::grpc::SelectDistinctRequest* BatchTableRequest_Operation::release_select_distinct() { - // @@protoc_insertion_point(field_release:io.deephaven.proto.backplane.grpc.BatchTableRequest.Operation.select_distinct) - if (op_case() == kSelectDistinct) { - clear_has_op(); - auto* temp = _impl_.op_.select_distinct_; - if (GetArena() != nullptr) { - temp = ::google::protobuf::internal::DuplicateIfNonNull(temp); - } - _impl_.op_.select_distinct_ = nullptr; - return temp; - } else { - return nullptr; - } -} -inline const ::io::deephaven::proto::backplane::grpc::SelectDistinctRequest& BatchTableRequest_Operation::_internal_select_distinct() const { - return op_case() == kSelectDistinct ? *_impl_.op_.select_distinct_ : reinterpret_cast<::io::deephaven::proto::backplane::grpc::SelectDistinctRequest&>(::io::deephaven::proto::backplane::grpc::_SelectDistinctRequest_default_instance_); -} -inline const ::io::deephaven::proto::backplane::grpc::SelectDistinctRequest& BatchTableRequest_Operation::select_distinct() const ABSL_ATTRIBUTE_LIFETIME_BOUND { - // @@protoc_insertion_point(field_get:io.deephaven.proto.backplane.grpc.BatchTableRequest.Operation.select_distinct) - return _internal_select_distinct(); -} -inline ::io::deephaven::proto::backplane::grpc::SelectDistinctRequest* BatchTableRequest_Operation::unsafe_arena_release_select_distinct() { - // @@protoc_insertion_point(field_unsafe_arena_release:io.deephaven.proto.backplane.grpc.BatchTableRequest.Operation.select_distinct) - if (op_case() == kSelectDistinct) { - clear_has_op(); - auto* temp = _impl_.op_.select_distinct_; - _impl_.op_.select_distinct_ = nullptr; - return temp; - } else { - return nullptr; - } -} -inline void BatchTableRequest_Operation::unsafe_arena_set_allocated_select_distinct(::io::deephaven::proto::backplane::grpc::SelectDistinctRequest* value) { - // We rely on the oneof clear method to free the earlier contents - // of this oneof. We can directly use the pointer we're given to - // set the new value. - clear_op(); - if (value) { - set_has_select_distinct(); - _impl_.op_.select_distinct_ = value; - } - // @@protoc_insertion_point(field_unsafe_arena_set_allocated:io.deephaven.proto.backplane.grpc.BatchTableRequest.Operation.select_distinct) -} -inline ::io::deephaven::proto::backplane::grpc::SelectDistinctRequest* BatchTableRequest_Operation::_internal_mutable_select_distinct() { - if (op_case() != kSelectDistinct) { - clear_op(); - set_has_select_distinct(); - _impl_.op_.select_distinct_ = - ::google::protobuf::Message::DefaultConstruct<::io::deephaven::proto::backplane::grpc::SelectDistinctRequest>(GetArena()); - } - return _impl_.op_.select_distinct_; -} -inline ::io::deephaven::proto::backplane::grpc::SelectDistinctRequest* BatchTableRequest_Operation::mutable_select_distinct() ABSL_ATTRIBUTE_LIFETIME_BOUND { - ::io::deephaven::proto::backplane::grpc::SelectDistinctRequest* _msg = _internal_mutable_select_distinct(); - // @@protoc_insertion_point(field_mutable:io.deephaven.proto.backplane.grpc.BatchTableRequest.Operation.select_distinct) - return _msg; -} - -// .io.deephaven.proto.backplane.grpc.FilterTableRequest filter = 10; -inline bool BatchTableRequest_Operation::has_filter() const { - return op_case() == kFilter; -} -inline bool BatchTableRequest_Operation::_internal_has_filter() const { - return op_case() == kFilter; -} -inline void BatchTableRequest_Operation::set_has_filter() { - _impl_._oneof_case_[0] = kFilter; -} -inline void BatchTableRequest_Operation::clear_filter() { - ::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(); - } -} -inline ::io::deephaven::proto::backplane::grpc::FilterTableRequest* BatchTableRequest_Operation::release_filter() { - // @@protoc_insertion_point(field_release:io.deephaven.proto.backplane.grpc.BatchTableRequest.Operation.filter) - if (op_case() == kFilter) { - clear_has_op(); - auto* temp = _impl_.op_.filter_; - if (GetArena() != nullptr) { - temp = ::google::protobuf::internal::DuplicateIfNonNull(temp); - } - _impl_.op_.filter_ = nullptr; - return temp; - } else { - return nullptr; - } -} -inline const ::io::deephaven::proto::backplane::grpc::FilterTableRequest& BatchTableRequest_Operation::_internal_filter() const { - return op_case() == kFilter ? *_impl_.op_.filter_ : reinterpret_cast<::io::deephaven::proto::backplane::grpc::FilterTableRequest&>(::io::deephaven::proto::backplane::grpc::_FilterTableRequest_default_instance_); -} -inline const ::io::deephaven::proto::backplane::grpc::FilterTableRequest& BatchTableRequest_Operation::filter() const ABSL_ATTRIBUTE_LIFETIME_BOUND { - // @@protoc_insertion_point(field_get:io.deephaven.proto.backplane.grpc.BatchTableRequest.Operation.filter) - return _internal_filter(); -} -inline ::io::deephaven::proto::backplane::grpc::FilterTableRequest* BatchTableRequest_Operation::unsafe_arena_release_filter() { - // @@protoc_insertion_point(field_unsafe_arena_release:io.deephaven.proto.backplane.grpc.BatchTableRequest.Operation.filter) - if (op_case() == kFilter) { - clear_has_op(); - auto* temp = _impl_.op_.filter_; - _impl_.op_.filter_ = nullptr; - return temp; - } else { - return nullptr; - } -} -inline void BatchTableRequest_Operation::unsafe_arena_set_allocated_filter(::io::deephaven::proto::backplane::grpc::FilterTableRequest* value) { - // We rely on the oneof clear method to free the earlier contents - // of this oneof. We can directly use the pointer we're given to - // set the new value. - clear_op(); - if (value) { - set_has_filter(); - _impl_.op_.filter_ = value; - } - // @@protoc_insertion_point(field_unsafe_arena_set_allocated:io.deephaven.proto.backplane.grpc.BatchTableRequest.Operation.filter) -} -inline ::io::deephaven::proto::backplane::grpc::FilterTableRequest* BatchTableRequest_Operation::_internal_mutable_filter() { - if (op_case() != kFilter) { - clear_op(); - set_has_filter(); - _impl_.op_.filter_ = - ::google::protobuf::Message::DefaultConstruct<::io::deephaven::proto::backplane::grpc::FilterTableRequest>(GetArena()); - } - return _impl_.op_.filter_; -} -inline ::io::deephaven::proto::backplane::grpc::FilterTableRequest* BatchTableRequest_Operation::mutable_filter() ABSL_ATTRIBUTE_LIFETIME_BOUND { - ::io::deephaven::proto::backplane::grpc::FilterTableRequest* _msg = _internal_mutable_filter(); - // @@protoc_insertion_point(field_mutable:io.deephaven.proto.backplane.grpc.BatchTableRequest.Operation.filter) - return _msg; -} - -// .io.deephaven.proto.backplane.grpc.UnstructuredFilterTableRequest unstructured_filter = 11; -inline bool BatchTableRequest_Operation::has_unstructured_filter() const { - return op_case() == kUnstructuredFilter; -} -inline bool BatchTableRequest_Operation::_internal_has_unstructured_filter() const { - return op_case() == kUnstructuredFilter; -} -inline void BatchTableRequest_Operation::set_has_unstructured_filter() { - _impl_._oneof_case_[0] = kUnstructuredFilter; -} -inline void BatchTableRequest_Operation::clear_unstructured_filter() { - ::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(); - } -} -inline ::io::deephaven::proto::backplane::grpc::UnstructuredFilterTableRequest* BatchTableRequest_Operation::release_unstructured_filter() { - // @@protoc_insertion_point(field_release:io.deephaven.proto.backplane.grpc.BatchTableRequest.Operation.unstructured_filter) - if (op_case() == kUnstructuredFilter) { - clear_has_op(); - auto* temp = _impl_.op_.unstructured_filter_; - if (GetArena() != nullptr) { - temp = ::google::protobuf::internal::DuplicateIfNonNull(temp); - } - _impl_.op_.unstructured_filter_ = nullptr; - return temp; - } else { - return nullptr; - } -} -inline const ::io::deephaven::proto::backplane::grpc::UnstructuredFilterTableRequest& BatchTableRequest_Operation::_internal_unstructured_filter() const { - return op_case() == kUnstructuredFilter ? *_impl_.op_.unstructured_filter_ : reinterpret_cast<::io::deephaven::proto::backplane::grpc::UnstructuredFilterTableRequest&>(::io::deephaven::proto::backplane::grpc::_UnstructuredFilterTableRequest_default_instance_); -} -inline const ::io::deephaven::proto::backplane::grpc::UnstructuredFilterTableRequest& BatchTableRequest_Operation::unstructured_filter() const ABSL_ATTRIBUTE_LIFETIME_BOUND { - // @@protoc_insertion_point(field_get:io.deephaven.proto.backplane.grpc.BatchTableRequest.Operation.unstructured_filter) - return _internal_unstructured_filter(); -} -inline ::io::deephaven::proto::backplane::grpc::UnstructuredFilterTableRequest* BatchTableRequest_Operation::unsafe_arena_release_unstructured_filter() { - // @@protoc_insertion_point(field_unsafe_arena_release:io.deephaven.proto.backplane.grpc.BatchTableRequest.Operation.unstructured_filter) - if (op_case() == kUnstructuredFilter) { - clear_has_op(); - auto* temp = _impl_.op_.unstructured_filter_; - _impl_.op_.unstructured_filter_ = nullptr; - return temp; - } else { - return nullptr; - } -} -inline void BatchTableRequest_Operation::unsafe_arena_set_allocated_unstructured_filter(::io::deephaven::proto::backplane::grpc::UnstructuredFilterTableRequest* value) { - // We rely on the oneof clear method to free the earlier contents - // of this oneof. We can directly use the pointer we're given to - // set the new value. - clear_op(); - if (value) { - set_has_unstructured_filter(); - _impl_.op_.unstructured_filter_ = value; - } - // @@protoc_insertion_point(field_unsafe_arena_set_allocated:io.deephaven.proto.backplane.grpc.BatchTableRequest.Operation.unstructured_filter) -} -inline ::io::deephaven::proto::backplane::grpc::UnstructuredFilterTableRequest* BatchTableRequest_Operation::_internal_mutable_unstructured_filter() { - if (op_case() != kUnstructuredFilter) { - clear_op(); - set_has_unstructured_filter(); - _impl_.op_.unstructured_filter_ = - ::google::protobuf::Message::DefaultConstruct<::io::deephaven::proto::backplane::grpc::UnstructuredFilterTableRequest>(GetArena()); - } - return _impl_.op_.unstructured_filter_; -} -inline ::io::deephaven::proto::backplane::grpc::UnstructuredFilterTableRequest* BatchTableRequest_Operation::mutable_unstructured_filter() ABSL_ATTRIBUTE_LIFETIME_BOUND { - ::io::deephaven::proto::backplane::grpc::UnstructuredFilterTableRequest* _msg = _internal_mutable_unstructured_filter(); - // @@protoc_insertion_point(field_mutable:io.deephaven.proto.backplane.grpc.BatchTableRequest.Operation.unstructured_filter) - return _msg; -} - -// .io.deephaven.proto.backplane.grpc.SortTableRequest sort = 12; -inline bool BatchTableRequest_Operation::has_sort() const { - return op_case() == kSort; -} -inline bool BatchTableRequest_Operation::_internal_has_sort() const { - return op_case() == kSort; -} -inline void BatchTableRequest_Operation::set_has_sort() { - _impl_._oneof_case_[0] = kSort; -} -inline void BatchTableRequest_Operation::clear_sort() { - ::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(); - } -} -inline ::io::deephaven::proto::backplane::grpc::SortTableRequest* BatchTableRequest_Operation::release_sort() { - // @@protoc_insertion_point(field_release:io.deephaven.proto.backplane.grpc.BatchTableRequest.Operation.sort) - if (op_case() == kSort) { - clear_has_op(); - auto* temp = _impl_.op_.sort_; - if (GetArena() != nullptr) { - temp = ::google::protobuf::internal::DuplicateIfNonNull(temp); - } - _impl_.op_.sort_ = nullptr; - return temp; - } else { - return nullptr; - } -} -inline const ::io::deephaven::proto::backplane::grpc::SortTableRequest& BatchTableRequest_Operation::_internal_sort() const { - return op_case() == kSort ? *_impl_.op_.sort_ : reinterpret_cast<::io::deephaven::proto::backplane::grpc::SortTableRequest&>(::io::deephaven::proto::backplane::grpc::_SortTableRequest_default_instance_); -} -inline const ::io::deephaven::proto::backplane::grpc::SortTableRequest& BatchTableRequest_Operation::sort() const ABSL_ATTRIBUTE_LIFETIME_BOUND { - // @@protoc_insertion_point(field_get:io.deephaven.proto.backplane.grpc.BatchTableRequest.Operation.sort) - return _internal_sort(); -} -inline ::io::deephaven::proto::backplane::grpc::SortTableRequest* BatchTableRequest_Operation::unsafe_arena_release_sort() { - // @@protoc_insertion_point(field_unsafe_arena_release:io.deephaven.proto.backplane.grpc.BatchTableRequest.Operation.sort) - if (op_case() == kSort) { - clear_has_op(); - auto* temp = _impl_.op_.sort_; - _impl_.op_.sort_ = nullptr; - return temp; - } else { - return nullptr; - } -} -inline void BatchTableRequest_Operation::unsafe_arena_set_allocated_sort(::io::deephaven::proto::backplane::grpc::SortTableRequest* value) { - // We rely on the oneof clear method to free the earlier contents - // of this oneof. We can directly use the pointer we're given to - // set the new value. - clear_op(); - if (value) { - set_has_sort(); - _impl_.op_.sort_ = value; - } - // @@protoc_insertion_point(field_unsafe_arena_set_allocated:io.deephaven.proto.backplane.grpc.BatchTableRequest.Operation.sort) -} -inline ::io::deephaven::proto::backplane::grpc::SortTableRequest* BatchTableRequest_Operation::_internal_mutable_sort() { - if (op_case() != kSort) { - clear_op(); - set_has_sort(); - _impl_.op_.sort_ = - ::google::protobuf::Message::DefaultConstruct<::io::deephaven::proto::backplane::grpc::SortTableRequest>(GetArena()); - } - return _impl_.op_.sort_; -} -inline ::io::deephaven::proto::backplane::grpc::SortTableRequest* BatchTableRequest_Operation::mutable_sort() ABSL_ATTRIBUTE_LIFETIME_BOUND { - ::io::deephaven::proto::backplane::grpc::SortTableRequest* _msg = _internal_mutable_sort(); - // @@protoc_insertion_point(field_mutable:io.deephaven.proto.backplane.grpc.BatchTableRequest.Operation.sort) - return _msg; -} - -// .io.deephaven.proto.backplane.grpc.HeadOrTailRequest head = 13; -inline bool BatchTableRequest_Operation::has_head() const { - return op_case() == kHead; -} -inline bool BatchTableRequest_Operation::_internal_has_head() const { - return op_case() == kHead; -} -inline void BatchTableRequest_Operation::set_has_head() { - _impl_._oneof_case_[0] = kHead; -} -inline void BatchTableRequest_Operation::clear_head() { - ::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(); - } -} -inline ::io::deephaven::proto::backplane::grpc::HeadOrTailRequest* BatchTableRequest_Operation::release_head() { - // @@protoc_insertion_point(field_release:io.deephaven.proto.backplane.grpc.BatchTableRequest.Operation.head) - if (op_case() == kHead) { - clear_has_op(); - auto* temp = _impl_.op_.head_; - if (GetArena() != nullptr) { - temp = ::google::protobuf::internal::DuplicateIfNonNull(temp); - } - _impl_.op_.head_ = nullptr; - return temp; - } else { - return nullptr; - } -} -inline const ::io::deephaven::proto::backplane::grpc::HeadOrTailRequest& BatchTableRequest_Operation::_internal_head() const { - return op_case() == kHead ? *_impl_.op_.head_ : reinterpret_cast<::io::deephaven::proto::backplane::grpc::HeadOrTailRequest&>(::io::deephaven::proto::backplane::grpc::_HeadOrTailRequest_default_instance_); -} -inline const ::io::deephaven::proto::backplane::grpc::HeadOrTailRequest& BatchTableRequest_Operation::head() const ABSL_ATTRIBUTE_LIFETIME_BOUND { - // @@protoc_insertion_point(field_get:io.deephaven.proto.backplane.grpc.BatchTableRequest.Operation.head) - return _internal_head(); -} -inline ::io::deephaven::proto::backplane::grpc::HeadOrTailRequest* BatchTableRequest_Operation::unsafe_arena_release_head() { - // @@protoc_insertion_point(field_unsafe_arena_release:io.deephaven.proto.backplane.grpc.BatchTableRequest.Operation.head) - if (op_case() == kHead) { - clear_has_op(); - auto* temp = _impl_.op_.head_; - _impl_.op_.head_ = nullptr; - return temp; - } else { - return nullptr; - } -} -inline void BatchTableRequest_Operation::unsafe_arena_set_allocated_head(::io::deephaven::proto::backplane::grpc::HeadOrTailRequest* value) { - // We rely on the oneof clear method to free the earlier contents - // of this oneof. We can directly use the pointer we're given to - // set the new value. - clear_op(); - if (value) { - set_has_head(); - _impl_.op_.head_ = value; - } - // @@protoc_insertion_point(field_unsafe_arena_set_allocated:io.deephaven.proto.backplane.grpc.BatchTableRequest.Operation.head) -} -inline ::io::deephaven::proto::backplane::grpc::HeadOrTailRequest* BatchTableRequest_Operation::_internal_mutable_head() { - if (op_case() != kHead) { - clear_op(); - set_has_head(); - _impl_.op_.head_ = - ::google::protobuf::Message::DefaultConstruct<::io::deephaven::proto::backplane::grpc::HeadOrTailRequest>(GetArena()); - } - return _impl_.op_.head_; -} -inline ::io::deephaven::proto::backplane::grpc::HeadOrTailRequest* BatchTableRequest_Operation::mutable_head() ABSL_ATTRIBUTE_LIFETIME_BOUND { - ::io::deephaven::proto::backplane::grpc::HeadOrTailRequest* _msg = _internal_mutable_head(); - // @@protoc_insertion_point(field_mutable:io.deephaven.proto.backplane.grpc.BatchTableRequest.Operation.head) - return _msg; -} - -// .io.deephaven.proto.backplane.grpc.HeadOrTailRequest tail = 14; -inline bool BatchTableRequest_Operation::has_tail() const { - return op_case() == kTail; -} -inline bool BatchTableRequest_Operation::_internal_has_tail() const { - return op_case() == kTail; -} -inline void BatchTableRequest_Operation::set_has_tail() { - _impl_._oneof_case_[0] = kTail; -} -inline void BatchTableRequest_Operation::clear_tail() { - ::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(); - } -} -inline ::io::deephaven::proto::backplane::grpc::HeadOrTailRequest* BatchTableRequest_Operation::release_tail() { - // @@protoc_insertion_point(field_release:io.deephaven.proto.backplane.grpc.BatchTableRequest.Operation.tail) - if (op_case() == kTail) { - clear_has_op(); - auto* temp = _impl_.op_.tail_; - if (GetArena() != nullptr) { - temp = ::google::protobuf::internal::DuplicateIfNonNull(temp); - } - _impl_.op_.tail_ = nullptr; - return temp; - } else { - return nullptr; - } -} -inline const ::io::deephaven::proto::backplane::grpc::HeadOrTailRequest& BatchTableRequest_Operation::_internal_tail() const { - return op_case() == kTail ? *_impl_.op_.tail_ : reinterpret_cast<::io::deephaven::proto::backplane::grpc::HeadOrTailRequest&>(::io::deephaven::proto::backplane::grpc::_HeadOrTailRequest_default_instance_); -} -inline const ::io::deephaven::proto::backplane::grpc::HeadOrTailRequest& BatchTableRequest_Operation::tail() const ABSL_ATTRIBUTE_LIFETIME_BOUND { - // @@protoc_insertion_point(field_get:io.deephaven.proto.backplane.grpc.BatchTableRequest.Operation.tail) - return _internal_tail(); -} -inline ::io::deephaven::proto::backplane::grpc::HeadOrTailRequest* BatchTableRequest_Operation::unsafe_arena_release_tail() { - // @@protoc_insertion_point(field_unsafe_arena_release:io.deephaven.proto.backplane.grpc.BatchTableRequest.Operation.tail) - if (op_case() == kTail) { - clear_has_op(); - auto* temp = _impl_.op_.tail_; - _impl_.op_.tail_ = nullptr; - return temp; - } else { - return nullptr; - } -} -inline void BatchTableRequest_Operation::unsafe_arena_set_allocated_tail(::io::deephaven::proto::backplane::grpc::HeadOrTailRequest* value) { - // We rely on the oneof clear method to free the earlier contents - // of this oneof. We can directly use the pointer we're given to - // set the new value. - clear_op(); - if (value) { - set_has_tail(); - _impl_.op_.tail_ = value; - } - // @@protoc_insertion_point(field_unsafe_arena_set_allocated:io.deephaven.proto.backplane.grpc.BatchTableRequest.Operation.tail) -} -inline ::io::deephaven::proto::backplane::grpc::HeadOrTailRequest* BatchTableRequest_Operation::_internal_mutable_tail() { - if (op_case() != kTail) { - clear_op(); - set_has_tail(); - _impl_.op_.tail_ = - ::google::protobuf::Message::DefaultConstruct<::io::deephaven::proto::backplane::grpc::HeadOrTailRequest>(GetArena()); - } - return _impl_.op_.tail_; -} -inline ::io::deephaven::proto::backplane::grpc::HeadOrTailRequest* BatchTableRequest_Operation::mutable_tail() ABSL_ATTRIBUTE_LIFETIME_BOUND { - ::io::deephaven::proto::backplane::grpc::HeadOrTailRequest* _msg = _internal_mutable_tail(); - // @@protoc_insertion_point(field_mutable:io.deephaven.proto.backplane.grpc.BatchTableRequest.Operation.tail) - return _msg; -} - -// .io.deephaven.proto.backplane.grpc.HeadOrTailByRequest head_by = 15; -inline bool BatchTableRequest_Operation::has_head_by() const { - return op_case() == kHeadBy; -} -inline bool BatchTableRequest_Operation::_internal_has_head_by() const { - return op_case() == kHeadBy; -} -inline void BatchTableRequest_Operation::set_has_head_by() { - _impl_._oneof_case_[0] = kHeadBy; -} -inline void BatchTableRequest_Operation::clear_head_by() { - ::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(); - } -} -inline ::io::deephaven::proto::backplane::grpc::HeadOrTailByRequest* BatchTableRequest_Operation::release_head_by() { - // @@protoc_insertion_point(field_release:io.deephaven.proto.backplane.grpc.BatchTableRequest.Operation.head_by) - if (op_case() == kHeadBy) { - clear_has_op(); - auto* temp = _impl_.op_.head_by_; - if (GetArena() != nullptr) { - temp = ::google::protobuf::internal::DuplicateIfNonNull(temp); - } - _impl_.op_.head_by_ = nullptr; - return temp; - } else { - return nullptr; - } -} -inline const ::io::deephaven::proto::backplane::grpc::HeadOrTailByRequest& BatchTableRequest_Operation::_internal_head_by() const { - return op_case() == kHeadBy ? *_impl_.op_.head_by_ : reinterpret_cast<::io::deephaven::proto::backplane::grpc::HeadOrTailByRequest&>(::io::deephaven::proto::backplane::grpc::_HeadOrTailByRequest_default_instance_); -} -inline const ::io::deephaven::proto::backplane::grpc::HeadOrTailByRequest& BatchTableRequest_Operation::head_by() const ABSL_ATTRIBUTE_LIFETIME_BOUND { - // @@protoc_insertion_point(field_get:io.deephaven.proto.backplane.grpc.BatchTableRequest.Operation.head_by) - return _internal_head_by(); -} -inline ::io::deephaven::proto::backplane::grpc::HeadOrTailByRequest* BatchTableRequest_Operation::unsafe_arena_release_head_by() { - // @@protoc_insertion_point(field_unsafe_arena_release:io.deephaven.proto.backplane.grpc.BatchTableRequest.Operation.head_by) - if (op_case() == kHeadBy) { - clear_has_op(); - auto* temp = _impl_.op_.head_by_; - _impl_.op_.head_by_ = nullptr; - return temp; - } else { - return nullptr; - } -} -inline void BatchTableRequest_Operation::unsafe_arena_set_allocated_head_by(::io::deephaven::proto::backplane::grpc::HeadOrTailByRequest* value) { - // We rely on the oneof clear method to free the earlier contents - // of this oneof. We can directly use the pointer we're given to - // set the new value. - clear_op(); - if (value) { - set_has_head_by(); - _impl_.op_.head_by_ = value; - } - // @@protoc_insertion_point(field_unsafe_arena_set_allocated:io.deephaven.proto.backplane.grpc.BatchTableRequest.Operation.head_by) -} -inline ::io::deephaven::proto::backplane::grpc::HeadOrTailByRequest* BatchTableRequest_Operation::_internal_mutable_head_by() { - if (op_case() != kHeadBy) { - clear_op(); - set_has_head_by(); - _impl_.op_.head_by_ = - ::google::protobuf::Message::DefaultConstruct<::io::deephaven::proto::backplane::grpc::HeadOrTailByRequest>(GetArena()); - } - return _impl_.op_.head_by_; -} -inline ::io::deephaven::proto::backplane::grpc::HeadOrTailByRequest* BatchTableRequest_Operation::mutable_head_by() ABSL_ATTRIBUTE_LIFETIME_BOUND { - ::io::deephaven::proto::backplane::grpc::HeadOrTailByRequest* _msg = _internal_mutable_head_by(); - // @@protoc_insertion_point(field_mutable:io.deephaven.proto.backplane.grpc.BatchTableRequest.Operation.head_by) - return _msg; -} - -// .io.deephaven.proto.backplane.grpc.HeadOrTailByRequest tail_by = 16; -inline bool BatchTableRequest_Operation::has_tail_by() const { - return op_case() == kTailBy; -} -inline bool BatchTableRequest_Operation::_internal_has_tail_by() const { - return op_case() == kTailBy; -} -inline void BatchTableRequest_Operation::set_has_tail_by() { - _impl_._oneof_case_[0] = kTailBy; -} -inline void BatchTableRequest_Operation::clear_tail_by() { - ::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(); - } -} -inline ::io::deephaven::proto::backplane::grpc::HeadOrTailByRequest* BatchTableRequest_Operation::release_tail_by() { - // @@protoc_insertion_point(field_release:io.deephaven.proto.backplane.grpc.BatchTableRequest.Operation.tail_by) - if (op_case() == kTailBy) { - clear_has_op(); - auto* temp = _impl_.op_.tail_by_; - if (GetArena() != nullptr) { - temp = ::google::protobuf::internal::DuplicateIfNonNull(temp); - } - _impl_.op_.tail_by_ = nullptr; - return temp; - } else { - return nullptr; - } -} -inline const ::io::deephaven::proto::backplane::grpc::HeadOrTailByRequest& BatchTableRequest_Operation::_internal_tail_by() const { - return op_case() == kTailBy ? *_impl_.op_.tail_by_ : reinterpret_cast<::io::deephaven::proto::backplane::grpc::HeadOrTailByRequest&>(::io::deephaven::proto::backplane::grpc::_HeadOrTailByRequest_default_instance_); -} -inline const ::io::deephaven::proto::backplane::grpc::HeadOrTailByRequest& BatchTableRequest_Operation::tail_by() const ABSL_ATTRIBUTE_LIFETIME_BOUND { - // @@protoc_insertion_point(field_get:io.deephaven.proto.backplane.grpc.BatchTableRequest.Operation.tail_by) - return _internal_tail_by(); -} -inline ::io::deephaven::proto::backplane::grpc::HeadOrTailByRequest* BatchTableRequest_Operation::unsafe_arena_release_tail_by() { - // @@protoc_insertion_point(field_unsafe_arena_release:io.deephaven.proto.backplane.grpc.BatchTableRequest.Operation.tail_by) - if (op_case() == kTailBy) { - clear_has_op(); - auto* temp = _impl_.op_.tail_by_; - _impl_.op_.tail_by_ = nullptr; - return temp; - } else { - return nullptr; - } -} -inline void BatchTableRequest_Operation::unsafe_arena_set_allocated_tail_by(::io::deephaven::proto::backplane::grpc::HeadOrTailByRequest* value) { - // We rely on the oneof clear method to free the earlier contents - // of this oneof. We can directly use the pointer we're given to - // set the new value. - clear_op(); - if (value) { - set_has_tail_by(); - _impl_.op_.tail_by_ = value; - } - // @@protoc_insertion_point(field_unsafe_arena_set_allocated:io.deephaven.proto.backplane.grpc.BatchTableRequest.Operation.tail_by) -} -inline ::io::deephaven::proto::backplane::grpc::HeadOrTailByRequest* BatchTableRequest_Operation::_internal_mutable_tail_by() { - if (op_case() != kTailBy) { - clear_op(); - set_has_tail_by(); - _impl_.op_.tail_by_ = - ::google::protobuf::Message::DefaultConstruct<::io::deephaven::proto::backplane::grpc::HeadOrTailByRequest>(GetArena()); - } - return _impl_.op_.tail_by_; -} -inline ::io::deephaven::proto::backplane::grpc::HeadOrTailByRequest* BatchTableRequest_Operation::mutable_tail_by() ABSL_ATTRIBUTE_LIFETIME_BOUND { - ::io::deephaven::proto::backplane::grpc::HeadOrTailByRequest* _msg = _internal_mutable_tail_by(); - // @@protoc_insertion_point(field_mutable:io.deephaven.proto.backplane.grpc.BatchTableRequest.Operation.tail_by) - return _msg; -} - -// .io.deephaven.proto.backplane.grpc.UngroupRequest ungroup = 17; -inline bool BatchTableRequest_Operation::has_ungroup() const { - return op_case() == kUngroup; -} -inline bool BatchTableRequest_Operation::_internal_has_ungroup() const { - return op_case() == kUngroup; -} -inline void BatchTableRequest_Operation::set_has_ungroup() { - _impl_._oneof_case_[0] = kUngroup; -} -inline void BatchTableRequest_Operation::clear_ungroup() { - ::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(); - } -} -inline ::io::deephaven::proto::backplane::grpc::UngroupRequest* BatchTableRequest_Operation::release_ungroup() { - // @@protoc_insertion_point(field_release:io.deephaven.proto.backplane.grpc.BatchTableRequest.Operation.ungroup) - if (op_case() == kUngroup) { - clear_has_op(); - auto* temp = _impl_.op_.ungroup_; - if (GetArena() != nullptr) { - temp = ::google::protobuf::internal::DuplicateIfNonNull(temp); - } - _impl_.op_.ungroup_ = nullptr; - return temp; - } else { - return nullptr; - } -} -inline const ::io::deephaven::proto::backplane::grpc::UngroupRequest& BatchTableRequest_Operation::_internal_ungroup() const { - return op_case() == kUngroup ? *_impl_.op_.ungroup_ : reinterpret_cast<::io::deephaven::proto::backplane::grpc::UngroupRequest&>(::io::deephaven::proto::backplane::grpc::_UngroupRequest_default_instance_); -} -inline const ::io::deephaven::proto::backplane::grpc::UngroupRequest& BatchTableRequest_Operation::ungroup() const ABSL_ATTRIBUTE_LIFETIME_BOUND { - // @@protoc_insertion_point(field_get:io.deephaven.proto.backplane.grpc.BatchTableRequest.Operation.ungroup) - return _internal_ungroup(); -} -inline ::io::deephaven::proto::backplane::grpc::UngroupRequest* BatchTableRequest_Operation::unsafe_arena_release_ungroup() { - // @@protoc_insertion_point(field_unsafe_arena_release:io.deephaven.proto.backplane.grpc.BatchTableRequest.Operation.ungroup) - if (op_case() == kUngroup) { - clear_has_op(); - auto* temp = _impl_.op_.ungroup_; - _impl_.op_.ungroup_ = nullptr; - return temp; - } else { - return nullptr; - } -} -inline void BatchTableRequest_Operation::unsafe_arena_set_allocated_ungroup(::io::deephaven::proto::backplane::grpc::UngroupRequest* value) { - // We rely on the oneof clear method to free the earlier contents - // of this oneof. We can directly use the pointer we're given to - // set the new value. - clear_op(); - if (value) { - set_has_ungroup(); - _impl_.op_.ungroup_ = value; - } - // @@protoc_insertion_point(field_unsafe_arena_set_allocated:io.deephaven.proto.backplane.grpc.BatchTableRequest.Operation.ungroup) -} -inline ::io::deephaven::proto::backplane::grpc::UngroupRequest* BatchTableRequest_Operation::_internal_mutable_ungroup() { - if (op_case() != kUngroup) { - clear_op(); - set_has_ungroup(); - _impl_.op_.ungroup_ = - ::google::protobuf::Message::DefaultConstruct<::io::deephaven::proto::backplane::grpc::UngroupRequest>(GetArena()); - } - return _impl_.op_.ungroup_; -} -inline ::io::deephaven::proto::backplane::grpc::UngroupRequest* BatchTableRequest_Operation::mutable_ungroup() ABSL_ATTRIBUTE_LIFETIME_BOUND { - ::io::deephaven::proto::backplane::grpc::UngroupRequest* _msg = _internal_mutable_ungroup(); - // @@protoc_insertion_point(field_mutable:io.deephaven.proto.backplane.grpc.BatchTableRequest.Operation.ungroup) - return _msg; -} - -// .io.deephaven.proto.backplane.grpc.MergeTablesRequest merge = 18; -inline bool BatchTableRequest_Operation::has_merge() const { - return op_case() == kMerge; -} -inline bool BatchTableRequest_Operation::_internal_has_merge() const { - return op_case() == kMerge; -} -inline void BatchTableRequest_Operation::set_has_merge() { - _impl_._oneof_case_[0] = kMerge; -} -inline void BatchTableRequest_Operation::clear_merge() { - ::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(); - } -} -inline ::io::deephaven::proto::backplane::grpc::MergeTablesRequest* BatchTableRequest_Operation::release_merge() { - // @@protoc_insertion_point(field_release:io.deephaven.proto.backplane.grpc.BatchTableRequest.Operation.merge) - if (op_case() == kMerge) { - clear_has_op(); - auto* temp = _impl_.op_.merge_; - if (GetArena() != nullptr) { - temp = ::google::protobuf::internal::DuplicateIfNonNull(temp); - } - _impl_.op_.merge_ = nullptr; - return temp; - } else { - return nullptr; - } -} -inline const ::io::deephaven::proto::backplane::grpc::MergeTablesRequest& BatchTableRequest_Operation::_internal_merge() const { - return op_case() == kMerge ? *_impl_.op_.merge_ : reinterpret_cast<::io::deephaven::proto::backplane::grpc::MergeTablesRequest&>(::io::deephaven::proto::backplane::grpc::_MergeTablesRequest_default_instance_); -} -inline const ::io::deephaven::proto::backplane::grpc::MergeTablesRequest& BatchTableRequest_Operation::merge() const ABSL_ATTRIBUTE_LIFETIME_BOUND { - // @@protoc_insertion_point(field_get:io.deephaven.proto.backplane.grpc.BatchTableRequest.Operation.merge) - return _internal_merge(); -} -inline ::io::deephaven::proto::backplane::grpc::MergeTablesRequest* BatchTableRequest_Operation::unsafe_arena_release_merge() { - // @@protoc_insertion_point(field_unsafe_arena_release:io.deephaven.proto.backplane.grpc.BatchTableRequest.Operation.merge) - if (op_case() == kMerge) { - clear_has_op(); - auto* temp = _impl_.op_.merge_; - _impl_.op_.merge_ = nullptr; - return temp; - } else { - return nullptr; - } -} -inline void BatchTableRequest_Operation::unsafe_arena_set_allocated_merge(::io::deephaven::proto::backplane::grpc::MergeTablesRequest* value) { - // We rely on the oneof clear method to free the earlier contents - // of this oneof. We can directly use the pointer we're given to - // set the new value. - clear_op(); - if (value) { - set_has_merge(); - _impl_.op_.merge_ = value; - } - // @@protoc_insertion_point(field_unsafe_arena_set_allocated:io.deephaven.proto.backplane.grpc.BatchTableRequest.Operation.merge) -} -inline ::io::deephaven::proto::backplane::grpc::MergeTablesRequest* BatchTableRequest_Operation::_internal_mutable_merge() { - if (op_case() != kMerge) { - clear_op(); - set_has_merge(); - _impl_.op_.merge_ = - ::google::protobuf::Message::DefaultConstruct<::io::deephaven::proto::backplane::grpc::MergeTablesRequest>(GetArena()); - } - return _impl_.op_.merge_; -} -inline ::io::deephaven::proto::backplane::grpc::MergeTablesRequest* BatchTableRequest_Operation::mutable_merge() ABSL_ATTRIBUTE_LIFETIME_BOUND { - ::io::deephaven::proto::backplane::grpc::MergeTablesRequest* _msg = _internal_mutable_merge(); - // @@protoc_insertion_point(field_mutable:io.deephaven.proto.backplane.grpc.BatchTableRequest.Operation.merge) - return _msg; -} - -// .io.deephaven.proto.backplane.grpc.ComboAggregateRequest combo_aggregate = 19; -inline bool BatchTableRequest_Operation::has_combo_aggregate() const { - return op_case() == kComboAggregate; -} -inline bool BatchTableRequest_Operation::_internal_has_combo_aggregate() const { - return op_case() == kComboAggregate; -} -inline void BatchTableRequest_Operation::set_has_combo_aggregate() { - _impl_._oneof_case_[0] = kComboAggregate; -} -inline void BatchTableRequest_Operation::clear_combo_aggregate() { - ::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(); - } -} -inline ::io::deephaven::proto::backplane::grpc::ComboAggregateRequest* BatchTableRequest_Operation::release_combo_aggregate() { - // @@protoc_insertion_point(field_release:io.deephaven.proto.backplane.grpc.BatchTableRequest.Operation.combo_aggregate) - if (op_case() == kComboAggregate) { - clear_has_op(); - auto* temp = _impl_.op_.combo_aggregate_; - if (GetArena() != nullptr) { - temp = ::google::protobuf::internal::DuplicateIfNonNull(temp); - } - _impl_.op_.combo_aggregate_ = nullptr; - return temp; - } else { - return nullptr; - } -} -inline const ::io::deephaven::proto::backplane::grpc::ComboAggregateRequest& BatchTableRequest_Operation::_internal_combo_aggregate() const { - return op_case() == kComboAggregate ? *_impl_.op_.combo_aggregate_ : reinterpret_cast<::io::deephaven::proto::backplane::grpc::ComboAggregateRequest&>(::io::deephaven::proto::backplane::grpc::_ComboAggregateRequest_default_instance_); -} -inline const ::io::deephaven::proto::backplane::grpc::ComboAggregateRequest& BatchTableRequest_Operation::combo_aggregate() const ABSL_ATTRIBUTE_LIFETIME_BOUND { - // @@protoc_insertion_point(field_get:io.deephaven.proto.backplane.grpc.BatchTableRequest.Operation.combo_aggregate) - return _internal_combo_aggregate(); -} -inline ::io::deephaven::proto::backplane::grpc::ComboAggregateRequest* BatchTableRequest_Operation::unsafe_arena_release_combo_aggregate() { - // @@protoc_insertion_point(field_unsafe_arena_release:io.deephaven.proto.backplane.grpc.BatchTableRequest.Operation.combo_aggregate) - if (op_case() == kComboAggregate) { - clear_has_op(); - auto* temp = _impl_.op_.combo_aggregate_; - _impl_.op_.combo_aggregate_ = nullptr; - return temp; - } else { - return nullptr; - } -} -inline void BatchTableRequest_Operation::unsafe_arena_set_allocated_combo_aggregate(::io::deephaven::proto::backplane::grpc::ComboAggregateRequest* value) { - // We rely on the oneof clear method to free the earlier contents - // of this oneof. We can directly use the pointer we're given to - // set the new value. - clear_op(); - if (value) { - set_has_combo_aggregate(); - _impl_.op_.combo_aggregate_ = value; - } - // @@protoc_insertion_point(field_unsafe_arena_set_allocated:io.deephaven.proto.backplane.grpc.BatchTableRequest.Operation.combo_aggregate) -} -inline ::io::deephaven::proto::backplane::grpc::ComboAggregateRequest* BatchTableRequest_Operation::_internal_mutable_combo_aggregate() { - if (op_case() != kComboAggregate) { - clear_op(); - set_has_combo_aggregate(); - _impl_.op_.combo_aggregate_ = - ::google::protobuf::Message::DefaultConstruct<::io::deephaven::proto::backplane::grpc::ComboAggregateRequest>(GetArena()); - } - return _impl_.op_.combo_aggregate_; -} -inline ::io::deephaven::proto::backplane::grpc::ComboAggregateRequest* BatchTableRequest_Operation::mutable_combo_aggregate() ABSL_ATTRIBUTE_LIFETIME_BOUND { - ::io::deephaven::proto::backplane::grpc::ComboAggregateRequest* _msg = _internal_mutable_combo_aggregate(); - // @@protoc_insertion_point(field_mutable:io.deephaven.proto.backplane.grpc.BatchTableRequest.Operation.combo_aggregate) - return _msg; -} - -// .io.deephaven.proto.backplane.grpc.FlattenRequest flatten = 21; -inline bool BatchTableRequest_Operation::has_flatten() const { - return op_case() == kFlatten; -} -inline bool BatchTableRequest_Operation::_internal_has_flatten() const { - return op_case() == kFlatten; -} -inline void BatchTableRequest_Operation::set_has_flatten() { - _impl_._oneof_case_[0] = kFlatten; -} -inline void BatchTableRequest_Operation::clear_flatten() { - ::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(); - } -} -inline ::io::deephaven::proto::backplane::grpc::FlattenRequest* BatchTableRequest_Operation::release_flatten() { - // @@protoc_insertion_point(field_release:io.deephaven.proto.backplane.grpc.BatchTableRequest.Operation.flatten) - if (op_case() == kFlatten) { - clear_has_op(); - auto* temp = _impl_.op_.flatten_; - if (GetArena() != nullptr) { - temp = ::google::protobuf::internal::DuplicateIfNonNull(temp); - } - _impl_.op_.flatten_ = nullptr; - return temp; - } else { - return nullptr; - } -} -inline const ::io::deephaven::proto::backplane::grpc::FlattenRequest& BatchTableRequest_Operation::_internal_flatten() const { - return op_case() == kFlatten ? *_impl_.op_.flatten_ : reinterpret_cast<::io::deephaven::proto::backplane::grpc::FlattenRequest&>(::io::deephaven::proto::backplane::grpc::_FlattenRequest_default_instance_); -} -inline const ::io::deephaven::proto::backplane::grpc::FlattenRequest& BatchTableRequest_Operation::flatten() const ABSL_ATTRIBUTE_LIFETIME_BOUND { - // @@protoc_insertion_point(field_get:io.deephaven.proto.backplane.grpc.BatchTableRequest.Operation.flatten) - return _internal_flatten(); -} -inline ::io::deephaven::proto::backplane::grpc::FlattenRequest* BatchTableRequest_Operation::unsafe_arena_release_flatten() { - // @@protoc_insertion_point(field_unsafe_arena_release:io.deephaven.proto.backplane.grpc.BatchTableRequest.Operation.flatten) - if (op_case() == kFlatten) { - clear_has_op(); - auto* temp = _impl_.op_.flatten_; - _impl_.op_.flatten_ = nullptr; - return temp; - } else { - return nullptr; - } -} -inline void BatchTableRequest_Operation::unsafe_arena_set_allocated_flatten(::io::deephaven::proto::backplane::grpc::FlattenRequest* value) { - // We rely on the oneof clear method to free the earlier contents - // of this oneof. We can directly use the pointer we're given to - // set the new value. - clear_op(); - if (value) { - set_has_flatten(); - _impl_.op_.flatten_ = value; - } - // @@protoc_insertion_point(field_unsafe_arena_set_allocated:io.deephaven.proto.backplane.grpc.BatchTableRequest.Operation.flatten) -} -inline ::io::deephaven::proto::backplane::grpc::FlattenRequest* BatchTableRequest_Operation::_internal_mutable_flatten() { - if (op_case() != kFlatten) { - clear_op(); - set_has_flatten(); - _impl_.op_.flatten_ = - ::google::protobuf::Message::DefaultConstruct<::io::deephaven::proto::backplane::grpc::FlattenRequest>(GetArena()); - } - return _impl_.op_.flatten_; -} -inline ::io::deephaven::proto::backplane::grpc::FlattenRequest* BatchTableRequest_Operation::mutable_flatten() ABSL_ATTRIBUTE_LIFETIME_BOUND { - ::io::deephaven::proto::backplane::grpc::FlattenRequest* _msg = _internal_mutable_flatten(); - // @@protoc_insertion_point(field_mutable:io.deephaven.proto.backplane.grpc.BatchTableRequest.Operation.flatten) - return _msg; -} - -// .io.deephaven.proto.backplane.grpc.RunChartDownsampleRequest run_chart_downsample = 22; -inline bool BatchTableRequest_Operation::has_run_chart_downsample() const { - return op_case() == kRunChartDownsample; -} -inline bool BatchTableRequest_Operation::_internal_has_run_chart_downsample() const { - return op_case() == kRunChartDownsample; -} -inline void BatchTableRequest_Operation::set_has_run_chart_downsample() { - _impl_._oneof_case_[0] = kRunChartDownsample; -} -inline void BatchTableRequest_Operation::clear_run_chart_downsample() { - ::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(); - } -} -inline ::io::deephaven::proto::backplane::grpc::RunChartDownsampleRequest* BatchTableRequest_Operation::release_run_chart_downsample() { - // @@protoc_insertion_point(field_release:io.deephaven.proto.backplane.grpc.BatchTableRequest.Operation.run_chart_downsample) - if (op_case() == kRunChartDownsample) { - clear_has_op(); - auto* temp = _impl_.op_.run_chart_downsample_; - if (GetArena() != nullptr) { - temp = ::google::protobuf::internal::DuplicateIfNonNull(temp); - } - _impl_.op_.run_chart_downsample_ = nullptr; - return temp; - } else { - return nullptr; - } -} -inline const ::io::deephaven::proto::backplane::grpc::RunChartDownsampleRequest& BatchTableRequest_Operation::_internal_run_chart_downsample() const { - return op_case() == kRunChartDownsample ? *_impl_.op_.run_chart_downsample_ : reinterpret_cast<::io::deephaven::proto::backplane::grpc::RunChartDownsampleRequest&>(::io::deephaven::proto::backplane::grpc::_RunChartDownsampleRequest_default_instance_); -} -inline const ::io::deephaven::proto::backplane::grpc::RunChartDownsampleRequest& BatchTableRequest_Operation::run_chart_downsample() const ABSL_ATTRIBUTE_LIFETIME_BOUND { - // @@protoc_insertion_point(field_get:io.deephaven.proto.backplane.grpc.BatchTableRequest.Operation.run_chart_downsample) - return _internal_run_chart_downsample(); -} -inline ::io::deephaven::proto::backplane::grpc::RunChartDownsampleRequest* BatchTableRequest_Operation::unsafe_arena_release_run_chart_downsample() { - // @@protoc_insertion_point(field_unsafe_arena_release:io.deephaven.proto.backplane.grpc.BatchTableRequest.Operation.run_chart_downsample) - if (op_case() == kRunChartDownsample) { - clear_has_op(); - auto* temp = _impl_.op_.run_chart_downsample_; - _impl_.op_.run_chart_downsample_ = nullptr; - return temp; - } else { - return nullptr; - } -} -inline void BatchTableRequest_Operation::unsafe_arena_set_allocated_run_chart_downsample(::io::deephaven::proto::backplane::grpc::RunChartDownsampleRequest* value) { - // We rely on the oneof clear method to free the earlier contents - // of this oneof. We can directly use the pointer we're given to - // set the new value. - clear_op(); - if (value) { - set_has_run_chart_downsample(); - _impl_.op_.run_chart_downsample_ = value; - } - // @@protoc_insertion_point(field_unsafe_arena_set_allocated:io.deephaven.proto.backplane.grpc.BatchTableRequest.Operation.run_chart_downsample) -} -inline ::io::deephaven::proto::backplane::grpc::RunChartDownsampleRequest* BatchTableRequest_Operation::_internal_mutable_run_chart_downsample() { - if (op_case() != kRunChartDownsample) { - clear_op(); - set_has_run_chart_downsample(); - _impl_.op_.run_chart_downsample_ = - ::google::protobuf::Message::DefaultConstruct<::io::deephaven::proto::backplane::grpc::RunChartDownsampleRequest>(GetArena()); - } - return _impl_.op_.run_chart_downsample_; -} -inline ::io::deephaven::proto::backplane::grpc::RunChartDownsampleRequest* BatchTableRequest_Operation::mutable_run_chart_downsample() ABSL_ATTRIBUTE_LIFETIME_BOUND { - ::io::deephaven::proto::backplane::grpc::RunChartDownsampleRequest* _msg = _internal_mutable_run_chart_downsample(); - // @@protoc_insertion_point(field_mutable:io.deephaven.proto.backplane.grpc.BatchTableRequest.Operation.run_chart_downsample) - return _msg; -} - -// .io.deephaven.proto.backplane.grpc.CrossJoinTablesRequest cross_join = 23; -inline bool BatchTableRequest_Operation::has_cross_join() const { - return op_case() == kCrossJoin; -} -inline bool BatchTableRequest_Operation::_internal_has_cross_join() const { - return op_case() == kCrossJoin; -} -inline void BatchTableRequest_Operation::set_has_cross_join() { - _impl_._oneof_case_[0] = kCrossJoin; -} -inline void BatchTableRequest_Operation::clear_cross_join() { - ::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(); - } -} -inline ::io::deephaven::proto::backplane::grpc::CrossJoinTablesRequest* BatchTableRequest_Operation::release_cross_join() { - // @@protoc_insertion_point(field_release:io.deephaven.proto.backplane.grpc.BatchTableRequest.Operation.cross_join) - if (op_case() == kCrossJoin) { - clear_has_op(); - auto* temp = _impl_.op_.cross_join_; - if (GetArena() != nullptr) { - temp = ::google::protobuf::internal::DuplicateIfNonNull(temp); - } - _impl_.op_.cross_join_ = nullptr; - return temp; - } else { - return nullptr; - } -} -inline const ::io::deephaven::proto::backplane::grpc::CrossJoinTablesRequest& BatchTableRequest_Operation::_internal_cross_join() const { - return op_case() == kCrossJoin ? *_impl_.op_.cross_join_ : reinterpret_cast<::io::deephaven::proto::backplane::grpc::CrossJoinTablesRequest&>(::io::deephaven::proto::backplane::grpc::_CrossJoinTablesRequest_default_instance_); -} -inline const ::io::deephaven::proto::backplane::grpc::CrossJoinTablesRequest& BatchTableRequest_Operation::cross_join() const ABSL_ATTRIBUTE_LIFETIME_BOUND { - // @@protoc_insertion_point(field_get:io.deephaven.proto.backplane.grpc.BatchTableRequest.Operation.cross_join) - return _internal_cross_join(); -} -inline ::io::deephaven::proto::backplane::grpc::CrossJoinTablesRequest* BatchTableRequest_Operation::unsafe_arena_release_cross_join() { - // @@protoc_insertion_point(field_unsafe_arena_release:io.deephaven.proto.backplane.grpc.BatchTableRequest.Operation.cross_join) - if (op_case() == kCrossJoin) { - clear_has_op(); - auto* temp = _impl_.op_.cross_join_; - _impl_.op_.cross_join_ = nullptr; - return temp; - } else { - return nullptr; - } -} -inline void BatchTableRequest_Operation::unsafe_arena_set_allocated_cross_join(::io::deephaven::proto::backplane::grpc::CrossJoinTablesRequest* value) { - // We rely on the oneof clear method to free the earlier contents - // of this oneof. We can directly use the pointer we're given to - // set the new value. - clear_op(); - if (value) { - set_has_cross_join(); - _impl_.op_.cross_join_ = value; - } - // @@protoc_insertion_point(field_unsafe_arena_set_allocated:io.deephaven.proto.backplane.grpc.BatchTableRequest.Operation.cross_join) -} -inline ::io::deephaven::proto::backplane::grpc::CrossJoinTablesRequest* BatchTableRequest_Operation::_internal_mutable_cross_join() { - if (op_case() != kCrossJoin) { - clear_op(); - set_has_cross_join(); - _impl_.op_.cross_join_ = - ::google::protobuf::Message::DefaultConstruct<::io::deephaven::proto::backplane::grpc::CrossJoinTablesRequest>(GetArena()); - } - return _impl_.op_.cross_join_; -} -inline ::io::deephaven::proto::backplane::grpc::CrossJoinTablesRequest* BatchTableRequest_Operation::mutable_cross_join() ABSL_ATTRIBUTE_LIFETIME_BOUND { - ::io::deephaven::proto::backplane::grpc::CrossJoinTablesRequest* _msg = _internal_mutable_cross_join(); - // @@protoc_insertion_point(field_mutable:io.deephaven.proto.backplane.grpc.BatchTableRequest.Operation.cross_join) - return _msg; -} - -// .io.deephaven.proto.backplane.grpc.NaturalJoinTablesRequest natural_join = 24; -inline bool BatchTableRequest_Operation::has_natural_join() const { - return op_case() == kNaturalJoin; -} -inline bool BatchTableRequest_Operation::_internal_has_natural_join() const { - return op_case() == kNaturalJoin; -} -inline void BatchTableRequest_Operation::set_has_natural_join() { - _impl_._oneof_case_[0] = kNaturalJoin; -} -inline void BatchTableRequest_Operation::clear_natural_join() { - ::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(); - } -} -inline ::io::deephaven::proto::backplane::grpc::NaturalJoinTablesRequest* BatchTableRequest_Operation::release_natural_join() { - // @@protoc_insertion_point(field_release:io.deephaven.proto.backplane.grpc.BatchTableRequest.Operation.natural_join) - if (op_case() == kNaturalJoin) { - clear_has_op(); - auto* temp = _impl_.op_.natural_join_; - if (GetArena() != nullptr) { - temp = ::google::protobuf::internal::DuplicateIfNonNull(temp); - } - _impl_.op_.natural_join_ = nullptr; - return temp; - } else { - return nullptr; - } -} -inline const ::io::deephaven::proto::backplane::grpc::NaturalJoinTablesRequest& BatchTableRequest_Operation::_internal_natural_join() const { - return op_case() == kNaturalJoin ? *_impl_.op_.natural_join_ : reinterpret_cast<::io::deephaven::proto::backplane::grpc::NaturalJoinTablesRequest&>(::io::deephaven::proto::backplane::grpc::_NaturalJoinTablesRequest_default_instance_); -} -inline const ::io::deephaven::proto::backplane::grpc::NaturalJoinTablesRequest& BatchTableRequest_Operation::natural_join() const ABSL_ATTRIBUTE_LIFETIME_BOUND { - // @@protoc_insertion_point(field_get:io.deephaven.proto.backplane.grpc.BatchTableRequest.Operation.natural_join) - return _internal_natural_join(); -} -inline ::io::deephaven::proto::backplane::grpc::NaturalJoinTablesRequest* BatchTableRequest_Operation::unsafe_arena_release_natural_join() { - // @@protoc_insertion_point(field_unsafe_arena_release:io.deephaven.proto.backplane.grpc.BatchTableRequest.Operation.natural_join) - if (op_case() == kNaturalJoin) { - clear_has_op(); - auto* temp = _impl_.op_.natural_join_; - _impl_.op_.natural_join_ = nullptr; - return temp; - } else { - return nullptr; - } -} -inline void BatchTableRequest_Operation::unsafe_arena_set_allocated_natural_join(::io::deephaven::proto::backplane::grpc::NaturalJoinTablesRequest* value) { - // We rely on the oneof clear method to free the earlier contents - // of this oneof. We can directly use the pointer we're given to - // set the new value. - clear_op(); - if (value) { - set_has_natural_join(); - _impl_.op_.natural_join_ = value; - } - // @@protoc_insertion_point(field_unsafe_arena_set_allocated:io.deephaven.proto.backplane.grpc.BatchTableRequest.Operation.natural_join) -} -inline ::io::deephaven::proto::backplane::grpc::NaturalJoinTablesRequest* BatchTableRequest_Operation::_internal_mutable_natural_join() { - if (op_case() != kNaturalJoin) { - clear_op(); - set_has_natural_join(); - _impl_.op_.natural_join_ = - ::google::protobuf::Message::DefaultConstruct<::io::deephaven::proto::backplane::grpc::NaturalJoinTablesRequest>(GetArena()); - } - return _impl_.op_.natural_join_; -} -inline ::io::deephaven::proto::backplane::grpc::NaturalJoinTablesRequest* BatchTableRequest_Operation::mutable_natural_join() ABSL_ATTRIBUTE_LIFETIME_BOUND { - ::io::deephaven::proto::backplane::grpc::NaturalJoinTablesRequest* _msg = _internal_mutable_natural_join(); - // @@protoc_insertion_point(field_mutable:io.deephaven.proto.backplane.grpc.BatchTableRequest.Operation.natural_join) - return _msg; -} - -// .io.deephaven.proto.backplane.grpc.ExactJoinTablesRequest exact_join = 25; -inline bool BatchTableRequest_Operation::has_exact_join() const { - return op_case() == kExactJoin; -} -inline bool BatchTableRequest_Operation::_internal_has_exact_join() const { - return op_case() == kExactJoin; -} -inline void BatchTableRequest_Operation::set_has_exact_join() { - _impl_._oneof_case_[0] = kExactJoin; -} -inline void BatchTableRequest_Operation::clear_exact_join() { - ::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(); - } -} -inline ::io::deephaven::proto::backplane::grpc::ExactJoinTablesRequest* BatchTableRequest_Operation::release_exact_join() { - // @@protoc_insertion_point(field_release:io.deephaven.proto.backplane.grpc.BatchTableRequest.Operation.exact_join) - if (op_case() == kExactJoin) { - clear_has_op(); - auto* temp = _impl_.op_.exact_join_; - if (GetArena() != nullptr) { - temp = ::google::protobuf::internal::DuplicateIfNonNull(temp); - } - _impl_.op_.exact_join_ = nullptr; - return temp; - } else { - return nullptr; - } -} -inline const ::io::deephaven::proto::backplane::grpc::ExactJoinTablesRequest& BatchTableRequest_Operation::_internal_exact_join() const { - return op_case() == kExactJoin ? *_impl_.op_.exact_join_ : reinterpret_cast<::io::deephaven::proto::backplane::grpc::ExactJoinTablesRequest&>(::io::deephaven::proto::backplane::grpc::_ExactJoinTablesRequest_default_instance_); -} -inline const ::io::deephaven::proto::backplane::grpc::ExactJoinTablesRequest& BatchTableRequest_Operation::exact_join() const ABSL_ATTRIBUTE_LIFETIME_BOUND { - // @@protoc_insertion_point(field_get:io.deephaven.proto.backplane.grpc.BatchTableRequest.Operation.exact_join) - return _internal_exact_join(); -} -inline ::io::deephaven::proto::backplane::grpc::ExactJoinTablesRequest* BatchTableRequest_Operation::unsafe_arena_release_exact_join() { - // @@protoc_insertion_point(field_unsafe_arena_release:io.deephaven.proto.backplane.grpc.BatchTableRequest.Operation.exact_join) - if (op_case() == kExactJoin) { - clear_has_op(); - auto* temp = _impl_.op_.exact_join_; - _impl_.op_.exact_join_ = nullptr; - return temp; - } else { - return nullptr; - } -} -inline void BatchTableRequest_Operation::unsafe_arena_set_allocated_exact_join(::io::deephaven::proto::backplane::grpc::ExactJoinTablesRequest* value) { - // We rely on the oneof clear method to free the earlier contents - // of this oneof. We can directly use the pointer we're given to - // set the new value. - clear_op(); - if (value) { - set_has_exact_join(); - _impl_.op_.exact_join_ = value; - } - // @@protoc_insertion_point(field_unsafe_arena_set_allocated:io.deephaven.proto.backplane.grpc.BatchTableRequest.Operation.exact_join) -} -inline ::io::deephaven::proto::backplane::grpc::ExactJoinTablesRequest* BatchTableRequest_Operation::_internal_mutable_exact_join() { - if (op_case() != kExactJoin) { - clear_op(); - set_has_exact_join(); - _impl_.op_.exact_join_ = - ::google::protobuf::Message::DefaultConstruct<::io::deephaven::proto::backplane::grpc::ExactJoinTablesRequest>(GetArena()); - } - return _impl_.op_.exact_join_; -} -inline ::io::deephaven::proto::backplane::grpc::ExactJoinTablesRequest* BatchTableRequest_Operation::mutable_exact_join() ABSL_ATTRIBUTE_LIFETIME_BOUND { - ::io::deephaven::proto::backplane::grpc::ExactJoinTablesRequest* _msg = _internal_mutable_exact_join(); - // @@protoc_insertion_point(field_mutable:io.deephaven.proto.backplane.grpc.BatchTableRequest.Operation.exact_join) - return _msg; -} - -// .io.deephaven.proto.backplane.grpc.LeftJoinTablesRequest left_join = 26; -inline bool BatchTableRequest_Operation::has_left_join() const { - return op_case() == kLeftJoin; -} -inline bool BatchTableRequest_Operation::_internal_has_left_join() const { - return op_case() == kLeftJoin; -} -inline void BatchTableRequest_Operation::set_has_left_join() { - _impl_._oneof_case_[0] = kLeftJoin; -} -inline void BatchTableRequest_Operation::clear_left_join() { - ::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(); - } -} -inline ::io::deephaven::proto::backplane::grpc::LeftJoinTablesRequest* BatchTableRequest_Operation::release_left_join() { - // @@protoc_insertion_point(field_release:io.deephaven.proto.backplane.grpc.BatchTableRequest.Operation.left_join) - if (op_case() == kLeftJoin) { - clear_has_op(); - auto* temp = _impl_.op_.left_join_; - if (GetArena() != nullptr) { - temp = ::google::protobuf::internal::DuplicateIfNonNull(temp); - } - _impl_.op_.left_join_ = nullptr; - return temp; - } else { - return nullptr; - } -} -inline const ::io::deephaven::proto::backplane::grpc::LeftJoinTablesRequest& BatchTableRequest_Operation::_internal_left_join() const { - return op_case() == kLeftJoin ? *_impl_.op_.left_join_ : reinterpret_cast<::io::deephaven::proto::backplane::grpc::LeftJoinTablesRequest&>(::io::deephaven::proto::backplane::grpc::_LeftJoinTablesRequest_default_instance_); -} -inline const ::io::deephaven::proto::backplane::grpc::LeftJoinTablesRequest& BatchTableRequest_Operation::left_join() const ABSL_ATTRIBUTE_LIFETIME_BOUND { - // @@protoc_insertion_point(field_get:io.deephaven.proto.backplane.grpc.BatchTableRequest.Operation.left_join) - return _internal_left_join(); -} -inline ::io::deephaven::proto::backplane::grpc::LeftJoinTablesRequest* BatchTableRequest_Operation::unsafe_arena_release_left_join() { - // @@protoc_insertion_point(field_unsafe_arena_release:io.deephaven.proto.backplane.grpc.BatchTableRequest.Operation.left_join) - if (op_case() == kLeftJoin) { - clear_has_op(); - auto* temp = _impl_.op_.left_join_; - _impl_.op_.left_join_ = nullptr; - return temp; - } else { - return nullptr; - } -} -inline void BatchTableRequest_Operation::unsafe_arena_set_allocated_left_join(::io::deephaven::proto::backplane::grpc::LeftJoinTablesRequest* value) { - // We rely on the oneof clear method to free the earlier contents - // of this oneof. We can directly use the pointer we're given to - // set the new value. - clear_op(); - if (value) { - set_has_left_join(); - _impl_.op_.left_join_ = value; - } - // @@protoc_insertion_point(field_unsafe_arena_set_allocated:io.deephaven.proto.backplane.grpc.BatchTableRequest.Operation.left_join) -} -inline ::io::deephaven::proto::backplane::grpc::LeftJoinTablesRequest* BatchTableRequest_Operation::_internal_mutable_left_join() { - if (op_case() != kLeftJoin) { - clear_op(); - set_has_left_join(); - _impl_.op_.left_join_ = - ::google::protobuf::Message::DefaultConstruct<::io::deephaven::proto::backplane::grpc::LeftJoinTablesRequest>(GetArena()); - } - return _impl_.op_.left_join_; -} -inline ::io::deephaven::proto::backplane::grpc::LeftJoinTablesRequest* BatchTableRequest_Operation::mutable_left_join() ABSL_ATTRIBUTE_LIFETIME_BOUND { - ::io::deephaven::proto::backplane::grpc::LeftJoinTablesRequest* _msg = _internal_mutable_left_join(); - // @@protoc_insertion_point(field_mutable:io.deephaven.proto.backplane.grpc.BatchTableRequest.Operation.left_join) - return _msg; -} - -// .io.deephaven.proto.backplane.grpc.AsOfJoinTablesRequest as_of_join = 27 [deprecated = true]; -inline bool BatchTableRequest_Operation::has_as_of_join() const { - return op_case() == kAsOfJoin; -} -inline bool BatchTableRequest_Operation::_internal_has_as_of_join() const { - return op_case() == kAsOfJoin; -} -inline void BatchTableRequest_Operation::set_has_as_of_join() { - _impl_._oneof_case_[0] = kAsOfJoin; -} -inline void BatchTableRequest_Operation::clear_as_of_join() { - ::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(); - } -} -inline ::io::deephaven::proto::backplane::grpc::AsOfJoinTablesRequest* BatchTableRequest_Operation::release_as_of_join() { - // @@protoc_insertion_point(field_release:io.deephaven.proto.backplane.grpc.BatchTableRequest.Operation.as_of_join) - if (op_case() == kAsOfJoin) { - clear_has_op(); - auto* temp = _impl_.op_.as_of_join_; - if (GetArena() != nullptr) { - temp = ::google::protobuf::internal::DuplicateIfNonNull(temp); - } - _impl_.op_.as_of_join_ = nullptr; - return temp; - } else { - return nullptr; - } -} -inline const ::io::deephaven::proto::backplane::grpc::AsOfJoinTablesRequest& BatchTableRequest_Operation::_internal_as_of_join() const { - return op_case() == kAsOfJoin ? *_impl_.op_.as_of_join_ : reinterpret_cast<::io::deephaven::proto::backplane::grpc::AsOfJoinTablesRequest&>(::io::deephaven::proto::backplane::grpc::_AsOfJoinTablesRequest_default_instance_); -} -inline const ::io::deephaven::proto::backplane::grpc::AsOfJoinTablesRequest& BatchTableRequest_Operation::as_of_join() const ABSL_ATTRIBUTE_LIFETIME_BOUND { - // @@protoc_insertion_point(field_get:io.deephaven.proto.backplane.grpc.BatchTableRequest.Operation.as_of_join) - return _internal_as_of_join(); -} -inline ::io::deephaven::proto::backplane::grpc::AsOfJoinTablesRequest* BatchTableRequest_Operation::unsafe_arena_release_as_of_join() { - // @@protoc_insertion_point(field_unsafe_arena_release:io.deephaven.proto.backplane.grpc.BatchTableRequest.Operation.as_of_join) - if (op_case() == kAsOfJoin) { - clear_has_op(); - auto* temp = _impl_.op_.as_of_join_; - _impl_.op_.as_of_join_ = nullptr; - return temp; - } else { - return nullptr; - } -} -inline void BatchTableRequest_Operation::unsafe_arena_set_allocated_as_of_join(::io::deephaven::proto::backplane::grpc::AsOfJoinTablesRequest* value) { - // We rely on the oneof clear method to free the earlier contents - // of this oneof. We can directly use the pointer we're given to - // set the new value. - clear_op(); - if (value) { - set_has_as_of_join(); - _impl_.op_.as_of_join_ = value; - } - // @@protoc_insertion_point(field_unsafe_arena_set_allocated:io.deephaven.proto.backplane.grpc.BatchTableRequest.Operation.as_of_join) -} -inline ::io::deephaven::proto::backplane::grpc::AsOfJoinTablesRequest* BatchTableRequest_Operation::_internal_mutable_as_of_join() { - if (op_case() != kAsOfJoin) { - clear_op(); - set_has_as_of_join(); - _impl_.op_.as_of_join_ = - ::google::protobuf::Message::DefaultConstruct<::io::deephaven::proto::backplane::grpc::AsOfJoinTablesRequest>(GetArena()); - } - return _impl_.op_.as_of_join_; -} -inline ::io::deephaven::proto::backplane::grpc::AsOfJoinTablesRequest* BatchTableRequest_Operation::mutable_as_of_join() ABSL_ATTRIBUTE_LIFETIME_BOUND { - ::io::deephaven::proto::backplane::grpc::AsOfJoinTablesRequest* _msg = _internal_mutable_as_of_join(); - // @@protoc_insertion_point(field_mutable:io.deephaven.proto.backplane.grpc.BatchTableRequest.Operation.as_of_join) - return _msg; -} - -// .io.deephaven.proto.backplane.grpc.FetchTableRequest fetch_table = 28; -inline bool BatchTableRequest_Operation::has_fetch_table() const { - return op_case() == kFetchTable; -} -inline bool BatchTableRequest_Operation::_internal_has_fetch_table() const { - return op_case() == kFetchTable; -} -inline void BatchTableRequest_Operation::set_has_fetch_table() { - _impl_._oneof_case_[0] = kFetchTable; -} -inline void BatchTableRequest_Operation::clear_fetch_table() { - ::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(); - } -} -inline ::io::deephaven::proto::backplane::grpc::FetchTableRequest* BatchTableRequest_Operation::release_fetch_table() { - // @@protoc_insertion_point(field_release:io.deephaven.proto.backplane.grpc.BatchTableRequest.Operation.fetch_table) - if (op_case() == kFetchTable) { - clear_has_op(); - auto* temp = _impl_.op_.fetch_table_; - if (GetArena() != nullptr) { - temp = ::google::protobuf::internal::DuplicateIfNonNull(temp); - } - _impl_.op_.fetch_table_ = nullptr; - return temp; - } else { - return nullptr; - } -} -inline const ::io::deephaven::proto::backplane::grpc::FetchTableRequest& BatchTableRequest_Operation::_internal_fetch_table() const { - return op_case() == kFetchTable ? *_impl_.op_.fetch_table_ : reinterpret_cast<::io::deephaven::proto::backplane::grpc::FetchTableRequest&>(::io::deephaven::proto::backplane::grpc::_FetchTableRequest_default_instance_); -} -inline const ::io::deephaven::proto::backplane::grpc::FetchTableRequest& BatchTableRequest_Operation::fetch_table() const ABSL_ATTRIBUTE_LIFETIME_BOUND { - // @@protoc_insertion_point(field_get:io.deephaven.proto.backplane.grpc.BatchTableRequest.Operation.fetch_table) - return _internal_fetch_table(); -} -inline ::io::deephaven::proto::backplane::grpc::FetchTableRequest* BatchTableRequest_Operation::unsafe_arena_release_fetch_table() { - // @@protoc_insertion_point(field_unsafe_arena_release:io.deephaven.proto.backplane.grpc.BatchTableRequest.Operation.fetch_table) - if (op_case() == kFetchTable) { - clear_has_op(); - auto* temp = _impl_.op_.fetch_table_; - _impl_.op_.fetch_table_ = nullptr; - return temp; - } else { - return nullptr; - } -} -inline void BatchTableRequest_Operation::unsafe_arena_set_allocated_fetch_table(::io::deephaven::proto::backplane::grpc::FetchTableRequest* value) { - // We rely on the oneof clear method to free the earlier contents - // of this oneof. We can directly use the pointer we're given to - // set the new value. - clear_op(); - if (value) { - set_has_fetch_table(); - _impl_.op_.fetch_table_ = value; - } - // @@protoc_insertion_point(field_unsafe_arena_set_allocated:io.deephaven.proto.backplane.grpc.BatchTableRequest.Operation.fetch_table) -} -inline ::io::deephaven::proto::backplane::grpc::FetchTableRequest* BatchTableRequest_Operation::_internal_mutable_fetch_table() { - if (op_case() != kFetchTable) { - clear_op(); - set_has_fetch_table(); - _impl_.op_.fetch_table_ = - ::google::protobuf::Message::DefaultConstruct<::io::deephaven::proto::backplane::grpc::FetchTableRequest>(GetArena()); - } - return _impl_.op_.fetch_table_; -} -inline ::io::deephaven::proto::backplane::grpc::FetchTableRequest* BatchTableRequest_Operation::mutable_fetch_table() ABSL_ATTRIBUTE_LIFETIME_BOUND { - ::io::deephaven::proto::backplane::grpc::FetchTableRequest* _msg = _internal_mutable_fetch_table(); - // @@protoc_insertion_point(field_mutable:io.deephaven.proto.backplane.grpc.BatchTableRequest.Operation.fetch_table) - return _msg; -} - -// .io.deephaven.proto.backplane.grpc.ApplyPreviewColumnsRequest apply_preview_columns = 30; -inline bool BatchTableRequest_Operation::has_apply_preview_columns() const { - return op_case() == kApplyPreviewColumns; -} -inline bool BatchTableRequest_Operation::_internal_has_apply_preview_columns() const { - return op_case() == kApplyPreviewColumns; -} -inline void BatchTableRequest_Operation::set_has_apply_preview_columns() { - _impl_._oneof_case_[0] = kApplyPreviewColumns; -} -inline void BatchTableRequest_Operation::clear_apply_preview_columns() { - ::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(); - } -} -inline ::io::deephaven::proto::backplane::grpc::ApplyPreviewColumnsRequest* BatchTableRequest_Operation::release_apply_preview_columns() { - // @@protoc_insertion_point(field_release:io.deephaven.proto.backplane.grpc.BatchTableRequest.Operation.apply_preview_columns) - if (op_case() == kApplyPreviewColumns) { - clear_has_op(); - auto* temp = _impl_.op_.apply_preview_columns_; - if (GetArena() != nullptr) { - temp = ::google::protobuf::internal::DuplicateIfNonNull(temp); - } - _impl_.op_.apply_preview_columns_ = nullptr; - return temp; - } else { - return nullptr; - } -} -inline const ::io::deephaven::proto::backplane::grpc::ApplyPreviewColumnsRequest& BatchTableRequest_Operation::_internal_apply_preview_columns() const { - return op_case() == kApplyPreviewColumns ? *_impl_.op_.apply_preview_columns_ : reinterpret_cast<::io::deephaven::proto::backplane::grpc::ApplyPreviewColumnsRequest&>(::io::deephaven::proto::backplane::grpc::_ApplyPreviewColumnsRequest_default_instance_); -} -inline const ::io::deephaven::proto::backplane::grpc::ApplyPreviewColumnsRequest& BatchTableRequest_Operation::apply_preview_columns() const ABSL_ATTRIBUTE_LIFETIME_BOUND { - // @@protoc_insertion_point(field_get:io.deephaven.proto.backplane.grpc.BatchTableRequest.Operation.apply_preview_columns) - return _internal_apply_preview_columns(); -} -inline ::io::deephaven::proto::backplane::grpc::ApplyPreviewColumnsRequest* BatchTableRequest_Operation::unsafe_arena_release_apply_preview_columns() { - // @@protoc_insertion_point(field_unsafe_arena_release:io.deephaven.proto.backplane.grpc.BatchTableRequest.Operation.apply_preview_columns) - if (op_case() == kApplyPreviewColumns) { - clear_has_op(); - auto* temp = _impl_.op_.apply_preview_columns_; - _impl_.op_.apply_preview_columns_ = nullptr; - return temp; - } else { - return nullptr; - } -} -inline void BatchTableRequest_Operation::unsafe_arena_set_allocated_apply_preview_columns(::io::deephaven::proto::backplane::grpc::ApplyPreviewColumnsRequest* value) { - // We rely on the oneof clear method to free the earlier contents - // of this oneof. We can directly use the pointer we're given to - // set the new value. - clear_op(); - if (value) { - set_has_apply_preview_columns(); - _impl_.op_.apply_preview_columns_ = value; - } - // @@protoc_insertion_point(field_unsafe_arena_set_allocated:io.deephaven.proto.backplane.grpc.BatchTableRequest.Operation.apply_preview_columns) -} -inline ::io::deephaven::proto::backplane::grpc::ApplyPreviewColumnsRequest* BatchTableRequest_Operation::_internal_mutable_apply_preview_columns() { - if (op_case() != kApplyPreviewColumns) { - clear_op(); - set_has_apply_preview_columns(); - _impl_.op_.apply_preview_columns_ = - ::google::protobuf::Message::DefaultConstruct<::io::deephaven::proto::backplane::grpc::ApplyPreviewColumnsRequest>(GetArena()); - } - return _impl_.op_.apply_preview_columns_; -} -inline ::io::deephaven::proto::backplane::grpc::ApplyPreviewColumnsRequest* BatchTableRequest_Operation::mutable_apply_preview_columns() ABSL_ATTRIBUTE_LIFETIME_BOUND { - ::io::deephaven::proto::backplane::grpc::ApplyPreviewColumnsRequest* _msg = _internal_mutable_apply_preview_columns(); - // @@protoc_insertion_point(field_mutable:io.deephaven.proto.backplane.grpc.BatchTableRequest.Operation.apply_preview_columns) - return _msg; -} - -// .io.deephaven.proto.backplane.grpc.CreateInputTableRequest create_input_table = 31; -inline bool BatchTableRequest_Operation::has_create_input_table() const { - return op_case() == kCreateInputTable; -} -inline bool BatchTableRequest_Operation::_internal_has_create_input_table() const { - return op_case() == kCreateInputTable; -} -inline void BatchTableRequest_Operation::set_has_create_input_table() { - _impl_._oneof_case_[0] = kCreateInputTable; -} -inline void BatchTableRequest_Operation::clear_create_input_table() { - ::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(); - } -} -inline ::io::deephaven::proto::backplane::grpc::CreateInputTableRequest* BatchTableRequest_Operation::release_create_input_table() { - // @@protoc_insertion_point(field_release:io.deephaven.proto.backplane.grpc.BatchTableRequest.Operation.create_input_table) - if (op_case() == kCreateInputTable) { - clear_has_op(); - auto* temp = _impl_.op_.create_input_table_; - if (GetArena() != nullptr) { - temp = ::google::protobuf::internal::DuplicateIfNonNull(temp); - } - _impl_.op_.create_input_table_ = nullptr; - return temp; - } else { - return nullptr; - } -} -inline const ::io::deephaven::proto::backplane::grpc::CreateInputTableRequest& BatchTableRequest_Operation::_internal_create_input_table() const { - return op_case() == kCreateInputTable ? *_impl_.op_.create_input_table_ : reinterpret_cast<::io::deephaven::proto::backplane::grpc::CreateInputTableRequest&>(::io::deephaven::proto::backplane::grpc::_CreateInputTableRequest_default_instance_); -} -inline const ::io::deephaven::proto::backplane::grpc::CreateInputTableRequest& BatchTableRequest_Operation::create_input_table() const ABSL_ATTRIBUTE_LIFETIME_BOUND { - // @@protoc_insertion_point(field_get:io.deephaven.proto.backplane.grpc.BatchTableRequest.Operation.create_input_table) - return _internal_create_input_table(); -} -inline ::io::deephaven::proto::backplane::grpc::CreateInputTableRequest* BatchTableRequest_Operation::unsafe_arena_release_create_input_table() { - // @@protoc_insertion_point(field_unsafe_arena_release:io.deephaven.proto.backplane.grpc.BatchTableRequest.Operation.create_input_table) - if (op_case() == kCreateInputTable) { - clear_has_op(); - auto* temp = _impl_.op_.create_input_table_; - _impl_.op_.create_input_table_ = nullptr; - return temp; - } else { - return nullptr; - } -} -inline void BatchTableRequest_Operation::unsafe_arena_set_allocated_create_input_table(::io::deephaven::proto::backplane::grpc::CreateInputTableRequest* value) { - // We rely on the oneof clear method to free the earlier contents - // of this oneof. We can directly use the pointer we're given to - // set the new value. - clear_op(); - if (value) { - set_has_create_input_table(); - _impl_.op_.create_input_table_ = value; - } - // @@protoc_insertion_point(field_unsafe_arena_set_allocated:io.deephaven.proto.backplane.grpc.BatchTableRequest.Operation.create_input_table) -} -inline ::io::deephaven::proto::backplane::grpc::CreateInputTableRequest* BatchTableRequest_Operation::_internal_mutable_create_input_table() { - if (op_case() != kCreateInputTable) { - clear_op(); - set_has_create_input_table(); - _impl_.op_.create_input_table_ = - ::google::protobuf::Message::DefaultConstruct<::io::deephaven::proto::backplane::grpc::CreateInputTableRequest>(GetArena()); - } - return _impl_.op_.create_input_table_; -} -inline ::io::deephaven::proto::backplane::grpc::CreateInputTableRequest* BatchTableRequest_Operation::mutable_create_input_table() ABSL_ATTRIBUTE_LIFETIME_BOUND { - ::io::deephaven::proto::backplane::grpc::CreateInputTableRequest* _msg = _internal_mutable_create_input_table(); - // @@protoc_insertion_point(field_mutable:io.deephaven.proto.backplane.grpc.BatchTableRequest.Operation.create_input_table) - return _msg; -} - -// .io.deephaven.proto.backplane.grpc.UpdateByRequest update_by = 32; -inline bool BatchTableRequest_Operation::has_update_by() const { - return op_case() == kUpdateBy; -} -inline bool BatchTableRequest_Operation::_internal_has_update_by() const { - return op_case() == kUpdateBy; -} -inline void BatchTableRequest_Operation::set_has_update_by() { - _impl_._oneof_case_[0] = kUpdateBy; -} -inline void BatchTableRequest_Operation::clear_update_by() { - ::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(); - } -} -inline ::io::deephaven::proto::backplane::grpc::UpdateByRequest* BatchTableRequest_Operation::release_update_by() { - // @@protoc_insertion_point(field_release:io.deephaven.proto.backplane.grpc.BatchTableRequest.Operation.update_by) - if (op_case() == kUpdateBy) { - clear_has_op(); - auto* temp = _impl_.op_.update_by_; - if (GetArena() != nullptr) { - temp = ::google::protobuf::internal::DuplicateIfNonNull(temp); - } - _impl_.op_.update_by_ = nullptr; - return temp; - } else { - return nullptr; - } -} -inline const ::io::deephaven::proto::backplane::grpc::UpdateByRequest& BatchTableRequest_Operation::_internal_update_by() const { - return op_case() == kUpdateBy ? *_impl_.op_.update_by_ : reinterpret_cast<::io::deephaven::proto::backplane::grpc::UpdateByRequest&>(::io::deephaven::proto::backplane::grpc::_UpdateByRequest_default_instance_); -} -inline const ::io::deephaven::proto::backplane::grpc::UpdateByRequest& BatchTableRequest_Operation::update_by() const ABSL_ATTRIBUTE_LIFETIME_BOUND { - // @@protoc_insertion_point(field_get:io.deephaven.proto.backplane.grpc.BatchTableRequest.Operation.update_by) - return _internal_update_by(); -} -inline ::io::deephaven::proto::backplane::grpc::UpdateByRequest* BatchTableRequest_Operation::unsafe_arena_release_update_by() { - // @@protoc_insertion_point(field_unsafe_arena_release:io.deephaven.proto.backplane.grpc.BatchTableRequest.Operation.update_by) - if (op_case() == kUpdateBy) { - clear_has_op(); - auto* temp = _impl_.op_.update_by_; - _impl_.op_.update_by_ = nullptr; - return temp; - } else { - return nullptr; - } -} -inline void BatchTableRequest_Operation::unsafe_arena_set_allocated_update_by(::io::deephaven::proto::backplane::grpc::UpdateByRequest* value) { - // We rely on the oneof clear method to free the earlier contents - // of this oneof. We can directly use the pointer we're given to - // set the new value. - clear_op(); - if (value) { - set_has_update_by(); - _impl_.op_.update_by_ = value; - } - // @@protoc_insertion_point(field_unsafe_arena_set_allocated:io.deephaven.proto.backplane.grpc.BatchTableRequest.Operation.update_by) -} -inline ::io::deephaven::proto::backplane::grpc::UpdateByRequest* BatchTableRequest_Operation::_internal_mutable_update_by() { - if (op_case() != kUpdateBy) { - clear_op(); - set_has_update_by(); - _impl_.op_.update_by_ = - ::google::protobuf::Message::DefaultConstruct<::io::deephaven::proto::backplane::grpc::UpdateByRequest>(GetArena()); - } - return _impl_.op_.update_by_; -} -inline ::io::deephaven::proto::backplane::grpc::UpdateByRequest* BatchTableRequest_Operation::mutable_update_by() ABSL_ATTRIBUTE_LIFETIME_BOUND { - ::io::deephaven::proto::backplane::grpc::UpdateByRequest* _msg = _internal_mutable_update_by(); - // @@protoc_insertion_point(field_mutable:io.deephaven.proto.backplane.grpc.BatchTableRequest.Operation.update_by) - return _msg; -} - -// .io.deephaven.proto.backplane.grpc.WhereInRequest where_in = 33; -inline bool BatchTableRequest_Operation::has_where_in() const { - return op_case() == kWhereIn; -} -inline bool BatchTableRequest_Operation::_internal_has_where_in() const { - return op_case() == kWhereIn; -} -inline void BatchTableRequest_Operation::set_has_where_in() { - _impl_._oneof_case_[0] = kWhereIn; -} -inline void BatchTableRequest_Operation::clear_where_in() { - ::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(); - } -} -inline ::io::deephaven::proto::backplane::grpc::WhereInRequest* BatchTableRequest_Operation::release_where_in() { - // @@protoc_insertion_point(field_release:io.deephaven.proto.backplane.grpc.BatchTableRequest.Operation.where_in) - if (op_case() == kWhereIn) { - clear_has_op(); - auto* temp = _impl_.op_.where_in_; - if (GetArena() != nullptr) { - temp = ::google::protobuf::internal::DuplicateIfNonNull(temp); - } - _impl_.op_.where_in_ = nullptr; - return temp; - } else { - return nullptr; - } -} -inline const ::io::deephaven::proto::backplane::grpc::WhereInRequest& BatchTableRequest_Operation::_internal_where_in() const { - return op_case() == kWhereIn ? *_impl_.op_.where_in_ : reinterpret_cast<::io::deephaven::proto::backplane::grpc::WhereInRequest&>(::io::deephaven::proto::backplane::grpc::_WhereInRequest_default_instance_); -} -inline const ::io::deephaven::proto::backplane::grpc::WhereInRequest& BatchTableRequest_Operation::where_in() const ABSL_ATTRIBUTE_LIFETIME_BOUND { - // @@protoc_insertion_point(field_get:io.deephaven.proto.backplane.grpc.BatchTableRequest.Operation.where_in) - return _internal_where_in(); -} -inline ::io::deephaven::proto::backplane::grpc::WhereInRequest* BatchTableRequest_Operation::unsafe_arena_release_where_in() { - // @@protoc_insertion_point(field_unsafe_arena_release:io.deephaven.proto.backplane.grpc.BatchTableRequest.Operation.where_in) - if (op_case() == kWhereIn) { - clear_has_op(); - auto* temp = _impl_.op_.where_in_; - _impl_.op_.where_in_ = nullptr; - return temp; - } else { - return nullptr; - } -} -inline void BatchTableRequest_Operation::unsafe_arena_set_allocated_where_in(::io::deephaven::proto::backplane::grpc::WhereInRequest* value) { - // We rely on the oneof clear method to free the earlier contents - // of this oneof. We can directly use the pointer we're given to - // set the new value. - clear_op(); - if (value) { - set_has_where_in(); - _impl_.op_.where_in_ = value; - } - // @@protoc_insertion_point(field_unsafe_arena_set_allocated:io.deephaven.proto.backplane.grpc.BatchTableRequest.Operation.where_in) -} -inline ::io::deephaven::proto::backplane::grpc::WhereInRequest* BatchTableRequest_Operation::_internal_mutable_where_in() { - if (op_case() != kWhereIn) { - clear_op(); - set_has_where_in(); - _impl_.op_.where_in_ = - ::google::protobuf::Message::DefaultConstruct<::io::deephaven::proto::backplane::grpc::WhereInRequest>(GetArena()); - } - return _impl_.op_.where_in_; -} -inline ::io::deephaven::proto::backplane::grpc::WhereInRequest* BatchTableRequest_Operation::mutable_where_in() ABSL_ATTRIBUTE_LIFETIME_BOUND { - ::io::deephaven::proto::backplane::grpc::WhereInRequest* _msg = _internal_mutable_where_in(); - // @@protoc_insertion_point(field_mutable:io.deephaven.proto.backplane.grpc.BatchTableRequest.Operation.where_in) - return _msg; -} - -// .io.deephaven.proto.backplane.grpc.AggregateAllRequest aggregate_all = 34; -inline bool BatchTableRequest_Operation::has_aggregate_all() const { - return op_case() == kAggregateAll; -} -inline bool BatchTableRequest_Operation::_internal_has_aggregate_all() const { - return op_case() == kAggregateAll; -} -inline void BatchTableRequest_Operation::set_has_aggregate_all() { - _impl_._oneof_case_[0] = kAggregateAll; -} -inline void BatchTableRequest_Operation::clear_aggregate_all() { - ::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(); - } -} -inline ::io::deephaven::proto::backplane::grpc::AggregateAllRequest* BatchTableRequest_Operation::release_aggregate_all() { - // @@protoc_insertion_point(field_release:io.deephaven.proto.backplane.grpc.BatchTableRequest.Operation.aggregate_all) - if (op_case() == kAggregateAll) { - clear_has_op(); - auto* temp = _impl_.op_.aggregate_all_; - if (GetArena() != nullptr) { - temp = ::google::protobuf::internal::DuplicateIfNonNull(temp); - } - _impl_.op_.aggregate_all_ = nullptr; - return temp; - } else { - return nullptr; - } -} -inline const ::io::deephaven::proto::backplane::grpc::AggregateAllRequest& BatchTableRequest_Operation::_internal_aggregate_all() const { - return op_case() == kAggregateAll ? *_impl_.op_.aggregate_all_ : reinterpret_cast<::io::deephaven::proto::backplane::grpc::AggregateAllRequest&>(::io::deephaven::proto::backplane::grpc::_AggregateAllRequest_default_instance_); -} -inline const ::io::deephaven::proto::backplane::grpc::AggregateAllRequest& BatchTableRequest_Operation::aggregate_all() const ABSL_ATTRIBUTE_LIFETIME_BOUND { - // @@protoc_insertion_point(field_get:io.deephaven.proto.backplane.grpc.BatchTableRequest.Operation.aggregate_all) - return _internal_aggregate_all(); -} -inline ::io::deephaven::proto::backplane::grpc::AggregateAllRequest* BatchTableRequest_Operation::unsafe_arena_release_aggregate_all() { - // @@protoc_insertion_point(field_unsafe_arena_release:io.deephaven.proto.backplane.grpc.BatchTableRequest.Operation.aggregate_all) - if (op_case() == kAggregateAll) { - clear_has_op(); - auto* temp = _impl_.op_.aggregate_all_; - _impl_.op_.aggregate_all_ = nullptr; - return temp; - } else { - return nullptr; - } -} -inline void BatchTableRequest_Operation::unsafe_arena_set_allocated_aggregate_all(::io::deephaven::proto::backplane::grpc::AggregateAllRequest* value) { - // We rely on the oneof clear method to free the earlier contents - // of this oneof. We can directly use the pointer we're given to - // set the new value. - clear_op(); - if (value) { - set_has_aggregate_all(); - _impl_.op_.aggregate_all_ = value; - } - // @@protoc_insertion_point(field_unsafe_arena_set_allocated:io.deephaven.proto.backplane.grpc.BatchTableRequest.Operation.aggregate_all) -} -inline ::io::deephaven::proto::backplane::grpc::AggregateAllRequest* BatchTableRequest_Operation::_internal_mutable_aggregate_all() { - if (op_case() != kAggregateAll) { - clear_op(); - set_has_aggregate_all(); - _impl_.op_.aggregate_all_ = - ::google::protobuf::Message::DefaultConstruct<::io::deephaven::proto::backplane::grpc::AggregateAllRequest>(GetArena()); - } - return _impl_.op_.aggregate_all_; -} -inline ::io::deephaven::proto::backplane::grpc::AggregateAllRequest* BatchTableRequest_Operation::mutable_aggregate_all() ABSL_ATTRIBUTE_LIFETIME_BOUND { - ::io::deephaven::proto::backplane::grpc::AggregateAllRequest* _msg = _internal_mutable_aggregate_all(); - // @@protoc_insertion_point(field_mutable:io.deephaven.proto.backplane.grpc.BatchTableRequest.Operation.aggregate_all) - return _msg; -} - -// .io.deephaven.proto.backplane.grpc.AggregateRequest aggregate = 35; -inline bool BatchTableRequest_Operation::has_aggregate() const { - return op_case() == kAggregate; -} -inline bool BatchTableRequest_Operation::_internal_has_aggregate() const { - return op_case() == kAggregate; -} -inline void BatchTableRequest_Operation::set_has_aggregate() { - _impl_._oneof_case_[0] = kAggregate; -} -inline void BatchTableRequest_Operation::clear_aggregate() { - ::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(); - } -} -inline ::io::deephaven::proto::backplane::grpc::AggregateRequest* BatchTableRequest_Operation::release_aggregate() { - // @@protoc_insertion_point(field_release:io.deephaven.proto.backplane.grpc.BatchTableRequest.Operation.aggregate) - if (op_case() == kAggregate) { - clear_has_op(); - auto* temp = _impl_.op_.aggregate_; - if (GetArena() != nullptr) { - temp = ::google::protobuf::internal::DuplicateIfNonNull(temp); - } - _impl_.op_.aggregate_ = nullptr; - return temp; - } else { - return nullptr; - } -} -inline const ::io::deephaven::proto::backplane::grpc::AggregateRequest& BatchTableRequest_Operation::_internal_aggregate() const { - return op_case() == kAggregate ? *_impl_.op_.aggregate_ : reinterpret_cast<::io::deephaven::proto::backplane::grpc::AggregateRequest&>(::io::deephaven::proto::backplane::grpc::_AggregateRequest_default_instance_); -} -inline const ::io::deephaven::proto::backplane::grpc::AggregateRequest& BatchTableRequest_Operation::aggregate() const ABSL_ATTRIBUTE_LIFETIME_BOUND { - // @@protoc_insertion_point(field_get:io.deephaven.proto.backplane.grpc.BatchTableRequest.Operation.aggregate) - return _internal_aggregate(); -} -inline ::io::deephaven::proto::backplane::grpc::AggregateRequest* BatchTableRequest_Operation::unsafe_arena_release_aggregate() { - // @@protoc_insertion_point(field_unsafe_arena_release:io.deephaven.proto.backplane.grpc.BatchTableRequest.Operation.aggregate) - if (op_case() == kAggregate) { - clear_has_op(); - auto* temp = _impl_.op_.aggregate_; - _impl_.op_.aggregate_ = nullptr; - return temp; - } else { - return nullptr; - } -} -inline void BatchTableRequest_Operation::unsafe_arena_set_allocated_aggregate(::io::deephaven::proto::backplane::grpc::AggregateRequest* value) { - // We rely on the oneof clear method to free the earlier contents - // of this oneof. We can directly use the pointer we're given to - // set the new value. - clear_op(); - if (value) { - set_has_aggregate(); - _impl_.op_.aggregate_ = value; - } - // @@protoc_insertion_point(field_unsafe_arena_set_allocated:io.deephaven.proto.backplane.grpc.BatchTableRequest.Operation.aggregate) -} -inline ::io::deephaven::proto::backplane::grpc::AggregateRequest* BatchTableRequest_Operation::_internal_mutable_aggregate() { - if (op_case() != kAggregate) { - clear_op(); - set_has_aggregate(); - _impl_.op_.aggregate_ = - ::google::protobuf::Message::DefaultConstruct<::io::deephaven::proto::backplane::grpc::AggregateRequest>(GetArena()); - } - return _impl_.op_.aggregate_; -} -inline ::io::deephaven::proto::backplane::grpc::AggregateRequest* BatchTableRequest_Operation::mutable_aggregate() ABSL_ATTRIBUTE_LIFETIME_BOUND { - ::io::deephaven::proto::backplane::grpc::AggregateRequest* _msg = _internal_mutable_aggregate(); - // @@protoc_insertion_point(field_mutable:io.deephaven.proto.backplane.grpc.BatchTableRequest.Operation.aggregate) - return _msg; -} - -// .io.deephaven.proto.backplane.grpc.SnapshotTableRequest snapshot = 36; -inline bool BatchTableRequest_Operation::has_snapshot() const { - return op_case() == kSnapshot; -} -inline bool BatchTableRequest_Operation::_internal_has_snapshot() const { - return op_case() == kSnapshot; -} -inline void BatchTableRequest_Operation::set_has_snapshot() { - _impl_._oneof_case_[0] = kSnapshot; -} -inline void BatchTableRequest_Operation::clear_snapshot() { - ::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(); - } -} -inline ::io::deephaven::proto::backplane::grpc::SnapshotTableRequest* BatchTableRequest_Operation::release_snapshot() { - // @@protoc_insertion_point(field_release:io.deephaven.proto.backplane.grpc.BatchTableRequest.Operation.snapshot) - if (op_case() == kSnapshot) { - clear_has_op(); - auto* temp = _impl_.op_.snapshot_; - if (GetArena() != nullptr) { - temp = ::google::protobuf::internal::DuplicateIfNonNull(temp); - } - _impl_.op_.snapshot_ = nullptr; - return temp; - } else { - return nullptr; - } -} -inline const ::io::deephaven::proto::backplane::grpc::SnapshotTableRequest& BatchTableRequest_Operation::_internal_snapshot() const { - return op_case() == kSnapshot ? *_impl_.op_.snapshot_ : reinterpret_cast<::io::deephaven::proto::backplane::grpc::SnapshotTableRequest&>(::io::deephaven::proto::backplane::grpc::_SnapshotTableRequest_default_instance_); -} -inline const ::io::deephaven::proto::backplane::grpc::SnapshotTableRequest& BatchTableRequest_Operation::snapshot() const ABSL_ATTRIBUTE_LIFETIME_BOUND { - // @@protoc_insertion_point(field_get:io.deephaven.proto.backplane.grpc.BatchTableRequest.Operation.snapshot) - return _internal_snapshot(); -} -inline ::io::deephaven::proto::backplane::grpc::SnapshotTableRequest* BatchTableRequest_Operation::unsafe_arena_release_snapshot() { - // @@protoc_insertion_point(field_unsafe_arena_release:io.deephaven.proto.backplane.grpc.BatchTableRequest.Operation.snapshot) - if (op_case() == kSnapshot) { - clear_has_op(); - auto* temp = _impl_.op_.snapshot_; - _impl_.op_.snapshot_ = nullptr; - return temp; - } else { - return nullptr; - } -} -inline void BatchTableRequest_Operation::unsafe_arena_set_allocated_snapshot(::io::deephaven::proto::backplane::grpc::SnapshotTableRequest* value) { - // We rely on the oneof clear method to free the earlier contents - // of this oneof. We can directly use the pointer we're given to - // set the new value. - clear_op(); - if (value) { - set_has_snapshot(); - _impl_.op_.snapshot_ = value; - } - // @@protoc_insertion_point(field_unsafe_arena_set_allocated:io.deephaven.proto.backplane.grpc.BatchTableRequest.Operation.snapshot) -} -inline ::io::deephaven::proto::backplane::grpc::SnapshotTableRequest* BatchTableRequest_Operation::_internal_mutable_snapshot() { - if (op_case() != kSnapshot) { - clear_op(); - set_has_snapshot(); - _impl_.op_.snapshot_ = - ::google::protobuf::Message::DefaultConstruct<::io::deephaven::proto::backplane::grpc::SnapshotTableRequest>(GetArena()); - } - return _impl_.op_.snapshot_; -} -inline ::io::deephaven::proto::backplane::grpc::SnapshotTableRequest* BatchTableRequest_Operation::mutable_snapshot() ABSL_ATTRIBUTE_LIFETIME_BOUND { - ::io::deephaven::proto::backplane::grpc::SnapshotTableRequest* _msg = _internal_mutable_snapshot(); - // @@protoc_insertion_point(field_mutable:io.deephaven.proto.backplane.grpc.BatchTableRequest.Operation.snapshot) - return _msg; -} - -// .io.deephaven.proto.backplane.grpc.SnapshotWhenTableRequest snapshot_when = 37; -inline bool BatchTableRequest_Operation::has_snapshot_when() const { - return op_case() == kSnapshotWhen; -} -inline bool BatchTableRequest_Operation::_internal_has_snapshot_when() const { - return op_case() == kSnapshotWhen; -} -inline void BatchTableRequest_Operation::set_has_snapshot_when() { - _impl_._oneof_case_[0] = kSnapshotWhen; -} -inline void BatchTableRequest_Operation::clear_snapshot_when() { - ::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(); - } -} -inline ::io::deephaven::proto::backplane::grpc::SnapshotWhenTableRequest* BatchTableRequest_Operation::release_snapshot_when() { - // @@protoc_insertion_point(field_release:io.deephaven.proto.backplane.grpc.BatchTableRequest.Operation.snapshot_when) - if (op_case() == kSnapshotWhen) { - clear_has_op(); - auto* temp = _impl_.op_.snapshot_when_; - if (GetArena() != nullptr) { - temp = ::google::protobuf::internal::DuplicateIfNonNull(temp); - } - _impl_.op_.snapshot_when_ = nullptr; - return temp; - } else { - return nullptr; - } -} -inline const ::io::deephaven::proto::backplane::grpc::SnapshotWhenTableRequest& BatchTableRequest_Operation::_internal_snapshot_when() const { - return op_case() == kSnapshotWhen ? *_impl_.op_.snapshot_when_ : reinterpret_cast<::io::deephaven::proto::backplane::grpc::SnapshotWhenTableRequest&>(::io::deephaven::proto::backplane::grpc::_SnapshotWhenTableRequest_default_instance_); -} -inline const ::io::deephaven::proto::backplane::grpc::SnapshotWhenTableRequest& BatchTableRequest_Operation::snapshot_when() const ABSL_ATTRIBUTE_LIFETIME_BOUND { - // @@protoc_insertion_point(field_get:io.deephaven.proto.backplane.grpc.BatchTableRequest.Operation.snapshot_when) - return _internal_snapshot_when(); -} -inline ::io::deephaven::proto::backplane::grpc::SnapshotWhenTableRequest* BatchTableRequest_Operation::unsafe_arena_release_snapshot_when() { - // @@protoc_insertion_point(field_unsafe_arena_release:io.deephaven.proto.backplane.grpc.BatchTableRequest.Operation.snapshot_when) - if (op_case() == kSnapshotWhen) { - clear_has_op(); - auto* temp = _impl_.op_.snapshot_when_; - _impl_.op_.snapshot_when_ = nullptr; - return temp; - } else { - return nullptr; - } -} -inline void BatchTableRequest_Operation::unsafe_arena_set_allocated_snapshot_when(::io::deephaven::proto::backplane::grpc::SnapshotWhenTableRequest* value) { - // We rely on the oneof clear method to free the earlier contents - // of this oneof. We can directly use the pointer we're given to - // set the new value. - clear_op(); - if (value) { - set_has_snapshot_when(); - _impl_.op_.snapshot_when_ = value; - } - // @@protoc_insertion_point(field_unsafe_arena_set_allocated:io.deephaven.proto.backplane.grpc.BatchTableRequest.Operation.snapshot_when) -} -inline ::io::deephaven::proto::backplane::grpc::SnapshotWhenTableRequest* BatchTableRequest_Operation::_internal_mutable_snapshot_when() { - if (op_case() != kSnapshotWhen) { - clear_op(); - set_has_snapshot_when(); - _impl_.op_.snapshot_when_ = - ::google::protobuf::Message::DefaultConstruct<::io::deephaven::proto::backplane::grpc::SnapshotWhenTableRequest>(GetArena()); - } - return _impl_.op_.snapshot_when_; -} -inline ::io::deephaven::proto::backplane::grpc::SnapshotWhenTableRequest* BatchTableRequest_Operation::mutable_snapshot_when() ABSL_ATTRIBUTE_LIFETIME_BOUND { - ::io::deephaven::proto::backplane::grpc::SnapshotWhenTableRequest* _msg = _internal_mutable_snapshot_when(); - // @@protoc_insertion_point(field_mutable:io.deephaven.proto.backplane.grpc.BatchTableRequest.Operation.snapshot_when) - return _msg; -} - -// .io.deephaven.proto.backplane.grpc.MetaTableRequest meta_table = 38; -inline bool BatchTableRequest_Operation::has_meta_table() const { - return op_case() == kMetaTable; -} -inline bool BatchTableRequest_Operation::_internal_has_meta_table() const { - return op_case() == kMetaTable; -} -inline void BatchTableRequest_Operation::set_has_meta_table() { - _impl_._oneof_case_[0] = kMetaTable; -} -inline void BatchTableRequest_Operation::clear_meta_table() { - ::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(); - } -} -inline ::io::deephaven::proto::backplane::grpc::MetaTableRequest* BatchTableRequest_Operation::release_meta_table() { - // @@protoc_insertion_point(field_release:io.deephaven.proto.backplane.grpc.BatchTableRequest.Operation.meta_table) - if (op_case() == kMetaTable) { - clear_has_op(); - auto* temp = _impl_.op_.meta_table_; - if (GetArena() != nullptr) { - temp = ::google::protobuf::internal::DuplicateIfNonNull(temp); - } - _impl_.op_.meta_table_ = nullptr; - return temp; - } else { - return nullptr; - } -} -inline const ::io::deephaven::proto::backplane::grpc::MetaTableRequest& BatchTableRequest_Operation::_internal_meta_table() const { - return op_case() == kMetaTable ? *_impl_.op_.meta_table_ : reinterpret_cast<::io::deephaven::proto::backplane::grpc::MetaTableRequest&>(::io::deephaven::proto::backplane::grpc::_MetaTableRequest_default_instance_); -} -inline const ::io::deephaven::proto::backplane::grpc::MetaTableRequest& BatchTableRequest_Operation::meta_table() const ABSL_ATTRIBUTE_LIFETIME_BOUND { - // @@protoc_insertion_point(field_get:io.deephaven.proto.backplane.grpc.BatchTableRequest.Operation.meta_table) - return _internal_meta_table(); -} -inline ::io::deephaven::proto::backplane::grpc::MetaTableRequest* BatchTableRequest_Operation::unsafe_arena_release_meta_table() { - // @@protoc_insertion_point(field_unsafe_arena_release:io.deephaven.proto.backplane.grpc.BatchTableRequest.Operation.meta_table) - if (op_case() == kMetaTable) { - clear_has_op(); - auto* temp = _impl_.op_.meta_table_; - _impl_.op_.meta_table_ = nullptr; - return temp; - } else { - return nullptr; - } -} -inline void BatchTableRequest_Operation::unsafe_arena_set_allocated_meta_table(::io::deephaven::proto::backplane::grpc::MetaTableRequest* value) { - // We rely on the oneof clear method to free the earlier contents - // of this oneof. We can directly use the pointer we're given to - // set the new value. - clear_op(); - if (value) { - set_has_meta_table(); - _impl_.op_.meta_table_ = value; - } - // @@protoc_insertion_point(field_unsafe_arena_set_allocated:io.deephaven.proto.backplane.grpc.BatchTableRequest.Operation.meta_table) -} -inline ::io::deephaven::proto::backplane::grpc::MetaTableRequest* BatchTableRequest_Operation::_internal_mutable_meta_table() { - if (op_case() != kMetaTable) { - clear_op(); - set_has_meta_table(); - _impl_.op_.meta_table_ = - ::google::protobuf::Message::DefaultConstruct<::io::deephaven::proto::backplane::grpc::MetaTableRequest>(GetArena()); - } - return _impl_.op_.meta_table_; -} -inline ::io::deephaven::proto::backplane::grpc::MetaTableRequest* BatchTableRequest_Operation::mutable_meta_table() ABSL_ATTRIBUTE_LIFETIME_BOUND { - ::io::deephaven::proto::backplane::grpc::MetaTableRequest* _msg = _internal_mutable_meta_table(); - // @@protoc_insertion_point(field_mutable:io.deephaven.proto.backplane.grpc.BatchTableRequest.Operation.meta_table) - return _msg; -} - -// .io.deephaven.proto.backplane.grpc.RangeJoinTablesRequest range_join = 39; -inline bool BatchTableRequest_Operation::has_range_join() const { - return op_case() == kRangeJoin; -} -inline bool BatchTableRequest_Operation::_internal_has_range_join() const { - return op_case() == kRangeJoin; -} -inline void BatchTableRequest_Operation::set_has_range_join() { - _impl_._oneof_case_[0] = kRangeJoin; -} -inline void BatchTableRequest_Operation::clear_range_join() { - ::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(); - } -} -inline ::io::deephaven::proto::backplane::grpc::RangeJoinTablesRequest* BatchTableRequest_Operation::release_range_join() { - // @@protoc_insertion_point(field_release:io.deephaven.proto.backplane.grpc.BatchTableRequest.Operation.range_join) - if (op_case() == kRangeJoin) { - clear_has_op(); - auto* temp = _impl_.op_.range_join_; - if (GetArena() != nullptr) { - temp = ::google::protobuf::internal::DuplicateIfNonNull(temp); - } - _impl_.op_.range_join_ = nullptr; - return temp; - } else { - return nullptr; - } -} -inline const ::io::deephaven::proto::backplane::grpc::RangeJoinTablesRequest& BatchTableRequest_Operation::_internal_range_join() const { - return op_case() == kRangeJoin ? *_impl_.op_.range_join_ : reinterpret_cast<::io::deephaven::proto::backplane::grpc::RangeJoinTablesRequest&>(::io::deephaven::proto::backplane::grpc::_RangeJoinTablesRequest_default_instance_); -} -inline const ::io::deephaven::proto::backplane::grpc::RangeJoinTablesRequest& BatchTableRequest_Operation::range_join() const ABSL_ATTRIBUTE_LIFETIME_BOUND { - // @@protoc_insertion_point(field_get:io.deephaven.proto.backplane.grpc.BatchTableRequest.Operation.range_join) - return _internal_range_join(); -} -inline ::io::deephaven::proto::backplane::grpc::RangeJoinTablesRequest* BatchTableRequest_Operation::unsafe_arena_release_range_join() { - // @@protoc_insertion_point(field_unsafe_arena_release:io.deephaven.proto.backplane.grpc.BatchTableRequest.Operation.range_join) - if (op_case() == kRangeJoin) { - clear_has_op(); - auto* temp = _impl_.op_.range_join_; - _impl_.op_.range_join_ = nullptr; - return temp; - } else { - return nullptr; - } -} -inline void BatchTableRequest_Operation::unsafe_arena_set_allocated_range_join(::io::deephaven::proto::backplane::grpc::RangeJoinTablesRequest* value) { - // We rely on the oneof clear method to free the earlier contents - // of this oneof. We can directly use the pointer we're given to - // set the new value. - clear_op(); - if (value) { - set_has_range_join(); - _impl_.op_.range_join_ = value; - } - // @@protoc_insertion_point(field_unsafe_arena_set_allocated:io.deephaven.proto.backplane.grpc.BatchTableRequest.Operation.range_join) -} -inline ::io::deephaven::proto::backplane::grpc::RangeJoinTablesRequest* BatchTableRequest_Operation::_internal_mutable_range_join() { - if (op_case() != kRangeJoin) { - clear_op(); - set_has_range_join(); - _impl_.op_.range_join_ = - ::google::protobuf::Message::DefaultConstruct<::io::deephaven::proto::backplane::grpc::RangeJoinTablesRequest>(GetArena()); - } - return _impl_.op_.range_join_; -} -inline ::io::deephaven::proto::backplane::grpc::RangeJoinTablesRequest* BatchTableRequest_Operation::mutable_range_join() ABSL_ATTRIBUTE_LIFETIME_BOUND { - ::io::deephaven::proto::backplane::grpc::RangeJoinTablesRequest* _msg = _internal_mutable_range_join(); - // @@protoc_insertion_point(field_mutable:io.deephaven.proto.backplane.grpc.BatchTableRequest.Operation.range_join) - return _msg; -} - -// .io.deephaven.proto.backplane.grpc.AjRajTablesRequest aj = 40; -inline bool BatchTableRequest_Operation::has_aj() const { - return op_case() == kAj; -} -inline bool BatchTableRequest_Operation::_internal_has_aj() const { - return op_case() == kAj; -} -inline void BatchTableRequest_Operation::set_has_aj() { - _impl_._oneof_case_[0] = kAj; -} -inline void BatchTableRequest_Operation::clear_aj() { - ::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(); - } -} -inline ::io::deephaven::proto::backplane::grpc::AjRajTablesRequest* BatchTableRequest_Operation::release_aj() { - // @@protoc_insertion_point(field_release:io.deephaven.proto.backplane.grpc.BatchTableRequest.Operation.aj) - if (op_case() == kAj) { - clear_has_op(); - auto* temp = _impl_.op_.aj_; - if (GetArena() != nullptr) { - temp = ::google::protobuf::internal::DuplicateIfNonNull(temp); - } - _impl_.op_.aj_ = nullptr; - return temp; - } else { - return nullptr; - } -} -inline const ::io::deephaven::proto::backplane::grpc::AjRajTablesRequest& BatchTableRequest_Operation::_internal_aj() const { - return op_case() == kAj ? *_impl_.op_.aj_ : reinterpret_cast<::io::deephaven::proto::backplane::grpc::AjRajTablesRequest&>(::io::deephaven::proto::backplane::grpc::_AjRajTablesRequest_default_instance_); -} -inline const ::io::deephaven::proto::backplane::grpc::AjRajTablesRequest& BatchTableRequest_Operation::aj() const ABSL_ATTRIBUTE_LIFETIME_BOUND { - // @@protoc_insertion_point(field_get:io.deephaven.proto.backplane.grpc.BatchTableRequest.Operation.aj) - return _internal_aj(); -} -inline ::io::deephaven::proto::backplane::grpc::AjRajTablesRequest* BatchTableRequest_Operation::unsafe_arena_release_aj() { - // @@protoc_insertion_point(field_unsafe_arena_release:io.deephaven.proto.backplane.grpc.BatchTableRequest.Operation.aj) - if (op_case() == kAj) { - clear_has_op(); - auto* temp = _impl_.op_.aj_; - _impl_.op_.aj_ = nullptr; - return temp; - } else { - return nullptr; - } -} -inline void BatchTableRequest_Operation::unsafe_arena_set_allocated_aj(::io::deephaven::proto::backplane::grpc::AjRajTablesRequest* value) { - // We rely on the oneof clear method to free the earlier contents - // of this oneof. We can directly use the pointer we're given to - // set the new value. - clear_op(); - if (value) { - set_has_aj(); - _impl_.op_.aj_ = value; - } - // @@protoc_insertion_point(field_unsafe_arena_set_allocated:io.deephaven.proto.backplane.grpc.BatchTableRequest.Operation.aj) -} -inline ::io::deephaven::proto::backplane::grpc::AjRajTablesRequest* BatchTableRequest_Operation::_internal_mutable_aj() { - if (op_case() != kAj) { - clear_op(); - set_has_aj(); - _impl_.op_.aj_ = - ::google::protobuf::Message::DefaultConstruct<::io::deephaven::proto::backplane::grpc::AjRajTablesRequest>(GetArena()); - } - return _impl_.op_.aj_; -} -inline ::io::deephaven::proto::backplane::grpc::AjRajTablesRequest* BatchTableRequest_Operation::mutable_aj() ABSL_ATTRIBUTE_LIFETIME_BOUND { - ::io::deephaven::proto::backplane::grpc::AjRajTablesRequest* _msg = _internal_mutable_aj(); - // @@protoc_insertion_point(field_mutable:io.deephaven.proto.backplane.grpc.BatchTableRequest.Operation.aj) - return _msg; -} - -// .io.deephaven.proto.backplane.grpc.AjRajTablesRequest raj = 41; -inline bool BatchTableRequest_Operation::has_raj() const { - return op_case() == kRaj; -} -inline bool BatchTableRequest_Operation::_internal_has_raj() const { - return op_case() == kRaj; -} -inline void BatchTableRequest_Operation::set_has_raj() { - _impl_._oneof_case_[0] = kRaj; -} -inline void BatchTableRequest_Operation::clear_raj() { - ::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(); - } -} -inline ::io::deephaven::proto::backplane::grpc::AjRajTablesRequest* BatchTableRequest_Operation::release_raj() { - // @@protoc_insertion_point(field_release:io.deephaven.proto.backplane.grpc.BatchTableRequest.Operation.raj) - if (op_case() == kRaj) { - clear_has_op(); - auto* temp = _impl_.op_.raj_; - if (GetArena() != nullptr) { - temp = ::google::protobuf::internal::DuplicateIfNonNull(temp); - } - _impl_.op_.raj_ = nullptr; - return temp; - } else { - return nullptr; - } -} -inline const ::io::deephaven::proto::backplane::grpc::AjRajTablesRequest& BatchTableRequest_Operation::_internal_raj() const { - return op_case() == kRaj ? *_impl_.op_.raj_ : reinterpret_cast<::io::deephaven::proto::backplane::grpc::AjRajTablesRequest&>(::io::deephaven::proto::backplane::grpc::_AjRajTablesRequest_default_instance_); -} -inline const ::io::deephaven::proto::backplane::grpc::AjRajTablesRequest& BatchTableRequest_Operation::raj() const ABSL_ATTRIBUTE_LIFETIME_BOUND { - // @@protoc_insertion_point(field_get:io.deephaven.proto.backplane.grpc.BatchTableRequest.Operation.raj) - return _internal_raj(); -} -inline ::io::deephaven::proto::backplane::grpc::AjRajTablesRequest* BatchTableRequest_Operation::unsafe_arena_release_raj() { - // @@protoc_insertion_point(field_unsafe_arena_release:io.deephaven.proto.backplane.grpc.BatchTableRequest.Operation.raj) - if (op_case() == kRaj) { - clear_has_op(); - auto* temp = _impl_.op_.raj_; - _impl_.op_.raj_ = nullptr; - return temp; - } else { - return nullptr; - } -} -inline void BatchTableRequest_Operation::unsafe_arena_set_allocated_raj(::io::deephaven::proto::backplane::grpc::AjRajTablesRequest* value) { - // We rely on the oneof clear method to free the earlier contents - // of this oneof. We can directly use the pointer we're given to - // set the new value. - clear_op(); - if (value) { - set_has_raj(); - _impl_.op_.raj_ = value; - } - // @@protoc_insertion_point(field_unsafe_arena_set_allocated:io.deephaven.proto.backplane.grpc.BatchTableRequest.Operation.raj) -} -inline ::io::deephaven::proto::backplane::grpc::AjRajTablesRequest* BatchTableRequest_Operation::_internal_mutable_raj() { - if (op_case() != kRaj) { - clear_op(); - set_has_raj(); - _impl_.op_.raj_ = - ::google::protobuf::Message::DefaultConstruct<::io::deephaven::proto::backplane::grpc::AjRajTablesRequest>(GetArena()); - } - return _impl_.op_.raj_; -} -inline ::io::deephaven::proto::backplane::grpc::AjRajTablesRequest* BatchTableRequest_Operation::mutable_raj() ABSL_ATTRIBUTE_LIFETIME_BOUND { - ::io::deephaven::proto::backplane::grpc::AjRajTablesRequest* _msg = _internal_mutable_raj(); - // @@protoc_insertion_point(field_mutable:io.deephaven.proto.backplane.grpc.BatchTableRequest.Operation.raj) - return _msg; -} - -// .io.deephaven.proto.backplane.grpc.ColumnStatisticsRequest column_statistics = 42; -inline bool BatchTableRequest_Operation::has_column_statistics() const { - return op_case() == kColumnStatistics; -} -inline bool BatchTableRequest_Operation::_internal_has_column_statistics() const { - return op_case() == kColumnStatistics; -} -inline void BatchTableRequest_Operation::set_has_column_statistics() { - _impl_._oneof_case_[0] = kColumnStatistics; -} -inline void BatchTableRequest_Operation::clear_column_statistics() { - ::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(); - } -} -inline ::io::deephaven::proto::backplane::grpc::ColumnStatisticsRequest* BatchTableRequest_Operation::release_column_statistics() { - // @@protoc_insertion_point(field_release:io.deephaven.proto.backplane.grpc.BatchTableRequest.Operation.column_statistics) - if (op_case() == kColumnStatistics) { - clear_has_op(); - auto* temp = _impl_.op_.column_statistics_; - if (GetArena() != nullptr) { - temp = ::google::protobuf::internal::DuplicateIfNonNull(temp); - } - _impl_.op_.column_statistics_ = nullptr; - return temp; - } else { - return nullptr; - } -} -inline const ::io::deephaven::proto::backplane::grpc::ColumnStatisticsRequest& BatchTableRequest_Operation::_internal_column_statistics() const { - return op_case() == kColumnStatistics ? *_impl_.op_.column_statistics_ : reinterpret_cast<::io::deephaven::proto::backplane::grpc::ColumnStatisticsRequest&>(::io::deephaven::proto::backplane::grpc::_ColumnStatisticsRequest_default_instance_); -} -inline const ::io::deephaven::proto::backplane::grpc::ColumnStatisticsRequest& BatchTableRequest_Operation::column_statistics() const ABSL_ATTRIBUTE_LIFETIME_BOUND { - // @@protoc_insertion_point(field_get:io.deephaven.proto.backplane.grpc.BatchTableRequest.Operation.column_statistics) - return _internal_column_statistics(); -} -inline ::io::deephaven::proto::backplane::grpc::ColumnStatisticsRequest* BatchTableRequest_Operation::unsafe_arena_release_column_statistics() { - // @@protoc_insertion_point(field_unsafe_arena_release:io.deephaven.proto.backplane.grpc.BatchTableRequest.Operation.column_statistics) - if (op_case() == kColumnStatistics) { - clear_has_op(); - auto* temp = _impl_.op_.column_statistics_; - _impl_.op_.column_statistics_ = nullptr; - return temp; - } else { - return nullptr; - } -} -inline void BatchTableRequest_Operation::unsafe_arena_set_allocated_column_statistics(::io::deephaven::proto::backplane::grpc::ColumnStatisticsRequest* value) { - // We rely on the oneof clear method to free the earlier contents - // of this oneof. We can directly use the pointer we're given to - // set the new value. - clear_op(); - if (value) { - set_has_column_statistics(); - _impl_.op_.column_statistics_ = value; - } - // @@protoc_insertion_point(field_unsafe_arena_set_allocated:io.deephaven.proto.backplane.grpc.BatchTableRequest.Operation.column_statistics) -} -inline ::io::deephaven::proto::backplane::grpc::ColumnStatisticsRequest* BatchTableRequest_Operation::_internal_mutable_column_statistics() { - if (op_case() != kColumnStatistics) { - clear_op(); - set_has_column_statistics(); - _impl_.op_.column_statistics_ = - ::google::protobuf::Message::DefaultConstruct<::io::deephaven::proto::backplane::grpc::ColumnStatisticsRequest>(GetArena()); - } - return _impl_.op_.column_statistics_; -} -inline ::io::deephaven::proto::backplane::grpc::ColumnStatisticsRequest* BatchTableRequest_Operation::mutable_column_statistics() ABSL_ATTRIBUTE_LIFETIME_BOUND { - ::io::deephaven::proto::backplane::grpc::ColumnStatisticsRequest* _msg = _internal_mutable_column_statistics(); - // @@protoc_insertion_point(field_mutable:io.deephaven.proto.backplane.grpc.BatchTableRequest.Operation.column_statistics) - return _msg; -} - -// .io.deephaven.proto.backplane.grpc.MultiJoinTablesRequest multi_join = 43; -inline bool BatchTableRequest_Operation::has_multi_join() const { - return op_case() == kMultiJoin; -} -inline bool BatchTableRequest_Operation::_internal_has_multi_join() const { - return op_case() == kMultiJoin; -} -inline void BatchTableRequest_Operation::set_has_multi_join() { - _impl_._oneof_case_[0] = kMultiJoin; -} -inline void BatchTableRequest_Operation::clear_multi_join() { - ::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(); - } -} -inline ::io::deephaven::proto::backplane::grpc::MultiJoinTablesRequest* BatchTableRequest_Operation::release_multi_join() { - // @@protoc_insertion_point(field_release:io.deephaven.proto.backplane.grpc.BatchTableRequest.Operation.multi_join) - if (op_case() == kMultiJoin) { - clear_has_op(); - auto* temp = _impl_.op_.multi_join_; - if (GetArena() != nullptr) { - temp = ::google::protobuf::internal::DuplicateIfNonNull(temp); - } - _impl_.op_.multi_join_ = nullptr; - return temp; - } else { - return nullptr; - } -} -inline const ::io::deephaven::proto::backplane::grpc::MultiJoinTablesRequest& BatchTableRequest_Operation::_internal_multi_join() const { - return op_case() == kMultiJoin ? *_impl_.op_.multi_join_ : reinterpret_cast<::io::deephaven::proto::backplane::grpc::MultiJoinTablesRequest&>(::io::deephaven::proto::backplane::grpc::_MultiJoinTablesRequest_default_instance_); -} -inline const ::io::deephaven::proto::backplane::grpc::MultiJoinTablesRequest& BatchTableRequest_Operation::multi_join() const ABSL_ATTRIBUTE_LIFETIME_BOUND { - // @@protoc_insertion_point(field_get:io.deephaven.proto.backplane.grpc.BatchTableRequest.Operation.multi_join) - return _internal_multi_join(); -} -inline ::io::deephaven::proto::backplane::grpc::MultiJoinTablesRequest* BatchTableRequest_Operation::unsafe_arena_release_multi_join() { - // @@protoc_insertion_point(field_unsafe_arena_release:io.deephaven.proto.backplane.grpc.BatchTableRequest.Operation.multi_join) - if (op_case() == kMultiJoin) { - clear_has_op(); - auto* temp = _impl_.op_.multi_join_; - _impl_.op_.multi_join_ = nullptr; - return temp; - } else { - return nullptr; - } -} -inline void BatchTableRequest_Operation::unsafe_arena_set_allocated_multi_join(::io::deephaven::proto::backplane::grpc::MultiJoinTablesRequest* value) { - // We rely on the oneof clear method to free the earlier contents - // of this oneof. We can directly use the pointer we're given to - // set the new value. - clear_op(); - if (value) { - set_has_multi_join(); - _impl_.op_.multi_join_ = value; - } - // @@protoc_insertion_point(field_unsafe_arena_set_allocated:io.deephaven.proto.backplane.grpc.BatchTableRequest.Operation.multi_join) -} -inline ::io::deephaven::proto::backplane::grpc::MultiJoinTablesRequest* BatchTableRequest_Operation::_internal_mutable_multi_join() { - if (op_case() != kMultiJoin) { - clear_op(); - set_has_multi_join(); - _impl_.op_.multi_join_ = - ::google::protobuf::Message::DefaultConstruct<::io::deephaven::proto::backplane::grpc::MultiJoinTablesRequest>(GetArena()); - } - return _impl_.op_.multi_join_; -} -inline ::io::deephaven::proto::backplane::grpc::MultiJoinTablesRequest* BatchTableRequest_Operation::mutable_multi_join() ABSL_ATTRIBUTE_LIFETIME_BOUND { - ::io::deephaven::proto::backplane::grpc::MultiJoinTablesRequest* _msg = _internal_mutable_multi_join(); - // @@protoc_insertion_point(field_mutable:io.deephaven.proto.backplane.grpc.BatchTableRequest.Operation.multi_join) - return _msg; -} - -inline bool BatchTableRequest_Operation::has_op() const { - return op_case() != OP_NOT_SET; -} -inline void BatchTableRequest_Operation::clear_has_op() { - _impl_._oneof_case_[0] = OP_NOT_SET; -} -inline BatchTableRequest_Operation::OpCase BatchTableRequest_Operation::op_case() const { - return BatchTableRequest_Operation::OpCase(_impl_._oneof_case_[0]); -} -// ------------------------------------------------------------------- - -// BatchTableRequest - -// repeated .io.deephaven.proto.backplane.grpc.BatchTableRequest.Operation ops = 1; -inline int BatchTableRequest::_internal_ops_size() const { - return _internal_ops().size(); -} -inline int BatchTableRequest::ops_size() const { - return _internal_ops_size(); -} -inline void BatchTableRequest::clear_ops() { - ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.ops_.Clear(); -} -inline ::io::deephaven::proto::backplane::grpc::BatchTableRequest_Operation* BatchTableRequest::mutable_ops(int index) - ABSL_ATTRIBUTE_LIFETIME_BOUND { - // @@protoc_insertion_point(field_mutable:io.deephaven.proto.backplane.grpc.BatchTableRequest.ops) - return _internal_mutable_ops()->Mutable(index); -} -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) - ::google::protobuf::internal::TSanWrite(&_impl_); - return _internal_mutable_ops(); -} -inline const ::io::deephaven::proto::backplane::grpc::BatchTableRequest_Operation& BatchTableRequest::ops(int index) const - ABSL_ATTRIBUTE_LIFETIME_BOUND { - // @@protoc_insertion_point(field_get:io.deephaven.proto.backplane.grpc.BatchTableRequest.ops) - return _internal_ops().Get(index); -} -inline ::io::deephaven::proto::backplane::grpc::BatchTableRequest_Operation* BatchTableRequest::add_ops() ABSL_ATTRIBUTE_LIFETIME_BOUND { - ::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; -} -inline const ::google::protobuf::RepeatedPtrField<::io::deephaven::proto::backplane::grpc::BatchTableRequest_Operation>& BatchTableRequest::ops() const - ABSL_ATTRIBUTE_LIFETIME_BOUND { - // @@protoc_insertion_point(field_list:io.deephaven.proto.backplane.grpc.BatchTableRequest.ops) - return _internal_ops(); -} -inline const ::google::protobuf::RepeatedPtrField<::io::deephaven::proto::backplane::grpc::BatchTableRequest_Operation>& -BatchTableRequest::_internal_ops() const { - ::google::protobuf::internal::TSanRead(&_impl_); - return _impl_.ops_; -} -inline ::google::protobuf::RepeatedPtrField<::io::deephaven::proto::backplane::grpc::BatchTableRequest_Operation>* -BatchTableRequest::_internal_mutable_ops() { - ::google::protobuf::internal::TSanRead(&_impl_); - return &_impl_.ops_; -} - -#ifdef __GNUC__ -#pragma GCC diagnostic pop -#endif // __GNUC__ - -// @@protoc_insertion_point(namespace_scope) -} // namespace grpc -} // namespace backplane -} // namespace proto -} // namespace deephaven -} // namespace io - - -namespace google { -namespace protobuf { - -template <> -struct is_proto_enum<::io::deephaven::proto::backplane::grpc::MathContext_RoundingMode> : std::true_type {}; -template <> -inline const EnumDescriptor* GetEnumDescriptor<::io::deephaven::proto::backplane::grpc::MathContext_RoundingMode>() { - return ::io::deephaven::proto::backplane::grpc::MathContext_RoundingMode_descriptor(); -} -template <> -struct is_proto_enum<::io::deephaven::proto::backplane::grpc::AsOfJoinTablesRequest_MatchRule> : std::true_type {}; -template <> -inline const EnumDescriptor* GetEnumDescriptor<::io::deephaven::proto::backplane::grpc::AsOfJoinTablesRequest_MatchRule>() { - return ::io::deephaven::proto::backplane::grpc::AsOfJoinTablesRequest_MatchRule_descriptor(); -} -template <> -struct is_proto_enum<::io::deephaven::proto::backplane::grpc::RangeJoinTablesRequest_RangeStartRule> : std::true_type {}; -template <> -inline const EnumDescriptor* GetEnumDescriptor<::io::deephaven::proto::backplane::grpc::RangeJoinTablesRequest_RangeStartRule>() { - return ::io::deephaven::proto::backplane::grpc::RangeJoinTablesRequest_RangeStartRule_descriptor(); -} -template <> -struct is_proto_enum<::io::deephaven::proto::backplane::grpc::RangeJoinTablesRequest_RangeEndRule> : std::true_type {}; -template <> -inline const EnumDescriptor* GetEnumDescriptor<::io::deephaven::proto::backplane::grpc::RangeJoinTablesRequest_RangeEndRule>() { - return ::io::deephaven::proto::backplane::grpc::RangeJoinTablesRequest_RangeEndRule_descriptor(); -} -template <> -struct is_proto_enum<::io::deephaven::proto::backplane::grpc::ComboAggregateRequest_AggType> : std::true_type {}; -template <> -inline const EnumDescriptor* GetEnumDescriptor<::io::deephaven::proto::backplane::grpc::ComboAggregateRequest_AggType>() { - return ::io::deephaven::proto::backplane::grpc::ComboAggregateRequest_AggType_descriptor(); -} -template <> -struct is_proto_enum<::io::deephaven::proto::backplane::grpc::SortDescriptor_SortDirection> : std::true_type {}; -template <> -inline const EnumDescriptor* GetEnumDescriptor<::io::deephaven::proto::backplane::grpc::SortDescriptor_SortDirection>() { - return ::io::deephaven::proto::backplane::grpc::SortDescriptor_SortDirection_descriptor(); -} -template <> -struct is_proto_enum<::io::deephaven::proto::backplane::grpc::CompareCondition_CompareOperation> : std::true_type {}; -template <> -inline const EnumDescriptor* GetEnumDescriptor<::io::deephaven::proto::backplane::grpc::CompareCondition_CompareOperation>() { - return ::io::deephaven::proto::backplane::grpc::CompareCondition_CompareOperation_descriptor(); -} -template <> -struct is_proto_enum<::io::deephaven::proto::backplane::grpc::BadDataBehavior> : std::true_type {}; -template <> -inline const EnumDescriptor* GetEnumDescriptor<::io::deephaven::proto::backplane::grpc::BadDataBehavior>() { - return ::io::deephaven::proto::backplane::grpc::BadDataBehavior_descriptor(); -} -template <> -struct is_proto_enum<::io::deephaven::proto::backplane::grpc::UpdateByNullBehavior> : std::true_type {}; -template <> -inline const EnumDescriptor* GetEnumDescriptor<::io::deephaven::proto::backplane::grpc::UpdateByNullBehavior>() { - return ::io::deephaven::proto::backplane::grpc::UpdateByNullBehavior_descriptor(); -} -template <> -struct is_proto_enum<::io::deephaven::proto::backplane::grpc::NullValue> : std::true_type {}; -template <> -inline const EnumDescriptor* GetEnumDescriptor<::io::deephaven::proto::backplane::grpc::NullValue>() { - return ::io::deephaven::proto::backplane::grpc::NullValue_descriptor(); -} -template <> -struct is_proto_enum<::io::deephaven::proto::backplane::grpc::CaseSensitivity> : std::true_type {}; -template <> -inline const EnumDescriptor* GetEnumDescriptor<::io::deephaven::proto::backplane::grpc::CaseSensitivity>() { - return ::io::deephaven::proto::backplane::grpc::CaseSensitivity_descriptor(); -} -template <> -struct is_proto_enum<::io::deephaven::proto::backplane::grpc::MatchType> : std::true_type {}; -template <> -inline const EnumDescriptor* GetEnumDescriptor<::io::deephaven::proto::backplane::grpc::MatchType>() { - return ::io::deephaven::proto::backplane::grpc::MatchType_descriptor(); -} - -} // namespace protobuf -} // namespace google - -// @@protoc_insertion_point(global_scope) - -#include "google/protobuf/port_undef.inc" - -#endif // GOOGLE_PROTOBUF_INCLUDED_deephaven_2fproto_2ftable_2eproto_2epb_2eh diff --git a/cpp-client/deephaven/dhclient/proto/deephaven/proto/ticket.grpc.pb.cc b/cpp-client/deephaven/dhclient/proto/deephaven/proto/ticket.grpc.pb.cc deleted file mode 100644 index 0de3d0f901c..00000000000 --- a/cpp-client/deephaven/dhclient/proto/deephaven/proto/ticket.grpc.pb.cc +++ /dev/null @@ -1,33 +0,0 @@ -// Generated by the gRPC C++ plugin. -// If you make any local change, they will be lost. -// source: deephaven/proto/ticket.proto - -#include "deephaven/proto/ticket.pb.h" -#include "deephaven/proto/ticket.grpc.pb.h" - -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -namespace io { -namespace deephaven { -namespace proto { -namespace backplane { -namespace grpc { - -} // namespace io -} // namespace deephaven -} // namespace proto -} // namespace backplane -} // namespace grpc - diff --git a/cpp-client/deephaven/dhclient/proto/deephaven/proto/ticket.grpc.pb.h b/cpp-client/deephaven/dhclient/proto/deephaven/proto/ticket.grpc.pb.h deleted file mode 100644 index 22846db194c..00000000000 --- a/cpp-client/deephaven/dhclient/proto/deephaven/proto/ticket.grpc.pb.h +++ /dev/null @@ -1,44 +0,0 @@ -// Generated by the gRPC C++ plugin. -// If you make any local change, they will be lost. -// source: deephaven/proto/ticket.proto -// Original file comments: -// -// Copyright (c) 2016-2022 Deephaven Data Labs and Patent Pending -#ifndef GRPC_deephaven_2fproto_2fticket_2eproto__INCLUDED -#define GRPC_deephaven_2fproto_2fticket_2eproto__INCLUDED - -#include "deephaven/proto/ticket.pb.h" - -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include - -namespace io { -namespace deephaven { -namespace proto { -namespace backplane { -namespace grpc { - -} // namespace grpc -} // namespace backplane -} // namespace proto -} // namespace deephaven -} // namespace io - - -#endif // GRPC_deephaven_2fproto_2fticket_2eproto__INCLUDED diff --git a/cpp-client/deephaven/dhclient/proto/deephaven/proto/ticket.pb.cc b/cpp-client/deephaven/dhclient/proto/deephaven/proto/ticket.pb.cc deleted file mode 100644 index ad33ba9ef28..00000000000 --- a/cpp-client/deephaven/dhclient/proto/deephaven/proto/ticket.pb.cc +++ /dev/null @@ -1,673 +0,0 @@ -// 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" -// @@protoc_insertion_point(includes) - -// Must be included last. -#include "google/protobuf/port_def.inc" -PROTOBUF_PRAGMA_INIT_SEG -namespace _pb = ::google::protobuf; -namespace _pbi = ::google::protobuf::internal; -namespace _fl = ::google::protobuf::internal::field_layout; -namespace io { -namespace deephaven { -namespace proto { -namespace backplane { -namespace grpc { - -inline constexpr Ticket::Impl_::Impl_( - ::_pbi::ConstantInitialized) noexcept - : ticket_( - &::google::protobuf::internal::fixed_address_empty_string, - ::_pbi::ConstantInitialized()), - _cached_size_{0} {} - -template -PROTOBUF_CONSTEXPR Ticket::Ticket(::_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() {} - union { - Ticket _instance; - }; -}; - -PROTOBUF_ATTRIBUTE_NO_DESTROY PROTOBUF_CONSTINIT - PROTOBUF_ATTRIBUTE_INIT_PRIORITY1 TicketDefaultTypeInternal _Ticket_default_instance_; - -inline constexpr TypedTicket::Impl_::Impl_( - ::_pbi::ConstantInitialized) noexcept - : _cached_size_{0}, - type_( - &::google::protobuf::internal::fixed_address_empty_string, - ::_pbi::ConstantInitialized()), - ticket_{nullptr} {} - -template -PROTOBUF_CONSTEXPR TypedTicket::TypedTicket(::_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() {} - union { - TypedTicket _instance; - }; -}; - -PROTOBUF_ATTRIBUTE_NO_DESTROY PROTOBUF_CONSTINIT - PROTOBUF_ATTRIBUTE_INIT_PRIORITY1 TypedTicketDefaultTypeInternal _TypedTicket_default_instance_; -} // namespace grpc -} // namespace backplane -} // namespace proto -} // namespace deephaven -} // namespace io -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[] 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[] 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[] 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" - "(\0132).io.deephaven.proto.backplane.grpc.T" - "icket\022\014\n\004type\030\002 \001(\tBBH\001P\001Z( - from._internal_metadata_); - new (&_impl_) Impl_(internal_visibility(), arena, from._impl_, from); - - // @@protoc_insertion_point(copy_constructor:io.deephaven.proto.backplane.grpc.Ticket) -} -inline PROTOBUF_NDEBUG_INLINE Ticket::Impl_::Impl_( - ::google::protobuf::internal::InternalVisibility visibility, - ::google::protobuf::Arena* arena) - : ticket_(arena), - _cached_size_{0} {} - -inline void Ticket::SharedCtor(::_pb::Arena* arena) { - new (&_impl_) Impl_(internal_visibility(), arena); -} -Ticket::~Ticket() { - // @@protoc_insertion_point(destructor:io.deephaven.proto.backplane.grpc.Ticket) - _internal_metadata_.Delete<::google::protobuf::UnknownFieldSet>(); - SharedDtor(); -} -inline void Ticket::SharedDtor() { - ABSL_DCHECK(GetArena() == nullptr); - _impl_.ticket_.Destroy(); - _impl_.~Impl_(); -} - -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_ = { - { - 0, // no _has_bits_ - 0, // no _extensions_ - 1, 0, // max_field_number, fast_idx_mask - offsetof(decltype(_table_), field_lookup_table), - 4294967294, // skipmap - offsetof(decltype(_table_), field_entries), - 1, // 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::Ticket>(), // to_prefetch - #endif // PROTOBUF_PREFETCH_PARSE_TABLE - }, {{ - // bytes ticket = 1; - {::_pbi::TcParser::FastBS1, - {10, 63, 0, PROTOBUF_FIELD_OFFSET(Ticket, _impl_.ticket_)}}, - }}, {{ - 65535, 65535 - }}, {{ - // bytes ticket = 1; - {PROTOBUF_FIELD_OFFSET(Ticket, _impl_.ticket_), 0, 0, - (0 | ::_fl::kFcSingular | ::_fl::kBytes | ::_fl::kRepAString)}, - }}, - // no aux_entries - {{ - }}, -}; - -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; - - _impl_.ticket_.ClearToEmpty(); - _internal_metadata_.Clear<::google::protobuf::UnknownFieldSet>(); -} - -#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) - ABSL_DCHECK_NE(&from, _this); - ::uint32_t cached_has_bits = 0; - (void) cached_has_bits; - - if (!from._internal_ticket().empty()) { - _this->_internal_set_ticket(from._internal_ticket()); - } - _this->_internal_metadata_.MergeFrom<::google::protobuf::UnknownFieldSet>(from._internal_metadata_); -} - -void Ticket::CopyFrom(const Ticket& from) { -// @@protoc_insertion_point(class_specific_copy_from_start:io.deephaven.proto.backplane.grpc.Ticket) - if (&from == this) return; - Clear(); - MergeFrom(from); -} - - -void Ticket::InternalSwap(Ticket* PROTOBUF_RESTRICT other) { - using std::swap; - auto* arena = GetArena(); - ABSL_DCHECK_EQ(arena, other->GetArena()); - _internal_metadata_.InternalSwap(&other->_internal_metadata_); - ::_pbi::ArenaStringPtr::InternalSwap(&_impl_.ticket_, &other->_impl_.ticket_, arena); -} - -::google::protobuf::Metadata Ticket::GetMetadata() const { - return ::google::protobuf::Message::GetMetadataImpl(GetClassData()->full()); -} -// =================================================================== - -class TypedTicket::_Internal { - public: - using HasBits = - decltype(std::declval()._impl_._has_bits_); - static constexpr ::int32_t kHasBitsOffset = - 8 * PROTOBUF_FIELD_OFFSET(TypedTicket, _impl_._has_bits_); -}; - -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 ::io::deephaven::proto::backplane::grpc::TypedTicket& from_msg) - : _has_bits_{from._has_bits_}, - _cached_size_{0}, - type_(arena, from.type_) {} - -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_, from); - ::uint32_t cached_has_bits = _impl_._has_bits_[0]; - _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) -} -inline PROTOBUF_NDEBUG_INLINE TypedTicket::Impl_::Impl_( - ::google::protobuf::internal::InternalVisibility visibility, - ::google::protobuf::Arena* arena) - : _cached_size_{0}, - type_(arena) {} - -inline void TypedTicket::SharedCtor(::_pb::Arena* arena) { - new (&_impl_) Impl_(internal_visibility(), arena); - _impl_.ticket_ = {}; -} -TypedTicket::~TypedTicket() { - // @@protoc_insertion_point(destructor:io.deephaven.proto.backplane.grpc.TypedTicket) - _internal_metadata_.Delete<::google::protobuf::UnknownFieldSet>(); - SharedDtor(); -} -inline void TypedTicket::SharedDtor() { - ABSL_DCHECK(GetArena() == nullptr); - _impl_.type_.Destroy(); - delete _impl_.ticket_; - _impl_.~Impl_(); -} - -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_ = { - { - PROTOBUF_FIELD_OFFSET(TypedTicket, _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::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, - {18, 63, 0, PROTOBUF_FIELD_OFFSET(TypedTicket, _impl_.type_)}}, - // .io.deephaven.proto.backplane.grpc.Ticket ticket = 1; - {::_pbi::TcParser::FastMtS1, - {10, 0, 0, PROTOBUF_FIELD_OFFSET(TypedTicket, _impl_.ticket_)}}, - }}, {{ - 65535, 65535 - }}, {{ - // .io.deephaven.proto.backplane.grpc.Ticket ticket = 1; - {PROTOBUF_FIELD_OFFSET(TypedTicket, _impl_.ticket_), _Internal::kHasBitsOffset + 0, 0, - (0 | ::_fl::kFcOptional | ::_fl::kMessage | ::_fl::kTvTable)}, - // string type = 2; - {PROTOBUF_FIELD_OFFSET(TypedTicket, _impl_.type_), -1, 0, - (0 | ::_fl::kFcSingular | ::_fl::kUtf8String | ::_fl::kRepAString)}, - }}, {{ - {::_pbi::TcParser::GetTable<::io::deephaven::proto::backplane::grpc::Ticket>()}, - }}, {{ - "\55\0\4\0\0\0\0\0" - "io.deephaven.proto.backplane.grpc.TypedTicket" - "type" - }}, -}; - -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; - - _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>(); -} - -#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; - (void) cached_has_bits; - - if (!from._internal_type().empty()) { - _this->_internal_set_type(from._internal_type()); - } - 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_); -} - -void TypedTicket::CopyFrom(const TypedTicket& from) { -// @@protoc_insertion_point(class_specific_copy_from_start:io.deephaven.proto.backplane.grpc.TypedTicket) - if (&from == this) return; - Clear(); - MergeFrom(from); -} - - -void TypedTicket::InternalSwap(TypedTicket* PROTOBUF_RESTRICT other) { - using std::swap; - auto* arena = GetArena(); - ABSL_DCHECK_EQ(arena, other->GetArena()); - _internal_metadata_.InternalSwap(&other->_internal_metadata_); - swap(_impl_._has_bits_[0], other->_impl_._has_bits_[0]); - ::_pbi::ArenaStringPtr::InternalSwap(&_impl_.type_, &other->_impl_.type_, arena); - swap(_impl_.ticket_, other->_impl_.ticket_); -} - -::google::protobuf::Metadata TypedTicket::GetMetadata() const { - return ::google::protobuf::Message::GetMetadataImpl(GetClassData()->full()); -} -// @@protoc_insertion_point(namespace_scope) -} // namespace grpc -} // namespace backplane -} // namespace proto -} // namespace deephaven -} // namespace io -namespace google { -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 deleted file mode 100644 index c72a2636864..00000000000 --- a/cpp-client/deephaven/dhclient/proto/deephaven/proto/ticket.pb.h +++ /dev/null @@ -1,721 +0,0 @@ -// 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 - -#ifndef GOOGLE_PROTOBUF_INCLUDED_deephaven_2fproto_2fticket_2eproto_2epb_2eh -#define GOOGLE_PROTOBUF_INCLUDED_deephaven_2fproto_2fticket_2eproto_2epb_2eh - -#include -#include -#include -#include - -#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" -#include "google/protobuf/generated_message_tctable_decl.h" -#include "google/protobuf/generated_message_util.h" -#include "google/protobuf/metadata_lite.h" -#include "google/protobuf/generated_message_reflection.h" -#include "google/protobuf/message.h" -#include "google/protobuf/repeated_field.h" // IWYU pragma: export -#include "google/protobuf/extension_set.h" // IWYU pragma: export -#include "google/protobuf/unknown_field_set.h" -// @@protoc_insertion_point(includes) - -// Must be included last. -#include "google/protobuf/port_def.inc" - -#define PROTOBUF_INTERNAL_EXPORT_deephaven_2fproto_2fticket_2eproto - -namespace google { -namespace protobuf { -namespace internal { -class AnyMetadata; -} // namespace internal -} // namespace protobuf -} // namespace google - -// Internal implementation detail -- do not use these members. -struct TableStruct_deephaven_2fproto_2fticket_2eproto { - static const ::uint32_t offsets[]; -}; -extern const ::google::protobuf::internal::DescriptorTable - descriptor_table_deephaven_2fproto_2fticket_2eproto; -namespace io { -namespace deephaven { -namespace proto { -namespace backplane { -namespace grpc { -class Ticket; -struct TicketDefaultTypeInternal; -extern TicketDefaultTypeInternal _Ticket_default_instance_; -class TypedTicket; -struct TypedTicketDefaultTypeInternal; -extern TypedTicketDefaultTypeInternal _TypedTicket_default_instance_; -} // namespace grpc -} // namespace backplane -} // namespace proto -} // namespace deephaven -} // namespace io -namespace google { -namespace protobuf { -} // namespace protobuf -} // namespace google - -namespace io { -namespace deephaven { -namespace proto { -namespace backplane { -namespace grpc { - -// =================================================================== - - -// ------------------------------------------------------------------- - -class Ticket final : public ::google::protobuf::Message -/* @@protoc_insertion_point(class_definition:io.deephaven.proto.backplane.grpc.Ticket) */ { - public: - inline Ticket() : Ticket(nullptr) {} - ~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; - } - inline Ticket& operator=(Ticket&& 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 Ticket& default_instance() { - return *internal_default_instance(); - } - 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); } - 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 - if (GetArena() == other->GetArena()) { -#endif // !PROTOBUF_FORCE_COPY_IN_SWAP - InternalSwap(other); - } else { - ::google::protobuf::internal::GenericSwap(this, other); - } - } - void UnsafeArenaSwap(Ticket* other) { - if (other == this) return; - ABSL_DCHECK(GetArena() == other->GetArena()); - InternalSwap(other); - } - - // implements Message ---------------------------------------------- - - 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); } - - private: - static void MergeImpl( - ::google::protobuf::MessageLite& to_msg, - const ::google::protobuf::MessageLite& from_msg); - - 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; - #endif // PROTOBUF_CUSTOM_VTABLE - int GetCachedSize() const { return _impl_._cached_size_.Get(); } - - private: - void SharedCtor(::google::protobuf::Arena* arena); - void SharedDtor(); - void InternalSwap(Ticket* other); - private: - friend class ::google::protobuf::internal::AnyMetadata; - 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); - 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, - }; - // bytes ticket = 1; - void clear_ticket() ; - const std::string& ticket() const; - template - void set_ticket(Arg_&& arg, Args_... args); - std::string* mutable_ticket(); - PROTOBUF_NODISCARD std::string* release_ticket(); - void set_allocated_ticket(std::string* value); - - private: - const std::string& _internal_ticket() const; - inline PROTOBUF_ALWAYS_INLINE void _internal_set_ticket( - const std::string& value); - std::string* _internal_mutable_ticket(); - - public: - // @@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 - 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 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) */ { - public: - inline TypedTicket() : TypedTicket(nullptr) {} - ~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; - } - inline TypedTicket& operator=(TypedTicket&& 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 TypedTicket& default_instance() { - return *internal_default_instance(); - } - 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); } - 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 - if (GetArena() == other->GetArena()) { -#endif // !PROTOBUF_FORCE_COPY_IN_SWAP - InternalSwap(other); - } else { - ::google::protobuf::internal::GenericSwap(this, other); - } - } - void UnsafeArenaSwap(TypedTicket* other) { - if (other == this) return; - ABSL_DCHECK(GetArena() == other->GetArena()); - InternalSwap(other); - } - - // implements Message ---------------------------------------------- - - 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); } - - private: - static void MergeImpl( - ::google::protobuf::MessageLite& to_msg, - const ::google::protobuf::MessageLite& from_msg); - - 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; - #endif // PROTOBUF_CUSTOM_VTABLE - int GetCachedSize() const { return _impl_._cached_size_.Get(); } - - private: - void SharedCtor(::google::protobuf::Arena* arena); - void SharedDtor(); - void InternalSwap(TypedTicket* other); - private: - friend class ::google::protobuf::internal::AnyMetadata; - 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); - 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, - }; - // string type = 2; - void clear_type() ; - const std::string& type() const; - template - void set_type(Arg_&& arg, Args_... args); - std::string* mutable_type(); - PROTOBUF_NODISCARD std::string* release_type(); - void set_allocated_type(std::string* value); - - private: - const std::string& _internal_type() const; - inline PROTOBUF_ALWAYS_INLINE void _internal_set_type( - const std::string& value); - std::string* _internal_mutable_type(); - - public: - // .io.deephaven.proto.backplane.grpc.Ticket ticket = 1; - bool has_ticket() const; - void clear_ticket() ; - const ::io::deephaven::proto::backplane::grpc::Ticket& ticket() const; - PROTOBUF_NODISCARD ::io::deephaven::proto::backplane::grpc::Ticket* release_ticket(); - ::io::deephaven::proto::backplane::grpc::Ticket* mutable_ticket(); - void set_allocated_ticket(::io::deephaven::proto::backplane::grpc::Ticket* value); - void unsafe_arena_set_allocated_ticket(::io::deephaven::proto::backplane::grpc::Ticket* value); - ::io::deephaven::proto::backplane::grpc::Ticket* unsafe_arena_release_ticket(); - - private: - const ::io::deephaven::proto::backplane::grpc::Ticket& _internal_ticket() const; - ::io::deephaven::proto::backplane::grpc::Ticket* _internal_mutable_ticket(); - - public: - // @@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 - 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 TypedTicket& from_msg); - ::google::protobuf::internal::HasBits<1> _has_bits_; - mutable ::google::protobuf::internal::CachedSize _cached_size_; - ::google::protobuf::internal::ArenaStringPtr type_; - ::io::deephaven::proto::backplane::grpc::Ticket* ticket_; - PROTOBUF_TSAN_DECLARE_MEMBER - }; - union { Impl_ _impl_; }; - friend struct ::TableStruct_deephaven_2fproto_2fticket_2eproto; -}; - -// =================================================================== - - - - -// =================================================================== - - -#ifdef __GNUC__ -#pragma GCC diagnostic push -#pragma GCC diagnostic ignored "-Wstrict-aliasing" -#endif // __GNUC__ -// ------------------------------------------------------------------- - -// Ticket - -// bytes ticket = 1; -inline void Ticket::clear_ticket() { - ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.ticket_.ClearToEmpty(); -} -inline const std::string& Ticket::ticket() const - ABSL_ATTRIBUTE_LIFETIME_BOUND { - // @@protoc_insertion_point(field_get:io.deephaven.proto.backplane.grpc.Ticket.ticket) - return _internal_ticket(); -} -template -inline PROTOBUF_ALWAYS_INLINE void Ticket::set_ticket(Arg_&& arg, - Args_... args) { - ::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) -} -inline std::string* Ticket::mutable_ticket() ABSL_ATTRIBUTE_LIFETIME_BOUND { - std::string* _s = _internal_mutable_ticket(); - // @@protoc_insertion_point(field_mutable:io.deephaven.proto.backplane.grpc.Ticket.ticket) - return _s; -} -inline const std::string& Ticket::_internal_ticket() const { - ::google::protobuf::internal::TSanRead(&_impl_); - return _impl_.ticket_.Get(); -} -inline void Ticket::_internal_set_ticket(const std::string& value) { - ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.ticket_.Set(value, GetArena()); -} -inline std::string* Ticket::_internal_mutable_ticket() { - ::google::protobuf::internal::TSanWrite(&_impl_); - return _impl_.ticket_.Mutable( GetArena()); -} -inline std::string* Ticket::release_ticket() { - ::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) { - ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.ticket_.SetAllocated(value, GetArena()); - #ifdef PROTOBUF_FORCE_COPY_DEFAULT_STRING - if (_impl_.ticket_.IsDefault()) { - _impl_.ticket_.Set("", GetArena()); - } - #endif // PROTOBUF_FORCE_COPY_DEFAULT_STRING - // @@protoc_insertion_point(field_set_allocated:io.deephaven.proto.backplane.grpc.Ticket.ticket) -} - -// ------------------------------------------------------------------- - -// TypedTicket - -// .io.deephaven.proto.backplane.grpc.Ticket ticket = 1; -inline bool TypedTicket::has_ticket() const { - bool value = (_impl_._has_bits_[0] & 0x00000001u) != 0; - PROTOBUF_ASSUME(!value || _impl_.ticket_ != nullptr); - return value; -} -inline void TypedTicket::clear_ticket() { - ::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 { - ::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_); -} -inline const ::io::deephaven::proto::backplane::grpc::Ticket& TypedTicket::ticket() const ABSL_ATTRIBUTE_LIFETIME_BOUND { - // @@protoc_insertion_point(field_get:io.deephaven.proto.backplane.grpc.TypedTicket.ticket) - return _internal_ticket(); -} -inline void TypedTicket::unsafe_arena_set_allocated_ticket(::io::deephaven::proto::backplane::grpc::Ticket* value) { - ::google::protobuf::internal::TSanWrite(&_impl_); - if (GetArena() == nullptr) { - delete reinterpret_cast<::google::protobuf::MessageLite*>(_impl_.ticket_); - } - _impl_.ticket_ = reinterpret_cast<::io::deephaven::proto::backplane::grpc::Ticket*>(value); - if (value != nullptr) { - _impl_._has_bits_[0] |= 0x00000001u; - } else { - _impl_._has_bits_[0] &= ~0x00000001u; - } - // @@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() { - ::google::protobuf::internal::TSanWrite(&_impl_); - - _impl_._has_bits_[0] &= ~0x00000001u; - ::io::deephaven::proto::backplane::grpc::Ticket* released = _impl_.ticket_; - _impl_.ticket_ = nullptr; -#ifdef PROTOBUF_FORCE_COPY_IN_RELEASE - auto* old = reinterpret_cast<::google::protobuf::MessageLite*>(released); - released = ::google::protobuf::internal::DuplicateIfNonNull(released); - if (GetArena() == nullptr) { - delete old; - } -#else // PROTOBUF_FORCE_COPY_IN_RELEASE - if (GetArena() != nullptr) { - released = ::google::protobuf::internal::DuplicateIfNonNull(released); - } -#endif // !PROTOBUF_FORCE_COPY_IN_RELEASE - return released; -} -inline ::io::deephaven::proto::backplane::grpc::Ticket* TypedTicket::unsafe_arena_release_ticket() { - ::google::protobuf::internal::TSanWrite(&_impl_); - // @@protoc_insertion_point(field_release:io.deephaven.proto.backplane.grpc.TypedTicket.ticket) - - _impl_._has_bits_[0] &= ~0x00000001u; - ::io::deephaven::proto::backplane::grpc::Ticket* temp = _impl_.ticket_; - _impl_.ticket_ = nullptr; - return temp; -} -inline ::io::deephaven::proto::backplane::grpc::Ticket* TypedTicket::_internal_mutable_ticket() { - ::google::protobuf::internal::TSanWrite(&_impl_); - if (_impl_.ticket_ == nullptr) { - 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(); - ::google::protobuf::internal::TSanWrite(&_impl_); - if (message_arena == nullptr) { - delete (_impl_.ticket_); - } - - if (value != nullptr) { - ::google::protobuf::Arena* submessage_arena = (value)->GetArena(); - if (message_arena != submessage_arena) { - value = ::google::protobuf::internal::GetOwnedMessage(message_arena, value, submessage_arena); - } - _impl_._has_bits_[0] |= 0x00000001u; - } else { - _impl_._has_bits_[0] &= ~0x00000001u; - } - - _impl_.ticket_ = reinterpret_cast<::io::deephaven::proto::backplane::grpc::Ticket*>(value); - // @@protoc_insertion_point(field_set_allocated:io.deephaven.proto.backplane.grpc.TypedTicket.ticket) -} - -// string type = 2; -inline void TypedTicket::clear_type() { - ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.type_.ClearToEmpty(); -} -inline const std::string& TypedTicket::type() const - ABSL_ATTRIBUTE_LIFETIME_BOUND { - // @@protoc_insertion_point(field_get:io.deephaven.proto.backplane.grpc.TypedTicket.type) - return _internal_type(); -} -template -inline PROTOBUF_ALWAYS_INLINE void TypedTicket::set_type(Arg_&& arg, - Args_... args) { - ::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) -} -inline std::string* TypedTicket::mutable_type() ABSL_ATTRIBUTE_LIFETIME_BOUND { - std::string* _s = _internal_mutable_type(); - // @@protoc_insertion_point(field_mutable:io.deephaven.proto.backplane.grpc.TypedTicket.type) - return _s; -} -inline const std::string& TypedTicket::_internal_type() const { - ::google::protobuf::internal::TSanRead(&_impl_); - return _impl_.type_.Get(); -} -inline void TypedTicket::_internal_set_type(const std::string& value) { - ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.type_.Set(value, GetArena()); -} -inline std::string* TypedTicket::_internal_mutable_type() { - ::google::protobuf::internal::TSanWrite(&_impl_); - return _impl_.type_.Mutable( GetArena()); -} -inline std::string* TypedTicket::release_type() { - ::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) { - ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.type_.SetAllocated(value, GetArena()); - #ifdef PROTOBUF_FORCE_COPY_DEFAULT_STRING - if (_impl_.type_.IsDefault()) { - _impl_.type_.Set("", GetArena()); - } - #endif // PROTOBUF_FORCE_COPY_DEFAULT_STRING - // @@protoc_insertion_point(field_set_allocated:io.deephaven.proto.backplane.grpc.TypedTicket.type) -} - -#ifdef __GNUC__ -#pragma GCC diagnostic pop -#endif // __GNUC__ - -// @@protoc_insertion_point(namespace_scope) -} // namespace grpc -} // namespace backplane -} // namespace proto -} // namespace deephaven -} // namespace io - - -// @@protoc_insertion_point(global_scope) - -#include "google/protobuf/port_undef.inc" - -#endif // GOOGLE_PROTOBUF_INCLUDED_deephaven_2fproto_2fticket_2eproto_2epb_2eh diff --git a/proto/proto-backplane-grpc/build.gradle b/proto/proto-backplane-grpc/build.gradle index c14dd435496..7cb4c51c586 100644 --- a/proto/proto-backplane-grpc/build.gradle +++ b/proto/proto-backplane-grpc/build.gradle @@ -17,7 +17,6 @@ configurations { js {} python {} go {} - cpp {} protoDocs {} } @@ -86,9 +85,6 @@ artifacts { go(layout.buildDirectory.dir('generated/source/proto/main/go')) { builtBy generateProtobuf } - cpp(layout.buildDirectory.dir('generated/source/proto/main/cpp')) { - builtBy generateProtobuf - } protoDocs(layout.buildDirectory.dir('generated/source/proto/main/proto-doc')) { builtBy generateProtobuf } diff --git a/proto/proto-backplane-grpc/src/main/proto/build-cpp-protos.sh b/proto/proto-backplane-grpc/src/main/proto/build-cpp-protos.sh deleted file mode 100755 index c24b0109a50..00000000000 --- a/proto/proto-backplane-grpc/src/main/proto/build-cpp-protos.sh +++ /dev/null @@ -1,20 +0,0 @@ -#!/bin/bash - -set -euxo pipefail - -if [ -z ${PROTOC_BIN:+x} ] && [ -z ${DHCPP:+x} ]; then - echo "$0: At least one of the environment variables 'PROTOC_BIN' and 'DHCPP' must be defined, aborting." 1>&2 - exit 1 -fi - -: ${PROTOC_BIN:=$DHCPP/bin} -: ${CPP_PROTO_BUILD_DIR:=build} - -mkdir -p "${CPP_PROTO_BUILD_DIR}" -$DHCPP/bin/protoc \ - $(find . -name '*.proto') \ - --cpp_out=${CPP_PROTO_BUILD_DIR} \ - --grpc_out=${CPP_PROTO_BUILD_DIR} \ - --plugin=protoc-gen-grpc=${PROTOC_BIN}/grpc_cpp_plugin -mv -f ${CPP_PROTO_BUILD_DIR}/deephaven/proto/*.{h,cc} \ - ../../../../../cpp-client/deephaven/dhclient/proto/deephaven/proto